/* ================= TOKENS / RESET ================= */
:root {
  /* Paleta inspirada na bandeira dos EUA */
  --navy:        #0A2540;   /* azul corporativo escuro */
  --navy-deep:   #061629;   /* fundo profundo */
  --navy-flag:   #3C3B6E;   /* azul "Old Glory" */
  --red:         #B22234;   /* vermelho "Old Glory" */
  --red-bright:  #D12B3F;   /* hover/destaques */
  --white:       #FFFFFF;
  --off-white:   #F5F5F7;
  --gray-100:    #ECECEF;
  --gray-300:    #C7CAD1;
  --gray-500:    #6B7280;
  --gray-700:    #2A2F3A;
  --ink:         #0E1116;

  --container:   1200px;
  --radius:      14px;
  --radius-sm:   8px;
  --shadow-sm:   0 4px 14px rgba(10, 37, 64, 0.08);
  --shadow-md:   0 18px 40px rgba(10, 37, 64, 0.18);

  --font-sans:   'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  --font-display:'Playfair Display', Georgia, serif;

  --t-fast:  180ms cubic-bezier(.2,.8,.2,1);
  --t-med:   320ms cubic-bezier(.2,.8,.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--red); }

ul, ol { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ================= HEADER ================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(6, 22, 41, 0.0);
  backdrop-filter: blur(0);
  transition: background var(--t-med), backdrop-filter var(--t-med), padding var(--t-med);
  padding: 18px 0;
}
.site-header.scrolled {
  background: rgba(6, 22, 41, 0.92);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--white);
}
.brand-mark {
  width: auto;
  height: 108px;
}
.site-header.scrolled .brand-mark { height: 84px; transition: height var(--t-med); }
.brand-footer .brand-mark { height: 120px; }

.nav { display: flex; gap: 28px; }
.nav a {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .04em;
  position: relative;
  padding: 6px 0;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width var(--t-fast);
}
.nav a:hover { color: var(--white); }
.nav a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform var(--t-fast), opacity var(--t-fast);
}

/* ================= HERO ================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-video,
.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg { opacity: 0.5; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6,22,41,.45) 0%, rgba(6,22,41,.7) 60%, rgba(6,22,41,.95) 100%),
    radial-gradient(ellipse at 30% 20%, rgba(178,34,52,.18) 0%, transparent 60%);
}
/* fallback gradiente caso o vídeo não carregue */
.hero-media::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, var(--navy-flag) 0%, var(--navy-deep) 70%, #000 100%);
  z-index: -1;
}

.hero-content {
  padding-top: 120px;
  padding-bottom: 200px;
  max-width: 920px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  padding: 8px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.2vw, 4.4rem);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -.01em;
  margin-bottom: 24px;
}
.hero-title .accent { color: #9DB4FF; }
.hero-title .accent-red { color: #FF6B7E; }

.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  max-width: 700px;
  color: rgba(255,255,255,.82);
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Botões */
.btn {
  display: inline-block;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--t-fast);
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 6px 22px rgba(178,34,52,.35);
}
.btn-primary:hover { background: var(--red-bright); color: var(--white); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.btn-ghost:hover { background: rgba(255,255,255,.08); color: var(--white); border-color: var(--white); }

.btn-light {
  background: var(--white);
  color: var(--navy);
}
.btn-light:hover { background: var(--off-white); color: var(--navy); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline:hover { background: rgba(255,255,255,.1); color: var(--white); }

/* ================= HERO MARQUEE (carrossel de logos) ================= */
.hero-marquee {
  position: absolute;
  bottom: 80px;
  left: 0;
  right: 0;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  padding: 22px 0;
  background: linear-gradient(180deg, transparent, rgba(6,22,41,.45) 30%, rgba(6,22,41,.45) 70%, transparent);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee-track {
  display: flex;
  gap: 64px;
  align-items: center;
  width: max-content;
  animation: marquee 38s linear infinite;
}
.hero-marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 8px;
  flex-shrink: 0;
  opacity: .7;
  filter: brightness(0) invert(1);
  transition: opacity var(--t-fast), transform var(--t-fast);
}
.marquee-item:hover { opacity: 1; transform: translateY(-2px); }
.marquee-item img {
  max-height: 100%;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255,255,255,.5);
  border-radius: 14px;
  display: flex;
  justify-content: center;
}
.scroll-cue span {
  width: 3px;
  height: 8px;
  background: var(--white);
  margin-top: 8px;
  border-radius: 2px;
  animation: scrollCue 1.8s infinite;
}
@keyframes scrollCue {
  0% { transform: translateY(0); opacity: 1; }
  60% { opacity: 0; }
  100% { transform: translateY(14px); opacity: 0; }
}

/* ================= SECTIONS BASE ================= */
.section {
  padding: clamp(70px, 9vw, 130px) 0;
}
.section-light { background: var(--off-white); color: var(--ink); }
.section-dark  {
  background: var(--navy-deep);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 0%, rgba(178,34,52,.18) 0%, transparent 45%),
    radial-gradient(circle at 0% 90%, rgba(60,59,110,.4) 0%, transparent 45%);
  pointer-events: none;
}
.section-dark > * { position: relative; }

.section-accent {
  background: linear-gradient(135deg, var(--red) 0%, #8E1A28 100%);
  color: var(--white);
}

.section-head { margin-bottom: 48px; }
.section-head.center { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.01em;
  margin-top: 12px;
}
.section-intro { margin-top: 18px; color: rgba(255,255,255,.78); font-size: 1.05rem; }
.section-light .section-intro { color: var(--gray-500); }

.kicker {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--red);
  border-bottom: 2px solid var(--red);
  padding-bottom: 4px;
}
.kicker.light { color: #FF6B7E; border-color: #FF6B7E; }

/* SOBRE - grid 2 colunas */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.lead {
  font-size: 1.15rem;
  color: var(--gray-700);
  margin-bottom: 18px;
}
.section-body p { color: var(--gray-700); margin-bottom: 16px; }

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-100);
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 13px;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 8px;
}

/* ================= TIMELINE ================= */
.timeline {
  position: relative;
  margin-top: 30px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,.18) 12%, rgba(255,255,255,.18) 88%, transparent 100%);
  transform: translateX(-50%);
}

.t-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: center;
  margin-bottom: 60px;
}
.t-item:nth-child(odd) .t-card { grid-column: 1; text-align: right; }
.t-item:nth-child(odd) .t-card { margin-right: 30px; }
.t-item:nth-child(even) .t-card { grid-column: 3; text-align: left; }
.t-item:nth-child(even) .t-card { margin-left: 30px; }

.t-marker {
  grid-column: 2;
  display: flex;
  justify-content: center;
}
.t-marker span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red) 0%, #8E1A28 100%);
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 0 0 6px rgba(178,34,52,.2), 0 10px 30px rgba(178,34,52,.4);
  border: 2px solid rgba(255,255,255,.85);
}

.t-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  padding: 28px;
  border-radius: var(--radius);
  backdrop-filter: blur(6px);
  transition: transform var(--t-med), border-color var(--t-med), background var(--t-med);
}
.t-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,107,126,.45);
  background: rgba(255,255,255,.07);
}
.t-card.highlight {
  border-color: rgba(255,107,126,.45);
  background: linear-gradient(135deg, rgba(178,34,52,.18) 0%, rgba(255,255,255,.05) 100%);
}

/* Logo dentro do card da timeline */
.t-logo {
  display: flex;
  align-items: center;
  height: 56px;
  margin-bottom: 16px;
  background: rgba(255,255,255,.92);
  border-radius: 8px;
  padding: 8px 14px;
  width: fit-content;
}
.t-item:nth-child(odd) .t-logo { margin-left: auto; }
.t-item:nth-child(even) .t-logo { margin-right: auto; }
.t-logo img {
  max-height: 100%;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.t-card h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.t-tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #9DB4FF;
  margin-bottom: 14px;
  font-weight: 600;
}
.t-card p { color: rgba(255,255,255,.78); font-size: .98rem; margin-bottom: 16px; }
.t-link {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.35);
  padding-bottom: 2px;
}
.t-link:hover { color: #FF6B7E; border-color: #FF6B7E; }
.t-link-internal {
  display: inline-block;
  margin-right: 14px;
  background: var(--red);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 100px;
  border: 0;
  font-weight: 700;
  letter-spacing: .04em;
}
.t-link-internal:hover {
  background: var(--red-bright);
  color: var(--white);
  border: 0;
  transform: translateY(-1px);
}

.t-badge {
  display: inline-block;
  margin-top: 16px;
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  background: var(--red);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 100px;
  font-weight: 600;
}

/* ================= ATUAÇÃO / CIDADES ================= */
.cities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 30px;
}
.city {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
  position: relative;
  overflow: hidden;
}
.city::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--navy-flag);
  transition: background var(--t-med);
}
.city:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.city:hover::before { background: var(--red); }

.city-main::before { background: var(--red); }
.city-main {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-flag) 100%);
  color: var(--white);
  border-color: transparent;
}
.city-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 14px;
}
.city-main .city-tag { color: #FF9DA8; }
.city h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.city p { font-size: .92rem; color: var(--gray-500); }
.city-main p { color: rgba(255,255,255,.75); }

/* ================= PÁGINAS INTERNAS (empresas) ================= */
.page-empresa { padding-top: 80px; }
.breadcrumb {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--gray-500); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { color: var(--ink); font-weight: 600; }

.page-hero { padding-top: 60px; padding-bottom: 60px; }
.page-hero-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 12px;
}
.page-hero-logo {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  box-shadow: var(--shadow-sm);
}
.page-hero-logo img {
  max-width: 100%;
  max-height: 130px;
  object-fit: contain;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 8px 0 16px;
  line-height: 1.1;
  color: var(--ink);
}
.page-hero .lead {
  font-size: 1.1rem;
  color: var(--gray-700);
  margin-bottom: 24px;
}

.page-content { padding-top: 0; }
.content-wrap {
  max-width: 760px;
  margin: 0 auto;
}
.content-wrap h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin: 40px 0 14px;
  color: var(--ink);
}
.content-wrap p {
  color: var(--gray-700);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 14px;
}
.content-wrap ul {
  list-style: disc;
  padding-left: 24px;
  color: var(--gray-700);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 16px;
}
.content-wrap ul li { margin-bottom: 8px; }
.content-wrap strong { color: var(--ink); }

.back-link { margin-top: 50px; padding-top: 24px; border-top: 1px solid var(--gray-100); }
.back-link a { color: var(--red); font-weight: 600; }

@media (max-width: 720px) {
  .page-hero-grid { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .page-hero-logo { margin: 0 auto; max-width: 200px; }
}

/* ================= FAQ ================= */
.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.faq-item[open] {
  border-color: var(--navy-flag);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  cursor: pointer;
  padding: 22px 26px;
  list-style: none;
  position: relative;
  padding-right: 56px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary h3 {
  display: inline;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
}
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--red);
  transition: transform var(--t-fast);
  line-height: 1;
}
.faq-item[open] summary::after {
  content: '−';
}
.faq-item > p,
.faq-item > ul {
  padding: 0 26px 22px;
  color: var(--gray-700);
  font-size: .98rem;
  line-height: 1.7;
}
.faq-item > ul {
  padding-left: 46px;
  list-style: disc;
}
.faq-item > ul li { margin-bottom: 6px; }
.faq-item a {
  color: var(--navy);
  border-bottom: 1px solid rgba(10,37,64,.25);
  transition: color var(--t-fast), border-color var(--t-fast);
}
.faq-item a:hover {
  color: var(--red);
  border-color: var(--red);
}

/* ================= CTA / CONTATO ================= */
.cta-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-text { max-width: 640px; }
.cta-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-top: 12px;
  margin-bottom: 12px;
  line-height: 1.2;
}
.cta-text p { color: rgba(255,255,255,.85); }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ================= FOOTER ================= */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,.7);
  padding: 70px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.brand-footer { color: var(--white); margin-bottom: 14px; }
.f-brand p { font-size: .92rem; }
.f-col h4 {
  color: var(--white);
  font-size: 13px;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 18px;
}
.f-col ul li { margin-bottom: 10px; }
.f-col ul a { font-size: .95rem; color: rgba(255,255,255,.7); }
.f-col ul a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 22px;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,.5);
  letter-spacing: .04em;
}

/* ================= REVEAL (animação on scroll) ================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ================= RESPONSIVO ================= */
@media (max-width: 960px) {
  .grid-2 { grid-template-columns: 1fr; gap: 32px; }
  .stats { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .cities { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  /* Timeline vira coluna única */
  .timeline::before { left: 36px; }
  .t-item {
    grid-template-columns: 80px 1fr;
    gap: 12px;
  }
  .t-marker { grid-column: 1; justify-content: flex-start; }
  .t-marker span { width: 64px; height: 64px; font-size: 14px; }
  .t-item:nth-child(odd) .t-card,
  .t-item:nth-child(even) .t-card {
    grid-column: 2;
    text-align: left;
    margin: 0;
  }
  .t-item:nth-child(odd) .t-logo,
  .t-item:nth-child(even) .t-logo {
    margin-left: 0;
    margin-right: auto;
  }

  /* Carrossel no mobile */
  .hero-marquee { bottom: 60px; padding: 16px 0; }
  .marquee-track { gap: 40px; animation-duration: 26s; }
  .marquee-item { height: 40px; }
  .marquee-item img { max-width: 140px; }
}

@media (max-width: 720px) {
  .hero-content { padding-bottom: 180px; }
  .hero-marquee { bottom: 40px; }
  .scroll-cue { display: none; }
}

@media (max-width: 720px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }

  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(6,22,41,.97);
    padding: 24px;
    gap: 18px;
    border-top: 1px solid rgba(255,255,255,.08);
  }

  .hero-content { padding-top: 140px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .cities { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .cta-wrap { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-cue span { animation: none; }
  * { transition: none !important; animation: none !important; }
}
