/* ============================================================
   IR SEGUROS — Landing page styles
   Brand blue #101E98 · metallic silver · corporate/institutional
   ============================================================ */

:root{
  /* brand */
  --brand: #101E98;
  --brand-700: #0c1672;
  --brand-600: #16259e;
  --navy: #0A1259;
  --navy-900: #060b3a;
  --accent: var(--brand);          /* swapped by theme tweak */
  --accent-soft: #eef0fb;

  /* silver */
  --silver-1: #eef0f3;
  --silver-2: #c6cbd4;
  --silver-3: #9aa0ab;
  --silver-grad: linear-gradient(135deg, #aab0bb 0%, #eef0f3 42%, #9aa0ab 100%);

  /* neutrals */
  --ink: #15161d;
  --ink-2: #51545f;
  --ink-3: #80838f;
  --bg: #ffffff;
  --bg-soft: #f5f6f9;
  --bg-tint: #eef0fb;
  --line: #e4e6ed;
  --line-2: #d3d6df;

  --green: #1c7a52;
  --gold: #b8902e;

  /* type */
  --font-display: 'Archivo', system-ui, sans-serif;
  --font-body: 'IBM Plex Sans', system-ui, sans-serif;

  /* shape */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 26px;
  --shadow-sm: 0 1px 2px rgba(10,18,89,.06), 0 2px 8px rgba(10,18,89,.05);
  --shadow-md: 0 8px 24px rgba(10,18,89,.10), 0 2px 6px rgba(10,18,89,.06);
  --shadow-lg: 0 24px 60px rgba(10,18,89,.18), 0 6px 18px rgba(10,18,89,.10);
  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 56px);
}

/* font pairing alt */
[data-font="alt"]{
  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: 'Source Sans 3', system-ui, sans-serif;
}

/* themes */
[data-theme="navy"]{ --brand:#0A1259; --brand-700:#070d3f; --brand-600:#101a6e; --accent:#0A1259; --accent-soft:#e9ebf6; }
[data-theme="gold"]{ --accent:#b8902e; --accent-soft:#f7f0df; }

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--bg);
  font-size:17px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
h1,h2,h3,h4{ font-family:var(--font-display); font-weight:800; line-height:1.06; letter-spacing:-0.02em; margin:0; color:var(--ink); }
p{ margin:0; }
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
::selection{ background:var(--brand); color:#fff; }

.container{ width:100%; max-width:var(--maxw); margin:0 auto; padding-inline:var(--gutter); }
.section{ padding-block:clamp(64px,9vw,120px); }
.section--tight{ padding-block:clamp(48px,7vw,84px); }

/* surfaces */
.bg-soft{ background:var(--bg-soft); }
.bg-tint{ background:var(--bg-tint); }
.bg-blue{ background:var(--brand); color:#fff; }
.bg-navy{ background:var(--navy); color:#fff; }

/* eyebrow */
.eyebrow{
  font-family:var(--font-display);
  font-weight:700; font-size:.78rem; letter-spacing:.16em; text-transform:uppercase;
  color:var(--accent); display:inline-flex; align-items:center; gap:.55rem; margin:0 0 1.1rem;
}
.bg-blue .eyebrow, .bg-navy .eyebrow{ color:#aeb6ff; }
.eyebrow::before{ content:""; width:26px; height:2px; background:currentColor; display:inline-block; }

.section-head{ max-width:760px; }
.section-head.center{ margin-inline:auto; text-align:center; }
.section-head.center .eyebrow{ justify-content:center; }
.title{ font-size:clamp(1.85rem,3.4vw,2.85rem); }
.title-xl{ font-size:clamp(2.1rem,4vw,3.2rem); }
.lead{ font-size:clamp(1.05rem,1.5vw,1.28rem); line-height:1.6; color:var(--ink-2); margin-top:1.1rem; }
.bg-blue .lead,.bg-navy .lead{ color:#c7cbef; }
.muted{ color:var(--ink-2); }

/* buttons */
.btn{
  font-family:var(--font-display); font-weight:700; font-size:1rem;
  display:inline-flex; align-items:center; justify-content:center; gap:.6rem;
  padding:.95rem 1.6rem; border-radius:var(--r-md); border:1.5px solid transparent;
  cursor:pointer; transition:transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  letter-spacing:.01em; line-height:1; white-space:nowrap; text-align:center;
}
.btn svg{ width:18px; height:18px; }
.btn-primary{ background:var(--accent); color:#fff; box-shadow:0 8px 20px -6px color-mix(in srgb, var(--accent) 55%, transparent); }
[data-theme="gold"] .btn-primary{ color:#2a2207; }
.btn-primary:hover{ transform:translateY(-2px); box-shadow:0 14px 30px -8px color-mix(in srgb, var(--accent) 65%, transparent); }
.btn-ghost{ background:transparent; color:var(--brand); border-color:var(--line-2); }
.btn-ghost:hover{ border-color:var(--brand); background:var(--accent-soft); }
.btn-white{ background:#fff; color:var(--brand); }
.btn-white:hover{ transform:translateY(-2px); box-shadow:var(--shadow-md); }
.btn-wa{ background:#fff; color:var(--brand); }
.btn-lg{ padding:1.1rem 2rem; font-size:1.08rem; }
.btn-block{ width:100%; }

/* ---------- header ---------- */
.header{
  position:fixed; inset:0 0 auto 0; z-index:60;
  transition:background .25s ease, box-shadow .25s ease, border-color .25s ease;
  border-bottom:1px solid transparent;
}
.header__inner{ display:flex; align-items:center; gap:2rem; height:74px; }
.header__logo{ height:34px; width:auto; }
.header__logo--blue{ display:none; }
.header nav{ display:flex; gap:1.7rem; margin-left:.5rem; }
.header nav a{
  font-size:.95rem; font-weight:500; color:#dfe2ff; opacity:.92; position:relative; padding:.2rem 0;
}
.header nav a:hover{ opacity:1; color:#fff; }
.header__right{ margin-left:auto; display:flex; align-items:center; gap:1rem; }
.header__phone{ display:inline-flex; align-items:center; gap:.5rem; color:#fff; font-weight:600; font-size:.95rem; }
.header__phone svg{ width:17px; height:17px; }
.header.scrolled{ background:#fff; box-shadow:var(--shadow-sm); border-color:var(--line); }
.header.scrolled .header__logo--silver{ display:none; }
.header.scrolled .header__logo--blue{ display:block; }
.header.scrolled nav a{ color:var(--ink-2); }
.header.scrolled nav a:hover{ color:var(--brand); }
.header.scrolled .header__phone{ color:var(--brand); }
.menu-toggle{ display:none; }

/* mobile drawer */
.m-overlay{
  position:fixed; inset:0; z-index:70; background:rgba(6,11,58,.5); backdrop-filter:blur(2px);
  opacity:0; visibility:hidden; transition:opacity .25s ease, visibility .25s ease;
}
.m-overlay.open{ opacity:1; visibility:visible; }
.m-drawer{
  position:fixed; top:0; right:0; bottom:0; z-index:71; width:min(86vw, 340px);
  background:#fff; box-shadow:-12px 0 40px rgba(10,18,89,.18);
  transform:translateX(100%); transition:transform .28s cubic-bezier(.4,0,.2,1);
  display:flex; flex-direction:column; padding:1.2rem 1.4rem 1.8rem;
}
.m-drawer.open{ transform:none; }
.m-drawer__head{ display:flex; align-items:center; justify-content:space-between; padding-bottom:1.2rem; border-bottom:1px solid var(--line); }
.m-drawer__logo{ height:30px; width:auto; }
.m-drawer__close{ width:42px; height:42px; border-radius:10px; border:none; background:var(--bg-soft); color:var(--brand); display:grid; place-items:center; cursor:pointer; }
.m-drawer__nav{ display:flex; flex-direction:column; padding:1rem 0; }
.m-drawer__nav a{ font-family:var(--font-display); font-weight:600; font-size:1.15rem; color:var(--ink); padding:.95rem .2rem; border-bottom:1px solid var(--line); display:flex; align-items:center; justify-content:space-between; }
.m-drawer__nav a::after{ content:"›"; color:var(--silver-3); font-size:1.3rem; }
.m-drawer__nav a:active{ color:var(--brand); }
.m-drawer__actions{ display:flex; flex-direction:column; gap:.7rem; margin-top:auto; padding-top:1.4rem; }
.m-drawer__phone{ display:inline-flex; align-items:center; justify-content:center; gap:.5rem; font-weight:600; color:var(--brand); padding:.6rem; font-size:1rem; }
.m-drawer__phone svg{ width:17px; height:17px; }
body.m-open{ overflow:hidden; }

/* ---------- hero ---------- */
.hero{
  position:relative; overflow:hidden; color:#fff;
  background:
    radial-gradient(120% 90% at 85% -10%, #1b2bbf 0%, transparent 55%),
    radial-gradient(100% 120% at 0% 110%, #0a1259 0%, transparent 50%),
    linear-gradient(160deg, var(--brand) 0%, var(--navy) 100%);
  padding-top:clamp(120px,16vh,168px);
  padding-bottom:clamp(56px,8vw,96px);
}
.hero__watermark{
  position:absolute; right:-6%; top:8%; width:min(620px,52vw); opacity:.06;
  filter:grayscale(1) brightness(2); pointer-events:none; user-select:none; z-index:0;
}
.hero__grid{
  position:relative; z-index:2;
  display:grid; grid-template-columns:1.05fr .95fr; gap:clamp(32px,5vw,72px); align-items:center;
}
[data-hero="center"] .hero__grid{ grid-template-columns:1fr; max-width:780px; margin-inline:auto; text-align:center; }
[data-hero="center"] .hero__form-wrap{ text-align:left; }
[data-hero="center"] .trust-row{ justify-content:center; }
[data-hero="center"] .hero__badges{ justify-content:center; }

.hero h1{
  font-size:clamp(2.3rem,4.6vw,4rem); line-height:1.02; letter-spacing:-0.03em; color:#fff;
}
.hero h1 .accent-line{ color:#aeb6ff; display:block; }
.hero h1 .hl-strong{ position:relative; white-space:nowrap; }
.hero__sub{ font-size:clamp(1.05rem,1.5vw,1.25rem); color:#c7cbef; margin-top:1.4rem; max-width:34ch; line-height:1.6; }
[data-hero="center"] .hero__sub{ max-width:60ch; margin-inline:auto; }
.hero__badges{ display:flex; flex-wrap:wrap; gap:.7rem; margin-top:1.8rem; }
.hero-badge{
  display:inline-flex; align-items:center; gap:.5rem; font-size:.86rem; font-weight:500;
  background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.16);
  padding:.5rem .85rem; border-radius:999px; color:#e7e9ff; backdrop-filter:blur(4px);
}
.hero-badge svg{ width:15px; height:15px; color:#aeb6ff; }

/* headline variants */
.hl-variant{ display:none; }
[data-headline="A"] .hl-A{ display:block; }
[data-headline="B"] .hl-B{ display:block; }
[data-headline="C"] .hl-C{ display:block; }

/* quote form card */
.quote-card{
  background:#fff; color:var(--ink); border-radius:var(--r-xl);
  padding:clamp(22px,2.4vw,34px); box-shadow:var(--shadow-lg);
  border:1px solid rgba(255,255,255,.5);
}
.quote-card__head{ display:flex; align-items:flex-start; justify-content:space-between; gap:1rem; margin-bottom:1.2rem; }
.quote-card h3{ font-size:1.5rem; letter-spacing:-0.02em; }
.quote-card__head p{ color:var(--ink-2); font-size:.95rem; margin-top:.35rem; }
.quote-tag{
  flex:none; font-family:var(--font-display); font-weight:700; font-size:.72rem; letter-spacing:.06em;
  text-transform:uppercase; color:var(--green); background:#e7f4ee; padding:.4rem .7rem; border-radius:999px;
  display:inline-flex; align-items:center; gap:.4rem; white-space:nowrap;
}
.quote-tag::before{ content:""; width:7px; height:7px; border-radius:50%; background:var(--green); }
.field{ margin-bottom:.85rem; }
.field label{ display:block; font-size:.8rem; font-weight:600; color:var(--ink-2); margin-bottom:.35rem; letter-spacing:.01em; }
.field input, .field select{
  width:100%; font-family:var(--font-body); font-size:1rem; color:var(--ink);
  padding:.85rem .95rem; border:1.5px solid var(--line-2); border-radius:var(--r-md);
  background:#fff; transition:border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus{
  outline:none; border-color:var(--brand); box-shadow:0 0 0 4px var(--accent-soft);
}
.field input.invalid{ border-color:#cf3b3b; box-shadow:0 0 0 4px #fdecec; }
.field .err{ color:#cf3b3b; font-size:.78rem; margin-top:.3rem; display:none; }
.field.show-err .err{ display:block; }
.type-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:.5rem; }
.type-chip{
  font-size:.82rem; font-weight:600; text-align:center; padding:.6rem .3rem; border-radius:var(--r-sm);
  border:1.5px solid var(--line-2); cursor:pointer; transition:.15s ease; color:var(--ink-2); background:#fff;
  display:flex; flex-direction:column; align-items:center; gap:.35rem;
}
.type-chip svg{ width:20px; height:20px; color:var(--ink-3); transition:.15s; }
.type-chip:hover{ border-color:var(--brand); color:var(--brand); }
.type-chip.sel{ border-color:var(--brand); background:var(--accent-soft); color:var(--brand); }
.type-chip.sel svg{ color:var(--brand); }
.quote-micro{
  display:flex; align-items:center; justify-content:center; gap:.45rem; flex-wrap:wrap;
  font-size:.82rem; color:var(--ink-3); margin-top:1rem; text-align:center;
}
.quote-micro svg{ width:14px; height:14px; }
.quote-micro .dot{ width:3px; height:3px; border-radius:50%; background:var(--ink-3); }
.quote-success{ display:none; text-align:center; padding:1.5rem .5rem; }
.quote-success.show{ display:block; }
.quote-form.hide{ display:none; }
.quote-success .ck{
  width:60px; height:60px; border-radius:50%; background:#e7f4ee; color:var(--green);
  display:grid; place-items:center; margin:0 auto 1rem;
}
.quote-success .ck svg{ width:30px; height:30px; }
.quote-success h3{ font-size:1.4rem; margin-bottom:.5rem; }

/* insurer strip in hero */
.hero__insurers{ position:relative; z-index:2; margin-top:clamp(40px,5vw,64px); }
.hero__insurers .lbl{ font-size:.8rem; letter-spacing:.12em; text-transform:uppercase; color:#9aa2e0; font-weight:600; margin-bottom:1rem; }
.insurer-row{ display:flex; flex-wrap:wrap; gap:.7rem; align-items:center; }

/* logo marquee / carousel */
.marquee{ position:relative; overflow:hidden; width:100%; padding-block:6px; }
.marquee--fade{ -webkit-mask-image:linear-gradient(90deg,transparent 0, #000 6%, #000 94%, transparent 100%); mask-image:linear-gradient(90deg,transparent 0, #000 6%, #000 94%, transparent 100%); }
.marquee__track{ display:flex; width:max-content; gap:1.1rem; will-change:transform; animation:marquee var(--mq-dur,46s) linear infinite; }
.marquee--rev .marquee__track{ animation-direction:reverse; }
.marquee:hover .marquee__track{ animation-play-state:paused; }
@keyframes marquee{ to{ transform:translateX(-50%); } }
.logo-chip{
  flex:0 0 auto; height:96px; width:214px; background:#fff; border:1px solid var(--line);
  border-radius:14px; display:grid; place-items:center; padding:0 22px; box-shadow:var(--shadow-sm);
}
.logo-chip img{ max-height:44px; max-width:170px; width:auto; height:auto; object-fit:contain; display:block; margin:auto; }
.marquee--lg .logo-chip{ height:108px; width:234px; }
.marquee--lg .logo-chip img{ max-height:50px; max-width:186px; }
@media (prefers-reduced-motion: reduce){ .marquee__track{ animation:none; } }
@media (max-width:600px){ .logo-chip{ height:80px; width:168px; padding:0 16px; } .logo-chip img{ max-height:36px; max-width:128px; } }

/* insurer logo placeholder slot */
.logo-slot{
  height:54px; min-width:128px; flex:0 0 auto; border-radius:10px;
  border:1.5px dashed rgba(255,255,255,.28); background:rgba(255,255,255,.05);
  display:flex; align-items:center; justify-content:center; gap:.5rem; padding:0 1rem;
  color:#c2c8f5; font-size:.82rem; font-family:'IBM Plex Mono',ui-monospace,monospace; letter-spacing:.02em;
}
.logo-slot--light{ border-color:var(--line-2); background:var(--bg-soft); color:var(--ink-3); }
.logo-slot strong{ font-family:var(--font-display); color:#fff; font-weight:700; letter-spacing:0; font-size:.92rem; }
.logo-slot--light strong{ color:var(--ink); }

/* ---------- value / opening ---------- */
.value-grid{ display:grid; grid-template-columns:1.1fr .9fr; gap:clamp(32px,5vw,64px); align-items:start; }
.value-grid .statement{ font-family:var(--font-display); font-weight:700; font-size:clamp(1.5rem,2.6vw,2.15rem); line-height:1.18; letter-spacing:-0.02em; }
.value-grid .statement .hl{ color:var(--accent); }
.value-aside p + p{ margin-top:1rem; }
.verticals-inline{ display:flex; flex-wrap:wrap; gap:.45rem; margin-top:1.4rem; }
.vchip{ font-size:.85rem; font-weight:600; color:var(--brand); background:var(--accent-soft); padding:.4rem .8rem; border-radius:999px; }

/* ---------- pain ---------- */
.pain-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(248px,1fr)); gap:1.1rem; margin-top:2.6rem; }
.pain-card{
  background:#fff; border:1px solid var(--line); border-radius:var(--r-lg); padding:1.6rem 1.5rem;
  box-shadow:var(--shadow-sm); transition:transform .18s ease, box-shadow .18s ease;
}
.pain-card:hover{ transform:translateY(-3px); box-shadow:var(--shadow-md); }
.pain-card .ic{
  width:46px; height:46px; border-radius:12px; background:var(--accent-soft); color:var(--brand);
  display:grid; place-items:center; margin-bottom:1rem;
}
.pain-card .ic svg{ width:23px; height:23px; }
.pain-card p{ color:var(--ink-2); font-size:.98rem; line-height:1.55; }
.pain-card p strong{ color:var(--ink); font-weight:600; }
.pain-close{ text-align:center; margin-top:2.6rem; font-family:var(--font-display); font-weight:700; font-size:clamp(1.3rem,2.2vw,1.8rem); color:var(--ink); letter-spacing:-0.02em; }

/* ---------- steps / solution ---------- */
.steps{ display:grid; grid-template-columns:repeat(3,1fr); gap:1.4rem; margin-top:2.8rem; counter-reset:step; }
.step{ position:relative; padding:1.8rem 1.6rem; border-radius:var(--r-lg); background:#fff; border:1px solid var(--line); box-shadow:var(--shadow-sm); }
.step__n{
  counter-increment:step; font-family:var(--font-display); font-weight:800; font-size:1rem;
  width:40px; height:40px; border-radius:50%; background:var(--brand); color:#fff;
  display:grid; place-items:center; margin-bottom:1.1rem;
}
.step__n::before{ content:"0" counter(step); }
.step h3{ font-size:1.18rem; margin-bottom:.5rem; }
.step p{ color:var(--ink-2); font-size:.96rem; }
.step__arrow{ position:absolute; right:-1.05rem; top:50%; transform:translateY(-50%); color:var(--silver-2); z-index:2; }
.step:last-child .step__arrow{ display:none; }
.solution-note{
  margin-top:2.4rem; background:var(--brand); color:#fff; border-radius:var(--r-xl);
  padding:clamp(28px,3.5vw,44px); display:grid; grid-template-columns:auto 1fr; gap:1.6rem; align-items:center;
  position:relative; overflow:hidden;
}
.solution-note .mark{ width:64px; height:64px; opacity:.95; }
.solution-note p{ color:#d4d8ff; font-size:1.08rem; line-height:1.6; }
.solution-note p strong{ color:#fff; font-weight:600; }
.solution-note::after{ content:""; position:absolute; right:-60px; top:-60px; width:240px; height:240px; border-radius:50%; background:rgba(255,255,255,.05); }

/* ---------- insurers band ---------- */
.insurer-band-grid{ display:grid; grid-template-columns:repeat(auto-fill,minmax(160px,1fr)); gap:1rem; margin-top:2.4rem; }
.insurer-band-grid .logo-slot{ height:84px; width:100%; min-width:0; }

/* ---------- benefits ---------- */
.benefit-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:1.3rem; margin-top:2.8rem; }
.benefit{ display:flex; gap:1.1rem; padding:1.6rem; border-radius:var(--r-lg); border:1px solid var(--line); background:#fff; box-shadow:var(--shadow-sm); transition:.18s; }
.benefit:hover{ transform:translateY(-3px); box-shadow:var(--shadow-md); }
.benefit .ic{ flex:none; width:48px; height:48px; border-radius:12px; background:var(--brand); color:#fff; display:grid; place-items:center; }
.benefit .ic svg{ width:24px; height:24px; }
.benefit h3{ font-size:1.1rem; margin-bottom:.4rem; }
.benefit p{ color:var(--ink-2); font-size:.95rem; line-height:1.55; }

/* ---------- types of insurance ---------- */
.types-grid{ display:grid; grid-template-columns:repeat(auto-fill,minmax(180px,1fr)); gap:.9rem; margin-top:2.8rem; }
.type-item{
  display:flex; align-items:center; gap:.85rem; padding:1.05rem 1.2rem; border-radius:var(--r-md);
  background:#fff; border:1px solid var(--line); box-shadow:var(--shadow-sm); transition:.16s; cursor:default;
}
.type-item:hover{ border-color:var(--brand); transform:translateY(-2px); box-shadow:var(--shadow-md); }
.type-item .ic{ width:40px; height:40px; border-radius:10px; background:var(--accent-soft); color:var(--brand); display:grid; place-items:center; flex:none; }
.type-item .ic svg{ width:21px; height:21px; }
.type-item span{ font-weight:600; font-size:.98rem; }

/* ---------- proof / stats ---------- */
.stats-row{ display:grid; grid-template-columns:repeat(3,1fr); gap:1.4rem; margin-top:2.6rem; }
.stat{ text-align:center; padding:1.5rem 1rem; border-radius:var(--r-lg); background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.12); }
.stat .num{ font-family:var(--font-display); font-weight:800; font-size:clamp(2rem,3.4vw,2.9rem); line-height:1; letter-spacing:-0.03em; color:#fff; background:var(--silver-grad); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }
.stat .lbl{ color:#c7cbef; font-size:.95rem; margin-top:.6rem; }
.susep-seal{
  margin-top:2.2rem; display:flex; align-items:center; gap:1.1rem; background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.16); border-radius:var(--r-lg); padding:1.1rem 1.4rem; max-width:640px;
}
.susep-seal .shield{ width:46px; height:46px; flex:none; color:#aeb6ff; }
.susep-seal p{ font-size:.95rem; color:#dfe2ff; }
.susep-seal strong{ color:#fff; }

/* testimonials */
.testi-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:1.3rem; margin-top:2.6rem; }
.testi{ background:#fff; border-radius:var(--r-lg); padding:1.7rem; box-shadow:var(--shadow-md); display:flex; flex-direction:column; }
.testi .stars{ display:flex; gap:.2rem; color:var(--gold); margin-bottom:1rem; }
.testi .stars svg{ width:18px; height:18px; }
.testi blockquote{ font-size:1.02rem; color:var(--ink); line-height:1.6; font-style:italic; margin:0 0 1.2rem; }
.testi__person{ display:flex; align-items:center; gap:.85rem; margin-top:auto; }
.testi__person image-slot{ width:46px; height:46px; flex:none; }
.testi__meta strong{ display:block; font-size:.95rem; }
.testi__meta span{ font-size:.82rem; color:var(--ink-3); }
.testi-note{ text-align:center; font-size:.88rem; color:var(--ink-3); margin-top:1.6rem; }

/* ---------- offer ---------- */
.offer-grid{ display:grid; grid-template-columns:1.2fr .8fr; gap:clamp(28px,4vw,56px); align-items:center; }
.offer-list{ list-style:none; padding:0; margin:1.8rem 0 0; }
.offer-list li{ display:flex; align-items:center; gap:1rem; padding:1rem 0; border-bottom:1px solid var(--line); }
.offer-list li:last-child{ border-bottom:none; }
.offer-list .ck{ width:26px; height:26px; border-radius:50%; background:#e7f4ee; color:var(--green); display:grid; place-items:center; flex:none; }
.offer-list .ck svg{ width:15px; height:15px; }
.offer-list .txt{ flex:1; font-weight:500; }
.offer-list .free{ font-family:var(--font-display); font-weight:700; font-size:.78rem; color:var(--green); background:#e7f4ee; padding:.25rem .65rem; border-radius:999px; letter-spacing:.04em; }
.offer-price{ background:var(--brand); color:#fff; border-radius:var(--r-xl); padding:clamp(28px,3vw,40px); text-align:center; box-shadow:var(--shadow-lg); }
.offer-price .small{ color:#c7cbef; font-size:.95rem; }
.offer-price .big{ font-family:var(--font-display); font-weight:800; font-size:clamp(3rem,6vw,4.4rem); line-height:1; margin:.5rem 0; letter-spacing:-0.03em; background:var(--silver-grad); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }
.offer-price p{ color:#d4d8ff; font-size:.95rem; margin-top:.4rem; }
.offer-price .btn{ margin-top:1.6rem; }

/* ---------- guarantee ---------- */
.guarantee{ display:grid; grid-template-columns:auto 1fr; gap:clamp(24px,3vw,44px); align-items:center; background:#fff; border:1px solid var(--line); border-radius:var(--r-xl); padding:clamp(28px,4vw,52px); box-shadow:var(--shadow-md); }
.guarantee__seal{
  width:150px; height:150px; flex:none; border-radius:50%; background:var(--accent-soft); color:var(--brand);
  display:grid; place-items:center; text-align:center; border:2px dashed var(--brand);
}
.guarantee__seal .s-in{ font-family:var(--font-display); font-weight:800; line-height:1.1; font-size:.92rem; letter-spacing:.02em; }
.guarantee__seal svg{ width:30px; height:30px; margin-bottom:.4rem; }
.guarantee h3{ font-size:clamp(1.4rem,2.4vw,1.9rem); margin-bottom:.7rem; }
.guarantee p{ color:var(--ink-2); font-size:1.05rem; line-height:1.6; }

/* ---------- accordion (objections + faq) ---------- */
.acc{ margin-top:2.4rem; max-width:860px; }
.acc.center{ margin-inline:auto; }
.acc-item{ border-bottom:1px solid var(--line); }
.acc-item:first-child{ border-top:1px solid var(--line); }
.acc-q{
  width:100%; text-align:left; background:none; border:none; cursor:pointer;
  display:flex; align-items:center; justify-content:space-between; gap:1.2rem;
  padding:1.4rem 0; font-family:var(--font-display); font-weight:700; font-size:clamp(1.05rem,1.6vw,1.22rem);
  color:var(--ink); letter-spacing:-0.01em;
}
.acc-q .pm{ flex:none; width:30px; height:30px; border-radius:50%; border:1.5px solid var(--line-2); display:grid; place-items:center; color:var(--brand); transition:.2s; }
.acc-q .pm svg{ width:16px; height:16px; transition:transform .25s ease; }
.acc-item.open .acc-q .pm{ background:var(--brand); color:#fff; border-color:var(--brand); }
.acc-item.open .acc-q .pm svg{ transform:rotate(45deg); }
.acc-a{ overflow:hidden; max-height:0; transition:max-height .3s ease; }
.acc-a__inner{ padding:0 0 1.5rem; color:var(--ink-2); font-size:1.02rem; line-height:1.65; max-width:72ch; }
.acc-a__inner strong{ color:var(--ink); font-weight:600; }

/* ---------- CTA final ---------- */
.cta-final{ position:relative; overflow:hidden; text-align:center; }
.cta-final .mark{ width:72px; margin:0 auto 1.6rem; opacity:.95; }
.cta-final h2{ font-size:clamp(2rem,4.4vw,3.4rem); max-width:18ch; margin-inline:auto; line-height:1.05; color:#fff; }
.cta-final p{ color:#c7cbef; font-size:clamp(1.05rem,1.5vw,1.22rem); max-width:60ch; margin:1.4rem auto 0; }
.cta-final .actions{ margin-top:2.2rem; display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }
.cta-final .micro{ margin-top:1.4rem; font-size:.86rem; color:#9aa2e0; display:inline-flex; gap:.5rem; align-items:center; flex-wrap:wrap; justify-content:center; }
.cta-final .micro .dot{ width:3px; height:3px; border-radius:50%; background:#9aa2e0; }

/* ---------- footer ---------- */
.footer{ background:var(--navy-900); color:#c7cbef; padding-block:clamp(48px,6vw,80px) 2rem; }
.footer__top{ display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:clamp(28px,4vw,56px); padding-bottom:2.6rem; border-bottom:1px solid rgba(255,255,255,.1); }
.footer__logo{ height:42px; margin-bottom:1.2rem; }
.footer__brandcol p{ font-size:.95rem; line-height:1.6; max-width:38ch; color:#9aa2e0; }
.footer__col h4{ font-family:var(--font-display); font-size:.82rem; letter-spacing:.12em; text-transform:uppercase; color:#fff; margin-bottom:1.1rem; font-weight:700; }
.footer__col a, .footer__col li{ display:block; font-size:.95rem; color:#b9bdf0; margin-bottom:.7rem; line-height:1.5; }
.footer__col a:hover{ color:#fff; }
.footer__contact li{ display:flex; gap:.6rem; align-items:flex-start; }
.footer__contact svg{ width:16px; height:16px; margin-top:.2rem; flex:none; color:#7e86d8; }
.footer__ps{ margin-top:2.4rem; background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.08); border-radius:var(--r-lg); padding:1.6rem 1.8rem; }
.footer__ps strong{ color:#fff; font-family:var(--font-display); }
.footer__ps p{ font-size:.95rem; line-height:1.65; color:#aeb3ea; }
.footer__bottom{ display:flex; justify-content:space-between; align-items:center; gap:1rem; flex-wrap:wrap; margin-top:2rem; font-size:.84rem; color:#7e86d8; }
.footer__social{ display:flex; gap:.7rem; }
.footer__social a{ width:38px; height:38px; border-radius:10px; border:1px solid rgba(255,255,255,.14); display:grid; place-items:center; color:#b9bdf0; transition:.16s; }
.footer__social a:hover{ background:rgba(255,255,255,.08); color:#fff; }
.footer__social svg{ width:18px; height:18px; }

/* WhatsApp float */
.wa-float{
  position:fixed; right:22px; bottom:22px; z-index:55; width:58px; height:58px; border-radius:50%;
  background:#25D366; color:#fff; display:grid; place-items:center; box-shadow:0 10px 30px rgba(0,0,0,.22);
  transition:transform .18s ease;
}
.wa-float:hover{ transform:scale(1.07); }
.wa-float svg{ width:30px; height:30px; }

/* back to top */
.to-top{
  position:fixed; right:24px; bottom:92px; z-index:54; width:48px; height:48px; border-radius:50%;
  background:var(--brand); color:#fff; border:none; display:grid; place-items:center;
  box-shadow:var(--shadow-md); cursor:pointer; opacity:0; visibility:hidden; transform:translateY(10px);
  transition:opacity .22s ease, transform .22s ease, visibility .22s ease;
}
.to-top.show{ opacity:1; visibility:visible; transform:none; }
.to-top:hover{ transform:translateY(-3px); box-shadow:var(--shadow-lg); }
.to-top svg{ width:21px; height:21px; transform:rotate(-90deg); }

/* reveal animation */
@media (prefers-reduced-motion: no-preference){
  .reveal{ opacity:0; transform:translateY(22px); transition:opacity .6s cubic-bezier(.2,.7,.3,1), transform .6s cubic-bezier(.2,.7,.3,1); }
  .reveal.in{ opacity:1; transform:none; }
}

/* ---------- responsive ---------- */
@media (max-width: 980px){
  .hero__grid{ grid-template-columns:1fr; gap:2.4rem; }
  .hero__sub{ max-width:48ch; }
  .value-grid{ grid-template-columns:1fr; gap:1.8rem; }
  .steps{ grid-template-columns:1fr; }
  .step__arrow{ display:none; }
  .offer-grid{ grid-template-columns:1fr; }
  .stats-row{ grid-template-columns:1fr; }
  .footer__top{ grid-template-columns:1fr 1fr; }
  .footer__brandcol{ grid-column:1 / -1; }
  .guarantee{ grid-template-columns:1fr; text-align:center; justify-items:center; }
  .solution-note{ grid-template-columns:1fr; text-align:center; justify-items:center; }
}
@media (max-width: 760px){
  .header nav, .header__phone span{ display:none; }
  .menu-toggle{ display:grid; place-items:center; width:42px; height:42px; border-radius:10px; background:rgba(255,255,255,.1); border:none; color:#fff; cursor:pointer; }
  .header.scrolled .menu-toggle{ background:var(--accent-soft); color:var(--brand); }
  .type-grid{ grid-template-columns:repeat(2,1fr); }
  .footer__top{ grid-template-columns:1fr; }
  .footer__ps{ padding:1.3rem; }
}
