/* ============================================================
   ITA Advisors — Onboarding Wizard v4
   Brand: navy #0F1F3D  |  verde #2ABF73
   Font: system stack (-apple-system, Segoe UI…)
   ============================================================ */

/* ── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #000000;
  --navy-mid:   #1A2E50;
  --navy-soft:  #EEF3F9;
  --green:      #184093;
  --green-dark: #184093;
  --green-soft: #E8F7EF;
  --gold:       #C8973A;
  --gold-soft:  #FDF5E6;
  --red:        #D63B3B;
  --red-soft:   #FEF0F0;
  --text-1:     #0F1F3D;
  --text-2:     #4A5568;
  --text-3:     #9AA5B4;
  --border:     #E2E8F0;
  --bg:         #F7F8FA;
  --white:      #FFFFFF;
  --r-sm:  5px;
  --r-md:  8px;
  --r-lg:  12px;
  --r-xl:  16px;
  --sh-xs: 0 1px 2px rgba(0,0,0,.06);
  --sh-sm: 0 1px 4px rgba(0,0,0,.08);
  --sh-md: 0 4px 16px rgba(0,0,0,.10);
  --t: .17s ease;
}

@font-face {
    font-family: 'QontoSans-Regular';
    src: url('/onboarding/font/QontoSans-Regular.woff2') format('woff2'),
         url('/onboarding/font/QontoSans-Regular.woff') format('woff');
}
@font-face {
    font-family: 'QontoSans-RegularItalic';
    src: url('/onboarding/font/QontoSans-RegularItalic.woff2') format('woff2'),
         url('/onboarding/font/QontoSans-RegularItalic.woff') format('woff');
}
@font-face {
    font-family: 'QontoSans-Light';
    src: url('/onboarding/font/QontoSans-Light.woff2') format('woff2'),
         url('/onboarding/font/QontoSans-Light.woff') format('woff');
}
@font-face {
    font-family: 'QontoSans-SemiBold';
    src: url('/onboarding/font/QontoSans-SemiBold.woff2') format('woff2'),
         url('/onboarding/font/QontoSans-SemiBold.woff') format('woff');
}
@font-face {
    font-family: 'QontoSans-Bold';
    src: url('/onboarding/font/QontoSans-Bold.woff2') format('woff2'),
         url('/wonboarding/font/QontoSans-Bold.woff') format('woff');
}
@font-face {
    font-family: 'QontoSans-Black';
    src: url('/onboarding/font/QontoSans-Black.woff2') format('woff2'),
         url('/onboarding/font/QontoSans-Black.woff') format('woff');
}




html { font-size: 16px; }

body {
  font-family: 'QontoSans-Regular';
  background: var(--bg);
  color: var(--text-1);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── LAYOUT ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ── HEADER ────────────────────────────────────────────── */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: var(--sh-xs);
}

.header-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
}
.logo-icon {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 20px;
}
.logo-bar {
  width: 4px;
  border-radius: 2px;
  background: var(--navy);
}
.logo-bar:nth-child(1) { height: 12px; }
.logo-bar:nth-child(2) { height: 8px; }
.logo-bar:nth-child(3) { height: 18px; }
.logo-bar:nth-child(4) { height: 7px; }

.logo-wordmark {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.02em;
}
.logo-wordmark span { color: var(--green); }

.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--text-2);
}
.header-phone svg { color: var(--green); flex-shrink: 0; }
.header-phone a { color: var(--navy); font-weight: 600; }
.header-help { font-size: 12px; color: var(--text-3); }

/* ── PROGRESS BAR ──────────────────────────────────────── */
.progress-section {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: .875rem 0;
}

.progress-inner {
  display: flex;
  align-items: flex-start;
}

.prog-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  position: relative;
}

.prog-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 13px;
  left: 55%;
  width: 90%;
  height: 1.5px;
  background: var(--border);
  z-index: 0;
  transition: background var(--t);
}

.prog-step.done:not(:last-child)::after { background: var(--green); }

.prog-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--text-3);
  z-index: 1;
  position: relative;
  transition: all .22s;
}
.prog-step.active .prog-dot {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}
.prog-step.done .prog-dot {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
  font-size: 13px;
}
.prog-label {
  font-size: 12px;
  color: var(--text-3);
  text-align: center;
  //*max-width: 60px;*/
  line-height: 1.3;
  letter-spacing: .01em;
}
.prog-step.active .prog-label { color: var(--navy); font-weight: 700; }
.prog-step.done .prog-label   { color: var(--green); }

/* ── WIZARD MAIN ───────────────────────────────────────── */
.wizard-wrap {
  flex: 1;
  padding: 2.25rem 0 3.5rem;
}

/* ── FLOW BADGE ────────────────────────────────────────── */
.flow-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: .875rem;
}
.flow-badge.f0    { background: var(--navy-soft); color: var(--navy); }
.flow-badge.f1    { background: #EBF3FF; color: #1A56DB; }
.flow-badge.f2    { background: #F0EBFF; color: #6B21A8; }
.flow-badge.fpag  { background: #e9f0ff; color: #8d8d8d; }
.flow-badge.fok   { background: var(--green-soft); color: var(--green-dark); }

/* ── CARD ──────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem;
  margin-bottom: .875rem;
  box-shadow: var(--sh-xs);
  animation: fadeUp .25s ease both;
}
.card + .card { animation-delay: .06s; }
.card + .card + .card { animation-delay: .1s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.card-title {
  font-size: 21px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .4rem;
  line-height: 1.2;
}
.card-sub {
  font-size: 14px;
  color: var(--text-2);
  margin-bottom: 1.625rem;
  line-height: 1.55;
}

/* ── OPTION CARDS ──────────────────────────────────────── */
.options-grid {
  display: grid;
  gap: 9px;
}
.cols-2 { grid-template-columns: 1fr 1fr; }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }

.opt-card {
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1rem 1.125rem;
  cursor: pointer;
  transition: border-color var(--t), background var(--t), transform var(--t), box-shadow var(--t);
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--white);
  user-select: none;
  outline: none;
  font-family: inherit;
  text-align: left;
  width: 100%;
}
.opt-card:hover {
  border-color: var(--navy);
  background: var(--navy-soft);
  transform: translateY(-1px);
  box-shadow: var(--sh-sm);
}
.opt-card.selected {
  border-color: var(--navy);
  background: var(--navy-soft);
  box-shadow: 0 0 0 3px rgba(15,31,61,.08);
}
.opt-card:focus { box-shadow: 0 0 0 3px rgba(15,31,61,.15); }
.opt-card.compact { padding: .625rem .875rem; }
.opt-card.centered { text-align: center; align-items: center; }

.oc-icon  { font-size: 22px; margin-bottom: 3px; }
.oc-title { font-size: 13px; font-weight: 700; color: var(--navy); line-height: 1.25; }
.oc-desc  { font-size: 11px; color: var(--text-2); line-height: 1.4; }

/* ── PRICING CARDS ─────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 1.125rem;
}

.price-card {
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.25rem 1rem;
  cursor: pointer;
  transition: all var(--t);
  position: relative;
  background: var(--white);
  display: flex;
  flex-direction: column;
}
.price-card:hover {
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
}
.price-card.selected {
  border-color: var(--navy);
  background: var(--navy-soft);
  box-shadow: 0 0 0 3px rgba(15,31,61,.08);
}
.price-card.featured { border-color: var(--navy); }

.price-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.price-plan    { font-size: 10px; font-weight: 700; color: var(--text-3); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 8px; }
.price-amount  { font-size: 28px; font-weight: 800; color: var(--navy); letter-spacing: -.03em; line-height: 1; }
.price-curr    { font-size: 16px; font-weight: 700; vertical-align: top; margin-top: 4px; display: inline-block; }
.price-period  { font-size: 11px; color: var(--text-3); margin-bottom: 12px; margin-top: 3px; }

.price-features      { list-style: none; display: flex; flex-direction: column; gap: 5px; flex: 1; }
.price-features li   { font-size: 11px; color: var(--text-2); display: flex; gap: 5px; align-items: flex-start; line-height: 1.35; }
.price-features li::before { content: '✓'; color: var(--green); font-weight: 800; font-size: 11px; flex-shrink: 0; }
.price-features li.no::before { content: '✗'; color: var(--red); }
.price-features li.no { color: var(--text-3); }

/* ── INFO BOXES ────────────────────────────────────────── */
.info-box {
  border-radius: var(--r-md);
  padding: .8rem 1rem;
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: .875rem;
  display: flex;
  gap: 9px;
  align-items: flex-start;
  border: 1px solid transparent;
}
.info-box .ib-icon { font-size: 15px; flex-shrink: 0; margin-top: 1px; }
.info-box strong { font-weight: 700; }
.info-box.neutral { background: var(--bg);         border-color: var(--border);                  color: var(--text-2); }
.info-box.navy    { background: var(--navy-soft);   border-color: rgba(15,31,61,.12);             color: var(--navy); }
.info-box.success { background: var(--green-soft);  border-color: rgba(42,191,115,.25);           color: #135C38; }
.info-box.warning { background: var(--gold-soft);   border-color: rgba(200,151,58,.25);           color: #7A5010; }
.info-box.danger  { background: var(--red-soft);    border-color: rgba(214,59,59,.25);            color: #7A1C1C; }

/* ── LABEL ROW + TOOLTIP ───────────────────────────────── */
.label-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: .5rem;
}
.form-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* Icona (i) */
.info-btn {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--text-3);
  cursor: pointer;
  flex-shrink: 0;
  transition: all .15s;
  line-height: 1;
  padding: 0;
  font-family: inherit;
}
.info-btn:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* Tooltip popup */
.tip-wrap { position: relative; display: inline-block; }

.tip-box {
  display: none;
  position: absolute;
  left: 22px;
  top: -4px;
  z-index: 100;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: .875rem 1rem;
  width: 260px;
  box-shadow: var(--sh-md);
}
.tip-box.open { display: block; }
.tip-box.tip-right { left: auto; right: 22px; }
.tip-box.tip-right::before { left: auto; right: -5px; border-left: none; border-right: 1px solid var(--border); border-bottom: none; border-top: 1px solid var(--border); }

.tip-box::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 12px;
  width: 8px;
  height: 8px;
  background: var(--white);
  border-left: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transform: rotate(45deg);
}

.tip-title { font-size: 12px; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.tip-body  { font-size: 12px; color: var(--text-2); line-height: 1.55; }
.tip-close {
  position: absolute;
  top: 6px;
  right: 8px;
  font-size: 14px;
  cursor: pointer;
  color: var(--text-3);
  background: none;
  border: none;
  line-height: 1;
  padding: 0;
  font-family: inherit;
}
.tip-close:hover { color: var(--text-1); }

/* ── VIDEO BLOCK ───────────────────────────────────────── */
.video-block {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 1.125rem;
  cursor: pointer;
  transition: border-color var(--t), box-shadow var(--t);
}
.video-block:hover { border-color: var(--navy); box-shadow: var(--sh-sm); }

.video-thumb {
  height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  transition: background var(--t);
  padding: 1rem;
}
.video-block:hover .video-thumb { background: var(--navy-soft); }

.video-play {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--t);
}
.video-block:hover .video-play { transform: scale(1.06); }

.video-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  max-width: 340px;
  line-height: 1.35;
}
.video-sub {
  font-size: 11px;
  color: var(--text-2);
  text-align: center;
}
.video-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .625rem .875rem;
}
.video-meta-title { font-size: 12px; font-weight: 600; color: var(--navy); }
.video-dur {
  font-size: 11px;
  color: var(--text-3);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 2px 8px;
}

/* ── FORM ELEMENTS ─────────────────────────────────────── */
.form-row { display: grid; gap: 10px; margin-bottom: 10px; }
.form-row.cols-2 { grid-template-columns: 1fr 1fr; }
.form-group { display: flex; flex-direction: column; gap: 5px; }

.form-input,
.form-select {
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: .6rem .875rem;
  font-size: 14px;
  font-family: inherit;
  color: var(--text-1);
  background: var(--white);
  width: 100%;
  transition: border-color var(--t), box-shadow var(--t);
  appearance: none;
}
.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(15,31,61,.08);
}
.form-input::placeholder { color: var(--text-3); }
.form-hint { font-size: 11px; color: var(--text-3); margin-top: 3px; }

.select-wrap { position: relative; }
.select-wrap::after {
  content: '▾';
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--text-3);
  font-size: 12px;
}

/* ── DIVIDER ───────────────────────────────────────────── */
.section-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 1.125rem 0;
}
.section-divider::before,
.section-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.section-divider span {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: .06em;
  white-space: nowrap;
}

/* ── TC CHECKBOXES ─────────────────────────────────────── */
.tc-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: .875rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  margin-bottom: .625rem;
  cursor: pointer;
  transition: all var(--t);
  background: var(--bg);
}
.tc-box:hover { border-color: var(--navy); background: var(--navy-soft); }
.tc-box input[type="checkbox"] {
  width: 17px;
  height: 17px;
  accent-color: var(--navy);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
}
.tc-box label { font-size: 13px; color: var(--text-2); line-height: 1.5; cursor: pointer; }
.tc-box label a { color: var(--navy); font-weight: 600; text-decoration: underline; }
.tc-box.marketing { background: var(--bg); border-style: dashed; }
.badge-optional {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 1px 6px;
  margin-right: 5px;
  color: var(--text-3);
  vertical-align: middle;
}

/* ── BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: var(--r-md);
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  padding: .7rem 1.5rem;
  cursor: pointer;
  transition: all var(--t);
  border: none;
  text-decoration: none;
  line-height: 1;
  letter-spacing: -.01em;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }

.btn-primary {
  background: var(--navy);
  color: var(--white);
  flex: 1;
}
.btn-primary:hover {
  background: var(--navy-mid);
  box-shadow: var(--sh-md);
  transform: translateY(-1px);
}
.btn-primary:active { transform: scale(.98); }
.btn-primary:disabled {
  background: var(--border);
  color: var(--text-3);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-outline {
  background: transparent;
  color: var(--text-2);
  border: 1.5px solid var(--border);
  flex-shrink: 0;
}
.btn-outline:hover { border-color: var(--navy); color: var(--navy); background: var(--navy-soft); }

.nav-row {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: .875rem;
}

/* ── ERROR ─────────────────────────────────────────────── */
.error-msg {
  display: none;
  font-size: 12px;
  font-weight: 600;
  color: var(--red);
  padding: .6rem .875rem;
  background: var(--red-soft);
  border: 1px solid rgba(214,59,59,.2);
  border-radius: var(--r-sm);
  margin-top: .5rem;
}
.error-msg.show { display: block; }

/* ── MODAL ─────────────────────────────────────────────── */
.modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.52);
  z-index: 500;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-backdrop.open { display: flex; }

.modal-box {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 1.875rem;
  max-width: 500px;
  width: 100%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  animation: fadeUp .22s ease both;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  transition: all var(--t);
}
.modal-close:hover { background: var(--navy-soft); color: var(--navy); }

.modal-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .375rem;
  padding-right: 2rem;
  line-height: 1.25;
}
.modal-desc {
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 1rem;
  line-height: 1.5;
}

/* Video embed placeholder nel modal */
.video-embed-placeholder {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  height: 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 1.125rem;
  font-size: 12px;
  color: var(--text-3);
}

.modal-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 1rem;
}

/* Tabella confronto tipologie nel modal */
.tipo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 1rem;
}
.tipo-card {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: .875rem;
  background: var(--bg);
}
.tipo-head { display: flex; align-items: center; gap: 6px; margin-bottom: .5rem; }
.tipo-ico  { font-size: 18px; }
.tipo-name { font-size: 13px; font-weight: 700; color: var(--navy); }
.tipo-row  {
  display: flex;
  gap: 5px;
  font-size: 11px;
  color: var(--text-2);
  padding: 2px 0;
  line-height: 1.4;
}
.tipo-row::before { content: '•'; color: var(--text-3); flex-shrink: 0; }

/* ── PAYMENT SUMMARY ───────────────────────────────────── */
.summary-box {
  background: var(--navy-soft);
  border: 1px solid rgba(15,31,61,.1);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-2);
  padding: 3px 0;
}
.summary-row strong { color: var(--navy); font-weight: 700; }
.summary-row.total {
  border-top: 1px solid rgba(15,31,61,.1);
  margin-top: 8px;
  padding-top: 10px;
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
}
.summary-row.total .price-green { color: var(--green-dark); font-size: 18px; }

/* Stripe mockup */
.stripe-mock {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.125rem;
  margin-bottom: 1.125rem;
}
.stripe-mock-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .75rem;
}
.stripe-mock-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 8px; }
.stripe-mock-input {
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: .55rem .75rem;
  font-size: 13px;
  background: var(--white);
  color: var(--text-3);
  width: 100%;
  font-family: inherit;
}
.stripe-mock-note { font-size: 11px; color: var(--text-3); text-align: center; margin-top: 6px; }

/* ── ONBOARDING FINAL STEPS ────────────────────────────── */
.onb-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: .875rem 0;
  border-bottom: 1px solid var(--border);
}
.onb-step:last-child { border-bottom: none; }
.onb-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--navy-soft);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}
.onb-title { font-size: 13px; font-weight: 700; color: var(--navy); }
.onb-desc  { font-size: 12px; color: var(--text-2); margin-top: 2px; line-height: 1.4; }
.onb-action {
  background: var(--navy-soft);
  color: var(--navy);
  border-radius: var(--r-sm);
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
  transition: all var(--t);
  border: 1px solid rgba(15,31,61,.1);
}
.onb-action:hover { background: var(--navy); color: var(--white); text-decoration: none; }

.email-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: .75rem;
  background: var(--bg);
  border-radius: var(--r-md);
  margin-bottom: 7px;
}
.email-row:last-child { margin-bottom: 0; }
.email-ico {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.email-title { font-size: 13px; font-weight: 700; color: var(--navy); }
.email-desc  { font-size: 11px; color: var(--text-2); margin-top: 1px; }

.success-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy-soft);
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── CHAT BUTTON ───────────────────────────────────────── */
.chat-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--navy);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 14px rgba(0,0,0,.2);
  z-index: 999;
  transition: all var(--t);
}
.chat-btn:hover { background: var(--navy-mid); transform: scale(1.06); }
.chat-dot {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--green);
  border: 2px solid var(--white);
}
.chat-tooltip {
  position: absolute;
  bottom: 58px;
  right: 0;
  background: var(--navy);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: var(--r-md);
  white-space: nowrap;
  display: none;
  font-family: inherit;
}
.chat-btn:hover .chat-tooltip { display: block; }

/* ── FOOTER ────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  padding: 1.25rem 0;
  margin-top: auto;
}
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-copy   { font-size: 12px; color: rgba(255,255,255,.4); }
.footer-links  { display: flex; gap: 16px; }
.footer-links a { font-size: 12px; color: rgba(255,255,255,.4); }
.footer-links a:hover { color: rgba(255,255,255,.75); text-decoration: none; }

/* ── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 580px) {
  .cols-3          { grid-template-columns: 1fr; }
  .cols-4          { grid-template-columns: 1fr 1fr; }
  .pricing-grid    { grid-template-columns: 1fr; }
  .form-row.cols-2 { grid-template-columns: 1fr; }
  .tipo-grid       { grid-template-columns: 1fr; }
  .modal-cta-grid  { grid-template-columns: 1fr; }
  .stripe-mock-row { grid-template-columns: 1fr; }
  .card            { padding: 1.375rem 1.125rem; }
  .card-title      { font-size: 18px; }
  .prog-label      { font-size: 8px; max-width: 46px; }
  .header-help     { display: none; }
  .footer-inner    { flex-direction: column; align-items: flex-start; }
  .chat-btn        { bottom: 16px; right: 16px; width: 44px; height: 44px; }
}
