/* ============================================================
   JOSH FUELS — Brand-matched stylesheet
   Colors: Josh Orange #E85D04 / Dark Navy #1A2B4A / White
   Fonts: Montserrat (body) + Barlow Condensed (display hero)
   ============================================================ */

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
  text-rendering: optimizeLegibility;
}
body {
  font-family: 'Montserrat', 'Helvetica Neue', sans-serif;
  font-size: clamp(0.9375rem, 0.9rem + 0.2vw, 1rem);
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  min-height: 100dvh;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
ul[role='list'], ol[role='list'] { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }
h1,h2,h3,h4,h5,h6 { text-wrap: balance; line-height: 1.15; }
p, li { text-wrap: pretty; }
button { cursor: pointer; background: none; border: none; }
a { color: inherit; text-decoration: none; }
::selection { background: rgba(232,93,4,0.2); }
:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 3px; border-radius: 4px; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; } }

/* ─── DESIGN TOKENS ─── */
:root, [data-theme="light"] {
  --color-bg:         #FFFFFF;
  --color-surface:    #F9F8F6;
  --color-surface-2:  #F2EEE9;
  --color-border:     #E2DDD8;
  --color-text:       #1A2B4A;
  --color-text-muted: #5A6478;
  --color-text-faint: #9AA3B2;
  --color-text-inv:   #FFFFFF;
  --color-primary:    #E85D04;
  --color-primary-h:  #C74D00;
  --color-navy:       #1A2B4A;
  --color-navy-light: #243558;
  --color-navy-dark:  #111C30;
  --color-green:      #4CAF50;
  --shadow-sm:  0 1px 3px rgba(26,43,74,0.08);
  --shadow-md:  0 4px 16px rgba(26,43,74,0.10);
  --shadow-lg:  0 12px 40px rgba(26,43,74,0.14);
  --shadow-xl:  0 24px 60px rgba(26,43,74,0.18);
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-full:9999px;
  --transition: 180ms cubic-bezier(0.16,1,0.3,1);
  --max-w: 1200px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
}
[data-theme="dark"] {
  --color-bg:         #0F1826;
  --color-surface:    #162033;
  --color-surface-2:  #1D2B42;
  --color-border:     #2A3A54;
  --color-text:       #D8DDE8;
  --color-text-muted: #7A8499;
  --color-text-faint: #4A5468;
  --color-text-inv:   #FFFFFF;
  --color-primary:    #FF7A2F;
  --color-primary-h:  #E85D04;
  --color-navy:       #D8DDE8;
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.25);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.35);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.45);
}
@media (prefers-color-scheme: dark) { :root:not([data-theme]) {
  --color-bg:#0F1826; --color-surface:#162033; --color-surface-2:#1D2B42;
  --color-border:#2A3A54; --color-text:#D8DDE8; --color-text-muted:#7A8499;
  --color-primary:#FF7A2F; --color-primary-h:#E85D04;
}}

/* ─── UTILITIES ─── */
.container { max-width: var(--max-w); margin-inline: auto; padding-inline: var(--gutter); }
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

/* ─── TYPOGRAPHY ─── */
.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}
.section-eyebrow--light { color: #FF9F6B; }
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.75rem, 1.2rem + 2.2vw, 2.75rem);
  font-weight: 800;
  color: var(--color-text);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.section-title--light { color: #FFFFFF; }
.section-sub {
  font-size: clamp(0.95rem, 0.9rem + 0.3vw, 1.05rem);
  color: var(--color-text-muted);
  max-width: 52ch;
  line-height: 1.7;
}
.section-header { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-header .section-sub { margin-inline: auto; }
.section-header--light .section-title { color: #fff; }
.section-header--light .section-sub { color: rgba(255,255,255,0.75); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem; font-weight: 700; letter-spacing: 0.02em;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--color-primary); color: #fff; }
.btn-primary:hover { background: var(--color-primary-h); box-shadow: 0 4px 18px rgba(232,93,4,0.4); }
.btn-outline { border-color: var(--color-primary); color: var(--color-primary); }
.btn-outline:hover { background: var(--color-primary); color: #fff; }
.btn-ghost-white { border-color: rgba(255,255,255,0.6); color: #fff; }
.btn-ghost-white:hover { background: rgba(255,255,255,0.15); }
.btn-lg { padding: 0.9rem 2rem; font-size: 0.9375rem; }
.btn-full { width: 100%; justify-content: center; }

/* ─── HEADER ─── */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition);
}
[data-theme="dark"] .header { background: rgba(15,24,38,0.95); }
[data-theme="dark"] .logo-img { filter: brightness(0) invert(1); }
.header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
  max-width: var(--max-w); margin-inline: auto;
  padding: 0.875rem var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 38px; width: auto; }
.nav { display: flex; align-items: center; gap: 0.25rem; }
.nav-link {
  padding: 0.5rem 0.75rem;
  font-size: 0.8125rem; font-weight: 600;
  color: var(--color-text-muted);
  border-radius: var(--radius-md);
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover { color: var(--color-primary); background: rgba(232,93,4,0.07); }
.nav-cta {
  padding: 0.5rem 1.25rem;
  background: var(--color-primary); color: #fff;
  border-radius: var(--radius-full);
  font-size: 0.8125rem; font-weight: 700;
  margin-left: 0.5rem;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav-cta:hover { background: var(--color-primary-h); box-shadow: 0 3px 12px rgba(232,93,4,0.35); }

/* ─── NAV DROPDOWN ─── */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  display: flex; align-items: center; gap: 4px;
  background: none; border: none; cursor: pointer;
  font-family: inherit; font-size: 0.8125rem; font-weight: 600;
  color: var(--color-text-muted);
  padding: 0.5rem 0.75rem; border-radius: var(--radius-md);
  transition: color var(--transition), background var(--transition);
}
.nav-dropdown-trigger:hover,
.nav-dropdown.open .nav-dropdown-trigger { color: var(--color-primary); background: rgba(232,93,4,0.07); }
.nav-dropdown-trigger svg { transition: transform 0.25s; flex-shrink: 0; }
.nav-dropdown.open .nav-dropdown-trigger svg { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.14);
  padding: 16px;
  display: none;
  gap: 8px;
  min-width: 340px;
  z-index: 300;
  flex-direction: row;
}
.nav-dropdown.open .nav-dropdown-menu { display: flex; }
.nav-dropdown-col { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.nav-dropdown-state {
  font-size: 0.67rem; font-weight: 700; letter-spacing: 0.11em;
  text-transform: uppercase; color: var(--color-primary);
  padding: 6px 8px 3px; display: block;
}
.nav-dropdown-item {
  font-size: 0.84rem; font-weight: 500;
  color: var(--color-text-muted);
  padding: 5px 8px; border-radius: 6px;
  transition: background 0.15s, color 0.15s;
  display: block; white-space: nowrap;
}
.nav-dropdown-item:hover { background: rgba(232,93,4,0.08); color: var(--color-primary); }
.nav-dropdown-divider { height: 1px; background: var(--color-border); margin: 6px 0; }

/* ─── CITY PAGES ─── */
.city-hero {
  background: linear-gradient(135deg, #0d1b2e 0%, #1a2b4a 65%, #E85D04 100%);
  padding: 130px 0 72px;
  text-align: center;
  position: relative; overflow: hidden;
}
.city-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('assets/JOSH_FUELS.jpg') center/cover no-repeat;
  opacity: 0.1;
}
.city-hero-inner { position: relative; z-index: 1; }
.city-eyebrow {
  display: inline-block;
  background: rgba(232,93,4,0.18); color: #E85D04;
  border: 1px solid rgba(232,93,4,0.35);
  font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 16px; border-radius: 100px; margin-bottom: 18px;
}
.city-hero h1 {
  font-family: 'Barlow Condensed', 'Montserrat', sans-serif;
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 900; color: #fff;
  line-height: 1.05; text-transform: uppercase; margin-bottom: 16px;
}
.city-hero h1 span { color: #E85D04; }
.city-hero p {
  font-size: clamp(0.95rem, 2vw, 1.08rem);
  color: rgba(255,255,255,0.75);
  max-width: 600px; margin: 0 auto 28px; line-height: 1.7;
}
.city-badges { display: flex; justify-content: center; flex-wrap: wrap; gap: 9px; }
.city-badge {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18);
  color: #fff; font-size: 0.77rem; font-weight: 600;
  padding: 5px 14px; border-radius: 100px;
}
.city-stats { background: #E85D04; padding: 26px 0; }
.city-stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  text-align: center;
}
.city-stat { padding: 4px 16px; border-right: 1px solid rgba(255,255,255,0.25); }
.city-stat:last-child { border-right: none; }
.city-stat-num { font-family: 'Barlow Condensed', sans-serif; font-size: 2rem; font-weight: 900; color: #fff; line-height: 1; display: block; }
.city-stat-lbl { font-size: 0.72rem; color: rgba(255,255,255,0.85); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; display: block; margin-top: 2px; }
.city-section { padding: 64px 0; }
.city-section--alt { background: var(--color-surface, #f9f8f6); }
[data-theme="dark"] .city-section--alt { background: #0d1626; }
.city-h2 {
  font-family: 'Barlow Condensed', 'Montserrat', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 900;
  color: var(--color-heading, #0d1b2e); text-transform: uppercase;
  line-height: 1.1; margin-bottom: 12px;
}
.city-h2 span { color: #E85D04; }
.city-eyebrow-sm {
  display: inline-block; color: #E85D04;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; margin-bottom: 8px;
}
.city-body { color: var(--color-text-muted,#555); font-size: 0.97rem; line-height: 1.8; margin-bottom: 14px; }
.city-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 32px; }
@media (max-width: 768px) { .city-cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .city-cards { grid-template-columns: 1fr; } }
.city-card {
  background: white; border: 1px solid var(--color-border,#e8e2d8);
  border-radius: 12px; padding: 22px 18px;
  transition: box-shadow 0.2s, transform 0.2s;
}
[data-theme="dark"] .city-card { background: #1a2b4a; border-color: #2a3d5c; }
.city-card:hover { box-shadow: 0 6px 22px rgba(0,0,0,0.09); transform: translateY(-2px); }
.city-card h4 { font-size: 0.9rem; font-weight: 700; color: var(--color-heading,#0d1b2e); margin-bottom: 5px; }
.city-card h4::before { content: '⬢ '; font-size: 0.65rem; color: #E85D04; vertical-align: 2px; }
.city-card p { font-size: 0.82rem; color: var(--color-text-muted,#666); line-height: 1.6; }
.city-areas { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 24px; }
.city-area-tag {
  background: rgba(232,93,4,0.08); border: 1px solid rgba(232,93,4,0.2);
  color: var(--color-heading,#0d1b2e); font-size: 0.82rem; font-weight: 600;
  padding: 5px 14px; border-radius: 100px;
}
.city-cta {
  background: linear-gradient(135deg,#0d1b2e 0%,#1a2b4a 100%);
  padding: 60px 0; text-align: center;
}
.city-cta h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.8rem,3.5vw,2.7rem); font-weight: 900;
  color: #fff; text-transform: uppercase; margin-bottom: 10px;
}
.city-cta h2 span { color: #E85D04; }
.city-cta p { color: rgba(255,255,255,0.7); font-size: 0.98rem; max-width: 480px; margin: 0 auto 24px; line-height: 1.7; }
.city-cta-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
@media (max-width: 560px) { .city-stats-grid { grid-template-columns: repeat(2,1fr); } .city-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); } .city-stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.2); } }

.header-actions { display: flex; align-items: center; gap: 0.5rem; }
.theme-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: var(--radius-full);
  color: var(--color-text-muted);
  transition: color var(--transition), background var(--transition);
}
.theme-toggle:hover { color: var(--color-primary); background: rgba(232,93,4,0.07); }
.menu-toggle { display: none; flex-direction: column; gap: 5px; padding: 6px; width: 36px; }
.menu-toggle span { display: block; height: 2px; background: var(--color-text); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO ─── */
.hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,18,35,0.82) 0%, rgba(26,43,74,0.65) 50%, rgba(232,93,4,0.25) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 820px; padding: var(--gutter);
  text-align: center; color: #fff;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.9); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.4rem 1rem; border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 2px rgba(74,222,128,0.3);
  animation: pulse-green 2s ease-in-out infinite;
}
@keyframes pulse-green { 0%,100%{box-shadow:0 0 0 2px rgba(74,222,128,0.3)} 50%{box-shadow:0 0 0 6px rgba(74,222,128,0.1)} }
.hero-heading {
  font-family: 'Barlow Condensed', 'Montserrat', sans-serif;
  font-size: clamp(3.5rem, 2rem + 6vw, 7rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-heading em { font-style: normal; color: var(--color-primary); }
.hero-sub {
  font-size: clamp(1rem, 0.95rem + 0.4vw, 1.15rem);
  color: rgba(255,255,255,0.85);
  max-width: 56ch; margin-inline: auto;
  margin-bottom: 2rem; line-height: 1.65;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-xl); padding: 1.25rem 2rem;
  backdrop-filter: blur(12px);
}
.stat { text-align: center; padding: 0.5rem 1.5rem; }
.stat-number { display: block; font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem); font-weight: 800; color: var(--color-primary); line-height: 1; }
.stat-label { display: block; font-size: 0.72rem; color: rgba(255,255,255,0.7); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; margin-top: 0.25rem; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); flex-shrink: 0; }
.hero-scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.5); font-size: 0.75rem;
  animation: bounce-down 2s ease-in-out infinite;
  z-index: 1;
}
@keyframes bounce-down { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ─── TRUST BAR ─── */
.trust-bar {
  background: var(--color-navy);
  padding: 1rem var(--gutter);
}
[data-theme="dark"] .trust-bar { background: var(--color-surface); }
.trust-items {
  max-width: var(--max-w); margin-inline: auto;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0.75rem 2rem;
}
.trust-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
}
.trust-item svg { color: var(--color-primary); flex-shrink: 0; }
.trust-sep { width: 1px; height: 24px; background: rgba(255,255,255,0.2); }
@media (max-width: 640px) { .trust-sep { display: none; } }

/* ─── EVOLUTION ─── */
.evolution {
  padding-block: clamp(4rem, 8vw, 7rem);
  background: var(--color-bg);
}
.evolution-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem); align-items: center;
}
.evolution-text .section-eyebrow { margin-bottom: 0.5rem; }
.evolution-body {
  font-size: 0.95rem; color: var(--color-text-muted);
  margin: 1rem 0 2rem; line-height: 1.75; max-width: 48ch;
}
.evolution-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.evolution-image img { width: 100%; border-radius: var(--radius-lg); }
@media (max-width: 768px) { .evolution-layout { grid-template-columns: 1fr; } .evolution-image { order: -1; } }

/* ─── SECTORS ─── */
.sectors {
  padding-block: clamp(4rem, 8vw, 7rem);
  background: var(--color-surface);
}
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.sector-card {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; cursor: pointer;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
  min-height: 280px;
}
.sector-card:not(.sector-card--soft)::before {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--card-img);
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 0.4s ease;
  z-index: 0;
}
.sector-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.sector-card:hover::before { opacity: 1; }
.sector-card:hover .sector-card-inner { background: rgba(10,18,35,0.72); padding-bottom: 3.25rem; }
.sector-card:hover .sector-name, .sector-card:hover .sector-desc { color: #fff; }
.sector-card:hover .sector-tags li { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.2); }
.sector-card:hover .sector-hover-overlay { opacity: 1; }
.sector-card-inner {
  position: relative; z-index: 1;
  padding: 1.75rem 1.5rem;
  height: 100%;
  transition: background 0.3s ease;
  background: var(--color-bg);
  border-radius: var(--radius-lg);
}
.sector-card--soft .sector-card-inner { background: var(--color-surface-2, var(--color-surface)); }
.sector-icon {
  width: 52px; height: 52px;
  background: rgba(232,93,4,0.1);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  transition: background 0.3s;
}
.sector-icon img { width: 32px; height: 32px; object-fit: contain; }
.sector-card:hover .sector-icon { background: rgba(255,255,255,0.15); }
.sector-name {
  font-size: 1rem; font-weight: 700;
  color: var(--color-text); margin-bottom: 0.5rem;
  transition: color 0.3s;
}
.sector-desc {
  font-size: 0.875rem; color: var(--color-text-muted);
  line-height: 1.6; margin-bottom: 1rem;
  transition: color 0.3s;
}
.sector-tags {
  display: flex; flex-wrap: wrap; gap: 0.35rem;
  list-style: none;
}
.sector-tags li {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.05em;
  padding: 0.2rem 0.6rem; border-radius: var(--radius-full);
  background: rgba(232,93,4,0.08); color: var(--color-primary);
  border: 1px solid rgba(232,93,4,0.2);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.sector-hover-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1rem 1.5rem;
  opacity: 0; transition: opacity 0.3s;
  z-index: 2;
}
.sector-hover-cta {
  font-size: 0.875rem; font-weight: 700;
  color: var(--color-primary);
  background: rgba(232,93,4,0.15);
  padding: 0.4rem 1rem; border-radius: var(--radius-full);
  border: 1px solid rgba(232,93,4,0.4);
}
@media (max-width: 1024px) { .sectors-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .sectors-grid { grid-template-columns: 1fr; } }

/* ─── FEATURES ─── */
.features {
  padding-block: clamp(4rem, 8vw, 7rem);
  background: var(--color-navy);
}
[data-theme="dark"] .features { background: var(--color-surface); }
.features-layout {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: clamp(2rem, 5vw, 5rem); align-items: start;
}
.features-nozzle img {
  max-width: 300px; margin-inline: auto;
  filter: drop-shadow(0 8px 32px rgba(232,93,4,0.3));
}
.features-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem; margin-top: 2rem;
}
.feature-item { display: flex; gap: 1rem; align-items: flex-start; }
.feature-icon { flex-shrink: 0; margin-top: 2px; filter: brightness(0) invert(1); }
.feature-title { font-size: 0.9375rem; font-weight: 700; color: #fff; margin-bottom: 0.35rem; }
.feature-desc { font-size: 0.875rem; color: rgba(255,255,255,0.65); line-height: 1.65; }
@media (max-width: 900px) { .features-layout { grid-template-columns: 1fr; } .features-nozzle { display: flex; justify-content: center; } .features-nozzle img { max-width: 200px; } }
@media (max-width: 600px) { .features-grid { grid-template-columns: 1fr; } }

/* ─── HOW IT WORKS ─── */
.how-it-works {
  padding-block: clamp(3rem, 6vw, 5rem);
  background: var(--color-bg);
}
.hiw-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem); align-items: center;
}
.steps-grid { display: flex; flex-direction: column; gap: 0; }
.step { display: flex; gap: 1.25rem; align-items: flex-start; }
.step-number {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--color-primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem; font-weight: 800; letter-spacing: 0.02em;
}
.step-content { padding-bottom: 1rem; }
.step:last-child .step-content { padding-bottom: 0; }
.step-title { font-size: 1rem; font-weight: 700; color: var(--color-text); margin-bottom: 0.3rem; }
.step-desc { font-size: 0.875rem; color: var(--color-text-muted); line-height: 1.6; max-width: 42ch; }
.step-link { color: var(--color-primary); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; transition: opacity var(--transition); }
.step-link:hover { opacity: 0.75; }
.step-alt { display: block; margin-top: 0.5rem; font-size: 0.8125rem; color: var(--color-text-muted); font-style: italic; }
.step-connector {
  width: 2px; height: 1.25rem; margin-left: 21px;
  background: linear-gradient(to bottom, var(--color-primary), rgba(232,93,4,0.2));
  flex-shrink: 0;
}
.hiw-image img {
  width: 100%; border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  object-fit: cover;
}
.hiw-app-badges {
  display: flex; gap: 0.75rem; margin-top: 1.5rem;
  flex-wrap: wrap;
}
.hiw-app-badges a img { height: 42px; width: auto; border-radius: 8px; }
@media (max-width: 768px) { .hiw-layout { grid-template-columns: 1fr; } }

/* ─── CALCULATOR ─── */
.calculator-section {
  padding-block: clamp(4rem, 8vw, 7rem);
  background: var(--color-navy);
}
[data-theme="dark"] .calculator-section { background: var(--color-surface-2, #1D2B42); }
.calc-layout {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: clamp(2.5rem, 5vw, 5rem); align-items: start;
}
.calc-sub { font-size: 0.95rem; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 1.5rem; }
.calc-features { display: flex; flex-direction: column; gap: 0.65rem; list-style: none; }
.calc-features li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: rgba(255,255,255,0.8); }
.calc-features svg { color: var(--color-primary); flex-shrink: 0; }
.calc-card {
  background: var(--color-bg);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: var(--shadow-xl);
}
.calc-card-title { font-size: 1.125rem; font-weight: 800; margin-bottom: 1.5rem; color: var(--color-text); }
.calc-field { margin-bottom: 1.25rem; }
.calc-label { display: block; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--color-text-muted); margin-bottom: 0.5rem; }
.calc-select, .form-input {
  width: 100%; padding: 0.7rem 0.875rem;
  border: 1.5px solid var(--color-border); border-radius: var(--radius-md);
  background: var(--color-surface); color: var(--color-text);
  font-size: 0.9rem; transition: border-color var(--transition), box-shadow var(--transition);
}
.calc-select:focus, .form-input:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(232,93,4,0.12); }
.calc-static-value {
  width: 100%; padding: 0.7rem 0.875rem;
  border: 1.5px solid var(--color-border); border-radius: var(--radius-md);
  background: var(--color-surface); color: var(--color-text);
  font-size: 0.9rem; font-weight: 600;
}
.calc-location-field { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; flex-wrap: wrap; }
.calc-location-status { font-size: 0.85rem; color: var(--color-text-muted); }
.calc-location-retry {
  font-size: 0.8rem; font-weight: 700; color: var(--color-primary);
  background: none; border: none; cursor: pointer; padding: 0; text-decoration: underline;
}
.calc-range-group { display: flex; align-items: center; gap: 1rem; margin-top: 0.5rem; }
.calc-range {
  flex: 1; -webkit-appearance: none; height: 4px;
  border-radius: 99px; outline: none;
  background: linear-gradient(to right, var(--color-primary) 0%, var(--color-primary) 10%, var(--color-border) 10%);
  border: none; padding: 0;
}
.calc-range::-webkit-slider-thumb {
  -webkit-appearance: none; width: 20px; height: 20px;
  border-radius: 50%; background: var(--color-primary);
  cursor: pointer; box-shadow: 0 0 0 3px rgba(232,93,4,0.2);
  transition: box-shadow var(--transition);
}
.calc-range::-webkit-slider-thumb:hover { box-shadow: 0 0 0 5px rgba(232,93,4,0.25); }
.calc-range-output { display: flex; align-items: baseline; gap: 0.25rem; white-space: nowrap; flex-shrink: 0; }
.calc-range-output span:first-child { font-size: 1.1rem; font-weight: 800; color: var(--color-primary); }
.calc-unit { font-size: 0.75rem; color: var(--color-text-muted); font-weight: 600; }
.calc-radio-group { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.calc-radio { display: flex; align-items: center; gap: 0.4rem; cursor: pointer; }
.calc-radio input[type="radio"] { accent-color: var(--color-primary); width: 15px; height: 15px; cursor: pointer; }
.radio-label { font-size: 0.8125rem; font-weight: 600; color: var(--color-text-muted); }
.calc-result {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
  border: 1px solid var(--color-border);
}
.calc-result-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.4rem 0;
  font-size: 0.875rem; color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
}
.calc-result-row:last-of-type { border-bottom: none; }
.calc-result-row--total { font-weight: 800; font-size: 1rem; color: var(--color-text); padding-top: 0.6rem; }
.calc-result-row--total span:last-child { color: var(--color-primary); font-size: 1.1rem; }
.calc-disclaimer { font-size: 0.7rem; color: var(--color-text-faint); margin-top: 0.5rem; }
@media (max-width: 840px) { .calc-layout { grid-template-columns: 1fr; } }

/* ─── CLIENTS ─── */
.clients {
  padding-block: clamp(4rem, 8vw, 7rem);
  background: var(--color-surface);
}
.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem; margin-bottom: 4rem;
}
.client-logo {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: 1.25rem 1.5rem;
  display: flex; align-items: center; justify-content: center; min-height: 80px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.client-logo:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.client-logo img { max-height: 54px; max-width: 130px; width: auto; object-fit: contain; filter: grayscale(1); opacity: 0.65; transition: filter var(--transition), opacity var(--transition); }
.client-logo:hover img { filter: grayscale(0); opacity: 1; }
/* DLF / L&T — white SVG logos, invert to dark on light bg */
.client-logo--light-bg { background: var(--color-bg); border-color: var(--color-border); }
.client-logo--light-bg img { filter: grayscale(1) invert(1); opacity: 0.65; }
.client-logo--light-bg:hover img { filter: grayscale(0) invert(1); opacity: 1; }
/* Dark mode: white logos are already visible on dark bg — no invert needed */
[data-theme="dark"] .client-logo--light-bg img { filter: grayscale(1); opacity: 0.65; }
[data-theme="dark"] .client-logo--light-bg:hover img { filter: grayscale(0); opacity: 1; }
/* CHEC — dark logo on light bg in light mode */
.client-logo--dark { background: #f4f6fa; border-color: #e8e2d8; }
/* Dark mode: flip CHEC logo light so it works on dark tile */
[data-theme="dark"] .client-logo--dark { background: var(--color-surface-2); border-color: var(--color-border); }
[data-theme="dark"] .client-logo--dark img { filter: grayscale(1) invert(1); opacity: 0.65; }
[data-theme="dark"] .client-logo--dark:hover img { filter: grayscale(0) invert(1); opacity: 1; }
@media (max-width: 1024px) { .clients-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 768px) { .clients-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .clients-grid { grid-template-columns: repeat(2, 1fr); } }

/* ─── TESTIMONIALS ─── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(350px, 1fr));
  gap: 1.25rem;
  align-items: start;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.5rem;
}
.testimonial-card {
  background: var(--color-bg);
  border-radius: var(--radius-xl); padding: 1.75rem;
  border: 1px solid var(--color-border);
  position: relative; box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  scroll-snap-align: start;
  flex-shrink: 0;
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.testimonial-card--featured {
  grid-column: span 1;
  border-top: 3px solid var(--color-primary);
}
.testimonial-q {
  font-family: 'Barlow Condensed', serif;
  font-size: 4rem; line-height: 0.8; color: var(--color-primary);
  opacity: 0.3; font-weight: 900;
  margin-bottom: 0.5rem;
}
.testimonial-text { font-size: 0.9rem; color: var(--color-text-muted); line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; }
.testimonial-footer { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: var(--color-primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.05em;
}
.testimonial-name { display: block; font-size: 0.875rem; font-weight: 700; color: var(--color-text); font-style: normal; }
.testimonial-role { display: block; font-size: 0.75rem; color: var(--color-text-muted); }
.testimonial-stars { color: #F59E0B; font-size: 0.875rem; margin-left: auto; flex-shrink: 0; }
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: repeat(2, minmax(300px, 1fr)); }
}
@media (max-width: 640px) {
  .testimonials-grid { grid-template-columns: repeat(1, minmax(280px, 1fr)); }
}

/* ─── CONTACT ─── */
.contact-section {
  padding-block: clamp(4rem, 8vw, 7rem);
  background: var(--color-navy);
}
[data-theme="dark"] .contact-section { background: var(--color-surface); }
.contact-layout {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: clamp(2.5rem, 5vw, 5rem); align-items: start;
}
.contact-sub { font-size: 0.95rem; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 0.875rem;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
}
.contact-detail:hover { color: #fff; }
.contact-detail-icon {
  width: 40px; height: 40px; border-radius: var(--radius-md); flex-shrink: 0;
  background: rgba(232,93,4,0.2); border: 1px solid rgba(232,93,4,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-primary);
}
.contact-detail-label { display: block; font-size: 0.7rem; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 0.1rem; }
.contact-detail-value { display: block; font-size: 0.95rem; font-weight: 600; }
.coverage-zones { display: flex; align-items: center; gap: 0.75rem; }
.coverage-badge {
  width: 44px; height: 44px; border-radius: var(--radius-md);
  background: rgba(232,93,4,0.2); border: 1px solid rgba(232,93,4,0.4);
  color: var(--color-primary); font-size: 0.8rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
}
.coverage-badge:hover {
  background: var(--color-primary);
  color: white;
  transform: scale(1.05);
}
.coverage-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: color var(--transition);
  cursor: pointer;
}
.coverage-label:hover {
  color: var(--color-primary);
}
.contact-form {
  background: var(--color-bg);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-xl);
}
.form-title { font-size: 1.25rem; font-weight: 800; margin-bottom: 1.5rem; color: var(--color-text); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-field { margin-bottom: 1rem; }
.form-row .form-field { margin-bottom: 0; }
.form-label { display: block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--color-text-muted); margin-bottom: 0.4rem; }
.form-textarea { resize: vertical; min-height: 80px; }
.form-note { font-size: 0.75rem; color: var(--color-text-faint); text-align: center; margin-top: 0.75rem; }
.form-success {
  display: flex; align-items: center; gap: 0.75rem;
  background: rgba(74,222,128,0.1); border: 1px solid rgba(74,222,128,0.3);
  border-radius: var(--radius-md); padding: 1rem;
  color: #166534; margin-top: 1rem;
}
[data-theme="dark"] .form-success { color: #4ade80; }
.form-success svg { color: #22c55e; flex-shrink: 0; }
.form-success[hidden] { display: none; }
@media (max-width: 840px) { .contact-layout { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } }

/* ─── FOOTER ─── */
.footer {
  background: var(--color-navy-dark, #111C30);
  color: rgba(255,255,255,0.7);
  padding-top: clamp(3rem, 6vw, 5rem);
}
[data-theme="dark"] .footer { background: #08101C; }
.footer-top {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: clamp(2rem, 4vw, 4rem); padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { height: 40px; width: auto; filter: brightness(0) invert(1); margin-bottom: 1rem; }
.footer-brand-desc { font-size: 0.875rem; line-height: 1.7; color: rgba(255,255,255,0.55); margin-bottom: 1.25rem; max-width: 32ch; }
.footer-app-badges { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.footer-app-badges a img { height: 34px; width: auto; border-radius: 6px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-col-title { font-size: 0.75rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 1rem; }
.footer-link {
  display: block; font-size: 0.875rem; color: rgba(255,255,255,0.6);
  padding: 0.2rem 0; transition: color var(--transition);
}
.footer-link:hover { color: var(--color-primary); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  padding-block: 1.25rem;
}
.footer-legal { font-size: 0.75rem; color: rgba(255,255,255,0.35); }
.footer-legal-links { display: flex; gap: 1.5rem; }
.footer-link-sm { font-size: 0.75rem; color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-link-sm:hover { color: var(--color-primary); }
@media (max-width: 768px) { .footer-top { grid-template-columns: 1fr; } .footer-links { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-links { grid-template-columns: 1fr; } }

/* ─── WHATSAPP FLOAT ─── */
.whatsapp-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 200;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }

/* Active nav link */
.nav-link.active { color: var(--color-primary); background: rgba(232,93,4,0.07); }

/* ─── FOOTER LOCATIONS ─── */
.footer-locations {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-locations-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5A6478;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-location-main {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-inv);
  transition: color var(--transition);
}

.footer-location-main:hover {
  color: var(--color-primary);
}

.footer-location-sub {
  font-size: 0.95rem;
  color: #7A8499;
  transition: color var(--transition);
}

.footer-location-sub:hover {
  color: var(--color-primary);
}

.footer-location-highlight {
  font-size: 1rem;
  font-weight: 700;
  color: #e85d05;
  transition: color var(--transition);
  margin-top: 0.25rem;
}

.footer-location-highlight:hover {
  color: #FFF;
}

/* ─── APP STORE MODAL ─── */
.app-store-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 9999;
}

.app-store-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.app-store-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.app-store-modal-content {
  position: relative;
  background: white;
  border-radius: 12px;
  padding: 40px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.app-store-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #999;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}

.app-store-modal-close:hover {
  background: #f5f5f5;
  color: #333;
}

.app-store-modal-icon {
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-store-modal-icon img {
  height: 80px;
  width: auto;
}

.app-store-modal-content h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #1a2b4a;
}

.app-store-modal-content p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 10px;
}

[data-theme="dark"] .app-store-modal-content {
  background: #1a1a2e;
  color: #ccc;
}

[data-theme="dark"] .app-store-modal-content h2 {
  color: white;
}

[data-theme="dark"] .app-store-modal-content p {
  color: #aaa;
}

[data-theme="dark"] .app-store-modal-close:hover {
  background: #2a2a4e;
  color: #fff;
}

/* ─── MOBILE NAV ─── */
@media (max-width: 900px) {
  .nav-dropdown-menu {
    position: static; transform: none;
    box-shadow: none; border: none;
    background: rgba(232,93,4,0.05);
    border-radius: 8px; flex-direction: column;
    gap: 0; padding: 6px; margin: 2px 0 4px;
    min-width: unset; width: 100%;
  }
  .nav-dropdown-trigger { padding: 0.75rem 1rem; font-size: 0.9375rem; width: 100%; justify-content: space-between; }
  .nav-dropdown-col { gap: 0; }
  .nav-dropdown-state { padding: 8px 8px 2px; }
  .nav-dropdown-item { padding: 6px 12px; font-size: 0.9rem; }
}
@media (max-width: 900px) {
  .menu-toggle { display: flex; }
  .nav {
    position: fixed; top: 64px; left: 0; right: 0;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    flex-direction: column; gap: 0.25rem; padding: 1rem;
    transform: translateY(-110%); opacity: 0; pointer-events: none;
    transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), opacity 0.3s;
    z-index: 90; box-shadow: var(--shadow-lg);
  }
  .nav.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-link { padding: 0.75rem 1rem; border-radius: var(--radius-md); font-size: 0.9375rem; }
  .nav-cta { margin: 0.5rem 0 0; width: 100%; text-align: center; padding: 0.75rem 1.25rem; border-radius: var(--radius-md); }
  .hero-stats { gap: 0; padding: 1rem; }
  .stat { padding: 0.5rem 0.75rem; }
  .stat-divider { height: 30px; }
}
@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 0.5rem; }
  .stat-divider { display: none; }
  .stat { padding: 0.35rem 0; }
}
