/* ============================================================
   PLAIN AVE 2.0 — DESIGN SYSTEM
   Color Palette:
   --navy:     #0D1B2A  (primary dark)
   --slate:    #1E3A5F  (secondary dark)
   --charcoal: #243447  (mid-dark)
   --lime:     #1D9B46  (brand accent — retained from original)
   --teal:     #00D4B4  (tech accent)
   --white:    #F8FAFB  (foundation)
   --text:     #CBD5E1  (body on dark)
   ============================================================ */

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

:root {
  --navy:     #0D1B2A;
  --slate:    #1E3A5F;
  --charcoal: #243447;
  --lime:     #1D9B46;
  --teal:     #00D4B4;
  --white:    #F8FAFB;
  --off-white:#EEF2F7;
  --text-dark:#0D1B2A;
  --text-mid: #4A6080;
  --text-light:#CBD5E1;
  --border:   rgba(255,255,255,0.08);
  --radius:   12px;
  --radius-lg:20px;
  --trans:    0.3s ease;
}

html { scroll-behavior: smooth; scroll-padding-top: 120px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── TYPOGRAPHY ── */
.section-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 1.25rem;
}
.section-headline.light { color: #fff; }
.section-headline.centered { text-align: center; }

.section-sub {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 600px;
  margin-bottom: 2.5rem;
}
.section-sub.light { color: var(--text-light); }
.section-sub.centered { margin: 0 auto 2.5rem; text-align: center; }

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 1.25rem;
}
.section-label.light { color: var(--lime); }
.section-label.centered { justify-content: center; }
.label-line {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--lime);
  flex-shrink: 0;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all var(--trans);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--lime);
  color: var(--navy);
  border-color: var(--lime);
}
.btn-primary:hover {
  background: #22AE50;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(29,155,70,0.3);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.btn-ghost:hover {
  border-color: var(--lime);
  color: var(--lime);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-nav {
  background: var(--lime);
  color: var(--navy);
  padding: 10px 22px;
  font-size: 0.88rem;
}
.btn-nav:hover { background: #22AE50; }
.btn-large { padding: 18px 36px; font-size: 1.05rem; }
.btn-arrow { font-size: 1.1rem; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all var(--trans);
}
.nav.scrolled {
  background: rgba(13,27,42,0.96);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.logo-img { height: 48px; width: auto; }
.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--trans);
}
.nav-links a:hover { color: var(--lime); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--trans);
}

/* ── LIVE NAV HUD ── */
.nav-hud {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: minmax(180px, auto) 1fr minmax(90px, auto);
  align-items: center;
  gap: 24px;
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: height 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, margin-top 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.nav.scrolled .nav-hud {
  height: 36px;
  opacity: 1;
  margin-top: 12px;
  pointer-events: auto;
}

.hud-status {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
}
.hud-status-dot {
  width: 7px;
  height: 7px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(29,155,70,0.6);
  animation: trip-ping 2s ease-in-out infinite;
  flex-shrink: 0;
}
.hud-status-label { color: var(--lime); }
.hud-divider {
  width: 1px;
  height: 12px;
  background: rgba(255,255,255,0.18);
}
.hud-section {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: color 0.3s ease;
}

.hud-track {
  position: relative;
  height: 24px;
  display: flex;
  align-items: center;
}
.hud-track-bg {
  position: absolute;
  inset: 50% 0 auto 0;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  transform: translateY(-50%);
}
.hud-track-fg {
  position: absolute;
  inset: 50% auto auto 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--lime), var(--teal));
  border-radius: 2px;
  transform: translateY(-50%);
  box-shadow: 0 0 8px rgba(29,155,70,0.5);
  transition: width 0.15s linear;
}
.hud-waypoints {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hud-waypoint {
  position: absolute;
  top: 50%;
  left: var(--pos, 0%);
  width: 8px;
  height: 8px;
  background: var(--navy);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
  pointer-events: auto;
  cursor: pointer;
}
.hud-waypoint:hover {
  transform: translate(-50%, -50%) scale(1.4);
  border-color: var(--lime);
}
.hud-waypoint.is-passed {
  background: var(--lime);
  border-color: var(--lime);
  box-shadow: 0 0 8px rgba(29,155,70,0.6);
}
.hud-waypoint::after {
  content: attr(data-label);
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}
.hud-waypoint:hover::after { opacity: 1; }

.hud-beacon {
  position: absolute;
  top: 50%;
  left: 0%;
  width: 14px;
  height: 14px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: left 0.15s linear;
}
.hud-beacon-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(29,155,70,0.4);
  animation: beacon-pulse 1.8s ease-out infinite;
}
.hud-beacon-dot {
  position: absolute;
  inset: 3px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(29,155,70,0.9), 0 0 4px #fff;
  z-index: 2;
}

.hud-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
  text-align: right;
  white-space: nowrap;
}
.hud-eta {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--lime);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.hud-eta-label {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(29,155,70,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29,155,70,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-route-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.route-svg { width: 100%; height: 100%; }
.route-path {
  fill: none;
  stroke-dasharray: 12, 8;
  animation: dash 20s linear infinite;
}
.route-path-1 { stroke: rgba(29,155,70,0.15); stroke-width: 2; }
.route-path-2 { stroke: rgba(0,212,180,0.1); stroke-width: 1.5; animation-duration: 30s; animation-direction: reverse; }
.route-path-3 { stroke: rgba(29,155,70,0.08); stroke-width: 1; animation-duration: 40s; }
.route-node { fill: rgba(29,155,70,0.3); animation: pulse-node 3s ease-in-out infinite; }
@keyframes dash { to { stroke-dashoffset: -1000; } }
@keyframes pulse-node { 0%,100% { opacity: 0.3; r: 6; } 50% { opacity: 0.8; r: 9; } }

.hero-content { position: relative; z-index: 2; max-width: 780px; }
.badge-dot {
  width: 6px; height: 6px;
  background: var(--lime);
  border-radius: 50%;
  animation: pulse-node 2s ease-in-out infinite;
}
.hero-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 1.5rem;
}
.headline-accent { color: var(--lime); }
.hero-sub {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 2.5rem; }

/* Hero status bar (pre-headline GPS strip) */
.hero-status-bar {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 100px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  margin-bottom: 1.75rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
}
.hsb-item { display: inline-flex; align-items: center; gap: 6px; }
.hsb-dot {
  width: 6px; height: 6px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(29,155,70,0.6);
  animation: trip-ping 2s ease-in-out infinite;
}
.hsb-label {
  color: var(--lime);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hsb-label-muted {
  color: rgba(255,255,255,0.4);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.62rem;
}
.hsb-value { color: #fff; font-weight: 600; font-variant-numeric: tabular-nums; }
.hsb-divider { width: 1px; height: 12px; background: rgba(255,255,255,0.14); }

/* Hero stat tiles (dashboard gauges) */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  max-width: 640px;
}
.stat-tile {
  padding: 14px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all var(--trans);
}
.stat-tile:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(29,155,70,0.3);
  transform: translateY(-2px);
}
.stat-tile-head { display: flex; align-items: center; gap: 8px; }
.stat-tile-dot {
  width: 6px; height: 6px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(29,155,70,0.7);
  animation: trip-ping 2.4s ease-in-out infinite;
  flex-shrink: 0;
}
.stat-tile-dot--teal { background: var(--teal); box-shadow: 0 0 6px rgba(0,212,180,0.7); }
.stat-tile-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.stat-num {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--lime);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat-tile-foot {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.32);
  text-transform: uppercase;
}

/* Hero map-tile grid (chunked) */
.hero-tiles {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(29,155,70,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29,155,70,0.07) 1px, transparent 1px);
  background-size: 240px 240px;
  pointer-events: none;
  z-index: 0;
}

/* Hero topographic contours */
.hero-topo {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-topo svg { width: 100%; height: 100%; }
.topo-group {
  stroke: rgba(0,212,180,0.09);
  transform-box: fill-box;
  transform-origin: 1080px 420px;
  animation: topo-breathe 14s ease-in-out infinite;
}
.topo-group ellipse:nth-child(odd) { stroke: rgba(29,155,70,0.07); }
@keyframes topo-breathe {
  0%, 100% { transform: scale(1);    opacity: 0.85; }
  50%      { transform: scale(1.04); opacity: 1; }
}

@keyframes dot-blink {
  0%   { opacity: 0; }
  25%  { opacity: 1; }
  100% { opacity: 1; }
}

.hero-scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }

/* ── ROUTE DIVIDER ── */
.route-divider { padding: 0; line-height: 0; background: var(--navy); }
.road-stripe {
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--lime) 0px,
    var(--lime) 40px,
    transparent 40px,
    transparent 80px
  );
  opacity: 0.6;
}

/* ── WHY SECTION ── */
.why { padding: 100px 0; background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 5rem;
}
.why-body { color: var(--text-mid); margin-bottom: 1.25rem; font-size: 1.05rem; line-height: 1.75; }

/* Sign Feature */
.sign-feature { display: flex; justify-content: center; }
.sign-post { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.sign-bracket {
  width: 60px;
  height: 12px;
  background: #8899AA;
  border-radius: 3px 3px 0 0;
}
.sign-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  min-width: 200px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transition: transform var(--trans);
}
.sign-card:hover { transform: translateX(4px); }
.sign-card--blue { background: var(--slate); color: #fff; }
.sign-card--green { background: var(--charcoal); color: #fff; }
.sign-card--accent { background: var(--lime); color: var(--navy); }
.sign-card.active { background: var(--lime); color: var(--navy); transform: scale(1.04); }
.sign-icon { font-size: 1rem; }
.sign-pole { width: 6px; height: 60px; background: #8899AA; border-radius: 3px; }

/* Pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pillar {
  padding: 28px 24px;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius);
  transition: all var(--trans);
}
.pillar:hover {
  border-color: var(--lime);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.pillar-icon {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--lime);
  margin-bottom: 12px;
  line-height: 1;
}
.pillar h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
.pillar p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.6; }

/* ── SERVICES ── */
.services { padding: 100px 0; background: var(--off-white); position: relative; overflow: hidden; }
.services-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 2px 2px, #CBD5E1 1px, transparent 0);
  background-size: 32px 32px;
  opacity: 0.5;
  pointer-events: none;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 3rem;
}
.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid #E2E8F0;
  position: relative;
  transition: all var(--trans);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lime), var(--teal));
  opacity: 0;
  transition: opacity var(--trans);
}
.service-card:hover {
  border-color: transparent;
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.1);
}
.service-card:hover::before { opacity: 1; }
.service-card.featured {
  background: var(--navy);
  border-color: transparent;
  color: #fff;
}
.service-card.featured::before { opacity: 1; }
.service-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
.route-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--lime);
  background: rgba(29,155,70,0.1);
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid rgba(29,155,70,0.2);
}
.service-icon { width: 32px; height: 32px; color: var(--text-mid); }
.service-card.featured .service-icon { color: var(--lime); }
.service-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 10px; }
.service-card.featured h3 { color: #fff; }
.service-card p { font-size: 0.92rem; color: var(--text-mid); line-height: 1.65; margin-bottom: 20px; }
.service-card.featured p { color: var(--text-light); }
.featured-tag {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--lime);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
}
.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.service-list li {
  font-size: 0.85rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-list li::before {
  content: '→';
  color: var(--lime);
  font-weight: 700;
  font-size: 0.75rem;
}
.service-card.featured .service-list li { color: var(--text-light); }

/* Service coords (GPS chrome row) */
.service-coords {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 10px 12px;
  margin-bottom: 16px;
  background: rgba(13, 27, 42, 0.04);
  border: 1px solid rgba(13, 27, 42, 0.06);
  border-radius: 8px;
  font-family: 'Space Grotesk', sans-serif;
}
.service-card.featured .service-coords {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
.sc-item {
  display: inline-flex;
  flex-direction: column;
  gap: 1px;
}
.sc-label {
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(13, 27, 42, 0.4);
}
.service-card.featured .sc-label { color: rgba(255,255,255,0.4); }
.sc-value {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}
.service-card.featured .sc-value { color: #fff; }
.sc-status {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  padding: 4px 10px;
  background: rgba(29,155,70,0.1);
  border: 1px solid rgba(29,155,70,0.25);
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.sc-dot {
  width: 6px; height: 6px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(29,155,70,0.65);
  animation: trip-ping 2s ease-in-out infinite;
}

/* Service link (with rerouting hover) */
.service-link {
  position: relative;
  display: inline-block;
  height: 1.2em;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--lime);
  text-decoration: none;
  letter-spacing: 0.04em;
}
.sl-default,
.sl-hover {
  display: inline-block;
  transition: opacity 0.28s ease, transform 0.28s ease;
}
.sl-hover {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transform: translateY(6px);
  white-space: nowrap;
  font-family: 'Space Grotesk', sans-serif;
  color: var(--teal);
}
.service-card:hover .sl-default {
  opacity: 0;
  transform: translateY(-6px);
}
.service-card:hover .sl-hover {
  opacity: 1;
  transform: translateY(0);
}
.sl-dot {
  display: inline-block;
  opacity: 0;
  animation: dot-blink 1.5s steps(1, end) infinite;
}
.sl-dot:nth-child(1) { animation-delay: 0s; }
.sl-dot:nth-child(2) { animation-delay: 0.4s; }
.sl-dot:nth-child(3) { animation-delay: 0.8s; }

/* ── WHO WE GUIDE ── */
.who { padding: 100px 0; background: var(--white); }
.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 3rem;
}
.who-card {
  padding: 32px 28px;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius);
  position: relative;
  transition: all var(--trans);
}
.who-card:hover {
  border-color: var(--lime);
  box-shadow: 0 12px 32px rgba(29,155,70,0.12);
}
.who-marker {
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--lime);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 18px;
}
.who-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--navy); }
.who-card p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.65; }

/* ── PROCESS / JOURNEY ── */
.process { padding: 100px 0; background: var(--navy); position: relative; overflow: hidden; }
.process-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(29,155,70,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29,155,70,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

/* Trip Summary HUD */
.trip-summary {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin: 2.5rem auto 0;
  padding: 16px 28px;
  width: fit-content;
  max-width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 100px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.06);
}
.trip-item { display: flex; flex-direction: column; gap: 3px; }
.trip-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.trip-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}
.trip-divider { width: 1px; height: 28px; background: rgba(255,255,255,0.08); }
.trip-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(29,155,70,0.12);
  border: 1px solid rgba(29,155,70,0.28);
  border-radius: 100px;
}
.trip-status-dot {
  width: 8px; height: 8px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(29,155,70,0.6);
  animation: trip-ping 2s ease-in-out infinite;
}
.trip-status-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
@keyframes trip-ping {
  0%, 100% { box-shadow: 0 0 0 0 rgba(29,155,70,0.55); }
  50%      { box-shadow: 0 0 0 10px rgba(29,155,70,0); }
}

/* Journey container */
.journey {
  position: relative;
  margin-top: 5rem;
  padding: 0;
}

/* Winding GPS route SVG */
.journey-route {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}
.route-bg {
  fill: none;
  stroke: rgba(255,255,255,0.08);
  stroke-width: 1.5;
  stroke-dasharray: 6 8;
}
.route-fg {
  fill: none;
  stroke: var(--lime);
  stroke-width: 2.5;
  stroke-linecap: round;
  filter: drop-shadow(0 0 6px rgba(29,155,70,0.55));
}
.route-vehicle {
  fill: var(--lime);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.route-vehicle-glow {
  fill: rgba(29,155,70,0.55);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.journey.route-traveling .route-vehicle,
.journey.route-traveling .route-vehicle-glow { opacity: 1; }

/* Origin beacon */
.route-marker {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.route-marker-origin { margin-bottom: 60px; }
.origin-beacon {
  position: relative;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.beacon-dot {
  width: 14px; height: 14px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(29,155,70,0.85);
  z-index: 2;
}
.beacon-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(29,155,70,0.35);
  animation: beacon-pulse 2.4s ease-out infinite;
}
.beacon-ring-2 {
  animation-delay: 1.2s;
}
@keyframes beacon-pulse {
  0%   { transform: scale(0.4); opacity: 0.9; }
  100% { transform: scale(2.6); opacity: 0; }
}
.marker-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lime);
}

/* Journey steps */
.journey-step {
  display: grid;
  grid-template-columns: 1fr 64px 1fr;
  align-items: center;
  column-gap: 32px;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}
.journey-step .journey-pin { grid-column: 2; }
.journey-step .journey-content { grid-column: 3; }
.journey-step.reverse .journey-content { grid-column: 1; }

/* Pin (waypoint) */
.journey-pin {
  width: 64px;
  height: 64px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pin-pulse {
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: rgba(29,155,70,0.22);
  animation: pin-pulse 2.6s ease-out infinite;
}
@keyframes pin-pulse {
  0%   { transform: scale(0.55); opacity: 0.85; }
  100% { transform: scale(2);    opacity: 0; }
}
.pin-shape {
  width: 52px;
  height: 52px;
  background: var(--navy);
  border: 2px solid rgba(29,155,70,0.55);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.pin-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: rgba(29,155,70,0.85);
  letter-spacing: 0.04em;
  transition: color 0.4s ease;
}
.journey-step.is-active .pin-shape {
  background: var(--lime);
  border-color: var(--lime);
  box-shadow:
    0 0 0 6px rgba(29,155,70,0.15),
    0 0 28px rgba(29,155,70,0.55);
}
.journey-step.is-active .pin-num { color: var(--navy); }
.journey-step.is-active .pin-pulse { background: rgba(29,155,70,0.35); }

/* Card */
.journey-content {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 30px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all var(--trans);
}
.journey-content:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(29,155,70,0.3);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}
.card-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.journey-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
}
.card-eta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.65);
  padding: 4px 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 100px;
  white-space: nowrap;
}
.eta-dot {
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(0,212,180,0.8);
}
.journey-content h3 { font-size: 1.2rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.journey-content p { font-size: 0.9rem; color: var(--text-light); line-height: 1.65; margin-bottom: 18px; }
.journey-outputs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.journey-outputs span {
  font-size: 0.78rem;
  font-weight: 600;
  background: rgba(29,155,70,0.1);
  color: var(--lime);
  border: 1px solid rgba(29,155,70,0.2);
  padding: 4px 12px;
  border-radius: 100px;
}
.card-next {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  padding-top: 14px;
  border-top: 1px dashed rgba(255,255,255,0.08);
  text-transform: uppercase;
}
.next-arrow {
  color: var(--lime);
  font-size: 0.9rem;
  animation: arrow-bob 1.8s ease-in-out infinite;
}
@keyframes arrow-bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(3px); }
}

/* Destination */
.route-marker-destination { margin-top: 8px; }
.destination-flag {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, var(--lime) 0%, var(--teal) 100%);
  color: var(--navy);
  padding: 16px 26px;
  border-radius: 14px;
  box-shadow: 0 14px 40px rgba(29,155,70,0.3), 0 0 0 1px rgba(255,255,255,0.06) inset;
}
.flag-mark {
  font-size: 1.3rem;
  line-height: 1;
}
.destination-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}
.destination-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.destination-sub {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  opacity: 0.75;
  text-transform: uppercase;
}

/* ── WORK ── */
.work { padding: 100px 0; background: var(--white); }
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 3rem;
}
.work-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #E2E8F0;
  transition: all var(--trans);
}
.work-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.12);
}
.work-card-img {
  height: 200px;
  position: relative;
  overflow: hidden;
}
.work-route-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}
.work-route-overlay svg { width: 100%; height: 100%; }
.work-labels {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 16px 20px;
}
.work-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  background: rgba(0,0,0,0.4);
  padding: 4px 10px;
  border-radius: 100px;
}
.work-card-body { padding: 24px; }
.work-routes-taken {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.work-routes-taken span {
  font-size: 0.72rem;
  font-weight: 600;
  background: var(--off-white);
  color: var(--text-mid);
  padding: 3px 10px;
  border-radius: 100px;
  border: 1px solid #E2E8F0;
}
.work-card-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
.work-card-body p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 14px; }
.work-link { font-size: 0.85rem; font-weight: 600; color: var(--navy); text-decoration: none; }
.work-link:hover { color: var(--lime); }
.work-cta { text-align: center; margin-top: 3rem; }

/* ── AUTOMATION ── */
.automation { padding: 100px 0; background: var(--off-white); }
.automation-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.automation-features { list-style: none; margin: 2rem 0; display: flex; flex-direction: column; gap: 24px; }
.automation-features li { display: flex; gap: 16px; align-items: flex-start; }
.af-icon {
  color: var(--lime);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.automation-features strong { display: block; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.automation-features p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.6; }

.momentum-visual {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}
.momentum-track { margin-bottom: 20px; }
.momentum-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.momentum-bar {
  height: 10px;
  background: rgba(255,255,255,0.08);
  border-radius: 100px;
  overflow: hidden;
  position: relative;
}
.momentum-bar::after {
  content: '';
  position: absolute;
  inset-block: 0;
  left: 0;
  width: var(--w, 50%);
  background: linear-gradient(90deg, var(--color, var(--teal)), rgba(0,212,180,0.6));
  border-radius: 100px;
  animation: bar-grow 1.5s ease-out forwards;
}
@keyframes bar-grow { from { width: 0; } }
.momentum-caption {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
  margin-top: 20px;
  line-height: 1.5;
}

/* ── TESTIMONIALS ── */
.testimonials { padding: 100px 0; background: var(--white); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 3rem;
}
.testimonial-card {
  padding: 36px 32px;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-lg);
  position: relative;
  transition: all var(--trans);
}
.testimonial-card:hover {
  border-color: var(--lime);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}
.testimonial-card.featured {
  background: var(--navy);
  border-color: transparent;
}
.testimonial-quote {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--lime);
  margin-bottom: 16px;
  opacity: 0.5;
}
.testimonial-card p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 24px; }
.testimonial-card.featured p { color: var(--text-light); }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--lime), var(--teal));
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.9rem; color: var(--navy); }
.testimonial-card.featured .testimonial-author strong { color: #fff; }
.testimonial-author span { font-size: 0.8rem; color: var(--text-mid); }
.testimonial-card.featured .testimonial-author span { color: var(--text-light); }

/* ── ABOUT ── */
.about { padding: 100px 0; background: var(--off-white); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}
.about-sign-wrap {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.about-logo { width: 260px; height: auto; }
.location-dot {
  width: 8px; height: 8px;
  background: var(--lime);
  border-radius: 50%;
  animation: pulse-node 2s ease-in-out infinite;
}
.about-right p { font-size: 1rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 1.25rem; }
.about-values { margin-top: 2rem; display: flex; flex-direction: column; gap: 14px; }
.value {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
}
.value-icon { color: var(--lime); font-size: 1rem; flex-shrink: 0; }

/* ── CTA FINAL ── */
.cta-final {
  padding: 120px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-route-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta-route-lines svg { width: 100%; height: 100%; }
.sign-post-hero { margin-bottom: 2rem; display: flex; justify-content: center; }
.sign-post-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 40px;
  display: inline-block;
}
.cta-logo { height: 70px; width: auto; }
.cta-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  position: relative;
}
.cta-sub { font-size: 1.05rem; color: var(--text-light); max-width: 520px; margin: 0 auto 3rem; line-height: 1.7; }
.cta-form { max-width: 600px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-input {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 18px;
  color: #fff;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color var(--trans);
  width: 100%;
}
.form-input::placeholder { color: rgba(255,255,255,0.35); }
.form-input:focus { outline: none; border-color: var(--lime); }
.form-input-wide { width: 100%; }
.cta-form .btn { align-self: center; }
.cta-note { font-size: 0.82rem; color: rgba(255,255,255,0.3); margin-top: 1.5rem; }

/* ── FOOTER ── */
.footer { background: #070F1A; padding: 80px 0 0; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer-brand {}
.footer-logo { height: 52px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.45); line-height: 1.65; margin-bottom: 16px; }
.footer-location { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: rgba(255,255,255,0.35); }
.footer-nav-group h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 20px;
}
.footer-nav-group ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-nav-group a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color var(--trans);
}
.footer-nav-group a:hover { color: var(--lime); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 24px 0; }
.footer-stripe {
  margin-bottom: 0;
  opacity: 0.3;
}
.footer-legal {
  display: flex;
  gap: 24px;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
  flex-wrap: wrap;
}
.footer-legal a { color: rgba(255,255,255,0.35); text-decoration: none; }
.footer-legal a:hover { color: var(--lime); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .who-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav-links, .btn-nav { display: none; }
  .nav-toggle { display: flex; }
  .nav-hud {
    padding: 0 20px;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }
  .nav.scrolled .nav-hud { height: 28px; margin-top: 8px; }
  .hud-divider, .hud-status-label, .hud-eta-label { display: none; }
  .hud-section { font-size: 0.68rem; }
  .hud-eta { font-size: 0.78rem; }

  .hero { padding: 100px 0 60px; }
  .hero-status-bar { font-size: 0.65rem; padding: 6px 12px; gap: 10px; }
  .hsb-divider-coords { display: none; }
  .hsb-coords { display: none; }
  .hero-stats { grid-template-columns: 1fr; gap: 10px; }
  .stat-num { font-size: 1.7rem; }
  .service-coords { gap: 10px; padding: 8px 10px; }
  .sc-status { margin-left: 0; }

  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-right { order: -1; }
  .pillars { grid-template-columns: 1fr; }

  .services-grid { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr; }

  .journey-route { display: none; }
  .trip-summary {
    padding: 14px 18px;
    gap: 14px;
    border-radius: 24px;
  }
  .trip-divider { display: none; }
  .journey-step,
  .journey-step.reverse {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .journey-step .journey-content,
  .journey-step.reverse .journey-content { grid-column: auto; width: 100%; }
  .card-meta-row { flex-wrap: wrap; }
  .destination-flag { padding: 14px 20px; }

  .work-grid { grid-template-columns: 1fr; }
  .automation-inner { grid-template-columns: 1fr; gap: 40px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }

  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }

  .section-headline { font-size: 1.8rem; }
  .hero-headline { font-size: 2.4rem; }
}
