/* ═══════════════════════════════════════════════════
   SERVICIO FINANCIERO — Aurora Teal Premium
   ═══════════════════════════════════════════════════ */
:root {
  --teal-950: #042F2E;
  --teal-900: #134E4A;
  --teal-600: #0D9488;
  --teal-400: #2DD4BF;
  --teal-100: #CCFBF1;
  --mint: #F0FDFA;
  --amber: #FBBF24;
  --white: #FFFFFF;
  --slate: #64748B;
  --border: #E2E8F0;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
  --header-h: 72px;
  --radius: 16px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 20px 50px rgba(4, 47, 46, 0.12);
  /* legal.css compat */
  --emerald: var(--teal-600);
  --font-head: var(--font);
  --text: var(--teal-950);
  --muted: var(--slate);
  --bg: var(--mint);
  --bg-alt: var(--teal-100);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 20px); }
html[data-sf-fonts-loaded] {
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
}
body { font-family: var(--font); color: var(--teal-950); background: var(--mint); line-height: 1.65; overflow-x: hidden; padding-top: var(--header-h); }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color 0.25s var(--ease); }
.wrap { width: min(1180px, 92%); margin-inline: auto; }

/* ─── HEADER ─── */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 200; height: var(--header-h); transition: all 0.35s var(--ease); }
.header::before { content: ""; position: absolute; inset: 0; background: rgba(240,253,250,0.85); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(13,148,136,0.1); opacity: 0; transition: opacity 0.35s; }
.header.scrolled::before { opacity: 1; }
body:has(.legal-page) .header::before { opacity: 1; }
body:has(.legal-page) .nav a:not(.btn) { color: var(--slate); }
body:has(.legal-page) .nav a:not(.btn):hover { color: var(--teal-600); }
body:has(.legal-page) .burger span { background: var(--teal-950); }
.header-flex { position: relative; display: flex; align-items: center; justify-content: space-between; height: 100%; }
.brand { display: flex; align-items: center; gap: 0.75rem; font-weight: 700; color: var(--teal-950); z-index: 2; }
.brand-mark, .brand-icon { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--teal-400), var(--teal-600)); color: var(--teal-950); font-weight: 800; font-size: 0.8rem; border-radius: 12px; box-shadow: 0 4px 20px rgba(45,212,191,0.4); }
.brand-mark.sm, .brand-icon.sm { width: 36px; height: 36px; font-size: 0.7rem; }
.brand-text, .brand-name { font-size: 1.05rem; line-height: 1.1; }
.brand-text em, .brand-name em { font-family: var(--serif); font-style: italic; color: var(--teal-600); font-weight: 400; }
.nav { display: flex; align-items: center; gap: 1.75rem; z-index: 2; }
.nav a { font-size: 0.9375rem; font-weight: 500; color: rgba(255,255,255,0.85); }
.header.scrolled .nav a:not(.btn) { color: var(--slate); }
.nav a:not(.btn):hover { color: var(--teal-400); }
.header.scrolled .nav a:not(.btn):hover { color: var(--teal-600); }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; z-index: 2; padding: 8px; }
.burger span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: 0.3s; }
.header.scrolled .burger span { background: var(--teal-950); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── BUTTONS ─── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.75rem 1.5rem; font-family: var(--font); font-size: 0.9375rem; font-weight: 700; border-radius: 12px; border: none; cursor: pointer; transition: all 0.3s var(--ease); }
.btn-xl { padding: 1rem 2rem; font-size: 1rem; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.8125rem; }
.btn-block { width: 100%; }
.btn-glow, .btn-fill { background: linear-gradient(135deg, var(--teal-400), var(--teal-600)); color: var(--teal-950); box-shadow: 0 4px 24px rgba(45,212,191,0.45); }
.btn-glow:hover, .btn-fill:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(45,212,191,0.55); color: var(--teal-950); }
.btn-glass, .btn-line { background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.25); backdrop-filter: blur(8px); }
.btn-glass:hover { background: rgba(255,255,255,0.2); color: #fff; }
.btn-dark { background: var(--teal-950); color: #fff; }
.btn-dark:hover { background: var(--teal-900); color: #fff; }
.header.scrolled .btn-glass { background: transparent; color: var(--teal-600); border: 2px solid var(--teal-600); }

/* ─── HERO ─── */
.hero { position: relative; min-height: calc(100vh - var(--header-h)); display: flex; align-items: center; padding: 3rem 0 6rem; margin-top: calc(-1 * var(--header-h)); background: linear-gradient(145deg, var(--teal-950) 0%, #0A3D3A 40%, var(--teal-900) 100%); color: #fff; overflow: hidden; }
.hero-aurora { position: absolute; inset: 0; background:
  radial-gradient(ellipse 60% 50% at 20% 30%, rgba(45,212,191,0.25), transparent),
  radial-gradient(ellipse 50% 40% at 80% 60%, rgba(251,191,36,0.08), transparent),
  radial-gradient(ellipse 40% 30% at 50% 80%, rgba(13,148,136,0.3), transparent);
  animation: aurora 12s ease-in-out infinite alternate;
}
@keyframes aurora { 0% { opacity: 0.8; transform: scale(1); } 100% { opacity: 1; transform: scale(1.05); } }
.hero-noise { position: absolute; inset: 0; opacity: 0.03; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
.hero-layout { position: relative; display: grid; gap: 3rem; align-items: center; z-index: 2; }
.live-pill { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.4rem 1rem; margin-bottom: 1.5rem; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--teal-400); background: rgba(45,212,191,0.12); border: 1px solid rgba(45,212,191,0.3); border-radius: 999px; }
.dot { width: 8px; height: 8px; background: var(--teal-400); border-radius: 50%; animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.4} }
.hero h1 { font-family: var(--serif); font-size: clamp(2.25rem, 5.5vw, 3.75rem); font-weight: 400; line-height: 1.08; margin-bottom: 1.25rem; }
.hero h1 em { font-style: italic; color: var(--teal-400); }
.hero-lead { font-size: 1.125rem; color: rgba(255,255,255,0.75); max-width: 520px; margin-bottom: 2rem; line-height: 1.7; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 2rem; padding: 1.5rem 0; border-top: 1px solid rgba(255,255,255,0.1); }
.hero-stats strong { display: block; font-size: 1.75rem; font-weight: 800; color: var(--teal-400); }
.hero-stats span { font-size: 0.8125rem; color: rgba(255,255,255,0.5); }
.fine-print { font-size: 0.6875rem; color: rgba(255,255,255,0.4); font-style: italic; margin-top: 0.5rem; }
.fine-print.center { text-align: center; }

.hero-frame { position: relative; border-radius: 24px; overflow: hidden; box-shadow: 0 40px 80px rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.1); }
.hero-frame img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.float-card { position: absolute; display: flex; align-items: center; gap: 0.75rem; padding: 1rem 1.25rem; background: rgba(255,255,255,0.95); backdrop-filter: blur(12px); border-radius: 14px; box-shadow: 0 12px 40px rgba(0,0,0,0.2); color: var(--teal-950); animation: float 6s ease-in-out infinite; }
.float-card--1 { top: 12%; left: -8%; }
.float-card--2 { bottom: 15%; right: -5%; animation-delay: -3s; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.fc-icon { font-size: 1.5rem; }
.float-card strong { display: block; font-size: 1rem; }
.float-card span { font-size: 0.75rem; color: var(--slate); }

.hero-wave { position: absolute; bottom: -1px; left: 0; right: 0; height: 80px; background: var(--mint); clip-path: ellipse(55% 100% at 50% 100%); }

/* ─── MARQUEE ─── */
.marquee { padding: 1rem 0; background: var(--teal-950); overflow: hidden; border-bottom: 1px solid rgba(45,212,191,0.2); }
.marquee-track { display: flex; gap: 2rem; white-space: nowrap; animation: scroll 25s linear infinite; font-size: 0.875rem; font-weight: 600; color: var(--teal-400); text-transform: uppercase; letter-spacing: 0.06em; }
@keyframes scroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ─── SECTIONS ─── */
.section { padding: 6rem 0; }
.section-mint { background: var(--white); }
.section-deep { background: linear-gradient(180deg, var(--teal-950), var(--teal-900)); color: #fff; }
.sec-head { margin-bottom: 3rem; max-width: 620px; }
.sec-head.center { text-align: center; margin-inline: auto; }
.tag { display: inline-block; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; color: var(--teal-600); margin-bottom: 0.75rem; }
.tag-light { color: var(--teal-400); }
.sec-head h2 { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; line-height: 1.15; margin-bottom: 0.75rem; }
.sec-head h2 em { font-style: italic; color: var(--teal-600); }
.section-deep .sec-head h2 em { color: var(--teal-400); }
.sec-head p { color: var(--slate); font-size: 1.0625rem; }
.section-deep .sec-head p { color: rgba(255,255,255,0.6); }
.section-deep a { color: var(--teal-400); }

/* ─── BENTO ─── */
.bento { display: grid; gap: 1.25rem; grid-template-columns: repeat(3, 1fr); grid-template-rows: auto auto; }
.bento-lg { grid-row: span 2; }
.bento-item { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 220px; }
.bento-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.bento-item:hover img { transform: scale(1.08); }
.bento-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 30%, rgba(4,47,46,0.92)); }
.bento-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem; z-index: 2; color: #fff; }
.bento-num { font-size: 0.6875rem; font-weight: 800; color: var(--teal-400); letter-spacing: 0.1em; }
.bento-content h3 { font-size: 1.25rem; font-weight: 700; margin: 0.35rem 0; }
.bento-content p { font-size: 0.875rem; color: rgba(255,255,255,0.75); margin-bottom: 0.75rem; }
.bento-content a { font-size: 0.875rem; font-weight: 700; color: var(--teal-400); }

/* ─── FEATURE SPLIT ─── */
.feature-split { display: grid; gap: 3rem; align-items: center; }
.feature-media { position: relative; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); }
.feature-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.feature-badge { position: absolute; bottom: 1.5rem; right: 1.5rem; padding: 1rem 1.5rem; background: var(--teal-950); color: #fff; border-radius: 14px; text-align: center; }
.feature-badge strong { display: block; font-size: 1.75rem; color: var(--teal-400); }
.feature-badge span { font-size: 0.75rem; opacity: 0.7; }
.pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.5rem 0 2rem; }
.pills span { padding: 0.4rem 1rem; font-size: 0.8125rem; font-weight: 600; background: var(--mint); color: var(--teal-900); border-radius: 999px; border: 1px solid var(--teal-100); }

/* ─── STEPS ─── */
.steps { display: flex; flex-wrap: wrap; align-items: flex-start; justify-content: center; gap: 0; }
.step { flex: 1; min-width: 140px; max-width: 200px; text-align: center; padding: 0 0.5rem; }
.step-icon { width: 48px; height: 48px; margin: 0 auto 1rem; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--teal-400), var(--teal-600)); color: var(--teal-950); font-weight: 800; border-radius: 50%; box-shadow: 0 4px 20px rgba(45,212,191,0.35); }
.step h4 { font-weight: 700; margin-bottom: 0.35rem; }
.step p { font-size: 0.875rem; color: var(--slate); }
.step-line { width: 40px; height: 2px; background: linear-gradient(90deg, var(--teal-400), var(--teal-100)); margin-top: 24px; flex-shrink: 0; }

/* ─── STATS BAND ─── */
.stats-band { position: relative; padding: 4rem 0; overflow: hidden; }
.stats-bg { position: absolute; inset: 0; }
.stats-bg img { width: 100%; height: 100%; object-fit: cover; }
.stats-overlay { position: absolute; inset: 0; background: rgba(4,47,46,0.88); }
.stats-row { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.stats-row strong { display: block; font-family: var(--serif); font-size: clamp(1.75rem, 3vw, 2.5rem); font-style: italic; color: var(--teal-400); }
.stats-row span { font-size: 0.875rem; color: rgba(255,255,255,0.6); }

/* ─── PLANS ─── */
.plans { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.plan { position: relative; padding: 2.5rem 2rem; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; transition: transform 0.3s; }
.plan:hover { transform: translateY(-4px); }
.plan-featured { background: rgba(45,212,191,0.08); border-color: var(--teal-400); box-shadow: 0 0 60px rgba(45,212,191,0.15); }
.plan-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); padding: 0.25rem 1rem; font-size: 0.6875rem; font-weight: 800; text-transform: uppercase; background: var(--teal-400); color: var(--teal-950); border-radius: 999px; white-space: nowrap; }
.plan h3 { font-size: 1.125rem; margin-bottom: 0.25rem; }
.plan-desc { font-size: 0.8125rem; color: rgba(255,255,255,0.5); margin-bottom: 1.25rem; }
.plan-price { font-family: var(--serif); font-size: 3rem; font-style: italic; line-height: 1; margin-bottom: 1.5rem; color: #fff; }
.plan-price sup { font-size: 1.25rem; font-style: normal; color: var(--teal-400); vertical-align: super; }
.plan-price span { font-size: 1.5rem; }
.plan ul { list-style: none; margin-bottom: 2rem; }
.plan li { padding: 0.4rem 0; padding-left: 1.25rem; position: relative; font-size: 0.9375rem; color: rgba(255,255,255,0.65); }
.plan li::before { content: "✓"; position: absolute; left: 0; color: var(--teal-400); font-weight: 700; }
.plans-extra { text-align: center; margin-top: 2rem; font-size: 0.9375rem; color: rgba(255,255,255,0.5); }

/* ─── REVIEWS ─── */
.reviews { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.review { padding: 2rem; background: var(--white); border: 1px solid #E2E8F0; border-radius: var(--radius); box-shadow: var(--shadow); transition: transform 0.3s; }
.review:hover { transform: translateY(-4px); }
.review-hot { border-color: var(--teal-400); background: linear-gradient(135deg, var(--white), var(--mint)); }
.stars { color: var(--amber); font-size: 0.875rem; margin-bottom: 1rem; letter-spacing: 2px; }
.review p { font-family: var(--serif); font-size: 1.0625rem; font-style: italic; line-height: 1.6; margin-bottom: 1.5rem; }
.review footer { display: flex; align-items: center; gap: 0.875rem; }
.review footer img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid var(--teal-100); }
.review footer strong { display: block; font-size: 0.9375rem; }
.review footer span { font-size: 0.8125rem; color: var(--slate); }

/* ─── FAQ ─── */
.faq-layout { display: grid; gap: 2.5rem; align-items: start; }
.faq-list details { background: var(--white); border: 1px solid #E2E8F0; border-radius: 12px; margin-bottom: 0.5rem; overflow: hidden; }
.faq-list summary { padding: 1.125rem 1.25rem; font-weight: 600; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list p { padding: 0 1.25rem 1rem; font-size: 0.9375rem; color: var(--slate); }

/* ─── CTA BANNER ─── */
.cta-banner { position: relative; padding: 5rem 0; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-overlay { position: absolute; inset: 0; background: rgba(4,47,46,0.85); }
.cta-inner { position: relative; text-align: center; color: #fff; max-width: 640px; margin-inline: auto; }
.cta-inner h2 { font-family: var(--serif); font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 400; margin-bottom: 0.75rem; }
.cta-inner p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ─── CONTACT ─── */
.contact-layout { display: grid; gap: 2.5rem; }
.info-cards { display: grid; gap: 0.75rem; margin: 1.5rem 0; }
.info-card { display: flex; gap: 1rem; padding: 1rem 1.25rem; background: var(--white); border: 1px solid #E2E8F0; border-radius: 12px; }
.info-card span { font-size: 1.25rem; }
.info-card strong { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--teal-600); margin-bottom: 0.15rem; }
.info-card p { font-size: 0.9375rem; color: var(--slate); margin: 0; }
.info-card a { color: var(--teal-950); }
.info-card a:hover { color: var(--teal-600); }
.map-box { border-radius: var(--radius); overflow: hidden; border: 1px solid #E2E8F0; min-height: 260px; }
.map-box iframe { width: 100%; height: 260px; border: 0; }

.form-box { padding: 2.5rem; background: var(--white); border-radius: 20px; box-shadow: var(--shadow); border: 1px solid #E2E8F0; }
.form-box h3 { font-family: var(--serif); font-size: 1.5rem; font-style: italic; margin-bottom: 1.5rem; }
.field { margin-bottom: 1rem; }
.field label { display: block; font-size: 0.8125rem; font-weight: 700; margin-bottom: 0.35rem; color: var(--teal-900); }
.field input, .field select, .field textarea { width: 100%; padding: 0.875rem 1rem; font-family: var(--font); font-size: 1rem; border: 1px solid #E2E8F0; border-radius: 10px; background: var(--mint); transition: border 0.25s; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--teal-600); box-shadow: 0 0 0 3px rgba(13,148,136,0.15); }
.legal-check { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.8125rem; color: var(--slate); margin: 1rem 0; cursor: pointer; }
.legal-check input { margin-top: 0.2rem; accent-color: var(--teal-600); }
.legal-check a { color: var(--teal-600); text-decoration: underline; }
.err { display: block; font-size: 0.75rem; color: #DC2626; min-height: 1rem; margin-bottom: 0.5rem; }
.ok { margin-top: 1rem; padding: 1rem; background: var(--teal-100); color: var(--teal-900); border-radius: 10px; text-align: center; font-weight: 700; }

/* ─── TRUST ─── */
.trust-section { padding: 3rem 0; background: var(--teal-950); }
.trust-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 1rem; }
.trust-card { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; padding: 1.25rem; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; color: #fff; font: inherit; cursor: pointer; transition: all 0.3s; text-align: center; }
.trust-card:hover { background: rgba(45,212,191,0.1); border-color: var(--teal-400); color: #fff; }
.trust-card span { font-size: 1.5rem; }
.trust-card strong { font-size: 0.8125rem; font-weight: 600; }
.trust-btn { background: rgba(255,255,255,0.05); }

/* ─── FOOTER ─── */
.footer { background: #021716; color: #94A3B8; padding-top: 4rem; }
.foot-cols { display: grid; gap: 2rem; grid-template-columns: 2fr 1fr 1fr 1fr; padding-bottom: 3rem; }
.foot-cols h4 { color: #fff; font-size: 0.875rem; margin-bottom: 1rem; }
.foot-cols a, .foot-cols p { display: block; font-size: 0.875rem; color: #94A3B8; margin-bottom: 0.4rem; }
.foot-cols a:hover { color: var(--teal-400); }
.foot-brand p { margin-top: 1rem; max-width: 280px; line-height: 1.6; }
.foot-bar { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding: 1.5rem 0 2rem; border-top: 1px solid rgba(255,255,255,0.08); font-size: 0.8125rem; }
.foot-bar a { color: var(--teal-400); }
.link-btn { background: none; border: none; color: var(--teal-400); font: inherit; cursor: pointer; text-decoration: underline; }

/* ─── COMPLIANCE BANNER ─── */
.compliance-banner { background: var(--teal-950); color: rgba(255,255,255,0.85); padding: 0.875rem 0; font-size: 0.8125rem; text-align: center; border-bottom: 1px solid rgba(45,212,191,0.2); }
.compliance-banner p { max-width: 920px; margin: 0 auto; line-height: 1.55; }
.compliance-banner a { color: var(--teal-400); font-weight: 600; text-decoration: underline; }
.compliance-banner strong { color: #fff; }

.pricing-notes { max-width: 720px; margin: 2rem auto 0; padding: 1.25rem 1.5rem; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 12px; font-size: 0.875rem; color: rgba(255,255,255,0.65); line-height: 1.65; }
.pricing-notes a { color: var(--teal-400); }

.review-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--teal-400), var(--teal-600)); color: var(--teal-950); font-weight: 800; font-size: 0.875rem; flex-shrink: 0; }
.review-disclaimer { font-size: 0.8125rem; color: var(--slate); margin-top: 0.5rem; }

.wa-link { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1rem; padding: 0.75rem 1.25rem; background: #25D366; color: #fff; border-radius: 12px; font-weight: 700; font-size: 0.9375rem; }
.wa-link:hover { color: #fff; filter: brightness(1.05); }

.form-note { font-size: 0.8125rem; color: var(--slate); margin-bottom: 1rem; line-height: 1.55; }

.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* ─── LEGAL PAGE COMPAT ─── */
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }
.foot-grid { display: grid; gap: 2rem; grid-template-columns: 2fr 1fr 1fr; padding-bottom: 3rem; }
.foot-grid h4 { color: #fff; font-size: 0.875rem; margin-bottom: 1rem; }
.foot-grid a, .foot-grid p { display: block; font-size: 0.875rem; color: #94A3B8; margin-bottom: 0.4rem; }
.foot-grid a:hover { color: var(--teal-400); }
.foot-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding: 1.5rem 0 2rem; border-top: 1px solid rgba(255,255,255,0.08); font-size: 0.8125rem; color: #94A3B8; }
.foot-bottom a { color: var(--teal-400); }
.foot-bottom .disc { max-width: 520px; text-align: right; }

/* ─── RESPONSIVE ─── */
@media (min-width: 768px) {
  .hero-layout { grid-template-columns: 1fr 1fr; }
  .feature-split { grid-template-columns: 1fr 1fr; }
  .faq-layout { grid-template-columns: 1fr 1.3fr; }
  .contact-layout { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .bento { grid-template-columns: 1fr 1fr; }
  .bento-lg { grid-row: span 1; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .foot-cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  .burger { display: flex; }
  .nav { position: fixed; inset: 0; top: 0; flex-direction: column; justify-content: center; background: var(--teal-950); padding: 2rem; transform: translateX(100%); transition: transform 0.35s var(--ease); gap: 0; }
  .nav.open { transform: none; }
  .nav a { padding: 1rem 0; font-size: 1.125rem; border-bottom: 1px solid rgba(255,255,255,0.08); width: 100%; text-align: center; color: #fff !important; }
  .bento { grid-template-columns: 1fr; }
  .float-card--1 { left: 0; }
  .float-card--2 { right: 0; }
  .step-line { display: none; }
  .steps { flex-direction: column; align-items: center; }
  .foot-cols { grid-template-columns: 1fr; }
  .hero-cta, .cta-btns { flex-direction: column; }
  .hero-cta .btn, .cta-btns .btn { width: 100%; }
}

@media (max-width: 767px) {
  .foot-grid { grid-template-columns: 1fr; }
  .foot-bottom .disc { text-align: left; }
}
