/* ============================================================
   QUOTIFY — LLAMATIVO  (P2 palette)
   Azul #4BBAE9  ·  Naranja #F07945  ·  Fondo #F0F4F8
   Fraunces (display) + DM Sans (body)
   Step 7: dark navy #0A1628
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }

:root {
  --blue:       #4BBAE9;
  --blue-dk:    #1D9BD4;
  --blue-xdk:   #1272A8;
  --blue-lt:    #E8F6FD;
  --blue-bd:    rgba(75,186,233,0.30);
  --blue-glow:  rgba(75,186,233,0.22);

  --orange:     #F07945;
  --orange-dk:  #D4592A;
  --orange-lt:  rgba(240,121,69,0.10);
  --orange-bd:  rgba(240,121,69,0.30);

  --green:      #30C75E;
  --green-lt:   #E4F9EB;
  --green-bd:   rgba(48,199,94,0.30);

  --red:        #EF4444;

  --bg:         #F0F4F8;
  --white:      #FFFFFF;
  --g50:        #F8FAFC;
  --g100:       #F1F5F9;
  --g200:       #E2E8F0;
  --g300:       #9CA3AF;
  --g400:       #64748B;
  --g600:       #475569;
  --g900:       #0F172A;

  --amb-bg:     #FFFBEB;
  --amb-bd:     #FDE68A;
  --amb-tx:     #92400E;

  /* Dark theme (step 7) — deep brand blue */
  --dk-bg:      #0B2D60;
  --dk-card:    #0E3878;
  --dk-surface: rgba(255,255,255,0.07);
  --dk-border:  rgba(255,255,255,0.15);
  --dk-tx:      #FFFFFF;
  --dk-tx2:     #C4DDEF;
  --dk-tx3:     #7AADD0;
}

body {
  background: var(--bg);
  color: var(--g900);
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
}
button { font-family: inherit; cursor: pointer; }

.hard-bloc { position: fixed; inset: 0; background: #000; z-index: 999999; }

/* ── PAGE WRAPPER ── */
.page-wrap {
  width: 100%;
  max-width: 430px;
  min-height: 100vh;
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.06), 0 12px 48px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
  position: relative;
  /* top accent stripe */
  border-top: 4px solid var(--blue);
}

.steps-wrapper { flex: 1; display: flex; flex-direction: column; }

.step { display: none; flex-direction: column; min-height: 100vh; }
.step.active {
  display: flex;
  animation: stepIn 0.34s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes stepIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Step 7 same white background as other steps */
.step[data-step="7"] {
  background: var(--white);
  min-height: 100vh;
}

/* ── PROGRESS BAR ── */
.progress-wrap { padding: 0 16px 10px; }
.progress-bar-wrapper {
  height: 5px;
  background: var(--g200);
  border-radius: 999px;
  overflow: hidden;
}
.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue-dk), var(--blue));
  border-radius: 999px;
  transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  width: 0%;
  box-shadow: 0 0 8px var(--blue-glow);
}
.progress-percent { display: none; }
.progress-slot {}

/* ── NAV ── */
.q-nav {
  display: flex;
  align-items: center;
  padding: 16px 16px 10px;
  background: var(--white);
}
.q-nav--center {
  justify-content: center;
  padding: 22px 16px 12px;
}
.q-brand {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--blue-dk);
  letter-spacing: -0.3px;
  flex: 1;
  text-align: center;
}
.q-nav--center .q-brand { flex: unset; font-size: 26px; }
.q-back {
  width: 34px;
  height: 34px;
  border: 1.5px solid var(--g200);
  border-radius: 10px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--g400);
  flex-shrink: 0;
  line-height: 1;
  transition: background 0.14s, border-color 0.14s, color 0.14s;
}
.q-back:hover { background: var(--blue-lt); border-color: var(--blue-bd); color: var(--blue-dk); }
.q-step-tag {
  font-size: 11px;
  color: var(--g400);
  font-weight: 700;
  flex-shrink: 0;
  white-space: nowrap;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: var(--g100);
  padding: 3px 8px;
  border-radius: 999px;
}

/* ── AMBER TOP BAR ── */
.q-warn-top {
  background: var(--amb-bg);
  border-bottom: 1px solid var(--amb-bd);
  color: var(--amb-tx);
  font-size: 12px;
  font-weight: 700;
  padding: 9px 16px;
  text-align: center;
  line-height: 1.4;
}
.q-warn-inline {
  margin: 2px 16px 6px;
  background: var(--amb-bg);
  border: 1.5px solid var(--amb-bd);
  border-radius: 10px;
  color: var(--amb-tx);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 12px;
  text-align: center;
  line-height: 1.45;
}

/* ── INFO BANNER ── */
.q-info-banner {
  margin: 10px 16px 4px;
  padding: 12px 14px;
  border: 1.5px solid var(--orange-bd);
  border-radius: 14px;
  background: var(--orange-lt);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.q-banner-body { flex: 1; }
.q-banner-title { font-size: 13.5px; font-weight: 800; color: var(--orange-dk); line-height: 1.3; }
.q-banner-sub   { font-size: 12px; color: var(--g600); margin-top: 2px; line-height: 1.4; }

/* ── BADGES ── */
.q-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  justify-content: center;
  padding: 4px 16px 10px;
}
.q-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 13px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  border: 1px solid;
  letter-spacing: 0.2px;
}
.q-badge--yellow { background: var(--amb-bg); color: var(--amb-tx); border-color: var(--amb-bd); }
.q-badge--green  { background: var(--green-lt); color: #166534; border-color: var(--green-bd); }

/* ── HERO CIRCLE ── */
.q-hero-wrap {
  display: flex;
  justify-content: center;
  padding: 14px 0 20px;
}
.q-hero {
  width: 94px;
  height: 94px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.q-hero::before {
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  z-index: -1;
}
.q-hero::after {
  content: '';
  position: absolute;
  inset: -28px;
  border-radius: 50%;
  z-index: -2;
}
.q-hero--blue {
  background: linear-gradient(145deg, var(--blue), var(--blue-dk));
  box-shadow: 0 8px 28px rgba(75,186,233,0.45), 0 2px 8px rgba(75,186,233,0.25);
}
.q-hero--blue::before { background: rgba(75,186,233,0.14); }
.q-hero--blue::after  { background: rgba(75,186,233,0.06); }

.q-hero--orange {
  background: linear-gradient(145deg, var(--orange), var(--orange-dk));
  box-shadow: 0 8px 28px rgba(240,121,69,0.45), 0 2px 8px rgba(240,121,69,0.25);
}
.q-hero--orange::before { background: rgba(240,121,69,0.14); }
.q-hero--orange::after  { background: rgba(240,121,69,0.06); }

.q-hero--sky {
  background: linear-gradient(145deg, var(--blue), var(--blue-dk));
  box-shadow: 0 8px 28px rgba(75,186,233,0.42);
}
.q-hero--sky::before { background: rgba(75,186,233,0.12); }
.q-hero--sky::after  { background: rgba(75,186,233,0.05); }

.q-hero svg { width: 46px; height: 46px; }

/* ── PIN HERO ── */
.q-pin-wrap {
  display: flex;
  justify-content: center;
  padding: 16px 0 22px;
}
.q-pin-rings {
  position: relative;
  width: 86px;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.q-pin-rings::before {
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  background: var(--green-lt);
}
.q-pin-rings::after {
  content: '';
  position: absolute;
  inset: -28px;
  border-radius: 50%;
  background: rgba(48,199,94,0.07);
}
.q-pin-rings svg {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 6px 14px rgba(48,199,94,0.45));
}

/* ── TITLES ── */
.q-big-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--g900);
  text-align: center;
  padding: 0 18px 6px;
  letter-spacing: -0.5px;
  line-height: 1.12;
}
.q-subtitle {
  font-size: 14px;
  color: var(--g400);
  text-align: center;
  padding: 0 20px 14px;
  line-height: 1.5;
  font-weight: 500;
}
.q-question-left {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--g900);
  padding: 6px 16px 10px;
  letter-spacing: -0.3px;
  line-height: 1.25;
}
.q-step-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--g400);
  text-align: center;
  padding: 10px 16px 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── OPTION BUTTONS ── */
.q-opts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 4px 16px 16px;
  flex: 1;
}
.q-opt {
  display: flex;
  align-items: center;
  gap: 13px;
  background: var(--white);
  border: 1.5px solid var(--g200);
  border-left: 4px solid transparent;
  border-radius: 14px;
  padding: 13px 14px;
  text-align: left;
  width: 100%;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  transition: border-color 0.14s, background 0.14s, box-shadow 0.14s, transform 0.10s;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}
.q-opt:hover {
  border-color: var(--blue-bd);
  border-left-color: var(--blue);
  background: var(--blue-lt);
  box-shadow: 0 4px 16px rgba(75,186,233,0.18);
  transform: translateY(-1px);
}
.q-opt:active { opacity: 0.82; transform: translateY(0); }

.q-oi {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  flex-shrink: 0;
  transition: transform 0.14s;
}
.q-opt:hover .q-oi { transform: scale(1.08); }
.q-oi--gray   { background: var(--g100); }
.q-oi--blue   { background: var(--blue-lt); }
.q-oi--green  { background: var(--green-lt); }
.q-oi--red    { background: #FEE2E2; }
.q-oi--yellow { background: #FFFBEB; }

.q-opt-body { flex: 1; min-width: 0; }
.q-opt-lbl  { font-size: 15px; font-weight: 700; color: var(--g900); display: block; line-height: 1.2; }
.q-opt-sub  { font-size: 12px; color: var(--g400); display: block; margin-top: 2px; font-weight: 500; }
.q-arr      { font-size: 18px; color: var(--g300); font-weight: 600; flex-shrink: 0; transition: color 0.14s, transform 0.14s; }
.q-opt:hover .q-arr { color: var(--blue); transform: translateX(3px); }

/* ── STATE CARD ── */
.q-state-card {
  margin: 6px 16px 4px;
  border: 2px solid var(--blue-bd);
  background: linear-gradient(135deg, var(--blue-lt), #F0FBFF);
  border-radius: 16px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 14px var(--blue-glow);
}
.q-state-icon   { font-size: 24px; flex-shrink: 0; }
.q-state-info   { flex: 1; min-width: 0; }
.q-state-name   {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 21px;
  font-weight: 900;
  color: var(--blue-dk);
  letter-spacing: -0.4px;
  line-height: 1.1;
}
.q-state-sub    { font-size: 11.5px; color: var(--g400); margin-top: 1px; }
.q-state-pill   {
  background: var(--green-lt);
  color: #166534;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 11px;
  border-radius: 999px;
  border: 1px solid var(--green-bd);
  flex-shrink: 0;
}
.q-or { text-align: center; font-size: 12px; color: var(--g400); padding: 6px 0; }

/* ── SELECT ── */
.q-sel-wrap { padding: 0 16px; }
.q-select {
  width: 100%;
  padding: 13px 36px 13px 14px;
  border-radius: 13px;
  border: 1.5px solid var(--g200);
  font-size: 15px;
  font-weight: 500;
  color: var(--g600);
  background: var(--white);
  font-family: inherit;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  outline: none;
  transition: border-color 0.14s, box-shadow 0.14s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.q-select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(75,186,233,0.18);
  color: var(--g900);
}

/* ── NAME INPUTS ── */
.q-name-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 16px; }
.q-inp-wrap { position: relative; }
.q-inp-label {
  position: absolute;
  top: 8px;
  left: 13px;
  font-size: 10px;
  color: var(--g400);
  font-weight: 700;
  pointer-events: none;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.q-inp {
  width: 100%;
  padding: 24px 13px 9px;
  border-radius: 13px;
  border: 1.5px solid var(--g200);
  font-size: 15px;
  font-weight: 500;
  color: var(--g900);
  font-family: inherit;
  outline: none;
  background: var(--white);
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  transition: border-color 0.14s, box-shadow 0.14s;
}
.q-inp:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(75,186,233,0.18); }
.q-inp::placeholder { color: var(--g300); }

/* ── PHONE ── */
.q-phone-wrap { display: flex; gap: 8px; padding: 0 16px; }
.q-phone-prefix {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 13px 14px;
  border: 1.5px solid var(--g200);
  border-radius: 13px;
  background: var(--g100);
  font-size: 14px;
  font-weight: 700;
  color: var(--g900);
  white-space: nowrap;
  flex-shrink: 0;
}
.q-phone-field {
  flex: 1;
  padding: 13px 14px;
  border-radius: 13px;
  border: 1.5px solid var(--g200);
  font-size: 15px;
  font-weight: 500;
  color: var(--g900);
  font-family: inherit;
  outline: none;
  background: var(--white);
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  transition: border-color 0.14s, box-shadow 0.14s;
}
.q-phone-field:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(75,186,233,0.18); }
.q-phone-field::placeholder { color: var(--g300); }

/* ── EMAIL ── */
.q-email-wrap { padding: 0 16px; }
.q-email-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--g200);
  border-radius: 13px;
  padding: 10px 13px;
  background: var(--white);
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  transition: border-color 0.14s, box-shadow 0.14s;
}
.q-email-inner:focus-within { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(75,186,233,0.18); }
.q-email-icon {
  width: 36px;
  height: 36px;
  background: var(--g100);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.q-email-field {
  flex: 1;
  border: 0;
  outline: 0;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  color: var(--g900);
  background: transparent;
  min-width: 0;
}
.q-email-field::placeholder { color: var(--g300); }

/* ── CTA BUTTON ── */
.btn-cta {
  display: block;
  width: calc(100% - 32px);
  margin: 16px 16px 0;
  padding: 17px 20px;
  border-radius: 14px;
  background: var(--orange);
  color: var(--white);
  font-size: 17px;
  font-weight: 800;
  border: 0;
  letter-spacing: -0.1px;
  text-align: center;
  box-shadow:
    0 6px 22px rgba(240,121,69,0.45),
    0 2px 6px rgba(240,121,69,0.28),
    inset 0 1px 0 rgba(255,255,255,0.2);
  transition: background 0.13s, transform 0.10s, box-shadow 0.13s, opacity 0.13s;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  position: relative;
  overflow: hidden;
}
.btn-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.16) 0%, transparent 55%);
  pointer-events: none;
}
.btn-cta:hover {
  background: var(--orange-dk);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(240,121,69,0.50), 0 4px 10px rgba(240,121,69,0.30);
}
.btn-cta:active  { opacity: 0.88; transform: translateY(0); }
.btn-cta:disabled { opacity: 0.45; cursor: not-allowed; transform: none; }

/* ── TRUST ── */
.q-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 0 0;
}
.q-trust-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--g400);
  padding: 0 12px;
  border-right: 1px solid var(--g200);
  line-height: 1;
}
.q-trust-item:last-child { border-right: 0; }

/* ── SOCIAL PROOF ── */
.q-sp {
  margin: 12px 16px 0;
  background: var(--g50);
  border: 1.5px solid var(--g200);
  border-radius: 14px;
  padding: 11px 14px;
  display: flex;
  align-items: center;
  gap: 11px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.q-sp-avs { display: flex; flex-shrink: 0; }
.q-sp-av {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2.5px solid var(--white);
  margin-left: -7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: var(--white);
}
.q-sp-av:first-child { margin-left: 0; }
.q-sp-av--b { background: var(--blue); }
.q-sp-av--g { background: var(--green); }
.q-sp-av--o { background: var(--orange); }
.q-sp-body  { flex: 1; min-width: 0; }
.q-sp-title { font-size: 12.5px; font-weight: 800; color: var(--g900); }
.q-sp-quote { font-size: 11px; color: var(--g400); margin-top: 1px; font-style: italic; }
.q-sp-stars { font-size: 11px; color: var(--orange); margin-top: 2px; letter-spacing: 1px; }

/* ── MISC ── */
.q-ssl {
  text-align: center;
  font-size: 12px;
  color: var(--g400);
  padding: 9px 16px 0;
  line-height: 1.55;
}
.q-ssl-row { display: flex; align-items: flex-start; gap: 6px; margin: 9px 16px 0; }
.q-ssl-row span { font-size: 12px; color: var(--g400); line-height: 1.55; }
.field-hint { padding: 5px 16px 0; font-size: 12px; font-weight: 700; color: var(--red); }
.consent-wrap { padding: 12px 16px 0; }
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 12px;
  color: var(--g400);
  line-height: 1.55;
  cursor: pointer;
}
.consent-label input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--blue);
  cursor: pointer;
}
.consent-label a { color: var(--blue); text-decoration: underline; }
.q-footer { margin-top: auto; text-align: center; padding: 14px 16px 26px; }
.legal-link { font-size: 11.5px; color: var(--g400); text-decoration: underline; text-underline-offset: 2px; transition: color 0.12s; }
.legal-link:hover { color: var(--g600); }

/* ── MODAL ── */
.modal { position: fixed; inset: 0; z-index: 99999; }
.modal[hidden] { display: none; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.55); backdrop-filter: blur(4px); }
.modal-card {
  position: relative;
  max-width: 540px;
  width: calc(100% - 32px);
  margin: 60px auto;
  background: var(--white);
  border-radius: 18px;
  padding: 22px 20px 26px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 24px 60px rgba(0,0,0,0.25);
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--g100);
  border: 0;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--g400);
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.12s;
}
.modal-close:hover { background: var(--g200); }
.modal-body { padding-top: 14px; }
.small-muted { color: var(--g600); font-size: 0.84rem; line-height: 1.65; white-space: pre-wrap; }

/* ============================================================
   STEP 7 — THANK YOU PAGE  (deep blue: #0B2D60)
   All colors are designed for dark background
   ============================================================ */

/* Wrap & card */
.final-wrap { width: 100%; display: flex; justify-content: center; padding: 20px 16px 36px; }
.final-card  { width: 100%; max-width: 400px; }

/* ── Success header ── */
.final-success {
  text-align: center;
  padding: 8px 16px 20px;
  background: linear-gradient(180deg, var(--blue-lt) 0%, transparent 100%);
  border-radius: 20px;
  margin-bottom: 16px;
}
.final-check { display: flex; justify-content: center; margin: 0 0 14px; }
.final-check svg {
  width: 54px;
  height: 54px;
  filter: drop-shadow(0 4px 12px rgba(75,186,233,0.45));
}
.final-check circle { fill: var(--blue); stroke: var(--blue); stroke-width: 2; }
.final-check path   { fill: none; stroke: #fff; stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; }
.final-h1 {
  margin: 0;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 900;
  color: var(--g900);
}
.final-highlight { color: var(--blue-dk); }
.final-p { margin: 8px 0 0; font-size: 13px; line-height: 1.5; color: var(--g400); }

/* ── Call card ── */
.final-call {
  margin: 0 0 14px;
  background: linear-gradient(135deg, #B71C1C, #C62828);
  border: 1px solid rgba(239,68,68,0.30);
  border-radius: 16px;
  padding: 18px 16px 16px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(183,28,28,0.30);
}
.final-call-title {
  font-size: 15px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-bottom: 12px;
  color: #FFFFFF;
}
.final-call-icon { font-size: 15px; }
.final-call-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 800;
  color: #FFFFFF;
  border: 1px solid rgba(255,255,255,0.25);
}
.final-switch {
  width: 26px;
  height: 15px;
  border-radius: 999px;
  background: rgba(255,255,255,0.35);
  position: relative;
  display: inline-block;
}
.final-switch-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: #FFFFFF;
  position: absolute;
  top: 2px;
  left: 2px;
}
.final-call-text { margin: 12px 0 0; font-size: 12px; line-height: 1.45; color: #FFCDD2; }

/* ── Video section ── */
.final-video {
  margin: 0 0 14px;
  background: var(--blue-lt);
  border: 1.5px solid var(--blue-bd);
  border-radius: 16px;
  padding: 16px;
  border-top: 3px solid var(--blue);
  box-shadow: 0 4px 14px var(--blue-glow);
}
.final-video-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #DC2626;
  color: #FFFFFF;
  font-weight: 900;
  font-size: 11px;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 0.2px;
}
.final-video-h2 {
  margin: 12px 0 0;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 16px;
  font-weight: 900;
  color: var(--g900);
}
.final-video-p { margin: 7px 0 12px; font-size: 12px; line-height: 1.5; color: var(--g400); }
.final-video-frame {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: #0B1E36;
  border: 1px solid var(--blue-bd);
  cursor: pointer;
}
.final-video-frame:hover .final-play { transform: translate(-50%,-50%) scale(1.10); background: rgba(75,186,233,0.35); }
.final-video-frame:active .final-play { transform: translate(-50%,-50%) scale(0.95); }
.final-video-skeleton, .final-play { pointer-events: none; }
.final-video-skeleton {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: linear-gradient(180deg, rgba(75,186,233,0.08), rgba(75,186,233,0));
}
.final-play {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: rgba(75,186,233,0.25);
  border: 2px solid rgba(75,186,233,0.55);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  box-shadow: 0 8px 24px rgba(0,0,0,0.40);
  transition: transform 0.15s, background 0.15s;
}
.final-play:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%,-50%);
  width: 0;
  height: 0;
  border-left: 18px solid rgba(255,255,255,0.95);
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
}
.final-video-benefits { margin-top: 12px; display: grid; gap: 10px; }
.final-vb {
  background: var(--white);
  border-radius: 10px;
  padding: 11px 13px;
  border: 1.5px solid var(--blue-bd);
}
.final-vb-title { font-weight: 800; font-size: 12px; color: var(--blue-dk); }
.final-vb-sub { margin-top: 2px; font-size: 11px; color: var(--g400); line-height: 1.4; }

/* ── Info sections ── */
.final-section {
  margin: 0 0 14px;
  background: var(--g50);
  border-radius: 16px;
  padding: 16px;
  border: 1.5px solid var(--g200);
}
.final-sec-title {
  font-size: 13px;
  font-weight: 900;
  color: var(--g900);
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 10px;
  border-bottom: 1.5px solid var(--g200);
}
.final-info-card {
  background: var(--white);
  border-radius: 10px;
  padding: 11px 13px;
  margin-bottom: 8px;
  border: 1px solid var(--g200);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.final-info-card:last-child { margin-bottom: 0; }
.final-info-card--accent { background: var(--blue-lt); border-left: 3px solid var(--blue); }
.final-info-card--soft   { background: var(--orange-lt); border-left: 3px solid var(--orange); }
.final-info-title { font-weight: 800; font-size: 12px; color: var(--g900); }
.final-info-text  { margin-top: 4px; font-size: 11px; line-height: 1.45; color: var(--g400); }

/* checklist */
.final-checklist { display: grid; gap: 8px; }
.final-cl-item {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--g200);
  border-radius: 10px;
  padding: 11px 13px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.final-cl-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--blue-lt);
  color: var(--blue-dk);
  border: 1.5px solid var(--blue-bd);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 11px;
  flex: 0 0 20px;
  margin-top: 0;
}
.final-cl-strong { font-weight: 800; font-size: 12px; color: var(--g900); }
.final-cl-sub    { margin-top: 2px; font-size: 10.5px; color: var(--g400); line-height: 1.4; }
.final-mini-line { margin: 12px 0 0; text-align: center; font-size: 10.5px; color: var(--blue-dk); font-weight: 800; letter-spacing: 0.3px; }

/* faq */
.final-faq { display: grid; gap: 8px; }
.final-faq-item {
  background: var(--white);
  border: 1px solid var(--g200);
  border-radius: 10px;
  padding: 11px 13px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.final-faq-q { font-size: 12px; font-weight: 800; color: var(--g900); }
.final-faq-a { margin-top: 4px; font-size: 11px; color: var(--g400); line-height: 1.4; }

/* ── Bottom CTA ── */
.final-bottom {
  margin: 0;
  background: linear-gradient(135deg, var(--blue-dk), var(--blue-xdk));
  border-radius: 16px;
  padding: 24px 16px 20px;
  text-align: center;
  position: relative;
  box-shadow: 0 8px 24px rgba(75,186,233,0.30);
}
.final-bottom-phone {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 8px 22px rgba(240,121,69,0.55);
  font-size: 19px;
}
.final-bottom-text {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.35;
}
.final-bottom-accent {
  display: inline-block;
  margin-top: 8px;
  background: var(--orange);
  color: #FFFFFF;
  font-weight: 900;
  font-size: 13px;
  padding: 7px 16px;
  border-radius: 8px;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 16px rgba(240,121,69,0.45);
}
.final-bottom-sub { margin-top: 10px; font-size: 10.5px; color: rgba(255,255,255,0.65); line-height: 1.4; }

/* ── Footer ── */
.page-footer { margin-top: 16px; text-align: center; font-size: 11px; color: var(--g400); }
.page-footer a { color: var(--g400); text-decoration: underline; }
.legal-disclaimer { margin-top: 12px; font-size: 9px; line-height: 1.55; color: var(--g400); text-align: center; opacity: 0.8; }
.final-card .page-footer { margin: 16px 0 0; }
