:root{
  --bg0:#07060A;
  --bg1:#0B0712;

  --text:#e9e6ff;
  --muted:rgba(233,230,255,.78);
  --muted2:rgba(233,230,255,.62);
  --line:rgba(255,255,255,.10);

  --purple:#7C3AED;
  --purple2:#A855F7;
  --green:#22C55E;

  --font: ui-sans-serif, system-ui, -apple-system, "SF Pro Display", "SF Pro Text",
          Inter, "Helvetica Neue", Arial, "Apple Color Emoji","Segoe UI Emoji";
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }

body{
  font-family: var(--font);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  background: #0a0a0d; /* fallback */
}

/* ONE CONTINUOUS PAGE BACKGROUND (fixed) */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(1200px 700px at 50% -10%, rgba(124,58,237,.55), transparent 55%),
    radial-gradient(900px 600px at 80% 20%, rgba(168,85,247,.35), transparent 55%),
    radial-gradient(900px 600px at 10% 30%, rgba(34,197,94,.12), transparent 55%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
}

/* Optional: subtle global vignette to help readability everywhere */
body::after{
  content:"";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events:none;
  background:
    radial-gradient(1200px 900px at 50% 10%, transparent 55%, rgba(0,0,0,.55) 100%);
  opacity: .6;
}

a{ color: inherit; }

/* Utility layout */
.container{
  max-width: 1050px;
  margin: 0 auto;
  padding: 56px 18px;
}

/* Make sections transparent so background “flows” */
.section{ background: transparent; }

/* ---------------- HERO ---------------- */

.hero{
  position: relative;
  width: 100%;
  padding: clamp(72px, 10vw, 140px) 18px;
  overflow: hidden;
  background: transparent;
}

/* grain */
.hero::before{
  content:"";
  position:absolute; inset:0;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='260' height='260' filter='url(%23n)' opacity='.28'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  opacity:.14;
  pointer-events:none;
}

/* hero readability fades */
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      0deg,
      rgba(0,0,0,.22),   /* very subtle */
      transparent 55%
    );
  pointer-events:none;
}

.hero__wrap{
  max-width: 1050px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero__content{ text-align:center; }

.hero__eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.045);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .05px;
  margin-bottom: 18px;
  backdrop-filter: blur(10px);
}

.dot{
  width: 8px; height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--purple), var(--purple2));
  box-shadow: 0 0 0 4px rgba(124,58,237,.18);
}

.hero__title{
  margin: 0;
  font-weight: 850;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-transform: uppercase;
  font-size: clamp(30px, 4.6vw, 60px);
  text-shadow: 0 16px 40px rgba(0,0,0,.45);
}

.accent{
  background: linear-gradient(90deg, var(--purple), var(--purple2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.title-strong{ color: rgba(255,255,255,.95); }

.hero__proof{
  margin-top: 20px;
  display: grid;
  gap: 10px;
  justify-items: center; /* 👈 this is the key */
}

.proof__badge{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.085), rgba(255,255,255,.04));
  box-shadow: 0 18px 45px rgba(0,0,0,.35);
  backdrop-filter: blur(14px);
  width: fit-content;
  font-size: 17px;
  font-weight: 800;
  color: rgba(255,255,255,.92);
}

.proof__badge b{ font-weight: 900; }

.check{
  width: 28px; height: 28px;
  border-radius: 10px;
  display:grid;
  place-items:center;
  background: rgba(34,197,94,.16);
  border: 1px solid rgba(34,197,94,.25);
  color: #9ff5bf;
  font-weight: 900;
}

.proof__sub{
  color: var(--muted2);
  font-size: 15px;
  font-weight: 650;
}

.hero__ctaRow{
  margin-top: 28px;
  display:flex;
  justify-content:center;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 16px 20px;
  border-radius: 18px;
  text-decoration:none;
  border: 1px solid rgba(255,255,255,.14);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
  will-change: transform;
}

.btn--primary{
  color: white;
  background: linear-gradient(135deg, rgba(124,58,237,.95), rgba(168,85,247,.92));
  box-shadow: 0 20px 55px rgba(124,58,237,.35), 0 10px 25px rgba(0,0,0,.35);
  position: relative;
  min-width: min(560px, 100%);

  font-size: 16px;
  font-weight: 850;
}

.btn--primary::before{
  content:"";
  position:absolute; inset:-2px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255,255,255,.35), rgba(255,255,255,0));
  opacity: .26;
  pointer-events:none;
}

.btn__arrow{
  font-size: 18px;
  transform: translateY(-1px);
  opacity: .95;
}

.btn--primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 26px 70px rgba(124,58,237,.45), 0 12px 28px rgba(0,0,0,.42);
  filter: saturate(1.05);
}

.hero__risk{
  margin-top: 18px;
  color: rgba(233,230,255,.78);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.6;
}

.risk__accent{
  color: rgba(255,255,255,.90);
  font-weight: 800;
}

.risk__accent2{
  color: rgba(255,255,255,.92);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  text-decoration-color: rgba(168,85,247,.75);
}

.hero__divider{
  margin: 38px auto 0;
  height: 1px;
  width: min(720px, 92%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  opacity: .95;
}

/* Mobile */
@media (max-width: 720px){
  .hero{ padding: 78px 16px 110px; }
  .hero__title{
    font-size: clamp(28px, 7vw, 42px);
    line-height: 1.07;
  }
  .proof__badge{
    font-size: 15px;
    padding: 14px 14px;
    border-radius: 16px;
  }
  .proof__sub{ font-size: 14px; }
  .btn--primary{
    min-width: 100%;
    border-radius: 16px;
    font-size: 15px;
  }
  .hero__risk{ font-size: 14px; }
}

/* ---------------- SECTION 2 ---------------- */

.pain2{
  position: relative;
  padding: 84px 18px;
  overflow: hidden;
  background: transparent; /* inherits the global page background */
}

/* small readability fade so text/cards always pop */
.pain2::after{ display:none; }

.pain2__wrap{
  max-width: 1050px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

.pain2__head{ margin-bottom: 46px; }

.pain2__title{
  margin: 0 0 12px;
  font-size: clamp(26px, 3.6vw, 44px);
  font-weight: 850;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,.95);
  text-shadow: 0 16px 40px rgba(0,0,0,.45);
}

.pain2__subtitle{
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: rgba(233,230,255,.78);
}

.pain2__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.pain2__card{
  text-align: left;
  padding: 22px 20px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow: 0 18px 45px rgba(0,0,0,.35);
  backdrop-filter: blur(14px);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  position: relative;
  overflow: hidden;
}

.pain2__card::before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius: 20px;
  background: radial-gradient(420px 140px at 20% 0%, rgba(168,85,247,.18), transparent 70%);
  opacity: .7;
  pointer-events:none;
}

.pain2__card:hover{
  transform: translateY(-2px);
  border-color: rgba(168,85,247,.20);
  box-shadow: 0 26px 70px rgba(0,0,0,.45);
}

.pain2__icon{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 20px;
  margin-bottom: 14px;
  background: rgba(124,58,237,.14);
  border: 1px solid rgba(168,85,247,.22);
}

.pain2__h3{
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 850;
  color: rgba(255,255,255,.92);
}

.pain2__p{
  margin: 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(233,230,255,.72);
}

.pain2__divider{
  margin: 56px auto 0;
  height: 1px;
  width: min(780px, 92%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.16), transparent);
}

@media (max-width: 980px){
  .pain2__grid{ grid-template-columns: 1fr; gap: 16px; }
  .pain2{ padding: 74px 16px; }
}

@media (max-width: 420px){
  .pain2__subtitle{ font-size: 14.5px; }
}

/* ---------- SECTION 3: BELIEFS ---------- */

.beliefs{
  position: relative;
  padding: 88px 18px;
  background: transparent; /* uses the global page background */
}

.beliefs__wrap{
  max-width: 1050px;
  margin: 0 auto;
  position: relative;
}

.beliefs__title{
  text-align: center;
  margin: 0 0 40px;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,.95);
  text-shadow: 0 16px 40px rgba(0,0,0,.45);
}

.beliefs__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 18px;
}

.beliefs__item{
  padding: 18px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow: 0 18px 45px rgba(0,0,0,.30);
  backdrop-filter: blur(14px);

  color: rgba(233,230,255,.86);
  font-size: 16px;
  font-weight: 750;
  line-height: 1.45;

  position: relative;
  overflow: hidden;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

/* left accent bar + subtle glow */
.beliefs__item::before{
  content:"";
  position:absolute;
  left:0; top:0; bottom:0;
  width: 4px;
  background: linear-gradient(180deg, var(--purple), var(--purple2));
  opacity: .95;
}

.beliefs__item::after{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius: 18px;
  background: radial-gradient(480px 140px at 0% 10%, rgba(168,85,247,.18), transparent 60%);
  opacity: .85;
  pointer-events:none;
}

.beliefs__item:hover{
  transform: translateY(-2px);
  border-color: rgba(168,85,247,.22);
  box-shadow: 0 26px 70px rgba(0,0,0,.42);
}

.beliefs__divider{
  margin: 56px auto 0;
  height: 1px;
  width: min(780px, 92%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.16), transparent);
}

@media (max-width: 980px){
  .beliefs{
    padding: 74px 16px;
  }
  .beliefs__grid{
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .beliefs__title{
    margin-bottom: 28px;
  }
}

.pain2__card:hover,
.beliefs__item:hover{
  backdrop-filter: none;
}

/* ---------- SECTION 4: TRIED SEO ---------- */

.tried{
  position: relative;
  padding: 88px 18px;
  background: transparent; /* uses global page bg */
}

.tried__wrap{
  max-width: 1050px;
  margin: 0 auto;
}

.tried__title{
  text-align: center;
  margin: 0 0 40px;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,.95);
  text-shadow: 0 16px 40px rgba(0,0,0,.45);
}

.tried__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 18px;
}

.tried__item{
  padding: 18px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow: 0 18px 45px rgba(0,0,0,.30);

  color: rgba(233,230,255,.86);
  font-size: 16px;
  font-weight: 750;
  line-height: 1.45;

  position: relative;
  overflow: hidden;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

/* left accent bar + subtle purple glow */
.tried__item::before{
  content:"";
  position:absolute;
  left:0; top:0; bottom:0;
  width: 4px;
  background: linear-gradient(180deg, var(--purple), var(--purple2));
  opacity: .95;
}

.tried__item::after{
  content:"";
  position:absolute;
  inset: 0;
  border-radius: 16px;
  background: radial-gradient(520px 160px at 0% 15%, rgba(168,85,247,.16), transparent 60%);
  opacity: .6;
  pointer-events:none;
}

.tried__item:hover{
  transform: translateY(-2px);
  border-color: rgba(168,85,247,.22);
  box-shadow: 0 26px 70px rgba(0,0,0,.42);
}

.tried__divider{
  margin: 56px auto 0;
  height: 1px;
  width: min(780px, 92%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.16), transparent);
}

@media (max-width: 980px){
  .tried{
    padding: 74px 16px;
  }
  .tried__grid{
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .tried__title{
    margin-bottom: 28px;
  }
}

/* ---------- SECTION: BOUTIQUE / LOGOS ---------- */

.boutique{
  padding: 88px 18px;
  background: transparent;
}

.boutique__wrap{
  max-width: 1050px;
  margin: 0 auto;
  text-align: center;
}

.boutique__kicker{
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(233,230,255,.78);
  margin-bottom: 12px;
}

.boutique__title{
  margin: 0 0 36px;
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 850;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,.92);
}

/* Make logos sit on a clean "logo wall" card */
.boutique__logos{
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;

  padding: 28px 32px;
  border-radius: 22px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.35);
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  margin-bottom: 44px;
}

.boutique__logos img{
  height: 120px;          /* bigger */
  padding: 14px 18px;    /* gives breathing room */
  border-radius: 25px;
  background: transparent; /* let the card be the "white" */
  filter: none;          /* don’t gray them out */
  opacity: 1;
}

.boutique__logos img:hover{
  transform: translateY(-2px);
}

/* mobile */
@media (max-width: 980px){
  .boutique__logos{
    grid-template-columns: repeat(2, 1fr);
    padding: 18px;
  }
  .boutique__logos img{ height: 58px; }
}

/* Note card */
.boutique__note{
  margin: 0 auto 28px;
  width: min(920px, 100%);
  padding: 18px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow: 0 18px 45px rgba(0,0,0,.30);
  display: flex;
  gap: 14px;
  align-items: flex-start;
  text-align: left;
}

.boutique__noteIcon{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: rgba(233,230,255,.85);
  background: rgba(124,58,237,.14);
  border: 1px solid rgba(168,85,247,.22);
  flex: 0 0 auto;
  margin-top: 2px;
}

.boutique__noteLine{
  font-size: 18px;
  font-weight: 850;
  color: rgba(255,255,255,.92);
  line-height: 1.35;
}

.boutique__noteLine2{
  margin-top: 8px;
  font-size: 15px;
  font-weight: 700;
  color: rgba(233,230,255,.72);
}

/* CTA */
.boutique__cta{
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.boutique__divider{
  margin: 56px auto 0;
  height: 1px;
  width: min(780px, 92%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.16), transparent);
}

@media (max-width: 980px){
  .boutique{
    padding: 74px 16px;
  }

  .boutique__note{
    text-align: left;
  }
}

/* ---------- SECTION: CASE STUDIES (TABS) ---------- */

.cases{
  padding: 92px 18px;
  background: transparent;
}

.cases__wrap{
  max-width: 1100px;
  margin: 0 auto;
}

.cases__head{
  text-align: center;
  margin-bottom: 26px;
}

.cases__kicker{
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(233,230,255,.70);
  margin-bottom: 10px;
}

.cases__title{
  margin: 0 0 8px;
  font-size: clamp(26px, 3.6vw, 44px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,.95);
  text-shadow: 0 16px 40px rgba(0,0,0,.45);
}

.cases__sub{
  margin: 0;
  color: rgba(233,230,255,.72);
  font-weight: 700;
}

.cases__tabs{
  width: fit-content;
  margin: 22px auto 22px;
  display: inline-flex;
  gap: 10px;
  padding: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  box-shadow: 0 18px 45px rgba(0,0,0,.25);
}

.cases__tab{
  appearance: none;
  border: 0;
  cursor: pointer;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 850;
  font-size: 14px;
  color: rgba(233,230,255,.78);
  background: transparent;
  transition: transform .15s ease, background .15s ease, color .15s ease;
}

.cases__tab.is-active{
  color: rgba(255,255,255,.95);
  background: linear-gradient(135deg, rgba(124,58,237,.85), rgba(168,85,247,.75));
}

.cases__tab:hover{ transform: translateY(-1px); }

.cases__panel{ display: none; }
.cases__panel.is-active{ display: block; }

.cases__card{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 22px;

  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow: 0 26px 80px rgba(0,0,0,.40);
  overflow: hidden;
}

.cases__media{
  background:
    radial-gradient(700px 400px at 30% 20%, rgba(168,85,247,.14), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  display: grid;
  place-items: center;
  padding: 26px;
}

.cases__media img{
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
}

.cases__content{
  padding: 28px 28px 26px;
}

.cases__meta{
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 13px;
  color: rgba(233,230,255,.80);
}

.cases__metaDim{
  color: rgba(233,230,255,.40);
  font-weight: 900;
}

.cases__headline{
  margin-top: 12px;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 950;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: rgba(255,255,255,.95);
}

.cases__body{
  margin-top: 14px;
  color: rgba(233,230,255,.78);
  font-weight: 650;
  line-height: 1.65;
}

.cases__body p{ margin: 0 0 14px; }
.cases__body b{ color: rgba(255,255,255,.92); font-weight: 900; }

.cases__stats{
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.cases__stat{
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.20);
}

.cases__statNum{
  font-weight: 950;
  font-size: 18px;
  color: rgba(255,255,255,.95);
}

.cases__statLab{
  margin-top: 4px;
  font-weight: 750;
  font-size: 13px;
  color: rgba(233,230,255,.70);
}

.cases__divider{
  margin: 56px auto 0;
  height: 1px;
  width: min(780px, 92%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.16), transparent);
}

@media (max-width: 980px){
  .cases{ padding: 78px 16px; }
  .cases__card{ grid-template-columns: 1fr; }
  .cases__content{ padding: 22px 18px; }
  .cases__stats{ grid-template-columns: 1fr; }
}

.myth{
  padding: 96px 18px;
  background: transparent;
  text-align: center;
}

.myth__eyebrow{
  display: inline-block;
  font-weight: 800;
  color: #f59e0b;
  margin-bottom: 14px;
}

.myth__title{
  font-size: clamp(34px, 4.8vw, 56px);
  font-weight: 900;
  line-height: 1.05;
  margin: 0;
  padding-top: 15px;
}

.myth__subtitle{
  margin-top: 14px;
  font-size: 18px;
  font-weight: 700;
  color: rgba(255,255,255,.75);
}

.myth__panel{
  position: relative;
  margin-top: 48px;
  padding: 48px 44px 42px;
  border-radius: 26px;
  background:
    radial-gradient(600px 180px at 50% -40%, rgba(168,85,247,.18), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.04));
  backdrop-filter: blur(18px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.12),
    0 40px 90px rgba(0,0,0,.55);
}

.myth__panel::before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius: 26px;
  background: linear-gradient(
    135deg,
    rgba(168,85,247,.35),
    rgba(124,58,237,.15),
    transparent 60%
  );
  opacity:.35;
  pointer-events:none;
}

.myth__panelTitle{
  margin: 0 0 36px;
  font-size: 22px;
  font-weight: 900;
  text-align: center;
  color: var(--purple2);
  text-shadow: 0 10px 30px rgba(0,0,0,.45);
}

.myth__grid{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 0;
}

.myth__item{
  padding: 10px 28px;
  transition: transform .25s ease, background .25s ease;
}

.myth__item:not(:last-child){
  border-right: 1px solid rgba(255,255,255,.08);
}

.myth__item:hover{
  transform: translateY(-4px);
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.06),
    transparent
  );
}

.myth__item h4{
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 900;
  color: rgba(255,255,255,.95);
}

.myth__item p{
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(233,230,255,.78);
}

@media (max-width: 900px){
  .myth__grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px){
  .myth__grid{
    grid-template-columns: 1fr;
  }
  .myth__item{
    padding: 22px 0;
  }
  .myth__item:not(:last-child){
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
}

.gold-text{
  background: linear-gradient(
    135deg,
    #F5E6A8 0%,
    #E9C86A 25%,
    #D4AF37 50%,
    #B8962E 75%,
    #F5E6A8 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
}

.eyebrow{
  font-size: 23px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.gold-text{
  text-shadow: 0 2px 12px rgba(212,175,55,.25);
}

/* ---------- ROADMAP ---------- */
.roadmap{ padding: 96px 18px; background: transparent; }
.roadmap__head{ text-align:center; margin-bottom: 44px; }
.roadmap__title{
  margin:0 0 10px;
  font-size: clamp(30px, 4.2vw, 54px);
  font-weight: 900;
  letter-spacing: -0.02em;
}
.roadmap__sub{ margin:0; font-weight: 800; font-size: 18px; color: rgba(233,230,255,.72); }

.roadmap__shell{
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 26px;
  align-items: start;
}

.roadmap__rail{
  position: relative;
  padding: 18px 12px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(14px);
  box-shadow: 0 26px 80px rgba(0,0,0,.45);
}

.roadmap__progress{
  position:absolute;
  left: 26px;
  top: 22px;
  bottom: 22px;
  width: 2px;
  background: linear-gradient(180deg, rgba(168,85,247,.65), rgba(168,85,247,.10));
  opacity: .75;
  border-radius: 99px;
}

.roadmap__step{
  width: 100%;
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  text-align: left;
  padding: 14px 12px;
  border-radius: 16px;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  color: rgba(255,255,255,.92);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
  position: relative;
  z-index: 1;
}

.roadmap__step:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.04);
}

.roadmap__step.is-active{
  background: linear-gradient(180deg, rgba(168,85,247,.14), rgba(255,255,255,.03));
  border-color: rgba(168,85,247,.28);
}

.roadmap__dot{
  width: 12px; height: 12px;
  border-radius: 999px;
  margin-top: 5px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 0 0 5px rgba(124,58,237,.12);
}

.roadmap__step.is-active .roadmap__dot{
  background: linear-gradient(135deg, var(--purple), var(--purple2));
  border-color: rgba(255,255,255,.18);
  box-shadow: 0 0 0 6px rgba(124,58,237,.22), 0 0 18px rgba(168,85,247,.35);
}

.roadmap__days{
  display:block;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(233,230,255,.72);
}
.roadmap__label{
  display:block;
  margin-top: 4px;
  font-weight: 900;
  font-size: 16px;
  color: rgba(255,255,255,.95);
}

.roadmap__panel{
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(14px);
  box-shadow: 0 26px 80px rgba(0,0,0,.45);
  overflow: hidden;
}

.roadmap__card{
  padding: 26px 26px 24px;
}

.roadmap__cardTop{
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 16px;
}

.roadmap__badge{
  display:inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(255,255,255,.92);
  background: rgba(124,58,237,.18);
  border: 1px solid rgba(168,85,247,.22);
}

.roadmap__cardTitle{
  margin:0;
  font-size: 20px;
  font-weight: 900;
}

.roadmap__list{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.roadmap__list li{
  position: relative;
  padding-left: 30px;
  color: rgba(233,230,255,.78);
  line-height: 1.6;
  font-weight: 650;
}

.roadmap__list li::before{
  content:"";
  position:absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 4px;
  background: rgba(168,85,247,.18);
  border: 1px solid rgba(168,85,247,.35);
  box-shadow: 0 0 0 5px rgba(124,58,237,.10);
}

/* Mobile: rail becomes horizontal pills + panel below */
@media (max-width: 980px){
  .roadmap__shell{ grid-template-columns: 1fr; }
  .roadmap__progress{ display:none; }
  .roadmap__rail{ display:grid; gap: 10px; padding: 14px; }
}


/* ---- Ongoing Tasks (Roadmap Add-on) ---- */
.roadmap-ongoing{
  max-width: 1100px;
  margin: -40px auto 0; /* pulls it closer to roadmap */
  padding: 0 18px;
}

.ongoing-card{
  position: relative;
  padding: 26px 28px 24px;
  border-radius: 22px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.07),
    rgba(255,255,255,.03)
  );
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(16px);
  box-shadow: 0 30px 90px rgba(0,0,0,.45);
}

/* subtle timeline tie-in */
.ongoing-card::before{
  content:"";
  position:absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 3px;
  border-radius: 99px;
  background: linear-gradient(
    180deg,
    rgba(168,85,247,.85),
    rgba(168,85,247,.25)
  );
}

.ongoing-head{
  display:flex;
  align-items:center;
  gap: 14px;
  margin-bottom: 14px;
}

.ongoing-icon{
  width: 34px;
  height: 34px;
  display:grid;
  place-items:center;
  border-radius: 12px;
  font-weight: 900;
  color: white;
  background: linear-gradient(135deg, var(--purple), var(--purple2));
  box-shadow:
    0 0 0 6px rgba(124,58,237,.18),
    0 10px 30px rgba(124,58,237,.45);
}

.ongoing-head h3{
  margin:0;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -.01em;
}

/* list */
.ongoing-list{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.ongoing-list li{
  position: relative;
  padding-left: 30px;
  color: rgba(233,230,255,.82);
  font-weight: 650;
  line-height: 1.6;
}

.ongoing-list li::before{
  content:"";
  position:absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 4px;
  background: rgba(168,85,247,.25);
  border: 1px solid rgba(168,85,247,.45);
  box-shadow: 0 0 0 4px rgba(124,58,237,.15);
}

/* mobile */
@media (max-width: 720px){
  .roadmap-ongoing{ margin-top: -20px; }
  .ongoing-card{ padding: 22px 20px; }
  .ongoing-head h3{ font-size: 20px; }
}


/* ---------- SUCCESS SECTION ---------- */
.success{
  padding: 96px 18px;
  background: transparent;
}

.success__head{
  text-align: center;
  margin-bottom: 34px;
}

.success__title{
  margin: 0 0 14px;
  font-size: clamp(30px, 4.2vw, 54px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,.96);
}

.success__sub{
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 900;
  color: rgba(233,230,255,.8);
}

.success__sub--accent{
  color: transparent;
  background: linear-gradient(90deg, var(--purple), var(--purple2));
  -webkit-background-clip: text;
  background-clip: text;
}

.success__sub2{
  margin: 0;
  font-size: 16px;
  font-weight: 750;
  color: rgba(233,230,255,.72);
}

/* Timeline */
.success__timeline{
  position: relative;
  max-width: 1100px;
  margin: 0 auto 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.success__track{
  position: absolute;
  left: 18px;
  right: 18px;
  top: 34px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg,
    rgba(168,85,247,.08),
    rgba(168,85,247,.65),
    rgba(168,85,247,.08)
  );
  opacity: .85;
  pointer-events: none;
}

.success__step{
  position: relative;
  padding: 22px 18px 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(14px);
  box-shadow: 0 26px 80px rgba(0,0,0,.42);
  text-align: center;
  overflow: hidden;
}

.success__step::before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius: 22px;
  background: radial-gradient(380px 160px at 50% 0%, rgba(168,85,247,.18), transparent 70%);
  opacity: .75;
  pointer-events:none;
}

.success__pin{
  width: 46px;
  height: 46px;
  margin: 0 auto 12px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(124,58,237,.16);
  border: 1px solid rgba(168,85,247,.22);
  box-shadow: 0 0 0 6px rgba(124,58,237,.12), 0 12px 30px rgba(0,0,0,.35);
  position: relative;
  z-index: 1;
}

.success__pinIcon{ font-size: 20px; filter: saturate(1.1); }

.success__when{
  font-weight: 950;
  font-size: 20px;
  color: rgba(255,255,255,.95);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.success__what{
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(233,230,255,.75);
  font-weight: 650;
  position: relative;
  z-index: 1;
}

/* Alert */
.success__alert{
  max-width: 1100px;
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;

  padding: 22px 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(14px);
  box-shadow: 0 26px 80px rgba(0,0,0,.45);
  position: relative;
  overflow: hidden;
}

.success__alert::before{
  content:"";
  position:absolute;
  left:0; top:18px; bottom:18px;
  width: 3px;
  border-radius: 99px;
  background: linear-gradient(180deg, rgba(234,179,8,.9), rgba(234,179,8,.15));
  opacity: .9;
}

.success__alertIcon{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(234,179,8,.14);
  border: 1px solid rgba(234,179,8,.25);
  box-shadow: 0 0 0 6px rgba(234,179,8,.10);
  font-size: 20px;
}

.success__alertTitle{
  font-size: 20px;
  font-weight: 950;
  margin: 2px 0 10px;
  color: rgba(255,255,255,.96);
}

.success__alertText{
  margin: 0 0 10px;
  color: rgba(233,230,255,.78);
  line-height: 1.65;
  font-weight: 650;
}

.success__ctaRow{
  margin-top: 12px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* secondary button to match your system */
.btn--ghost{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.92);
  box-shadow: 0 18px 45px rgba(0,0,0,.25);
}

.btn--ghost:hover{
  transform: translateY(-2px);
  box-shadow: 0 26px 70px rgba(0,0,0,.35);
}

/* Mobile */
@media (max-width: 980px){
  .success__timeline{
    grid-template-columns: 1fr;
  }
  .success__track{ display:none; }
  .success__step{ text-align: left; }
  .success__pin{ margin: 0 0 10px; }
}

@media (max-width: 640px){
  .success__alert{
    grid-template-columns: 1fr;
  }
  .success__ctaRow .btn{
    width: 100%;
    justify-content: center;
  }
}

/* ---------- WHO THIS ISN'T FOR ---------- */
.fit{
  padding: 92px 18px;
  background: transparent;
}

.fit__head{
  text-align: center;
  margin-bottom: 38px;
}

.fit__title{
  margin: 0 0 12px;
  font-size: clamp(30px, 4.2vw, 54px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,.96);
}

.fit__sub{
  margin: 0;
  font-size: 18px;
  font-weight: 850;
  color: rgba(233,230,255,.76);
}

.fit__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}

.fit__card{
  position: relative;
  padding: 22px 22px 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(14px);
  box-shadow: 0 26px 80px rgba(0,0,0,.42);
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

/* subtle “premium stroke” + glow */
.fit__card::before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius: 24px;
  background:
    radial-gradient(520px 160px at 20% 0%, rgba(168,85,247,.22), transparent 70%),
    radial-gradient(520px 160px at 80% 0%, rgba(34,197,94,.10), transparent 70%);
  opacity: .85;
  pointer-events:none;
}

.fit__card::after{
  content:"";
  position:absolute;
  left: 16px; right: 16px; top: 14px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, transparent, rgba(168,85,247,.65), transparent);
  opacity: .55;
  pointer-events:none;
}

.fit__card:hover{
  transform: translateY(-3px);
  border-color: rgba(168,85,247,.22);
  box-shadow: 0 34px 95px rgba(0,0,0,.52);
}

.fit__icon{
  width: 48px;
  height: 48px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  background: rgba(124,58,237,.16);
  border: 1px solid rgba(168,85,247,.22);
  box-shadow: 0 0 0 6px rgba(124,58,237,.12), 0 12px 30px rgba(0,0,0,.35);
  font-size: 22px;
  position: relative;
  z-index: 1;
}

.fit__h3{
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 950;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,.94);
  position: relative;
  z-index: 1;
}

.fit__p{
  margin: 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(233,230,255,.74);
  font-weight: 650;
  position: relative;
  z-index: 1;
}

.fit__divider{
  margin: 46px auto 0;
  height: 1px;
  width: min(860px, 92%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.16), transparent);
}

/* Mobile */
@media (max-width: 980px){
  .fit__grid{ grid-template-columns: 1fr; }
}


/* =========================
   BOOKING / DECISION ZONE
   Paste into main.css (near other sections)
========================= */

.booking{
  position: relative;
  padding: 86px 18px;
  background: transparent;
}

.booking__wrap{
  max-width: 1050px;
  margin: 0 auto;
}

.booking__grid{
  display:grid;
  grid-template-columns: 1.25fr .95fr;
  gap: 22px;
  align-items: stretch;
}

/* Shared pill (matches your hero style) */
.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(10px);
  color: rgba(233,230,255,.78);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .02em;
}
.pill__dot{
  width: 8px; height: 8px;
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(255,255,255,.06);
}
.pill__dot--gold{
  background: linear-gradient(135deg, #FFD37A, #F7B733, #D4AF37);
  box-shadow: 0 0 0 4px rgba(247,183,51,.18);
}

.booking__left,
.booking__right{
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 55px rgba(0,0,0,.35);
}

/* LEFT panel (dark/gradient) */
.booking__left{
  padding: 26px 24px;
  background:
    radial-gradient(720px 420px at 20% 0%, rgba(168,85,247,.22), transparent 60%),
    radial-gradient(620px 360px at 90% 20%, rgba(124,58,237,.22), transparent 58%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  backdrop-filter: blur(14px);
}

.booking__title{
  margin: 16px 0 14px;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,.95);
  text-shadow: 0 16px 40px rgba(0,0,0,.40);
}

.booking__bullets{
  list-style: none;
  padding: 0;
  margin: 0;
  display:grid;
  gap: 12px;
}

.booking__bullets li{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}

.bulletIcon{
  width: 26px;
  height: 26px;
  display:grid;
  place-items:center;
  border-radius: 10px;
  background: rgba(34,197,94,.14);
  border: 1px solid rgba(34,197,94,.20);
  color: #bff7d4;
  font-weight: 900;
  flex: 0 0 26px;
  margin-top: 1px;
}

.booking__bullets span{
  color: rgba(233,230,255,.78);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 650;
}
.booking__bullets strong{
  color: rgba(255,255,255,.92);
  font-weight: 900;
}

.booking__guarantee{
  margin-top: 18px;
  padding: 16px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  display:flex;
  gap: 12px;
  align-items:flex-start;
}

.guarantee__icon{
  width: 36px;
  height: 36px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: rgba(247,183,51,.14);
  border: 1px solid rgba(247,183,51,.22);
  color: rgba(255,255,255,.92);
  font-weight: 900;
  flex: 0 0 36px;
}

.guarantee__title{
  font-weight: 900;
  color: rgba(255,255,255,.92);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.guarantee__p{
  margin: 0;
  color: rgba(233,230,255,.72);
  line-height: 1.55;
  font-size: 14.5px;
  font-weight: 650;
}

.guarantee__accent{
  color: rgba(255,255,255,.95);
  font-weight: 950;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  text-decoration-color: rgba(247,183,51,.65);
}

/* RIGHT panel (clean, glassy card) */
.booking__right{
  padding: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.02));
  backdrop-filter: blur(14px);
  display:flex;
  flex-direction: column;
  gap: 16px;
}

.booking__ctaTitle{
  margin: 0;
  font-size: 20px;
  font-weight: 950;
  color: rgba(255,255,255,.93);
  letter-spacing: -0.01em;
}

.booking__ctaSub{
  margin: 10px 0 0;
  color: rgba(233,230,255,.72);
  font-weight: 650;
  line-height: 1.55;
  font-size: 14.5px;
}

.booking__btn{
  margin-top: 16px;
  width: 100%;
  min-width: 0;
}

/* small micro reassurance line */
.booking__micro{
  margin-top: 12px;
  display:flex;
  align-items:center;
  gap: 10px;
  color: rgba(233,230,255,.68);
  font-weight: 650;
  font-size: 13.5px;
  line-height: 1.4;
}

.microDot{
  width: 8px; height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--purple), var(--purple2));
  box-shadow: 0 0 0 4px rgba(124,58,237,.16);
}

/* Proof card */
.booking__proofCard{
  margin-top: auto;
  padding: 16px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.22);
}

.proofCard__top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.proofBadge{
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(233,230,255,.70);
}

.proofStars{
  font-size: 14px;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #FFD37A, #F7B733, #D4AF37);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.proofQuote{
  margin: 0;
  color: rgba(255,255,255,.90);
  font-weight: 750;
  line-height: 1.55;
  font-size: 14.5px;
}

.proofByline{
  margin-top: 10px;
  color: rgba(233,230,255,.70);
  font-weight: 700;
  font-size: 13.5px;
}

.proofMuted{
  color: rgba(233,230,255,.55);
  font-weight: 650;
}

/* Divider (subtle seam) */
.booking__divider{
  margin: 52px auto 0;
  height: 1px;
  width: min(820px, 92%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
  opacity: .95;
}

/* Mobile */
@media (max-width: 980px){
  .booking__grid{
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .booking{ padding: 72px 16px; }
  .booking__left, .booking__right{ border-radius: 20px; }
}

@media (max-width: 520px){
  .booking__left{ padding: 22px 18px; }
  .booking__right{ padding: 20px 18px; }
  .booking__bullets li{ padding: 12px 10px; }
  .booking__title{ margin-top: 14px; }
}

/* Booking section heading (only affects booking) */
.booking__head{
  max-width: 1050px;
  margin: 0 auto 38px;
  padding: 0 18px;
  text-align: center;
}

.booking__headTitle{
  margin: 0 0 12px;
  font-size: clamp(30px, 4.2vw, 54px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,.96);
}


/* ---------- SECTION: HELP / OUTCOMES ---------- */
.help{
  padding: 96px 18px;
  background: transparent;
}

.help__wrap{
  max-width: 1100px;
  margin: 0 auto;
}

.help__head{
  text-align: center;
  margin-bottom: 34px;
}

.help__kicker{
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(233,230,255,.70);
  margin-bottom: 12px;
}

.help__title{
  margin: 0 0 10px;
  font-size: clamp(30px, 4.2vw, 54px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,.96);
  text-shadow: 0 16px 40px rgba(0,0,0,.45);
}

.help__sub{
  margin: 0 auto;
  max-width: 760px;
  font-size: 16px;
  font-weight: 750;
  color: rgba(233,230,255,.72);
  line-height: 1.6;
}

.help__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}

.help__card{
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  padding: 22px 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(14px);
  box-shadow: 0 26px 80px rgba(0,0,0,.42);
  overflow: hidden;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.help__card::before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius: 24px;
  background:
    radial-gradient(520px 180px at 15% 0%, rgba(168,85,247,.22), transparent 70%),
    radial-gradient(520px 180px at 90% 10%, rgba(34,197,94,.10), transparent 70%);
  opacity: .85;
  pointer-events:none;
}

.help__card:hover{
  transform: translateY(-3px);
  border-color: rgba(168,85,247,.22);
  box-shadow: 0 34px 95px rgba(0,0,0,.52);
}

.help__num{
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 950;
  font-size: 18px;
  color: rgba(255,255,255,.95);
  background: rgba(124,58,237,.16);
  border: 1px solid rgba(168,85,247,.22);
  box-shadow: 0 0 0 6px rgba(124,58,237,.12), 0 12px 30px rgba(0,0,0,.35);
  position: relative;
  z-index: 1;
}

.help__content{ position: relative; z-index: 1; }

.help__h3{
  margin: 2px 0 8px;
  font-size: 18px;
  font-weight: 950;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,.95);
}

.help__accent{
  background: linear-gradient(90deg, var(--purple), var(--purple2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.help__p{
  margin: 0;
  font-size: 14.5px;
  font-weight: 650;
  line-height: 1.65;
  color: rgba(233,230,255,.74);
}

.help__card--wide{
  grid-column: 1 / -1;
}

.help__divider{
  margin: 56px auto 0;
  height: 1px;
  width: min(820px, 92%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
  opacity: .95;
}

@media (max-width: 980px){
  .help{ padding: 78px 16px; }
  .help__grid{ grid-template-columns: 1fr; }
  .help__card--wide{ grid-column: auto; }
}

/* =========================
   FAQ SECTION
========================= */

.faq{
  position: relative;
  padding: 96px 18px;
  background: transparent;
}

.faq__wrap{
  max-width: 1100px;
  margin: 0 auto;
}

.faq__head{
  text-align: center;
  margin-bottom: 34px;
}

.faq__kicker{
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(233,230,255,.70);
  margin-bottom: 12px;
}

.faq__title{
  margin: 0 0 10px;
  font-size: clamp(30px, 4.2vw, 54px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,.96);
  text-shadow: 0 16px 40px rgba(0,0,0,.45);
}

.faq__sub{
  margin: 0 auto;
  max-width: 820px;
  color: rgba(233,230,255,.72);
  font-weight: 700;
  line-height: 1.65;
  font-size: 15.5px;
}

.faq__grid{
  display: grid;
  grid-template-columns: 1.35fr .85fr;
  gap: 18px;
  align-items: start;
  margin-top: 26px;
}

/* Accordion list container */
.faq__list{
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  backdrop-filter: blur(14px);
  box-shadow: 0 26px 80px rgba(0,0,0,.42);
  overflow: hidden;
}

/* FAQ item */
.faqItem{
  border-top: 1px solid rgba(255,255,255,.08);
}
.faqItem:first-child{ border-top: none; }

.faqItem__btn{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faqItem__q{
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,.94);
  line-height: 1.35;
}

.faqItem__icon{
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  box-shadow: 0 12px 32px rgba(0,0,0,.35);
  transition: transform .18s ease, border-color .18s ease;
}

.faqPlus{
  position: relative;
  width: 14px;
  height: 14px;
}
.faqPlus::before,
.faqPlus::after{
  content:"";
  position: absolute;
  inset: 0;
  margin: auto;
  background: linear-gradient(90deg, var(--purple), var(--purple2));
  border-radius: 99px;
}
.faqPlus::before{ width: 14px; height: 2px; }
.faqPlus::after{ width: 2px; height: 14px; transition: transform .18s ease, opacity .18s ease; }

.faqItem__panel{
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .22s ease;
}

.faqItem__a{
  overflow: hidden;
  padding: 0 18px 16px;
  color: rgba(233,230,255,.74);
  font-weight: 650;
  line-height: 1.7;
  font-size: 14.5px;
}

.faqItem__a p{ margin: 0 0 10px; }
.faqItem__a p:last-child{ margin-bottom: 0; }

.faqItem__a strong{
  color: rgba(255,255,255,.92);
  font-weight: 900;
}

.faqItem__a ul{
  margin: 8px 0 12px 18px;
  padding: 0;
}
.faqItem__a li{ margin: 6px 0; }

/* Open state */
.faqItem.is-open .faqItem__panel{
  grid-template-rows: 1fr;
}

.faqItem.is-open .faqPlus::after{
  transform: scaleY(.0);
  opacity: 0;
}

.faqItem.is-open .faqItem__icon{
  border-color: rgba(168,85,247,.22);
  transform: translateY(-1px);
}

/* Hover + focus polish */
.faqItem__btn:hover .faqItem__icon{
  border-color: rgba(168,85,247,.22);
}
.faqItem__btn:focus-visible{
  outline: 2px solid rgba(168,85,247,.55);
  outline-offset: 3px;
  border-radius: 14px;
}

/* Aside card */
.faq__aside{
  position: sticky;
  top: 18px;
}

.faqCard{
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(620px 320px at 20% 0%, rgba(168,85,247,.20), transparent 60%),
    radial-gradient(620px 320px at 90% 20%, rgba(124,58,237,.20), transparent 58%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  backdrop-filter: blur(14px);
  box-shadow: 0 26px 80px rgba(0,0,0,.42);
  padding: 18px;
}

.faqCard__top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.faqCard__badge{
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(233,230,255,.70);
}

.faqCard__stars{
  font-size: 14px;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #FFD37A, #F7B733, #D4AF37);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.faqCard__row{
  display:flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 10px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  margin-bottom: 10px;
}

.faqCard__label{
  color: rgba(233,230,255,.70);
  font-weight: 750;
  font-size: 13.5px;
}

.faqCard__value{
  color: rgba(255,255,255,.90);
  font-weight: 900;
  font-size: 13.5px;
  text-align: right;
}

.faqCard__cta{
  margin-top: 12px;
}

.faqCard__cta .btn{
  width: 100%;
}

.faqCard__micro{
  margin-top: 10px;
  display:flex;
  align-items:center;
  gap: 10px;
  color: rgba(233,230,255,.68);
  font-weight: 650;
  font-size: 13.5px;
  line-height: 1.4;
}

/* Divider */
.faq__divider{
  margin: 56px auto 0;
  height: 1px;
  width: min(820px, 92%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
  opacity: .95;
}

/* Mobile */
@media (max-width: 980px){
  .faq{ padding: 78px 16px; }
  .faq__grid{ grid-template-columns: 1fr; }
  .faq__aside{ position: static; }
}

/* Hide any answer preview when collapsed */
.faqItem:not(.is-open) .faqItem__panel{
  display: none;
}

/* =========================
   IF YOU'RE ON THE FENCE (Premium)
========================= */
.fence2{
  padding: 96px 18px;
  position: relative;
}

.fence2__wrap{
  max-width: 1100px;
  margin: 0 auto;
}

.fence2__card{
  position: relative;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(760px 420px at 18% 0%, rgba(168,85,247,.20), transparent 58%),
    radial-gradient(760px 420px at 95% 18%, rgba(124,58,237,.20), transparent 56%),
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
  backdrop-filter: blur(18px);
  box-shadow: 0 38px 120px rgba(0,0,0,.55);
  overflow: hidden;
}

/* soft sheen + subtle grain */
.fence2__sheen{
  position: absolute;
  inset: -2px;
  pointer-events: none;
  background:
    radial-gradient(900px 240px at 50% -10%, rgba(255,255,255,.10), transparent 60%),
    linear-gradient(90deg, rgba(255,255,255,.06), transparent 22%, transparent 78%, rgba(255,255,255,.05));
  mix-blend-mode: screen;
  opacity: .55;
}

.fence2__grid{
  display: grid;
  grid-template-columns: 1.25fr .85fr;
  gap: 18px;
  padding: 44px 44px;
  align-items: start;
}

.fence2__kicker{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: rgba(233,230,255,.72);
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 16px;
}

.fence2__kDot{
  width: 8px; height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--purple), var(--purple2));
  box-shadow: 0 0 0 4px rgba(124,58,237,.18);
}

.fence2__title{
  margin: 0 0 16px;
  font-size: clamp(30px, 4.2vw, 52px);
  font-weight: 950;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: rgba(255,255,255,.96);
  text-shadow: 0 18px 52px rgba(0,0,0,.55);
}

.fence2__accent{
  display: block;
  margin-top: 8px;
  background: linear-gradient(135deg, var(--purple), var(--purple2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.fence2__p{
  margin: 0 0 12px;
  max-width: 720px;
  color: rgba(233,230,255,.74);
  font-weight: 650;
  line-height: 1.65;
  font-size: 15.5px;
}

.fence2__cta{
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.fence2__btn{ min-width: 260px; }

.fence2__ghost{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.14);
  color: rgba(233,230,255,.78);
  text-decoration: none;
  font-weight: 850;
  transition: transform .18s ease, border-color .18s ease;
}

.fence2__ghost:hover{
  transform: translateY(-1px);
  border-color: rgba(168,85,247,.22);
}

.fence2__arrow{
  color: rgba(233,230,255,.6);
  font-weight: 900;
}

.fence2__micro{
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(233,230,255,.62);
  font-weight: 650;
  font-size: 13.5px;
  margin-top: 2px;
}

/* Right panel */
.fence2__panel{
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  box-shadow: 0 26px 70px rgba(0,0,0,.45);
  padding: 18px;
}

.fence2__panelTop{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.fence2__badge{
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(233,230,255,.68);
}

.fence2__stars{
  font-size: 14px;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #FFD37A, #F7B733, #D4AF37);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.fence2__pills{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.fence2__pill{
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  color: rgba(255,255,255,.88);
  font-weight: 850;
  font-size: 13px;
}

.fence2__metrics{
  display: grid;
  gap: 10px;
  margin: 14px 0 14px;
}

.fence2__metric{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}

.fence2__mLabel{
  color: rgba(233,230,255,.68);
  font-weight: 750;
  font-size: 13.5px;
}

.fence2__mValue{
  color: rgba(255,255,255,.92);
  font-weight: 950;
  font-size: 13.5px;
}

.fence2__note{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(233,230,255,.72);
  font-weight: 650;
  line-height: 1.55;
  font-size: 13.5px;
}

.fence2__noteIcon{
  color: rgba(168,85,247,.9);
  margin-top: 2px;
}

/* Mobile */
@media (max-width: 980px){
  .fence2{ padding: 78px 16px; }
  .fence2__grid{
    grid-template-columns: 1fr;
    padding: 34px 22px;
  }
  .fence2__btn{ width: 100%; min-width: 0; }
  .fence2__ghost{ width: 100%; justify-content: center; }
}


/* =========================
   FLOATING BUBBLE HEADER
========================= */

/* HEADER container */
.siteHeader{
  position: sticky;
  top: 14px;
  z-index: 1000;
  padding: 0 18px;
}

/* Main bubble */
.siteHeader__inner{
  max-width: 1180px;
  margin: 0 auto;

  height: 74px;
  padding: 12px 16px;

  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;

  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(10,10,18,.55);
  backdrop-filter: blur(16px);

  box-shadow: 0 18px 60px rgba(0,0,0,.45);
  overflow: hidden; /* <-- keeps CTA inside bubble */
}

/* tighter on scroll */
.siteHeader.is-scrolled .siteHeader__inner{
  height: 66px;
  background: rgba(10,10,18,.68);
  box-shadow: 0 18px 70px rgba(0,0,0,.55);
}

/* Logo */
.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  text-decoration:none;
  padding: 8px 10px;
  border-radius: 999px;
  flex: 0 0 auto;
}

.brand__logo{
  height: 42px;
  width: auto;
  display:block;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.35));
}

/* NAV should be plain links (no extra bubble) */
.nav{
  display:flex;
  align-items:center;
  gap: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  flex: 1 1 auto;
  justify-content: center; /* centers the links */
}

.nav__link{
  color: rgba(233,230,255,.78);
  text-decoration:none;
  font-weight: 850;
  font-size: 15.5px;      /* a bit bigger */
  padding: 10px 8px;
  border-radius: 12px;
  transition: background .16s ease, color .16s ease, transform .16s ease;
}

.nav__link:hover{
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  transform: translateY(-1px);
}

/* Actions stay inside the bubble */
.siteHeader__actions{
  display:flex;
  align-items:center;
  gap: 10px;
  flex: 0 0 auto;
  max-width: 520px; /* prevents pushing outside */
}

.siteHeader__ghost,
.siteHeader__cta{
  white-space: nowrap;
}

/* If your primary button is too wide on small desktops, let it shrink */
.siteHeader__cta{
  min-width: 0;
}

/* Burger (mobile only) */
.burger{
  display:none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  cursor:pointer;
}
.burger span{
  display:block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: rgba(255,255,255,.82);
}

/* Mobile sheet */
.mobileNav{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(8px);
  padding: 18px;
}

.mobileNav__panel{
  max-width: 560px;
  margin: 90px auto 0;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(700px 360px at 20% 0%, rgba(168,85,247,.18), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
  box-shadow: 0 30px 100px rgba(0,0,0,.60);
  padding: 18px;
}

.mobileNav__top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.mobileNav__title{
  color: rgba(255,255,255,.92);
  font-weight: 950;
  letter-spacing: -0.02em;
}

.mobileNav__close{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  color: rgba(255,255,255,.85);
  cursor:pointer;
}

.mobileNav__links{
  display:grid;
  gap: 8px;
  margin: 10px 0 14px;
}

.mobileNav__link{
  display:flex;
  justify-content: space-between;
  padding: 14px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  color: rgba(255,255,255,.92);
  text-decoration:none;
  font-weight: 900;
}

.mobileNav__cta{
  display:grid;
  gap: 10px;
  margin-top: 12px;
}

.mobileNav__micro{
  color: rgba(233,230,255,.62);
  font-weight: 650;
  font-size: 13.5px;
}

/* Responsive */
@media (max-width: 980px){
  .nav{ display:none; }
  .siteHeader__ghost, .siteHeader__cta{ display:none; }
  .burger{ display:block; }
}

@media (max-width: 768px){
  .siteHeader__logo img{
    height: 32px;
  }
}


.no-scroll{ overflow: hidden; }

:root{ --radius-pill: 999px; }

.siteHeader__inner,
.siteHeader .btn{
  border-radius: var(--radius-pill);
}

/* Prevent any "glass" edge from showing around the primary CTA */
.siteHeader__cta{
  position: relative;
  background: linear-gradient(135deg, var(--purple), var(--purple2));
  border: 0 !important;              /* kills faint border glow */
  box-shadow: none;                   /* optional: remove halo */
  overflow: hidden;                   /* clips any inner sheen */
  isolation: isolate;                 /* prevents blend bleed */
}

/* If your .btn has a pseudo-element glow, this disables it for the CTA */
.siteHeader__cta::before,
.siteHeader__cta::after{
  content: none !important;
}

.reviews__head{
  max-width: 900px;
  margin: 0 auto 42px;
  text-align: center;
}

.reviews__head .eyebrow{
  display: inline-block;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #a855f7;
}

.reviews__head h2{
  margin: 0;
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,.96);
}

/* ---------------- FOOTER ---------------- */
.siteFooter{
  padding: 0 0 28px;
  margin-top: 40px;
  position: relative;
}

.siteFooter::before{
  content:"";
  display:block;
  height: 1px;
  width: min(1100px, calc(100% - 36px));
  margin: 0 auto;
  background: linear-gradient(90deg,
    transparent,
    rgba(168,85,247,.55),
    rgba(124,58,237,.35),
    transparent
  );
  opacity: .9;
}

.siteFooter__wrap{
  padding-top: 46px;
  padding-bottom: 18px;
}

.siteFooter__top{
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 22px;
  align-items: start;
}

.siteFooter__brand{
  border-radius: 22px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.035));
  box-shadow: 0 24px 70px rgba(0,0,0,.40);
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}

.siteFooter__brand::after{
  content:"";
  position:absolute;
  inset:-40%;
  background: radial-gradient(circle at 30% 20%, rgba(168,85,247,.20), transparent 45%),
              radial-gradient(circle at 80% 35%, rgba(124,58,237,.18), transparent 50%);
  transform: rotate(12deg);
  pointer-events:none;
}

.footerBrand{
  display:inline-flex;
  align-items:center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.footerBrand__logo{
  height: 54px;
  width: auto;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  padding: 10px 12px;
}

.siteFooter__tagline{
  margin: 14px 0 0;
  color: rgba(233,230,255,.82);
  font-weight: 650;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.siteFooter__ctaRow{
  margin-top: 16px;
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.siteFooter__cta{
  min-width: 0; /* override your btn--primary min-width */
  padding: 14px 18px;
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(124,58,237,.28), 0 10px 25px rgba(0,0,0,.32);
}

.siteFooter__ghost{
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.10);
}

.siteFooter__micro{
  margin-top: 14px;
  display:flex;
  align-items:center;
  gap: 10px;
  color: rgba(233,230,255,.62);
  font-size: 14px;
  font-weight: 650;
  position: relative;
  z-index: 1;
  padding-bottom: 5px;
}

.siteFooter__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.footerCard{
  border-radius: 22px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.035);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 55px rgba(0,0,0,.35);
}

.footerCard__title{
  font-weight: 850;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  color: rgba(255,255,255,.92);
}

.footerLinks{
  display:grid;
  gap: 10px;
}

.footerLink{
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
  color: rgba(233,230,255,.80);
  font-weight: 700;
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}

.footerLink:hover{
  transform: translateY(-1px);
  border-color: rgba(168,85,247,.35);
  background: rgba(168,85,247,.08);
}

.footerContact{
  display:grid;
  gap: 10px;
}

.footerContact__row{
  display:flex;
  align-items:center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
  text-decoration:none;
  color: rgba(233,230,255,.84);
  font-weight: 700;
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}

.footerContact__row:hover{
  transform: translateY(-1px);
  border-color: rgba(168,85,247,.35);
  background: rgba(168,85,247,.08);
}

.footerContact__row--static:hover{
  transform:none;
  border-color: rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
}

.footerIcon{
  width: 36px; height: 36px;
  display:grid;
  place-items:center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(124,58,237,.18), rgba(168,85,247,.12));
  border: 1px solid rgba(168,85,247,.22);
  color: rgba(233,230,255,.95);
  flex: 0 0 auto;
}

.footerIcon svg{
  width: 18px;
  height: 18px;
}

.footerContact__text{
  line-height: 1.35;
}

.siteFooter__bottom{
  margin-top: 16px;
  display:flex;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 4px 0;
  color: rgba(233,230,255,.55);
  font-size: 13px;
  font-weight: 650;
}

.footerMiniLink{
  color: rgba(233,230,255,.70);
  text-decoration: none;
}

.footerMiniLink:hover{
  color: rgba(233,230,255,.92);
  text-decoration: underline;
}

@media (max-width: 920px){
  .siteFooter__top{
    grid-template-columns: 1fr;
  }
  .siteFooter__grid{
    grid-template-columns: 1fr;
  }
}


/* Footer photo card */
.footerPhoto{
  padding: 0;
  overflow: hidden;
}

.footerPhoto__link{
  display:block;
  position: relative;
  height: 100%;
  min-height: 220px;
  border-radius: 22px;
  text-decoration: none;
  color: inherit;
}

.footerPhoto__img{
  width: 100%;
  height: 100%;
  display:block;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform .45s ease;
}

.footerPhoto__overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 30% 25%, rgba(168,85,247,.22), transparent 45%),
    linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.55));
  pointer-events:none;
}

.footerPhoto__cap{
  position:absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 14px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(10,10,20,.42);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 60px rgba(0,0,0,.45);
}

.footerPhoto__kicker{
  display:inline-block;
  font-weight: 850;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(233,230,255,.70);
}

.footerPhoto__title{
  display:block;
  margin-top: 6px;
  font-weight: 950;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,.95);
}

.footerPhoto__sub{
  display:block;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(233,230,255,.72);
}

.footerPhoto__link:hover .footerPhoto__img{
  transform: scale(1.045);
}

@media (min-width: 921px){
  .siteFooter__grid{
    grid-template-columns: 1fr 1fr 1.15fr;
  }
}

/* Mini location photo inside left brand bubble */
.footerMiniPhoto{
  margin-top: 16px;
  display: block;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: 0 18px 55px rgba(0,0,0,.35);
  text-decoration: none;
  min-height: 160px;
}

.footerMiniPhoto__img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform .45s ease;
}

.footerMiniPhoto__overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(168,85,247,.22), transparent 45%),
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.62));
  pointer-events: none;
}

.footerMiniPhoto__cap{
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(10,10,20,.45);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 60px rgba(0,0,0,.45);
}

.footerMiniPhoto__kicker{
  display: inline-block;
  font-weight: 850;
  font-size: 11px;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(233,230,255,.70);
}

.footerMiniPhoto__title{
  display: block;
  margin-top: 6px;
  font-weight: 950;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,.95);
  line-height: 1.2;
}

.footerMiniPhoto__sub{
  display: block;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(233,230,255,.75);
}

.footerMiniPhoto:hover .footerMiniPhoto__img{
  transform: scale(1.05);
}

/* Make the 3 footer cards align to the same height */
@media (min-width: 921px){
  .siteFooter__top{
    align-items: stretch;
  }

  .siteFooter__brand{
    height: 360px;            /* tweak 340–400 to taste */
    display: flex;
    flex-direction: column;
  }

  .siteFooter__grid{
    align-items: stretch;
  }

  .footerCard{
    height: 360px;            /* same as brand bubble */
  }
}

/* Keep the photo tile compact and pinned to bottom of the brand bubble */
.footerMiniPhoto{
  margin-top: auto;           /* pushes photo to bottom */
  min-height: 0;              /* remove the earlier 160px floor */
  height: 150px;              /* adjust: 130–170 */
}

.footerMiniPhoto__img{
  height: 100%;
}

/* Expand button */
.footerPhotoExpand{
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(10,10,20,.55);
  color: rgba(255,255,255,.9);
  font-size: 16px;
  cursor: pointer;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0,0,0,.45);
  transition: transform .15s ease, background .15s ease;
  z-index: 2;
}

.footerPhotoExpand:hover{
  transform: scale(1.05);
  background: rgba(168,85,247,.35);
}

/* Modal */
.photoModal{
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.photoModal[hidden]{
  display: none;
}

.photoModal__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(5,5,15,.75);
  backdrop-filter: blur(18px);
}

.photoModal__content{
  position: relative;
  max-width: min(90vw, 1000px);
  max-height: 90vh;
  margin: auto;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 40px 120px rgba(0,0,0,.65);
}

.photoModal__content img{
  display: block;
  width: 100%;
  height: auto;
}

.photoModal__close{
  position: absolute;
  top: 10px;
  right: 12px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(10,10,20,.65);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  backdrop-filter: blur(10px);
}


.page--reviews .hero{
  padding-top: 90px;
}

.reviewsFeed__card{
  border-radius: 24px;
  padding: 22px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(14px);
  box-shadow: 0 30px 90px rgba(0,0,0,.45);
}

.reviewsContext__list{
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.reviewsContext__list li{
  font-weight: 650;
  color: rgba(233,230,255,.85);
}


/* ========= Free Strategy Build Hero ========= */
.fsbHero{
  position: relative;
  padding: clamp(84px, 10vw, 120px) 0 70px;
  overflow: hidden;
}

.fsbHero::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(1200px 500px at 30% 10%, rgba(168,85,247,.28), transparent 55%),
    radial-gradient(900px 500px at 85% 0%, rgba(99,102,241,.20), transparent 60%),
    radial-gradient(700px 500px at 70% 85%, rgba(168,85,247,.12), transparent 60%);
  pointer-events:none;
}

.fsbHero::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.0), rgba(0,0,0,.25));
  pointer-events:none;
}

.fsbHero__wrap{
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;

  border-radius: 28px;
  padding: clamp(26px, 4vw, 40px);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(16px);
  box-shadow: 0 38px 120px rgba(0,0,0,.55);
}

.fsbHero__badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(10,10,20,.42);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
}

.fsbHero__badgeDot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(168,85,247,.95);
  box-shadow: 0 0 0 6px rgba(168,85,247,.18);
}

.fsbHero__badgeText{
  font-weight: 900;
  letter-spacing: .02em;
  color: rgba(233,230,255,.90);
}

.fsbHero__badgePill{
  font-weight: 850;
  font-size: 12px;
  letter-spacing: .10em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(168,85,247,.16);
  color: rgba(233,230,255,.85);
}

.fsbHero__title{
  margin-top: 18px;
  font-weight: 950;
  letter-spacing: -0.04em;
  line-height: 1.02;
  font-size: clamp(34px, 5.2vw, 68px);
  color: rgba(255,255,255,.96);
}

.fsbHero__accent{
  display: inline-block;
  background: linear-gradient(90deg, rgba(168,85,247,1), rgba(99,102,241,1));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.fsbHero__sub{
  margin: 14px auto 0;
  max-width: 800px;
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.6;
  color: rgba(233,230,255,.78);
  font-weight: 650;
}

.fsbHero__ctaRow{
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.fsbHero__cta{
  padding-left: 20px;
  padding-right: 20px;
}

.fsbHero__link{
  font-weight: 800;
  text-decoration: none;
  color: rgba(233,230,255,.78);
  border-bottom: 1px solid rgba(168,85,247,.45);
  padding-bottom: 2px;
  transition: color .15s ease, border-color .15s ease;
}

.fsbHero__link:hover{
  color: rgba(255,255,255,.92);
  border-color: rgba(168,85,247,.85);
}

.fsbHero__meta{
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.fsbHero__metaItem{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  color: rgba(233,230,255,.78);
  font-weight: 700;
}

.fsbHero__metaIcon{
  width: 26px;
  height: 26px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(168,85,247,.14);
  color: rgba(255,255,255,.92);
  font-weight: 900;
}

.fsbHero__divider{
  margin-top: 26px;
  height: 1px;
  width: min(720px, 92%);
  margin-inline: auto;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
}

/* Mobile tightening */
@media (max-width: 640px){
  .fsbHero__wrap{ border-radius: 24px; }
  .fsbHero__metaItem{ width: 100%; justify-content: center; }
}


/* ========= Strategy Contrast Section ========= */
.fsbContrast{
  position: relative;
  padding: 70px 0;
  overflow: hidden;
}

.fsbContrast::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(900px 480px at 15% 15%, rgba(168,85,247,.18), transparent 62%),
    radial-gradient(900px 520px at 85% 85%, rgba(99,102,241,.12), transparent 66%);
  pointer-events:none;
}

.fsbContrast__wrap{
  position: relative;
  z-index: 1;
  display: grid;
  gap: 22px;
}

.fsbContrast__panel{
  border-radius: 28px;
  padding: clamp(22px, 3vw, 34px);
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(16px);
  box-shadow: 0 30px 110px rgba(0,0,0,.45);
}

.fsbContrast__panel--bad{
  border-color: rgba(255,255,255,.10);
}

.fsbContrast__panel--good{
  border-color: rgba(168,85,247,.18);
}

.fsbContrast__head{
  text-align: center;
  margin-bottom: 18px;
}

.fsbContrast__kicker{
  display: inline-block;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(10,10,20,.45);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(233,230,255,.78);
}

.fsbContrast__title{
  margin: 14px 0 0;
  font-weight: 950;
  letter-spacing: -0.03em;
  line-height: 1.08;
  font-size: clamp(24px, 3.1vw, 38px);
  color: rgba(255,255,255,.95);
}

.fsbContrast__panel--bad .fsbContrast__title{
  color: rgba(255,255,255,.92);
}

.fsbContrast__panel--good .fsbContrast__title{
  color: rgba(255,255,255,.96);
}

/* Grid of items */
.fsbContrast__grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.fsbContrast__grid--six{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Items */
.fsbContrast__item{
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 20px 70px rgba(0,0,0,.25);
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}

.fsbContrast__item:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.04);
}

.fsbContrast__text{
  font-weight: 850;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: rgba(233,230,255,.85);
}

.fsbContrast__dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  flex: 0 0 auto;
}

.fsbContrast__dot--bad{
  background: rgba(244,63,94,.95);
  box-shadow: 0 0 0 6px rgba(244,63,94,.18);
}

.fsbContrast__dot--good{
  background: rgba(34,197,94,.95);
  box-shadow: 0 0 0 6px rgba(34,197,94,.16);
}

/* CTA row under the good panel */
.fsbContrast__ctaRow{
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 840px){
  .fsbContrast__grid,
  .fsbContrast__grid--six{
    grid-template-columns: 1fr;
  }
  .fsbContrast__text{
    font-size: 17px;
  }
}

/* ========= What's Included ========= */
.fsbIncluded{
  position: relative;
  padding: 70px 0;
  overflow: hidden;
}

.fsbIncluded::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(1000px 520px at 50% 0%, rgba(168,85,247,.16), transparent 60%),
    radial-gradient(900px 520px at 10% 90%, rgba(99,102,241,.10), transparent 64%);
  pointer-events:none;
}

.fsbIncluded__wrap{
  position: relative;
  z-index: 1;
}

.fsbIncluded__head{
  text-align: center;
  max-width: 860px;
  margin: 0 auto 26px;
}

.fsbIncluded__kicker{
  display:inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(10,10,20,.45);
  color: rgba(233,230,255,.78);
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 12px;
}

.fsbIncluded__title{
  margin: 14px 0 0;
  font-weight: 950;
  letter-spacing: -0.03em;
  line-height: 1.08;
  font-size: clamp(26px, 3.2vw, 44px);
  color: rgba(255,255,255,.96);
}

.fsbIncluded__sub{
  margin: 12px auto 0;
  max-width: 760px;
  color: rgba(233,230,255,.76);
  font-weight: 650;
  line-height: 1.6;
  font-size: 16px;
}

/* Cards */
.fsbIncluded__grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.fsbIncluded__card{
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 18px 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 90px rgba(0,0,0,.35);
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}

.fsbIncluded__card:hover{
  transform: translateY(-2px);
  border-color: rgba(168,85,247,.22);
  background: rgba(255,255,255,.05);
}

.fsbIncluded__icon{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: rgba(233,230,255,.92);
  border: 1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(120px 60px at 20% 10%, rgba(168,85,247,.22), transparent 60%),
    rgba(255,255,255,.03);
}

.fsbIncluded__icon svg{
  width: 22px;
  height: 22px;
}

.fsbIncluded__cardTitle{
  margin: 0;
  font-weight: 950;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,.94);
  font-size: 20px;
}

.fsbIncluded__cardText{
  margin: 6px 0 0;
  color: rgba(233,230,255,.74);
  font-weight: 650;
  line-height: 1.55;
}

/* CTA row */
.fsbIncluded__ctaRow{
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 840px){
  .fsbIncluded__grid{
    grid-template-columns: 1fr;
  }
  .fsbIncluded__card{
    border-radius: 20px;
  }
}

/* ========= Claim Section ========= */
.fsbClaim{
  position: relative;
  padding: 70px 0;
  overflow: hidden;
}

.fsbClaim::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(1100px 600px at 25% 20%, rgba(168,85,247,.18), transparent 62%),
    radial-gradient(900px 600px at 85% 75%, rgba(99,102,241,.12), transparent 66%);
  pointer-events:none;
}

.fsbClaim__wrap{
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
}

.fsbClaim__card{
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(16px);
  box-shadow: 0 36px 120px rgba(0,0,0,.50);
}

.fsbClaim__left{
  padding: clamp(22px, 3.2vw, 36px);
}

.fsbClaim__right{
  position: relative;
  border-left: 1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(900px 460px at 30% 20%, rgba(168,85,247,.10), transparent 60%),
    rgba(10,10,20,.35);
}

.fsbClaim__badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(10,10,20,.40);
}

.fsbClaim__badgeDot{
  width: 10px; height: 10px;
  border-radius: 999px;
  background: rgba(34,197,94,.95);
  box-shadow: 0 0 0 6px rgba(34,197,94,.16);
}

.fsbClaim__badgeText{
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(233,230,255,.78);
}

.fsbClaim__badgeSep{
  color: rgba(233,230,255,.35);
  font-weight: 900;
}

.fsbClaim__badgeValue{
  font-weight: 900;
  color: rgba(233,230,255,.88);
}

.fsbClaim__title{
  margin: 16px 0 0;
  font-weight: 950;
  letter-spacing: -0.04em;
  line-height: 1.02;
  font-size: clamp(28px, 3.8vw, 52px);
  color: rgba(255,255,255,.96);
  text-transform: uppercase;
}

.fsbClaim__accent{
  background: linear-gradient(90deg, rgba(168,85,247,1), rgba(99,102,241,1));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.fsbClaim__p{
  margin: 14px 0 0;
  color: rgba(233,230,255,.76);
  font-weight: 650;
  line-height: 1.65;
  font-size: 16px;
  max-width: 56ch;
}

.fsbClaim__action{
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.10);
}

.fsbClaim__actionLine{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.fsbClaim__actionKicker{
  font-weight: 850;
  color: rgba(233,230,255,.68);
}

.fsbClaim__email{
  font-weight: 950;
  color: rgba(255,255,255,.92);
  text-decoration: none;
  border-bottom: 1px solid rgba(168,85,247,.55);
  padding-bottom: 2px;
}

.fsbClaim__email:hover{
  border-color: rgba(168,85,247,.90);
}

.fsbClaim__copy{
  appearance: none;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  color: rgba(233,230,255,.85);
  font-weight: 850;
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.fsbClaim__copy:hover{
  transform: translateY(-1px);
  border-color: rgba(168,85,247,.25);
  background: rgba(255,255,255,.08);
}

.fsbClaim__ctaRow{
  margin-top: 14px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Notice */
.fsbClaim__notice{
  margin-top: 16px;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(10,10,20,.35);
}

.fsbClaim__noticeIcon{
  width: 36px; height: 36px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 950;
  color: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(245,158,11,.14);
}

.fsbClaim__noticeText{
  color: rgba(233,230,255,.78);
  font-weight: 650;
  line-height: 1.55;
}

/* Right visual */
.fsbClaim__visual{
  position: relative;
  height: 100%;
  min-height: 380px;
  display: grid;
  place-items: center;
  padding: 18px;
}

.fsbClaim__img{
  width: 100%;
  max-width: 520px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 28px 100px rgba(0,0,0,.55);
  transform: translateY(2px);
}

.fsbClaim__glow{
  position: absolute;
  inset: 20%;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, rgba(168,85,247,.30), transparent 60%);
  filter: blur(40px);
  opacity: .55;
  pointer-events: none;
}

/* Catch card */
.fsbCatch{
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  padding: 18px 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(14px);
}

.fsbCatch__icon{
  width: 40px; height: 40px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  color: rgba(233,230,255,.86);
}

.fsbCatch__icon svg{ width: 22px; height: 22px; }

.fsbCatch__title{
  font-weight: 950;
  color: rgba(255,255,255,.94);
  letter-spacing: -0.02em;
  font-size: 18px;
}

.fsbCatch__p{
  margin: 8px 0 0;
  color: rgba(233,230,255,.74);
  font-weight: 650;
  line-height: 1.55;
}

/* Responsive */
@media (max-width: 980px){
  .fsbClaim__card{
    grid-template-columns: 1fr;
  }
  .fsbClaim__right{
    border-left: none;
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .fsbClaim__visual{
    min-height: 320px;
  }
}

/* ========= Contact Section ========= */
.fsbContact{
  position: relative;
  padding: 70px 0;
  overflow: hidden;
}

.fsbContact::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(1000px 520px at 50% 0%, rgba(168,85,247,.14), transparent 60%),
    radial-gradient(900px 520px at 12% 85%, rgba(99,102,241,.10), transparent 62%);
  pointer-events:none;
}

.fsbContact__wrap{
  position: relative;
  z-index: 1;
}

.fsbContact__head{
  text-align: center;
  max-width: 860px;
  margin: 0 auto 26px;
}

.fsbContact__kicker{
  display:inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(10,10,20,.45);
  color: rgba(233,230,255,.78);
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 12px;
}

.fsbContact__title{
  margin: 14px 0 0;
  font-weight: 950;
  letter-spacing: -0.03em;
  line-height: 1.05;
  font-size: clamp(30px, 3.6vw, 54px);
  color: rgba(255,255,255,.96);
  text-transform: uppercase;
}

.fsbContact__sub{
  margin: 10px auto 0;
  color: rgba(233,230,255,.76);
  font-weight: 650;
  line-height: 1.6;
  font-size: 16px;
}

.fsbContact__subAccent{
  display: inline-block;
  margin-left: 6px;
  color: rgba(168,85,247,.95);
  font-weight: 850;
}

.fsbContact__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

/* Cards */
.fsbContact__card{
  text-decoration: none;
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 14px;

  padding: 18px 18px;
  border-radius: 24px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 90px rgba(0,0,0,.35);
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}

.fsbContact__card:hover{
  transform: translateY(-2px);
  border-color: rgba(168,85,247,.22);
  background: rgba(255,255,255,.05);
}

.fsbContact__icon{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: rgba(233,230,255,.92);
  border: 1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(120px 60px at 20% 10%, rgba(168,85,247,.22), transparent 60%),
    rgba(255,255,255,.03);
}

.fsbContact__icon svg{
  width: 22px;
  height: 22px;
}

.fsbContact__label{
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(233,230,255,.65);
}

.fsbContact__value{
  margin-top: 6px;
  font-weight: 950;
  letter-spacing: -0.02em;
  font-size: 18px;
  color: rgba(255,255,255,.94);
}

.fsbContact__meta{
  margin-top: 6px;
  font-weight: 650;
  color: rgba(233,230,255,.70);
  line-height: 1.45;
}

.fsbContact__chev{
  font-weight: 950;
  color: rgba(233,230,255,.55);
  transition: transform .15s ease, color .15s ease;
}

.fsbContact__card:hover .fsbContact__chev{
  transform: translateX(2px);
  color: rgba(233,230,255,.85);
}

.fsbContact__note{
  margin-top: 18px;
  text-align: center;
  color: rgba(233,230,255,.70);
  font-weight: 750;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.10);
}

/* Responsive */
@media (max-width: 980px){
  .fsbContact__grid{
    grid-template-columns: 1fr;
  }
}