/* =========================================================
   Saia do Aluguel — site institucional
   Sistema visual: dark quente + dourado/âmbar + creme
   ========================================================= */

:root {
  /* Cores base */
  --bg: #120E0A;
  --bg-elev: #17110B;
  --surface: #201810;
  --surface-2: #2A2015;
  --line: rgba(203, 162, 90, 0.20);
  --line-soft: rgba(255, 255, 255, 0.07);

  /* Dourado / âmbar da marca */
  --gold: #CBA25A;
  --gold-bright: #E9CB8A;
  --gold-deep: #A97F3C;

  /* Neutros */
  --cream: #F4ECDC;
  --text: #F6F0E6;
  --muted: #BCB09C;
  --muted-2: #8A8073;
  --white: #ffffff;

  /* Semânticos */
  --green: #57B06E;
  --red: #C85A4C;

  /* Gradientes */
  --grad-gold: linear-gradient(135deg, #E9CB8A 0%, #CBA25A 45%, #A97F3C 100%);
  --grad-gold-text: linear-gradient(100deg, #F0D89C 0%, #CBA25A 60%, #B98C43 100%);

  /* Tipografia */
  --font-display: "Anton", "Arial Narrow", Impact, sans-serif;
  --font: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* Layout */
  --container: 1160px;
  --radius: 18px;
  --radius-lg: 26px;
  --shadow: 0 24px 60px -28px rgba(0, 0, 0, 0.75);
  --shadow-gold: 0 20px 50px -20px rgba(203, 162, 90, 0.45);
  --header-h: 74px;
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; line-height: 1.05; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 3px; border-radius: 6px; }

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

.gold-text {
  background: var(--grad-gold-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Kicker / section heads ---------- */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.kicker::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--grad-gold);
  border-radius: 2px;
}
.kicker.center { justify-content: center; }

.section {
  padding: clamp(64px, 9vw, 118px) 0;
  position: relative;
}
.section-head { max-width: 680px; }
.section-head.center { margin: 0 auto; text-align: center; }
.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 0.98;
  margin: 16px 0 0;
}
.section-sub {
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 18.5px);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  padding: 15px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; }
.btn-primary {
  background: var(--grad-gold);
  color: #211404;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 26px 60px -18px rgba(203, 162, 90, 0.6); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--line);
  color: var(--cream);
}
.btn-ghost:hover { border-color: var(--gold); background: rgba(203, 162, 90, 0.08); transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn-lg { padding: 18px 34px; font-size: 17px; }

/* ---------- Header ---------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(18, 14, 10, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line-soft);
}
.header .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { height: 40px; width: auto; display: block; }
.footer .brand-logo { height: 52px; }
.brand .mark { width: 40px; height: 40px; flex: none; }
.brand .wordmark { display: flex; flex-direction: column; line-height: 1; }
.brand .wordmark .l1 {
  font-size: 10.5px; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--cream); font-weight: 700; padding-left: 2px;
}
.brand .wordmark .l2 {
  font-family: var(--font-display); font-size: 22px; letter-spacing: 0.02em;
  text-transform: uppercase; margin-top: 2px;
}

.nav { display: flex; align-items: center; gap: 30px; }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-size: 15px; font-weight: 600; color: var(--muted);
  transition: color .2s ease; position: relative;
}
.nav-links a:hover { color: var(--cream); }
.nav-cta { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none; background: none; border: 0; padding: 8px; color: var(--cream);
}
.nav-toggle svg { width: 26px; height: 26px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(40px, 7vw, 84px));
  padding-bottom: clamp(56px, 8vw, 104px);
  overflow: hidden;
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg::before {
  /* glow dourado quente */
  content: "";
  position: absolute;
  width: 900px; height: 900px;
  right: -180px; top: -280px;
  background: radial-gradient(circle at center, rgba(203, 162, 90, 0.34), rgba(203, 162, 90, 0.05) 45%, transparent 68%);
  filter: blur(4px);
}
.hero-bg::after {
  content: "";
  position: absolute;
  width: 700px; height: 700px;
  left: -240px; bottom: -320px;
  background: radial-gradient(circle at center, rgba(169, 127, 60, 0.22), transparent 66%);
}
.hero-grid-lines {
  position: absolute; inset: 0; z-index: -1;
  background-image:
    linear-gradient(to bottom, transparent 0%, var(--bg) 92%),
    repeating-linear-gradient(115deg, rgba(203,162,90,0.045) 0 1px, transparent 1px 90px);
  opacity: .7;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 15px 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(203, 162, 90, 0.06);
  font-size: 13px; font-weight: 600; color: var(--cream);
  margin-bottom: 26px;
}
.hero-badge svg { width: 16px; height: 16px; color: var(--gold); }
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(87,176,110,.18); }

.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(38px, 6.6vw, 78px);
  line-height: 0.96;
  letter-spacing: 0.005em;
}
.hero h1 .gold-text { display: inline-block; }
.hero-lead {
  margin-top: 24px;
  font-size: clamp(16.5px, 2.1vw, 20px);
  color: var(--muted);
  max-width: 560px;
}
.hero-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; }

.hero-trust {
  margin-top: 30px;
  display: flex; flex-wrap: wrap; gap: 10px 22px;
}
.hero-trust li {
  display: flex; align-items: center; gap: 9px;
  font-size: 14.5px; color: var(--cream); font-weight: 600;
}
.hero-trust svg { width: 19px; height: 19px; color: var(--gold); flex: none; }

/* Hero art (logo) */
.hero-art { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-art::before {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 125%; height: 165%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(203, 162, 90, 0.20), transparent 62%);
  z-index: -1;
  pointer-events: none;
}
.hero-art svg { width: min(100%, 400px); height: auto; filter: drop-shadow(0 30px 50px rgba(0,0,0,.55)); }
.hero-logo { width: min(100%, 470px); height: auto; filter: drop-shadow(0 24px 46px rgba(0,0,0,.55)); }

/* stat strip embutido no hero */
.hero-stats {
  margin-top: clamp(40px, 6vw, 64px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
}
.hero-stats .stat { background: var(--bg-elev); padding: 24px 26px; }
.hero-stats .num {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  color: var(--gold-bright);
  line-height: 1;
}
.hero-stats .lbl { margin-top: 8px; font-size: 14px; color: var(--muted); }

/* ---------- Comparativo aluguel x casa ---------- */
.compare-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px;
  margin-top: 44px;
}
.compare-card {
  border-radius: var(--radius-lg);
  padding: 34px 32px;
  border: 1px solid var(--line-soft);
  background: var(--surface);
}
.compare-card.win {
  border-color: var(--line);
  background:
    linear-gradient(180deg, rgba(203,162,90,0.10), rgba(203,162,90,0.02)),
    var(--surface);
  box-shadow: var(--shadow);
}
.compare-card h3 {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: 26px; letter-spacing: .02em; margin-bottom: 22px;
  display: flex; align-items: center; gap: 12px;
}
.compare-card.win h3 { color: var(--gold-bright); }
.compare-list li {
  display: flex; align-items: flex-start; gap: 13px;
  padding: 12px 0; border-top: 1px solid var(--line-soft);
  font-size: 16px; color: var(--cream);
}
.compare-list li:first-child { border-top: 0; }
.compare-list .ic { width: 24px; height: 24px; flex: none; margin-top: 1px; }
.ic-x { color: var(--red); }
.ic-check { color: var(--green); }
.compare-card.win .compare-list .ic-check { color: var(--gold); }

/* ---------- Passos (como funciona) ---------- */
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-top: 48px;
}
.step {
  position: relative;
  padding: 30px 26px 28px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line-soft);
  transition: border-color .25s ease, transform .25s ease;
}
.step:hover { border-color: var(--line); transform: translateY(-4px); }
.step .step-n {
  font-family: var(--font-display); font-size: 15px;
  color: var(--gold); letter-spacing: .1em;
}
.step .step-ic {
  width: 52px; height: 52px; margin: 14px 0 18px;
  display: grid; place-items: center; border-radius: 14px;
  background: rgba(203, 162, 90, 0.10);
  border: 1px solid var(--line);
}
.step .step-ic svg { width: 27px; height: 27px; color: var(--gold-bright); }
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { font-size: 15px; color: var(--muted); }
.step:not(:last-child)::after {
  content: ""; position: absolute; top: 52px; right: -12px;
  width: 24px; height: 1px; background: var(--line);
}

/* ---------- Vantagens (cards) ---------- */
.features {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 48px;
}
.feature {
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface), var(--bg-elev));
  border: 1px solid var(--line-soft);
  overflow: hidden;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.feature:hover { border-color: var(--line); transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-media {
  position: relative; aspect-ratio: 3 / 2; overflow: hidden;
  background: var(--surface-2);
}
.feature-media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .6s ease;
  /* aquece a foto (tom dourado na própria imagem) */
  filter: sepia(0.32) saturate(1.28) brightness(1.03);
}
.feature:hover .feature-media img { transform: scale(1.06); }
/* véu dourado sobre a foto, unificando com a marca */
.feature-media::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(160deg, rgba(214,170,90,0.40) 0%, rgba(160,112,48,0.26) 60%, rgba(41,24,8,0.18) 100%);
  mix-blend-mode: overlay;
}
.feature-media::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(16,12,8,0.9) 2%, rgba(16,12,8,0.15) 46%, transparent 70%);
}
.feature .f-ic {
  position: absolute; left: 18px; bottom: 16px; z-index: 2;
  width: 50px; height: 50px;
  display: grid; place-items: center; border-radius: 14px;
  background: var(--grad-gold); box-shadow: var(--shadow-gold);
}
.feature .f-ic svg { width: 26px; height: 26px; color: #241606; }
.feature-body { padding: 22px 24px 26px; }
.feature-body h3 { font-size: 19px; margin-bottom: 9px; }
.feature-body p { font-size: 15px; color: var(--muted); }

/* ---------- Faixa CTA intermediária ---------- */
.band {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 68px);
  background:
    radial-gradient(circle at 80% -20%, rgba(203,162,90,0.28), transparent 55%),
    linear-gradient(120deg, #1d1610, #241a10);
  border: 1px solid var(--line);
  display: grid; grid-template-columns: 1.4fr auto; gap: 30px; align-items: center;
}
.band h2 {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(26px, 4vw, 44px); line-height: 1;
}
.band p { margin-top: 14px; color: var(--muted); max-width: 520px; }

/* ---------- Regiões ---------- */
.regions {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 40px;
}
.region-chip {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 18px; border-radius: 999px;
  border: 1px solid var(--line-soft); background: var(--surface);
  font-size: 15px; font-weight: 600; color: var(--cream);
  transition: border-color .2s ease, background .2s ease;
}
.region-chip:hover { border-color: var(--gold); background: rgba(203,162,90,.06); }
.region-chip svg { width: 17px; height: 17px; color: var(--gold); }

/* ---------- FAQ ---------- */
.faq { margin: 44px auto 0; max-width: 820px; }
.faq details {
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: var(--surface);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .2s ease;
}
.faq details[open] { border-color: var(--line); }
.faq summary {
  list-style: none; cursor: pointer;
  padding: 20px 22px; font-weight: 700; font-size: 17px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  color: var(--cream);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev {
  width: 22px; height: 22px; flex: none; color: var(--gold);
  transition: transform .25s ease;
}
.faq details[open] summary .chev { transform: rotate(180deg); }
.faq .faq-body { padding: 0 22px 22px; color: var(--muted); font-size: 15.5px; }

/* ---------- CTA final ---------- */
.final-cta { text-align: center; }
.final-cta .section-title { font-size: clamp(32px, 6vw, 64px); }
.final-cta .btn { margin-top: 30px; }
.final-note { margin-top: 18px; font-size: 14px; color: var(--muted-2); }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--line-soft);
  background: var(--bg-elev);
  padding: 60px 0 34px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid var(--line-soft);
}
.footer .brand { margin-bottom: 18px; }
.footer-about { color: var(--muted); font-size: 15px; max-width: 340px; }
.footer h4 {
  font-size: 13px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.footer-col a, .footer-col li {
  color: var(--muted); font-size: 15px; margin-bottom: 11px;
  display: flex; align-items: center; gap: 10px;
}
.footer-col a:hover { color: var(--cream); }
.footer-col svg { width: 17px; height: 17px; color: var(--gold); flex: none; }
.footer-legal {
  padding-top: 22px; display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
}
.footer-legal a { color: var(--muted); font-size: 14px; font-weight: 600; }
.footer-legal a:hover { color: var(--gold); }
.footer-legal span { color: var(--muted-2); }
.footer-bottom {
  padding-top: 20px; display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: space-between; align-items: center;
  color: var(--muted-2); font-size: 13.5px;
}
.footer-bottom .disclaimer { max-width: 640px; }
.footer-company {
  margin-top: 16px; padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  font-size: 12px; line-height: 1.6;
  color: var(--muted-2); opacity: .85; text-align: center;
}
.footer-company strong { color: var(--muted); font-weight: 700; }

/* ---------- Páginas legais (termos / privacidade) ---------- */
.legal-hero {
  padding: calc(var(--header-h) + clamp(40px, 7vw, 70px)) 0 clamp(28px, 5vw, 44px);
  border-bottom: 1px solid var(--line-soft);
  background:
    radial-gradient(circle at 85% -30%, rgba(203,162,90,0.18), transparent 55%),
    var(--bg-elev);
}
.legal-hero .kicker { margin-bottom: 14px; }
.legal-hero h1 {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(34px, 6vw, 60px); line-height: 0.98;
}
.legal-hero .updated { margin-top: 16px; color: var(--muted-2); font-size: 14.5px; }

.legal { padding: clamp(40px, 6vw, 72px) 0 clamp(56px, 8vw, 90px); }
.legal-wrap { max-width: 820px; }
.legal-wrap .lead {
  font-size: 18px; color: var(--cream); margin-bottom: 30px;
  padding-bottom: 26px; border-bottom: 1px solid var(--line-soft);
}
.legal-wrap h2 {
  font-size: clamp(20px, 3vw, 25px); margin: 40px 0 14px;
  color: var(--gold-bright); font-weight: 800;
  display: flex; gap: 12px; align-items: baseline;
}
.legal-wrap h2 .n { font-family: var(--font-display); color: var(--gold); font-size: 18px; }
.legal-wrap h3 { font-size: 17px; margin: 22px 0 8px; color: var(--cream); }
.legal-wrap p { color: var(--muted); margin-bottom: 14px; }
.legal-wrap ul { margin: 0 0 16px; padding-left: 4px; }
.legal-wrap li {
  color: var(--muted); margin-bottom: 10px; padding-left: 24px; position: relative;
}
.legal-wrap li::before {
  content: ""; position: absolute; left: 4px; top: 10px;
  width: 7px; height: 7px; border-radius: 2px; background: var(--gold); transform: rotate(45deg);
}
.legal-wrap a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.legal-wrap a:hover { color: var(--gold-bright); }
.legal-wrap strong { color: var(--cream); }
.legal-box {
  margin: 26px 0; padding: 22px 24px; border-radius: 14px;
  background: var(--surface); border: 1px solid var(--line);
}
.legal-box p { color: var(--cream); margin: 0; }
.legal-back {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 40px;
  color: var(--gold); font-weight: 700; font-size: 15px;
}
.legal-back:hover { color: var(--gold-bright); }
.legal-back svg { width: 18px; height: 18px; }

.simple-header {
  position: fixed; inset: 0 0 auto 0; height: var(--header-h); z-index: 100;
  display: flex; align-items: center;
  background: rgba(18, 14, 10, 0.82); backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid var(--line-soft);
}
.simple-header .container { display: flex; align-items: center; justify-content: space-between; }

/* ---------- WhatsApp flutuante ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; display: grid; place-items: center;
  box-shadow: 0 14px 34px -8px rgba(37, 211, 102, 0.6);
  transition: transform .2s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; color: #06231a; }
.wa-float::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid #25D366; animation: waPulse 2.4s ease-out infinite;
}
@keyframes waPulse { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.6); opacity: 0; } }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Mobile ---------- */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { order: -1; max-width: 340px; margin: 0 auto 6px; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step:not(:last-child)::after { display: none; }
  .features { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .band { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: inline-flex; }
  .header .container { position: relative; }

  /* menu mobile */
  .nav.open .nav-links {
    display: flex; flex-direction: column; gap: 4px;
    position: absolute; top: calc(100% + 10px); left: 0; right: 0;
    background: var(--bg-elev); border: 1px solid var(--line-soft);
    border-radius: 16px; padding: 14px; box-shadow: var(--shadow);
  }
  .nav.open .nav-links a { padding: 12px 14px; font-size: 16px; color: var(--cream); border-radius: 10px; }
  .nav.open .nav-links a:hover { background: rgba(203,162,90,.08); }

  .compare-grid { grid-template-columns: 1fr; }
  .steps, .features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
