/* ==========================================================================
   Guay Carpet Services LLC — Stylesheet
   Modern, clean, responsive. Brand: fresh green + trust navy.
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --green: #10b981;
  --green-dark: #059669;
  --green-darker: #047857;
  --navy: #0b2545;
  --navy-light: #14365f;
  --ink: #0f172a;
  --slate: #334155;
  --muted: #64748b;
  --line: #e5e9f0;
  --bg: #ffffff;
  --bg-soft: #f0f7f3;
  --bg-alt: #f7fafc;
  --wa: #25d366;
  --wa-dark: #1fb959;
  --amber: #f59e0b;
  --red: #e11d48;

  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .06), 0 1px 3px rgba(15, 23, 42, .08);
  --shadow: 0 10px 25px -5px rgba(15, 23, 42, .10), 0 8px 10px -6px rgba(15, 23, 42, .06);
  --shadow-lg: 0 25px 50px -12px rgba(15, 23, 42, .22);
  --container: 1180px;

  --font-head: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--slate);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.18; font-weight: 700; letter-spacing: -.01em; }

/* ---------- Language visibility ---------- */
/* Hidden by JS by default is not used; JS swaps textContent from data-en/data-es.
   The lang-only helper toggles blocks that only appear in one language. */
html[data-lang="en"] .only-es { display: none !important; }
html[data-lang="es"] .only-en { display: none !important; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 22px; }
.section { padding: 84px 0; }
.section--soft { background: var(--bg-soft); }
.section--alt { background: var(--bg-alt); }
.section--navy { background: var(--navy); color: #cfe0f2; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 52px; }
.eyebrow {
  display: inline-block; font-family: var(--font-head); font-weight: 600;
  font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--green-dark); background: rgba(16,185,129,.12);
  padding: 6px 14px; border-radius: 999px; margin-bottom: 16px;
}
.section-head h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }
.section--navy .section-head h2 { color: #fff; }
.section--navy .eyebrow { color: #7ee7bd; background: rgba(16,185,129,.18); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-head); font-weight: 600; font-size: .98rem;
  padding: 13px 24px; border-radius: 999px; border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 19px; height: 19px; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 8px 18px -6px rgba(16,185,129,.6); }
.btn-primary:hover { background: var(--green-dark); box-shadow: 0 12px 24px -6px rgba(16,185,129,.65); }
.btn-whatsapp { background: var(--wa); color: #fff; box-shadow: 0 8px 18px -6px rgba(37,211,102,.55); }
.btn-whatsapp:hover { background: var(--wa-dark); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--green); color: var(--green-dark); background: #fff; }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { background: #eaf3ff; }
.btn-lg { padding: 16px 30px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ---------- Top bar ---------- */
.topbar { background: var(--navy); color: #c9d8ea; font-size: .85rem; }
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 42px; flex-wrap: wrap; }
.topbar a { color: #e6eefb; font-weight: 500; }
.topbar-left { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
.topbar-item { display: inline-flex; align-items: center; gap: 7px; }
.topbar-item svg { width: 15px; height: 15px; opacity: .8; }
.topbar-right { display: flex; align-items: center; gap: 14px; }

/* Language toggle */
.lang-toggle { display: inline-flex; background: rgba(255,255,255,.10); border-radius: 999px; padding: 3px; }
.lang-toggle button {
  border: 0; background: transparent; color: #c9d8ea; font-weight: 600;
  font-family: var(--font-head); font-size: .78rem; padding: 4px 11px; border-radius: 999px; transition: .2s;
}
.lang-toggle button.active { background: var(--green); color: #fff; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(10px); border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease;
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 74px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { width: 44px; height: 44px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--font-head); font-weight: 800; font-size: 1.18rem; color: var(--navy); letter-spacing: -.02em; }
.brand-name span { color: var(--green); }
.brand-sub { font-size: .66rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); font-weight: 600; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-family: var(--font-head); font-weight: 500; font-size: .95rem; color: var(--slate);
  padding: 9px 14px; border-radius: 8px; transition: .18s;
}
.nav-links a:hover { color: var(--green-dark); background: var(--bg-soft); }
.nav-cta { display: flex; align-items: center; gap: 10px; }

.menu-btn { display: none; background: transparent; border: 0; padding: 8px; color: var(--navy); }
.menu-btn svg { width: 28px; height: 28px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 500px at 88% -10%, rgba(16,185,129,.16), transparent 60%),
    linear-gradient(180deg, #f4faf7 0%, #ffffff 100%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; padding: 72px 0 84px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--line);
  border-radius: 999px; padding: 7px 15px; font-size: .82rem; font-weight: 600; color: var(--slate);
  box-shadow: var(--shadow-sm); margin-bottom: 22px;
}
.hero-badge .stars { color: var(--amber); letter-spacing: 1px; }
.hero h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); color: var(--navy); margin-bottom: 20px; }
.hero h1 .hl { color: var(--green-dark); position: relative; }
.hero-sub { font-size: 1.14rem; color: var(--slate); max-width: 560px; margin-bottom: 30px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px; }
.hero-trust li { display: flex; align-items: center; gap: 9px; font-weight: 600; font-size: .93rem; color: var(--slate); }
.hero-trust svg { width: 20px; height: 20px; color: var(--green); flex: none; }

.hero-visual { position: relative; }
.hero-card {
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: 30px; border: 1px solid var(--line); position: relative; z-index: 2;
}
.hero-card-img {
  border-radius: var(--radius); aspect-ratio: 4/3; width: 100%;
  background:
    radial-gradient(120px 120px at 30% 25%, rgba(255,255,255,.35), transparent),
    linear-gradient(135deg, var(--green) 0%, var(--green-darker) 55%, var(--navy) 130%);
  display: flex; align-items: center; justify-content: center; color: #fff; overflow: hidden;
}
.hero-card-img svg { width: 42%; opacity: .95; }
.hero-quote {
  position: absolute; z-index: 3; left: -18px; bottom: 40px; background: #fff;
  border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 16px 18px;
  display: flex; align-items: center; gap: 13px; border: 1px solid var(--line); max-width: 260px;
}
.hero-quote .ico { width: 44px; height: 44px; border-radius: 12px; background: var(--bg-soft); display: grid; place-items: center; flex: none; }
.hero-quote .ico svg { width: 24px; height: 24px; color: var(--green-dark); }
.hero-quote b { color: var(--ink); font-family: var(--font-head); display: block; font-size: 1rem; }
.hero-quote span { font-size: .82rem; color: var(--muted); }
.hero-blob { position: absolute; z-index: 1; top: -30px; right: -50px; width: 320px; height: 320px; background: radial-gradient(circle, rgba(16,185,129,.20), transparent 70%); filter: blur(10px); border-radius: 50%; }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--navy); }
.trust-strip .container { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; padding: 26px 22px; }
.trust-item { display: flex; align-items: center; gap: 13px; color: #dfe9f7; justify-content: center; }
.trust-item .n { font-family: var(--font-head); font-weight: 800; font-size: 1.7rem; color: #fff; line-height: 1; }
.trust-item .l { font-size: .86rem; color: #9db4d4; }
.trust-item svg { width: 30px; height: 30px; color: var(--green); flex: none; }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; position: relative; overflow: hidden;
}
.service-card::before { content:""; position:absolute; inset: 0 0 auto 0; height: 4px; background: linear-gradient(90deg, var(--green), var(--green-darker)); transform: scaleX(0); transform-origin: left; transition: transform .3s ease; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-ico { width: 56px; height: 56px; border-radius: 14px; background: var(--bg-soft); display: grid; place-items: center; font-size: 1.7rem; margin-bottom: 18px; }
.service-card h3 { font-size: 1.22rem; margin-bottom: 12px; color: var(--navy); }
.service-list li { position: relative; padding-left: 24px; margin-bottom: 7px; font-size: .95rem; color: var(--slate); }
.service-list li::before {
  content: ""; position: absolute; left: 0; top: 8px; width: 14px; height: 14px;
  background: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2310b981'%3E%3Cpath fill-rule='evenodd' d='M16.7 5.3a1 1 0 010 1.4l-7.5 7.5a1 1 0 01-1.4 0L3.3 9.7a1 1 0 011.4-1.4l3.1 3.1 6.8-6.8a1 1 0 011.4 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
}

/* Emergency banner */
.emergency {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg); padding: 40px; display: flex; align-items: center;
  justify-content: space-between; gap: 30px; flex-wrap: wrap; position: relative; overflow: hidden;
}
.emergency::after { content:""; position:absolute; right: -60px; top: -60px; width: 240px; height: 240px; background: radial-gradient(circle, rgba(225,29,72,.25), transparent 70%); }
.emergency .txt { position: relative; z-index: 1; }
.emergency .pill { display:inline-flex; align-items:center; gap:8px; background: var(--red); color:#fff; font-weight:700; font-family: var(--font-head); font-size:.78rem; letter-spacing:.08em; padding:6px 13px; border-radius:999px; text-transform:uppercase; margin-bottom:14px; }
.emergency h3 { color: #fff; font-size: 1.7rem; margin-bottom: 8px; }
.emergency p { color: #b9cae3; max-width: 520px; }
.emergency .actions { position: relative; z-index: 1; display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Why choose ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.why-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; display: flex; gap: 16px; align-items: flex-start; }
.why-card .ico { width: 50px; height: 50px; border-radius: 12px; flex: none; display: grid; place-items: center; background: var(--bg-soft); }
.why-card .ico svg { width: 26px; height: 26px; color: var(--green-dark); }
.why-card h3 { font-size: 1.1rem; margin-bottom: 5px; color: var(--navy); }
.why-card p { font-size: .93rem; color: var(--muted); }

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { text-align: center; position: relative; }
.step .num {
  width: 62px; height: 62px; border-radius: 50%; margin: 0 auto 16px; display: grid; place-items: center;
  background: #fff; border: 2px solid var(--green); color: var(--green-dark);
  font-family: var(--font-head); font-weight: 800; font-size: 1.4rem;
}
.step h3 { font-size: 1.08rem; margin-bottom: 6px; color: var(--navy); }
.step p { font-size: .9rem; color: var(--muted); }
.step:not(:last-child)::after {
  content:""; position:absolute; top: 31px; left: calc(50% + 42px); right: calc(-50% + 42px);
  height: 2px; background: repeating-linear-gradient(90deg, var(--green) 0 8px, transparent 8px 16px);
}

/* ---------- Areas ---------- */
.areas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.areas-chips { display: flex; flex-wrap: wrap; gap: 11px; margin: 22px 0 26px; }
.chip { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 9px 17px; font-weight: 600; font-size: .92rem; color: var(--slate); display: inline-flex; gap: 7px; align-items: center; }
.chip svg { width: 15px; height: 15px; color: var(--green); }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.map-wrap iframe { display: block; width: 100%; height: 380px; border: 0; }

/* ---------- Reviews ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.review-card .stars { color: var(--amber); letter-spacing: 2px; margin-bottom: 12px; font-size: 1.05rem; }
.review-card p { color: var(--slate); font-style: italic; margin-bottom: 18px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-author .av { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--green), var(--navy)); color: #fff; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; }
.review-author b { color: var(--ink); font-family: var(--font-head); font-size: .95rem; display: block; }
.review-author span { font-size: .82rem; color: var(--muted); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 44px; align-items: start; }
.contact-info h3 { font-size: 1.5rem; color: var(--navy); margin-bottom: 10px; }
.contact-info > p { color: var(--muted); margin-bottom: 24px; }
.contact-methods { display: flex; flex-direction: column; gap: 14px; margin-bottom: 26px; }
.contact-method { display: flex; align-items: center; gap: 15px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 18px; transition: .2s; }
.contact-method:hover { border-color: var(--green); box-shadow: var(--shadow-sm); }
.contact-method .ico { width: 48px; height: 48px; border-radius: 12px; background: var(--bg-soft); display: grid; place-items: center; flex: none; }
.contact-method .ico svg { width: 24px; height: 24px; color: var(--green-dark); }
.contact-method .l { font-size: .8rem; color: var(--muted); }
.contact-method .v { font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: 1.05rem; }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow); }
.form-card h3 { font-size: 1.4rem; color: var(--navy); margin-bottom: 6px; }
.form-card > p { color: var(--muted); font-size: .95rem; margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: .88rem; color: var(--slate); margin-bottom: 7px; font-family: var(--font-head); }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: inherit; font-size: .97rem; color: var(--ink); background: var(--bg-alt); transition: .18s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green); background: #fff; box-shadow: 0 0 0 3px rgba(16,185,129,.14); }
.field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 12px; text-align: center; }
.form-ok { display: none; background: rgba(16,185,129,.10); border: 1px solid rgba(16,185,129,.35); color: var(--green-darker); border-radius: var(--radius-sm); padding: 14px; margin-top: 14px; font-weight: 600; font-size: .92rem; }

/* ---------- Footer ---------- */
.footer { background: var(--navy); color: #a9bcd8; padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 44px; }
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; letter-spacing: .02em; }
.footer .brand-name { color: #fff; }
.footer p { font-size: .92rem; margin: 14px 0; max-width: 320px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: .92rem; transition: .18s; }
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-contact li { display: flex; gap: 11px; align-items: flex-start; margin-bottom: 13px; font-size: .92rem; }
.footer-contact svg { width: 18px; height: 18px; color: var(--green); flex: none; margin-top: 3px; }
.footer-social { display: flex; gap: 11px; margin-top: 18px; }
.footer-social a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.08); display: grid; place-items: center; transition: .2s; }
.footer-social a:hover { background: var(--green); }
.footer-social svg { width: 20px; height: 20px; color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.10); padding: 22px 0; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: .85rem; }
.footer-bottom a:hover { color: #fff; }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 60px; height: 60px;
  background: var(--wa); border-radius: 50%; display: grid; place-items: center;
  box-shadow: 0 10px 25px -4px rgba(37,211,102,.6); transition: transform .2s ease;
  animation: waPulse 2.4s infinite;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 34px; height: 34px; color: #fff; }
@keyframes waPulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

/* ---------- Legal pages ---------- */
.legal { padding: 60px 0 84px; }
.legal-wrap { max-width: 820px; margin: 0 auto; }
.legal h1 { font-size: clamp(1.8rem, 4vw, 2.5rem); color: var(--navy); margin-bottom: 10px; }
.legal .updated { color: var(--muted); font-size: .9rem; margin-bottom: 34px; }
.legal h2 { font-size: 1.35rem; color: var(--navy); margin: 34px 0 12px; }
.legal h3 { font-size: 1.08rem; color: var(--navy); margin: 22px 0 8px; }
.legal p, .legal li { color: var(--slate); margin-bottom: 12px; }
.legal ul { list-style: disc; padding-left: 22px; margin-bottom: 14px; }
.legal ul li { margin-bottom: 8px; }
.legal a { color: var(--green-dark); font-weight: 600; text-decoration: underline; }
.back-home { display: inline-flex; align-items: center; gap: 8px; color: var(--green-dark); font-weight: 600; margin-bottom: 28px; }
.back-home svg { width: 18px; height: 18px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 34px; padding: 48px 0 60px; }
  .hero-visual { max-width: 460px; margin: 0 auto; width: 100%; }
  .services-grid, .why-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .step::after { display: none; }
  .areas-grid, .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .trust-strip .container { grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 760px) {
  .nav-links { display: none; }
  .menu-btn { display: inline-flex; }
  .header .nav-cta .btn-outline { display: none; }
  .nav-links.open {
    display: flex; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column;
    background: #fff; border-bottom: 1px solid var(--line); padding: 14px 22px 20px; gap: 4px; box-shadow: var(--shadow);
  }
  .nav-links.open a { padding: 12px 10px; border-radius: 8px; }
  .topbar-left .topbar-item.hide-sm { display: none; }
  .section { padding: 60px 0; }
  .services-grid, .why-grid, .reviews-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .emergency { padding: 28px; }
  .footer-grid { grid-template-columns: 1fr; }
  body { font-size: 16px; }
}
@media (max-width: 460px) {
  .trust-strip .container { grid-template-columns: 1fr 1fr; }
  .hero-cta .btn { flex: 1 1 100%; }
}

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