:root {
  --bg: #070708;
  --bg-elevated: #101114;
  --bg-card: #14151a;
  --red: #e31b23;
  --red-hot: #ff2a32;
  --red-deep: #9b0f16;
  --white: #f4f5f7;
  --muted: #9aa0ab;
  --line: rgba(255, 255, 255, 0.08);
  --glow: 0 0 40px rgba(227, 27, 35, 0.28);
  --font: "Inter", system-ui, sans-serif;
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  background: linear-gradient(180deg, rgba(7, 7, 8, 0.92), rgba(7, 7, 8, 0.55) 70%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s;
}

.nav.scrolled {
  background: rgba(7, 7, 8, 0.94);
  border-bottom-color: var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  letter-spacing: 0.12em;
  font-weight: 700;
  font-size: 18px;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: var(--glow);
}

.brand span {
  color: var(--white);
}

.brand em {
  font-style: normal;
  color: var(--red);
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  list-style: none;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--red-hot);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(180deg, var(--red-hot), var(--red));
  color: white;
  padding: 12px 22px;
  border-radius: 2px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  border: 0;
  cursor: pointer;
  box-shadow: var(--glow);
  transition: transform 0.15s, filter 0.15s;
}

.btn:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hamburger {
  display: none;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--line);
  color: white;
  cursor: pointer;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  position: relative;
  padding: 110px 20px 70px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 42%, rgba(227, 27, 35, 0.22), transparent 62%),
    radial-gradient(ellipse 80% 70% at 50% 100%, rgba(0, 0, 0, 0.85), transparent),
    url("images/logo.jpg") center 38% / cover no-repeat;
  filter: brightness(0.28) saturate(1.1);
  transform: scale(1.08);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 100% 4px;
  opacity: 0.15;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 980px;
}

.hero-logo {
  width: min(520px, 88vw);
  margin: 0 auto 18px;
  filter: drop-shadow(0 20px 50px rgba(227, 27, 35, 0.35));
  animation: rise 1s ease both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.eyebrow {
  color: var(--red);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
}

h1,
h2,
h3 {
  font-family: var(--display);
  text-transform: uppercase;
  line-height: 0.95;
}

.hero h1 {
  font-size: clamp(42px, 8vw, 92px);
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.hero h1 span {
  color: var(--red);
}

.tagline {
  font-size: clamp(14px, 2vw, 18px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #d5d8df;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-cue {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* SECTIONS */
section {
  padding: 88px 0;
  position: relative;
}

.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-head h2 {
  font-size: clamp(32px, 5vw, 52px);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.section-head h2 span {
  color: var(--red);
}

.section-head p {
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto;
}

/* ABOUT */
.about {
  background: linear-gradient(180deg, #070708, #0d0e12 40%, #070708);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.kicker {
  color: var(--red);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
}

.about h2 {
  font-size: clamp(30px, 4vw, 46px);
  margin-bottom: 16px;
}

.about p {
  color: #c7cbd4;
  margin-bottom: 16px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.stat {
  border: 1px solid var(--line);
  background: var(--bg-card);
  padding: 18px;
  text-align: center;
}

.stat b {
  display: block;
  font-family: var(--display);
  font-size: 34px;
  color: var(--red);
}

.stat span {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.panel {
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 28px;
  box-shadow: var(--glow);
}

.panel h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.panel ul {
  list-style: none;
}

.panel li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: #d0d3da;
  display: flex;
  gap: 10px;
}

.panel li:last-child {
  border-bottom: 0;
}

.dot {
  color: var(--red);
}

/* VALUES */
.values {
  background: #0a0b0e;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.value {
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 26px 18px 22px;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.value:hover {
  transform: translateY(-4px);
  border-color: rgba(227, 27, 35, 0.45);
  box-shadow: var(--glow);
}

.icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
}

.icon svg {
  width: 42px;
  height: 42px;
}

.value h3 {
  font-size: 16px;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.value p {
  color: var(--muted);
  font-size: 13px;
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 26px;
  min-height: 220px;
}

.card .num {
  color: var(--red);
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: 0.08em;
}

.card h3 {
  font-size: 22px;
  margin: 8px 0 10px;
}

.card p {
  color: var(--muted);
  font-size: 14.5px;
}

.plain {
  list-style: none;
  color: var(--muted);
  font-size: 14px;
}

.plain li {
  padding: 6px 0 6px 14px;
  position: relative;
}

.plain li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--red);
  position: absolute;
  left: 0;
  top: 13px;
}

.role {
  color: var(--red);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  margin: -8px 0 16px;
}

/* INDUSTRIES */
.industries {
  background: linear-gradient(180deg, #070708, #12080a, #070708);
}

.pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.pill {
  border: 1px solid rgba(227, 27, 35, 0.35);
  padding: 12px 18px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  background: rgba(227, 27, 35, 0.06);
}

/* PROCESS */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.step {
  border-top: 2px solid var(--red);
  padding-top: 18px;
}

.step b {
  display: block;
  color: var(--red);
  letter-spacing: 0.16em;
  font-size: 12px;
  margin-bottom: 8px;
}

.step h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.step p {
  color: var(--muted);
  font-size: 14px;
}

/* CONTACT */
.contact {
  background: #0b0c10;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
}

form {
  display: grid;
  gap: 12px;
}

label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

input,
textarea,
select {
  width: 100%;
  background: #101217;
  border: 1px solid var(--line);
  color: white;
  padding: 12px 14px;
  font: inherit;
}

input:focus,
textarea:focus,
select:focus {
  outline: 1px solid var(--red);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-aside h2 {
  font-size: 42px;
  margin-bottom: 12px;
}

.contact-aside p {
  color: var(--muted);
  margin-bottom: 22px;
}

.info-row {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  color: #d7dae2;
}

.info-row strong {
  color: var(--red);
  min-width: 78px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  padding-top: 4px;
}

.form-note {
  color: var(--muted);
  font-size: 13px;
}

.success {
  display: none;
  border: 1px solid rgba(227, 27, 35, 0.4);
  padding: 16px;
  color: #f3c7c9;
}

/* FOOTER */
footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}

footer .name {
  font-family: var(--display);
  letter-spacing: 0.16em;
  color: white;
  margin-bottom: 6px;
}

/* MOBILE */
@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 16px;
    right: 16px;
    background: #0e0f13;
    border: 1px solid var(--line);
    flex-direction: column;
    padding: 18px;
    gap: 16px;
  }

  .nav-links.open {
    display: flex;
  }

  .hamburger {
    display: grid;
    place-items: center;
  }

  .about-grid,
  .contact-grid,
  .services-grid,
  .values-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}
