/* ==========================================================================
   Gabe US Incorporated — Stylesheet
   White-dominant, soft pastel accents, red only for CTAs. Rounded, friendly.
   ========================================================================== */

/* Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand — red from logo, used sparingly */
  --red:        #E11D2E;
  --red-dark:   #B91525;
  --red-soft:   #FFE5E8;

  /* Neutrals */
  --ink:        #1F2937;
  --ink-soft:   #374151;
  --muted:      #6B7280;
  --line:       #EFE4D8;
  --line-soft:  #F7EEE1;
  --white:      #FFFFFF;
  --cream:      #FDF6E6;  /* signature warm cream — used for hero + many sections */

  /* Committed pastel section backgrounds (single-color blocks, not tints) */
  --pink:       #FFDCE1;
  --pink-2:     #FFE8EC;
  --peach:      #FFD9B8;
  --peach-2:    #FFE7D0;
  --mint:       #C9ECD5;
  --mint-2:     #DFF3E5;
  --butter:     #FFE89A;
  --butter-2:   #FFF2B8;
  --lavender:   #E0D1FF;
  --lavender-2: #EEE2FF;
  --sky:        #C8E1FF;
  --sky-2:      #DCEBFF;

  /* Typography */
  --font-sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Type scale */
  --fs-xs:    0.8125rem;
  --fs-sm:    0.9375rem;
  --fs-base:  1rem;
  --fs-lg:    1.125rem;
  --fs-xl:    1.375rem;
  --fs-2xl:   1.75rem;
  --fs-3xl:   2.375rem;
  --fs-4xl:   3rem;
  --fs-5xl:   3.75rem;
  --fs-6xl:   4.5rem;

  /* Spacing */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.25rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  /* Radius */
  --r-sm: 8px;
  --r:    14px;
  --r-lg: 24px;
  --r-xl: 36px;
  --pill: 999px;

  /* Layout */
  --container: 1200px;

  /* Shadows — soft */
  --shadow-sm:  0 2px 4px rgba(31, 41, 55, 0.04);
  --shadow:     0 4px 14px rgba(31, 41, 55, 0.06);
  --shadow-lg:  0 14px 40px rgba(31, 41, 55, 0.08);
  --shadow-red: 0 8px 20px rgba(225, 29, 46, 0.18);
}

/* Reset
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }

/* Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5 {
  margin: 0 0 var(--sp-4);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}
h1 {
  font-size: clamp(2.25rem, 5vw, var(--fs-6xl));
  font-weight: 800;
  letter-spacing: -0.035em;
}
h2 {
  font-size: clamp(1.75rem, 3.6vw, var(--fs-4xl));
  letter-spacing: -0.025em;
}
h3 { font-size: var(--fs-2xl); }
h4 { font-size: var(--fs-xl); font-weight: 700; }
h5 { font-size: var(--fs-lg); font-weight: 600; }

p { margin: 0 0 var(--sp-4); color: var(--ink-soft); }
.lead {
  font-size: var(--fs-lg);
  color: var(--muted);
  line-height: 1.65;
  font-weight: 400;
}
.eyebrow {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: var(--sp-4);
}
.eyebrow--muted { color: var(--muted); }

em, .italic { font-style: italic; }

/* Layout
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}
.section {
  padding: var(--sp-24) 0;
  position: relative;
  overflow: hidden;
}
.section--sm { padding: var(--sp-16) 0; }

.section--cream   { background: var(--cream); }
.section--pink    { background: var(--pink-2); }
.section--peach   { background: var(--peach-2); }
.section--mint    { background: var(--mint-2); }
.section--butter  { background: var(--butter-2); }
.section--lavender{ background: var(--lavender-2); }

/* Buttons — rounded pills, red for primary CTA
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 14px 28px;
  font-family: inherit;
  font-size: var(--fs-sm);
  font-weight: 600;
  line-height: 1;
  border-radius: var(--pill);
  border: 1.5px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-align: center;
}

.btn--primary {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  box-shadow: var(--shadow-red);
}
.btn--primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(225, 29, 46, 0.28);
}

.btn--ghost {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover {
  border-color: var(--ink);
  transform: translateY(-1px);
}

.btn--light {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
}
.btn--light:hover {
  background: var(--red-soft);
}

.btn .arrow { transition: transform 0.2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* Nav — white, soft, rounded
   -------------------------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--line-soft);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  height: 84px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.nav__brand-mark {
  width: 52px; height: 52px;
  flex-shrink: 0;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  transform-origin: center;
}
@media (max-width: 1024px) {
  .nav__inner { height: 76px; }
  .nav__brand-mark { width: 44px; height: 44px; }
  .nav__brand { font-size: 1rem; }
}

/* Brand animations: stamp-in on load, spin on hover, text rise on load
   -------------------------------------------------------------------------- */
.nav__brand > span {
  display: inline-block;
  animation: brand-rise 0.55s 0.15s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.nav__brand-mark.popping {
  animation: brand-pop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.nav__brand-mark.spinning {
  animation: brand-spin 0.8s cubic-bezier(0.25, 0.8, 0.35, 1);
}

@keyframes brand-pop {
  0%   { opacity: 0; transform: scale(0.3)  rotate(-18deg); }
  55%  { opacity: 1; transform: scale(1.12) rotate(6deg);  }
  80%  { opacity: 1; transform: scale(0.97) rotate(-2deg); }
  100% { opacity: 1; transform: scale(1)    rotate(0);     }
}
@keyframes brand-spin {
  from { transform: rotate(0); }
  to   { transform: rotate(360deg); }
}
@keyframes brand-rise {
  0%   { opacity: 0; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0);   }
}

@media (prefers-reduced-motion: reduce) {
  .nav__brand > span,
  .nav__brand-mark.popping,
  .nav__brand-mark.spinning {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__link {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--ink-soft);
  padding: 4px 0;
  position: relative;
  transition: color 0.18s;
}
.nav__link:hover { color: var(--red); }
.nav__link[aria-current="page"] { color: var(--red); }
.nav__link[aria-current="page"]::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0; right: 0;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

.nav__cta { margin-left: var(--sp-4); }

.nav__toggle {
  display: none;
  padding: 10px;
  color: var(--ink);
  min-width: 44px;
  min-height: 44px;
}
.nav__toggle svg { width: 24px; height: 24px; }

@media (max-width: 880px) {
  /* Base: hide links + CTA, show toggle */
  .nav__links,
  .nav__cta { display: none; }
  .nav__toggle { display: block; }

  /* When open: let nav__inner wrap so the menu flows onto new rows
     below the brand/toggle. Avoids overlapping the CTA with links. */
  .nav.is-open .nav__inner {
    flex-wrap: wrap;
    height: auto;
    row-gap: var(--sp-3);
    padding-bottom: var(--sp-6);
  }
  .nav.is-open .nav__links {
    display: flex;
    flex-direction: column;
    width: 100%;
    order: 10;
    gap: var(--sp-2);
    padding-top: var(--sp-4);
    border-top: 1px solid var(--line-soft);
  }
  .nav.is-open .nav__links li { width: 100%; }
  .nav.is-open .nav__link {
    display: block;
    padding: var(--sp-3) 0;
    font-size: 1rem;
    border-bottom: none;
  }
  .nav.is-open .nav__link[aria-current="page"]::after { display: none; }
  .nav.is-open .nav__cta {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    order: 11;
    margin: var(--sp-2) 0 0;
  }
}

/* Hero — bright white with scattered gummies + mouse parallax
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding: var(--sp-20) 0 var(--sp-24);
  background: var(--cream);
  overflow: hidden;
  min-height: 640px;
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 620px) 1fr;
  gap: var(--sp-16);
  align-items: center;
}
.hero__content { max-width: 580px; }

/* Gummies layer — absolute positioned, covers the whole hero */
.hero__gummies {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

/* Scattered shape element — SVG wrapper */
.shape {
  position: absolute;
  display: block;
  filter: drop-shadow(0 10px 18px rgba(31, 41, 55, 0.12));
  will-change: transform;
  animation: float 9s ease-in-out infinite;
}
/* Stagger the float animation so each shape has its own rhythm */
.shape:nth-child(1)  { animation-delay: -0.5s; animation-duration: 10s; }
.shape:nth-child(2)  { animation-delay: -1.2s; animation-duration:  8s; }
.shape:nth-child(3)  { animation-delay: -2.0s; animation-duration: 11s; }
.shape:nth-child(4)  { animation-delay: -3.1s; animation-duration:  9s; }
.shape:nth-child(5)  { animation-delay: -4.0s; animation-duration:  7s; }
.shape:nth-child(6)  { animation-delay: -5.3s; animation-duration: 10s; }
.shape:nth-child(7)  { animation-delay: -6.0s; animation-duration:  8s; }
.shape:nth-child(8)  { animation-delay: -7.2s; animation-duration: 12s; }
.shape:nth-child(9)  { animation-delay: -1.5s; animation-duration:  9s; }
.shape:nth-child(10) { animation-delay: -4.5s; animation-duration: 11s; }
.shape:nth-child(11) { animation-delay: -3.0s; animation-duration:  8s; }
.shape:nth-child(12) { animation-delay: -6.5s; animation-duration: 10s; }
.shape:nth-child(13) { animation-delay: -2.5s; animation-duration:  9s; }

@keyframes float {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -10px; }
}
/* Size variants */
.shape-xs { width: 52px;  height: 52px; }
.shape-sm { width: 72px;  height: 72px; }
.shape-md { width: 104px; height: 104px; }
.shape-lg { width: 140px; height: 140px; }

/* Inside the split-visual context, shapes are positioned relative */
.split__visual .shape {
  position: absolute;
  animation: float 10s ease-in-out infinite;
}
.split__visual .shape:nth-child(odd)  { animation-duration: 8s; }
.split__visual .shape:nth-child(even) { animation-duration: 11s; animation-delay: -3s; }

@media (prefers-reduced-motion: reduce) {
  .shape { animation: none; }
}
.hero__title {
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: var(--sp-6);
  font-weight: 800;
}
.hero__title .accent { color: var(--red); position: relative; white-space: nowrap; }
.hero__title .accent::after {
  content: "";
  position: absolute;
  left: -4px; right: -4px; bottom: 0.05em;
  height: 0.36em;
  background: var(--butter);
  z-index: -1;
  border-radius: 4px;
}
.hero__sub {
  font-size: var(--fs-lg);
  color: var(--muted);
  margin-bottom: var(--sp-8);
  max-width: 32rem;
  line-height: 1.65;
}
.hero__ctas {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: var(--sp-12);
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  padding-top: var(--sp-8);
  border-top: 1px dashed var(--line);
}
.hero__stat-val {
  font-size: var(--fs-2xl);
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero__stat-val .small { font-size: 0.7em; color: var(--red); margin-left: 2px; }
.hero__stat-label {
  font-size: var(--fs-xs);
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.45;
  font-weight: 500;
}

/* Hero visual: jar of pastel gummies */
.hero__visual {
  position: relative;
  aspect-ratio: 1 / 1.05;
  max-width: 520px;
  margin: 0 auto;
}
.hero__blob {
  position: absolute;
  inset: 0;
  background: var(--pink);
  border-radius: 48% 52% 44% 56% / 52% 42% 58% 48%;
  animation: blob 18s ease-in-out infinite;
}
.hero__blob--2 {
  background: var(--peach);
  border-radius: 56% 44% 60% 40% / 48% 58% 42% 52%;
  animation-delay: -6s;
  animation-duration: 22s;
  inset: 8% 8% 8% 8%;
  opacity: 0.85;
}
.hero__blob--3 {
  background: var(--mint);
  border-radius: 40% 60% 50% 50% / 60% 40% 56% 44%;
  animation-delay: -12s;
  inset: 18% 18% 18% 18%;
  opacity: 0.7;
}
@keyframes blob {
  0%, 100% { transform: rotate(0deg) scale(1); }
  33% { transform: rotate(6deg) scale(1.02); }
  66% { transform: rotate(-4deg) scale(0.98); }
}

.gummy {
  position: absolute;
  border-radius: 50%;
  box-shadow:
    inset -4px -6px 10px rgba(0, 0, 0, 0.12),
    inset 4px 4px 10px rgba(255, 255, 255, 0.45),
    0 6px 14px rgba(0, 0, 0, 0.08);
}
.gummy--pink    { background: radial-gradient(circle at 30% 25%, #ffb4be, #f07b88); }
.gummy--peach   { background: radial-gradient(circle at 30% 25%, #ffcfa8, #f59e5a); }
.gummy--mint    { background: radial-gradient(circle at 30% 25%, #a8e6b9, #5dbd76); }
.gummy--butter  { background: radial-gradient(circle at 30% 25%, #ffe68b, #f5c342); }
.gummy--violet  { background: radial-gradient(circle at 30% 25%, #d1b7ff, #9b79e8); }
.gummy--sky     { background: radial-gradient(circle at 30% 25%, #a8d8ff, #5eb0ed); }
.gummy--red     { background: radial-gradient(circle at 30% 25%, #ff8c98, #e11d2e); }

.hero__gummy-1 { top: 8%;  left: 20%; width: 90px;  height: 90px; }
.hero__gummy-2 { top: 28%; left: 60%; width: 70px;  height: 70px; }
.hero__gummy-3 { top: 52%; left: 22%; width: 110px; height: 110px; }
.hero__gummy-4 { top: 68%; left: 58%; width: 80px;  height: 80px; }
.hero__gummy-5 { top: 35%; left: 40%; width: 55px;  height: 55px; }
.hero__gummy-6 { top: 15%; left: 70%; width: 50px;  height: 50px; }

.hero__badge {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translate(-50%, 35%);
  background: var(--white);
  border-radius: var(--pill);
  padding: 10px 20px 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-sm);
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
}
.hero__badge-flag {
  width: 32px; height: 32px;
  background: var(--red);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 16px;
}

@media (max-width: 880px) {
  .hero { min-height: auto; padding: var(--sp-16) 0 var(--sp-24); }
  .hero__inner { grid-template-columns: 1fr; gap: var(--sp-12); }
  .hero__stats { grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
  /* Reduce visual clutter on small screens */
  .hero__gummies { opacity: 0.7; }
  .hero__gummies .shape-lg { display: none; }
  .hero__gummies .shape-md { transform: scale(0.8); }
}

/* Trust bar — pastel pills, blends with hero cream
   -------------------------------------------------------------------------- */
.trust-bar {
  padding: var(--sp-12) 0;
  background: var(--cream);
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 10px 18px;
  border-radius: var(--pill);
  font-size: var(--fs-sm);
  font-weight: 600;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
}
.pill__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  display: inline-block;
}
.pill--mint   { background: var(--mint);   border-color: transparent; }
.pill--peach  { background: var(--peach);  border-color: transparent; }
.pill--pink   { background: var(--pink);   border-color: transparent; }
.pill--butter { background: var(--butter); border-color: transparent; }
.pill--sky    { background: var(--sky);    border-color: transparent; }

/* Section head
   -------------------------------------------------------------------------- */
.section__head {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto var(--sp-16);
}
.section__head--left {
  text-align: left;
  margin-left: 0;
}

/* Cards
   -------------------------------------------------------------------------- */
.card-grid {
  display: grid;
  gap: var(--sp-6);
}
.card-grid--2 { grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); }
.card-grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.card-grid--4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--red-soft);
  box-shadow: var(--shadow-lg);
}
.card__icon {
  width: 52px; height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: var(--sp-6);
  font-size: 26px;
}
.card__icon--pink   { background: var(--pink); }
.card__icon--peach  { background: var(--peach); }
.card__icon--mint   { background: var(--mint); }
.card__icon--butter { background: var(--butter); }
.card__icon--sky    { background: var(--sky); }
.card__icon--lavender { background: var(--lavender); }
.card__title {
  font-size: var(--fs-xl);
  margin-bottom: var(--sp-3);
  font-weight: 700;
}
.card__body {
  color: var(--muted);
  font-size: var(--fs-sm);
  line-height: 1.65;
  margin: 0;
}
.card__link {
  margin-top: var(--sp-5);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.card__link:hover { gap: 10px; }

/* Process steps — friendly numbered cards
   -------------------------------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--sp-6);
}
.step {
  padding: var(--sp-8);
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  position: relative;
  transition: all 0.25s;
}
.step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: var(--fs-sm);
  font-weight: 800;
  color: var(--red);
  background: var(--red-soft);
  margin-bottom: var(--sp-5);
}
.step--pink   .step__num { background: var(--pink); }
.step--peach  .step__num { background: var(--peach); }
.step--mint   .step__num { background: var(--mint); }
.step--butter .step__num { background: var(--butter); }
.step--lavender .step__num { background: var(--lavender); }
.step--sky    .step__num { background: var(--sky); }

.step__title {
  font-size: var(--fs-lg);
  font-weight: 700;
  margin-bottom: var(--sp-3);
  letter-spacing: -0.01em;
}
.step__body {
  font-size: var(--fs-sm);
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}
.step--accent {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.step--accent .step__num { background: var(--red); color: #fff; }
.step--accent .step__title { color: #fff; }
.step--accent .step__body { color: #d1d5db; }

/* Split layout
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}
.split--reverse .split__text { order: 2; }

.split__visual {
  aspect-ratio: 5/4;
  border-radius: var(--r-xl);
  background: var(--peach-2);
  position: relative;
  overflow: hidden;
  padding: var(--sp-8);
}
.split__visual--mint { background: var(--mint-2); }
.split__visual--pink { background: var(--pink-2); }
.split__visual--butter { background: var(--butter-2); }

.split__badges {
  position: absolute;
  inset: auto var(--sp-6) var(--sp-6) var(--sp-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}
.split__badge {
  padding: 8px 14px;
  background: var(--white);
  border-radius: var(--pill);
  font-size: var(--fs-xs);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; gap: var(--sp-8); }
  .split--reverse .split__text { order: 0; }
}

/* Feature list (bullets with soft marker)
   -------------------------------------------------------------------------- */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--sp-4);
}
.feature-list li {
  padding-left: 36px;
  position: relative;
  color: var(--ink-soft);
  line-height: 1.65;
  font-size: var(--fs-base);
}
.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 2px;
  width: 24px; height: 24px;
  background: var(--red-soft);
  color: var(--red);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 700;
}

/* Testimonial / quote
   -------------------------------------------------------------------------- */
.quote {
  max-width: 52rem;
  margin: 0 auto;
  text-align: center;
  padding: var(--sp-12) var(--sp-6);
  background: var(--white);
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  position: relative;
}
.quote__mark {
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  width: 64px; height: 64px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  box-shadow: var(--shadow-red);
}
.quote__mark::before { content: "\201C"; margin-top: 8px; }
.quote__text {
  font-size: clamp(1.125rem, 2.1vw, 1.5rem);
  line-height: 1.45;
  color: var(--ink);
  margin: var(--sp-4) 0 var(--sp-8);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.quote__author {
  font-size: var(--fs-sm);
  color: var(--muted);
}
.quote__author strong {
  color: var(--ink);
  display: block;
  font-weight: 700;
  margin-bottom: 2px;
}

/* CTA block
   -------------------------------------------------------------------------- */
.cta-block {
  text-align: center;
  padding: var(--sp-20) var(--sp-6);
  background: var(--peach-2);
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
}
.cta-block__inner {
  position: relative;
  max-width: 44rem;
  margin: 0 auto;
}
.cta-block h2 { margin-bottom: var(--sp-4); }
.cta-block p {
  color: var(--muted);
  font-size: var(--fs-lg);
  margin-bottom: var(--sp-8);
}

/* Footer
   -------------------------------------------------------------------------- */
.footer {
  background: var(--white);
  color: var(--muted);
  padding: var(--sp-20) 0 var(--sp-8);
  border-top: 1px solid var(--line-soft);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-12);
  margin-bottom: var(--sp-16);
}
.footer__brand {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: var(--sp-4);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  letter-spacing: -0.01em;
}
.footer__tag {
  font-size: var(--fs-sm);
  max-width: 22rem;
  margin-bottom: var(--sp-6);
  color: var(--muted);
}
.footer__address {
  font-size: var(--fs-sm);
  color: var(--muted);
  line-height: 1.6;
}
.footer h5 {
  color: var(--ink);
  font-size: var(--fs-xs);
  margin-bottom: var(--sp-4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}
.footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.footer__list a {
  font-size: var(--fs-sm);
  color: var(--muted);
  transition: color 0.15s;
}
.footer__list a:hover { color: var(--red); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: var(--sp-6);
  border-top: 1px solid var(--line-soft);
  font-size: var(--fs-xs);
  color: var(--muted);
  flex-wrap: wrap;
  gap: var(--sp-4);
}

@media (max-width: 880px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
  .footer__brand-col { grid-column: 1 / -1; }
}

/* FAQ
   -------------------------------------------------------------------------- */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: var(--sp-3);
}
.faq-item {
  border-radius: var(--r);
  background: var(--white);
  border: 1px solid var(--line);
  transition: all 0.2s;
}
.faq-item[open] {
  border-color: var(--red-soft);
  box-shadow: var(--shadow);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: var(--sp-5) var(--sp-6);
  display: flex;
  justify-content: space-between;
  gap: var(--sp-4);
  align-items: center;
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item__plus {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--red-soft);
  color: var(--red);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: 700;
  transition: transform 0.2s;
}
.faq-item[open] .faq-item__plus {
  background: var(--red);
  color: #fff;
  transform: rotate(45deg);
}
.faq-item__body {
  padding: 0 var(--sp-6) var(--sp-5) var(--sp-6);
  color: var(--muted);
  font-size: var(--fs-sm);
  line-height: 1.7;
  max-width: 92%;
}
.faq-item__body p { margin: 0; color: inherit; }

/* Form
   -------------------------------------------------------------------------- */
.form { display: grid; gap: var(--sp-5); }
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}
.field { display: flex; flex-direction: column; gap: var(--sp-2); }
.field label {
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.field input,
.field select,
.field textarea {
  padding: 14px 18px;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  font-family: inherit;
  font-size: var(--fs-base);
  color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--red);
  box-shadow: 0 0 0 4px var(--red-soft);
}
.field textarea { resize: vertical; min-height: 140px; }
@media (max-width: 640px) {
  .form__row { grid-template-columns: 1fr; }
}

/* Page banner (sub-pages) — committed single-color bg, clean
   -------------------------------------------------------------------------- */
.page-banner {
  padding: var(--sp-20) 0 var(--sp-16);
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
/* Color variants — single committed pastel for each page */
.page-banner--cream    { background: var(--cream); }
.page-banner--butter   { background: var(--butter-2); }
.page-banner--peach    { background: var(--peach-2); }
.page-banner--mint     { background: var(--mint-2); }
.page-banner--pink     { background: var(--pink-2); }
.page-banner--lavender { background: var(--lavender-2); }

.page-banner__inner {
  position: relative;
  max-width: 44rem;
}
.page-banner__eyebrow { margin-bottom: var(--sp-4); }
.page-banner__title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  margin-bottom: var(--sp-4);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.page-banner__title .accent { color: var(--red); position: relative; white-space: nowrap; }
.page-banner__title .accent::after {
  content: "";
  position: absolute;
  left: -4px; right: -4px; bottom: 0.05em;
  height: 0.36em;
  background: rgba(255, 232, 154, 0.8);
  z-index: -1;
  border-radius: 4px;
}
.page-banner__sub {
  font-size: var(--fs-lg);
  color: var(--muted);
  line-height: 1.6;
}

/* Utility classes
   -------------------------------------------------------------------------- */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: var(--sp-4); }
.mb-6 { margin-bottom: var(--sp-6); }
.mb-8 { margin-bottom: var(--sp-8); }
.mt-8 { margin-top: var(--sp-8); }

/* Mobile tuning — tighten spacing, prevent overflow, keep touch targets ≥44px
   -------------------------------------------------------------------------- */
@media (max-width: 880px) {
  .container { padding: 0 var(--sp-5); }
  .section  { padding: var(--sp-16) 0; }
  .section--sm { padding: var(--sp-12) 0; }
  .section__head { margin-bottom: var(--sp-10); }
  .page-banner { padding: var(--sp-12) 0 var(--sp-10); }
  .page-banner__title { font-size: clamp(1.75rem, 7vw, 2.5rem); }

  /* Keep the grid of cards single-column on narrow phones with breathing room */
  .card { padding: var(--sp-6); }

  /* Steps: make each card single-column and clearly separated */
  .steps { grid-template-columns: 1fr; gap: var(--sp-4); }
  .step  { padding: var(--sp-6); }

  /* Trust bar pills take full width on tiny screens */
  .trust-bar__inner { gap: var(--sp-2); }
  .pill { padding: 8px 14px; font-size: var(--fs-xs); }

  /* CTA block pads inward less on small screens */
  .cta-block { padding: var(--sp-12) var(--sp-5); border-radius: var(--r-lg); }

  /* Form buttons need finger-friendly height */
  .btn { padding: 14px 22px; }
}

@media (max-width: 560px) {
  /* Even tighter on small phones */
  h1 { font-size: clamp(1.75rem, 8vw, 2.25rem); }
  h2 { font-size: clamp(1.375rem, 6vw, 1.75rem); }
  .hero__title { font-size: clamp(2rem, 9vw, 2.75rem); }
  .hero__stat-val { font-size: var(--fs-xl); }
  .hero__stat-label { font-size: 0.75rem; }

  /* Hide more decorative gummies to keep hero calm on tiny screens */
  .hero__gummies .shape-md { display: none; }
  .hero__gummies { opacity: 0.55; }

  /* Footer stacks single column on smallest phones */
  .footer__grid { grid-template-columns: 1fr; gap: var(--sp-8); }
  .footer__brand-col { grid-column: 1; }

  /* FAQ: smaller summary font + tight padding */
  .faq-item summary { padding: var(--sp-4) var(--sp-5); font-size: var(--fs-sm); }
  .faq-item__body { padding: 0 var(--sp-5) var(--sp-4); }
}
