/* ============================================================
   iHelp Trial Form — Standalone page styles
   ============================================================ */

/* Google Fonts: Geist + Geist Mono loaded via index.html */

* {
  box-sizing: border-box;
}

body {
  background: #07090F;
  min-height: 100vh;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

#error-screen {
  max-width: 460px;
  margin: 24px;
  padding: 28px 32px;
  background: linear-gradient(180deg, #0F1422 0%, #0B0E18 100%);
  border: 1px solid rgba(255,255,255,0.10);
  border-left: 4px solid #FF6A2C;
  border-radius: 16px;
  color: #F5F6F7;
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  box-shadow: 0 40px 100px -10px rgba(0,0,0,0.7);
  text-align: center;
}

#error-screen[hidden] { display: none !important; }

/* ============================================================
   PART 1: funnel.css (base wizard styles)
   ============================================================ */
/* CSS do funnel multi-step — isolado com prefix #funnel */

#funnel {
  --primary-50:#FDF4F0; --primary-100:#FADCD2; --primary-300:#F0957D;
  --primary-500:#E2513A; --primary-600:#C73E26; --primary-700:#9E2E19;
  --primary-900:#5B1A0E;
  --navy-700:#1E2D5C; --navy-900:#0F1A3A;
  --slate-50:#F8FAFC; --slate-100:#F1F5F9; --slate-200:#E2E8F0;
  --slate-300:#CBD5E1; --slate-500:#64748B; --slate-700:#334155; --slate-900:#0F172A;
  --success:#22C55E; --danger:#DC2626;
  --radius-sm:4px; --radius-md:8px; --radius-lg:12px; --radius-xl:16px;
  --shadow-sm:0 1px 2px rgba(15,23,42,.06);
  --shadow-md:0 4px 12px rgba(15,23,42,.08);
  --shadow-lg:0 12px 32px rgba(15,23,42,.12);
}

/* BACKGROUND — site ao vivo (decorativo, atrás do modal) */
.site-bg {
  position: fixed; inset: 0;
  width: 100%; height: 100%;
  border: 0; margin: 0;
  pointer-events: none;   /* não interage — fundo puro */
  z-index: 0;             /* abaixo do modal (z-index 9999) */
}

/* MODAL CONTAINER */
.funnel-modal[hidden] { display: none !important; }
.funnel-modal {
  position: fixed; inset: 0;
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  background: rgba(7,9,15,.62);   /* frosted glass sobre o site ao vivo */
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: funnelModalFadeIn .2s ease;
}
.funnel-modal-overlay { position: absolute; inset: 0; }
.funnel-modal-content {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  max-width: 560px; width: 100%;
  max-height: 92vh; overflow-y: auto;
  padding: 32px 24px 24px;
  box-shadow: var(--shadow-lg);
  animation: funnelModalSlideUp .25s ease;
}
.funnel-modal-close {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px;
  border: none; background: #F1F5F9; color: #334155;
  font-size: 24px; line-height: 1; border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  padding: 0; z-index: 1;
}
.funnel-modal-close:hover { background: #E2E8F0; color: #0F1A3A; }

@keyframes funnelModalFadeIn { from{opacity:0} to{opacity:1} }
@keyframes funnelModalSlideUp { from{transform:translateY(20px);opacity:.5} to{transform:translateY(0);opacity:1} }

/* PROGRESS */
#funnel .progress {
  position: relative; height: 8px;
  background: var(--slate-200);
  border-radius: var(--radius-sm);
  margin-bottom: 8px; overflow: hidden;
}
#funnel .progress-bar {
  position: absolute; top: 0; left: 0; height: 100%;
  background: var(--primary-500);
  border-radius: var(--radius-sm);
  transition: width .25s ease;
  width: 0;
}
#funnel .progress-label {
  display: block;
  font-size: 13px;
  color: var(--slate-500);
  margin-bottom: 24px; margin-top: 8px;
}

/* TITLES + FIELDS */
#funnel h3, #funnel h2:not(.visually-hidden) {
  font-size: 22px; line-height: 1.3;
  color: var(--navy-900);
  margin: 0 0 8px; font-weight: 700;
}
#funnel p { font-size: 15px; color: var(--slate-700); line-height: 1.5; margin-bottom: 24px; }

#funnel .field { margin-bottom: 20px; }
#funnel fieldset.field {
  border: 0 !important;
  padding: 0 !important;
  margin: 0 0 20px !important;
}
#funnel legend { padding: 0; margin: 0 0 8px; }
#funnel label { display: block; font-size: 14px; font-weight: 600; color: var(--navy-900); margin-bottom: 8px; }

#funnel input[type="text"], #funnel input[type="email"], #funnel input[type="tel"],
#funnel select, #funnel textarea {
  width: 100%; padding: 12px 14px;
  font-size: 16px; font-family: inherit;
  border: 2px solid var(--slate-300);
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--slate-900);
  transition: border-color .15s ease;
  box-sizing: border-box;
}
#funnel input:focus, #funnel select:focus, #funnel textarea:focus {
  outline: none; border-color: var(--primary-500);
}
#funnel textarea { min-height: 80px; resize: vertical; }

/* RADIO OPTIONS */
#funnel .radio-group { display: grid; gap: 8px; }
#funnel .radio-option {
  position: relative; display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 16px;
  background: #fff;
  border: 2px solid var(--slate-300);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all .15s ease;
  min-height: 48px;
}
#funnel .radio-option:hover { border-color: var(--primary-300); background: var(--primary-50); }
#funnel .radio-option input { position: absolute; opacity: 0; pointer-events: none; }
#funnel .radio-option .radio-dot {
  flex-shrink: 0; width: 20px; height: 20px;
  border: 2px solid var(--slate-300);
  border-radius: 50%;
  display: block; margin-top: 2px;
  transition: all .15s ease;
  position: relative;
}
#funnel .radio-option input:checked ~ .radio-dot {
  border-color: var(--primary-500);
  background: var(--primary-500);
}
#funnel .radio-option input:checked ~ .radio-dot::after {
  content: ''; position: absolute; inset: 4px;
  background: #fff; border-radius: 50%;
}
#funnel .radio-option:has(input:checked) {
  border-color: var(--primary-500); background: var(--primary-50);
}
#funnel .radio-label {
  font-size: 15px; line-height: 1.4;
  color: var(--slate-700); flex: 1;
}
#funnel .radio-option:has(input:checked) .radio-label {
  color: var(--navy-900); font-weight: 600;
}

/* TRUST BLOCK */
#funnel .trust-block {
  background: var(--slate-50);
  padding: 20px;
  border-radius: var(--radius-md);
  margin-bottom: 28px;
  border-left: 3px solid var(--success);
}
#funnel .trust-block h3 { font-size: 15px; margin-bottom: 12px; color: var(--navy-900); }
#funnel .trust-block ul { list-style: none; padding: 0; margin: 0; }
#funnel .trust-block li {
  padding: 6px 0 6px 24px;
  font-size: 14px; color: var(--slate-700);
  position: relative; line-height: 1.5;
}
/* FIELD OTHER (textarea de "Outro") — oculto por padrão */
#funnel .field-other { display: none; margin-top: 12px; }
#funnel .field-other.visible { display: block; }

#funnel .trust-block li::before {
  content: '✓'; position: absolute; left: 0; top: 6px;
  color: var(--success); font-weight: 900;
}

/* FIELD ERRORS */
#funnel .field-error {
  display: none; margin-top: 8px;
  padding: 10px 12px; font-size: 13px;
  color: var(--danger); background: #FEE2E2;
  border-left: 3px solid var(--danger);
  border-radius: var(--radius-sm); line-height: 1.4;
}
#funnel .field-error.visible { display: block; }
#funnel .errors-summary {
  display: none; margin-bottom: 24px;
  padding: 16px; background: #FEE2E2;
  border: 2px solid var(--danger);
  border-radius: var(--radius-md);
  color: #7F1D1D;
}
#funnel .errors-summary.visible { display: block; }

/* NAV BUTTONS — alta especificidade pra anular .nav escura da home */
.funnel-modal-content #nav,
.funnel-modal-content .nav {
  display: flex !important;
  flex-direction: column-reverse !important;
  gap: 12px !important;
  margin-top: 32px !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  align-items: stretch !important;
  justify-content: stretch !important;
}

.funnel-modal-content #nav .btn,
.funnel-modal-content .nav .btn {
  width: 100% !important;
}

/* Respeitar o atributo [hidden] — a regra .btn { display:inline-block }
   tem especificidade maior que o [hidden]{display:none} do navegador e
   fazia o botão Voltar aparecer no passo 1. */
.funnel-modal-content .btn[hidden] { display: none !important; }

@media (min-width: 480px) {
  .funnel-modal-content #nav,
  .funnel-modal-content .nav {
    flex-direction: row !important;
    justify-content: space-between !important;
  }
  .funnel-modal-content #nav .btn,
  .funnel-modal-content .nav .btn {
    width: auto !important;
    min-width: 140px !important;
  }
  .funnel-modal-content #btn-next {
    flex: 1 !important;
    max-width: 320px !important;
    margin-left: auto !important;
  }
  .funnel-modal-content #btn-back {
    flex: 0 0 auto !important;
  }
  /* Passo 1: só o "Próximo" visível → centralizar (sem o Voltar) */
  .funnel-modal-content #nav:has(#btn-back[hidden]) {
    justify-content: center !important;
  }
  .funnel-modal-content #nav:has(#btn-back[hidden]) #btn-next {
    flex: 0 1 320px !important;
    margin-left: 0 !important;
  }
}

/* BTNS */
.funnel-modal-content .btn {
  display: inline-block;
  padding: 14px 20px;
  background: var(--primary-500);
  color: #fff !important;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  text-decoration: none;
  transition: background .15s ease, transform .15s ease;
  box-shadow: var(--shadow-md);
  font-family: inherit;
  line-height: 1.3;
}
.funnel-modal-content .btn:hover { background: var(--primary-600); }
.funnel-modal-content .btn:active { transform: translateY(1px); }
.funnel-modal-content .btn:disabled { opacity: .6; cursor: not-allowed; }

.funnel-modal-content .btn-secondary {
  background: transparent !important;
  color: var(--navy-900) !important;
  border: 2px solid var(--slate-300) !important;
  box-shadow: none !important;
}
.funnel-modal-content .btn-secondary:hover {
  border-color: var(--navy-900) !important;
  background: var(--slate-100) !important;
}

/* UTILS */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* ============================================================
   PART 2: funnel-theme.css (dark / orange iHelp theme)
   Loaded after funnel.css so overrides take effect.
   ============================================================ */
/* =============================================================
   iHelp — Funil · Tema dark/laranja (overlay no Nova Home)
   Re-skin do funnel.css original (que era light/navy) para a
   identidade visual do Nova Home: Geist, #FF6A2C, dark.
   Carregar DEPOIS de funnel.css.
   ============================================================= */

#funnel,
#funnel * {
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* OVERLAY — mais escuro, blur maior */
#funnel.funnel-modal {
  background: rgba(7, 9, 15, 0.78);
  backdrop-filter: blur(8px) saturate(140%);
  -webkit-backdrop-filter: blur(8px) saturate(140%);
}

/* MODAL CARD — dark glass */
#funnel .funnel-modal-content {
  background: linear-gradient(180deg, #0F1422 0%, #0B0E18 100%);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  box-shadow: 0 40px 100px -10px rgba(0,0,0,0.7),
              0 0 0 1px rgba(255,255,255,0.04) inset;
  color: #F5F6F7;
  padding: 40px 36px 28px;
  max-width: 580px;
}

#funnel .funnel-modal-close {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  color: #A0A6B4;
  top: 16px;
  right: 16px;
  width: 36px; height: 36px;
  font-size: 22px;
}
#funnel .funnel-modal-close:hover {
  background: rgba(255,255,255,0.12);
  color: #F5F6F7;
  border-color: rgba(255,255,255,0.20);
}

/* PROGRESS — laranja */
#funnel .progress {
  background: rgba(255,255,255,0.06);
  height: 4px;
  border-radius: 999px;
  margin-bottom: 6px;
}
#funnel .progress-bar {
  background: #FF6A2C;
  box-shadow: 0 0 12px rgba(255,106,44,0.6);
  border-radius: 999px;
  transition: width .4s cubic-bezier(.16,1,.3,1);
}
#funnel .progress-label {
  display: block;
  font-family: 'Geist Mono', ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #A0A6B4;
  margin: 10px 0 28px;
}

/* TITLES */
#funnel h2:not(.visually-hidden),
#funnel .step h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #F5F6F7;
  margin: 0 0 10px;
  text-wrap: balance;
}
#funnel .step-subtitle,
#funnel p {
  font-size: 14px;
  color: #A0A6B4;
  line-height: 1.55;
  margin-bottom: 24px;
}

/* LABELS */
#funnel label,
#funnel legend.field-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #F5F6F7;
  margin-bottom: 10px;
  letter-spacing: -0.005em;
}
#funnel .field-optional {
  color: #6B7280;
  font-weight: 400;
}
#funnel .required-mark {
  color: #FF6A2C;
  margin-left: 2px;
}
#funnel .field-hint {
  display: block;
  font-size: 12px;
  color: #6B7280;
  margin: -4px 0 10px;
}

/* INPUTS / SELECT / TEXTAREA */
#funnel input[type="text"],
#funnel input[type="email"],
#funnel input[type="tel"],
#funnel select,
#funnel textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  color: #F5F6F7;
  border-radius: 10px;
  padding: 13px 14px;
  font-size: 15px;
  transition: border-color .15s, background .15s, box-shadow .15s;
}
#funnel input::placeholder,
#funnel textarea::placeholder {
  color: #6B7280;
}
#funnel input:focus,
#funnel select:focus,
#funnel textarea:focus {
  outline: none;
  border-color: #FF6A2C;
  background: rgba(255,106,44,0.04);
  box-shadow: 0 0 0 3px rgba(255,106,44,0.18);
}
#funnel select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1l5 5 5-5' stroke='%23A0A6B4' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
#funnel select option {
  background: #0B0E18;
  color: #F5F6F7;
}

/* RADIO CARDS */
#funnel .radio-group {
  display: grid;
  gap: 8px;
}
#funnel .radio-option {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  transition: all .18s cubic-bezier(.16,1,.3,1);
  min-height: 52px;
}
#funnel .radio-option:hover {
  background: rgba(255,106,44,0.06);
  border-color: rgba(255,106,44,0.40);
  transform: translateY(-1px);
}
#funnel .radio-option .radio-dot {
  flex-shrink: 0;
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  margin-top: 2px;
  position: relative;
  transition: all .15s;
}
#funnel .radio-option input:checked ~ .radio-dot {
  border-color: #FF6A2C;
  background: #FF6A2C;
  box-shadow: 0 0 0 4px rgba(255,106,44,0.18);
}
#funnel .radio-option input:checked ~ .radio-dot::after {
  content: '';
  position: absolute;
  inset: 4px;
  background: #fff;
  border-radius: 50%;
}
#funnel .radio-option:has(input:checked) {
  background: rgba(255,106,44,0.08);
  border-color: #FF6A2C;
}
#funnel .radio-label {
  font-size: 14px;
  line-height: 1.45;
  color: #C5C9D2;
  flex: 1;
}
#funnel .radio-option:has(input:checked) .radio-label {
  color: #F5F6F7;
  font-weight: 600;
}

/* TEXTAREA "OUTRO" */
#funnel .field-other textarea {
  min-height: 70px;
  margin-top: 4px;
}

/* TRUST BLOCK */
#funnel .trust-block {
  background: rgba(255,106,44,0.06);
  border: 1px solid rgba(255,106,44,0.18);
  border-left: 3px solid #FF6A2C;
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 26px;
}
#funnel .trust-block h3 {
  font-size: 14px;
  font-weight: 600;
  color: #F5F6F7;
  margin: 0 0 10px;
}
#funnel .trust-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#funnel .trust-block li {
  padding: 5px 0 5px 22px;
  font-size: 13px;
  color: #C5C9D2;
  line-height: 1.5;
  position: relative;
}
#funnel .trust-block li::before {
  content: '✓';
  color: #FF6A2C;
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 5px;
}

/* FIELD ERRORS */
#funnel .field-error {
  background: rgba(220, 38, 38, 0.10);
  border-left: 3px solid #DC2626;
  color: #FCA5A5;
  border-radius: 6px;
  font-size: 13px;
  padding: 9px 12px;
  margin-top: 8px;
}
#funnel .errors-summary {
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.30);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 22px;
  color: #FCA5A5;
}
#funnel .errors-summary h3 {
  font-size: 13px;
  font-weight: 600;
  color: #FCA5A5;
  margin: 0 0 6px;
}
#funnel .errors-summary ul {
  margin: 0;
  padding-left: 18px;
  font-size: 12px;
  line-height: 1.5;
}

/* NAV BUTTONS — neutraliza o .nav global da home (que é fixed/top:0)
   e força o comportamento esperado pelo funnel.css upstream */
.funnel-modal-content #nav,
.funnel-modal-content .nav {
  position: static !important;
  inset: auto !important;
  top: auto !important; left: auto !important; right: auto !important;
  width: auto !important;
  z-index: auto !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  background: transparent !important;
  border: 0 !important;
  border-top: 1px solid rgba(255,255,255,0.06) !important;
  padding: 22px 0 0 !important;
  margin: 28px 0 0 !important;
  display: flex !important;
  flex-direction: row !important;
  gap: 12px !important;
  justify-content: space-between !important;
  align-items: center !important;
}
@media (max-width: 479px) {
  .funnel-modal-content #nav,
  .funnel-modal-content .nav {
    flex-direction: column-reverse !important;
    align-items: stretch !important;
  }
  .funnel-modal-content #nav .btn,
  .funnel-modal-content .nav .btn {
    width: 100% !important;
  }
}
.funnel-modal-content .btn {
  background: #FF6A2C !important;
  border-radius: 999px !important;
  font-family: 'Geist', sans-serif !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  letter-spacing: -0.005em !important;
  padding: 14px 28px !important;
  box-shadow: 0 10px 30px -10px rgba(255,106,44,0.6) !important;
  transition: background .15s, transform .18s cubic-bezier(.16,1,.3,1), box-shadow .25s !important;
  height: 48px !important;
}
.funnel-modal-content .btn:hover:not(:disabled) {
  background: #E5491B !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 14px 36px -8px rgba(255,106,44,0.7) !important;
}
.funnel-modal-content .btn:active:not(:disabled) {
  transform: translateY(0) !important;
}
.funnel-modal-content .btn:disabled,
.funnel-modal-content .btn.loading {
  opacity: 0.7;
  cursor: progress;
}
.funnel-modal-content .btn-secondary {
  background: transparent !important;
  border: 1px solid rgba(255,255,255,0.16) !important;
  color: #F5F6F7 !important;
  box-shadow: none !important;
}
.funnel-modal-content .btn-secondary:hover {
  background: rgba(255,255,255,0.04) !important;
  border-color: rgba(255,255,255,0.30) !important;
  transform: translateY(-1px) !important;
}

/* SUCCESS SCREEN (fallback in-modal) */
#funnel .success {
  text-align: center;
  padding: 8px 0;
}
#funnel .success-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  border-radius: 50%;
  font-size: 36px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 16px 40px -8px rgba(34,197,94,0.5);
}
#funnel .success-subtitle {
  margin-bottom: 24px;
}
#funnel .success-steps {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#funnel .success-step {
  display: flex; gap: 14px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
}
#funnel .success-step-number {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,106,44,0.14);
  color: #FF6A2C;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px;
}
#funnel .success-step h3 {
  font-size: 14px;
  margin: 2px 0 4px;
}
#funnel .success-step p {
  font-size: 13px;
  margin: 0;
}
#funnel .success-footer {
  font-size: 13px;
  color: #A0A6B4;
  font-style: italic;
  margin-top: 20px;
}
#funnel .success-share {
  font-size: 12px;
  color: #6B7280;
  margin-top: 10px;
}

/* DISQUALIFY SCREEN */
#funnel .disqualify {
  padding: 12px 0;
}
#funnel .disqualify-text {
  margin-bottom: 22px;
}
#funnel .disqualify-alt {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 22px 22px 24px;
  text-align: center;
}
#funnel .disqualify-alt h3 {
  font-size: 15px;
  margin: 0 0 10px;
  color: #F5F6F7;
}
#funnel .disqualify-alt p {
  font-size: 13px;
  margin-bottom: 16px;
}
#funnel .disqualify-alt .btn {
  display: inline-block !important;
  text-decoration: none !important;
}

/* MOBILE */
@media (max-width: 560px) {
  #funnel .funnel-modal-content {
    padding: 32px 22px 20px;
    border-radius: 18px;
    max-height: 96vh;
  }
  #funnel h2:not(.visually-hidden) { font-size: 21px; }
  #funnel .funnel-modal-close { top: 12px; right: 12px; }
}

/* VISUALLY HIDDEN */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
