/* =========================
   Global + Theme
========================= */
:root{
  --bg0:#06131f;
  --bg1:#071827;
  --bg2:#050f17;

  --cta: #32f5c6;
--ctaText: #042016;

/* Primary form CTA – clearer, calmer, more prominent */
.form .btn--primary{
  width: 100%;
  margin-top: 16px;
  padding: 14px 18px;               /* more vertical height */
  font-size: 1rem;
  font-weight: 800;

  background: #15A9BD;
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.96);

  box-shadow: 0 12px 28px rgba(0,0,0,.28);
}

.form .btn--primary:hover{
  background: #19B8CE;
  box-shadow: 0 16px 36px rgba(0,0,0,.34);
}

.form .btn--primary:active{
  transform: translateY(1px);
}

.is-invalid{
  border-color: rgba(255,110,110,.85) !important;
  box-shadow: 0 0 0 6px rgba(255,110,110,.12) !important;
}



  --panel: rgba(255,255,255,.06);
  --panel2: rgba(255,255,255,.09);
  --stroke: rgba(255,255,255,.14);

  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.72);
  --muted2: rgba(255,255,255,.62);
  --white: #fff;

  --accent: #15A9BD;
  --accent2: #0d3369;

  --good: rgba(54, 255, 175, .16);
  --bad: rgba(255, 110, 110, .14);

  --shadow: 0 25px 70px rgba(0,0,0,.45);
  --shadow2: 0 18px 45px rgba(0,0,0,.35);

  --radius: 18px;
  --radius2: 14px;

  --max: 1180px;
}

*{box-sizing:border-box}
html,body{height:100%}

body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  line-height:1.55;

  /* One continuous background, no section resets */
  background:
    radial-gradient(1200px 700px at 14% 8%, rgba(21,169,189,.33), transparent 60%),
    radial-gradient(1100px 650px at 86% 18%, rgba(13,51,105,.55), transparent 58%),
    radial-gradient(900px 600px at 50% 92%, rgba(21,169,189,.10), transparent 55%),
    linear-gradient(180deg, var(--bg0) 0%, var(--bg1) 45%, var(--bg2) 100%);
  background-attachment: fixed;
}

a{color:inherit}
img{max-width:100%; display:block}
.wrap{max-width:var(--max); margin:0 auto; padding: 0 22px;}
.hidden{display:none}

.skip-link{
  position:absolute; left:-999px; top:auto;
  width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  left:18px; top:18px; width:auto; height:auto;
  background:#fff; color:#000; padding:10px 12px; border-radius:10px;
  z-index:9999;
}

.cred{
  margin: 10px 0 14px;
  padding: 14px 14px;
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.04));
}
.cred__title{
  font-weight: 900;
  letter-spacing: -.01em;
  margin-bottom: 4px;
}
.cred__text{
  color: var(--muted);
  margin: 0;
}
.cred__note{
  margin-top: 8px;
  color: var(--muted2);
  font-size: .88rem;
}


/* =========================
   Top bar (non-sticky)
========================= */
.topbar{
  position: relative;
  background: rgba(6,18,29,.55);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding: 16px 0;
  gap: 16px;
}
.brand{display:flex; gap:12px; align-items:center;}
.brand__mark{
  width:42px; height:42px; border-radius:12px;
  display:grid; place-items:center;
  font-weight:900;
  letter-spacing:-.02em;
  background: linear-gradient(135deg, rgba(21,169,189,.95), rgba(13,51,105,.95));
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}
.brand__name{font-weight:900}
.brand__tag{font-size:.88rem; color:var(--muted)}

.topbar__mini{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.chip{
  display:inline-flex;
  align-items:center;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.82);
  font-weight:700;
  font-size: .9rem;
}

/* =========================
   Buttons
========================= */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 11px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  text-decoration:none;
  font-weight:800;
  cursor:pointer;
  transition: transform .12s ease, background .12s ease, border-color .12s ease, filter .12s ease;
  user-select:none;
}
.btn:active{transform: translateY(1px)}
.btn--primary{
  border-color: rgba(21,169,189,.6);
  background: linear-gradient(135deg, rgba(21,169,189,.95), rgba(13,51,105,.95));
}
.btn--primary:hover{
  border-color: rgba(255,255,255,.25);
  filter: brightness(1.03);
}

/* Secondary button (Back) */
.btn--ghost{
  background: transparent;
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.70);
  font-weight: 650;
  padding: 10px 14px;
}

.btn--ghost:hover{
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
}


/* =========================
   Typography
========================= */
.h1{
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height:1.06;
  margin: 14px 0 12px;
  letter-spacing: -.02em;
}
.h2{
  font-size: 1.38rem;
  margin: 0 0 12px;
  letter-spacing:-.01em;
}
.lead{
  font-size: 1.06rem;
  color: rgba(255,255,255,.84);
  margin: 0 0 14px;
  max-width: 64ch;
}
.muted{color: var(--muted); margin: 0}
.fineprint{color: var(--muted2); font-size: .92rem; margin: 10px 0 0}

/* =========================
   Hero layout
========================= */
.hero{padding: 34px 0 18px;}
.hero__inner{
  display:grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 24px;
  align-items:start;
}
.hero__copy{padding: 6px 0 10px;}

.pill{
  display:inline-flex; align-items:center; gap:10px;
  padding: 8px 12px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  font-weight:800;
  color: rgba(255,255,255,.86);
}
.pill__dot{
  width:10px; height:10px; border-radius:999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(21,169,189,.18);
}

/* Profile card (headshot on left) */
.profile{
  display:flex;
  gap:14px;
  align-items:center;
  margin: 12px 0 14px;
  padding: 12px 12px;
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.04));
  box-shadow: var(--shadow2);
}
.profile__img{
  width: 92px;
  height: 92px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 14px 30px rgba(0,0,0,.35);
  flex: 0 0 auto;
}
.profile__img--placeholder{
  display:grid;
  place-items:center;
  font-weight:900;
  color: rgba(255,255,255,.92);
  background: linear-gradient(135deg, rgba(21,169,189,.35), rgba(13,51,105,.35));
}
.profile__name{
  font-weight:900;
  letter-spacing:-.01em;
}
.profile__meta{
  margin-top: 2px;
  color: var(--muted);
  font-size: .95rem;
}
.profile__proof{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
  margin-top: 8px;
}

/* Trust cards */
.trust-row{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
  margin: 14px 0 12px;
}
.trust-card{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  padding: 12px 12px;
}
.trust-card__title{font-weight:900}
.trust-card__sub{color: var(--muted); font-size: .9rem}

/* As-seen badges */
.as-seen{margin: 10px 0 14px}
.as-seen__label{color:var(--muted); font-weight:800; font-size:.95rem; margin-bottom:8px}
.as-seen__list{display:flex; flex-wrap:wrap; gap:8px}
.badge{
  display:inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  font-weight:800;
  font-size: .92rem;
}
.as-seen__note{margin-top:8px; color: var(--muted2); font-size:.85rem}

/* Micro list */
.hero__micro{
  display:grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 10px 0 12px;
}
.micro-item{
  display:flex; gap:10px; align-items:center;
  padding: 10px 12px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
}
.micro-ic{width:22px; text-align:center}

/* Why box */
.why{
  display:flex; gap: 12px;
  padding: 14px 14px;
  background: linear-gradient(135deg, rgba(21,169,189,.14), rgba(13,51,105,.18));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius2);
  margin: 10px 0 10px;
}
.why__ic{font-size: 1.2rem}
.why__title{font-weight:900; margin-bottom:4px}
.why__text{margin:0; color: var(--muted)}

/* =========================
   Form card
========================= */
.hero__form{position:relative}
.form-card{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.form-card__head{
  padding: 18px 18px 0;
}
.steps{
  display:flex; gap: 10px;
  padding: 14px 18px 8px;
}
.step{
  width: 38px; height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  display:grid; place-items:center;
  font-weight:900;
  color: rgba(255,255,255,.75);
  background: rgba(255,255,255,.05);
}
.step.is-active{
  background: rgba(21,169,189,.22);
  border-color: rgba(21,169,189,.7);
  color: var(--white);
}
.step.is-done{
  background: rgba(54,255,175,.18);
  border-color: rgba(54,255,175,.55);
  color: var(--white);
}

.form{padding: 10px 18px 18px}
.form-step{display:none}
.form-step.is-active{display:block; animation: fade .18s ease}
@keyframes fade{from{opacity:0; transform:translateY(6px)} to{opacity:1; transform:translateY(0)}}

.field{margin: 12px 0}
label{display:block; font-weight:900; margin-bottom:6px}
.req{color: rgba(255,110,110,.95)}

input, select, textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.18);
  color: var(--text);
  outline:none;
}
input::placeholder, textarea::placeholder{color: rgba(255,255,255,.5)}
textarea{min-height: 96px; resize: vertical}
input:focus, select:focus, textarea:focus{
  border-color: rgba(21,169,189,.75);
  box-shadow: 0 0 0 6px rgba(21,169,189,.16);
}

.grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.radio{display:grid; gap: 8px}
.radio__opt{
  display:flex; gap:10px; align-items:flex-start;
  padding: 10px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  cursor:pointer;
}
.radio__opt input{width:auto; margin-top: 3px}
.radio__opt.is-good{background: var(--good)}
.radio__opt.is-dim{background: var(--bad); opacity: .92}
.radio__opt:hover{border-color: rgba(255,255,255,.24)}

.hint{
  margin-top: 10px;
  color: var(--muted);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  padding: 10px 12px;
  border-radius: 12px;
  font-size: .95rem;
}


/* Stepper row: arrow + pills */
.steps{
  display:flex;
  gap: 10px;
  align-items:center;
  padding: 14px 18px 8px;
}

.steps__back{
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.85);
  font-weight: 900;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
  pointer-events: auto;
  z-index: 5;
}

.ticks li::before{
  content: "\2713";  /* ✓ */
  position:absolute;
  left:0;
  color: rgba(54,255,175,.9);
  font-weight:900;
}


.steps__back:hover{
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.26);
}

.steps__back:active{
  transform: translateY(1px);
}

/* Full width CTA for step pages */
.btn--full{
  width: 100%;
  margin-top: 14px;
  padding: 16px 16px;      /* a bit taller */
  font-size: 1.08rem;
}


.range{margin-top: 6px}
.range input{padding:0; height: 42px}
.range__meta{
  display:flex; justify-content:space-between; align-items:center;
  margin-top: 8px;
  color: var(--muted);
  font-weight:800;
}
.range__value{color: rgba(255,255,255,.9)}

.privacy{
  margin-top: 12px;
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  color: var(--muted);
  display:grid;
  gap: 8px;
}
.privacy__row{display:flex; gap:10px; align-items:flex-start}

.form-foot{padding: 0 18px 16px}
.mini{
  display:flex; gap: 10px; flex-wrap:wrap;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.10);
}
.mini__item{
  display:flex; gap:8px; align-items:center;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.82);
  font-weight:800;
  font-size: .92rem;
}

/* =========================
   Full-width section (below fold)
========================= */
.section{
  padding: 18px 0 24px;
}
.section__title{
  margin: 0 0 12px;
}
.grid-cards{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px;
}

/* Reuse list item styles in lower section too */
.list__item{
  display:flex; gap: 12px; align-items:flex-start;
  padding: 14px 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius2);
}
.list__ic{font-size: 1.25rem}
.list__title{font-weight:900}
.list__text{color: var(--muted); margin-top:4px}

/* Testimonial (compact, centred, with headshot) */
.quote{
  margin: 28px auto 22px;
  max-width: 780px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-left: 4px solid rgba(21,169,189,.75);
  border-radius: var(--radius2);
  padding: 16px 16px;
}

.quote {
  margin: 48px auto;   /* ⬅ increases space above & below */
  padding: 22px 24px;  /* slightly more internal padding */
  max-width: 920px;    /* keeps it visually centred and premium */
}

.quote__inner{
  display:flex;
  gap: 14px;
  align-items:flex-start;
}

.quote__img{
  width: 64px;
  height: 64px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 12px 26px rgba(0,0,0,.35);
  flex: 0 0 auto;
  background: rgba(255,255,255,.04);
}

.quote__text{
  margin: 0 0 10px;
  color: rgba(255,255,255,.9);
  font-weight: 500;
}

.quote__meta{
  color: var(--muted);
  font-size: .95rem;
}

/* Mobile tidy */
@media (max-width: 560px){
  .quote__inner{gap: 12px}
  .quote__img{width: 54px; height: 54px}
}


.section{
  padding: 26px 0 34px;
}
.faq{
  padding: 26px 0 44px;
}

/* Fit list */
.fit{margin: 12px 0 0}
.ticks{
  margin: 10px 0 0;
  padding: 0;
  list-style:none;
  display:grid;
  gap:8px;
}
.ticks li{
  padding-left: 28px;
  position:relative;
  color: rgba(255,255,255,.86);
}
.ticks li::before{
  content: "✓";
  position:absolute;
  left:0;
  color: rgba(54,255,175,.9);
  font-weight:900;
}
.note{
  margin-top: 12px;
  color: var(--muted);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  padding: 10px 12px;
  border-radius: 12px;
}

/* =========================
   FAQ
========================= */
.faq{padding: 18px 0 36px}
.faqgrid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px;
}
details{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  padding: 12px 12px;
}
summary{
  cursor:pointer;
  font-weight:900;
}
details p{margin: 10px 0 0; color: var(--muted)}

/* =========================
   Footer
========================= */
.footer{
  padding: 22px 0 44px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer__inner{
  display:flex;
  justify-content:space-between;
  gap: 14px;
  flex-wrap:wrap;
}
.footer__brand{display:flex; gap:12px; align-items:center}
.footer__name{font-weight:900}
.footer__tag{color: var(--muted); font-size:.9rem}
.footer__small{color: var(--muted2); margin: 10px 0 0; max-width: 55ch}
.footer__links{display:grid; gap: 8px}
.footer__links a{color: rgba(255,255,255,.85); text-decoration:none}
.footer__links a:hover{text-decoration:underline}

/* =========================
   Thanks page
========================= */
.thanks{
  min-height: 100vh;
  display:grid;
  place-items:center;
  padding: 28px 18px;
}
.thanks__card{
  width: min(760px, 100%);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 22px;
}
.thanks__icon{font-size: 2.2rem; margin-bottom: 10px}
.thanks__box{
  margin: 14px 0 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  padding: 12px 12px;
  display:grid;
  gap: 10px;
}
.thanks__row{display:flex; gap:10px; color: rgba(255,255,255,.82)}

/* =========================
   Responsive
========================= */
@media (max-width: 980px){
  .hero__inner{grid-template-columns: 1fr; gap: 16px;}
  .faqgrid{grid-template-columns: 1fr;}
  .grid-cards{grid-template-columns: 1fr;}
  .topbar__mini{justify-content:flex-start}
}

@media (max-width: 560px){
  .trust-row{grid-template-columns: 1fr}
  .grid{grid-template-columns: 1fr}
}
