/* ============================================================
   Black Sand — Design System (Promoora-inspired)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400&display=swap');

/* --- Tokens ------------------------------------------------- */
@property --shine-x {
  syntax: '<percentage>';
  inherits: false;
  initial-value: -20%;
}
:root {
  --white:        #FFFFFF;
  --bg:           #FFFFFF;
  --bg-alt:       #F8FAFC;
  --dark:         #0A0A14;
  --dark-2:       #0F172A;
  --text:         #0F172A;
  --text-body:    #64748B;
  --text-light:   #94A3B8;
  --yellow:       #fdd468;
  --yellow-dark:  #fdab44;
  --pink:         #FFD9E2;
  --teal:         #C8F5EF;
  --lavender:     #C4B5FD;
  --border:       #E2E8F0;
  --border-dark:  rgba(255,255,255,.1);
  --radius-sm:    8px;
  --radius:       12px;
  --radius-lg:    20px;
  --radius-xl:    28px;
  --shadow-sm:    0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow:       0 4px 20px rgba(0,0,0,.08);
  --shadow-lg:    0 12px 48px rgba(0,0,0,.1);
}

/* --- Skip link (accessibility) ------------------------------ */

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 12px;
  padding: 10px 15px;
  border-radius: 999px;
  background: var(--dark-2);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .skip-link {
    transition: none;
  }
}

/* --- Reset -------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* --- Layout ------------------------------------------------- */


.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Buttons ----------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 35px;
  border-radius: 500px;
  font-size: .9375rem;
  font-weight: 600;
  line-height: 1;
  transition: background .65s, box-shadow .45s, border-color .45s, color .45s, transform .4s;
  white-space: nowrap;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }

a.btn.text-reveal__line {
  font-size: .9375rem;
  font-weight: 600;
  line-height: 1;
  display: inline-flex;
  color: var(--white);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 1.5s ease, transform 1.5s ease, background .65s, box-shadow .45s, color .45s !important;
}

a.btn.text-reveal__line.is-visible {
  opacity: 1;
  transform: none;
}

a.btn.text-reveal__line:hover {
  background: #1e293b;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 12px 32px rgba(15,23,42,.3);
}

.btn-primary {
  background: var(--dark-2);
  color: var(--white);
}
.btn-primary:hover {
  background: #1e293b;
  box-shadow: 0 16px 40px rgba(15,23,42,.25);
}

.btn-secondary {
  background: var(--white);
  color: var(--text);
  border: 3px solid var(--dark-2);
}
.btn-secondary:hover {
  border-color: var(--shadow); 
  color: var(--text); 
  background: #fed066; 
  }
.btn-ghost {
  background: rgba(255,255,255,.08);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.2);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.4);
}

.btn-sm { padding: 9px 18px; font-size: .875rem; }
.btn .btn-icon { width: 18px; height: 18px; flex-shrink: 0; }

/* --- Eyebrow ----------------------------------------------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--text);
  background: var(--yellow);
  padding: 5px 14px 5px 10px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.eyebrow img { width: 16px; height: 16px; flex-shrink: 0; }

.site-nav__text-logo {
  display: block;
  width: clamp(30px, 12vw, 80px);
  height: auto;
  object-fit: contain;
}
/* --- Scroll reveal ----------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s cubic-bezier(0.45, 2, 0.56, 1.5), transform 1s cubic-bezier(0.42, 1, 0.56, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }


/* ============================================================
   HERO
   ============================================================ */

.hero {
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 250px 0 200px;
  background: transparent;
}

.hero__pixels {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero > .container {
  position: relative;
  z-index: 3;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.hero__blob {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
}
.hero__blob--lavender {
  width: 65vw; height: 65vw;
  max-width: 820px; max-height: 820px;
  background: radial-gradient(circle, rgba(196,181,253,.3) 0%, transparent 62%);
  left: -14%; top: -12%;
  animation: blob-drift-a 24s ease-in-out infinite;
}
.hero__blob--yellow {
  width: 55vw; height: 55vw;
  max-width: 680px; max-height: 680px;
  background: radial-gradient(circle, rgba(236,229,216,.58) 0%, transparent 62%);
  left: 28%; top: -30%;
  animation: blob-drift-b 30s ease-in-out infinite;
}
.hero__blob--pink {
  width: 60vw; height: 60vw;
  max-width: 760px; max-height: 760px;
  background: radial-gradient(circle, rgba(255,253,208,.78) 0%, transparent 62%);
  right: -12%; top: 2%;
  animation: blob-drift-c 27s ease-in-out infinite;
}
@keyframes blob-drift-a {
  0%, 100% { transform: translate(0, 0) scale(1); }
  35%       { transform: translate(28px, -20px) scale(1.05); }
  68%       { transform: translate(-18px, 14px) scale(.97); }
}
@keyframes blob-drift-b {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%       { transform: translate(-22px, 18px) scale(1.04); }
  72%       { transform: translate(16px, -12px) scale(.98); }
}
@keyframes blob-drift-c {
  0%, 100% { transform: translate(0, 0) scale(1); }
  30%       { transform: translate(-24px, -16px) scale(1.03); }
  65%       { transform: translate(20px, 18px) scale(.96); }
}
.hero .container { position: relative; z-index: 1; width: 100%; }


/* Hero dashboard mockup */
.hero__dashboard {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  margin: 104px auto 0;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  overflow: hidden;
  box-shadow: 0 -4px 0 rgba(0,0,0,.04), 0 20px 80px rgba(0,0,0,.14);
  animation: float-bob 11s ease-in-out infinite;
}
@keyframes float-bob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
.hero__dashboard img {
  width: 100%;
  display: block;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 4;
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}
@keyframes hero-line-in {
  from { opacity: 0; transform: translateY(15px); }
  to   { opacity: 1; transform: none; }
}
.hero__line {
  opacity: 0;
  color: #fff;
  animation: hero-line-in .65s cubic-bezier(0.65, .65, .65, 1) both;
  animation-delay: calc(var(--i, 0) * .65s);
  transition: color 1.6s ease;
}

/* Triggered by JS once the intro video fades out */
.hero--text-settled .hero__line {
  color: var(--text);
}
h1 .hero__line { display: block; }
.hero__actions.hero__line { display: flex; }


.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--text);
  font-size: .8rem;
  font-weight: 600;
  padding: 5px 14px 5px 10px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero__badge-dot {
  width: 7px; height: 7px;
  background: var(--text);
  border-radius: 50%;
  animation: blink 4s ease infinite;
}
@keyframes blink {
  0%,100% { opacity: 1; } 50% { opacity: .2; }
}

.hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.875rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.03em;
  color: inherit;
  margin-bottom: 28px;
  text-shadow: 0 0 1px #ffffff, 0 0 1px #ffffff;

}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 100px;
}

.hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 190px;
  padding: 18px 35px;
  border: 1px solid transparent;
  border-radius: 500px;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.14);
  transition: background 0.4s, color 0.4s, border-color 0.4s,
    box-shadow 0.4s, transform 0.4s;
}

.hero__button:hover {
  transform: translateY(-2px);
}

.hero__button span {
  transition: transform 0.25s ease;
}

.hero__button:hover span {
  transform: translateX(4px);
}

.hero__button--primary {
  color: #fff;
  background: #0f172a;
}

.hero__button--primary:hover {
  color: #17140c;
  background: #fdd468;
  box-shadow: 0 15px 34px rgba(253, 212, 104, 0.32);
}

.hero__button--secondary {
  color: #0f172a;
  border-color: rgba(15, 23, 42, 0.24);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero__button--secondary:hover {
  border-color: #0f172a;
  background: #fff;
}

@media (max-width: 540px) {
  .hero__actions {
    width: 100%;
    flex-direction: column;
  }

  .hero__button {
    width: min(100%, 310px);
  }


}
.hero__footnote {
  font-size: .875rem;
  color: var(--text-light);


}
/* ============================================================
   FREE GOOGLE VISIBILITY AUDIT
   ============================================================ */

.audit-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(100px, 12vw, 170px) 0;
  background: #f8f5ee;
}

.audit-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(
      to bottom,
      #f8f5ee 0,
      transparent 110px,
      transparent calc(100% - 110px),
      #f8f5ee 100%
    ),
    radial-gradient(
      circle at 12% 20%,
      rgba(146, 129, 204, 0.18),
      transparent 36%
    ),
    radial-gradient(
      circle at 84% 75%,
      rgba(245, 166, 35, 0.16),
      transparent 34%
    ),
    linear-gradient(
      145deg,
      #fbfaf6 0%,
      #f4efe6 52%,
      #fff8e5 100%
    );
  pointer-events: none;
}

.audit-section__video {
  position: absolute;
  z-index: -2;
  top: 50%;
  left: 4%;
  width: min(100vw, 900px);
  height: auto;
  opacity: 0.61;
  mix-blend-mode: multiply;
  filter: saturate(0.35) contrast(0.65);
  transform: translateY(-50%);
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    #000 24%,
    rgba(0, 0, 0, 0.78) 54%,
    transparent 72%
  );
  mask-image: radial-gradient(
    ellipse at center,
    #000 24%,
    rgba(0, 0, 0, 0.78) 54%,
    transparent 72%
  );
  pointer-events: none;
}

.audit-section__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    90deg,
    rgba(248, 245, 238, 0.12),
    rgba(248, 245, 238, 0.58) 58%,
    rgba(248, 245, 238, 0.88)
  );
  pointer-events: none;
}

.audit-section__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .75fr);
  gap: clamp(56px, 8vw, 110px);
  align-items: center;
}

.audit-section__copy {
  max-width: 650px;
}

.audit-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  padding: 8px 13px;
  border: 1px solid rgba(58,46,40,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.64);
  color: #fec247;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.audit-section__eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fec247;
  box-shadow: 0 0 0 5px rgba(253,200,76,.2);
}

.audit-section h2 {
  max-width: 13ch;
  margin: 0 0 24px;
  color: #2b211c;
  font-size: clamp(2.7rem, 5.2vw, 3rem);
  font-weight: 650;
  line-height: .98;
  letter-spacing: -.055em;
}

.audit-section__lead {
  max-width: 56ch;
  margin: 0 0 30px;
  color: #625a54;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.65;
}

.audit-section__truths {
  display: grid;
  gap: 8px;
  margin-bottom: 32px;
  color: #49413c;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.45;
}

.audit-section__truths p {
  margin: 0;
}

.audit-section__truths strong {
  color: #0f0f0e;
  font-weight: 700;
}


.audit-section__promise {
  display: flex;
  gap: 14px;
  max-width: 570px;
  padding: 18px 20px;
  border: 1px solid rgba(58,46,40,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 12px 40px rgba(46,37,31,.08);
  backdrop-filter: blur(10px);
}

.audit-section__check {
  display: grid;
  place-items: center;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fdd468;
  color: #2b211c;
  font-size: 14px;
  font-weight: 800;
}

.audit-section__promise div {
  display: grid;
  gap: 4px;
}

.audit-section__promise strong {
  color: #2b211c;
  font-size: 15px;
}

.audit-section__promise span:last-child {
  color: #756d67;
  font-size: 13px;
  line-height: 1.5;
}

.audit-card {
  padding: clamp(18px, 4vw, 42px);
  border: 2px solid rgba(192, 192, 192, 1.0);
  border-radius: 30px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 26px 70px rgba(44,35,29,.15);
  backdrop-filter: blur(28px);
}

.audit-card__step {
  margin-bottom: 16px;
  color: #fdab44;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.audit-card h3 {
  margin: 0 0 12px;
  color: #2b211c;
  font-size: clamp(1.7rem, 2.8vw, 2.35rem);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.audit-card > p {
  margin: 0 0 28px;
  color: #756d67;
  font-size: 14px;
  line-height: 1.6;
}

.audit-form {
  display: grid;
  gap: 17px;
}

.audit-form__field {
  display: grid;
  gap: 7px;
}

.audit-form label {
  color: #4c443e;
  font-size: 13px;
  font-weight: 650;
}

.audit-form label span {
  color: #918982;
  font-weight: 450;
}

.audit-form input {
  width: 100%;
  min-height: 48px;
  padding: 0 15px;
  border: 1px solid #ddd4ca;
  border-radius: 13px;
  outline: 0;
  background: #fbfaf7;
  color: #2b211c;
  font: inherit;
  font-size: 15px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.audit-form input:focus {
  border-color: #d49a25;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(253,200,76,.2);
}

.audit-form input[aria-invalid="true"] {
  border-color: #c84b42;
  box-shadow: 0 0 0 3px rgba(200,75,66,.12);
}

.audit-form__error {
  min-height: 0;
  color: #a53b35;
  font-size: 12px;
}

.audit-form__error:empty {
  display: none;
}

.audit-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  margin-top: 3px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: #fdd468;
  box-shadow: 0 8px 24px rgba(253,200,76,.32);
  color: #241e19;
  font-size: 14px;
  font-weight: 750;
  cursor: pointer;
  transition: transform .65s ease, background .65s ease, box-shadow .65s ease;
}

.audit-form__submit:hover {
  background: #FFFFE0;
  box-shadow: 0 10px 28px rgba(253,200,76,.4);
  transform: translateY(-2px);
}

.audit-form__submit span {
  transition: transform .2s ease;
}

.audit-form__submit:hover span {
  transform: translateX(3px);
}

.audit-form__note {
  margin: -4px 0 0;
  color: #8b837d;
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
}

.audit-form__success {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border: 1px solid rgba(69,122,78,.2);
  border-radius: 16px;
  background: #f1f8ef;
  color: #315d38;
}

.audit-form__success[hidden] {
  display: none;
}

.audit-form__success > span {
  display: grid;
  place-items: center;
  flex: 0 0 25px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #d9ecd6;
  font-weight: 800;
}

.audit-form__success p {
  margin: 3px 0 0;
  color: #537459;
  font-size: 12px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .audit-section__inner {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .audit-section__copy {
    max-width: 720px;
  }

  .audit-section__video {
    top: 23%;
    left: 50%;
    width: min(110vw, 850px);
    opacity: .12;
    transform: translate(-50%, -50%);
  }

  .audit-section__veil {
    background: linear-gradient(to bottom, rgba(248,245,238,.15), rgba(248,245,238,.7) 48%, rgba(248,245,238,.94));
  }
}

@media (max-width: 600px) {
  .audit-section {
    padding: 88px 0;
  }

  .audit-section h2 {
    font-size: clamp(2.5rem, 13vw, 3.7rem);
  }

  .audit-card {
    border-radius: 24px;
  }
}

/* ============================================================
   FINAL CTA
   ============================================================ */

.cta-section {
  padding: 104px 0;
  background: linear-gradient(155deg, #FFFFFF 0%, #FFFFFF 25%, #FFFFFF 55%, #c6b0e4 80%, #fecc4f 100%);
  position: relative;
  overflow: hidden;
}
.cta__logo {
  height: 80px;
  width: auto;
  margin-bottom: 16px;
}
.cta-section::before {
  content: '';
  position: absolute;
  bottom: -60px; right: 8%;
  width: 500px; height: 380px;
  background: radial-gradient(ellipse, rgba(255,140,110,.22) 0%, transparent 65%);
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/logotransparent.gif?v=loop') no-repeat 30% center / 420px auto;
  opacity: 0;
  filter: blur(12px);
  pointer-events: none;
  z-index: 0;
  transition: opacity 1.9s ease, filter 1.9s ease;
}

.cta-section.logo-visible::after {
  opacity: 0.3;
  filter: blur(0px);
  animation: logo-float-cta 6s ease-in-out infinite;
  animation-delay: 1.4s;
}

.cta__inner {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta__inner h2 {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.08;
  letter-spacing: -.03em;
  margin-bottom: 12px;
}
.cta__sub {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
}
.cta__inner > p {
  font-size: 1.0625rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 440px;
}
.cta__inner .btn { margin-bottom: 20px; }
.cta__footnote {
  font-size: .875rem;
  color: var(--text-light);
}


/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  position: relative;
  background: #222224;
  padding: 64px 0 0;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;

}

.footer .container {
  position: relative;
  z-index: 1;
}

.footer__inner {
  display: grid;
  grid-template-columns: max-content max-content;
  justify-content: start;
  gap: clamp(24px, 4vw, 48px);
  align-items: left;
  padding-bottom: 14px;
  border-bottom: 0;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(60px, max-content));
  justify-content: start;
  gap: 20px;
  align-items: start;
  margin-left: 0;
  padding-left: 0;
}
.footer__link-group:first-child {
  grid-template-columns: repeat(2, max-content);
  column-gap: 24px;
  row-gap: 8px;
}

.footer__link-group:first-child > p {
  grid-column: 1 / -1;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer__logo-img {
  height: 62px;
  width: auto;
  display: block;
  opacity: 1;
}

.footer__brand p {
  font-size: .8125rem;
  color: rgba(255,255,255,.25);
  line-height: 1.5;
}

.footer__links {
  display: flex;
  flex-direction: row;
  gap: 28px;
  margin-left: auto;
  padding-left: 80px;
}

.footer__links a {
  font-size: .8125rem;
  font-weight: 500;
  color: rgba(255,255,255,5);
  transition: color .25s;
}

.footer__links a:hover {
  color: rgba(255,255,255,.85);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  flex-wrap: wrap;
}

.footer__bottom p {
  font-size: .75rem;
  color: rgba(255,255,255,.15);
}

.footer__utility {
  display: flex;
  gap: 20px;
}

.footer__utility a {
  font-size: .75rem;
  color: rgba(255,255,255,.15);
  transition: color .25s;
}

.footer__utility a:hover {
  color: rgba(255,255,255,.5);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 960px) {
  .benefits__tab-grid { grid-template-columns: repeat(2, 1fr); }
  .panel__grid { grid-template-columns: 1fr; }
  .panel__visual { min-height: 280px; }
  .pt-card__split { grid-template-columns: 1fr; }
  .pt-card__visual { display: none; }
  .pt-card--type { padding: 48px 40px; }
  .how-steps { grid-template-columns: 1fr; }
  .step--teal { min-height: 240px; align-self: auto; }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .hero { min-height: auto; padding: 64px 0 0; }
  .hero__social { display: none; }
  .hero__dashboard { margin-top: 36px; }

  .problem { padding: 64px 0; }
  .text-reveal__card { padding: 36px 28px; }
  .text-reveal__line { font-size: .9375rem; }
  .text-reveal__line--emphasis { font-size: 1.0625rem; }
  .text-reveal__line--cta { font-size: 1.25rem; }

  .testimonial { padding: 36px 28px; }

  .benefits__tab-grid { grid-template-columns: repeat(2, 1fr); padding: 8px 8px 0; }
  .tab-item { border-radius: var(--radius) var(--radius) 0 0; }
  .features-panel.is-active { margin: 0 8px 8px; border-radius: var(--radius); }
  .panel__content { padding: 36px 28px; }

  .guarantee__card { display: none; }
  .guarantee__terms { flex-direction: column; align-items: center; gap: 14px; }

  .how-steps { grid-template-columns: 1fr; }
  .step { min-height: 200px; }
}

@media (max-width: 540px) {
  .benefits__tab-grid { grid-template-columns: 1fr; }
  .hero__price-row { flex-direction: column; gap: 6px; }
  .hero__price-sep { display: none; }
  .footer__inner { flex-direction: column; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   Black Sand CTA — Hero CTA
   ============================================================ */

.bs-hero {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 22vh 24px 18vh;
  background: #000;
  position: relative;
  overflow: hidden;
}

.bs-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.2;
}

.bs-hero::before {
  display: none;
}

.bs-hero__intro-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
  opacity: 1;
  transition: opacity 1.8s ease;
}

.bs-hero__intro-video.is-fading {
  opacity: 0;
}

.bs-hero::before {
  display: none;
}

.bs-hero__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 600px;
  text-align: center;
}

.bs-hero__headline {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: clamp(2.5rem, 6vw, 3rem);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: #fff;
  animation: bs-fade-up 0.7s cubic-bezier(0.16,1,0.3,1) both;
}

.bs-hero__cta {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: bs-fade-up 0.7s cubic-bezier(0.16,1,0.3,1) 0.28s both;
}

.bs-hero__btn {
  position: relative;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 18px 36px;
  background: linear-gradient(105deg, #f5c842 0%, #f0a800 40%, #e8c840 70%, #f5c842 100%);
  background-size: 200% 100%;
  color: #1a1000;
  box-shadow:
    0 0 0 1px rgba(255,200,60,0.3),
    0 4px 16px rgba(240,168,0,0.45),
    0 12px 40px rgba(240,168,0,0.25);
  transition:
    background-position 0.6s ease,
    box-shadow 0.4s cubic-bezier(0.16,1,0.3,1),
    transform 0.4s cubic-bezier(0.16,1,0.3,1);
  overflow: hidden;
}

/* Shimmer sweep */
.bs-hero__btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255,255,255,0.45) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  animation: btn-shimmer 2.8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes btn-shimmer {
  0%   { left: -75%; opacity: 0; }
  10%  { opacity: 1; }
  50%  { left: 130%; opacity: 1; }
  51%  { opacity: 0; }
  100% { left: 130%; opacity: 0; }
}

.bs-hero__btn:hover {
  background: linear-gradient(105deg, #ffffff 0%, #fffaf0 50%, #ffffff 100%);
  background-size: 200% 100%;
  color: #1a1000;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.6),
    0 0 24px rgba(255,255,255,0.4),
    0 8px 32px rgba(255,255,255,0.25),
    0 20px 60px rgba(255,220,100,0.3);
  transform: translateY(-3px) scale(1.00);
}

.bs-hero__btn:active {
  transform: translateY(0) scale(0.99);
  box-shadow:
    0 0 0 1px rgba(255,200,60,0.3),
    0 2px 8px rgba(240,168,0,0.4);
}


.bs-hero__microcopy {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
}

@keyframes bs-fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   Black Sand CTA — Features Carousel
   ============================================================ */

.bs-carousel {
  position: relative;
  background: hsl(42, 28%, 97%);
  padding: 48px 0 72px;
  overflow: hidden;
  outline: none;
  font-family: 'Roboto', system-ui, sans-serif;
  contain: layout paint;
  transform: translateZ(0);
}

.bs-carousel__glow {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-30%);
  width: 760px;
  height: 680px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255,188,128,0.50) 0%, rgba(255,180,110,0.22) 45%, transparent .9%);
  pointer-events: none;
  filter: blur(12px);
}

.bs-carousel__header {
  position: relative;
  z-index: 2;
  padding: 0 48px;
  margin-bottom: 44px;
}

.bs-carousel__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: #fec247;
}

.bs-carousel__dot {
  width: 7px;
  height: 7px;
  background: #F2AF13;
  flex-shrink: 0;
}

.bs-carousel__heading {
  font-family: 'Roboto', system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: hsl(25, 15%, 18%);
  margin: 0;
}

/* Stage */
.bs-carousel__stage {
  position: relative;
  height: 520px;
  overflow: hidden;
  padding: 0 200px;
  margin: 0 -200px;
  transform: translateZ(0);
}

/* Cards */
.bs-card {
  position: absolute;
  left: 50%;
  top: 0;
  width: 480px;
  height: 520px;
  border-radius: 36px;
  overflow: hidden;
  isolation: isolate;
  will-change: transform, opacity;
transition: transform 0.9s cubic-bezier(0.45, 0.05, 0.55, 0.95),
              opacity   0.75s cubic-bezier(0.45, 0.05, 0.55, 0.95),
              box-shadow 0.9s cubic-bezier(0.45, 0.05, 0.55, 0.95),
              z-index 0s linear 0.45s;          
}

.bs-card[data-state="active"] {
  transform: translateX(-50%) scale(1);
  opacity: 1;
  z-index: 10;
  box-shadow: 0 24px 64px rgba(0,0,0,0.28);
  pointer-events: auto;
  cursor: default;
}

.bs-card[data-state="next"] {
  transform: translateX(calc(-50% + 455px)) scale(0.82);
  opacity: 0.88;
  z-index: 5;
  box-shadow: none;
  pointer-events: auto;
}

.bs-card[data-state="prev"] {
  transform: translateX(calc(-50% - 455px)) scale(0.82);
  opacity: 0.88;
  z-index: 5;
  box-shadow: none;
  pointer-events: auto;
}

.bs-card[data-state="hidden-right"] {
  transform: translateX(calc(-50% + 715px)) scale(0.6);
  opacity: 0;
  z-index: 0;
  pointer-events: none;
}

.bs-card[data-state="hidden-left"] {
  transform: translateX(calc(-50% - 715px)) scale(0.6);
  opacity: 0;
  z-index: 0;
  pointer-events: none;
}

/* While cards are mid-slide, block hover/click on them — otherwise a moving
   card can pass under a stationary cursor and retrigger goTo() mid-flight,
   which causes the jitter/stacking glitch. main.js toggles this class on
   #bs-stage for the duration of the CSS transition above. */
.bs-carousel__stage.is-transitioning .bs-card {
  pointer-events: none;
}

.bs-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
}

.bs-card__bg {
  width: 100%;
  height: 100%;
  background: linear-gradient(148deg, #1a1614 0%, #0c0a09 100%);
}

/* Website preview iframe (card index 2) */
.bs-card__preview {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.bs-card__preview-frame {
  position: absolute;
  top: 0;
  left: 0;
  /* 3× the card dimensions so the full desktop layout is visible */
  width: 1440px;
  height: 1560px;
  border: none;
  transform: scale(0.3333);
  transform-origin: top left;
  pointer-events: none;
  display: block;
}

/* Card overlay & text */
.bs-card[data-index="0"] .bs-card__bg { background: #1a1614; }
.bs-card[data-index="1"] .bs-card__bg { background: linear-gradient(148deg, #1c1a16 0%, #0c0a09 100%); }
.bs-card[data-index="2"] .bs-card__bg { background: linear-gradient(148deg, #191715 0%, #0c0a09 100%); }
.bs-card[data-index="3"] .bs-card__bg { background: linear-gradient(148deg, #1a1210 0%, #0c0a09 100%); }

.bs-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 62%;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.35) 52%, transparent 100%);
  pointer-events: none;
}

.bs-card__text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 28px 30px;
}

.bs-card__leading {
  font-family: 'DM Sans', system-ui, sans-serif;
  margin: 0 0 7px;
  color: #fff;
  font-size: 1.28rem;
  font-weight: 600;
  line-height: 1.2;
}

.bs-card__body {
  margin: 0;
  color: rgba(255,255,255,0.70);
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 400;
}

/* ============================================================
   FLOATING SITE NAV
   ============================================================ */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 66px;
  padding: 12px 0 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  pointer-events: none;
}

.site-nav::after {
  display: none;
}

.site-nav__wrap {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  pointer-events: auto;
}

.site-nav__pill {
  display: flex;
  align-items: center;
  height: 54px;
  padding: 0 20px;
  border: 1px solid rgba(58, 46, 40, .08);
  border-radius: 999px;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 8px 28px rgba(40, 33, 28, .10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: box-shadow 2s ease, transform 2s ease;
}

.site-nav.scrolled .site-nav__pill {
  box-shadow: 0 10px 32px rgba(40, 33, 28, .16);
}

.site-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  color: #2b211c;
  font-size: 15px;
  font-weight: 650;
  letter-spacing: -.02em;
  text-decoration: none;
  transition: opacity 2s ease;
}

.site-nav__brand:hover {
  opacity: .78;
}

.site-nav__mark {
  width: 26px;
  height: 26px;
  overflow: visible;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto;
  padding: 0 18px;
}

.site-nav__links a,
.site-nav__mobile > a:not(.site-nav__mobile-cta) {
  padding: 7px 10px;
  border-radius: 999px;
  color: #6f6862;
  font-size: 13px;
  font-weight: 550;
  line-height: 1;
  text-decoration: none;
  transition: color 2s ease, background 2s ease;
}

.site-nav__links a::after {
  display: none;
}

.site-nav__links a:hover {
  background: #ffffff;
  color: #fdab44;
  border-radius: 999px;
  transition: background 2s ease, color 2s ease;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);


}.site-nav__links a.is-active {
  background: #ffffff;
  color: #fdd468;
  border-radius: 999px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}

.site-nav__cta,
.site-nav__mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 0 0 auto;
  padding: 9px 16px;
  border-radius: 999px;
  background: #fdd468;
  box-shadow: 0 3px 14px rgba(253, 200, 76, .4);
  color: #161413;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: transform 2s ease, background 2s ease;
}

.site-nav__cta:hover,
.site-nav__mobile-cta:hover {
  background: #fdd66b;
  transform: translateY(-1px);
}

.site-nav__cta span,
.site-nav__mobile-cta span {
  transition: transform .2s ease;
}

.site-nav__cta:hover span,
.site-nav__mobile-cta:hover span {
  transform: translateX(3px);
}

.site-nav__menu {
  display: none;
  width: 32px;
  height: 32px;
  margin-left: 8px;
  padding: 8px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.site-nav__menu span {
  display: block;
  width: 16px;
  height: 1.5px;
  margin: 3px 0;
  border-radius: 2px;
  background: #2b211c;
  transition: transform 2s ease, opacity 2s ease;
}

.site-nav__menu[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(4.5px) rotate(45deg);
}

.site-nav__menu[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.site-nav__menu[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-4.5px) rotate(-45deg);
}

.site-nav__mobile {
  display: none;
  width: min(440px, calc(100% - 32px));
  margin: 8px auto 0;
  padding: 10px;
  border: 1px solid rgba(58, 46, 40, .08);
  border-radius: 22px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 14px 36px rgba(40, 33, 28, .14);
  pointer-events: auto;
}

.site-nav__mobile.is-open {
  display: flex;
  flex-direction: column;
  max-height: none;
}

.site-nav__mobile > a:not(.site-nav__mobile-cta) {
  padding: 12px 14px;
  border: 0;
}

.site-nav__mobile > a.is-active {
  color: #9a6510;
  background: #fff5d8;
}

.site-nav__mobile-cta {
  margin-top: 8px;
  padding: 12px 16px;
}

@media (max-width: 760px) {
  .site-nav {
    height: 60px;
    padding-top: 8px;
  }

  .site-nav__pill {
    height: 52px;
    padding: 0 12px 0 16px;
  }

  .site-nav__links,
  .site-nav__pill > .site-nav__cta {
    display: none;
  }

  .site-nav__brand {
    margin-right: auto;
  }

  .site-nav__menu {
    display: block;
  }
}

/* Slow waves between each major page section */
.wave-divider {
  position: relative;
  z-index: 5;
  width: 100%;
  height: 64px;
  margin: -32px 0;
  overflow: hidden;
  line-height: 0;
  color: var(--wave-bottom);
  background: transparent;
  pointer-events: none;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.wave-divider path {
  fill: currentColor;
}

.wave-divider--hero-audit {
  --wave-bottom: #f8f5ee;
}

.wave-divider--audit-video {
  --wave-bottom: #f8f5ee;
}

.wave-divider--video-features {
  --wave-bottom: hsl(42, 28%, 97%);
}

.wave-divider--features-cta {
  --wave-bottom: #ffffff;
}

.wave-divider--cta-footer {
  --wave-bottom: #222224;
}

/* Mobile */
@media (max-width: 640px) {
  .wave-divider {
    height: 44px;
    margin: -22px 0;
  }

  .bs-carousel__header { padding: 0 24px; }
  .bs-carousel__stage { height: 380px; }
  .bs-card {
    width: 300px;
    height: 380px;
  }
.bs-card[data-state="next"] {
  transform: translateX(calc(-50% + 290px)) scale(0.82);
  }
  .bs-card[data-state="prev"] {
  transform: translateX(calc(-50% - 290px)) scale(0.82);
  }
}
/* HOW IT WORKS PAGE */

.process-steps {
  padding: 80px 24px;
  background: #fff;
}

.process-steps__container {
  width: min(100%, 1024px);
  margin: 0 auto;
  display: grid;
  gap: 32px;
}

.process-card {
  display: grid;
  grid-template-columns: 2fr 1fr;
  overflow: hidden;
  border: 1px solid #dedbd5;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(22, 20, 19, 0.07);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(22, 20, 19, 0.11);
}

.process-card__main {
  padding: 48px;
}

.process-card__heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.process-card__number {
  font-size: 32px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.04em;
}

.process-card__number--navy { color: #000000; }
.process-card__number--orange { color: #fdcd54; }
.process-card__number--blue { color: #7bb7f7; }
.process-card__number--sage { color: #a6bffb; }
.process-card__number--amber { color: #fea943; }

.process-card__eyebrow {
  margin: 0 0 3px;
  color: #fec247;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.process-card h3 {
  margin: 0;
  color: #211f1d;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.process-card__description {
  max-width: 52ch;
  margin: 0;
  color: #645f59;
  font-size: 16px;
  line-height: 1.7;
}

.process-card__details {
  display: flex;
  align-items: center;
  padding: 40px;
  border-left: 1px solid #e7e4de;
  background: #f8f6f2;
}

.process-card__details ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-card__details li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #645f59;
  font-size: 14px;
  line-height: 1.45;
}

.check {
  display: inline-grid;
  place-items: center;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border-radius: 50%;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}

.check--navy { background: #000000; }
.check--orange { background: #fdcd54; }
.check--blue { background: #7bb7f7; }
.check--sage { background: #a6bffb; }
.check--amber { background: #fea943; }

@media (max-width: 760px) {
  .process-steps {
    padding: 64px 18px;
  }

  .process-card {
    grid-template-columns: 1fr;
  }

  .process-card__main {
    padding: 32px 26px;
  }

  .process-card__details {
    padding: 28px 26px;
    border-top: 1px solid #e7e4de;
    border-left: 0;
  }

  .process-card__number {
    font-size: 27px;
  }

  .process-card h3 {
    font-size: 20px;
  }
}
/* ── Reset ── */
    @keyframes arrow-blink {
  0%, 100% { opacity: 0.2; transform: translateX(-50%) translateY(0); }
  50%       { opacity: 1;   transform: translateX(-50%) translateY(6px); }
}
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      font-family: "Inter", system-ui, -apple-system, sans-serif;
      background: #FFFFFF;
      color: #2B211C;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    /* ── Fade-up scroll animations ── */
    .fade-up {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity .72s cubic-bezier(.16,1,.3,1), transform .72s cubic-bezier(.16,1,.3,1);
    }
    .fade-up.visible { opacity: 1; transform: translateY(0); }
    .fade-up[data-delay="1"] { transition-delay: .10s; }
    .fade-up[data-delay="2"] { transition-delay: .20s; }
    .fade-up[data-delay="3"] { transition-delay: .30s; }
    .fade-up[data-delay="d4"] { transition-delay: .08s; }
    .fade-up[data-delay="d5"] { transition-delay: .16s; }
    .fade-up[data-delay="d6"] { transition-delay: .24s; }
    .fade-up.step-visual-anim { transition-delay: .08s; transition-duration: .75s; }

    /* ── Float keyframes (one per step duration) ── */
    @keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
    .float-1 { animation: float 4.5s ease-in-out infinite; }
    .float-2 { animation: float 5.2s ease-in-out infinite; }
    .float-3 { animation: float 4.0s ease-in-out infinite; }
    .float-4 { animation: float 5.6s ease-in-out infinite; }

    /* ── CTA Button system ── */
    .cta-btn {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 56px;
      padding: 0 28px;
      border-radius: 999px;
      border: 1px solid transparent;
      font-family: inherit;
      font-size: 16px;
      font-weight: 500;
      line-height: 1;
      letter-spacing: -.01em;
      text-decoration: none;
      cursor: pointer;
      overflow: hidden;
      white-space: nowrap;
      transition: transform 240ms cubic-bezier(.16,1,.3,1),
                  background 240ms cubic-bezier(.16,1,.3,1),
                  box-shadow 240ms cubic-bezier(.16,1,.3,1),
                  border-color 240ms cubic-bezier(.16,1,.3,1);
    }
    .cta-btn::before {
      content: "";
      position: absolute; inset: 0;
      border-radius: inherit;
      opacity: 0; pointer-events: none;
      transition: opacity 240ms cubic-bezier(.16,1,.3,1);
      background: radial-gradient(circle at 50% 35%, rgba(194,151,92,.18) 0%, rgba(194,151,92,.08) 35%, transparent 72%);
    }
    .cta-btn:hover { transform: translateY(-2px); }
    .cta-btn:hover::before { opacity: 1; }
    .cta-btn:active { transform: translateY(0); }
    .cta-btn:focus-visible { outline: 2px solid rgba(184,120,59,.55); outline-offset: 3px; }

    .cta-btn.is-light {
      background: linear-gradient(180deg, #FAF7F2 0%, #F3EDE2 100%);
      color: #2B211C;
      border-color: rgba(43,33,28,.10);
      box-shadow: 0 14px 34px rgba(43,33,28,.10);
    }
    .cta-btn.is-light:hover {
      background: linear-gradient(180deg, #F7F0E5 0%, #F3E9DB 100%);
      border-color: rgba(43,33,28,.14);
      box-shadow: 0 18px 42px rgba(43,33,28,.14);
    }
    .cta-btn.is-dark {
      background: linear-gradient(180deg, #2A241F 0%, #1F1A16 100%);
      color: #F6F1E8;
      border-color: rgba(246,241,232,.10);
      box-shadow: 0 14px 34px rgba(0,0,0,.22);
    }
    .cta-btn.is-dark:hover {
      background: linear-gradient(180deg, #3A322B 0%, #2A241F 100%);
      box-shadow: 0 18px 42px rgba(0,0,0,.30);
    }

    /* ── Eyebrow ── */
    .hiw-eyebrow {
      font-size: 21px; font-weight: 500;
      letter-spacing: .18em; text-transform: uppercase;
      color: rgba(43,33,28,.42); margin: 0 0 28px;
    }

    /* ── Hero ── */
    .hiw-hero { background: #FFFFFF; padding: 160px 64px 120px; text-align: center; }
    .hiw-hero-inner { max-width: 780px; margin: 0 auto; }
    .hiw-hero-headline {
      font-size: clamp(344px,36vw,378px); font-weight: 300;
      letter-spacing: -.04em; line-height: 1.01;
      color: #2B211C; margin: 0 0 24px;
    }
    .hiw-hero-support {
      font-size: 18px; line-height: 1.55;
      color: rgba(43,33,28,.58); margin: 0 auto; max-width: 44ch;
    }

    /* ── Step sections ── */
    .ss-step-section { padding: 0 64px; border-bottom: 1px solid rgba(43,33,28,.08); }
    .ss-step-inner {
      max-width: 1320px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 72px; align-items: center; padding: 96px 0;
    }
    .ss-step-inner.flip .ss-step-text  { order: 2; }
    .ss-step-inner.flip .ss-step-visual { order: 1; }
    .ss-step-number {
      font-size: 13px; font-weight: 500;
      letter-spacing: .18em; text-transform: uppercase;
      color: #B8783B; margin: 0 0 24px;
    }
    .ss-step-headline {
      font-size: clamp(28px,2.4vw,40px); line-height: 1.08;
      font-weight: 400; letter-spacing: -.03em;
      color: #2B211C; margin: 0 0 16px;
    }
    .ss-step-body {
      font-size: 18px; line-height: 1.60; font-weight: 400;
      color: rgba(43,33,28,.70); margin: 0 0 6px;
      max-width: 38ch; letter-spacing: -.005em;
    }
    .ss-step-detail {
      font-size: 15px; line-height: 1.55;
      color: rgba(43,33,28,.42); margin: 0; max-width: 38ch;
    }
    .ss-step-visual { position: relative; height: 440px; }
    .ss-step-glow {
      position: absolute; inset: -28%; border-radius: 50%;
      pointer-events: none; z-index: 0; filter: blur(52px);
    }
    .ss-step-card-frame {
      position: relative; z-index: 1; width: 100%; height: 100%;
      border-radius: 48px; overflow: hidden;
      border: 1px solid rgba(43,33,28,.06);
      box-shadow: 0 24px 70px rgba(43,33,28,.10), 0 2px 8px rgba(43,33,28,.05), inset 0 1px 0 rgba(255,255,255,.70);
      transition: transform 600ms cubic-bezier(.16,1,.3,1), box-shadow 600ms cubic-bezier(.16,1,.3,1);
    }
    .ss-step-card-frame:hover {
      transform: translateY(-4px);
      box-shadow: 0 36px 90px rgba(43,33,28,.14), 0 6px 16px rgba(43,33,28,.07), inset 0 1px 0 rgba(255,255,255,.70);
    }

    /* ── Included carousel ── */
    .hiw-included {
      position: relative; background-color: #F6F1E8;
      padding-top: 48px; padding-bottom: 72px;
      overflow: hidden; outline: none;
    }
    .hiw-carousel-card { position: absolute; left: 50%; top: 0; border-radius: 36px; overflow: hidden; will-change: transform,opacity; }
    .hiw-carousel-side:hover { opacity: 1 !important; }
    .hiw-carousel-dot {
      border: none; padding: 0; cursor: pointer;
      background: rgba(58,46,40,.22); height: 6px;
      border-radius: 9999px;
      transition: width .4s cubic-bezier(.16,1,.3,1), background .4s cubic-bezier(.16,1,.3,1);
    }
    .hiw-carousel-dot.active { background: #3a2e28; width: 22px !important; }

    /* ── FAQ ── */
    .hiw-faq { background: #F6F1E8; padding: 96px 64px 112px; }
    .hiw-faq-inner { max-width: 680px; margin: 0 auto; }
    .hiw-faq-eyebrow {
      font-size: 11px; font-weight: 500; letter-spacing: .18em;
      text-transform: uppercase; color: rgba(43,33,28,.42);
      text-align: center; margin: 0 0 44px;
    }
    .hiw-faq-list {
      list-style: none; padding: 0; margin: 0;
      display: flex; flex-direction: column; gap: 10px;
    }
    .hiw-faq-item {
      border-radius: 24px; overflow: hidden;
      border: 1px solid rgba(43,33,28,.08);
      background: #FAF7F2;
      box-shadow: 0 4px 16px rgba(43,33,28,.05);
    }
    .hiw-faq-q {
      width: 100%; display: flex; align-items: center;
      justify-content: space-between; gap: 16px; padding: 20px 24px;
      background: none; border: none; text-align: left; cursor: pointer;
      font-family: inherit; font-size: 16px; font-weight: 500;
      letter-spacing: -.01em; color: #2B211C;
      transition: background 180ms ease;
    }
    .hiw-faq-q:hover { background: rgba(43,33,28,.025); }
    .hiw-faq-q.is-open { background: rgba(43,33,28,.03); }
    .hiw-faq-icon {
      flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
      border: 1px solid rgba(43,33,28,.12);
      display: inline-flex; align-items: center; justify-content: center;
      font-size: 18px; line-height: 1; color: #B8783B; background: #F6F1E8;
      transition: background 200ms ease, border-color 200ms ease, color 200ms ease;
      user-select: none;
    }
    .hiw-faq-q.is-open .hiw-faq-icon { background: #2B211C; border-color: #2B211C; color: #F6F1E8; }
    .hiw-faq-body { overflow: hidden; max-height: 0; transition: max-height .38s cubic-bezier(.16,1,.3,1); }
    .hiw-faq-body.is-open { max-height: 300px; }
    .hiw-faq-a {
      padding: 16px 24px 22px; font-size: 16px; line-height: 1.60;
      color: rgba(43,33,28,.65); margin: 0;
      border-top: 1px solid rgba(43,33,28,.06);
    }

    /* ── Reassurance ── */
    .hiw-reassurance { background: #2A241F; padding: 80px 64px; }
    .hiw-reassurance-inner { max-width: 720px; margin: 0 auto; text-align: center; }
    .hiw-reassurance-headline {
      font-size: clamp(28px,4vw,50px); font-weight: 300;
      letter-spacing: -.04em; line-height: 1.08;
      color: #F6F1E8; margin: 0 0 18px;
    }
    .hiw-reassurance-support {
      font-size: 16px; line-height: 1.62;
      color: rgba(246,241,232,.56); margin: 0 auto; max-width: 50ch;
    }

    /* ── Minimal CTA ── */
    .bs-minimal-cta { background: #FAF7F2; padding: 120px 24px; text-align: center; }
    .bs-minimal-cta-inner { max-width: 560px; margin: 0 auto; }
    .bs-minimal-cta-headline {
      font-size: clamp(36px,4.5vw,56px); font-weight: 300;
      letter-spacing: -.04em; line-height: 1.05; color: #2B211C; margin: 0 0 20px;
    }
    .bs-minimal-cta-sub {
      font-size: 15px; line-height: 1.6; color: rgba(43,33,28,.52);
      max-width: 480px; margin: 0 auto 36px;
    }
    .bs-minimal-cta-btn-wrap { display: flex; justify-content: center; }

    /* ── Dark CTA card ── */
    .hiw-dark-cta { background: #F6F1E8; padding: 80px 48px 100px; }
    .hiw-dark-cta-card {
      max-width: 920px; margin: 0 auto; background: #2A241F;
      border-radius: 28px; padding: 80px 64px;
      position: relative; overflow: hidden; text-align: center;
    }
    .hiw-dark-cta-glow {
      position: absolute; inset: 0;
      background: radial-gradient(ellipse at 52% 44%, rgba(184,120,59,.30) 0%, rgba(184,120,59,.10) 42%, transparent 68%);
      pointer-events: none;
    }
    .hiw-dark-cta-headline {
      position: relative; z-index: 1;
      font-size: clamp(30px,3.5vw,52px); font-weight: 300;
      letter-spacing: -.03em; line-height: 1.1;
      color: #F6F1E8; margin: 0 0 18px;
    }
    .hiw-dark-cta-sub {
      position: relative; z-index: 1; font-size: 16px;
      color: rgba(246,241,232,.48); margin: 0 0 44px;
    }
    .hiw-dark-cta-btns {
      position: relative; z-index: 1;
      display: flex; justify-content: center;
      align-items: center; gap: 12px; flex-wrap: wrap;
    }
    .hiw-dark-cta-ghost {
      background: transparent !important;
      color: rgba(246,241,232,.72) !important;
      border: 1px solid rgba(246,241,232,.22) !important;
      box-shadow: none !important;
    }
    .hiw-dark-cta-ghost:hover {
      background: rgba(246,241,232,.08) !important;
      color: #F6F1E8 !important;
      border-color: rgba(246,241,232,.38) !important;
    }

    /* ── Responsive ── */
    @media (max-width: 900px) {
      .hiw-hero { padding: 120px 40px 80px; }
      .ss-step-section { padding: 0 40px; }
      .ss-step-inner { gap: 48px; padding: 72px 0; }
      .ss-step-visual { height: 380px; }
      .ss-step-card-frame:hover { transform: none; }
      .hiw-included { padding-top: 36px; padding-bottom: 56px; }
      .hiw-reassurance { padding: 64px 40px; }
      .hiw-dark-cta { padding: 60px 32px 80px; }
      .hiw-dark-cta-card { padding: 64px 48px; }
      .hiw-faq { padding: 72px 40px 88px; }
    }
    @media (max-width: 768px) {
      .hiw-hero { padding: 88px 24px 64px; }
      .ss-step-section { padding: 0 24px; }
      .ss-step-inner { grid-template-columns: 1fr; gap: 32px; padding: 56px 0; }
      .ss-step-inner.flip .ss-step-text  { order: 1; }
      .ss-step-inner.flip .ss-step-visual { order: 2; }
      .ss-step-headline { font-size: clamp(22px,6vw,26px); }
      .ss-step-body { font-size: 15px; max-width: 100%; }
      .ss-step-visual { height: 300px; }
      .ss-step-card-frame { border-radius: 32px; box-shadow: 0 12px 40px rgba(43,33,28,.09), 0 2px 6px rgba(43,33,28,.05), inset 0 1px 0 rgba(255,255,255,.70); }
      .ss-step-card-frame:hover { transform: none; }
      .hiw-included { padding-top: 28px; padding-bottom: 48px; }
      .hiw-reassurance { padding: 60px 24px; }
      .hiw-dark-cta { padding: 40px 20px 60px; }
      .hiw-dark-cta-card { padding: 52px 28px; border-radius: 20px; }
      .hiw-dark-cta-btns { flex-direction: column; align-items: stretch; }
      .hiw-dark-cta-btns .cta-btn { width: 100%; }
      .hiw-faq { padding: 64px 24px 80px; }
      .bs-minimal-cta { padding: 80px 24px; }
    }
    @media (max-width: 640px) {
      .hiw-included { padding-left: 0; padding-right: 0; }
    }

    /* ── Reduced motion ── */
    @media (prefers-reduced-motion: reduce) {
      * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
      .fade-up { opacity: 1; transform: none; }
      .ss-step-card-frame, .ss-step-card-frame:hover { transition: none !important; transform: none !important; }
    }
/* ============================================================
   FLOATING SITE NAV
   ============================================================ */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 66px;
  padding: 12px 0 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  pointer-events: none;
}

.site-nav::after {
  display: none;
}

.site-nav__wrap {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  pointer-events: auto;
}

.site-nav__pill {
  display: flex;
  align-items: center;
  height: 54px;
  padding: 0 20px;
  border: 1px solid rgba(58, 46, 40, .08);
  border-radius: 999px;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 8px 28px rgba(40, 33, 28, .10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: box-shadow 2s ease, transform 2s ease;
}

.site-nav.scrolled .site-nav__pill {
  box-shadow: 0 10px 32px rgba(40, 33, 28, .16);
}

.site-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  color: #2b211c;
  font-size: 15px;
  font-weight: 650;
  letter-spacing: -.02em;
  text-decoration: none;
  transition: opacity 2s ease;
}

.site-nav__brand:hover {
  opacity: .78;
}

.site-nav__mark {
  width: 36px;
  height: 36px;
  overflow: visible;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto;
  padding: 0 18px;
}

.site-nav__links a,
.site-nav__mobile > a:not(.site-nav__mobile-cta) {
  padding: 7px 10px;
  border-radius: 999px;
  color: #11100e;
  font-size: 13px;
  font-weight: 550;
  line-height: 1;
  text-decoration: none;
  transition: color 2s ease, background 2s ease;
}

.site-nav__links a::after {
  display: none;
}

.site-nav__links a:hover {
  background: #ffffff;
  color: #11100e;
  border-radius: 999px;
  transition: background 2s ease, color 2s ease;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
  transition: color 2s ease, background 2s ease;


}.site-nav__links a.is-active {
  background: #ffffff;
  color: #fdd468;
  border-radius: 999px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}

.site-nav__cta,
.site-nav__mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 0 0 auto;
  padding: 9px 16px;
  border-radius: 999px;
  background: #fdd468;
  box-shadow: 0 3px 14px rgba(253, 200, 76, .4);
  color: #161413;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: transform 2s ease, background 2s ease;
}

.site-nav__cta:hover,
.site-nav__mobile-cta:hover {
  background: #fdd66b;
  transform: translateY(-1px);
}

.site-nav__cta span,
.site-nav__mobile-cta span {
  transition: transform 2s ease;
}

.site-nav__cta:hover span,
.site-nav__mobile-cta:hover span {
  transform: translateX(3px);
}

.site-nav__menu {
  display: none;
  width: 32px;
  height: 32px;
  margin-left: 8px;
  padding: 8px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.site-nav__menu span {
  display: block;
  width: 16px;
  height: 1.5px;
  margin: 3px 0;
  border-radius: 2px;
  background: #2b211c;
  transition: transform 2s ease, opacity 2s ease;
}

.site-nav__menu[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(4.5px) rotate(45deg);
}

.site-nav__menu[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.site-nav__menu[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-4.5px) rotate(-45deg);
}

.site-nav__mobile {
  display: none;
  width: min(440px, calc(100% - 32px));
  margin: 8px auto 0;
  padding: 10px;
  border: 1px solid rgba(58, 46, 40, .08);
  border-radius: 22px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 14px 36px rgba(40, 33, 28, .14);
  pointer-events: auto;
}

.site-nav__mobile.is-open {
  display: flex;
  flex-direction: column;
  max-height: none;
}

.site-nav__mobile > a:not(.site-nav__mobile-cta) {
  padding: 12px 14px;
  border: 0;
}

.site-nav__mobile > a.is-active {
  color: #9a6510;
  background: #fff5d8;
}

.site-nav__mobile-cta {
  margin-top: 8px;
  padding: 12px 16px;
}

@media (max-width: 760px) {
  .site-nav {
    height: 60px;
    padding-top: 8px;
  }

  .site-nav__pill {
    height: 52px;
    padding: 0 12px 0 16px;
  }

  .site-nav__links,
  .site-nav__pill > .site-nav__cta {
    display: none;
  }

  .site-nav__brand {
    margin-right: auto;
  }

  .site-nav__menu {
    display: block;
  }
}

/* Styles moved out of how-it-works.html */
.hiw-hero--intro {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  overflow: hidden;
  background: #0a0a0a;
  transition: background 1.8s ease;
}

.hiw-intro-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.hiw-pixels {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.2s ease;
}

.hiw-hero-inner--intro {
  position: relative;
  z-index: 10;
  padding: 20px 48px;
  border-radius: 32px;
}

.hiw-intro-eyebrow,
.hiw-intro-headline,
.hiw-intro-support {
  transition: color 1.6s ease, text-shadow 1.6s ease;
}

.hiw-intro-eyebrow {
  color: rgba(255, 255, 255, .9);
  text-shadow: 0 0 30px rgba(255, 255, 255, .8);
}

.hiw-intro-headline {
  color: #fff;
  text-shadow: 0 0 60px rgba(255, 255, 255, .6), 0 0 120px rgba(255, 255, 255, .3);
}

.hiw-intro-support {
  color: rgba(255, 255, 255, .85);
  text-shadow: 0 0 30px rgba(255, 255, 255, .6);
}

.hiw-scroll-arrow {
  position: absolute;
  bottom: 100px;
  left: 50%;
  z-index: 10;
  animation: arrow-blink 2.2s ease-in-out infinite;
}

.feature-intro {
  max-width: 62ch;
  margin-top: 14px;
}

.feature-grid--spaced {
  margin-top: 28px;
}

.hiw-included-glow {
  position: absolute;
  top: 10%;
  left: 50%;
  z-index: 0;
  width: 760px;
  height: 680px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255,188,128,.5) 0%, rgba(255,180,110,.22) 45%, transparent 72%);
  filter: blur(32px);
  transform: translateX(-30%);
  pointer-events: none;
}

.hiw-included-eyebrow {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 48px;
  padding-left: 48px;
  color: #b05c3a;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.hiw-included-dot {
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  background: #b05c3a;
}

.hiw-included-heading {
  position: relative;
  z-index: 2;
  margin-bottom: 44px;
  padding: 0 48px;
  color: hsl(25, 15%, 18%);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -.03em;
}

.hiw-carousel-stage {
  position: relative;
  height: 520px;
  overflow: visible;
}

.hiw-carousel-dots {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}

.hiw-carousel-card {
  width: 480px;
  height: 520px;
  background: var(--card-bg);
}

.hiw-card-background {
  width: 100%;
  height: 100%;
  background: linear-gradient(148deg, var(--card-bg) 0%, #0c0a09 100%);
}

.hiw-card-overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 62%;
  background: linear-gradient(to top, rgba(0,0,0,.9) 0%, rgba(0,0,0,.35) 52%, transparent 100%);
  pointer-events: none;
}

.hiw-card-copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 28px 28px 30px;
}

.hiw-card-copy h3 {
  margin: 0 0 7px;
  color: #fff;
  font-family: inherit;
  font-size: 1.28rem;
  font-weight: 600;
  line-height: 1.2;
}

.hiw-card-copy p {
  margin: 0;
  color: rgba(255,255,255,.7);
  font-family: inherit;
  font-size: .9rem;
  line-height: 1.5;
}

@media (max-width: 640px) {
  .hiw-hero-inner--intro {
    padding: 20px 24px;
  }

  .hiw-included-eyebrow {
    padding-left: 24px;
  }

  .hiw-included-heading {
    padding: 0 24px;
  }
}
/* Append this file to your existing style.css or link it after style.css. */
.bs-pack {
  --bs-text: #211f1d;
  --bs-copy: #68615a;
  --bs-muted: #938b83;
  --bs-border: #e2ded7;
  --bs-soft: #f7f5f1;
  --bs-gold: #fdd468;
  --bs-orange: #d87842;
  --bs-blue: #6790c6;
  --bs-navy: #0e172a;
  --bs-sage: #a9baa5;
  --bs-lavender: #cbc2e9;
  --bs-dark: #161413;
  color: var(--bs-text);
  font-family: Roboto, system-ui, sans-serif;
}

.bs-pack * { box-sizing: border-box; }
.bs-pack h2, .bs-pack h3, .bs-pack p { margin-top: 0; }
.bs-pack h2 {
  margin-bottom: 20px;
  font-size: clamp(2.15rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -.045em;
}
.bs-pack h2 em { color: var(--bs-muted); font-family: Roboto, serif; font-weight: 400; }
.bs-pack h3 { margin-bottom: 8px; line-height: 1.25; }
.bs-pack p { line-height: 1.7; }
.bs-pack ul { margin: 0; padding: 0; list-style: none; color:  }

.bs-pack__section { padding: 96px 24px; }
.bs-pack__section--white { background: radial-gradient(circle, rgba(196,181,253,.3) 60%, transparent 32%);}
.bs-pack__section--soft { background: var(--bs-soft); }
.bs-pack__container { width: min(100%, 1040px); margin: 0 auto; }
.bs-pack__container--narrow { width: min(100%, 900px); }
.bs-pack__container--pricing { width: min(100%, 760px); text-align: center; }
.bs-pack__container--faq { width: min(100%, 640px); }
.bs-pack__heading { margin-bottom: 54px; }
.bs-pack__heading--center { text-align: center; }
.bs-pack__heading--center .bs-pack__lead { margin-right: auto; margin-left: auto; }
.bs-pack__eyebrow {
  margin-bottom: 12px;
  color: #fec247;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.bs-pack__eyebrow--light { color: rgba(255,255,255,.54); }
.bs-pack__lead { max-width: 550px; color: var(--bs-copy); font-size: 17px; }
.bs-pack__actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.bs-pack__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.bs-pack__button:hover { transform: translateY(-2px); }
.bs-pack__button--dark { background: var(--bs-dark); color: #fff; }
.bs-pack__button--light { border-color: var(--bs-border); background: #fff; color: var(--bs-text); }
.bs-pack__button--gold { background: var(--bs-gold); color: #17140c; box-shadow: 0 12px 30px rgba(253,212,104,.25); }
.bs-pack__button--ghost { border-color: rgba(255,255,255,.25); color: #fff; }

.bs-process { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.bs-process__primary, .bs-process__card { border-radius: 24px; padding: 34px; }
.bs-process__primary {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  justify-content: space-between;
  background: var(--bs-navy);
  color: #fff;
}
.bs-process__primary p:last-child { color: rgba(255,255,255,.68); }
.bs-process__dots { display: grid; grid-template-columns: repeat(5, 6px); gap: 7px; }
.bs-process__dots i { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.22); }
.bs-process__dots i:nth-child(-n+4) { background: var(--bs-gold); }
.bs-process__side { display: grid; gap: 16px; }
.bs-process__card { display: flex; gap: 24px; border: 1px solid var(--bs-border); background: var(--bs-soft); }
.bs-process__number { color: var(--bs-orange); font-size: 30px; font-weight: 300; }
.bs-process__card p:last-child { color: var(--bs-copy); }

.bs-offer { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.bs-offer__groups { display: grid; gap: 24px; }
.bs-offer__label { display: inline-block; margin-bottom: 10px; padding: 5px 11px; border-radius: 999px; color: #fff; font-size: 10px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.bs-offer__label--gold { background: #b78a18; }
.bs-offer__label--orange { background: var(--bs-orange); }
.bs-offer__label--blue { background: var(--bs-blue); }
.bs-offer__group ul { display: grid; gap: 8px; }
.bs-offer__group li { padding: 12px 16px; border: 1px solid var(--bs-border); border-radius: 12px; background: #fff; font-size: 14px; font-weight: 600; }

.bs-values { overflow: hidden; border: 1px solid var(--bs-border); border-radius: 28px; box-shadow: 0 20px 50px rgba(22,20,19,.08); }
.bs-values__row { display: grid; grid-template-columns: 44% 1fr; }
.bs-values__row + .bs-values__row { border-top: 1px solid var(--bs-border); }
.bs-values__row > p, .bs-values__title { margin: 0; padding: 44px; }
.bs-values__row > p { display: flex; align-items: center; background: #fff; color: var(--bs-copy); }
.bs-values__title--navy { background: var(--bs-navy); color: #0e172a; }
.bs-values__title--gold { background: var(--bs-gold); }
.bs-values__title--lavender { background: var(--bs-lavender); }
.bs-values__title p { margin-bottom: 14px; font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; opacity: .65; }
.bs-values__title h3 { margin: 0; font-size: 23px; font-weight: 500; }

.bs-results { display: flex; gap: 16px; overflow-x: auto; padding: 6px 0 22px; scroll-snap-type: x mandatory; }
.bs-results__card { display: flex; flex: 0 0 330px; min-height: 330px; padding: 32px; border-radius: 24px; flex-direction: column; justify-content: space-between; scroll-snap-align: start; }
.bs-results__card strong { font-size: 72px; line-height: .9; letter-spacing: -.06em; }
.bs-results__card > p:last-child { margin: auto 0 0; }
.bs-results__card--dark { background: var(--bs-dark); color: #fff; }
.bs-results__card--navy { background: var(--bs-navy); color: #fff; }
.bs-results__card--gold { background: var(--bs-gold); }
.bs-results__card--lavender { background: var(--bs-lavender); }
.bs-results__card--sage { background: var(--bs-sage); }

.bs-stay-ahead { display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; border: 1px solid var(--bs-border); border-radius: 28px; box-shadow: 0 24px 60px rgba(22,20,19,.1); }
.bs-stay-ahead__dark, .bs-stay-ahead__light { padding: clamp(42px, 6vw, 64px); }
.bs-stay-ahead__dark { background: var(--bs-dark); color: #fff; }
.bs-stay-ahead__dark h2 { font-size: clamp(3rem, 6vw, 5.2rem); }
.bs-stay-ahead__dark > p:last-child { color: rgba(255,255,255,.6); }
.bs-stay-ahead__light { display: grid; gap: 36px; align-content: center; background: var(--bs-soft); }
.bs-stay-ahead__light article p:last-child { color: var(--bs-copy); }

.bs-solutions__header { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.bs-solutions { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 44px; }
.bs-solutions a { display: flex; min-height: 155px; padding: 20px; border: 1px solid var(--bs-border); border-radius: 16px; background: #fff; color: var(--bs-text); flex-direction: column; text-decoration: none; }
.bs-solutions small { color: var(--bs-muted); font-size: 10px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.bs-solutions strong { margin-top: 20px; font-size: 15px; }
.bs-solutions span { margin-top: auto; color: #aa7e12; font-size: 13px; font-weight: 700; }

.bs-start { position: relative; overflow: hidden; background: var(--bs-dark); color: #fff; }
.bs-start::before { content: ""; position: absolute; inset: 0; opacity: .05; background-image: radial-gradient(#C0C0C0 1px, transparent 1px); background-size: 24px 24px; pointer-events: none; }
.bs-start__grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.bs-start__logo { width: 70px; margin-bottom: 24px; }
.bs-start__grid > div > p { color: rgba(255,255,255,.6); font-size: 17px; }
.bs-start__grid ul { display: grid; gap: 12px; margin-top: 26px; }
.bs-start__grid li::before { content: "✓"; display: inline-grid; width: 20px; height: 20px; margin-right: 10px; place-items: center; border-radius: 50%; background: rgba(255, 170, 51,.6); color: #fff; font-size: 11px; }
.bs-start__form { display: grid; gap: 16px; padding: 32px; border-radius: 22px; background: #fff; color: var(--bs-text); box-shadow: 0 24px 64px rgba(0,0,0,.32); }
.bs-start__form label { display: grid; gap: 7px; font-size: 13px; font-weight: 600; }
.bs-start__form input { width: 100%; padding: 13px 14px; border: 1px solid var(--bs-border); border-radius: 11px; font: inherit; }
.bs-start__form button { min-height: 50px; border: 0; border-radius: 999px; background: var(--bs-gold); font: inherit; font-weight: 700; cursor: pointer; }
.bs-start__form small { color: var(--bs-muted); text-align: center; }

.bs-system { display: grid; gap: 16px; }
.bs-system__row { display: grid; grid-template-columns: 2fr 3fr; gap: 16px; }
.bs-system__row--reverse { grid-template-columns: 3fr 2fr; }
.bs-system__headline { display: flex; min-height: 300px; padding: 40px; border-radius: 22px; background: linear-gradient(135deg, #1a1817, #0a0908); color: #fff; flex-direction: column; justify-content: flex-end; }
.bs-system__headline--gold { background: #b38a24; }
.bs-system__headline > p { color: rgba(255,255,255,.5); font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.bs-system__headline h2 { margin: 16px 0 0; font-size: clamp(2rem, 4vw, 3rem); }
.bs-system__features { overflow: hidden; border: 1px solid var(--bs-border); border-radius: 22px; background: #fff; box-shadow: 0 16px 40px rgba(22,20,19,.07); }
.bs-system__features article { display: flex; gap: 18px; padding: 24px; }
.bs-system__features article + article { border-top: 1px solid var(--bs-border); }
.bs-system__features article > span { color: #aa7e12; font-size: 22px; }
.bs-system__features h3 { margin: 0 0 5px; font-size: 15px; }
.bs-system__features p { margin: 0; color: var(--bs-copy); font-size: 13px; }

.bs-pricing { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 32px; text-align: left; }
.bs-pricing article { padding: 30px; border: 1px solid var(--bs-border); border-radius: 20px; background: #fff; box-shadow: 0 14px 36px rgba(22,20,19,.07); }
.bs-pricing article > div { display: flex; align-items: baseline; gap: 8px; margin-bottom: 22px; }
.bs-pricing strong { color: #ffffff; font-size: 40px; font-weight: 400; }
.bs-pricing article:nth-child(2) strong { color: #aab9a5; }
.bs-pricing span { color: var(--bs-muted); font-size: 13px; }
.bs-pricing ul { display: grid; gap: 10px; }
.bs-pricing li { color: var(--bs-copy); font-size: 14px; }
.bs-pricing li::before { content: "✓"; display: inline-grid; width: 17px; height: 17px; margin-right: 9px; place-items: center; border-radius: 50%; background: #febc4d; color: #FFFF; font-size: 9px; }
.bs-pricing article:nth-child(2) li::before { background: #c4b2eb; }

.bs-faq { display: grid; gap: 10px; }
.bs-faq details { border: 1px solid var(--bs-border); border-radius: 14px; background: #fff; }
.bs-faq summary { padding: 20px 24px; cursor: pointer; font-size: 15px; font-weight: 700; list-style: none; }
.bs-faq summary::-webkit-details-marker { display: none; }
.bs-faq summary::after { content: "+"; float: right; color: var(--bs-muted); font-size: 20px; }
.bs-faq details[open] summary::after { content: "−"; }
.bs-faq details p { margin: 0; padding: 0 24px 20px; color: var(--bs-copy); font-size: 15px; }

.bs-final-cta { background: var(--bs-dark); color: #fff; }
.bs-final-cta .bs-pack__heading { margin-bottom: 0; }
.bs-final-cta h2 { font-size: clamp(2.7rem, 6vw, 5.2rem); }
.bs-final-cta h2 em { color: rgba(255,255,255,.6); }
.bs-final-cta p:not(.bs-pack__eyebrow) { max-width: 520px; margin: 0 auto 30px; color: rgba(255,255,255,.65); font-size: 18px; }
.bs-final-cta__logo { width: 60px; margin: 0 auto 24px; opacity: .84; }

@media (max-width: 760px) {
  .bs-pack__section { padding: 72px 18px; }
  .bs-process, .bs-offer, .bs-stay-ahead, .bs-start__grid,
  .bs-system__row, .bs-system__row--reverse { grid-template-columns: 1fr; }
  .bs-values__row { grid-template-columns: 1fr; }
  .bs-values__row > p, .bs-values__title { padding: 30px; }
  .bs-solutions__header { align-items: flex-start; flex-direction: column; }
  .bs-solutions { grid-template-columns: 1fr 1fr; }
  .bs-pricing { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .bs-solutions { grid-template-columns: 1fr; }
  .bs-pack__button { width: 100%; }
}

/* ============================================================
   HOW IT WORKS — POLISHED REFERENCE PASS
   ============================================================ */
:root {
  --calm-ink: #211f1d;
  --calm-copy: #67615b;
  --calm-muted: #938b82;
  --calm-line: #e3dfd7;
  --calm-white: #fff;
  --calm-cream: #f8f6f1;
  --calm-sand: #f1eadc;
  --calm-mist: #edf2f3;
  --calm-charcoal: #171615;
  --calm-gold: #f3ca5b;
  --calm-orange: #cf7545;
  --calm-blue: #6d8eaf;
  --calm-sage: #aab9a5;
}

body {
  color: var(--calm-ink);
  background: var(--calm-white);
  font-family: "Inter", system-ui, sans-serif;
}

.hiw-hero-headline,
.bs-hero__headline,
.bs-pack h2,
.bs-stay-ahead__dark h1,
.bs-system__headline h2 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
}

.hiw-hero-headline {
  font-size: clamp(4em, 6.5vw, 4rem);
  line-height: .96;
  letter-spacing: -.045em;
}

.hiw-hero-support {
  font-size: clamp(.95rem, 1.6vw, 1.1rem);
}

.process-steps {
  padding: clamp(76px, 10vw, 120px) 24px;
  background: var(--calm-cream);
}

.process-steps__container {
  max-width: 1020px;
  gap: 20px;
}

.process-card {
  border-color: var(--calm-line);
  border-radius: 22px;
  box-shadow: 0 12px 36px rgba(33, 31, 29, .055);
}

.process-card__main {
  padding: clamp(30px, 4vw, 44px);
}

.process-card__details {
  padding: clamp(28px, 3.5vw, 38px);
  border-left-color: var(--calm-line);
  background: rgba(255,255,255,.72);
}

.process-card__number {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 2.1rem;
}

.process-card h3 {
  color: var(--calm-ink);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(1.55rem, 2.5vw, 2rem);
  font-weight: 400;
}

.process-card__description,
.process-card__details li {
  color: var(--calm-copy);
}

.process-card__description {
  font-size: .98rem;
  line-height: 1.72;
}

.process-card__details li {
  font-size: .86rem;
  line-height: 1.55;
}

.bs-hero {
  min-height: 76vh;
  padding: 18vh 24px 15vh;
}

.bs-hero__headline {
  max-width: 640px;
  font-size: clamp(2.8rem, 6vw, 2.8rem);
  line-height: .98;
}

.bs-pack {
  --bs-text: var(--calm-ink);
  --bs-copy: var(--calm-copy);
  --bs-muted: var(--calm-muted);
  --bs-border: var(--calm-line);
  --bs-soft: var(--calm-cream);
  --bs-gold: var(--calm-gold);
  --bs-orange: var(--calm-orange);
  --bs-blue: var(--calm-blue);
  --bs-sage: var(--calm-sage);
  --bs-dark: var(--calm-charcoal);
  font-family: "Inter", system-ui, sans-serif;
}

.bs-pack h2 {
  max-width: 17ch;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(2.2rem, 4.5vw, 2.7rem);
  line-height: 1;
  letter-spacing: -.035em;
}

.bs-offer h2,
.bs-start h2 {
  margin-left: 0;
}

.bs-pack h2 em {
  font-family: inherit;
  font-weight: inherit;
}

.bs-pack__section {
  padding: clamp(82px, 10vw, 118px) 24px;
}

.bs-pack__section:nth-of-type(2) {
  background: var(--calm-mist);
}

.bs-pack__section:nth-of-type(3) {
  background: var(--calm-white);
}

.bs-pack__section:nth-of-type(4) {
  background: var(--calm-sand);
}

.bs-pack__section:nth-of-type(5) {
  background: var(--calm-cream);
}

.bs-pack__section:nth-of-type(6) {
  background: var(--calm-mist);
}

.bs-pack__heading {
  margin-bottom: clamp(38px, 6vw, 58px);
}

.bs-pack__eyebrow,
.process-card__eyebrow {
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .17em;
}

.bs-pack__lead {
  font-size: 1rem;
  line-height: 1.7;
}

.bs-start {
  background:
    linear-gradient(to bottom, var(--calm-charcoal) 0 72px, transparent 150px),
    radial-gradient(circle at 80% 38%, rgba(243,202,91,.12), transparent 30%),
    var(--calm-charcoal);
}

.bs-start::before {
  top: 72px;
}

.bs-start__logo {
  opacity: 1;
  filter:
    drop-shadow(0 0 9px rgba(255,255,255,.72))
    drop-shadow(0 0 26px rgba(243,202,91,.38));
  animation: calm-logo-glow 5s ease-in-out infinite;
}

.bs-start__grid {
  gap: clamp(42px, 8vw, 78px);
}

.bs-start__grid > div > p {
  font-size: 1rem;
}

.bs-start__form {
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(0,0,0,.25);
}

.bs-offer {
  gap: clamp(44px, 8vw, 80px);
}

.bs-offer-section {
  position: relative;
  z-index: 1;
  isolation: isolate;
  overflow: visible;
  background:
    linear-gradient(to bottom, #07100f 0 72px, transparent 155px),
    radial-gradient(circle at 27% 42%, rgba(245, 194, 70, .14), transparent 34%),
    radial-gradient(circle at 68% 64%, rgba(91, 150, 190, .09), transparent 34%),
    #07100f !important;
  color: #f8f4e9;
}

.bs-offer-section::before {
  content: "";
  position: absolute;
  inset: 24px 30% -14% -10%;
  z-index: -2;
  background: url("bs101img.jpg") center / contain no-repeat;
  opacity: .82;
  filter: saturate(.94) contrast(1.05);
  -webkit-mask-image:
    linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.18) 9%, #000 26%, #000 100%),
    radial-gradient(ellipse 62% 78% at 48% 59%, #000 22%, rgba(0,0,0,.9) 46%, rgba(0,0,0,.34) 64%, transparent 82%);
  mask-image:
    linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.18) 9%, #000 26%, #000 100%),
    radial-gradient(ellipse 62% 78% at 48% 59%, #000 22%, rgba(0,0,0,.9) 46%, rgba(0,0,0,.34) 64%, transparent 82%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

.bs-offer-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5,12,11,.28) 0%, rgba(5,12,11,.2) 31%, rgba(5,12,11,.76) 53%, #07100f 79%),
    linear-gradient(180deg, #07100f 0%, rgba(7,16,15,.92) 8%, rgba(7,16,15,.2) 27%, rgba(7,16,15,.12) 76%, #07100f 100%);
  pointer-events: none;
}

.bs-offer-section .bs-offer {
  position: relative;
  z-index: 1;
}

.bs-offer-section .bs-pack__eyebrow {
  color: #f4ca61;
  text-shadow: 0 0 20px rgba(244,202,97,.3);
}

.bs-offer-section h2 {
  color: #fffaf0;
  text-shadow: 0 8px 36px rgba(0,0,0,.58);
}

.bs-offer-section .bs-pack__lead {
  color: rgba(238,241,231,.76);
  text-shadow: 0 3px 18px rgba(0,0,0,.78);
}

.bs-offer-section .bs-offer__groups {
  gap: 18px;
}

.bs-offer-section .bs-offer__group {
  position: relative;
  isolation: isolate;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.92);
  border-radius: 20px;
  background: #fff;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.75),
    0 0 22px rgba(255,255,255,.38),
    0 0 48px rgba(255,255,255,.2),
    0 18px 50px rgba(0,0,0,.28);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.bs-offer-section .bs-offer__group::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  border-radius: 22px;
  background: rgba(255,255,255,.72);
  filter: blur(12px);
  opacity: .55;
  pointer-events: none;
}

.bs-offer-section .bs-offer__group li {
  border-color: rgba(23,39,37,.1);
  background: #f8f8f5;
  box-shadow: 0 4px 14px rgba(12,24,22,.05);
  color: #263330;
}

.bs-offer-section .bs-offer__group li::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0 10px 2px 0;
  border-radius: 50%;
  background: #f4ca61;
  box-shadow: 0 0 10px rgba(244,202,97,.6);
}

.bs-offer-section .bs-offer__label--gold {
  background: #b5892b;
}

.bs-offer-section .bs-offer__label--orange {
  background: #a85e38;
}

.bs-offer-section .bs-offer__label--blue {
  background: #527fa4;
}

.bs-offer__group {
  padding-bottom: 2px;
}

.bs-offer__group li {
  border-color: rgba(33,31,29,.09);
  box-shadow: 0 4px 15px rgba(33,31,29,.035);
}

.bs-pricing article {
  border-radius: 22px;
  box-shadow: 0 16px 42px rgba(33,31,29,.06);
}

.bs-values {
  position: relative;
  z-index: 2;
  border-radius: 26px;
  box-shadow: 0 22px 60px rgba(33,31,29,.08);
}

.bs-values-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #fff !important;
}

.bs-values-section__video {
  position: absolute;
  top: 8%;
  left: 50%;
  z-index: -2;
  width: min(90vw, 940px);
  max-height: 62%;
  height: auto;
  opacity: .4;
  mix-blend-mode: multiply;
  object-fit: contain;
  filter: saturate(.42) contrast(.72);
  transform: translateX(-50%);
  -webkit-mask-image:
    linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.55) 8%, #000 20%, #000 54%, rgba(0,0,0,.48) 72%, transparent 96%),
    radial-gradient(ellipse 58% 84% at center, #000 15%, rgba(0,0,0,.9) 38%, rgba(0,0,0,.48) 57%, rgba(0,0,0,.16) 70%, transparent 83%);
  mask-image:
    linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.55) 8%, #000 20%, #000 54%, rgba(0,0,0,.48) 72%, transparent 96%),
    radial-gradient(ellipse 58% 84% at center, #000 15%, rgba(0,0,0,.9) 38%, rgba(0,0,0,.48) 57%, rgba(0,0,0,.16) 70%, transparent 83%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
  pointer-events: none;
}

.bs-values-section__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to bottom, #fff 0%, rgba(255,255,255,.18) 13%, rgba(255,255,255,.08) 34%, rgba(255,255,255,.56) 54%, #fff 72%),
    linear-gradient(to right, #fff 0%, rgba(255,255,255,.9) 10%, rgba(255,255,255,.2) 27%, transparent 40%, transparent 60%, rgba(255,255,255,.2) 73%, rgba(255,255,255,.9) 90%, #fff 100%),
    radial-gradient(ellipse at 50% 25%, transparent 0%, rgba(255,255,255,.12) 43%, rgba(255,255,255,.8) 78%);
  pointer-events: none;
}

.bs-values-section .bs-pack__container {
  position: relative;
  z-index: 1;
}

.bs-values-section .bs-pack__heading {
  position: relative;
  z-index: 2;
  min-height: clamp(100px, 34vw, 90px);
  margin-bottom: 10px;
  padding: clamp(70px, 9vw, 112px) 24px 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bs-values-section .bs-values {
  background: #fff;
}

.bs-values__title--black,
.bs-values__title--navy {
  color: #fff;
  background: #09090a;
}

.bs-values__title h3 {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(1.4rem, 2.3vw, 1.8rem);
  font-weight: 400;
}

.bs-values__row > p {
  font-size: .95rem;
  line-height: 1.75;
}

.bs-system__headline,
.bs-system__features {
  border-radius: 24px;
}

.bs-system__headline h2 {
  max-width: none;
  margin-left: 0;
  font-size: clamp(2.1rem, 4vw, 3.25rem);
}

.bs-system__headline > p {
  font-size: .64rem;
  line-height: 1.45;
}

.bs-system__features h3 {
  font-size: .92rem;
}

.bs-system__features p {
  font-size: .81rem;
  line-height: 1.65;
}

.bs-stay-ahead {
  border-radius: 26px;
}

.bs-stay-ahead__dark h1 {
  margin: 0 0 24px;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400;
  line-height: .91;
  letter-spacing: -.045em;
}

.bs-stay-ahead__light h3 {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 400;
}

.bs-faq details {
  border-radius: 16px;
  box-shadow: 0 5px 18px rgba(33,31,29,.035);
}

.bs-faq summary {
  font-size: .93rem;
  font-weight: 600;
}

.bs-final-cta {
  background:
    radial-gradient(circle at 50% 0%, rgba(243,202,91,.1), transparent 36%),
    var(--calm-charcoal);
}

.bs-final-cta h2 {
  font-size: clamp(2.8rem, 6vw, 5rem);
}

.hiw-wave-divider {
  position: relative;
  z-index: 8;
  width: 100%;
  height: 64px;
  margin: -32px 0;
  overflow: hidden;
  color: var(--wave-color);
  background: transparent;
  line-height: 0;
  pointer-events: none;
}

.hiw-wave-divider svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.hiw-wave-divider path { fill: currentColor; }
.hiw-wave-divider--cream { --wave-color: var(--calm-cream); }
.hiw-wave-divider--mist { --wave-color: var(--calm-mist); }
.hiw-wave-divider--white { --wave-color: var(--calm-white); }
.hiw-wave-divider--sand { --wave-color: var(--calm-sand); }
.hiw-wave-divider--dark { --wave-color: var(--calm-charcoal); }
.hiw-wave-divider--footer { --wave-color: #222224; }

.bs-start {
  z-index: 2;
  overflow: visible;
  isolation: isolate;
}

.hiw-wave-divider--attached-top,
.hiw-wave-divider--attached-bottom {
  position: absolute;
  left: 0;
  z-index: 3;
  margin: 0;
}

.hiw-wave-divider--attached-top {
  top: -64px;
}

.hiw-wave-divider--attached-bottom {
  bottom: -64px;
}

.bs-final-cta__logo,
.bs-start__logo,
.footer__logo-img {
  opacity: 1;
  filter:
    drop-shadow(0 0 8px rgba(255,255,255,.7))
    drop-shadow(0 0 24px rgba(243,202,91,.34));
  animation: calm-logo-glow 5s ease-in-out infinite;
}

@keyframes calm-logo-glow {
  0%, 100% {
    filter:
      drop-shadow(0 0 7px rgba(255,255,255,.58))
      drop-shadow(0 0 18px rgba(243,202,91,.25));
  }
  50% {
    filter:
      drop-shadow(0 0 12px rgba(255,255,255,.82))
      drop-shadow(0 0 30px rgba(243,202,91,.42));
  }
}

.calm-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity .75s cubic-bezier(.16, 1, .3, 1) var(--reveal-delay, 0ms),
    transform .75s cubic-bezier(.16, 1, .3, 1) var(--reveal-delay, 0ms);
}

.calm-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (hover: hover) {
  .process-card,
  .bs-pricing article,
  .bs-offer__group li,
  .bs-faq details {
    transition: transform .6s ease, box-shadow .6s ease, border-color .6s ease;
  }

  .process-card:hover,
  .bs-pricing article:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 55px rgba(35, 32, 29,.21);
  }
}

@media (max-width: 760px) {
  .hiw-wave-divider {
    height: 44px;
    margin: -22px 0;
  }

  .hiw-wave-divider--attached-top {
    top: -44px;
    margin: 0;
  }

  .hiw-wave-divider--attached-bottom {
    bottom: -44px;
    margin: 0;
  }

  .process-card__details {
    border-top-color: var(--calm-line);
  }

  .bs-pack h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .bs-values__row > p,
  .bs-values__title {
    padding: 28px;
  }

  .bs-offer-section::before {
    inset: 28px -20% 40% -20%;
    opacity: .66;
    background-position: center top;
  }

  .bs-offer-section::after {
    background:
      linear-gradient(180deg, rgba(5,12,11,.36) 0%, rgba(5,12,11,.76) 43%, #07100f 68%),
      linear-gradient(90deg, #07100f, transparent 24%, transparent 76%, #07100f);
  }

  .bs-offer-section .bs-offer__group {
    background: #fff;
  }

  .bs-values-section__video {
    top: 4%;
    width: 150vw;
    max-height: 52%;
    opacity: .28;
  }

  .bs-values-section .bs-pack__heading {
    min-height: 310px;
    padding: 62px 18px 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hiw-wave-divider animate { display: none; }

  .bs-final-cta__logo,
  .footer__logo-img {
    animation: none;
  }

  .calm-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   SHARED PAGE POLISH
   Unified typography, isolated waves, FAQ glow, stay-ahead video
   ============================================================ */

:root {
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Lora", Georgia, serif;
  --wave-cream: #f8f6f1;
  --wave-carousel: hsl(42, 28%, 97%);
  --wave-white: #ffffff;
  --wave-dark: #171615;
  --wave-footer: #222224;
}

html,
body {
  font-family: var(--font-body);
}

h1,
h2,
h3,
.hero h1,
.bs-carousel__heading,
.bs-card__leading,
.bs-hero__headline,
.hiw-hero-headline,
.process-card h3,
.process-card__number,
.bs-pack h2,
.bs-values__title h3,
.bs-stay-ahead__dark h1,
.bs-stay-ahead__light h3,
.audit-section h2,
.cta-section h2 {
  font-family: var(--font-display);
  font-weight: 400;
}

.site-nav,
.footer,
button,
input,
textarea,
select {
  font-family: var(--font-body);
}

/* Homepage divider classes stay separate from How It Works. */
.home-wave-divider {
  position: relative;
  z-index: 8;
  width: 100%;
  height: 64px;
  margin: -32px 0;
  overflow: hidden;
  color: var(--home-wave-color);
  background: transparent;
  line-height: 0;
  pointer-events: none;
}

.home-wave-divider svg,
.hiw-wave-divider svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.home-wave-divider path,
.hiw-wave-divider path {
  fill: currentColor;
}

.home-wave-divider--to-carousel,
.home-wave-divider--from-carousel {
  --home-wave-color: var(--wave-carousel);
}

.home-wave-divider--to-cta {
  --home-wave-color: var(--wave-white);
}

.home-wave-divider--to-dark {
  --home-wave-color: #000;
}

.home-wave-divider--to-footer {
  --home-wave-color: var(--wave-footer);
}

.hiw-wave-divider--cream { --wave-color: var(--wave-cream); }
.hiw-wave-divider--faq { --wave-color: var(--wave-carousel); }
.hiw-wave-divider--white { --wave-color: var(--wave-white); }
.hiw-wave-divider--dark { --wave-color: var(--wave-dark); }
.hiw-wave-divider--footer { --wave-color: var(--wave-footer); }


/* FAQ receives the same warm, diffused glow language as What You Get. */
#faq {
  position: relative;
  isolation: isolate;
  overflow: visible;
  background: var(--wave-carousel);
}

#faq::before {
  content: "";
  position: absolute;
  top: -24%;
  left: 50%;
  z-index: -2;
  width: min(1050px, 120vw);
  height: min(820px, 105vw);
  border-radius: 50%;
  background:
    radial-gradient(
      ellipse at center,
      rgba(255, 188, 128, .5) 0%,
      rgba(255, 180, 110, .22) 45%,
      transparent 72%
    );
  filter: blur(32px);
  transform: translateX(-48%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, rgba(0,0,0,.18) 44px, #000 170px);
  mask-image: linear-gradient(to bottom, transparent 0, rgba(0,0,0,.18) 44px, #000 170px);
  pointer-events: none;
}

#faq::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 14% 76%, rgba(198, 176, 228, .18), transparent 31%),
    linear-gradient(to bottom, transparent 0, rgba(255,255,255,.035) 90px, rgba(255,255,255,.18) 220px);
  pointer-events: none;
}

#faq .bs-pack__container {
  position: relative;
  z-index: 1;
}

.section-attached-wave,
.footer__wave {
  position: absolute;
  top: -62px;
  left: 0;
  z-index: 8;
  width: 100%;
  height: 64px;
  overflow: hidden;
  color: var(--attached-wave-color);
  line-height: 0;
  pointer-events: none;
}

.section-attached-wave svg,
.footer__wave svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.section-attached-wave path,
.footer__wave path {
  fill: currentColor;
}

.section-attached-wave--faq {
  --attached-wave-color: var(--wave-carousel);
}

#faq .bs-faq details {
  border-color: rgba(58, 46, 40, .09);
  background: rgba(255,255,255,.84);
  box-shadow: 0 12px 34px rgba(58,46,40,.07);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Only the final Stay Ahead video is softened. */
.bs-hero--stay-ahead {
  isolation: isolate;
}

.bs-hero--stay-ahead::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at center, transparent 60%, rgba(0,0,0,.22) 72%),
    rgba(0,0,0,.16);
  pointer-events: none;
}

.bs-hero--stay-ahead .bs-hero__video--stay-ahead {
  opacity: .22;
  filter: saturate(.8) contrast(.9);
}

.bs-hero--stay-ahead .bs-hero__inner {
  position: relative;
  z-index: 1;
}

/* Center the audit mark directly above its message. */
#get-started .bs-start__grid > div:first-child {
  text-align: center;
}

#get-started .bs-start__logo {
  display: block;
  width: 96px;
  margin: 0 auto 28px;
}

#get-started .bs-start__grid > div:first-child h2,
#get-started .bs-start__grid > div:first-child > p {
  margin-right: auto;
  margin-left: auto;
}

#get-started .bs-start__grid ul {
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  text-align: left;
}

/* Compact shared footer. The wave is part of the footer itself. */
.footer {
  position: relative;
  padding: 24px 0 12px;
  overflow: visible;
  background: var(--wave-footer);
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0,0,0,.07) .7px, transparent .7px);
  background-size: 22px 22px;
  opacity: .72;
  pointer-events: none;
}

.footer__wave {
  --attached-wave-color: var(--wave-footer);
}

.footer .container {
  position: relative;
  z-index: 1;
}

.footer__inner {
  display: grid;
  grid-template-columns: minmax(240px, .8fr) minmax(300px, 1fr);
  gap: clamp(32px, 7vw, 90px);
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 0;
}

.footer__brand {
  display: grid;
  grid-template-columns: 56px minmax(0, 330px);
  gap: 14px;
  align-items: center;
}

.footer__logo-img {
  width: 54px;
  height: auto;
  max-height: none;
  margin: 0;
  object-fit: contain;
}

.footer__brand-copy {
  min-width: 0;
}

.footer__brand .footer__eyebrow,
.footer__link-group > p {
  margin: 0 0 6px;
  color: #f3ca5b;
  font-family: var(--font-body);
  font-size: .61rem;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.footer__brand-copy > p:last-child {
  max-width: 330px;
  margin: 0;
  color: rgba(255,255,255,.52);
  font-size: .76rem;
  line-height: 1.55;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(110px, 1fr));
  gap: 20px;
  align-items: start;
  margin-left: 0;
  padding-left: 0;
}

.footer__link-group {
  display: grid;
  gap: 5px;
}

.footer__links a {
  width: fit-content;
  color: rgba(255,255,255,.68);
  font-size: .76rem;
  font-weight: 400;
  text-decoration: none;
  transition: color .25s ease, transform .25s ease;
}

.footer__links a:hover {
  color: #fff;
  transform: translateX(3px);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 9px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.footer__bottom p,
.footer__utility a {
  color: rgba(255,255,255,.36);
  font-size: .65rem;
}

.footer__utility {
  display: flex;
  gap: 22px;
}

/* SuiteDash checkout embed */
.checkout-section {
  position: relative;
  padding: clamp(74px, 9vw, 108px) 24px 110px;
  background:
    radial-gradient(circle at 50% 10%, rgba(243,202,91,.12), transparent 30%),
    #fff;
  text-align: center;
}

.checkout-section__inner {
  width: min(100%, 860px);
}

.checkout-section h2 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 400;
}

.checkout-section__inner > p:not(.bs-pack__eyebrow) {
  max-width: 620px;
  margin: 0 auto 34px;
  color: var(--calm-copy);
  line-height: 1.7;
}

.checkout-embed {
  min-height: 180px;
  padding: 18px;
  border: 1px solid var(--calm-line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(33,31,29,.08);
}

@media (max-width: 760px) {
  .home-wave-divider {
    height: 44px;
    margin: -22px 0;
  }

  #faq::before {
    top: -5%;
    width: 150vw;
    height: 120vw;
  }

  .section-attached-wave,
  .footer__wave {
    top: -42px;
    height: 44px;
  }

  .footer {
    padding-top: 22px;
  }

  .footer__inner,
  .footer__brand {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    gap: 30px;
  }

  .footer__brand {
    gap: 16px;
  }

  .footer__logo-img {
    width: 64px;
    margin: 0;
  }

  .footer__links {
    max-width: 380px;
  }

  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    text-align: left;
  }
}
/* Full-screen opening heroes */
.hero,
.hiw-hero--intro {
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  box-sizing: border-box;
}

/* Homepage hero */
.hero {
  padding: 110px 0 64px;
}

/* Keep hero content vertically centered */
.hero > .container,
.hiw-hero-inner--intro {
  margin-top: auto;
  margin-bottom: auto;
}

/* Mobile */
@media (max-width: 768px) {
  .hero,
  .hiw-hero--intro {
    min-height: 100vh;
    min-height: 100svh;
  }

  .hero {
    padding: 100px 20px 50px;
  }
}

:root {
  --font-display: "Roboto", Arial, sans-serif;
  --font-body: "Roboto", Arial, sans-serif;
}

html,
body,
button,
input,
textarea,
select,
.site-nav,
.footer,
h1,
h2,
h3 {
  font-family: "Roboto", Arial, sans-serif;
}

/* ============================================================
   SEAMLESS SECTION DIVIDERS
   Final overrides: every divider overlaps the two neighboring sections
   and uses the destination section's color, preventing straight bars.
   ============================================================ */

.hero,
.bs-carousel,
.cta-section,
.bs-hero,
.hiw-hero--intro,
.process-steps,
.bs-pack,
.bs-pack__section,
.footer {
  position: relative;
}

.home-wave-divider,
.hiw-wave-divider {
  z-index: 20;
  height: 72px;
  margin: -36px 0;
  overflow: hidden;
  background: transparent;
  line-height: 0;
  transform: translateZ(0);
}

.home-wave-divider svg,
.hiw-wave-divider svg {
  display: block;
  width: 100%;
  height: 100%;
}

.home-wave-divider path,
.hiw-wave-divider path {
  fill: currentColor;
}

.home-wave-divider--to-carousel,
.home-wave-divider--from-carousel {
  --home-wave-color: var(--wave-carousel);
}

.home-wave-divider--to-dark {
  --home-wave-color: var(--wave-dark);
}

.home-wave-divider--to-footer {
  --home-wave-color: var(--wave-footer);
}

.hiw-wave-divider--cream {
  --wave-color: var(--wave-cream);
}

.hiw-wave-divider--dark {
  --wave-color: #000;
}

.hiw-wave-divider--white {
  --wave-color: var(--wave-white);
}

.section-attached-wave,
.footer__wave {
  top: -70px;
  z-index: 20;
  height: 72px;
  transform: translateZ(0);
}

.section-attached-wave--faq {
  --attached-wave-color: var(--wave-carousel);
}

.footer__wave {
  --attached-wave-color: var(--wave-footer);
}

#faq,
.footer {
  overflow: visible;
}

/* Video CTA joins: keep the moving video below the wave so there is no hard
   rectangular clip visible at the section boundary. */
.bs-hero {
  background: #000;
  overflow: hidden;
  isolation: isolate;
}

.bs-hero__video {
  inset: 0;
  height: 100%;
  z-index: 0;
}

.bs-hero__inner {
  z-index: 3;
}

.home-wave-divider--to-dark,
.hiw-wave-divider--dark {
  color: #000;
}

/* Homepage offer -> video CTA transition.
   The black SVG wave was visually fighting the moving video, so the video CTA
   now fades in from a solid black cap instead of bleeding through a divider. */
#offer {
  overflow: hidden;
  padding-bottom: clamp(112px, 12vw, 156px);
}

#hero-cta {
  margin-top: 0;
  overflow: hidden;
}

#hero-cta::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
  height: clamp(96px, 12vw, 160px);
  background: linear-gradient(
    to bottom,
    #000 0%,
    rgba(0,0,0,.94) 16%,
    rgba(0,0,0,.7) 42%,
    rgba(0,0,0,.25) 76%,
    transparent 100%
  );
  pointer-events: none;
}

#hero-cta .bs-hero__video {
  top: 0;
  opacity: .16;
}

#hero-cta .bs-hero__inner {
  z-index: 3;
}

/* No divider between FAQ and the final How It Works CTA. */
#faq + #hero-cta {
  margin-top: 0;
  background: #000;
  overflow: hidden;
}

#faq + #hero-cta::before,
#faq + #hero-cta::after {
  display: none;
}

#faq + #hero-cta .bs-hero__video {
  inset: 0;
  height: 100%;
  opacity: .16;
}

#faq + #hero-cta .bs-hero__inner {
  position: relative;
  z-index: 3;
}


/* Project 21 hard removal: no generated divider/cap on any minimal CTA. */
#hero-cta::before,
#hero-cta::after,
#faq + #hero-cta::before,
#faq + #hero-cta::after {
  content: none !important;
  display: none !important;
}

#hero-cta {
  margin-top: 0 !important;
  background: #000;
  overflow: hidden;
}

#hero-cta .bs-hero__video {
  inset: 0 !important;
  height: 100% !important;
  opacity: .16;
}

#hero-cta .bs-hero__inner {
  position: relative;
  z-index: 3;
}

/* Free offer section: attach the divider to the dark section itself so it
   matches the section color and cannot be clipped by the previous section. */
#get-started {
  position: relative;
  overflow: visible !important;
  margin-top: 0;
}

.free-offer-attached-wave {
  position: absolute;
  top: -70px;
  right: 0;
  left: 0;
  z-index: 20;
  height: 72px;
  overflow: hidden;
  color: var(--bs-dark);
  line-height: 0;
  pointer-events: none;
}

.free-offer-attached-wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

.free-offer-attached-wave path {
  fill: currentColor;
}

/* Carousel preview glow fix: reserve enough real stage height for the full
   downward shadow (28px offset + 82px blur) before the next wave begins. */
.bs-carousel {
  overflow: visible;
  contain: layout;
}

.bs-carousel__stage {
  height: 680px;
  overflow: visible;
  padding: 40px 220px 124px;
  margin: -40px -220px 0;
}

.bs-card {
  top: 40px;
}

.bs-card[data-state="active"] {
  box-shadow:
    0 28px 82px rgba(0, 0, 0, 0.28),
    0 0 46px rgba(243, 202, 91, 0.18);
}

.bs-card[data-state="next"],
.bs-card[data-state="prev"] {
  box-shadow: 0 16px 42px rgba(33, 31, 29, 0.12);
}

@media (max-width: 640px) {
  .bs-carousel__stage {
    height: 520px;
    padding-top: 32px;
    padding-bottom: 112px;
  }

  .bs-card {
    top: 32px;
  }
}

/* ============================================================
   OFFER PAGE — DARK THEME
   Keeps Offer.html aligned with the Black Sand site while making every
   section live on black/dark surfaces.
   ============================================================ */

.offer-page {
  --offer-black: #050505;
  --offer-ink: #0b0b0c;
  --offer-panel: rgba(255, 255, 255, 0.075);
  --offer-panel-strong: rgba(255, 255, 255, 0.11);
  --offer-line: rgba(255, 255, 255, 0.16);
  --offer-copy: rgba(255, 255, 255, 0.72);
  --offer-muted: rgba(255, 255, 255, 0.5);
  --offer-gold: #f3c85b;
  --offer-blue: #fdd468;
  background: #fffff;
  color: #fff;
}

.offer-page .site-nav__pill {
  background: rgba(8, 8, 9, 0.82);
  border-color: rgba(255, 255, 255, 0.13);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(20px);
}

.offer-page .site-nav__links a {
  color: rgba(255, 255, 255, 0.68);
}

.offer-page .site-nav__links a:hover,
.offer-page .site-nav__links a.is-active {
  color: #fff;
}

.offer-page .site-nav__links a.is-active::after {
  background: var(--offer-gold);
}

.offer-page .site-nav__cta {
  background: linear-gradient(135deg, var(--offer-gold), #f7a833);
  color: #16120b;
  box-shadow: 0 16px 40px rgba(243, 200, 91, 0.26);
}

.offer-page .bs-hero {
  min-height: 92vh;
  background:
    radial-gradient(circle at 50% 18%, rgba(243, 200, 91, 0.2), transparent 28%),
    radial-gradient(circle at 78% 54%, rgba(130, 160, 255, 0.14), transparent 34%),
    linear-gradient(180deg, #030303 0%, #090909 58%, #050505 100%);
}

.offer-page .bs-hero__video {
  opacity: 0.13 !important;
  filter: saturate(0.85) contrast(1.16);
}

.offer-page .bs-hero__headline {
  color: #fff;
  text-shadow: 0 0 54px rgba(243, 200, 91, 0.16);
}

.offer-page .bs-hero__microcopy {
  color: var(--offer-copy);
}

.offer-page .bs-pack {
  background: var(--offer-black);
}

.offer-page .bs-pack__section,
.offer-page .bs-pack__section--white,
.offer-page .bs-pack__section--soft {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 0%, rgba(243, 200, 91, 0.13), transparent 34%),
    radial-gradient(circle at 86% 18%, rgba(130, 160, 255, 0.09), transparent 34%),
    linear-gradient(180deg, #050505 0%, #0a0a0b 100%) !important;
  color: #fff;
}

.offer-page .bs-pack__section:nth-of-type(even),
.offer-page #stay-ahead {
  background:
    radial-gradient(circle at 78% 0%, rgba(243, 200, 91, 0.1), transparent 32%),
    linear-gradient(180deg, #0b0b0c 0%, #050505 100%) !important;
}

.offer-page .bs-pack__heading h2,
.offer-page .bs-system__headline h2,
.offer-page .bs-stay-ahead__dark h1,
.offer-page .bs-stay-ahead__light h3,
.offer-page .bs-start h2,
.offer-page .bs-final-cta h2 {
  color: #fff;
}

.offer-page .bs-pack__lead,
.offer-page .bs-pack__heading > p:not(.bs-pack__eyebrow),
.offer-page .bs-system__features p,
.offer-page .bs-stay-ahead__light p,
.offer-page .bs-start__grid > div > p {
  color: var(--offer-copy);
}

.offer-page .bs-pack__eyebrow {
  color: var(--offer-gold);
}

.offer-page .bs-pricing article,
.offer-page .bs-system__features,
.offer-page .bs-stay-ahead,
.offer-page .bs-stay-ahead__light,
.offer-page .bs-start__form {
  border: 1px solid var(--offer-line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045));
  color: #fff;
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.42),
    0 0 42px rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(18px);
}

.offer-page .bs-pricing article:first-child {
  box-shadow:
    0 28px 86px rgba(0, 0, 0, 0.52),
    0 0 54px rgba(243, 200, 91, 0.13);
}

.offer-page .bs-pricing strong {
  color: #fff;
}

.offer-page .bs-pricing article:nth-child(2) strong {
  color: #dfe8dc;
}

.offer-page .bs-pricing span,
.offer-page .bs-pricing li,
.offer-page .bs-start__form small {
  color: var(--offer-copy);
}

.offer-page .bs-pricing li::before,
.offer-page .bs-start__grid li::before {
  background: linear-gradient(135deg, var(--offer-gold), #f7a833);
  color: #17120a;
}

.offer-page .bs-system__headline {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at 20% 12%, rgba(243, 200, 91, 0.2), transparent 36%),
    linear-gradient(145deg, #141414, #050505);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.44);
}

.offer-page .bs-system__headline--gold {
  background:
    radial-gradient(circle at 70% 18%, rgba(255, 255, 255, 0.16), transparent 30%),
    linear-gradient(145deg, #c89524, #6f4e10);
}

.offer-page .bs-system__headline > p {
  color: rgba(255, 255, 255, 0.58);
}

.offer-page .bs-system__features article + article {
  border-top-color: var(--offer-line);
}

.offer-page .bs-system__features article > span {
  color: var(--offer-gold);
}

.offer-page .bs-start {
  background:
    radial-gradient(circle at 14% 8%, rgba(243, 200, 91, 0.16), transparent 34%),
    linear-gradient(180deg, #090909 0%, #030303 100%) !important;
}

.offer-page .bs-start::before {
  opacity: 0.08;
  background-image: radial-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px);
}

.offer-page .bs-start__logo,
.offer-page .bs-final-cta__logo,
.offer-page .footer__logo-img {
  filter:
    drop-shadow(0 0 18px rgba(255, 255, 255, 0.26))
    drop-shadow(0 0 34px rgba(243, 200, 91, 0.18));
}

.offer-page .bs-start__form label {
  color: rgba(255, 255, 255, 0.84);
}

.offer-page .bs-start__form input {
  border-color: var(--offer-line);
  background: rgba(0, 0, 0, 0.38);
  color: #fff;
}

.offer-page .bs-start__form input::placeholder {
  color: rgba(255, 255, 255, 0.36);
}

.offer-page .bs-start__form button,
.offer-page .bs-pack__button--gold,
.offer-page .bs-hero__btn {
  background: linear-gradient(135deg, var(--offer-gold), #f7a833);
  color: #17120a;
  box-shadow: 0 18px 46px rgba(243, 200, 91, 0.24);
}

.offer-page .bs-pack__button--ghost {
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.offer-page .bs-stay-ahead__dark {
  background:
    radial-gradient(circle at 18% 16%, rgba(243, 200, 91, 0.16), transparent 38%),
    linear-gradient(145deg, #101011, #050505);
}

.offer-page .bs-stay-ahead__light {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
}

.offer-page .bs-final-cta {
  background:
    radial-gradient(circle at 50% 18%, rgba(243, 200, 91, 0.18), transparent 30%),
    radial-gradient(circle at 18% 80%, rgba(130, 160, 255, 0.08), transparent 32%),
    #050505 !important;
}

.offer-page .hiw-wave-divider,
.offer-page .free-offer-attached-wave,
.offer-page .footer__wave {
  color: #050505;
  --wave-color: #050505;
  --attached-wave-color: #050505;
}

.offer-page .footer {
  background: #050505;
  color: #fff;
}

.offer-page .footer__wave path {
  fill: #050505;
}

.offer-page .footer__brand-copy p,
.offer-page .footer__link-group p,
.offer-page .footer__bottom p {
  color: rgba(255, 255, 255, 0.56);
}

.offer-page .footer__links a,
.offer-page .footer__utility a {
  color: rgba(255, 255, 255, 0.72);
}

.offer-page .footer__links a:hover,
.offer-page .footer__utility a:hover {
  color: #fff;
}

@media (max-width: 760px) {
  .offer-page .bs-hero {
    min-height: 82vh;
  }

  .offer-page .bs-pack__section {
    padding-top: 84px;
    padding-bottom: 84px;
  }
}

/* ============================================================
   OFFER PAGE — LIGHT REDESIGN
   Final overrides for Project 24. This intentionally replaces the earlier
   dark offer experiment while keeping the styling scoped to Offer.html.
   ============================================================ */

.offer-page--light {
  --offer-cream: hsl(42, 38%, 96%);
  --offer-white: #ffffff;
  --offer-sand: #f5efe4;
  --offer-ink: #221d19;
  --offer-copy: rgba(34, 29, 25, 0.7);
  --offer-muted: rgba(34, 29, 25, 0.52);
  --offer-border: rgba(40, 32, 24, 0.12);
  --offer-accent: #fdd468;
  --offer-accent-deep: #c88722;
  --offer-accent-hover: #fdab44;
  --offer-gold: #fdd468;
  --offer-lavender: #c8bcff;
  background: var(--offer-cream);
  color: var(--offer-ink);
}

.offer-page--light .site-nav__pill {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(34, 29, 25, 0.1);
  box-shadow: 0 18px 60px rgba(60, 46, 34, 0.1);
  backdrop-filter: blur(20px);
}

.offer-page--light .site-nav__links a {
  color: rgba(34, 29, 25, 0.66);
}

.offer-page--light .site-nav__links a:hover,
.offer-page--light .site-nav__links a.is-active {
  color: var(--offer-accent);
}

.offer-page--light .site-nav__links a.is-active::after {
  background: var(--offer-accent);
}

.offer-page--light .site-nav__cta,
.offer-page--light .site-nav__mobile-cta {
  background: var(--offer-accent);
  color: #161413;
  box-shadow: 0 16px 42px rgba(253, 212, 104, 0.34);
}

.offer-page--light .offer-hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  padding: clamp(118px, 12vw, 156px) 24px clamp(70px, 8vw, 104px);
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(203, 194, 233, 0.38), transparent 28%),
    radial-gradient(circle at 78% 22%, rgba(253, 212, 104, 0.42), transparent 30%),
    radial-gradient(circle at 52% 88%, rgba(255, 214, 235, 0.36), transparent 34%),
    linear-gradient(135deg, #fbfaf6 0%, #eef2ff 52%, #fff7e8 100%);
}

.offer-page--light .offer-hero__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.16;
  filter: saturate(0.92) contrast(1.08);
  pointer-events: none;
  transition: opacity 1.15s ease;
}

.offer-page--light .offer-hero__video.is-fading {
  opacity: 0;
}

.offer-page--light .offer-hero__pixels {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0;
  mix-blend-mode: soft-light;
  pointer-events: none;
  transition: opacity 1.4s ease;
}

.offer-page--light .offer-hero__pixels.is-visible {
  opacity: 0.72;
}

.offer-page--light .offer-hero__wash {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(251, 250, 246, 0.96) 0%, rgba(251, 250, 246, 0.78) 45%, rgba(251, 250, 246, 0.48) 100%),
    radial-gradient(circle at 62% 50%, rgba(255, 255, 255, 0.48), transparent 38%);
}

.offer-page--light .offer-hero__shell {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.offer-page--light .offer-hero__copy {
  max-width: 560px;
}

.offer-page--light .offer-eyebrow {
  margin: 0 0 16px;
  color: var(--offer-accent-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.offer-page--light .offer-hero h1,
.offer-page--light .offer-section__heading h2,
.offer-page--light .offer-checkout__copy h2 {
  font-family: var(--font-display, "Roboto", Arial, sans-serif);
  margin: 0;
  color: var(--offer-ink);
  font-size: clamp(3.2rem, 7vw, 6.4rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.offer-page--light .offer-hero__copy > p:not(.offer-eyebrow),
.offer-page--light .offer-section__heading > p:not(.offer-eyebrow),
.offer-page--light .offer-checkout__copy > p:not(.offer-eyebrow) {
  max-width: 520px;
  margin: 24px 0 0;
  color: var(--offer-copy);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  line-height: 1.75;
}

.offer-page--light .offer-hero__actions,
.offer-page--light .offer-pricing-panel__top,
.offer-page--light .offer-price-card > div {
  display: flex;
  align-items: center;
}

.offer-page--light .offer-hero__actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.offer-page--light .offer-button,
.offer-page--light .offer-form button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.offer-page--light .offer-button--primary,
.offer-page--light .offer-form button {
  border: 0;
  background: var(--offer-accent);
  color: #161413;
  box-shadow: 0 18px 42px rgba(253, 212, 104, 0.3);
}

.offer-page--light .offer-button--ghost {
  border: 1px solid rgba(34, 29, 25, 0.14);
  background: rgba(255, 255, 255, 0.62);
  color: var(--offer-ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.offer-page--light .offer-button:hover,
.offer-page--light .offer-form button:hover {
  transform: translateY(-3px);
}

.offer-page--light .offer-button--primary:hover,
.offer-page--light .offer-form button:hover {
  background: var(--offer-accent-hover);
  box-shadow: 0 24px 56px rgba(253, 171, 68, 0.34);
}

.offer-page--light .offer-pricing-panel {
  position: relative;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 36px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.62)),
    radial-gradient(circle at 22% 12%, rgba(242, 180, 71, 0.18), transparent 28%);
  box-shadow:
    0 34px 90px rgba(62, 49, 38, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(22px);
}

.offer-page--light .offer-pricing-panel::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(253, 212, 104, 0.28), rgba(253, 171, 68, 0.16));
  filter: blur(36px);
  opacity: 0.78;
}

.offer-page--light .offer-pricing-panel__top {
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.offer-page--light .offer-pricing-panel__top span {
  color: var(--offer-accent-deep);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.offer-page--light .offer-pricing-panel__top strong {
  color: var(--offer-muted);
  font-size: 0.9rem;
}

.offer-page--light .offer-price-grid,
.offer-page--light .offer-feature-grid,
.offer-page--light .offer-step-list {
  display: grid;
  gap: 16px;
}

.offer-page--light .offer-price-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.offer-page--light .offer-price-card,
.offer-page--light .offer-feature-card,
.offer-page--light .offer-step,
.offer-page--light .offer-form {
  border: 1px solid var(--offer-border);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 48px rgba(63, 49, 34, 0.08);
  transition:
    transform 0.34s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.34s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.34s ease,
    background 0.34s ease;
}

.offer-page--light .offer-price-card:hover,
.offer-page--light .offer-feature-card:hover,
.offer-page--light .offer-step:hover,
.offer-page--light .offer-form:hover,
.offer-page--light .offer-pricing-panel:hover {
  animation: none;
  transform: translateY(-8px);
  border-color: rgba(200, 135, 34, 0.24);
  box-shadow: 0 30px 70px rgba(63, 49, 34, 0.14);
}

.offer-page--light .offer-price-card {
  padding: 26px;
}

.offer-page--light .offer-price-card p,
.offer-page--light .offer-feature-card h3,
.offer-page--light .offer-step h3 {
  margin: 0;
  color: var(--offer-ink);
}

.offer-page--light .offer-price-card > p {
  color: var(--offer-accent-deep);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.offer-page--light .offer-price-card > div {
  gap: 8px;
  margin: 18px 0 22px;
}

.offer-page--light .offer-price-card strong {
  color: var(--offer-ink);
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 300;
  letter-spacing: -0.07em;
}

.offer-page--light .offer-price-card span,
.offer-page--light .offer-pricing-panel__note,
.offer-page--light .offer-feature-card p,
.offer-page--light .offer-step p,
.offer-page--light .offer-form small {
  color: var(--offer-copy);
}

.offer-page--light .offer-price-card ul,
.offer-page--light .offer-feature-card p,
.offer-page--light .offer-step p {
  margin: 0;
}

.offer-page--light .offer-price-card ul {
  display: grid;
  gap: 11px;
  padding: 0;
  list-style: none;
}

.offer-page--light .offer-price-card li {
  color: var(--offer-copy);
  font-size: 0.94rem;
}

.offer-page--light .offer-price-card li::before {
  content: "✓";
  display: inline-grid;
  width: 18px;
  height: 18px;
  margin-right: 9px;
  place-items: center;
  border-radius: 999px;
  background: rgba(253, 212, 104, 0.28);
  color: #8a5a10;
  font-size: 0.65rem;
  font-weight: 700;
}

.offer-page--light .offer-price-card--care li::before {
  background: rgba(242, 180, 71, 0.2);
  color: #9a6511;
}

.offer-page--light .offer-pricing-panel__note {
  margin: 18px 4px 0;
  font-size: 0.94rem;
  line-height: 1.6;
}

.offer-page--light .offer-wave {
  position: relative;
  z-index: 5;
  height: 72px;
  margin: -36px 0;
  overflow: hidden;
  line-height: 0;
  pointer-events: none;
}

.offer-page--light .offer-wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

.offer-page--light .offer-wave path {
  fill: currentColor;
}

.offer-page--light .offer-wave--cream { color: var(--offer-cream); }
.offer-page--light .offer-wave--white { color: var(--offer-white); }
.offer-page--light .offer-wave--sand { color: var(--offer-sand); }
.offer-page--light .offer-wave--footer { color: #222224; }

.offer-page--light .offer-section {
  position: relative;
  padding: clamp(92px, 10vw, 132px) 24px;
  overflow: hidden;
}

.offer-page--light .offer-section--cream {
  background:
    radial-gradient(circle at 78% 0%, rgba(200, 188, 255, 0.28), transparent 28%),
    var(--offer-cream);
}

.offer-page--light .offer-section--white {
  background:
    radial-gradient(circle at 12% 8%, rgba(242, 180, 71, 0.16), transparent 30%),
    var(--offer-white);
}

.offer-page--light .offer-section--sand {
  background:
    radial-gradient(circle at 18% 12%, rgba(253, 212, 104, 0.2), transparent 28%),
    var(--offer-sand);
}

.offer-page--light .offer-container {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.offer-page--light .offer-section__heading {
  max-width: 720px;
  margin-bottom: 42px;
}

.offer-page--light .offer-section__heading h2,
.offer-page--light .offer-checkout__copy h2 {
  font-size: clamp(2.3rem, 5vw, 4.8rem);
}

.offer-page--light .offer-feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.offer-page--light .offer-feature-card {
  padding: 28px;
}

.offer-page--light .offer-feature-card span,
.offer-page--light .offer-step span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--offer-accent-deep);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.offer-page--light .offer-feature-card h3,
.offer-page--light .offer-step h3 {
  margin-bottom: 12px;
  font-size: 1.12rem;
}

.offer-page--light .offer-feature-card p,
.offer-page--light .offer-step p {
  line-height: 1.65;
}

.offer-page--light .offer-split,
.offer-page--light .offer-checkout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
}

.offer-page--light .offer-step {
  padding: 26px 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(251, 250, 246, 0.72));
}

.offer-page--light .offer-checkout__logo {
  width: 74px;
  margin-bottom: 26px;
  filter:
    drop-shadow(0 0 18px rgba(255, 255, 255, 0.54))
    drop-shadow(0 0 32px rgba(242, 180, 71, 0.22));
}

.offer-page--light .offer-form {
  display: grid;
  gap: 16px;
  padding: clamp(26px, 4vw, 38px);
  background: rgba(255, 255, 255, 0.86);
}

.offer-page--light .offer-form label {
  display: grid;
  gap: 8px;
  color: rgba(34, 29, 25, 0.74);
  font-size: 0.9rem;
  font-weight: 700;
}

.offer-page--light .offer-form input {
  width: 100%;
  border: 1px solid rgba(34, 29, 25, 0.12);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.92);
  padding: 14px 15px;
  color: var(--offer-ink);
  font: inherit;
}

.offer-page--light .offer-form input:focus {
  border-color: rgba(200, 135, 34, 0.45);
  box-shadow: 0 0 0 4px rgba(253, 212, 104, 0.18);
  outline: 0;
}

.offer-page--light .offer-form small {
  text-align: center;
}

.offer-page--light .footer {
  background: #222224;
}

.offer-page--light .reveal-card {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s ease var(--reveal-delay, 0ms),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms);
}

.offer-page--light .reveal-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .offer-page--light .offer-hero__shell,
  .offer-page--light .offer-split,
  .offer-page--light .offer-checkout {
    grid-template-columns: 1fr;
  }

  .offer-page--light .offer-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .offer-page--light .offer-hero {
    padding-top: 108px;
  }

  .offer-page--light .offer-price-grid,
  .offer-page--light .offer-feature-grid {
    grid-template-columns: 1fr;
  }

  .offer-page--light .offer-hero h1 {
    font-size: clamp(3rem, 15vw, 4.7rem);
  }

  .offer-page--light .offer-pricing-panel {
    border-radius: 28px;
  }
}

/* ============================================================
   OFFER PAGE — FINAL POLISH
   Visible post-video pixels, process video background, deeper gradients,
   cleaner wave joins, and footer logo glow room.
   ============================================================ */

.offer-page--light .offer-hero {
  background:
    radial-gradient(circle at 18% 18%, rgba(203, 194, 233, 0.36), transparent 28%),
    radial-gradient(circle at 78% 22%, rgba(253, 212, 104, 0.42), transparent 30%),
    radial-gradient(circle at 52% 88%, rgba(255, 214, 235, 0.34), transparent 34%),
    linear-gradient(120deg, rgba(34, 34, 36, 0.2) 0%, rgba(34, 34, 36, 0.05) 36%, rgba(34, 34, 36, 0.16) 100%),
    linear-gradient(135deg, #fbfaf6 0%, #eef2ff 52%, #fff7e8 100%);
}

.offer-page--light .offer-hero__pixels {
  z-index: 2;
  mix-blend-mode: normal;
  opacity: 0;
  filter:
    drop-shadow(0 0 8px rgba(253, 212, 104, 0.26))
    blur(0.1px);
}

.offer-page--light .offer-hero__pixels.is-visible {
  opacity: 0.95;
}

.offer-page--light .offer-hero__wash {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(251, 250, 246, 0.9) 0%, rgba(251, 250, 246, 0.68) 45%, rgba(251, 250, 246, 0.38) 100%),
    radial-gradient(circle at 62% 50%, rgba(255, 255, 255, 0.36), transparent 38%),
    linear-gradient(180deg, rgba(34, 34, 36, 0.08), rgba(34, 34, 36, 0.02));
}

.offer-page--light .offer-hero__shell {
  z-index: 3;
}

.offer-page--light .offer-wave {
  display: none;
}

.offer-page--light .offer-section,
.offer-page--light .footer {
  position: relative;
  overflow: visible !important;
  margin-top: 0;
}

.offer-page--light .offer-attached-wave {
  position: absolute;
  top: -87px;
  left: 0;
  right: 0;
  z-index: 20;
  height: 88px;
  overflow: hidden;
  color: var(--attached-offer-wave-color);
  line-height: 0;
  pointer-events: none;
}

.offer-page--light .offer-attached-wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

.offer-page--light .offer-attached-wave path {
  fill: currentColor;
}

.offer-page--light .offer-attached-wave--cream {
  --attached-offer-wave-color: var(--offer-cream);
}

.offer-page--light .offer-attached-wave--white {
  --attached-offer-wave-color: var(--offer-white);
}

.offer-page--light .offer-attached-wave--sand {
  --attached-offer-wave-color: var(--offer-sand);
}

.offer-page--light .offer-attached-wave--footer {
  --attached-offer-wave-color: #222224;
}

.offer-page--light .offer-section--cream {
  background: var(--offer-cream);
}

.offer-page--light .offer-section--white {
  background: var(--offer-white);
}

.offer-page--light .offer-section--sand {
  background: var(--offer-sand);
}

.offer-page--light .offer-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.offer-page--light .offer-section--cream::after {
  background:
    radial-gradient(circle at 78% 0%, rgba(200, 188, 255, 0.24), transparent 28%),
    linear-gradient(135deg, rgba(34, 34, 36, 0.08), rgba(34, 34, 36, 0.02) 42%, rgba(34, 34, 36, 0.1));
}

.offer-page--light .offer-section--white::after {
  background:
    radial-gradient(circle at 12% 8%, rgba(242, 180, 71, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(34, 34, 36, 0.1), rgba(255, 255, 255, 0) 44%, rgba(34, 34, 36, 0.08));
}

.offer-page--light .offer-section--sand::after {
  background:
    radial-gradient(circle at 18% 12%, rgba(253, 212, 104, 0.2), transparent 28%),
    linear-gradient(135deg, rgba(34, 34, 36, 0.08), rgba(34, 34, 36, 0.02) 44%, rgba(34, 34, 36, 0.12));
}

.offer-page--light .offer-container {
  position: relative;
  z-index: 2;
}

.offer-page--light #process {
  isolation: isolate;
  overflow: visible !important;
}

.offer-page--light #process::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.88), rgba(255,255,255,0.62)),
    radial-gradient(circle at 20% 10%, rgba(253,212,104,0.18), transparent 32%),
    linear-gradient(135deg, rgba(34,34,36,0.14), rgba(34,34,36,0.04));
  pointer-events: none;
}

.offer-page--light .offer-process__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  filter: saturate(0.7) contrast(1.08);
  pointer-events: none;
}

.offer-page--light #process .offer-container {
  position: relative;
  z-index: 2;
}

.offer-page--light .offer-step {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(251, 250, 246, 0.76));
  backdrop-filter: blur(14px);
}

.offer-page--light .footer {
  overflow: visible !important;
  padding-top: 42px;
}

.offer-page--light .footer .container,
.offer-page--light .footer__inner,
.offer-page--light .footer__brand {
  overflow: visible;
}

.offer-page--light .footer__brand {
  grid-template-columns: 86px minmax(0, 330px);
  min-height: 92px;
}

.offer-page--light .footer__logo-img {
  width: 74px;
  margin: -10px 0;
  overflow: visible;
  filter:
    drop-shadow(0 0 18px rgba(255, 255, 255, 0.32))
    drop-shadow(0 0 38px rgba(253, 212, 104, 0.28));
}

@media (max-width: 640px) {
  .offer-page--light .offer-wave {
    height: 68px;
    margin: -34px 0;
  }

  .offer-page--light .offer-wave svg {
    height: 68px;
  }

  .offer-page--light .footer__brand {
    grid-template-columns: 74px minmax(0, 1fr);
  }

  .offer-page--light .footer__logo-img {
    width: 64px;
  }
}

/* ============================================================
   FINAL SITE POLISH — NAV/FOOTER, OFFER WAVES, LEGAL PAGES
   ============================================================ */

.site-nav__links {
  gap: clamp(18px, 3vw, 34px);
}

.footer__links {
  align-items: flex-start;
}

.footer__links a,
.footer__utility a {
  white-space: nowrap;
}

.footer__text-logo {
  display: block;
  width: clamp(150px, 18vw, 220px);
  height: auto;
  margin: -6px 0 2px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.14));
}

.footer,
.footer .container,
.footer__inner,
.footer__brand {
  overflow: visible;
}

.offer-page--light .offer-section,
.offer-page--light .footer {
  background-clip: padding-box;
  isolation: isolate;
}

.offer-page--light .offer-section {
  padding-top: clamp(116px, 10vw, 150px);
}

.offer-page--light .offer-attached-wave {
  top: -98px;
  height: 100px;
  z-index: 4;
  color: var(--attached-offer-wave-color);
  transform: translateZ(0);
}

.offer-page--light .offer-attached-wave svg {
  height: 100px;
}

.offer-page--light .offer-attached-wave::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 8px;
  background: currentColor;
}

.offer-page--light .offer-section::after {
  inset: 10px 0 0;
  z-index: 1;
}

.offer-page--light .offer-section__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  opacity: 0.16;
  filter: saturate(0.82) contrast(1.08);
}

.offer-page--light .offer-section__video--included {
  object-position: center 42%;
  opacity: 0.13;
}

.offer-page--light .offer-section__video--checkout {
  object-position: center;
  opacity: 0.18;
}

.offer-page--light #included::before,
.offer-page--light #checkout::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.offer-page--light #included::before {
  background:
    linear-gradient(90deg, rgba(249, 244, 235, 0.92) 0%, rgba(249, 244, 235, 0.72) 48%, rgba(249, 244, 235, 0.88) 100%),
    radial-gradient(circle at 16% 22%, rgba(253, 212, 104, 0.2), transparent 34%);
}

.offer-page--light #checkout::before {
  background:
    linear-gradient(90deg, rgba(246, 236, 218, 0.9) 0%, rgba(246, 236, 218, 0.68) 46%, rgba(246, 236, 218, 0.88) 100%),
    radial-gradient(circle at 24% 28%, rgba(255, 255, 255, 0.34), transparent 36%),
    radial-gradient(circle at 80% 72%, rgba(34, 34, 36, 0.1), transparent 34%);
}

.offer-page--light #process::before {
  z-index: 2;
}

.offer-page--light .offer-container {
  z-index: 3;
}

.offer-page--light .offer-section__heading h2,
.offer-page--light .offer-checkout__copy h2 {
  text-shadow:
    0 0 18px rgba(255, 255, 255, 0.92),
    0 0 34px rgba(253, 212, 104, 0.28),
    0 8px 30px rgba(34, 34, 36, 0.12);
}

.offer-page--light .offer-pricing-panel__purchase {
  width: 100%;
  margin-top: 22px;
}

.offer-page--light .offer-hero h1 {
  font-size: clamp(2.85rem, 6.1vw, 5.55rem);
}

@keyframes offer-soft-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

.offer-page--light .offer-price-card,
.offer-page--light .offer-feature-card,
.offer-page--light .offer-step,
.offer-page--light .offer-form {
  animation: offer-soft-float 7.5s ease-in-out infinite;
  animation-delay: var(--offer-float-delay, 0s);
}

.offer-page--light .offer-price-card:nth-child(2),
.offer-page--light .offer-feature-card:nth-child(2),
.offer-page--light .offer-step:nth-child(2) {
  --offer-float-delay: -1.6s;
}

.offer-page--light .offer-feature-card:nth-child(3),
.offer-page--light .offer-step:nth-child(3) {
  --offer-float-delay: -3.1s;
}

.offer-page--light .offer-feature-card:nth-child(4),
.offer-page--light .offer-form {
  --offer-float-delay: -4.4s;
}

@media (prefers-reduced-motion: reduce) {
  .offer-page--light .offer-price-card,
  .offer-page--light .offer-feature-card,
  .offer-page--light .offer-step,
  .offer-page--light .offer-form {
    animation: none;
  }
}

.offer-page--light .footer {
  padding-top: 46px;
}

.offer-page--light .footer .container {
  position: relative;
  z-index: 5;
}

.offer-page--light .footer__logo-img,
.footer__logo-img {
  overflow: visible;
}

/* Footer wordmark balance */
.footer__brand {
  align-items: center;
}

.footer__brand-copy {
  display: flex;
  min-height: 56px;
  flex-direction: column;
  justify-content: center;
}

.footer__text-logo {
  width: clamp(118px, 14vw, 168px);
  margin: -2px 0 3px;
  filter:
    drop-shadow(0 0 7px rgba(255, 255, 255, 0.22))
    drop-shadow(0 0 16px rgba(255, 255, 255, 0.12));
}

.offer-page--light .footer__brand-copy {
  min-height: 74px;
}

.legal-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 12%, rgba(253, 212, 104, 0.18), transparent 28%),
    radial-gradient(circle at 80% 20%, rgba(203, 194, 233, 0.2), transparent 30%),
    linear-gradient(135deg, #fbfaf6 0%, #f7efe1 100%);
  color: #221d19;
  font-family: "Roboto", Arial, sans-serif;
}

.legal-main {
  padding: clamp(128px, 14vw, 170px) 24px 96px;
}

.legal-card {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: clamp(34px, 5vw, 62px);
  border: 1px solid rgba(34, 34, 36, 0.1);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 26px 80px rgba(34, 34, 36, 0.12);
  backdrop-filter: blur(18px);
}

.legal-card h1 {
  margin: 0 0 14px;
  color: #221d19;
  font-size: clamp(36px, 6vw, 68px);
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.legal-card h2 {
  margin: 34px 0 10px;
  color: #2e2925;
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: -0.035em;
}

.legal-card p,
.legal-card li {
  color: rgba(34, 29, 25, 0.72);
  font-size: 16px;
  line-height: 1.8;
}

.legal-card ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.legal-updated {
  margin-bottom: 28px;
  color: rgba(34, 29, 25, 0.52);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.checkout-page {
  min-height: 100vh;
  background: #fbfaf6;
  color: #221d19;
  font-family: var(--font-body);
}

.checkout-main {
  overflow: hidden;
}

.checkout-hero {
  position: relative;
  min-height: 76vh;
  padding: clamp(126px, 13vw, 166px) 24px clamp(72px, 8vw, 108px);
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(203, 194, 233, 0.34), transparent 30%),
    radial-gradient(circle at 78% 20%, rgba(253, 212, 104, 0.38), transparent 32%),
    linear-gradient(135deg, #fbfaf6 0%, #eef2ff 54%, #fff4df 100%);
}

.checkout-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.16;
  filter: saturate(0.85) contrast(1.05);
  pointer-events: none;
}

.checkout-hero__wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(251, 250, 246, 0.95), rgba(251, 250, 246, 0.72) 48%, rgba(251, 250, 246, 0.46)),
    radial-gradient(circle at 68% 50%, rgba(255, 255, 255, 0.48), transparent 36%);
  pointer-events: none;
}

.checkout-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.checkout-copy h1 {
  max-width: 640px;
  margin: 0;
  color: #221d19;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 6.2rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.055em;
  text-shadow:
    0 0 18px rgba(255, 255, 255, 0.9),
    0 0 34px rgba(253, 212, 104, 0.22);
}

.checkout-copy > p:not(.offer-eyebrow) {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(34, 29, 25, 0.72);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.75;
}

.checkout-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.checkout-highlights span {
  border: 1px solid rgba(34, 29, 25, 0.1);
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(255, 255, 255, 0.7);
  color: rgba(34, 29, 25, 0.72);
  font-size: 0.84rem;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.checkout-summary,
.checkout-section__inner {
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.68)),
    radial-gradient(circle at 22% 12%, rgba(253, 212, 104, 0.18), transparent 30%);
  box-shadow:
    0 30px 80px rgba(63, 49, 34, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.checkout-summary {
  padding: clamp(26px, 4vw, 38px);
}

.checkout-summary p {
  margin: 0;
  color: #c88722;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.checkout-summary h2 {
  margin: 16px 0 20px;
  color: #221d19;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.07em;
}

.checkout-summary ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.checkout-summary li {
  color: rgba(34, 29, 25, 0.7);
  line-height: 1.5;
}

.checkout-summary li::before {
  content: "✓";
  display: inline-grid;
  width: 18px;
  height: 18px;
  margin-right: 9px;
  place-items: center;
  border-radius: 999px;
  background: rgba(253, 212, 104, 0.3);
  color: #8a5a10;
  font-size: 0.65rem;
  font-weight: 700;
}

.checkout-page .checkout-section {
  position: relative;
  padding: clamp(84px, 10vw, 130px) 24px clamp(96px, 10vw, 140px);
  background:
    radial-gradient(circle at 50% 0%, rgba(253, 212, 104, 0.2), transparent 30%),
    radial-gradient(circle at 10% 28%, rgba(203, 194, 233, 0.18), transparent 30%),
    #f8f6f1;
  text-align: center;
}

.checkout-page .checkout-section::before {
  content: "";
  position: absolute;
  top: -48px;
  left: 0;
  right: 0;
  height: 96px;
  background: #f8f6f1;
  clip-path: ellipse(58% 42% at 50% 100%);
}

.checkout-page .checkout-section__inner {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  margin: 0 auto;
  padding: clamp(26px, 4vw, 44px);
}

.checkout-page .checkout-section h2 {
  margin: 0 0 14px;
  color: #221d19;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.checkout-page .checkout-section__inner > p:not(.offer-eyebrow) {
  max-width: 600px;
  margin: 0 auto 28px;
  color: rgba(34, 29, 25, 0.68);
}

.checkout-page .checkout-embed {
  min-height: 360px;
  padding: clamp(16px, 3vw, 26px);
  border: 1px solid rgba(34, 29, 25, 0.1);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 18px 48px rgba(63, 49, 34, 0.08);
  text-align: left;
}

@media (max-width: 640px) {
  .offer-page--light .offer-section {
    padding-top: 96px;
  }

  .offer-page--light .offer-attached-wave {
    top: -78px;
    height: 80px;
  }

  .offer-page--light .offer-attached-wave svg {
    height: 80px;
  }

  .legal-main {
    padding-left: 16px;
    padding-right: 16px;
  }

  .checkout-shell {
    grid-template-columns: 1fr;
  }

  .checkout-summary {
    order: -1;
  }
}

/* ============================================================
   FINAL NAV CLEANUP
   ============================================================ */

.site-nav__wrap {
  width: min(640px, calc(100% - 32px));
}

.site-nav__pill {
  display: grid;
  grid-template-columns: minmax(110px, 1fr) auto minmax(110px, 1fr);
  column-gap: 14px;
  height: 56px;
  padding: 0 12px 0 14px;
}

.site-nav__brand {
  justify-self: start;
  min-width: 0;
}

.site-nav__logo {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
  object-position: center;
  overflow: visible;
  filter:
    drop-shadow(0 0 10px rgba(253, 212, 104, 0.18))
    drop-shadow(0 0 18px rgba(255, 255, 255, 0.18));
}

.site-nav__text-logo {
  width: clamp(78px, 9vw, 118px);
}

.site-nav__mark {
  width: 32px;
  height: 32px;
}

.site-nav__links {
  justify-self: center;
  display: inline-flex;
  gap: 4px;
  margin: 0;
  padding: 4px;
  border: 1px solid rgba(58, 46, 40, 0.06);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
}

.site-nav__links a {
  min-width: 106px;
  padding: 10px 14px;
  text-align: center;
}

.site-nav__cta {
  justify-self: end;
  min-width: 128px;
  padding: 11px 18px;
}

.site-nav__links a:hover,
.site-nav__links a.is-active {
  background: rgba(255, 255, 255, 0.92);
}

@media (max-width: 860px) {
  .site-nav__wrap {
    width: min(520px, calc(100% - 28px));
  }

  .site-nav__pill {
    display: flex;
    height: 52px;
    padding: 0 12px 0 14px;
  }

  .site-nav__links,
  .site-nav__pill > .site-nav__cta {
    display: none;
  }

  .site-nav__brand {
    margin-right: auto;
  }

  .site-nav__text-logo {
    width: clamp(82px, 24vw, 116px);
  }

  .site-nav__logo {
    width: 40px;
    height: 40px;
  }

  .site-nav__menu {
    display: block;
  }
}

/* ============================================================
   FREE OFFER — "Turn searches into purchases"
   Brings #get-started onto the shared calm palette and type
   scale instead of inline neon glows and a borrowed light card.
   ============================================================ */

#get-started .bs-pack__eyebrow {
  color: var(--calm-gold);
}

#get-started h2 {
  max-width: 15ch;
  color: #fffaf0;
}

#get-started .bs-start__grid > div:first-child > p {
  max-width: 44ch;
  color: rgba(255, 255, 255, .62);
  font-size: 1rem;
  line-height: 1.7;
}

#get-started .bs-start__grid ul {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

#get-started .bs-start__grid li {
  display: flex;
  align-items: flex-start;
  color: rgba(255, 255, 255, .78);
  font-size: .95rem;
  line-height: 1.55;
}

#get-started .bs-start__grid li::before {
  flex: 0 0 20px;
  margin-top: 2px;
  background: rgba(243, 202, 91, .9);
  color: #171615;
  font-weight: 700;
}

#get-started .bs-start__form {
  gap: 14px;
  padding: clamp(26px, 4vw, 36px);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 26px 70px rgba(0, 0, 0, .34);
}

/* ============================================================
   CONTENT PAGES — About + FAQ
   ============================================================ */

.content-page {
  --content-ink: #1b1916;
  --content-muted: #616267;
  --content-gold: #fecb69;
  --content-orange: #fcb454;
  --content-blue: #8cbbf2;
  --content-blush: #f7bf96;
  --content-lilac: #b8baf7;
  overflow-x: hidden;
  background: #fffdf9;
  color: var(--content-ink);
  font-family: 'Roboto', sans-serif;
}

.content-shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.content-hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 172px 0 124px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(255,250,240,.92) 46%, rgba(236,240,255,.88)),
    #fffdf9;
}

.content-hero::after {
  content: '';
  position: absolute;
  z-index: -1;
  right: -14%;
  bottom: -42%;
  width: min(760px, 66vw);
  aspect-ratio: 1;
  border: 1px solid rgba(27,25,22,.08);
  border-radius: 50%;
  box-shadow: 0 0 0 44px rgba(254,203,105,.05), 0 0 0 96px rgba(140,187,242,.04);
}

.content-hero__aurora {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    radial-gradient(circle at 8% 18%, rgba(184,186,247,.25), transparent 32%),
    radial-gradient(circle at 65% 14%, rgba(254,203,105,.24), transparent 34%),
    radial-gradient(circle at 92% 72%, rgba(140,187,242,.2), transparent 36%);
  filter: blur(3px);
}

.content-hero__mark {
  position: absolute;
  z-index: -1;
  right: clamp(-170px, -8vw, -72px);
  bottom: clamp(-210px, -13vw, -120px);
  width: clamp(470px, 50vw, 790px);
  max-width: none;
  opacity: .14;
  filter: saturate(.92);
  pointer-events: none;
}

.content-hero__inner {
  position: relative;
  z-index: 1;
}

.content-eyebrow {
  margin: 0 0 18px;
  color: #fec247;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .17em;
  line-height: 1.2;
  text-transform: uppercase;
}

.content-hero h1 {
  max-width: 900px;
  margin: 0;
  color: var(--content-ink);
  font-size: clamp(3.25rem, 7.4vw, 7rem);
  font-weight: 400;
  letter-spacing: -.065em;
  line-height: .94;
  text-wrap: balance;
}

.content-hero__lede {
  max-width: 690px;
  margin: 36px 0 0;
  color: var(--content-muted);
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
  font-weight: 300;
  line-height: 1.7;
}

.content-hero__actions,
.faq-cta__inner > div {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 36px;
}

.content-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 2px;
  border-bottom: 1px solid rgba(27,25,22,.28);
  color: var(--content-ink);
  font-size: .92rem;
  font-weight: 600;
  transition: border-color .3s ease, color .3s ease, transform .3s ease;
}

.content-text-link:hover {
  border-color: var(--content-orange);
  color: #8d5a11;
  transform: translateX(3px);
}

.content-section {
  position: relative;
  padding: clamp(92px, 11vw, 150px) 0;
}

.content-section--story {
  background: #fffdf9;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(420px, 1.2fr);
  gap: clamp(60px, 9vw, 138px);
  align-items: start;
}

.story-grid__heading {
  position: sticky;
  top: 128px;
}

.story-grid h2,
.section-heading h2,
.area-grid h2,
.contact-grid h2,
.faq-cta h2 {
  margin: 0;
  color: var(--content-ink);
  font-size: clamp(2.6rem, 5vw, 5.2rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: 1;
  text-wrap: balance;
}

.story-grid__copy {
  display: grid;
  gap: 26px;
  color: var(--content-muted);
  font-size: 1.05rem;
  line-height: 1.82;
}

.story-grid__copy .content-lead {
  color: var(--content-ink);
  font-size: clamp(1.35rem, 2.1vw, 1.75rem);
  font-weight: 300;
  line-height: 1.55;
}

.content-section--dark {
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 10%, rgba(252,180,84,.12), transparent 28%),
    radial-gradient(circle at 92% 76%, rgba(140,187,242,.1), transparent 31%),
    #1b1916;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 58px;
}

.section-heading > p:last-child {
  max-width: 620px;
  margin-top: 24px;
  color: var(--content-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.section-heading--light h2 { color: #fffaf0; }
.section-heading--light > p:last-child { color: rgba(255,255,255,.58); }
.section-heading--light .content-eyebrow { color: var(--content-gold); }

.service-ribbon {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.14);
  border-bottom: 1px solid rgba(255,255,255,.14);
}

.service-ribbon__item {
  min-height: 320px;
  padding: 38px 30px 42px;
  border-right: 1px solid rgba(255,255,255,.12);
  transition: background .5s ease, transform .5s cubic-bezier(.22,1,.36,1);
}

.service-ribbon__item:last-child { border-right: 0; }
.service-ribbon__item:hover { background: rgba(255,255,255,.055); transform: translateY(-5px); }
.service-ribbon__item > span { color: var(--content-gold); font-size: .73rem; font-weight: 700; letter-spacing: .14em; }
.service-ribbon__item h3 { margin: 72px 0 18px; color: #fffaf0; font-size: 1.35rem; font-weight: 500; line-height: 1.25; }
.service-ribbon__item p { color: rgba(255,255,255,.56); font-size: .94rem; line-height: 1.7; }

.content-section--area {
  background:
    radial-gradient(circle at 5% 95%, rgba(247,191,150,.3), transparent 32%),
    radial-gradient(circle at 90% 16%, rgba(184,186,247,.24), transparent 35%),
    #f7f3ec;
}

.area-grid {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(400px, 1.05fr);
  gap: clamp(60px, 10vw, 140px);
  align-items: center;
}

.area-grid__copy > p:not(.content-eyebrow) {
  max-width: 570px;
  margin-top: 24px;
  color: var(--content-muted);
  font-size: 1.03rem;
  line-height: 1.78;
}

.area-grid__places {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-content: center;
}

.area-grid__places span {
  padding: 13px 19px;
  border: 1px solid rgba(27,25,22,.1);
  border-radius: 999px;
  background: rgba(255,255,255,.66);
  box-shadow: 0 7px 26px rgba(27,25,22,.04);
  color: #45403b;
  font-size: .88rem;
}

.content-section--work { background: #fffdf9; }

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.work-card {
  overflow: hidden;
  border: 1px solid rgba(27,25,22,.1);
  border-radius: 24px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 18px 55px rgba(27,25,22,.07);
  transition: transform .5s cubic-bezier(.22,1,.36,1), box-shadow .5s ease;
}

.work-card:hover { transform: translateY(-7px); box-shadow: 0 28px 70px rgba(27,25,22,.11); }
.work-card__frame { height: 300px; overflow: hidden; background: #e9e6df; }
.work-card iframe { width: 1440px; height: 900px; border: 0; transform: scale(.32); transform-origin: top left; pointer-events: none; }
.work-card > div:last-child { padding: 25px 26px 29px; }
.work-card > div:last-child p { margin-bottom: 8px; color: #9a6a1d; font-size: .69rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.work-card h3 { color: var(--content-ink); font-size: 1.15rem; font-weight: 500; line-height: 1.45; }

.contact-section {
  overflow: hidden;
  isolation: isolate;
  padding-bottom: clamp(120px, 13vw, 170px);
  background:
    linear-gradient(122deg, rgba(254,203,105,.66), rgba(247,191,150,.43) 40%, rgba(140,187,242,.46) 76%, rgba(184,186,247,.52));
}

.contact-section__mark {
  position: absolute;
  z-index: -1;
  right: -190px;
  bottom: -270px;
  width: 760px;
  max-width: none;
  opacity: .12;
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(320px, .85fr) minmax(440px, 1.15fr);
  gap: clamp(54px, 9vw, 120px);
  align-items: start;
}

.contact-grid__copy { padding-top: 34px; }
.contact-grid__copy > p:not(.content-eyebrow) { max-width: 520px; margin-top: 26px; color: #554f49; font-size: 1.03rem; line-height: 1.75; }
.contact-email { display: inline-flex; gap: 8px; margin-top: 30px; padding-bottom: 5px; border-bottom: 1px solid rgba(27,25,22,.3); font-weight: 600; }

.about-form {
  overflow: hidden;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255,255,255,.62);
  border-radius: 28px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 30px 80px rgba(27,25,22,.13);
  backdrop-filter: blur(18px);
}

.about-form small { display: block; margin-top: 14px; color: var(--content-muted); font-size: .75rem; text-align: center; }

/* FAQ */
.content-hero--faq { min-height: 660px; }
.content-hero--faq h1 { max-width: 970px; }

.faq-directory {
  padding: clamp(92px, 10vw, 142px) 0;
  background: #fffdf9;
  scroll-margin-top: 100px;
}

.faq-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 800px);
  justify-content: space-between;
  gap: clamp(50px, 10vw, 150px);
  align-items: start;
}

.faq-index {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 7px;
  padding: 24px;
  border: 1px solid rgba(27,25,22,.08);
  border-radius: 20px;
  background: rgba(255,255,255,.68);
  box-shadow: 0 18px 48px rgba(27,25,22,.05);
  backdrop-filter: blur(14px);
}

.faq-index p { margin-bottom: 9px; color: #9a6a1d; font-size: .69rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.faq-index a { padding: 8px 10px; border-radius: 9px; color: var(--content-muted); font-size: .86rem; transition: background .25s ease, color .25s ease, transform .25s ease; }
.faq-index a:hover { background: rgba(254,203,105,.2); color: var(--content-ink); transform: translateX(3px); }

.faq-groups { display: grid; gap: 96px; }
.faq-group { scroll-margin-top: 118px; }
.faq-group__heading { display: flex; align-items: center; gap: 22px; margin-bottom: 28px; }
.faq-group__heading > span { display: grid; place-items: center; width: 48px; height: 48px; border: 1px solid rgba(27,25,22,.12); border-radius: 50%; background: linear-gradient(145deg, rgba(254,203,105,.32), rgba(184,186,247,.26)); color: #6b5840; font-size: .72rem; font-weight: 700; }
.faq-group__heading .content-eyebrow { margin-bottom: 8px; }
.faq-group h2 { margin: 0; color: var(--content-ink); font-size: clamp(2rem, 4vw, 3.3rem); font-weight: 400; letter-spacing: -.045em; line-height: 1; }
.faq-accordion { border-top: 1px solid rgba(27,25,22,.13); }

.faq-accordion details {
  border-bottom: 1px solid rgba(27,25,22,.13);
  background: transparent;
}

.faq-accordion summary {
  display: grid;
  grid-template-columns: 1fr 36px;
  gap: 24px;
  align-items: center;
  padding: 24px 2px;
  color: var(--content-ink);
  cursor: pointer;
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.45;
  list-style: none;
  transition: color .25s ease, padding-left .3s ease;
}

.faq-accordion summary::-webkit-details-marker { display: none; }
.faq-accordion summary:hover { padding-left: 8px; color: #8b5c16; }
.faq-accordion summary > span { position: relative; width: 32px; height: 32px; border: 1px solid rgba(27,25,22,.15); border-radius: 50%; transition: transform .35s ease, background .35s ease, border-color .35s ease; }
.faq-accordion summary > span::before,
.faq-accordion summary > span::after { content: ''; position: absolute; top: 50%; left: 50%; width: 10px; height: 1px; background: currentColor; transform: translate(-50%,-50%); transition: transform .35s ease; }
.faq-accordion summary > span::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq-accordion details[open] summary > span { border-color: var(--content-orange); background: rgba(252,180,84,.18); transform: rotate(180deg); }
.faq-accordion details[open] summary > span::after { transform: translate(-50%,-50%) rotate(0deg); }
.faq-accordion details > p { max-width: 690px; margin: 0; padding: 0 66px 28px 2px; color: var(--content-muted); font-size: .96rem; line-height: 1.78; }

.faq-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(96px, 11vw, 148px) 0 clamp(128px, 14vw, 182px);
  background: linear-gradient(120deg, rgba(254,203,105,.46), rgba(247,191,150,.28) 43%, rgba(140,187,242,.34), rgba(184,186,247,.38));
}

.faq-cta > img { position: absolute; z-index: -1; right: -120px; bottom: -300px; width: 730px; max-width: none; opacity: .13; }
.faq-cta__inner { position: relative; z-index: 1; }
.faq-cta__inner > p:not(.content-eyebrow) { max-width: 600px; margin-top: 24px; color: var(--content-muted); font-size: 1.05rem; line-height: 1.75; }

/* Client access is intentionally separate from the primary site navigation. */
.site-nav__wrap {
  width: min(720px, calc(100% - 32px));
}

.site-nav__pill {
  grid-template-columns: 42px auto minmax(220px, 1fr) auto;
  column-gap: 10px;
}

.site-nav__client,
.offer-page .site-nav__client,
.offer-page--light .site-nav__client {
  min-height: 31px;
  border: 1px solid rgba(140, 187, 242, .34);
  background: #fdd468; /* solid color — swap for whatever hex you want */
  box-shadow: none;
  color: #1b1916; /* dark text so it's readable on a light gold background */
  text-decoration: none;
  transform: none;
}

.site-nav__client:hover,
.site-nav__client:focus-visible,
.offer-page .site-nav__client:hover,
.offer-page .site-nav__client:focus-visible,
.offer-page--light .site-nav__client:hover,
.offer-page--light .site-nav__client:focus-visible {
  border-color: rgba(252, 180, 84, .46);
  background: #fdab44; /* slightly darker solid on hover */
  box-shadow: none;
  color: #1b1916;
  text-decoration: none;
  transform: none;
}
.site-nav__mobile-client { font-weight: 700 !important; color: #7a5315 !important; }

.footer__client-button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  margin-top: 9px;
  min-height: 30px;
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px;
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.2) 0%,
      rgba(255,255,255,.12) 46%,
      rgba(255,255,255,.06) 52%,
      rgba(255,255,255,.1) 100%
    );
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.28),
    0 5px 13px rgba(0,0,0,.09);
  color: #fffaf0 !important;
  font-size: .72rem !important;
  font-weight: 700 !important;
  letter-spacing: .025em;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease, color .25s ease, transform .25s ease;
}

.footer__client-button:hover,
.footer__client-button:focus-visible {
  border-color: rgba(254,203,105,.52) !important;
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.24),
      rgba(254,203,105,.1) 52%,
      rgba(255,255,255,.08)
    ) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.32),
    0 6px 15px rgba(0,0,0,.11);
  color: #fffaf0 !important;
  transform: translateY(-1px);
}

@media (max-width: 980px) {
  .service-ribbon { grid-template-columns: repeat(2, 1fr); }
  .service-ribbon__item:nth-child(2) { border-right: 0; }
  .service-ribbon__item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.12); }
  .work-grid { grid-template-columns: 1fr 1fr; }
  .work-card:last-child { grid-column: 1 / -1; max-width: calc(50% - 10px); }
  .faq-layout { grid-template-columns: 190px minmax(0, 1fr); gap: 54px; }
}

@media (max-width: 860px) {
  .site-nav__wrap { width: min(560px, calc(100% - 28px)); }
  .site-nav__brand { margin-right: 0; }
  .site-nav__client { margin-left: 2px; }
  .site-nav__menu { margin-left: auto; }
  .story-grid,
  .area-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .story-grid__heading { position: static; }
  .area-grid__places { max-width: 620px; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-index { position: static; grid-template-columns: repeat(3, 1fr); }
  .faq-index p { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .content-shell { width: min(100% - 34px, 1180px); }
  .content-hero { min-height: 620px; padding: 138px 0 90px; }
  .content-hero h1 { font-size: clamp(2.75rem, 14vw, 4.3rem); }
  .content-hero__lede { margin-top: 26px; font-size: 1.02rem; }
  .content-hero__mark { right: -230px; bottom: -120px; width: 590px; opacity: .11; }
  .content-hero__actions { align-items: flex-start; flex-direction: column; gap: 10px; }
  .content-section { padding: 82px 0; }
  .story-grid { gap: 42px; }
  .story-grid h2, .section-heading h2, .area-grid h2, .contact-grid h2, .faq-cta h2 { font-size: clamp(2.45rem, 12vw, 3.6rem); }
  .service-ribbon { grid-template-columns: 1fr; }
  .service-ribbon__item,
  .service-ribbon__item:nth-child(2) { min-height: 250px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .service-ribbon__item:last-child { border-bottom: 0; }
  .service-ribbon__item h3 { margin-top: 48px; }
  .work-grid { grid-template-columns: 1fr; }
  .work-card:last-child { grid-column: auto; max-width: none; }
  .work-card__frame { height: 250px; }
  .contact-section__mark { right: -330px; }
  .about-form { margin-inline: -5px; padding: 16px; border-radius: 22px; }
  .faq-index { grid-template-columns: 1fr 1fr; padding: 18px; }
  .faq-groups { gap: 76px; }
  .faq-group__heading { align-items: flex-start; gap: 15px; }
  .faq-group__heading > span { width: 42px; height: 42px; }
  .faq-accordion summary { grid-template-columns: 1fr 32px; gap: 14px; padding: 21px 0; font-size: .95rem; }
  .faq-accordion summary:hover { padding-left: 0; }
  .faq-accordion summary > span { width: 30px; height: 30px; }
  .faq-accordion details > p { padding: 0 38px 24px 0; font-size: .91rem; }
  .faq-cta__inner > div { align-items: flex-start; flex-direction: column; gap: 10px; }
  .site-nav__client { min-height: 28px; padding: 0 9px; font-size: .61rem; }
  .footer__links { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .service-ribbon__item,
  .work-card,
  .content-text-link,
  .site-nav__client { transition: none; }
}

#get-started .bs-start__form-eyebrow {
  margin: 0;
  color: var(--calm-orange);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}

#get-started .bs-start__form small {
  margin-top: 2px;
  color: var(--calm-muted);
  font-size: .72rem;
  line-height: 1.5;
  text-align: center;
}
/* ============================================================
   OFFER PAGE — COMPOSURE PASS
   Stronger hero hierarchy, calmer motion, tighter card rhythm.
   ============================================================ */

/* One clear entry point: hero leads, sections follow. */
.offer-page--light .offer-hero h1 {
  font-size: clamp(3rem, 6.4vw, 5.8rem);
  letter-spacing: -0.05em;
}

.offer-page--light .offer-section__heading h2,
.offer-page--light .offer-checkout__copy h2 {
  font-size: clamp(2.1rem, 3.8vw, 3.4rem);
  letter-spacing: -0.04em;
  text-shadow: 0 0 24px rgba(255, 255, 255, 0.7);
}

/* Eyebrows sit closer to their headings so each block reads as a unit. */
.offer-page--light .offer-eyebrow {
  margin-bottom: 12px;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
}

.offer-page--light .offer-section__heading {
  margin-bottom: clamp(36px, 4.5vw, 52px);
}

/* Retire the ambient float — hover lift alone carries the interaction. */
.offer-page--light .offer-price-card,
.offer-page--light .offer-feature-card,
.offer-page--light .offer-step,
.offer-page--light .offer-form {
  animation: none;
}

.offer-page--light .offer-price-card:hover,
.offer-page--light .offer-feature-card:hover,
.offer-page--light .offer-step:hover,
.offer-page--light .offer-form:hover,
.offer-page--light .offer-pricing-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(63, 49, 34, 0.12);
}

/* Numerals become quiet markers, not competing headlines. */
.offer-page--light .offer-feature-card span,
.offer-page--light .offer-step span {
  margin-bottom: 18px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  opacity: 0.85;
}

/* Feature cards get room to breathe and align on a common baseline. */
.offer-page--light .offer-feature-grid {
  gap: 18px;
}

.offer-page--light .offer-feature-card {
  display: flex;
  flex-direction: column;
  padding: 30px 28px 32px;
}

.offer-page--light .offer-feature-card h3,
.offer-page--light .offer-step h3 {
  margin-bottom: 10px;
  font-size: 1.06rem;
  letter-spacing: -0.015em;
}

.offer-page--light .offer-feature-card p,
.offer-page--light .offer-step p {
  font-size: 0.92rem;
  line-height: 1.7;
}

/* The $100 card is the decision — let it carry a little more weight. */
.offer-page--light .offer-price-card:first-child {
  border-color: rgba(200, 135, 34, 0.28);
  box-shadow:
    0 20px 52px rgba(63, 49, 34, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.offer-page--light .offer-price-card strong {
  letter-spacing: -0.06em;
}

.offer-page--light .offer-price-card li {
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Steps read as a sequence rather than three loose cards. */
.offer-page--light .offer-step-list {
  gap: 12px;
}

.offer-page--light .offer-step {
  padding: 24px 26px;
}

/* Softer, shorter reveal — matches the calm-reveal timing elsewhere. */
.offer-page--light .reveal-card {
  transform: translateY(14px);
  transition:
    opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms),
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms);
}

@media (max-width: 640px) {
  .offer-page--light .offer-hero h1 {
    font-size: clamp(2.7rem, 13vw, 4.2rem);
  }

  .offer-page--light .offer-feature-card {
    padding: 26px 24px 28px;
  }
}

/* The Offer footer wave and footer share one source of truth so the join
   cannot reveal a mismatched strip when earlier page-specific rules cascade. */
.offer-page--light .footer {
  background: var(--wave-footer, #222224) !important;
}

.offer-page--light .footer__wave,
.offer-page--light .footer__wave svg,
.offer-page--light .footer__wave path {
  color: var(--wave-footer, #222224) !important;
  fill: var(--wave-footer, #222224) !important;
}

/* ============================================================
   PROJECT 27 REPAIR — CANONICAL NAVIGATION + PROCESS TIMELINE
   These final rules intentionally sit last so older experimental
   navigation and process-card declarations cannot override them.
   ============================================================ */

html,
body,
button,
input,
textarea,
select,
.site-nav,
.footer,
h1,
h2,
h3 {
  font-family: "Roboto", Arial, sans-serif;
}

/* One shared navigation system for every page. */
.site-nav {
  height: 72px;
  padding-top: 10px;
}

.site-nav__wrap {
  width: min(720px, calc(100% - 32px));
}

.site-nav__pill,
.offer-page .site-nav__pill,
.offer-page--light .site-nav__pill {
  display: grid;
  grid-template-columns: 42px auto minmax(220px, 1fr) auto;
  align-items: center;
  column-gap: 10px;
  height: 56px;
  padding: 0 12px 0 14px;
  border: 1px solid rgba(27, 25, 22, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 44px rgba(40, 33, 28, 0.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
  backdrop-filter: blur(18px) saturate(1.08);
}

.site-nav.scrolled .site-nav__pill {
  box-shadow: 0 16px 46px rgba(40, 33, 28, 0.16);
}

.site-nav__brand {
  justify-self: start;
  min-width: 0;
  margin: 0;
}

.site-nav__logo {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(254, 203, 105, 0.2));
}

.site-nav__client {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid rgba(27, 25, 22, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.94);
  color: rgba(27, 25, 22, 0.8);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  line-height: 1;
  white-space: nowrap;
  transition: border-color 0.25s ease, background 0.25s ease,
    box-shadow 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.site-nav__client:hover,
.site-nav__client:focus-visible {
  border-color: rgba(140, 187, 242, 0.48);
  background: #fff;
  box-shadow: 0 5px 14px rgba(75, 99, 128, 0.1);
  color: #1b1916;
  transform: translateY(-1px);
}

.site-nav__links {
  justify-self: center;
  display: inline-flex;
  gap: 4px;
  margin: 0;
  padding: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.44);
}

.site-nav__links a,
.offer-page .site-nav__links a,
.offer-page--light .site-nav__links a {
  min-width: 106px;
  padding: 9px 14px;
  border-radius: 999px;
  color: #4f4a45;
  text-align: center;
}

.site-nav__links a:hover,
.site-nav__links a.is-active,
.offer-page .site-nav__links a:hover,
.offer-page .site-nav__links a.is-active,
.offer-page--light .site-nav__links a:hover,
.offer-page--light .site-nav__links a.is-active {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 2px 8px rgba(27, 25, 22, 0.08);
  color: #9a6510;
}

.site-nav__cta,
.offer-page .site-nav__cta,
.offer-page--light .site-nav__cta {
  justify-self: end;
  min-width: 128px;
  padding: 11px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fecb69, #fbe571);
  box-shadow: 0 10px 26px rgba(252, 180, 84, 0.22);
  color: #1b1916;
  transition: transform 1.75s cubic-bezier(0.9, -0.6, 0.2, 0),
  box-shadow 0.75s ease;
}

.site-nav__cta:hover,
.site-nav__cta:focus-visible,
.offer-page .site-nav__cta:hover,
.offer-page--light .site-nav__cta:hover {
  background: linear-gradient(165deg, #fffd7d, #ffe37d, #fdab44);
  transition: transform 1.0s cubic-bezier(0.1, -0.6, 0.2, 0),
  box-shadow 1.05s ease;
  box-shadow: 0 12px 30px rgba(251, 229, 113, 0.23);
  transition: transform 0.75s cubic-bezier(0.1, -0.6, 0.2, 0),
  box-shadow .65s ease;
}

.site-nav__mobile {
  width: min(520px, calc(100% - 28px));
  padding: 12px;
  border: 1px solid rgba(27, 25, 22, 0.09);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 50px rgba(40, 33, 28, 0.16);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.site-nav__mobile > a:not(.site-nav__mobile-cta) {
  padding: 11px 14px;
  border-radius: 12px;
  color: #4f4a45;
}

.site-nav__mobile-client {
  margin-top: 4px;
  border: 1px solid rgba(27, 25, 22, 0.12) !important;
  background: rgba(247, 243, 236, 0.72);
  color: #6e5331 !important;
  font-weight: 700 !important;
  text-align: center;
}

/* The restored four-stage process: one calm, continuous branded rail. */
.process-steps {
  overflow: hidden;
  padding: clamp(72px, 8vw, 104px) 24px clamp(84px, 9vw, 118px);
  background:
    radial-gradient(circle at 8% 18%, rgba(254, 203, 105, 0.14), transparent 28%),
    radial-gradient(circle at 92% 88%, rgba(184, 186, 247, 0.14), transparent 30%),
    #f8f6f1;
}

.process-steps__intro {
  display: grid;
  grid-template-columns: minmax(150px, 0.36fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: end;
  width: min(1120px, 100%);
  margin: 0 auto clamp(52px, 6vw, 76px);
}

.process-steps__kicker {
  margin: 0 0 7px;
  color: #fecb69;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.process-steps__intro h2 {
  max-width: 760px;
  margin: 0;
  color: #1b1916;
  font-size: clamp(2.1rem, 4.5vw, 4.15rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.98;
  text-wrap: balance;
}

.process-steps__intro div > p {
  max-width: 660px;
  margin: 22px 0 0;
  color: #616267;
  font-size: 0.98rem;
  line-height: 1.72;
}

.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(22px, 3.2vw, 46px);
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.process-timeline::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 29px;
  right: 10%;
  left: 2%;
  height: 2px;
  background: linear-gradient(90deg, #fecb69 0%, #fcb454 34%, #8cbbf2 68%, #b8baf7 100%);
  box-shadow: 0 0 16px rgba(140, 187, 242, 0.24);
}

.process-stage {
  --stage-color: #fecb69;
  position: relative;
  z-index: 1;
  min-width: 0;
  padding: 0 0 0 2px;
}

.process-stage--orange { --stage-color: #fcb454; }
.process-stage--blue { --stage-color: #8cbbf2; }
.process-stage--lavender { --stage-color: #b8baf7; }

.process-stage__marker {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  margin-bottom: 28px;
  border: 1px solid color-mix(in srgb, var(--stage-color) 72%, #1b1916 12%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.93);
  box-shadow:
    0 0 0 7px rgba(248, 246, 241, 0.96),
    0 10px 28px color-mix(in srgb, var(--stage-color) 24%, transparent);
  color: #1b1916;
}

.process-stage__marker span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.process-stage__eyebrow {
  margin: 0 0 11px;
  color: color-mix(in srgb, var(--stage-color) 62%, #6b4b24 38%);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.process-stage h3 {
  max-width: 250px;
  margin: 0 0 15px;
  color: #1b1916;
  font-size: clamp(1.22rem, 2vw, 1.55rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.process-stage > p:not(.process-stage__eyebrow) {
  margin: 0;
  color: #616267;
  font-size: 0.88rem;
  line-height: 1.68;
}

.process-stage__note {
  display: block;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(27, 25, 22, 0.1);
  color: #69645e;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.035em;
  line-height: 1.5;
}

@media (hover: hover) {
  .process-stage__marker {
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 0.45s ease;
  }

  .process-stage:hover .process-stage__marker {
    transform: translateY(-4px);
    box-shadow:
      0 0 0 7px rgba(248, 246, 241, 0.96),
      0 14px 34px color-mix(in srgb, var(--stage-color) 34%, transparent);
  }
}

@media (max-width: 860px) {
   .site-nav__pill {
    justify-content: center;
    position: relative;
  }

  .site-nav__brand {
    position: absolute;
    left: 14px;
  }

  .site-nav__menu {
    display: block;
    margin: 0;
  }
  .site-nav {
    height: 66px;
    padding-top: 8px;
  }

  .site-nav__wrap {
    width: min(560px, calc(100% - 28px));
  }

  .site-nav__pill,
  .offer-page .site-nav__pill,
  .offer-page--light .site-nav__pill {
    display: flex;
    height: 52px;
    padding: 0 12px 0 14px;
  }

  .site-nav__logo {
    width: 40px;
    height: 40px;
  }

  .site-nav__brand {
    margin-right: 2px;
  }

  .site-nav__client {
    min-height: 28px;
    padding: 0 9px;
    font-size: 0.61rem;
  }

  .site-nav__links,
  .site-nav__pill > .site-nav__cta {
    display: none;
  }

  .site-nav__menu {
    display: block;
    margin-left: auto;
  }

  .process-steps__intro {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .process-timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process-timeline::before {
    top: 30px;
    bottom: 34px;
    left: 29px;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, #fecb69 0%, #fcb454 34%, #8cbbf2 68%, #b8baf7 100%);
  }

  .process-stage {
    min-height: 210px;
    padding: 4px 0 42px 92px;
  }

  .process-stage__marker {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
  }

  .process-stage h3 {
    max-width: 520px;
  }

  .process-stage__note {
    max-width: 520px;
  }
}

@media (max-width: 520px) {
   .site-nav__pill {
    justify-content: center;
    position: relative;
  }

  .site-nav__brand {
    position: absolute;
    left: 14px;
  }

  .site-nav__menu {
    display: block;
    margin: 0;
  }

  .site-nav__wrap,
  .site-nav__mobile {
    width: calc(100% - 20px);
  }

  .site-nav__client {
    max-width: 92px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .process-steps {
    padding-right: 18px;
    padding-left: 18px;
  }

  .process-steps__intro h2 {
    font-size: clamp(2rem, 11.5vw, 3.2rem);
  }

  .process-stage {
    padding-left: 80px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-nav__client,
  .process-stage__marker {
    transition: none;
  }
}

/* ============================================================
   PROJECT 30 — FINAL WEBSITE EXPERIENCE PASS
   ============================================================ */

/* Keep member access visibly separate, immediately left of the nav pill. */
.site-nav__wrap {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  width: min(860px, calc(100% - 32px));
}

.site-nav__pill,
.offer-page .site-nav__pill,
.offer-page--light .site-nav__pill {
  width: 100%;
  grid-template-columns: 42px minmax(220px, 1fr) auto;
}

.site-nav__client {
  position: relative;
  justify-self: end;
  min-height: 34px;
  padding: 0 14px;
  border-color: rgba(255, 255, 242, .34);
  background: rgba(255, 255, 255);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255,),
    0 8px 24px rgba(255, 255, 255, .99);
  color: #fffff;

}

.site-nav__client::after {
  content: "";
  position: absolute;
  right: 13px;
  bottom: 4px;
  left: 13px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 242, .7), transparent);
  opacity: .08;
}

/* The brand orange is the single active/hover navigation signal. */
.site-nav__links a:hover,
.site-nav__links a.is-active,
.offer-page .site-nav__links a:hover,
.offer-page .site-nav__links a.is-active,
.offer-page--light .site-nav__links a:hover,
.offer-page--light .site-nav__links a.is-active,
.site-nav__mobile > a:hover,
.site-nav__mobile > a.is-active {
  color: #fcb454 !important;
}

/* Free offer: raise the message and give the embedded form real breathing room. */
.how-it-works-page #get-started .bs-start__grid {
  width: min(100%, 1180px);
  grid-template-columns: minmax(320px, .78fr) minmax(540px, 1.22fr);
  gap: clamp(46px, 6vw, 78px);
  align-items: start;
}

.how-it-works-page #get-started .bs-start__copy {
  padding-top: 2px;
  transform: translateY(-24px);
}

.how-it-works-page #get-started .bs-start__form {
  width: 100%;
  min-width: 0;
  padding-inline: clamp(28px, 4vw, 44px);
}

.how-it-works-page #get-started .suitedash-form-embed,
.how-it-works-page #get-started .suitedash-form-embed iframe {
  width: 100% !important;
  max-width: none !important;
}

/* Make the FAQ destination read as an intentional action, not a text link. */
.bs-faq__more {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.btn.bs-faq__more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 23px;
  border: 1px solid rgba(27, 25, 22, .12);
  border-radius: 999px;
  background: linear-gradient(135deg, #fecb69, #fcb454);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .62),
    0 13px 30px rgba(252, 180, 84, .2);
  color: #1b1916;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .015em;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

.btn.bs-faq__more-btn:hover,
.btn.bs-faq__more-btn:focus-visible {
  color: #1b1916;
  filter: saturate(1.04) brightness(1.02);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .72),
    0 17px 38px rgba(252, 180, 84, .27);
  transform: translateY(-2px);
}

/* About service area: editorial region groups replace the crowded chip cloud. */
.about-page .area-grid {
  grid-template-columns: minmax(330px, .72fr) minmax(520px, 1.28fr);
  gap: clamp(54px, 7vw, 96px);
  align-items: start;
}

.about-page .area-grid__places {
  display: block;
  overflow: hidden;
  padding: clamp(25px, 3vw, 36px);
  border: 1px solid rgba(27, 25, 22, .09);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .8), rgba(255, 255, 255, .48)),
    radial-gradient(circle at 90% 0, rgba(140, 187, 242, .2), transparent 38%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .82),
    0 24px 64px rgba(50, 44, 38, .07);
}

.area-grid__places-heading {
  display: grid;
  gap: 7px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(27, 25, 22, .1);
}

.area-grid__places-heading > span {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  color: #cb8523;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.area-grid__places-heading strong {
  color: #1b1916;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 500;
  letter-spacing: -.035em;
}

.area-grid__place-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 30px;
}

.area-place-group {
  position: relative;
  padding: 23px 0 20px 18px;
  border-bottom: 1px solid rgba(27, 25, 22, .075);
}

.area-place-group:nth-last-child(-n + 2) {
  border-bottom: 0;
  padding-bottom: 0;
}

.area-place-group::before {
  content: "";
  position: absolute;
  top: 29px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fcb454, #8cbbf2);
  box-shadow: 0 0 0 4px rgba(252, 180, 84, .09);
}

.area-place-group h3 {
  margin: 0 0 10px;
  color: #302d29;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .075em;
  text-transform: uppercase;
}

.area-place-group p {
  margin: 0;
  color: #66615b;
  font-size: .84rem;
  line-height: 1.78;
}

.area-place-group p strong {
  color: #97611a;
  font-weight: 700;
}

/* Larger website previews with enough viewport to showcase real page depth. */
.about-page .content-section--work .content-shell {
  width: min(calc(100% - 48px), 1280px);
}

.about-page .work-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.about-page .work-card:last-child {
  grid-column: 1 / -1;
  justify-self: center;
  width: min(100%, 620px);
  max-width: none;
}

.about-page .work-card__frame {
  position: relative;
  height: 390px;
  background: linear-gradient(145deg, #efebe3, #e4e8ee);
}

.about-page .work-card__frame::after {
  content: "Hover to explore";
  position: absolute;
  right: 15px;
  bottom: 14px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 999px;
  background: rgba(27, 25, 22, .72);
  color: #fff;
  font-size: .61rem;
  font-weight: 700;
  letter-spacing: .07em;
  opacity: .78;
  pointer-events: none;
  text-transform: uppercase;
  transition: opacity .3s ease, transform .3s ease;
}

.about-page .work-card:hover .work-card__frame::after {
  opacity: 0;
  transform: translateY(5px);
}

.about-page .work-card iframe {
  width: 1440px;
  height: 940px;
  transform: scale(.43);
  transform-origin: top left;
}

@media (max-width: 980px) {
  .how-it-works-page #get-started .bs-start__grid {
    grid-template-columns: minmax(270px, .8fr) minmax(450px, 1.2fr);
    gap: 38px;
  }

  .about-page .area-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .site-nav__wrap {
    display: flex;
    width: min(560px, calc(100% - 28px));
  }

  .site-nav__wrap > .site-nav__client {
    display: none;
  }

  .site-nav__pill,
  .offer-page .site-nav__pill,
  .offer-page--light .site-nav__pill {
    width: 100%;
  }

  .how-it-works-page #get-started .bs-start__grid {
    grid-template-columns: 1fr;
    width: min(100%, 680px);
  }

  .how-it-works-page #get-started .bs-start__copy {
    transform: none;
  }

  .about-page .work-grid {
    grid-template-columns: 1fr;
    width: min(100%, 660px);
    margin-inline: auto;
  }

  .about-page .work-card:last-child {
    grid-column: auto;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .area-grid__place-groups {
    grid-template-columns: 1fr;
  }

  .area-place-group:nth-last-child(2) {
    border-bottom: 1px solid rgba(27, 25, 22, .075);
    padding-bottom: 20px;
  }

  .about-page .content-section--work .content-shell {
    width: min(100% - 34px, 1280px);
  }

  .about-page .work-card__frame {
    height: 292px;
  }

  .about-page .work-card iframe {
    transform: scale(.27);
  }

  .about-page .work-card__frame::after {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn.bs-faq__more-btn,
  .about-page .work-card__frame::after {
    transition: none;
  }
}

/* ============================================================
   PROJECT 31 — NAV, ABOUT CREDITS, FAQ + OFFER ALIGNMENT
   ============================================================ */

/* Flat member access: no underline, bevel, shine strip, or lift. */
.site-nav__client,
.offer-page .site-nav__client,
.offer-page--light .site-nav__client {
  min-height: 31px;
  border: 1px solid rgba(140, 187, 242, .34);
  background: linear-gradient(
    112deg,
    rgba(255, 255, 255, .17) 0%,
    rgba(255, 255, 255, .94) 48%,
    rgba(255, 255, 242, .16) 100%
  );
  box-shadow: none;
  color: #fffff;
  text-decoration: none;
  transform: none;
}

.site-nav__client::before,
.site-nav__client::after {
  content: none !important;
  display: none !important;
}

.site-nav__client:hover,
.site-nav__client:focus-visible,
.offer-page .site-nav__client:hover,
.offer-page .site-nav__client:focus-visible,
.offer-page--light .site-nav__client:hover,
.offer-page--light .site-nav__client:focus-visible {
  border-color: rgba(252, 180, 84, .46);
  background: linear-gradient(
    112deg,
    rgba(254, 203, 105, .24) 0%,
    rgba(255, 255, 255, .98) 48%,
    rgba(140, 187, 242, .2) 100%
  );
  box-shadow: none;
  color: #f29d29;
  text-decoration: none;
  transform: none;
}

/* A softly masked, continuous service-area credits reel. */
.about-page .area-grid__places {
  padding-bottom: 20px;
}

.area-credits {
  position: relative;
  height: clamp(360px, 42vw, 470px);
  margin: 8px -6px 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 13%, #000 87%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 13%, #000 87%, transparent 100%);
}

.area-credits__track {
  display: grid;
  gap: 38px;
  padding: 34px 22px;
  animation: area-credits-scroll 38s linear infinite;
  will-change: transform;
}

.area-credits:hover .area-credits__track,
.area-credits:focus-within .area-credits__track {
  animation-play-state: paused;
}

.area-credits__sequence {
  display: grid;
  gap: 29px;
}

.area-credits .area-place-group {
  padding: 0;
  border: 0;
  text-align: center;
}

.area-credits .area-place-group::before {
  display: none;
}

.area-credits .area-place-group h3 {
  margin: 0 0 10px;
  color: #cb8523;
  font-size: .67rem;
  letter-spacing: .2em;
}

.area-credits .area-place-group p {
  max-width: 650px;
  margin: 0 auto;
  color: #5e6065;
  font-size: clamp(.92rem, 1.3vw, 1.04rem);
  font-weight: 400;
  letter-spacing: .018em;
  line-height: 1.95;
  text-wrap: balance;
}

@keyframes area-credits-scroll {
  from { transform: translateY(0); }
  to { transform: translateY(calc(-50% - 19px)); }
}

/* Flat FAQ action: clear and intentional without a raised button treatment. */
.btn.bs-faq__more-btn,
.btn.bs-faq__more-btn:hover,
.btn.bs-faq__more-btn:focus-visible {
  border: 1px solid rgba(27, 25, 22, .14);
  background: rgba(255, 255, 255, .52);
  box-shadow: none;
  color: #1b1916;
  filter: none;
  transform: none;
}

.btn.bs-faq__more-btn:hover,
.btn.bs-faq__more-btn:focus-visible {
  border-color: rgba(252, 180, 84, .55);
  background: rgba(254, 203, 105, .14);
  color: #c9780b;
}

/* Align the Stay Ahead message with the top of its embedded form. */
.offer-page--light .offer-checkout {
  align-items: start;
}

.offer-page--light .offer-checkout__copy {
  margin-top: clamp(-54px, -4vw, -26px);
}

@media (max-width: 860px) {
  .offer-page--light .offer-checkout__copy {
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .area-credits {
    height: 390px;
    margin-inline: -12px;
  }

  .area-credits__track {
    padding-inline: 18px;
    animation-duration: 44s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .area-credits {
    height: auto;
    max-height: 430px;
    overflow-y: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .area-credits__track {
    animation: none;
    transform: none;
  }

  .area-credits__sequence[aria-hidden="true"] {
    display: none;
  }
}

/* ============================================================
   BLACK SAND SERVICE + LOCATION PAGES
   Shared editorial system for SEO, service, and policy content.
   ============================================================ */

.seo-page {
  --seo-ink: #1b1916;
  --seo-copy: #616267;
  --seo-gold: #fecb69;
  --seo-orange: #fcb454;
  --seo-blue: #8cbbf2;
  --seo-peach: #f7bf96;
  --seo-lilac: #dfcbd8;
  --seo-lavender: #b8baf7;
  margin: 0;
  overflow-x: hidden;
  color: var(--seo-ink);
  background: #f8f6f1;
  font-family: "Roboto", Arial, sans-serif;
}

.seo-page main,
.seo-page article {
  display: block;
}

.seo-page article {
  overflow: hidden;
}

.seo-breadcrumb {
  position: relative;
  z-index: 2;
  padding: 94px max(24px, calc((100vw - 1120px) / 2)) 18px;
  background: #fbfaf6;
}

.seo-breadcrumb nav,
.seo-breadcrumb ol {
  margin: 0;
}

.seo-breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0;
  list-style: none;
  color: #77736d;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.seo-breadcrumb li + li::before {
  content: "·";
  margin-right: 9px;
  color: #d09336;
}

.seo-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.seo-breadcrumb a:hover {
  color: var(--seo-orange);
}

.seo-hero {
  position: relative;
  isolation: isolate;
  min-height: min(690px, calc(100vh - 92px));
  padding: clamp(76px, 10vw, 138px) max(24px, calc((100vw - 1120px) / 2)) clamp(104px, 12vw, 160px);
  background:
    radial-gradient(circle at 8% 12%, rgba(254, 203, 105, .32), transparent 31%),
    radial-gradient(circle at 88% 16%, rgba(140, 187, 242, .28), transparent 34%),
    linear-gradient(140deg, #fffdf8 0%, #f7f0e5 47%, #eef4fb 100%);
}

.seo-page--location .seo-hero {
  background:
    radial-gradient(circle at 12% 18%, rgba(140, 187, 242, .27), transparent 31%),
    radial-gradient(circle at 86% 10%, rgba(254, 203, 105, .27), transparent 33%),
    linear-gradient(142deg, #fdfbf7 0%, #eef4fa 54%, #f7efe6 100%);
}

.seo-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 82px;
  background: #f8f6f1;
  clip-path: polygon(0 64%, 18% 35%, 41% 58%, 66% 22%, 84% 48%, 100% 28%, 100% 100%, 0 100%);
}

.seo-hero__aurora {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(112deg, transparent 20%, rgba(255, 255, 255, .44) 48%, transparent 74%),
    radial-gradient(ellipse at 62% 82%, rgba(223, 203, 216, .3), transparent 46%);
}

.seo-hero__mark {
  position: absolute;
  z-index: -1;
  right: clamp(-210px, -10vw, -80px);
  bottom: clamp(-270px, -18vw, -140px);
  width: clamp(520px, 52vw, 820px);
  max-width: none;
  opacity: .16;
  pointer-events: none;
}

.seo-hero__eyebrow {
  max-width: 720px;
  margin: 0 0 24px;
  color: #bd7412;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.seo-hero > h1 {
  max-width: 980px;
  margin: 0;
  color: var(--seo-ink);
  font-size: clamp(3.1rem, 7vw, 6.6rem);
  font-weight: 300;
  letter-spacing: -.06em;
  line-height: .96;
  text-wrap: balance;
}

.seo-hero > section {
  max-width: 760px;
  margin-top: 34px;
}

.seo-hero > section p {
  margin: 0 0 18px;
  color: #53565c;
  font-size: clamp(1rem, 1.5vw, 1.17rem);
  line-height: 1.78;
}

.seo-hero > section p:last-child {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  font-size: 0;
}

.seo-hero .btn,
.seo-hero .seo-button--secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 49px;
  padding: 0 23px;
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 700;
  text-decoration: none;
}

.seo-hero .seo-button--secondary {
  border: 1px solid rgba(27, 25, 22, .16);
  background: rgba(255, 255, 255, .58);
  color: var(--seo-ink);
}

.seo-content-section {
  position: relative;
  width: min(calc(100% - 48px), 1040px);
  margin: 0 auto;
  padding: clamp(72px, 8vw, 112px) clamp(24px, 5vw, 74px);
  border-bottom: 1px solid rgba(27, 25, 22, .08);
  background: rgba(255, 255, 255, .64);
}

.seo-content-section--tint {
  background:
    radial-gradient(circle at 94% 12%, rgba(140, 187, 242, .12), transparent 30%),
    linear-gradient(145deg, rgba(254, 203, 105, .09), rgba(255, 255, 255, .6));
}

.seo-content-section:first-of-type {
  border-radius: 30px 30px 0 0;
}

.seo-content-section:last-of-type {
  margin-bottom: clamp(80px, 10vw, 138px);
  border-radius: 0 0 30px 30px;
}

.seo-content-section h2 {
  max-width: 780px;
  margin: 0 0 27px;
  color: var(--seo-ink);
  font-size: clamp(2rem, 4vw, 3.65rem);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: 1.04;
  text-wrap: balance;
}

.seo-content-section h2::after {
  content: "";
  display: block;
  width: 74px;
  height: 2px;
  margin-top: 21px;
  background: linear-gradient(90deg, var(--seo-orange), var(--seo-blue), transparent);
}

.seo-content-section h3 {
  max-width: 820px;
  margin: 34px 0 11px;
  color: #302e2b;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.35;
}

.seo-content-section p,
.seo-content-section li {
  max-width: 820px;
  color: var(--seo-copy);
  font-size: 1rem;
  line-height: 1.82;
}

.seo-content-section p {
  margin: 0 0 19px;
}

.seo-content-section a {
  color: #a86309;
  font-weight: 600;
  text-decoration-color: rgba(168, 99, 9, .3);
  text-underline-offset: 3px;
}

.seo-content-section a:hover {
  color: var(--seo-orange);
}

.seo-content-section ul,
.seo-content-section ol {
  display: grid;
  gap: 12px;
  max-width: 840px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: seo-list;
}

.seo-content-section li {
  position: relative;
  padding: 15px 18px 15px 48px;
  border: 1px solid rgba(27, 25, 22, .08);
  border-radius: 16px;
  background: rgba(255, 255, 255, .72);
}

.seo-content-section ul li::before {
  content: "";
  position: absolute;
  top: 23px;
  left: 20px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--seo-orange), var(--seo-blue));
  box-shadow: 0 0 0 5px rgba(252, 180, 84, .1);
}

.seo-content-section ol li {
  counter-increment: seo-list;
}

.seo-content-section ol li::before {
  content: counter(seo-list, decimal-leading-zero);
  position: absolute;
  left: 17px;
  color: #bd7412;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
}

.seo-content-section--faq h3 {
  margin-top: 12px;
  padding: 22px 64px 22px 24px;
  border-top: 1px solid rgba(27, 25, 22, .1);
  color: #34312d;
}

.seo-content-section--faq h3 + p {
  margin: -6px 0 20px;
  padding: 0 64px 21px 24px;
}

.seo-content-section--map iframe {
  overflow: hidden;
  min-height: 380px;
  border: 1px solid rgba(27, 25, 22, .1) !important;
  border-radius: 24px;
  box-shadow: 0 22px 58px rgba(41, 36, 31, .1);
}

.seo-content-section--related ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.seo-content-section--cta {
  isolation: isolate;
  overflow: hidden;
  border: 0;
  border-radius: 28px !important;
  background: linear-gradient(118deg, rgba(254, 203, 105, .5), rgba(247, 191, 150, .33) 44%, rgba(140, 187, 242, .34));
}

.seo-content-section--cta::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -90px;
  bottom: -170px;
  width: 390px;
  height: 390px;
  background: url('/logotransparent.gif?v=loop') center / contain no-repeat;
  opacity: .15;
}

.seo-source-footer {
  display: none;
}

.seo-footer .footer__links {
  grid-template-columns: repeat(3, minmax(130px, 1fr));
}

.seo-page--policy .seo-hero {
  min-height: 560px;
}

.policy-meta,
.policy-notice {
  max-width: 820px;
  padding: 18px 22px;
  border: 1px solid rgba(252, 180, 84, .28);
  border-radius: 16px;
  background: rgba(254, 203, 105, .1);
  color: #5c5144;
  line-height: 1.7;
}

@media (max-width: 760px) {
  .seo-breadcrumb {
    padding-top: 82px;
  }

  .seo-hero {
    min-height: auto;
    padding-top: 68px;
  }

  .seo-hero > h1 {
    font-size: clamp(2.75rem, 12vw, 4.7rem);
  }

  .seo-hero__mark {
    right: -190px;
    bottom: -150px;
    width: 520px;
  }

  .seo-content-section {
    width: min(calc(100% - 28px), 1040px);
    padding-inline: 22px;
  }

  .seo-content-section--related ul,
  .seo-footer .footer__links {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .seo-hero__mark,
  .seo-content-section--cta::after {
    content: none;
  }
}

.offer-pricing-panel__guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  color: inherit;
  opacity: 0.75;
  text-decoration: none;
  transition: opacity 0.2s ease, text-decoration-color 0.2s ease;
  text-decoration-line: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
}

.offer-pricing-panel__guarantee span {
  color: #2f9e59; /* small green check to read as "trust" */
}

.offer-pricing-panel__guarantee:hover {
  opacity: 1;
  text-decoration-color: currentColor;
}
/* Final override — force solid color regardless of earlier duplicate rules */
.site-nav__client,
.offer-page .site-nav__client,
.offer-page--light .site-nav__client {
  background: rgba(255, 255, 255, 0.86) !important;
   transition: transform 1.85s cubic-bezier(0.22, 1, 0.36, 1),
  box-shadow 0.55s ease;
  color: #1b1916 !important;
  transform: scale(1);
  border-color: rgb(221, 235, 252,)
}

.site-nav__client:hover,
.site-nav__client:focus-visible,
.offer-page .site-nav__client:hover,
.offer-page .site-nav__client:focus-visible,
.offer-page--light .site-nav__client:hover,
.offer-page--light .site-nav__client:focus-visible {
  background: linear-gradient(145deg, rgb(252, 233, 216), rgba(252, 233, 116, 0.8), rgba(255, 255, 255)) !important;
  transition: transform 1.85s cubic-bezier(0.22, 1, 0.36, 1),
  box-shadow 0.55s ease;
  color: #1b1916 !important;
  transform: scale(1.02);
  border-color: rgba(224, 222, 215)
  

}