/* ===========================================================
   aspira AI — Product School Landing Page
   Design tokens sourced from Figma (dark theme, purple gradient)
   =========================================================== */

:root{
  --bg: #0b0b0f;
  --surface: rgba(20,20,26,0.85);
  --surface-solid: #14141a;
  --border: #24242d;
  --border-purple: rgba(93,0,210,0.18);
  --border-purple-strong: rgba(93,0,210,0.25);

  --text-white: #ffffff;
  --text-secondary: #c4c4cc;
  --text-muted: #8d8d98;

  --purple-1: #5d00d2;
  --purple-2: #7c3aed;
  --purple-3: #9f67ff;
  --green: #00e676;
  --cyan: #3be8ff;
  --red: #ef4444;

  --gradient: linear-gradient(135deg, var(--purple-1) 0%, var(--purple-2) 50%, var(--purple-3) 100%);

  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'Space Grotesk', sans-serif;

  --container-max: 1280px;
  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 10px;
}

*{ box-sizing: border-box; margin:0; padding:0; }

html{
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body{
  background: var(--bg);
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
}

a{ color: inherit; text-decoration: none; }
button{ font-family: inherit; cursor: pointer; }
ul{ list-style: none; }
img{ display:block; max-width:100%; }

.container{
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 48px;
}

.grad-text{
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ===================== REVEAL ANIMATION ===================== */
.reveal{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity: 1; transform: none; transition: none; }
}

/* ===================== GLASS CARD ===================== */
.glass-card{
  background: var(--surface);
  border: 1.333px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}

/* ===================== BUTTONS ===================== */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  border: none;
  border-radius: var(--radius-md);
  white-space: nowrap;
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.btn--primary{
  background: var(--gradient);
  color: var(--text-white);
  box-shadow: 0 4px 10px rgba(93,0,210,0.3);
}
.btn--primary:hover{ filter: brightness(1.08); transform: translateY(-2px); }
.btn--sm{
  padding: 13px 28px;
  font-size: 15px;
  letter-spacing: -0.15px;
}
.btn--lg{
  padding: 18px 40px;
  font-size: 17px;
  letter-spacing: -0.17px;
}
.btn--block{ width: 100%; }
.btn--xs{
  padding: 11px 14px;
  font-size: 12.5px;
  letter-spacing: -0.1px;
}
.btn--outline{
  background: transparent;
  border: 1.333px solid var(--border);
  color: var(--text-white);
  box-shadow: none;
}
.btn--outline:hover{ filter: none; border-color: var(--purple-3); }

/* ===================== NAV ===================== */
.nav{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11,11,15,0.94);
  border-bottom: 1.333px solid var(--border);
  backdrop-filter: blur(10px);
  transition: transform .3s ease;
}
.nav__inner{
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 16px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo{
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.88px;
}
.nav__logo img{
  height:40px;
}
.nav__links{
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__links a:not(.btn){
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  transition: color .15s ease;
}
.nav__links a:not(.btn):hover{ color: var(--text-white); }

/* ===================== HERO ===================== */
.hero{
  padding: 70px 48px 100px;
  max-width: var(--container-max);
  margin: 0 auto;
}
.hero__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(93,0,210,0.06);
  border: 1.333px solid var(--border-purple-strong);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.pill__dot{
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--purple-3);
  opacity: .95;
}
.hero__title{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 60px;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 32px;
}
.hero__title span{ display: block; }
.hero__subhead{ margin-bottom: 32px; }
.hero__lede{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
}
.hero__desc{
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 440px;
  margin-top: 10px;
}

.qualify-card{
  padding: 20px 24px;
  background: rgba(93,0,210,0.06);
  border: 1.333px solid var(--border-purple);
  margin-bottom: 32px;
}
.eyebrow-tag{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: var(--purple-3);
  margin-bottom: 14px;
}
.check-list li{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  padding: 7px 0;
}
.check-list--lg li{ font-size: 15px; padding: 12px 0; }
.tick{ color: var(--green); font-size: 13px; flex-shrink: 0; }
.qualify-card__note{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  border-top: 1.333px solid rgba(93,0,210,0.15);
  padding-top: 14px;
  margin-top: 14px;
}
.micro-note{
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 14px;
}
.micro-note--center{ text-align: center; }

.hero__visual{ position: relative; height: 580px; }
.hero-photo{
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: var(--surface-solid);
  box-shadow: 0 0 60px rgba(93,0,210,0.3), 0 24px 64px rgba(0,0,0,0.5);
}
.hero-illustration{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.hero-photo__overlay{
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,11,15,0.6), rgba(11,11,15,0) 45%);
}

.float-card{
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}
.float-card--bl{ left: -20px; bottom: 40px; }
.float-card--tr{ right: -20px; top: 20px; padding: 14px 20px; }
.float-card--mr{ right: 40px; bottom: 100px; }
.float-card__title{ font-family: var(--font-display); font-weight: 700; font-size: 13px; }
.float-card__sub{ font-size: 11px; color: var(--text-muted); margin-top: 3px; }
.float-card__sub--green{ color: var(--green); }
.dot{ width: 8px; height: 8px; border-radius: 4px; flex-shrink: 0; }
.dot--green{ background: var(--green); box-shadow: 0 0 8px var(--green); }
.dot--cyan{ background: var(--cyan); opacity: .8; box-shadow: 0 0 7px var(--cyan); }
.stat-card{ flex-direction: column; align-items: center; text-align: center; }
.stat-card__num{
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 28px;
}
.stat-card__label{ font-size: 11px; color: var(--text-muted); margin-top: 4px; }

/* ===================== COMPANY TICKER ===================== */
.ticker{
  padding: 30px 0;
  border-top: 1.333px solid var(--border);
  border-bottom: 1.333px solid var(--border);
}
.ticker__label{
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.ticker__track-wrap{
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.ticker__track{
  display: flex;
  gap: 56px;
  width: max-content;
  animation: ticker-scroll 32s linear infinite;
}
.ticker__track span{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--text-muted);
  white-space: nowrap;
}
@keyframes ticker-scroll{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce){
  .ticker__track{ animation: none; }
}

/* ===================== SECTION COMMON ===================== */
.section{ padding: 120px 48px; }
.section-head{ max-width: 700px; margin-bottom: 64px; }
.eyebrow{
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--purple-3);
  margin-bottom: 16px;
}
.eyebrow--center{ justify-content: center; }
.eyebrow__line{ width: 20px; height: 1px; background: var(--purple-3); display: inline-block; }
.h2{
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 40px;
  line-height: 1.08;
  letter-spacing: -1.6px;
}
.section-lede{
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-top: 20px;
}

/* ===================== RESULTS ===================== */
/* ===================== VIDEO REELS ===================== */
.reels-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
.reel-card{
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.333px solid var(--border);
  background: #000;
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}
.reel-card__frame{
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
}
.reel-card__iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none; /* tapping the card toggles sound; iframe itself isn't interactive */
}
.reel-card__sound{
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.333px solid rgba(255,255,255,0.25);
  background: rgba(11,11,15,0.55);
  backdrop-filter: blur(6px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s ease, transform .15s ease;
}
.reel-card__sound:hover{ background: rgba(11,11,15,0.75); }
.reel-card__sound:active{ transform: scale(0.92); }
.reel-card__sound .icon-unmuted{ display: none; }
.reel-card.is-unmuted .reel-card__sound .icon-muted{ display: none; }
.reel-card.is-unmuted .reel-card__sound .icon-unmuted{ display: block; }
.reel-card.is-unmuted{ border-color: var(--purple-3); }

.results-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.result-card{
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.result-card__head{
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 18px;
}
.avatar{
  width: 48px; height: 48px;
  border-radius: 24px;
  border: 1.333px solid var(--border);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--surface-solid);
}
.avatar img{ width: 100%; height: 100%; }
.avatar svg{ display: block; width: 100%; height: 100%; }
.result-card__name{ font-family: var(--font-display); font-weight: 700; font-size: 14px; }
.result-card__meta{ font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.result-card__quote{
  font-style: italic;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  flex: 1;
  padding-bottom: 20px;
}
.result-card__foot{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  border-top: 1.333px solid var(--border);
  padding-top: 16px;
}
.result-card__role{ font-size: 12px; color: var(--text-muted); }
.result-card__company{ font-family: var(--font-display); font-weight: 700; font-size: 14px; margin-top: 2px; }
.result-card__pkg{ font-family: var(--font-mono); font-weight: 700; font-size: 22px; white-space: nowrap; }

/* ===================== TRUST ===================== */
.trust-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}
.trust-card{
  padding: 37px 25px;
  text-align: center;
}
.trust-card__num{ font-family: var(--font-mono); font-weight: 700; font-size: 40px; }
.trust-card__label{ font-family: var(--font-display); font-weight: 600; font-size: 15px; margin-top: 16px; }
.trust-card__sub{ font-size: 13px; color: var(--text-muted); margin-top: 8px; }

.trust-features{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 40px;
  max-width: 100%;
}
.trust-feature{
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; color: var(--text-secondary);
}
.trust-feature .tick{ font-size: 15px; }

/* ===================== PROBLEM ===================== */
.problem-grid{
  display: grid;
  grid-template-columns: 552fr 552fr;
  gap: 80px;
}
.problem-callout{
  padding: 29px;
  margin-top: 36px;
}
.problem-callout__title{ font-family: var(--font-display); font-weight: 700; font-size: 20px; }
.problem-callout__desc{ font-size: 15px; color: var(--text-muted); line-height: 1.6; margin-top: 14px; }

.problem-list{ display: flex; flex-direction: column; gap: 12px; padding-top: 80px; }
.problem-row{
  padding: 21px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.problem-row__no{ font-family: var(--font-display); font-weight: 600; font-size: 15px; display:flex; align-items:center; gap:10px; }
.problem-row__yes{ font-size: 14px; color: var(--text-secondary); padding-left: 24px; }
.x-mark{ color: var(--red); }

/* ===================== HOW IT WORKS ===================== */
.phase-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.phase-card{ padding: 41px; }
.phase-card__phase{ font-size: 13px; color: var(--purple-3); font-family: var(--font-display); font-weight: 700; letter-spacing: 0.5px; }
.phase-card__title{ font-family: var(--font-display); font-weight: 800; font-size: 26px; margin-top: 8px; }
.phase-card__duration{
  display: inline-block;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 14px;
}
.phase-card__desc{ font-size: 15px; color: var(--text-muted); line-height: 1.6; margin-top: 16px; }
.tag-row{ display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.tag{
  border: 1.333px solid var(--border);
  border-radius: 100px;
  padding: 6px 13px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--text-secondary);
}

/* ===================== INVESTMENT ===================== */
.investment-grid{
  display: grid;
  grid-template-columns: 525fr 578fr;
  gap: 80px;
  align-items: center;
}
.investment-grid .section-lede{ max-width: 100%; margin-bottom: 32px; }
.investment-grid .btn{ margin-top: 8px; }
.investment-card{ padding: 41px; }
.investment-card__pricing{
  display: flex;
  align-items: center;
  gap: 40px;
  padding-bottom: 22px;
}
.investment-card__pricing--single .investment-card__value{ font-size: 44px; }
.investment-card__label{ font-size: 13px; color: var(--text-muted); }
.investment-card__value{
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  margin-top: 6px;
}
.investment-card__value--sm{ font-size: 24px; }
.investment-card__note{ font-size: 12px; color: var(--text-muted); margin-top: 6px; }
.investment-card__divider{ width: 1px; height: 48px; background: var(--border); }
.investment-card__includes{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  padding: 18px 0;
  border-top: 1.333px solid var(--border);
}
.investment-list li{
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; color: var(--text-secondary);
  padding: 13px 0;
}
.check-badge{
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(0,230,118,0.12);
  color: var(--green);
  font-size: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ===================== ELIGIBILITY / FORM ===================== */
.eligibility-grid{
  display: grid;
  grid-template-columns: 460fr 644fr;
  gap: 80px;
  align-items: flex-start;
}
.form-card{ padding: 44px; }
.form-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.form-field label{
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 7px;
}
.form-field input{
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1.333px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color .15s ease, background .15s ease;
}
.form-field input::placeholder{ color: rgba(255,255,255,0.5); }
.form-field input:focus{
  outline: none;
  border-color: var(--purple-3);
  background: rgba(159,103,255,0.06);
}
.form-field--full{ margin-bottom: 18px; }

.mode-toggle{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 7px;
}
.mode-btn{
  border: 1.333px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  transition: all .15s ease;
}
.mode-btn.is-active{
  background: var(--gradient);
  color: var(--text-white);
  border-color: transparent;
}

.form-card .btn--block{ margin-top: 14px; }

.form-success{ text-align: center; padding: 40px 0; }
.form-success__title{ font-family: var(--font-display); font-weight: 800; font-size: 24px; margin-bottom: 12px; }
.form-success__desc{ color: var(--text-muted); font-size: 15px; }

/* ===================================================================
   BIGIN WEB-TO-RECORD FORM — THEME OVERRIDE
   bigin.css ships Zoho's default light-theme styling; these rules
   re-skin the embedded form to match the aspira dark / purple-gradient
   theme. bigin.css is loaded BEFORE this file in <head>, so these
   rules win on the cascade without needing !important.
   =================================================================== */
.wf-parent{ padding: 0; background: transparent; overflow: visible; height: auto; }
.wf-wrapper{
  max-width: 100% !important;
  width: 100% !important;
  border: none;
  box-shadow: none;
  color: var(--text-secondary);
}
.wf-form-component{ padding: 0 !important; }

.wf-label{
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font-body);
  padding: 0 0 7px;
}

.wf-field-input,
.wf-field-dropdown,
.wf-field-dropdown-date,
.wform-field-item-upload-input{
  background: rgba(255,255,255,0.04) !important;
  border: 1.333px solid var(--border) !important;
  border-radius: var(--radius-sm) !important;
  color: var(--text-white) !important;
  font-family: var(--font-body);
  font-size: 15px;
  padding: 13px 16px;
  min-height: unset;
  transition: border-color .15s ease, background .15s ease;
}
.wf-field-input::placeholder{ color: rgba(255,255,255,0.45); }
.wf-field-input:focus,
.wf-field-dropdown-date:hover{
  border-color: var(--purple-3) !important;
  background: rgba(159,103,255,0.06) !important;
  outline: none;
}
select.wf-field-dropdown{ color: var(--text-white); background-color: transparent !important; }
/* native option list keeps OS rendering (dark text / light row) so it stays legible */
select.wf-field-dropdown option{ color: #111; background: #fff; }

.dropdown-contents::after{ border-top-color: var(--text-muted); }

.wf-field-mandatory .wf-field-inner::before{ background-color: var(--purple-3); }

.wf-field-help-text{ color: var(--text-muted); font-size: 12.5px; }
.wf-field-error{ color: #ff8a8a; }
.wf-error-view-more{ color: var(--purple-3); }
.wf-field-error-active.wf-field .wf-field-input:not(.date-input-container .wf-field-input),
.wf-field-error-active.wf-field .wf-field-dropdown,
.wf-field-error-active .date-input-container{
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 1px rgba(239,68,68,0.25);
}

/* Mobile number / country-code picker */
.multiselect.wf-field-dropdown{ background: rgba(255,255,255,0.04) !important; padding: 0; }
.multiselect .dropdown-input{ color: var(--text-white); }
.content-display-area{
  color: var(--text-white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dropdown-menu{
  background: var(--surface-solid);
  border: 1.333px solid var(--border);
  color: var(--text-secondary);
  box-shadow: 0 12px 32px rgba(0,0,0,0.45);
  /* Never let the country list stretch wider than the viewport
     on narrow phones (its default 30rem can exceed a 320-400px
     screen and get clipped by the page's overflow-x guard). */
  max-width: min(30rem, calc(100vw - 48px));
}
.dropdown-menu .dropdown-search-input{
  background: rgba(255,255,255,0.05);
  border: 1.333px solid var(--border);
  color: var(--text-white);
}
.option{ border-bottom: 1px solid var(--border); color: var(--text-secondary); }
.option:hover{ background-color: rgba(159,103,255,0.14); }
.ux-pick-mixed .dropdown-menu .option[data-selected='true']{ background-color: rgba(159,103,255,0.18); }
.no-results{ color: var(--text-muted); }
.multi-tag{ background-color: rgba(159,103,255,0.18); color: var(--text-white); }

/* Keep the flag/dial-code cell (field-1) at a fixed, comfortably
   readable width and let the number input (field-2) absorb the
   rest, instead of the vendor's 1:5 flex ratio which can squeeze
   field-1 too narrow on small phones. */
.ux-pick-mixed.multiple-fields-div .wf-field-inner{ flex-wrap: nowrap; }
.ux-pick-mixed.multiple-fields-div .field-1{ flex: 0 0 78px; min-width: 78px; }
.ux-pick-mixed.multiple-fields-div .field-2{ flex: 1 1 auto; min-width: 0; }

.wf-field-checkbox{ accent-color: var(--purple-3); }

.wform-poweredby-container{
  background-color: rgba(20,20,26,0.9);
  border: 1.333px solid var(--border);
}

.wform-btn-wrap{ margin-top: 8px; }
.wf-btn.btn--primary{ height: 54px !important; }

/* ===================== FAQ ===================== */
.faq-section{
  background: linear-gradient(to bottom, rgba(93,0,210,0), rgba(93,0,210,0.04) 50%, rgba(93,0,210,0));
}
.not-for-everyone{ padding: 28px; margin-top: 40px; }
.not-for-everyone__title{ font-family: var(--font-display); font-weight: 700; font-size: 15px; }
.not-for-everyone__sub{ font-size: 13px; color: var(--text-muted); margin-top: 16px; }
.x-list li{
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--text-secondary);
  padding: 10px 0;
}

.faq-list{ padding-top: 8px; }
.faq-item{ border-bottom: 1.333px solid var(--border); }
.faq-item__q{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.425px;
  padding: 24px 0;
  text-align: left;
}
.faq-item.is-open .faq-item__q{ color: var(--text-white); }
.faq-item__icon{
  font-size: 22px;
  color: var(--text-muted);
  font-weight: 400;
  transition: transform .2s ease;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.is-open .faq-item__icon{ transform: rotate(45deg); color: var(--purple-3); }
.faq-item__a{
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
}
.faq-item__a p{
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  padding-bottom: 24px;
}
.faq-item.is-open .faq-item__a{ max-height: 200px; }

/* ===================== FINAL CTA ===================== */
.final-cta{
  position: relative;
  padding: 80px 48px;
  overflow: hidden;
}
.final-cta__glow{
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.final-cta__glow--1{
  width: 500px; height: 500px;
  background: rgba(93,0,210,0.25);
  top: -120px; left: 15%;
}
.final-cta__glow--2{
  width: 360px; height: 360px;
  background: rgba(59,232,255,0.15);
  bottom: -80px; right: 10%;
}
.final-cta__inner{
  position: relative;
  text-align: center;
  max-width: 1000px;
}
.final-cta__title{
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 48px;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin: 16px 0 24px;
}
.final-cta__title span{ display: block; }
.final-cta__lede{ font-family: var(--font-display); font-weight: 600; font-size: 18px; }
.final-cta__desc{ color: var(--text-muted); font-size: 16px; margin: 8px 0 32px; }

.final-cta__actions{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}
.btn--whatsapp{
  background: #25D366;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(37,211,102,0.3);
  gap: 10px;
}
.btn--whatsapp:hover{ filter: brightness(1.06); transform: translateY(-2px); }
.btn--whatsapp svg{ flex-shrink: 0; }

/* ===================== FLOATING WHATSAPP BUTTON ===================== */
.whatsapp-float{
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 190;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35), 0 0 0 0 rgba(37,211,102,0.5);
  transition: transform .25s ease, opacity .25s ease, box-shadow .2s ease;
  /* Hidden until script.js reveals it (after a 5s delay) */
  opacity: 0;
  transform: scale(0.5) translateY(16px);
  pointer-events: none;
}
.whatsapp-float.is-visible{
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
  animation: whatsapp-pulse 2.4s ease-out 1;
}
.whatsapp-float:hover{
  transform: scale(1.06) translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.4);
}
@keyframes whatsapp-pulse{
  0%{ box-shadow: 0 8px 24px rgba(0,0,0,0.35), 0 0 0 0 rgba(37,211,102,0.55); }
  70%{ box-shadow: 0 8px 24px rgba(0,0,0,0.35), 0 0 0 16px rgba(37,211,102,0); }
  100%{ box-shadow: 0 8px 24px rgba(0,0,0,0.35), 0 0 0 0 rgba(37,211,102,0); }
}
@media (prefers-reduced-motion: reduce){
  .whatsapp-float.is-visible{ animation: none; }
}

/* Sit above the mobile sticky CTA bar instead of overlapping it */
@media (max-width: 960px){
  .whatsapp-float{
    right: 16px;
    bottom: 88px;
    width: 52px;
    height: 52px;
  }
  body.has-sticky-cta .whatsapp-float{ bottom: 88px; }
}
@media (max-width: 400px){
  .whatsapp-float{ right: 14px; bottom: 82px; width: 48px; height: 48px; }
  .whatsapp-float svg{ width: 24px; height: 24px; }
}

/* ===================== MOBILE STICKY CTA BAR ===================== */
.mobile-sticky-cta{
  display: none;
}

/* ===================== FOOTER ===================== */
.footer{ border-top: 1.333px solid var(--border); }
.footer__inner{
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__logo{ font-family: var(--font-display); font-weight: 800; font-size: 20px; }
.footer__logo img{ height:36px;}
.footer__logo-sub{ font-family: var(--font-body); font-weight: 400; font-size: 14px; color: var(--text-muted); margin-left: 6px; }
.footer__links{ display: flex; gap: 24px; font-size: 14px; color: var(--text-muted); }
.footer__copy{ font-size: 14px; color: var(--text-muted); }

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 1100px){
  .results-grid,
  .reels-grid{ grid-template-columns: repeat(2, 1fr); }
  .trust-grid{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px){
  .container{ padding: 0 24px; }
  .section{ padding: 80px 24px; }
  .hero{ padding: 120px 24px 60px; }
  .nav__inner{ padding: 16px 24px; }

  /* Reels become a one-at-a-time, swipeable horizontal carousel
     on mobile; script.js auto-advances it every few seconds. */
  .reels-grid{
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    margin: 0 -24px 20px;
    padding: 0 24px;
    scrollbar-width: none;
  }
  .reels-grid::-webkit-scrollbar{ display: none; }
  .reel-card{
    flex: 0 0 100%;
    scroll-snap-align: center;
    max-width: 320px;
  }

  .hero__grid{ grid-template-columns: 1fr; gap: 48px; }
  .hero__visual{ height: 420px; order: -1; }
  .hero__title{ font-size: 42px; letter-spacing: -1.6px; }

  .problem-grid,
  .investment-grid,
  .eligibility-grid{ grid-template-columns: 1fr; gap: 40px; }
  .problem-list{ padding-top: 0; }

  .phase-grid{ grid-template-columns: 1fr; }
  .trust-features{ grid-template-columns: 1fr 1fr; gap: 16px 32px; }

  .h2{ font-size: 32px; letter-spacing: -1.2px; }
  .final-cta__title{ font-size: 34px; }

  /* No hamburger menu on mobile — nav collapses to logo only,
     primary actions live in the fixed bottom bar instead. */
  .nav__links{ display: none; }

  /* Header hides as soon as the sticky bottom CTA bar appears
     (i.e. once the visitor scrolls past the hero), so the two
     never compete for space on small screens. */
  .nav.nav--hidden{ transform: translateY(-100%); }

  .mobile-sticky-cta{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
    padding: 12px 16px;
    background: rgba(11,11,15,0.97);
    border-top: 1.333px solid var(--border);
    backdrop-filter: blur(10px);
    transform: translateY(100%);
    transition: transform .3s ease;
  }
  .mobile-sticky-cta.is-visible{ transform: translateY(0); }
  .mobile-sticky-cta__logo{
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 16px;
    letter-spacing: -0.6px;
    flex-shrink: 0;
  }
   .mobile-sticky-cta__logo img {height:28px;}
  .mobile-sticky-cta__actions{
    display: flex;
    gap: 8px;
    min-width: 0;
  }
  .mobile-sticky-cta .btn{ white-space: nowrap; }

  body.has-sticky-cta{ padding-bottom: 68px; }
}

@media (max-width: 640px){
  .results-grid,
  .trust-grid{ grid-template-columns: 1fr; }
  .trust-features{ grid-template-columns: 1fr; }
  .hero__title{ font-size: 34px; }
  .form-grid{ grid-template-columns: 1fr; }
  .mode-toggle{ grid-template-columns: 1fr; }
  .investment-card__pricing{ flex-wrap: wrap; gap: 24px; }
  .footer__inner{ flex-direction: column; align-items: flex-start; text-align: left; }
}

/* ===================== 360px / 320px SMALL MOBILE ===================== */
@media (max-width: 400px){
  .container{ padding: 0 8px; }
  .section{ padding: 56px 16px; }

  .reels-grid{ margin: 0 -8px 16px; padding: 0 8px; }
  .reel-card{ max-width: 280px; }

  /* Bigin form: stay comfortably usable down to 320px */
  .form-card{ padding: 14px !important; }
  .eligibility-grid{ gap: 32px; }
  .wf-field-input,
  .wf-field-dropdown{ padding: 11px 12px; font-size: 14px; }
  .wf-label{ font-size: 12.5px; }
  .wf-field-help-text{ font-size: 11px; }
  .wf-field-error{ font-size: 12.5px; }

  .ux-pick-mixed.multiple-fields-div .field-1{ flex-basis: 60px; min-width: 60px; }
  .content-display-area{ font-size: 12px; margin-right: 4px !important; }
  .multiselect .dropdown-input{ font-size: 14px; }
  .mR10{ margin-right: 4px !important; }

  .wform-btn-wrap{ margin-top: 20px; }
  .wf-btn.btn--primary{ height: 50px !important; font-size: 13.5px; padding: 10px 12px !important; }

  .hero{ padding: 96px 16px 40px; }
  .final-cta__actions{ flex-direction: column; width: 100%; }
  .final-cta__actions .btn{ width: 100%; }
  .nav__inner{ padding: 14px 16px;}

  .nav__logo{ font-size: 19px; }

  .pill{ font-size: 11.5px; padding: 5px 12px; }
  .hero__title{ font-size: 28px; letter-spacing: -1.1px; margin-bottom: 24px; }
  .hero__lede{ font-size: 16px; }
  .hero__desc{ font-size: 14px; max-width: 100%; }
  .qualify-card{ padding: 16px 18px; }
  .check-list li{ font-size: 13px; }

  .btn--lg{ padding: 15px 20px; font-size: 14px; width: 100%; }

  .hero__visual{ height: 300px; }
  .float-card{ padding: 10px 12px; }
  .float-card--tr{ right: -8px; top: 12px; }
  .float-card--bl{ left: -8px; bottom: 16px; }
  .float-card--mr{ right: 8px; bottom: 60px; }
  .float-card__title{ font-size: 11.5px; }
  .stat-card__num{ font-size: 22px; }

  .ticker__track span{ font-size: 15px; }
  .ticker__track{ gap: 36px; }

  .eyebrow{ font-size: 11px; }
  .h2{ font-size: 24px; letter-spacing: -0.9px; }
  .section-lede{ font-size: 14px; }
  .section-head{ margin-bottom: 40px; }

  .result-card,
  .trust-card,
  .problem-callout,
  .problem-row,
  .phase-card,
  .investment-card,
  .form-card,
  .not-for-everyone{ padding: 18px; }

  .result-card__quote{ font-size: 13px; }
  .result-card__pkg{ font-size: 18px; }

  .trust-card__num{ font-size: 30px; }
  .trust-features{ gap: 14px; }

  .problem-row{ flex-direction: column; align-items: flex-start; gap: 6px; }
  .problem-row__yes{ padding-left: 24px; }

  .phase-card__title{ font-size: 21px; }
  .tag{ font-size: 12px; padding: 5px 11px; }

  .investment-card__pricing{ gap: 20px; }
  .investment-card__value{ font-size: 26px; }
  .investment-card__pricing--single .investment-card__value{ font-size: 34px; }
  .investment-card__divider{ display: none; }

  .form-field input{ padding: 11px 14px; font-size: 14px; }
  .mode-btn{ padding: 11px; font-size: 13px; }

  .faq-item__q{ font-size: 15px; padding: 18px 0; }
  .faq-item__icon{ font-size: 19px; }

  .final-cta{ padding: 56px 16px; }
  .final-cta__title{ font-size: 24px; letter-spacing: -0.8px; }
  .final-cta__lede{ font-size: 16px; }
  .final-cta__desc{ font-size: 14px; }

  .footer__inner{ padding: 28px 16px; }
  .footer__logo{ font-size: 17px; }
  .footer__links{ gap: 14px; font-size: 12.5px; }
  .footer__copy{ font-size: 12px; }

  .mobile-sticky-cta{ padding: 10px 12px; }
  .mobile-sticky-cta__logo{ font-size: 14px; }
  .mobile-sticky-cta .btn--xs{ padding: 9px 10px; font-size: 11px; }
}
