/* ============================================================
   SisPro Consórcios — Landing Page Premium
   Design system: premium fintech, mobile-first
   ============================================================ */

:root {
  /* Brand */
  --navy: #0D3B66;
  --navy-700: #0a2e50;
  --navy-900: #071f37;
  --blue: #1D70F5;
  --blue-600: #155fd6;
  --green: #00C853;
  --green-600: #00b24a;
  --green-700: #019a42;

  /* Neutrals (cool-tinted) */
  --white: #ffffff;
  --paper: #f6f8fb;        /* light gray bg */
  --paper-2: #eef2f8;
  --ink: #0f1b2d;          /* dark gray text */
  --ink-2: #3f4d61;        /* secondary text */
  --ink-3: #6b7891;        /* muted */
  --line: #e4e9f2;         /* hairline */
  --line-2: #d6deec;

  /* Effects */
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 1px 2px rgba(13,59,102,.06), 0 2px 6px rgba(13,59,102,.05);
  --shadow: 0 6px 24px rgba(13,59,102,.08), 0 2px 8px rgba(13,59,102,.05);
  --shadow-lg: 0 24px 60px rgba(13,59,102,.16), 0 8px 24px rgba(13,59,102,.08);
  --shadow-green: 0 10px 30px rgba(0,200,83,.32);

  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 64px);

  --font-head: 'Poppins', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

h1, h2, h3, h4, .head { font-family: var(--font-head); font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; color: var(--navy); }

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
section { position: relative; }
.section-pad { padding-block: clamp(56px, 9vw, 120px); }

.eyebrow {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--blue); border-radius: 2px; }

.section-head { max-width: 760px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head h2 { font-size: clamp(30px, 5vw, 50px); margin-top: 14px; }
.section-head p { font-size: clamp(16px, 2.2vw, 19px); color: var(--ink-2); margin-top: 18px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: 16px;
  padding: 16px 28px; border-radius: 100px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap; min-height: 54px;
}
.btn svg { width: 20px; height: 20px; }
.btn-cta { background: var(--green); color: #04341a; box-shadow: var(--shadow-green); }
.btn-cta:hover { background: var(--green-600); transform: translateY(-2px); box-shadow: 0 16px 38px rgba(0,200,83,.40); }
.btn-primary { background: var(--navy); color: #fff; box-shadow: 0 8px 24px rgba(13,59,102,.22); }
.btn-primary:hover { background: var(--navy-700); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--navy); border: 1.5px solid var(--line-2); }
.btn-ghost:hover { border-color: var(--navy); background: var(--paper); }
.btn-wa { background: #fff; color: var(--navy); box-shadow: var(--shadow); border: 1.5px solid var(--line); }
.btn-wa:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-block { width: 100%; }
.btn-lg { font-size: 18px; padding: 20px 36px; min-height: 62px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 90; background: rgba(255,255,255,.92); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line);
  transition: background .3s ease, box-shadow .3s ease, border-color .3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled { background: rgba(255,255,255,.86); backdrop-filter: blur(14px); border-bottom-color: var(--line); box-shadow: 0 2px 20px rgba(13,59,102,.05); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.logo { display: flex; align-items: center; gap: 11px; font-family: var(--font-head); font-weight: 700; font-size: 19px; color: var(--navy); letter-spacing: -0.01em; }
.logo-mark { width: 38px; height: 38px; border-radius: 11px; background: linear-gradient(135deg, var(--blue), var(--navy)); display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.logo-mark svg { width: 21px; height: 21px; color: #fff; }
.logo small { display: block; font-family: var(--font-body); font-weight: 500; font-size: 11px; letter-spacing: .03em; color: var(--ink-3); margin-top: -2px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--ink-2); transition: color .15s; }
.nav-links a:hover { color: var(--navy); }
.header-cta { display: flex; align-items: center; gap: 14px; }
.header-phone { display: flex; align-items: center; gap: 8px; font-weight: 600; color: var(--navy); font-size: 15px; white-space: nowrap; }
.header-phone svg { width: 18px; height: 18px; color: var(--green); }
.menu-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; place-items: center; color: var(--navy); }

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: clamp(40px, 6vw, 64px); overflow: hidden; background: var(--white); }
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-bg::before {
  content: ""; position: absolute; top: -380px; right: -260px; width: 820px; height: 820px; border-radius: 50%;
  background: radial-gradient(circle at center, rgba(29,112,245,.12), rgba(29,112,245,0) 62%);
}
.hero-bg::after {
  content: ""; position: absolute; bottom: -300px; left: -240px; width: 640px; height: 640px; border-radius: 50%;
  background: radial-gradient(circle at center, rgba(0,200,83,.10), rgba(0,200,83,0) 64%);
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center; padding-bottom: clamp(48px, 7vw, 96px); }
.hero-pill {
  display: inline-flex; align-items: center; gap: 9px; background: var(--paper); border: 1px solid var(--line);
  padding: 8px 16px 8px 10px; border-radius: 100px; font-size: 13.5px; font-weight: 600; color: var(--navy);
}
.hero-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(0,200,83,.18); }
.hero h1 { font-size: clamp(36px, 6vw, 62px); margin: 22px 0 0; }
.hero h1 .hl { color: var(--blue); position: relative; white-space: nowrap; }
.hero-sub { font-size: clamp(17px, 2.4vw, 20px); color: var(--ink-2); margin-top: 22px; max-width: 540px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-seals { display: flex; flex-wrap: wrap; gap: 14px 26px; margin-top: 34px; padding-top: 28px; border-top: 1px solid var(--line); }
.seal { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; color: var(--ink-2); }
.seal svg { width: 20px; height: 20px; color: var(--green); flex: none; }

/* hero visual / simulator */
.hero-visual { position: relative; }
.hero-photo { width: 100%; height: clamp(340px, 46vw, 480px); border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); }
.hero-float {
  position: absolute; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 16px 18px; display: flex; align-items: center; gap: 13px;
}
.hero-float .ic { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; flex: none; }
.hero-float .ic svg { width: 22px; height: 22px; }
.hero-float strong { display: block; font-family: var(--font-head); font-weight: 700; font-size: 19px; color: var(--navy); line-height: 1; }
.hero-float span { font-size: 12.5px; color: var(--ink-3); }
.hero-float.f1 { top: 24px; left: -28px; }
.hero-float.f2 { bottom: 28px; right: -24px; }

/* ---------- Simulator ---------- */
.sim-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: clamp(22px, 3vw, 30px);
}
.sim-card.in-hero { margin-top: 0; }
.sim-head { display: flex; align-items: center; gap: 12px; margin-bottom: 4px; }
.sim-head h3 { font-size: 21px; }
.sim-head .badge { margin-left: auto; font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--green-700); background: rgba(0,200,83,.12); padding: 5px 10px; border-radius: 100px; }
.sim-note { font-size: 13.5px; color: var(--ink-3); margin-bottom: 22px; }
.sim-row { margin-bottom: 22px; }
.sim-label { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 12px; }
.sim-label span { font-size: 14px; font-weight: 600; color: var(--ink-2); }
.sim-label b { font-family: var(--font-head); font-size: 22px; color: var(--navy); }
input[type="range"] {
  -webkit-appearance: none; appearance: none; width: 100%; height: 8px; border-radius: 100px;
  background: var(--paper-2); outline: none; cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 28px; height: 28px; border-radius: 50%;
  background: var(--blue); border: 4px solid #fff; box-shadow: 0 3px 10px rgba(29,112,245,.45); cursor: grab;
}
input[type="range"]::-moz-range-thumb { width: 28px; height: 28px; border-radius: 50%; background: var(--blue); border: 4px solid #fff; box-shadow: 0 3px 10px rgba(29,112,245,.45); cursor: grab; }
.sim-terms { display: flex; gap: 8px; flex-wrap: wrap; }
.sim-term {
  flex: 1; min-width: 56px; padding: 11px 4px; border-radius: 12px; border: 1.5px solid var(--line);
  background: #fff; font-family: var(--font-head); font-weight: 600; font-size: 15px; color: var(--ink-2);
  transition: all .15s; text-align: center;
}
.sim-term small { display: block; font-family: var(--font-body); font-weight: 500; font-size: 10.5px; color: var(--ink-3); margin-top: 2px; }
.sim-term.active { border-color: var(--blue); background: rgba(29,112,245,.07); color: var(--navy); }
.sim-term.active small { color: var(--blue); }
.sim-result {
  margin-top: 24px; background: linear-gradient(135deg, var(--navy), var(--navy-700)); border-radius: var(--radius);
  padding: 22px 24px; color: #fff;
}
.sim-result .lbl { font-size: 13px; color: rgba(255,255,255,.72); font-weight: 500; }
.sim-result .val { font-family: var(--font-head); font-weight: 700; font-size: clamp(34px, 6vw, 44px); line-height: 1; margin: 6px 0 2px; }
.sim-result .val small { font-size: 18px; font-weight: 600; opacity: .8; }
.sim-result .sub { font-size: 13px; color: rgba(255,255,255,.7); }
.sim-result .row2 { display: flex; gap: 20px; margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.16); }
.sim-result .row2 div span { display: block; font-size: 12px; color: rgba(255,255,255,.6); }
.sim-result .row2 div b { font-family: var(--font-head); font-size: 17px; }
.sim-card .btn { margin-top: 18px; }

/* gated simulator */
.sim-result-wrap { position: relative; margin-top: 24px; }
.sim-card.locked .sim-result { filter: blur(8px); opacity: .8; user-select: none; pointer-events: none; }
.sim-lockbadge {
  display: none; position: absolute; inset: 0; z-index: 2; flex-direction: column; gap: 8px;
  align-items: center; justify-content: center; text-align: center;
  font-family: var(--font-head); font-weight: 600; font-size: 14px; color: #fff;
  text-shadow: 0 2px 10px rgba(7,31,55,.55); padding: 0 24px;
}
.sim-lockbadge svg { width: 26px; height: 26px; }
.sim-card.locked .sim-lockbadge { display: flex; }

.sim-gate { margin-top: 20px; display: block; }
.sim-card:not(.locked) .sim-gate { display: none; }
.sim-gate-title { font-family: var(--font-head); font-weight: 600; font-size: 15.5px; color: var(--navy); margin-bottom: 16px; text-align: center; }
.sim-gate .field { margin-bottom: 13px; }
.sim-gate .field input { height: 50px; }
.sim-gate .btn { margin-top: 6px; }
.sim-gate .form-consent { margin-top: 12px; }

/* CTA only shows once unlocked */
#sim-cta { display: none; }
.sim-card:not(.locked) #sim-cta { display: inline-flex; }
.sim-card:not(.locked) .sim-result { animation: pop .45s ease; }

.footer-contact { display: flex; align-items: flex-start; gap: 9px; margin-top: 16px; line-height: 1.5; color: rgba(255,255,255,.66); }
.footer-contact svg { width: 17px; height: 17px; flex: none; margin-top: 2px; color: var(--green); }

/* ---------- Capture form ---------- */
.form-section { background: var(--navy); color: #fff; overflow: hidden; }
.form-section .wrap { position: relative; z-index: 1; }
.form-deco { position: absolute; inset: 0; z-index: 0; opacity: .5; pointer-events: none; }
.form-deco::before { content:""; position:absolute; top:-200px; left:-150px; width:560px; height:560px; border-radius:50%; background: radial-gradient(circle, rgba(29,112,245,.4), transparent 65%); }
.form-deco::after { content:""; position:absolute; bottom:-220px; right:-120px; width:520px; height:520px; border-radius:50%; background: radial-gradient(circle, rgba(0,200,83,.22), transparent 66%); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.form-section .eyebrow { color: #6aa6ff; }
.form-section .eyebrow::before { background: #6aa6ff; }
.form-section h2 { color: #fff; font-size: clamp(30px, 5vw, 48px); margin-top: 14px; }
.form-section .lead { color: rgba(255,255,255,.78); font-size: 18px; margin-top: 18px; max-width: 460px; }
.form-trust { display: grid; gap: 16px; margin-top: 32px; }
.form-trust li { display: flex; gap: 13px; align-items: flex-start; }
.form-trust .ic { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,.08); display: grid; place-items: center; flex: none; }
.form-trust .ic svg { width: 21px; height: 21px; color: var(--green); }
.form-trust b { display: block; font-family: var(--font-head); font-weight: 600; font-size: 15.5px; color: #fff; }
.form-trust span { font-size: 13.5px; color: rgba(255,255,255,.64); }

.lead-form { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: clamp(26px, 3.5vw, 38px); color: var(--ink); }
.lead-form h3 { font-size: 24px; }
.lead-form > p { font-size: 14.5px; color: var(--ink-3); margin: 6px 0 24px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13.5px; font-weight: 600; color: var(--ink-2); margin-bottom: 7px; }
.field label .req { color: var(--blue); }
.input-wrap { position: relative; }
.input-wrap svg { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); width: 19px; height: 19px; color: var(--ink-3); pointer-events: none; }
.field input, .field select {
  width: 100%; height: 54px; border-radius: 13px; border: 1.5px solid var(--line);
  background: var(--paper); padding: 0 16px 0 44px; font-family: var(--font-body); font-size: 15.5px; color: var(--ink);
  transition: border-color .15s, background .15s, box-shadow .15s;
}
.field select { appearance: none; cursor: pointer; }
.field input::placeholder { color: var(--ink-3); }
.field input:focus, .field select:focus { outline: none; border-color: var(--blue); background: #fff; box-shadow: 0 0 0 4px rgba(29,112,245,.12); }
.field.error input, .field.error select { border-color: #e5484d; background: #fff5f5; }
.field .err-msg { display: none; font-size: 12.5px; color: #d33; margin-top: 6px; font-weight: 500; }
.field.error .err-msg { display: block; }
.select-wrap::after { content: ""; position: absolute; right: 18px; top: 50%; width: 9px; height: 9px; border-right: 2px solid var(--ink-3); border-bottom: 2px solid var(--ink-3); transform: translateY(-65%) rotate(45deg); pointer-events: none; }
.select-wrap { position: relative; }
.form-consent { font-size: 12px; color: var(--ink-3); margin-top: 14px; text-align: center; line-height: 1.5; }
.form-success {
  display: none; text-align: center; padding: 24px 10px;
}
.form-success.show { display: block; animation: pop .4s ease; }
.form-success .check { width: 76px; height: 76px; margin: 0 auto 18px; border-radius: 50%; background: rgba(0,200,83,.12); display: grid; place-items: center; }
.form-success .check svg { width: 40px; height: 40px; color: var(--green); }
.form-success h3 { font-size: 23px; }
.form-success p { color: var(--ink-2); margin-top: 10px; font-size: 15px; }
@keyframes pop { from { opacity: 0; transform: scale(.9); } to { opacity: 1; transform: scale(1); } }

/* ---------- Benefits ---------- */
.benefits { background: var(--paper); }
.bene-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.bene-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 28px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
}
.bene-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.bene-ic { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 20px; background: rgba(29,112,245,.10); }
.bene-ic svg { width: 28px; height: 28px; color: var(--blue); }
.bene-card:nth-child(3n+2) .bene-ic { background: rgba(0,200,83,.12); }
.bene-card:nth-child(3n+2) .bene-ic svg { color: var(--green-700); }
.bene-card:nth-child(3n) .bene-ic { background: rgba(13,59,102,.08); }
.bene-card:nth-child(3n) .bene-ic svg { color: var(--navy); }
.bene-card h3 { font-size: 20px; margin-bottom: 9px; }
.bene-card p { font-size: 14.5px; color: var(--ink-2); }

/* ---------- How it works ---------- */
.steps { position: relative; }
.steps-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; position: relative; }
.steps-line { position: absolute; top: 36px; left: 8%; right: 8%; height: 2px; background: repeating-linear-gradient(90deg, var(--line-2) 0 8px, transparent 8px 16px); z-index: 0; }
.step { position: relative; z-index: 1; text-align: center; }
.step-num {
  width: 72px; height: 72px; margin: 0 auto 20px; border-radius: 50%; background: #fff; border: 2px solid var(--line);
  display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; font-size: 26px; color: var(--blue);
  box-shadow: var(--shadow-sm); transition: all .25s;
}
.step:hover .step-num { background: var(--blue); color: #fff; border-color: var(--blue); transform: scale(1.06); box-shadow: 0 12px 28px rgba(29,112,245,.32); }
.step h3 { font-size: 17px; margin-bottom: 7px; }
.step p { font-size: 13.5px; color: var(--ink-2); }

/* ---------- Comparison ---------- */
.compare { background: var(--paper); }
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 940px; margin-inline: auto; }
.compare-card { border-radius: var(--radius-lg); padding: clamp(26px, 3vw, 36px); position: relative; }
.compare-card.con { background: linear-gradient(160deg, var(--navy), var(--navy-700)); color: #fff; box-shadow: var(--shadow-lg); transform: translateY(-8px); border: 1px solid rgba(255,255,255,.08); }
.compare-card.fin { background: #fff; border: 1px solid var(--line); color: var(--ink); }
.compare-tag { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 700; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; padding: 7px 14px; border-radius: 100px; margin-bottom: 20px; }
.compare-card.con .compare-tag { background: var(--green); color: #04341a; }
.compare-card.fin .compare-tag { background: var(--paper-2); color: var(--ink-2); }
.compare-card h3 { font-size: 26px; margin-bottom: 6px; }
.compare-card.con h3 { color: #fff; }
.compare-card .price-note { font-size: 14px; margin-bottom: 22px; }
.compare-card.con .price-note { color: rgba(255,255,255,.72); }
.compare-card.fin .price-note { color: var(--ink-3); }
.compare-list li { display: flex; gap: 13px; align-items: flex-start; padding: 13px 0; font-size: 15.5px; border-top: 1px solid; }
.compare-card.con .compare-list li { border-color: rgba(255,255,255,.12); }
.compare-card.fin .compare-list li { border-color: var(--line); }
.compare-list li:first-child { border-top: none; }
.compare-list .ck { width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; flex: none; margin-top: 1px; }
.compare-card.con .ck { background: rgba(0,200,83,.22); }
.compare-card.con .ck svg { color: #5cf09a; }
.compare-card.fin .ck { background: rgba(229,72,77,.10); }
.compare-card.fin .ck svg { color: #e5484d; }
.compare-list .ck svg { width: 14px; height: 14px; }
.compare-card.con .compare-list li { color: rgba(255,255,255,.92); }
.compare-card.fin .compare-list li { color: var(--ink-2); }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testi-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.stars { display: flex; gap: 3px; margin-bottom: 16px; }
.stars svg { width: 19px; height: 19px; color: #ffb020; }
.testi-quote { font-size: 16px; color: var(--ink); line-height: 1.65; flex: 1; }
.testi-quote::before { content: "\201C"; }
.testi-quote::after { content: "\201D"; }
.testi-foot { display: flex; align-items: center; gap: 14px; margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--line); }
.testi-foot image-slot { width: 52px; height: 52px; flex: none; }
.testi-foot b { display: block; font-family: var(--font-head); font-weight: 600; font-size: 15.5px; color: var(--navy); }
.testi-foot span { font-size: 13px; color: var(--ink-3); }
.testi-result { margin-top: 16px; display: inline-flex; align-self: flex-start; align-items: center; gap: 8px; background: rgba(0,200,83,.10); color: var(--green-700); font-weight: 600; font-size: 13px; padding: 7px 13px; border-radius: 100px; }
.testi-result svg { width: 15px; height: 15px; }

/* ---------- Authority numbers ---------- */
.authority { background: linear-gradient(160deg, var(--navy-900), var(--navy)); color: #fff; }
.auth-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.auth-card { text-align: center; padding: 18px; }
.auth-num { font-family: var(--font-head); font-weight: 700; font-size: clamp(40px, 6vw, 60px); line-height: 1; color: #fff; letter-spacing: -0.03em; }
.auth-num .suf { color: var(--green); }
.auth-label { font-size: 15px; color: rgba(255,255,255,.7); margin-top: 12px; }
.auth-grid { position: relative; }
.auth-card:not(:last-child)::after { content: ""; position: absolute; top: 20%; bottom: 20%; width: 1px; background: rgba(255,255,255,.12); }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 820px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; text-align: left; padding: 24px 4px; font-family: var(--font-head); font-weight: 600; font-size: clamp(16px, 2.4vw, 19px); color: var(--navy); }
.faq-q .pm { width: 34px; height: 34px; border-radius: 50%; background: var(--paper); display: grid; place-items: center; flex: none; transition: all .25s; position: relative; }
.faq-q .pm::before, .faq-q .pm::after { content: ""; position: absolute; background: var(--blue); border-radius: 2px; transition: transform .25s; }
.faq-q .pm::before { width: 14px; height: 2px; }
.faq-q .pm::after { width: 2px; height: 14px; }
.faq-item.open .faq-q .pm { background: var(--blue); }
.faq-item.open .faq-q .pm::before, .faq-item.open .faq-q .pm::after { background: #fff; }
.faq-item.open .faq-q .pm::after { transform: scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 4px 26px; font-size: 15.5px; color: var(--ink-2); max-width: 680px; }

/* ---------- Final CTA ---------- */
.final-cta { background: var(--paper); }
.cta-box {
  position: relative; overflow: hidden; border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--blue), var(--navy)); color: #fff;
  padding: clamp(44px, 7vw, 84px) clamp(28px, 6vw, 80px); text-align: center; box-shadow: var(--shadow-lg);
}
.cta-box::before { content:""; position:absolute; top:-160px; right:-120px; width:480px; height:480px; border-radius:50%; background: radial-gradient(circle, rgba(0,200,83,.32), transparent 64%); }
.cta-box::after { content:""; position:absolute; bottom:-180px; left:-120px; width:440px; height:440px; border-radius:50%; background: radial-gradient(circle, rgba(255,255,255,.14), transparent 66%); }
.cta-box > * { position: relative; z-index: 1; }
.cta-box h2 { color: #fff; font-size: clamp(30px, 5.4vw, 54px); max-width: 880px; margin-inline: auto; }
.cta-box p { color: rgba(255,255,255,.85); font-size: clamp(16px, 2.4vw, 20px); margin: 22px auto 0; max-width: 600px; }
.cta-box .hero-actions { justify-content: center; }
.cta-box .btn-ghost { color: #fff; border-color: rgba(255,255,255,.4); }
.cta-box .btn-ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-900); color: rgba(255,255,255,.6); padding-block: 60px 32px; font-size: 14px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer .logo { color: #fff; }
.footer .logo small { color: rgba(255,255,255,.5); }
.footer-col h4 { font-family: var(--font-head); font-size: 14px; color: #fff; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.footer-col a { display: block; padding: 6px 0; color: rgba(255,255,255,.6); transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-about { max-width: 360px; margin-top: 16px; line-height: 1.65; }
.footer-legal { margin-top: 28px; font-size: 12px; line-height: 1.7; color: rgba(255,255,255,.42); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-top: 28px; font-size: 13px; }

/* ---------- WhatsApp float + sticky mobile CTA ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 80;
  display: flex; align-items: center; gap: 0; background: #25D366; color: #fff;
  height: 60px; border-radius: 100px; box-shadow: 0 12px 30px rgba(37,211,102,.42); padding: 0 8px;
  overflow: hidden; transition: all .25s ease;
}
.wa-float svg { width: 30px; height: 30px; flex: none; margin: 0 7px; }
.wa-float .wa-text { max-width: 0; opacity: 0; white-space: nowrap; font-weight: 600; font-size: 15px; transition: all .3s ease; }
.wa-float:hover { padding-right: 22px; }
.wa-float:hover .wa-text { max-width: 200px; opacity: 1; margin-right: 4px; }
.wa-float::after { content: ""; position: absolute; inset: 0; border-radius: 100px; box-shadow: 0 0 0 0 rgba(37,211,102,.5); animation: waPulse 2.4s infinite; }
@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);} }

.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; transform: translateY(110%);
  transition: transform .3s ease; background: rgba(255,255,255,.94); backdrop-filter: blur(14px);
  border-top: 1px solid var(--line); padding: 12px 16px calc(12px + env(safe-area-inset-bottom)); display: none;
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta .btn { width: 100%; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } .wa-float::after { animation: none; } html { scroll-behavior: auto; } }

/* ---------- Image placeholder styling ---------- */
image-slot { --slot-bg: var(--paper-2); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
  .hero-float.f1 { left: 8px; }
  .hero-float.f2 { right: 8px; }
}
@media (max-width: 920px) {
  .nav-links, .header-phone { display: none; }
  .menu-toggle { display: grid; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .hero-photo { height: clamp(280px, 60vw, 380px); }
  .form-grid { grid-template-columns: 1fr; }
  .bene-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .steps-line { display: none; }
  .testi-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .auth-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
  .auth-card:nth-child(2)::after { display: none; }
}
@media (max-width: 680px) {
  .compare-grid { grid-template-columns: 1fr; }
  .compare-card.con { transform: none; }
  .bene-grid { grid-template-columns: 1fr; }
  .sticky-cta { display: block; }
  .wa-float { bottom: 84px; }
  .hero-float { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .header-cta .btn-primary { display: none; }
  .hero { padding-top: 28px; }
  .hero-actions .btn { flex: 1; }
}
@media (max-width: 420px) {
  .auth-grid { grid-template-columns: 1fr; }
  .auth-card::after { display: none !important; }
}
