/* ============================================================
   PHANTOM COURIERS — Main Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --black:        #0A0A0A;
  --black-soft:   #111111;
  --black-card:   #161616;
  --white:        #FAFAFA;
  --orange:       #FF5C00;
  --orange-hover: #E65000;
  --orange-dim:   rgba(255, 92, 0, 0.12);
  --gray-100:     #F4F4F4;
  --gray-200:     #E0E0E0;
  --gray-400:     #999999;
  --gray-600:     #555555;
  --gray-800:     #1E1E1E;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --nav-height:   72px;
  --max-width:    1320px;
  --pad-x:        clamp(20px, 5vw, 80px);
  --section-y:    clamp(80px, 10vw, 140px);

  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:     cubic-bezier(0, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ── Typography ────────────────────────────────────────────── */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(72px, 12vw, 160px);
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.display-lg {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 100px);
  line-height: 0.94;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.display-md {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1;
  text-transform: uppercase;
}

.heading-lg {
  font-family: var(--font-body);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 600;
  line-height: 1.15;
}

.heading-md {
  font-family: var(--font-body);
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 600;
  line-height: 1.2;
}

.body-lg { font-size: clamp(16px, 1.5vw, 20px); line-height: 1.65; font-weight: 300; }
.body-md { font-size: 16px; line-height: 1.65; font-weight: 400; }
.body-sm { font-size: 14px; line-height: 1.6; font-weight: 400; }
.label   { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; }

.text-orange { color: var(--orange); }
.text-gray   { color: var(--gray-400); }
.text-white  { color: var(--white); }
.text-black  { color: var(--black); }

/* ── Layout Utilities ──────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.section {
  padding-block: var(--section-y);
}

.section--dark  { background: var(--black); }
.section--card  { background: var(--black-soft); }
.section--white { background: var(--white); color: var(--black); }
.section--orange { background: var(--orange); color: var(--white); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }
.gap-8  { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-40 { gap: 40px; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border-radius: 2px;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.btn--orange {
  background: var(--orange);
  color: var(--white);
}
.btn--orange:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255, 92, 0, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn--outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-1px);
}

.btn--outline-dark {
  background: transparent;
  color: var(--black);
  border: 1.5px solid rgba(0,0,0,0.2);
}
.btn--outline-dark:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn--lg { padding: 18px 44px; font-size: 17px; }

.btn svg, .btn .btn-arrow {
  transition: transform 0.25s var(--ease);
}
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ── Navigation ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.nav__inner {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--pad-x);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav__logo img {
  height: 72px;
  width: auto;
  object-fit: contain;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1;
}

.nav__logo-text span { color: var(--orange); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: center;
}

.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  padding: 8px 16px;
  border-radius: 2px;
  transition: color 0.2s var(--ease);
  letter-spacing: 0.02em;
}

.nav__link:hover { color: var(--white); }
.nav__link.active { color: var(--orange); }

/* Dropdown */
.nav__dropdown { position: relative; }

.nav__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  padding: 8px 16px;
  transition: color 0.2s var(--ease);
  letter-spacing: 0.02em;
}

.nav__dropdown-toggle:hover { color: var(--white); }

.nav__dropdown-toggle svg {
  width: 12px;
  height: 12px;
  transition: transform 0.25s var(--ease);
}

.nav__dropdown:hover .nav__dropdown-toggle { color: var(--white); }
.nav__dropdown:hover .nav__dropdown-toggle svg { transform: rotate(180deg); }

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: all 0.25s var(--ease);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  border-radius: 2px;
  transition: all 0.2s var(--ease);
}

.nav__dropdown-menu a:hover {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  padding-left: 20px;
}

/* Mobile nav */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

.nav__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav__mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--nav-height);
  background: var(--black);
  z-index: 999;
  padding: 40px var(--pad-x);
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}

.nav__mobile-menu.open { display: flex; }

.nav__mobile-link {
  font-size: 28px;
  font-family: var(--font-display);
  color: var(--white);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s var(--ease);
  letter-spacing: 0.03em;
}

.nav__mobile-link:hover { color: var(--orange); }

.nav__mobile-sub {
  font-size: 16px;
  font-family: var(--font-body);
  color: rgba(255,255,255,0.5);
  padding: 10px 0 10px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 0.2s var(--ease);
}

.nav__mobile-sub:hover { color: var(--orange); }

.nav__mobile-cta {
  margin-top: 32px;
}

/* ── Hero / Video Scrub ─────────────────────────────────────── */
.hero-wrapper {
  position: relative;
  height: 500vh;
}

.hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.15) 0%,
    rgba(10,10,10,0.25) 40%,
    rgba(10,10,10,0.7) 100%
  );
  z-index: 1;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(40px, 6vw, 80px) var(--pad-x);
  max-width: var(--max-width);
  margin-inline: auto;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.hero-eyebrow.visible { opacity: 1; transform: translateY(0); }

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(80px, 14vw, 200px);
  line-height: 0.88;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease-out) 0.1s, transform 0.9s var(--ease-out) 0.1s;
}

.hero-headline.visible { opacity: 1; transform: translateY(0); }
.hero-headline .line-orange { color: var(--orange); }

.hero-sub {
  margin-top: 24px;
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  max-width: 480px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease-out) 0.25s, transform 0.8s var(--ease-out) 0.25s;
}

.hero-sub.visible { opacity: 1; transform: translateY(0); }

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease-out) 0.4s, transform 0.8s var(--ease-out) 0.4s;
}

.hero-actions.visible { opacity: 1; transform: translateY(0); }

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  right: var(--pad-x);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 1s var(--ease-out) 0.8s;
}

.hero-scroll-hint.visible { opacity: 1; }

.hero-scroll-hint span {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  writing-mode: vertical-rl;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.6); }
}

/* Progress bar */
.hero-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--orange);
  z-index: 10;
  transition: width 0.05s linear;
}

/* ── Service Cards ──────────────────────────────────────────── */
.services-section {
  background: var(--black-soft);
  padding-block: var(--section-y);
}

.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.service-card {
  position: relative;
  background: var(--black-card);
  padding: 40px 32px;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.3s var(--ease);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: #1a1a1a; }

.service-card__number {
  font-family: var(--font-display);
  font-size: 80px;
  color: rgba(255,255,255,0.04);
  position: absolute;
  top: 16px;
  right: 20px;
  line-height: 1;
  transition: color 0.3s var(--ease);
  pointer-events: none;
}

.service-card:hover .service-card__number { color: rgba(255, 92, 0, 0.08); }

.service-card__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  color: var(--orange);
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1;
}

.service-card__desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--gray-400);
  line-height: 1.6;
  margin-bottom: 28px;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: gap 0.2s var(--ease);
}

.service-card:hover .service-card__link { gap: 14px; }

/* ── Stats Section ──────────────────────────────────────────── */
.stats-section {
  background: var(--black);
  padding-block: var(--section-y);
  overflow: hidden;
}

.stats-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.stats-left .label {
  color: var(--orange);
  margin-bottom: 20px;
}

.stats-left p {
  color: rgba(255,255,255,0.55);
  max-width: 480px;
  margin-top: 24px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.06);
}

.stat-item {
  background: var(--black);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}

.stat-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255,255,255,0.06);
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 88px);
  line-height: 1;
  color: var(--orange);
  display: block;
}

.stat-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 8px;
  display: block;
}

/* ── Testimonials ───────────────────────────────────────────── */
.testimonials-section {
  background: var(--black-soft);
  padding-block: var(--section-y);
}

.testimonials-header {
  margin-bottom: 60px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.testimonial-card {
  background: var(--black-card);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 120px;
  line-height: 1;
  color: var(--orange);
  opacity: 0.15;
  position: absolute;
  top: 16px;
  left: 28px;
}

.testimonial-quote {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  position: relative;
  z-index: 1;
  margin-bottom: 36px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}

.testimonial-company {
  font-size: 13px;
  color: var(--orange);
  letter-spacing: 0.05em;
}

/* ── Coverage Section ───────────────────────────────────────── */
.coverage-section {
  background: var(--black);
  padding-block: var(--section-y);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.coverage-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.coverage-intro .label { color: var(--orange); margin-bottom: 20px; }
.coverage-intro p { color: rgba(255,255,255,0.5); margin-top: 20px; font-size: 15px; }

.coverage-areas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.coverage-group { padding: 28px; border: 1px solid rgba(255,255,255,0.06); }
.coverage-group-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.coverage-group ul { display: flex; flex-direction: column; gap: 8px; }
.coverage-group li {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 8px;
}

.coverage-group li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.6;
  flex-shrink: 0;
}

/* ── CTA Banner ─────────────────────────────────────────────── */
.cta-banner {
  background: var(--orange);
  padding-block: clamp(60px, 8vw, 100px);
  text-align: center;
}

.cta-banner .display-lg { color: var(--white); }
.cta-banner p { color: rgba(255,255,255,0.75); margin-top: 16px; font-size: 18px; font-weight: 300; }
.cta-banner .btn {
  font-size: 17px;
  font-weight: 700;
  padding: 18px 48px;
}
.cta-banner .btn--cta {
  background: var(--white);
  color: var(--orange);
}
.cta-banner .btn--cta:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--black-soft);
  padding-top: 72px;
  padding-bottom: 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo {
  height: 44px;
  width: auto;
  margin-bottom: 16px;
  object-fit: contain;
}

.footer-brand p {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.7;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all 0.2s var(--ease);
}

.footer-social a:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.footer-col-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s var(--ease);
}
.footer-links a:hover { color: var(--white); }

.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}

.footer-contact-item .label { color: var(--gray-600); font-size: 11px; }
.footer-contact-item a,
.footer-contact-item span {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s var(--ease);
}
.footer-contact-item a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--gray-600);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: var(--gray-600);
  transition: color 0.2s var(--ease);
}
.footer-bottom-links a:hover { color: var(--white); }

/* ── Page Hero (inner pages) ────────────────────────────────── */
.page-hero {
  background: var(--black);
  padding-top: calc(var(--nav-height) + 80px);
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(ellipse at right center, rgba(255,92,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero .label { color: var(--orange); margin-bottom: 16px; }
.page-hero .display-lg { max-width: 700px; }
.page-hero p {
  margin-top: 24px;
  max-width: 560px;
  color: rgba(255,255,255,0.55);
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 300;
}

.page-hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 40px;
}

/* ── Reveal Animations ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Divider ────────────────────────────────────────────────── */
.divider {
  width: 48px;
  height: 3px;
  background: var(--orange);
  margin-bottom: 24px;
}

/* ── Feature List ───────────────────────────────────────────── */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.feature-item {
  display: flex;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  align-items: flex-start;
}

.feature-item:first-child { padding-top: 0; }

.feature-icon {
  width: 40px;
  height: 40px;
  background: var(--orange-dim);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}

.feature-content h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.feature-content p {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.6;
}

/* ── Info Card ──────────────────────────────────────────────── */
.info-card {
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 40px;
  border-radius: 2px;
}

.info-card .label { color: var(--orange); margin-bottom: 16px; }

/* ── Two-col content ────────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.two-col--wide {
  grid-template-columns: 1.4fr 1fr;
}

/* ── Horizontal Rule ────────────────────────────────────────── */
hr.rule {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-block: 60px;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .service-cards { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-inner { gap: 48px; }
  .coverage-areas { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .two-col, .two-col--wide { grid-template-columns: 1fr; gap: 48px; }
  .stats-inner { grid-template-columns: 1fr; }
  .stats-left p { max-width: 100%; }
  .coverage-inner { grid-template-columns: 1fr; gap: 48px; }
  .services-header { flex-direction: column; align-items: flex-start; gap: 20px; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav .btn--orange { display: none; }
  .nav__hamburger { display: flex; }

  .service-cards { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .coverage-areas { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-wrapper { height: 300vh; }
  .hero-actions { flex-direction: column; align-items: flex-start; }

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

  .page-hero-actions { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 56px; }
}

/* ── Scrollbar ──────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: rgba(255,92,0,0.4); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--orange); }

/* ── Selection ──────────────────────────────────────────────── */
::selection { background: var(--orange); color: var(--white); }
