/* ====================================================================
   CREDERE — Evolución Financiera | Tema CLARO (ref: paginamegusta.png)
   ==================================================================== */

:root {
  /* Fondos claros */
  --bg: #eef2f8;
  --bg-soft: #f6f8fc;
  --white: #ffffff;

  /* Navy corporativo (header, strips) */
  --navy-900: #0a1830;
  --navy-800: #0e1f3d;
  --navy-700: #14274a;

  /* Azul de marca */
  --blue: #1f5fd0;
  --blue-600: #2266dd;
  --blue-700: #1b4fb0;
  --blue-soft: #e8f0fd;
  --cyan: #15b6d6;            /* acento del logo */
  --grad-blue: linear-gradient(135deg, #2a72e6 0%, #1b4fb0 100%);
  --grad-accent: linear-gradient(135deg, #18b6d8 0%, #2266dd 100%);

  /* Texto */
  --ink: #16203a;
  --ink-soft: #3a4a6a;
  --muted: #5d6b86;
  --line: #e2e9f3;

  /* WhatsApp */
  --wa: #25d366;
  --wa-dark: #1da851;

  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 4px 14px -6px rgba(20, 39, 74, .14);
  --shadow: 0 18px 44px -22px rgba(20, 39, 74, .34);
  --shadow-blue: 0 18px 40px -16px rgba(31, 95, 208, .45);
  --maxw: 1180px;
  --ease: cubic-bezier(.4, 0, .2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.section { padding: 86px 0; }

h1, h2, h3, h4 { font-family: "Montserrat", sans-serif; font-weight: 800; line-height: 1.14; letter-spacing: -.01em; color: var(--ink); }

.accent { color: var(--blue); }
.eyebrow {
  display: inline-block; font-family: "Montserrat", sans-serif; font-weight: 700;
  font-size: .76rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 14px;
}

/* ===== Botones ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: "Montserrat", sans-serif; font-weight: 700; font-size: .95rem;
  padding: 14px 26px; border-radius: 999px; border: none; cursor: pointer;
  text-decoration: none; transition: transform .2s var(--ease), box-shadow .2s var(--ease), filter .2s var(--ease), background .2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary { background: var(--grad-blue); color: #fff; box-shadow: var(--shadow-blue); }
.btn-primary:hover { transform: translateY(-2px); filter: brightness(1.05); box-shadow: 0 22px 46px -16px rgba(31, 95, 208, .6); }

.btn-ghost { background: var(--white); color: var(--blue); border: 1.5px solid var(--blue-soft); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { border-color: var(--blue); transform: translateY(-2px); }

.btn-whatsapp { background: var(--wa); color: #fff; }
.btn-whatsapp:hover { background: var(--wa-dark); transform: translateY(-2px); }

/* Acceso clientes (header) */
.btn-acceso { background: var(--white); color: var(--blue); border: 1.5px solid var(--blue-soft); padding: 12px 20px; box-shadow: var(--shadow-sm); }
.btn-acceso:hover { border-color: var(--blue); transform: translateY(-2px); }
.nav-acceso { font-weight: 700; color: var(--blue); }

.btn-block { width: 100%; }

/* ====================================================================
   HEADER
   ==================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy-800);
  border-bottom: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 6px 22px -14px rgba(10, 24, 48, .7);
}
.site-header::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; overflow: hidden;
  background: radial-gradient(420px 260px at 12% 50%, rgba(31,95,208,.45), transparent 62%);
}
.header-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; height: 84px; gap: 18px; }
.brand { display: flex; align-items: center; }
.brand-logo { height: 56px; width: auto; display: block; }

.nav { display: flex; gap: 4px; }
.nav a {
  color: rgba(255,255,255,.9); text-decoration: none; font-weight: 600; font-size: .92rem;
  padding: 9px 15px; border-radius: 8px; transition: color .2s, background .2s;
}
.nav a:hover { color: #fff; background: rgba(255,255,255,.14); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: .25s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ====================================================================
   HERO
   ==================================================================== */
.hero {
  position: relative; padding: 66px 0 78px;
  background:
    radial-gradient(680px 480px at 88% 10%, rgba(31,95,208,.10), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
  overflow: hidden;
}
.hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; }

.hero-kicker {
  display: inline-block; font-family: "Montserrat", sans-serif; font-weight: 700;
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--blue);
  background: var(--blue-soft); padding: 7px 14px; border-radius: 999px; margin-bottom: 20px;
}
.hero-title { font-size: clamp(2.3rem, 5vw, 3.7rem); font-weight: 900; }
.hero-sub { color: var(--muted); font-size: 1.08rem; max-width: 520px; margin: 18px 0 24px; }

.hero-amount {
  display: inline-flex; align-items: baseline; gap: 12px; margin-bottom: 26px;
  padding: 14px 24px; border-radius: var(--radius-sm); background: var(--white);
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.hero-amount span { color: var(--muted); font-weight: 600; font-size: .95rem; }
.hero-amount strong {
  font-family: "Montserrat", sans-serif; font-weight: 900; font-size: 1.9rem;
  background: var(--grad-accent); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.hero-trust { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 22px; }
.hero-trust li { display: inline-flex; align-items: center; gap: 7px; color: var(--ink); font-weight: 600; font-size: .92rem; }
.hero-trust svg { color: var(--blue); }

/* Visual (foto en tarjeta + carteles flotantes) */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; min-height: 440px; }
.hero-frame {
  position: relative; width: 100%; max-width: 540px; border-radius: 22px;
  background: var(--white); padding: 10px; box-shadow: var(--shadow);
}
.hero-frame::after {
  content: ""; position: absolute; right: -16px; bottom: -16px; width: 62%; height: 62%;
  border-radius: 22px; background: var(--grad-blue); z-index: -1; opacity: .9;
  filter: blur(2px);
}
.hero-photo {
  display: block; width: 100%; height: auto; border-radius: 15px;
  aspect-ratio: 4 / 3; object-fit: cover;
}
.hero-chip {
  position: absolute; z-index: 2; background: var(--white); border-radius: 13px;
  box-shadow: var(--shadow); padding: 10px 14px; display: flex; align-items: center; gap: 10px;
}
.hero-chip strong { display: block; font-family: "Montserrat", sans-serif; font-weight: 700; color: var(--ink); }
.hero-chip small { color: var(--muted); font-size: .74rem; }
.chip-approved { left: -18px; top: 26px; }
.chip-approved strong { font-size: .9rem; }
.chip-approved .chip-ic {
  width: 32px; height: 32px; flex: none; border-radius: 50%;
  background: rgba(37,211,102,.15); color: var(--wa-dark); display: grid; place-items: center;
}
.chip-years { right: -16px; bottom: 30px; flex-direction: column; align-items: flex-start; gap: 0; padding: 12px 18px; }
.chip-years strong { font-size: 1.5rem; color: var(--blue); line-height: 1; }
.chip-years small { font-size: .72rem; }

/* ====================================================================
   PRODUCTOS
   ==================================================================== */
.productos { background: var(--white); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 50px; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: 12px; }
.section-head p { color: var(--muted); }

.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.prod-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s, border-color .25s;
}
.prod-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: #cdddf6; }
.prod-ic {
  width: 60px; height: 60px; border-radius: 15px; display: grid; place-items: center;
  background: var(--blue-soft); color: var(--blue); margin-bottom: 18px;
}
.prod-card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.prod-card p { color: var(--muted); font-size: .94rem; }

/* ====================================================================
   TRAYECTORIA
   ==================================================================== */
.trayectoria { background: var(--white); padding: 0 0 24px; }
.tray-banner {
  display: flex; align-items: center; gap: 26px; padding: 30px 38px; border-radius: var(--radius);
  background: linear-gradient(120deg, #eaf3ff 0%, #e8f6fb 100%);
  border: 1px solid #d3e6fb; box-shadow: var(--shadow-sm);
}
.tray-medal {
  flex: none; width: 76px; height: 76px; border-radius: 50%; display: grid; place-items: center;
  background: var(--white); color: var(--blue); box-shadow: var(--shadow-sm);
}
.tray-text h2 { font-size: clamp(1.5rem, 3.5vw, 2.1rem); margin-bottom: 6px; }
.tray-text p { color: var(--muted); }
.tray-text strong { color: var(--ink); }

/* ====================================================================
   STATS STRIP
   ==================================================================== */
.stats { background: var(--navy-800); position: relative; }
.stats::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 80% 0%, rgba(31,95,208,.35), transparent 60%);
}
.stats-inner { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; padding: 46px 0; }
.stat { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 4px; color: #fff; }
.stat svg { color: var(--cyan); margin-bottom: 6px; }
.stat strong { font-family: "Montserrat", sans-serif; font-size: 1.7rem; font-weight: 900; }
.stat span { color: #9fb2d4; font-size: .9rem; }

/* ====================================================================
   CÓMO FUNCIONA
   ==================================================================== */
.como { background: var(--bg); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step {
  position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 24px 26px; text-align: center; box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s;
}
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.step-num {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center;
  background: var(--grad-blue); color: #fff; font-family: "Montserrat", sans-serif; font-weight: 800; font-size: .95rem;
  box-shadow: var(--shadow-blue);
}
.step-ic {
  width: 64px; height: 64px; margin: 6px auto 16px; border-radius: 16px; display: grid; place-items: center;
  background: var(--blue-soft); color: var(--blue);
}
.step h3 { font-size: 1.05rem; margin-bottom: 7px; }
.step p { color: var(--muted); font-size: .9rem; }

/* ====================================================================
   SOLICITUD / FORM
   ==================================================================== */
.solicitud { background: var(--white); }
.solicitud-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 50px; align-items: center; }
.solicitud-copy h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 14px; }
.solicitud-copy > p { color: var(--muted); margin-bottom: 22px; max-width: 460px; }
.solicitud-list { list-style: none; display: grid; gap: 12px; margin-bottom: 26px; }
.solicitud-list li { display: flex; align-items: center; gap: 12px; color: var(--ink); font-weight: 600; }
.solicitud-list span {
  width: 24px; height: 24px; border-radius: 50%; background: rgba(37,211,102,.14); color: var(--wa-dark);
  display: grid; place-items: center; font-weight: 900; font-size: .8rem; flex: none;
}
.solicitud-phones .phone-pill {
  display: inline-flex; align-items: center; gap: 10px; cursor: pointer;
  background: var(--wa); color: #fff; border: none; font-family: "Montserrat", sans-serif; font-weight: 700;
  padding: 13px 24px; border-radius: 999px; font-size: .98rem; transition: background .2s, transform .2s;
}
.solicitud-phones .phone-pill:hover { background: var(--wa-dark); transform: translateY(-2px); }

.form-card {
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 32px; box-shadow: var(--shadow);
}
.form-card h3 { font-size: 1.4rem; margin-bottom: 22px; }
.field { margin-bottom: 15px; }
.field label { display: block; font-size: .82rem; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 15px; font-family: inherit; font-size: .96rem; color: var(--ink);
  background: var(--white); border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  transition: border-color .2s, box-shadow .2s; resize: vertical;
}
.field input::placeholder, .field textarea::placeholder { color: #9aa7bd; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(31,95,208,.12);
}

.check { display: flex; gap: 10px; align-items: flex-start; margin: 6px 0 20px; color: var(--muted); font-size: .85rem; }
.check input { margin-top: 3px; accent-color: var(--blue); flex: none; }
.check a { color: var(--blue); font-weight: 600; }

.form-msg { margin-top: 14px; font-weight: 600; font-size: .92rem; min-height: 1.2em; }
.form-msg.ok { color: var(--wa-dark); }
.form-msg.err { color: #d23c4e; }

/* ====================================================================
   CTA BAND
   ==================================================================== */
.cta-band { background: var(--navy-800); position: relative; overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(500px 300px at 15% 50%, rgba(31,95,208,.4), transparent 60%);
}
.cta-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; padding: 46px 0; }
.cta-left h2 { color: #fff; font-size: clamp(1.6rem, 3.5vw, 2.2rem); }
.cta-left p { color: #aebfd9; font-weight: 500; }
.cta-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.cta-phone {
  display: inline-flex; flex-direction: column; text-decoration: none;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  color: #fff; font-family: "Montserrat", sans-serif; font-weight: 800; font-size: 1.15rem;
  padding: 10px 22px; border-radius: 14px; transition: background .2s, transform .2s;
}
.cta-phone:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }
.cta-phone .prov { font-size: .68rem; font-weight: 600; color: var(--cyan); letter-spacing: .06em; text-transform: uppercase; }

/* ====================================================================
   FOOTER
   ==================================================================== */
.site-footer { background: var(--white); border-top: 1px solid var(--line); }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 36px; padding: 54px 0 40px; }
.footer-logo-chip { display: inline-flex; margin-bottom: 16px; }
.footer-logo-chip img { height: 50px; display: block; }
.footer-brand p { color: var(--muted); font-size: .9rem; max-width: 280px; }

.footer-social { margin-top: 20px; }
.social-title { display: block; font-family: "Montserrat", sans-serif; font-weight: 700; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink); margin-bottom: 12px; }
.social-group { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.social-prov { min-width: 66px; font-size: .82rem; font-weight: 600; color: var(--muted); }
.social-ic {
  display: grid; place-items: center; width: 36px; height: 36px; border-radius: 10px;
  color: var(--blue); background: var(--blue-soft); border: 1px solid #d7e6fb;
  transition: transform .2s var(--ease), background .2s, color .2s;
}
.social-ic:hover { transform: translateY(-2px); background: var(--blue); color: #fff; border-color: var(--blue); }
.footer-col h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink); margin-bottom: 16px; }
.footer-col a { display: block; color: var(--muted); text-decoration: none; font-size: .92rem; margin-bottom: 11px; transition: color .2s; }
.footer-col a:hover { color: var(--blue); }
.footer-contact span { display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: .9rem; margin-bottom: 11px; }
.footer-contact svg { color: var(--blue); flex: none; }

.footer-legal { border-top: 1px solid var(--line); background: var(--bg-soft); }
.footer-legal p { color: var(--muted); font-size: .78rem; line-height: 1.7; padding: 22px 0; text-align: justify; }
.footer-bottom { border-top: 1px solid var(--line); padding: 18px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; color: var(--muted); font-size: .82rem; }

/* ===== FAB WhatsApp ===== */
.fab-whatsapp {
  position: fixed; right: 22px; bottom: 22px; z-index: 90; border: none; cursor: pointer;
  width: 60px; height: 60px; border-radius: 50%; display: grid; place-items: center;
  background: var(--wa); color: #fff; box-shadow: 0 12px 30px -8px rgba(37,211,102,.7);
  transition: transform .2s; animation: pulse 2.4s infinite;
}
.fab-whatsapp:hover { transform: scale(1.08); }
@keyframes pulse {
  0% { box-shadow: 0 12px 30px -8px rgba(37,211,102,.7), 0 0 0 0 rgba(37,211,102,.5); }
  70% { box-shadow: 0 12px 30px -8px rgba(37,211,102,.7), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 12px 30px -8px rgba(37,211,102,.7), 0 0 0 0 rgba(37,211,102,0); }
}

/* ====================================================================
   MODAL SELECTOR DE PROVINCIA
   ==================================================================== */
.wa-modal { position: fixed; inset: 0; z-index: 200; display: none; }
.wa-modal.open { display: block; }
.wa-overlay { position: absolute; inset: 0; background: rgba(10,24,48,.6); backdrop-filter: blur(3px); animation: fade .2s ease; }
.wa-dialog {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: min(420px, calc(100% - 36px)); background: var(--white); border-radius: 20px;
  padding: 30px 28px; box-shadow: 0 30px 80px -20px rgba(10,24,48,.5); animation: pop .25s var(--ease);
}
.wa-x { position: absolute; top: 14px; right: 18px; background: none; border: none; font-size: 1.7rem; color: var(--muted); cursor: pointer; line-height: 1; }
.wa-head { text-align: center; margin-bottom: 22px; }
.wa-head svg { color: var(--wa); margin-bottom: 10px; }
.wa-head h3 { font-size: 1.3rem; margin-bottom: 6px; }
.wa-head p { color: var(--muted); font-size: .92rem; }
.wa-options { display: grid; gap: 12px; }
.wa-opt {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 22px; border-radius: 14px; text-decoration: none;
  background: var(--bg-soft); border: 1.5px solid var(--line);
  transition: border-color .2s, transform .2s, background .2s;
}
.wa-opt:hover { border-color: var(--wa); background: rgba(37,211,102,.06); transform: translateY(-2px); }
.wa-opt strong { font-family: "Montserrat", sans-serif; font-size: 1.1rem; color: var(--ink); }
.wa-opt span { color: var(--wa-dark); font-weight: 700; }

@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes pop { from { opacity: 0; transform: translate(-50%, -46%) scale(.96); } to { opacity: 1; transform: translate(-50%, -50%) scale(1); } }

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

/* ====================================================================
   RESPONSIVE
   ==================================================================== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-frame { max-width: 460px; }
}

@media (max-width: 860px) {
  .nav {
    position: fixed; top: 84px; right: 0; left: 0; z-index: 99;
    flex-direction: column; gap: 0; padding: 12px 22px 20px;
    background: var(--navy-800); border-bottom: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 18px 30px -16px rgba(10, 24, 48, .8);
    transform: translateY(-130%); transition: transform .3s var(--ease); pointer-events: none;
  }
  .nav.open { transform: translateY(0); pointer-events: auto; }
  .nav a { padding: 13px 8px; }
  .nav-toggle { display: flex; }

  .container { padding-left: 24px; padding-right: 24px; }
  .hero-inner { grid-template-columns: 1fr; gap: 16px; }
  .hero-visual { order: -1; min-height: auto; margin: 4px 0 14px; }
  .hero-frame { max-width: 340px; }
  .chip-approved { left: -10px; top: auto; bottom: 18px; }
  .chip-approved strong { font-size: .82rem; }
  .chip-approved small { font-size: .68rem; }
  .chip-years { right: -8px; bottom: auto; top: 18px; padding: 9px 14px; }
  .chip-years strong { font-size: 1.25rem; }
  .chip-years small { font-size: .66rem; max-width: 72px; line-height: 1.12; }
  .tray-banner { flex-direction: column; text-align: center; gap: 16px; padding: 26px 24px; }

  .solicitud-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .section { padding: 62px 0; }
}

@media (max-width: 520px) {
  .grid-4 { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .brand-logo { height: 46px; }
  .hero-cta-row .btn { flex: 1 1 100%; }
  .cta-actions { width: 100%; }
  .cta-phone { flex: 1; }
}

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