/** Shopify CDN: Minification failed

Line 309:13 Expected identifier but found whitespace
Line 309:24 Unexpected "0.2s"

**/
/* Steady Freddy — Homepage 2025 */

/* ── Base reset ─────────────────────────────────── */
.sf-hp * { box-sizing: border-box; }
.sf-hp img { max-width: 100%; display: block; }
.sf-hp button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
.sf-hp a { color: inherit; }

/* ── CSS Variables ──────────────────────────────── */
.sf-hp {
  --sf-navy:          #001029;
  --sf-white:         #ffffff;
  --sf-pink:          #fc004f;
  --sf-rose-01:       #f8f8f4;
  --sf-rose-02:       #f1edec;
  --sf-rose-03:       #f1e9ea;
  --sf-rose-04:       #dfcfd2;
  --sf-blue-01:       #eaf0f4;
  --sf-blue-02:       #d5e2e9;
  --sf-blue-03:       #c4d5e0;
  --sf-blue-04:       #7095ac;
  --sf-yellow-01:     #fff8e5;
  --sf-yellow-02:     #fef2d0;
  --sf-yellow-03:     #fcedba;
  --sf-yellow-04:     #fae7a5;
  --fg-1:             #001029;
  --fg-2:             #3a4656;
  --fg-3:             #6b7582;
  --bg-1:             #ffffff;
  --border:           #e6e1e2;
  --font-display:     "Paralucent", "Roboto", system-ui, sans-serif;
  --font-body:        "Paralucent Text", "Roboto", system-ui, sans-serif;
  --r-sm:  4px;
  --r-md:  8px;
  --r-lg:  16px;
  --r-xl:  24px;
  --r-pill: 999px;
  --shadow-1: 0 1px 2px rgba(0,16,41,0.06), 0 1px 3px rgba(0,16,41,0.04);
  --shadow-2: 0 4px 12px rgba(0,16,41,0.08), 0 2px 4px rgba(0,16,41,0.04);
  --shadow-3: 0 12px 32px rgba(0,16,41,0.12), 0 4px 8px rgba(0,16,41,0.06);
  --shadow-pink: 0 8px 24px rgba(252,0,79,0.25);
  --ease-out:  cubic-bezier(0.22,1,0.36,1);
  --dur-fast: 150ms;
  --dur-med:  250ms;
  overflow-x: clip;
}

/* ── Layout containers ──────────────────────────── */
.sf-container       { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.sf-container--wide { max-width: 1360px; margin: 0 auto; padding: 0 24px; }

/* ── Stars ──────────────────────────────────────── */
.sf-hp .stars { color: var(--sf-pink); letter-spacing: 1px; }

/* ── Buttons ────────────────────────────────────── */
.sf-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 16px 28px; border-radius: var(--r-pill);
  transition: transform var(--dur-fast) var(--ease-out), background var(--dur-fast), color var(--dur-fast), box-shadow var(--dur-fast);
  text-decoration: none; white-space: nowrap; cursor: pointer; border: 0;
}
.sf-btn:active { transform: translateY(1px); }
.sf-btn svg { width: 18px; height: 18px; }
.sf-btn--primary { background: var(--sf-pink); color: var(--sf-white); }
.sf-btn--primary:hover { background: #d9004a; box-shadow: var(--shadow-pink); }
.sf-btn--navy { background: var(--sf-navy); color: var(--sf-white); }
.sf-btn--navy:hover { background: #1b2439; }
.sf-btn--ghost { border: 1.5px solid var(--sf-navy); color: var(--sf-navy); background: transparent; }
.sf-btn--ghost:hover { background: var(--sf-navy); color: var(--sf-white); }
.sf-btn--lg { padding: 20px 40px; font-size: 15px; }
.sf-btn--block { width: 100%; }

/* ── Announcement bar ───────────────────────────── */
.sf-announce {
  background: var(--sf-navy); color: var(--sf-white);
  font-family: var(--font-display); font-weight: 500; font-size: 13px;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 10px 24px; text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 18px;
  flex-wrap: wrap;
  line-height: 1.25;
}
.sf-announce__pill {
  background: var(--sf-pink); color: var(--sf-white);
  padding: 3px 10px; border-radius: var(--r-pill); font-weight: 700; letter-spacing: 0.08em;
}
.sf-announce__sep { opacity: 0.35; }
.sf-announce__timer { font-variant-numeric: tabular-nums; font-weight: 700; color: var(--sf-pink); }

/* ── Header ─────────────────────────────────────── */
.sf-header {
  position: sticky; top: 0; z-index: 40;
  background: var(--sf-white); border-bottom: 1px solid var(--border);
  transition: box-shadow var(--dur-fast);
}
.sf-header.is-scrolled {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(0,16,41,0.06);
}
.sf-header__inner {
  display: flex; align-items: center; gap: 32px;
  padding: 16px 32px; max-width: 1360px; margin: 0 auto;
  min-width: 0;
}
.sf-logo {
  flex: 0 0 auto; font-family: var(--font-display); font-weight: 700;
  font-size: 22px; letter-spacing: -0.01em; text-transform: uppercase;
  line-height: 1; text-decoration: none; display: inline-flex; gap: 2px;
  align-items: center;
}
.sf-logo__image {
  display: block; height: auto; object-fit: contain;
}
.sf-logo__n { color: var(--sf-navy); }
.sf-logo__p { color: var(--sf-pink); }
.sf-logo__w { color: #fff; }
.sf-nav { display: flex; gap: 28px; flex: 1; align-items: center; }
.sf-nav a {
  /* Match dropdown button styling exactly */
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--fg-1);
  text-decoration: none;
  position: relative;
  transition: color 0.2s;
  /* Force same rendering as button */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-weight: 500 !important;
}
.sf-nav a:hover { color: var(--sf-pink); }

/* Dropdown navigation */
.sf-nav-dropdown { position: relative; }
.sf-nav-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  /* Explicit font matching */
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  /* Button resets */
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
  /* Layout matching */
  line-height: 1;
  vertical-align: baseline;
  color: var(--fg-1);
  transition: color 0.2s;
  position: relative;
  text-decoration: none;
  /* Force font rendering to match links */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  /* Prevent bold inheritance */
  font-weight: 500 !important;
}
.sf-nav-dropdown__trigger svg { flex-shrink: 0; }
.sf-nav-dropdown__arrow {
  transition: transform 0.2s;
}
.sf-nav-dropdown.is-open .sf-nav-dropdown__arrow {
  transform: rotate(180deg);
}
.sf-nav-dropdown__menu {
  position: absolute; top: calc(100% + 12px); left: 0;
  background: white; border: 1px solid var(--border);
  border-radius: 12px; box-shadow: 0 4px 24px rgba(0,16,41,0.12);
  min-width: 280px; padding: 8px; opacity: 0; visibility: hidden;
  transform: translateY(-8px); transition: all 0.2s;
  z-index: 50;
}
.sf-nav-dropdown.is-open .sf-nav-dropdown__menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.sf-nav-dropdown__item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; border-radius: 8px;
  text-decoration: none; transition: background 0.2s;
}
.sf-nav-dropdown__item:hover {
  background: var(--sf-rose-01);
}
.sf-nav-dropdown__icon {
  font-size: 24px; flex-shrink: 0;
}
.sf-nav-dropdown__title {
  font-family: var(--font-display); font-weight: 600;
  font-size: 14px; color: var(--sf-navy);
  text-transform: none; letter-spacing: 0;
}
.sf-nav-dropdown__desc {
  font-size: 12px; color: var(--fg-2); margin-top: 2px;
}
.sf-nav a .dot {
  position: absolute; top: -4px; right: -8px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--sf-pink);
}
.sf-header__actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.sf-header-cta { font-size: 11px; letter-spacing: 0.04em; padding: 12px 14px; line-height: 1.2; text-align: center; max-width: 150px; white-space: normal; }
@media (min-width: 1100px) { .sf-header-cta { font-size: 12px; max-width: 200px; padding: 14px 18px; } }
.sf-iconbtn {
  width: 40px; height: 40px; border-radius: var(--r-pill);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--fg-1); position: relative; text-decoration: none;
}
.sf-iconbtn:hover { background: var(--sf-rose-02); }
.sf-iconbtn svg { width: 18px; height: 18px; }
.sf-iconbtn__count {
  position: absolute; top: 4px; right: 4px;
  background: var(--sf-pink); color: white; font-size: 10px; font-weight: 700;
  width: 16px; height: 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-family: var(--font-display);
}
.sf-hamburger {
  display: none; width: 40px; height: 40px; border-radius: var(--r-pill);
  align-items: center; justify-content: center; color: var(--fg-1);
  flex-direction: column; gap: 5px; padding: 10px;
}
.sf-hamburger span { display: block; height: 2px; background: var(--fg-1); border-radius: 2px; width: 100%; transition: all var(--dur-fast); }
.sf-mobile-nav {
  display: none; flex-direction: column; gap: 0;
  background: var(--sf-white); border-top: 1px solid var(--border);
  padding: 16px 0;
}
.sf-mobile-nav.is-open { display: flex; }
.sf-mobile-nav a {
  /* Match mobile dropdown button styling exactly */
  display: flex;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 500 !important;
  font-size: 15px;
  line-height: 1;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--fg-1);
  text-decoration: none;
  padding: 14px 24px;
  border-bottom: 1px solid var(--border);
  /* Force same rendering as button */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
.sf-mobile-nav a:last-child { border-bottom: 0; }
.sf-mobile-nav a:hover { color: var(--sf-pink); background: var(--sf-rose-01); }

/* Mobile dropdown */
.sf-mobile-dropdown { border-bottom: 1px solid var(--border); }
.sf-mobile-dropdown:last-child { border-bottom: 0; }
.sf-mobile-dropdown__trigger {
  width: 100%; 
  display: flex; 
  align-items: center; 
  justify-content: space-between;
  /* Font matching - exact same as links */
  font-family: var(--font-display); 
  font-weight: 500 !important;
  font-size: 15px;
  font-style: normal;
  text-transform: uppercase; 
  letter-spacing: 0.04em;
  line-height: 1;
  /* Button resets */
  color: var(--fg-1); 
  background: none; 
  border: none;
  padding: 14px 24px; 
  margin: 0;
  cursor: pointer; 
  text-align: left;
  text-decoration: none;
  /* Force consistent rendering */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
.sf-mobile-dropdown__trigger:hover { color: var(--sf-pink); background: var(--sf-rose-01); }
.sf-mobile-dropdown__trigger svg {
  transition: transform 0.2s;
}
  transition: transform 0.2s;
}
.sf-mobile-dropdown.is-open .sf-mobile-dropdown__trigger svg {
  transform: rotate(180deg);
}
.sf-mobile-dropdown__menu {
  max-height: 0; overflow: hidden; transition: max-height 0.3s;
  background: var(--sf-rose-01);
}
.sf-mobile-dropdown.is-open .sf-mobile-dropdown__menu {
  max-height: 500px;
}
.sf-mobile-dropdown__menu a {
  display: block; padding: 12px 24px 12px 40px;
  font-size: 14px; border-bottom: 0;
  text-transform: none; letter-spacing: 0;
}

/* ── Pulse animation ────────────────────────────── */
@keyframes sf-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(45,182,122,0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(45,182,122,0); }
  100% { box-shadow: 0 0 0 0 rgba(45,182,122,0); }
}

/* ── Hero ───────────────────────────────────────── */
.sf-hero { background: var(--sf-rose-01); position: relative; overflow: hidden; min-height: 0; padding-bottom: clamp(2rem, 5vw, 3.5rem); }
.sf-hero::before {
  content: ""; position: absolute; width: 620px; height: 620px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff0, var(--sf-rose-03) 70%, var(--sf-rose-04) 100%);
  right: -120px; top: -160px; opacity: 0.55; z-index: 0;
}
.sf-hero__inner {
  display: grid;
  grid-template-columns: 1fr minmax(0, 1.35fr);
  grid-template-rows: auto auto;
  gap: clamp(1rem, 2.5vw, 2rem);
  align-items: start;
  align-content: start;
  padding: 40px 24px 0; min-height: 0; max-width: min(100%, 1540px); margin: 0 auto; position: relative; z-index: 1; overflow: visible;
}
.sf-hero__copy--lead {
  grid-column: 1;
  grid-row: 1;
  max-width: 580px;
}
.sf-hero__copy--tail {
  grid-column: 1;
  grid-row: 2;
  max-width: 580px;
}
.sf-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--sf-white); border: 1px solid var(--border);
  padding: 7px 14px; border-radius: var(--r-pill);
  font-family: var(--font-display); font-weight: 700; font-size: 12px;
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 22px;
  box-shadow: var(--shadow-1);
}
.sf-hero__eyebrow .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: #2db67a;
  box-shadow: 0 0 0 0 rgba(45,182,122,0.6); animation: sf-pulse 2s infinite;
}
.sf-hero__rating {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 500; font-size: 13px;
  letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 20px;
}
.sf-hero__rating .stars { color: var(--sf-pink); letter-spacing: 1px; font-size: 15px; }
.sf-hero__headline {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(3rem, 6.4vw, 5.4rem); line-height: 0.9;
  letter-spacing: -0.02em; text-transform: uppercase; margin: 0 0 22px;
}
.sf-hero__headline em { font-style: normal; color: var(--sf-pink); }
.sf-hero__sub { font-size: 18px; line-height: 1.45; color: var(--fg-2); max-width: 480px; margin: 0 0 28px; }
.sf-hero__ctas { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.sf-hero__priceline {
  margin-top: 18px; font-family: var(--font-display); font-weight: 500;
  font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--fg-2);
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.sf-hero__priceline b { color: var(--sf-navy); font-weight: 700; }
.sf-hero__priceline s { color: var(--fg-3); }
.sf-hero__bonus {
  margin: 12px 0 0;
  max-width: 520px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--sf-navy);
  font-weight: 500;
}
.sf-hero__bonus a {
  color: var(--sf-pink);
  font-weight: 700;
  text-underline-offset: 3px;
}
.sf-hero__trust {
  display: flex; gap: 22px; margin-top: 28px; flex-wrap: wrap;
  font-family: var(--font-display); font-weight: 500; font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.05em; color: var(--fg-2);
}
.sf-hero__trust span { display: inline-flex; align-items: center; gap: 6px; }
.sf-hero__trust svg { width: 14px; height: 14px; color: var(--sf-pink); }
.sf-hero__visual {
  grid-column: 2;
  grid-row: 1 / -1;
  align-self: center;
  position: relative; min-height: 0; width: 100%;
  aspect-ratio: 1 / 0.95;
  max-height: min(58vh, 520px);
  display: flex; align-items: center; justify-content: center;
  padding: 0; isolation: isolate; overflow: visible;
}
.sf-hero__product-picture { display: contents; }
@media (min-width: 900px) {
  .sf-hero__visual {
    aspect-ratio: 1 / 1;
    max-height: min(72vh, 600px);
  }
}
.sf-hero__disc {
  position: absolute; inset: 0;
  top: 5%; right: 2%; bottom: 5%; left: 2%;
  max-width: min(96vw, 1320px);
  margin: 0 auto;
  background: radial-gradient(circle at 35% 30%, #fff 0%, var(--sf-rose-03) 55%, var(--sf-rose-04) 100%);
  border-radius: 50%;
  aspect-ratio: 1;
}
.sf-hero__clock {
  position: absolute;
  inset: 0;
  top: 5%;
  right: 2%;
  bottom: 5%;
  left: 2%;
  max-width: min(96vw, 1320px);
  margin: 0 auto;
  border-radius: 50%;
  aspect-ratio: 1;
  z-index: 1;
  pointer-events: none;
}
.sf-hero__clock::before {
  content: "";
  position: absolute;
  inset: 5.5%;
  border-radius: 50%;
  border: 1px solid rgba(0, 16, 41, 0.14);
  background: repeating-conic-gradient(from -90deg, rgba(0, 16, 41, 0.28) 0 1deg, transparent 1deg 30deg);
  mask: radial-gradient(circle, transparent 67%, #000 68%);
  -webkit-mask: radial-gradient(circle, transparent 67%, #000 68%);
}
.sf-hero__clock-label {
  --clock-x: 50%;
  --clock-y: 0%;
  position: absolute;
  left: var(--clock-x);
  top: var(--clock-y);
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(0, 16, 41, 0.1);
  box-shadow: 0 6px 18px rgba(0, 16, 41, 0.08);
  color: var(--fg-2);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
  opacity: 0.42;
  transition: opacity var(--dur-fast), transform var(--dur-fast), background var(--dur-fast), color var(--dur-fast);
}
.sf-hero__clock-label.is-active {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--sf-pink);
  color: var(--sf-white);
  opacity: 1;
}
.sf-hero__clock-label:nth-child(1) { --clock-x: 50%; --clock-y: 7%; }
.sf-hero__clock-label:nth-child(2) { --clock-x: 91%; --clock-y: 36%; }
.sf-hero__clock-label:nth-child(3) { --clock-x: 75%; --clock-y: 86%; }
.sf-hero__clock-label:nth-child(4) { --clock-x: 25%; --clock-y: 86%; }
.sf-hero__clock-label:nth-child(5) { --clock-x: 9%; --clock-y: 36%; }
.sf-hero__product {
  position: relative; z-index: 2;
  height: auto;
  width: 118%;
  max-width: none;
  min-width: 260px;
  object-fit: contain;
  object-position: 50% 22%;
  margin: 0 auto;
  margin-left: -6%;
  display: block;
  filter: drop-shadow(0 36px 64px rgba(0, 16, 41, 0.26));
  transform: none;
  transform-origin: 50% 40%;
}
@media (min-width: 900px) {
  .sf-hero__product {
    width: 138%;
    margin-left: -12%;
    object-position: 50% 18%;
  }
}
@media (min-width: 1100px) {
  .sf-hero__product {
    width: 152%;
    margin-left: -15%;
    object-position: 50% 16%;
  }
}
.sf-hero__burst {
  position: absolute; background: var(--sf-pink); color: var(--sf-white);
  width: 148px; height: 148px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700;
  text-transform: uppercase; line-height: 0.95; text-align: center;
  top: 2%; right: -2%; z-index: 3;
  box-shadow: var(--shadow-pink);
  transform: none;
}
.sf-hero__burst .big { font-size: 40px; letter-spacing: -0.02em; }
.sf-hero__burst .sm  { font-size: 11px; letter-spacing: 0.06em; margin-top: 4px; opacity: 0.95; }
.sf-hero__chip {
  position: absolute; z-index: 3; background: var(--sf-white);
  border-radius: var(--r-lg); padding: 12px 16px; box-shadow: var(--shadow-2);
  display: flex; gap: 10px; align-items: center;
}
.sf-hero__chip .ic {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--sf-rose-02); color: var(--sf-navy);
  display: flex; align-items: center; justify-content: center;
}
.sf-hero__chip .ic svg { width: 18px; height: 18px; }
.sf-hero__chip .t { font-family: var(--font-display); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.02em; line-height: 1.1; }
.sf-hero__chip .s { font-size: 11px; color: var(--fg-2); margin-top: 3px; line-height: 1.2; }
.sf-hero__chip--a { top: 20%; left: -4%; }
.sf-hero__chip--b { bottom: 16%; left: 2%; }
.sf-hero__chip--c { bottom: 8%; right: -2%; }

/* ── Marquee ────────────────────────────────────── */
.sf-marquee {
  background: var(--sf-pink); color: var(--sf-white); overflow: hidden; padding: 18px 0;
  border-top: 2px solid var(--sf-navy); border-bottom: 2px solid var(--sf-navy);
}
.sf-marquee__track {
  display: flex; gap: 48px; animation: sf-marquee 40s linear infinite;
  white-space: nowrap; font-family: var(--font-display); font-weight: 700;
  font-size: 22px; letter-spacing: 0.02em; text-transform: uppercase;
}
.sf-marquee__track span { display: inline-flex; align-items: center; gap: 48px; padding-right: 48px; }
.sf-marquee__track span::after { content: "✦"; display: inline-block; font-size: 14px; transform: translateY(-2px); }
@keyframes sf-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Clinical study (web-mockup sf-study) ───────── */
.sf-hp, .sf-study { --sf-cream: #F5EFE6; }
.sf-study {
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, #FAF7F2 0%, var(--sf-cream) 100%);
  padding: clamp(64px, 8vw, 110px) 0;
  position: relative;
}
.sf-study::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(230, 0, 85, 0.04) 0, transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(0, 16, 41, 0.05) 0, transparent 45%);
  pointer-events: none;
}
.sf-study__inner { display: grid; grid-template-columns: 1.25fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: start; position: relative; }
@media (max-width: 960px) { .sf-study__inner { grid-template-columns: 1fr; } }
.sf-study__left { max-width: 720px; }
.sf-study__badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.14em; color: #E60055;
  background: #fff; border: 1px solid rgba(230, 0, 85, 0.18);
  padding: 9px 14px; border-radius: 999px; margin-bottom: 22px;
}
.sf-study__headline {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(36px, 5.2vw, 64px); line-height: 1.02; letter-spacing: -0.02em;
  color: var(--fg-1); margin: 0 0 18px; text-wrap: balance;
}
.sf-study__headline em { font-style: normal; color: #E60055; }
.sf-study__lede { font-size: 18px; line-height: 1.55; color: var(--fg-2); margin: 0 0 32px; max-width: 62ch; }
.sf-study__lede .serif { font-family: Georgia, "Times New Roman", serif; font-style: italic; }
.sf-study__statbar {
  background: #fff; border: 1px solid var(--border);
  border-radius: 18px; padding: 22px 24px; margin-bottom: 24px;
  box-shadow: 0 2px 0 rgba(0, 16, 41, 0.04), 0 12px 40px -12px rgba(0, 16, 41, 0.08);
}
.sf-study__stathead { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 14px; flex-wrap: wrap; }
.sf-study__statlabel { font-family: var(--font-display); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--fg-2); }
.sf-study__statvalue {
  font-family: var(--font-display); font-weight: 900; font-size: clamp(34px, 4vw, 52px);
  line-height: 1; color: #E60055; letter-spacing: -0.02em; font-variant-numeric: tabular-nums;
}
.sf-study__track { position: relative; height: 14px; background: #F1ECE3; border-radius: 999px; overflow: visible; margin-bottom: 10px; }
.sf-study__fill {
  position: absolute; top: 0; left: 0; bottom: 0; width: 0%;
  background: linear-gradient(90deg, #E60055 0%, #FF3A6E 100%);
  border-radius: 999px; box-shadow: 0 2px 12px rgba(230, 0, 85, 0.4);
}
.sf-study__baseline {
  position: absolute; left: 18%; top: -4px; bottom: -4px;
  border-left: 2px dashed rgba(0, 16, 41, 0.25);
}
.sf-study__baseline span {
  position: absolute; top: calc(100% + 6px); left: -28px;
  font-family: var(--font-display); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--fg-2); white-space: nowrap;
}
.sf-study__caption { margin-top: 22px; font-size: 13.5px; color: var(--fg-2); line-height: 1.5; }
.sf-study__caption sup { color: #E60055; font-weight: 700; }
.sf-study__citebox {
  display: grid; grid-template-columns: auto 1fr; gap: 14px; padding: 18px 20px;
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
}
.sf-study__citenum {
  width: 28px; height: 28px; border-radius: 50%; background: #E60055; color: #fff;
  font-family: var(--font-display); font-weight: 900; font-size: 14px;
  display: grid; place-items: center; flex: 0 0 auto;
}
.sf-study__citeref { font-size: 13.5px; line-height: 1.5; color: var(--fg-2); margin-bottom: 8px; }
.sf-study__citeref .serif { font-family: Georgia, "Times New Roman", serif; }
.sf-study__citeref em { font-family: Georgia, "Times New Roman", serif; font-style: italic; color: var(--fg-1); }
.sf-study__citelink {
  display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-display);
  font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em;
  color: #E60055; text-decoration: none; transition: gap 0.2s;
}
.sf-study__citelink:hover { gap: 10px; }
.sf-study__right { position: sticky; top: 100px; }
@media (max-width: 960px) { .sf-study__right { position: static; } }
.sf-study__card {
  background: #001029; color: #fff; border-radius: 22px; padding: 32px;
  box-shadow: 0 30px 80px -20px rgba(0, 16, 41, 0.35);
  position: relative; overflow: hidden;
}
.sf-study__card::before {
  content: ""; position: absolute; top: -40px; right: -40px; width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(230, 0, 85, 0.25) 0%, transparent 70%); border-radius: 50%;
}
.sf-study__cardeyebrow {
  font-family: var(--font-display); font-weight: 700; font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.16em; color: rgba(255, 255, 255, 0.55);
  margin-bottom: 20px; position: relative;
}
.sf-study__list { list-style: none; margin: 0 0 28px; padding: 0; position: relative; }
.sf-study__list li { display: grid; grid-template-columns: auto 1fr; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.sf-study__list li:last-child { border-bottom: none; }
.sf-study__tick {
  width: 26px; height: 26px; border-radius: 50%; background: #E60055; color: #fff;
  font-weight: 900; font-size: 14px; display: grid; place-items: center; flex: 0 0 auto;
}
.sf-study__list strong { display: block; font-family: var(--font-display); font-weight: 800; font-size: 15px; letter-spacing: 0.01em; margin-bottom: 4px; color: #fff; }
.sf-study__list span { display: block; font-size: 13.5px; line-height: 1.5; color: rgba(255, 255, 255, 0.72); }
.sf-study__list em { font-family: Georgia, "Times New Roman", serif; font-style: italic; color: #fff; }
.sf-study__cardfoot { display: grid; grid-template-columns: auto 1fr; gap: 10px 18px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.12); position: relative; }
.sf-study__cardfoot-k { font-family: var(--font-display); font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255, 255, 255, 0.5); align-self: center; }
.sf-study__cardfoot-v { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: #fff; }
.sf-study__cardfoot-v.serif { font-family: Georgia, "Times New Roman", serif; font-style: italic; font-weight: 400; font-size: 15px; }

/* ── Problem ────────────────────────────────────── */
.sf-problem { background: var(--sf-navy); color: var(--sf-white); padding: 120px 0 112px; position: relative; overflow: hidden; }
.sf-problem__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 80px; align-items: center; }
.sf-problem__eyebrow { font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sf-pink); margin-bottom: 20px; }
.sf-problem h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.6rem,4.8vw,4rem); line-height: 0.95; letter-spacing: -0.015em; text-transform: uppercase; margin: 0 0 20px; }
.sf-problem h2 em { color: var(--sf-pink); font-style: normal; }
.sf-problem p { font-size: 18px; line-height: 1.5; color: rgba(255,255,255,0.78); max-width: 520px; margin: 0 0 14px; }
.sf-problem__bignum { text-align: center; position: relative; }
.sf-problem__frac {
  display: flex; align-items: baseline; justify-content: center; gap: clamp(8px, 2vw, 20px);
  font-family: var(--font-display); font-weight: 700;
  line-height: 0.85; letter-spacing: -0.04em; color: transparent; -webkit-text-stroke: 2px var(--sf-pink);
}
.sf-problem__frac .sf-problem__piece {
  display: inline-block;
  font-size: clamp(5.5rem, 16vw, 12rem);
  opacity: 0;
  transform: translateY(36px) scale(0.88);
}
.sf-problem__frac .sf-problem__in {
  font-size: clamp(1.1rem, 3.2vw, 1.75rem);
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--sf-pink); -webkit-text-stroke: 0; font-weight: 700;
  opacity: 0;
  transform: translateY(20px);
}
.sf-problem__unit {
  margin-top: clamp(4px, 1.2vw, 10px);
  font-family: var(--font-display); font-weight: 700; font-size: clamp(1.1rem, 2.6vw, 1.5rem);
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--sf-pink);
  opacity: 0;
  transform: translateY(12px);
}
.sf-problem__bignum.is-animated .sf-problem__piece { animation: sf-problem-piece-in 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.sf-problem__bignum.is-animated .sf-problem__piece:nth-of-type(1) { animation-delay: 0.05s; }
.sf-problem__bignum.is-animated .sf-problem__in { animation: sf-problem-in-word 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.25s forwards; }
.sf-problem__bignum.is-animated .sf-problem__piece:nth-of-type(3) { animation-delay: 0.4s; }
.sf-problem__bignum.is-animated .sf-problem__unit { animation: sf-problem-in-word 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.65s forwards; }
@media (prefers-reduced-motion: reduce) {
  .sf-problem__frac .sf-problem__piece,
  .sf-problem__frac .sf-problem__in,
  .sf-problem__unit { opacity: 1; transform: none; animation: none !important; }
}
@keyframes sf-problem-piece-in {
  0% { opacity: 0; transform: translateY(36px) scale(0.88); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes sf-problem-in-word {
  0% { opacity: 0; transform: translateY(16px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ── Compare ────────────────────────────────────── */
.sf-compare { background: var(--sf-rose-01); padding: 112px 0; }
.sf-compare__head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.sf-compare__eyebrow { font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sf-pink); margin-bottom: 14px; }
.sf-compare__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.2rem,4vw,3.4rem); text-transform: uppercase; line-height: 1; letter-spacing: -0.01em; margin: 0 0 16px; }
.sf-compare__title em { color: var(--sf-pink); font-style: normal; }
.sf-compare__sub { font-size: 17px; color: var(--fg-2); line-height: 1.5; }
.sf-compare__wrap { background: var(--sf-white); border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-2); max-width: 1040px; margin: 0 auto; border: 1px solid var(--border); }
.sf-compare__table { width: 100%; border-collapse: collapse; font-size: 15px; }
.sf-compare__table th, .sf-compare__table td { padding: 20px 18px; text-align: center; border-bottom: 1px solid var(--border); vertical-align: middle; }
.sf-compare__table th:first-child, .sf-compare__table td:first-child { text-align: left; font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 13px; letter-spacing: 0.04em; color: var(--fg-1); padding-left: 28px; width: 30%; }
.sf-compare__table thead th {
  background: var(--sf-rose-01);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fg-2);
  padding: 26px 8px 16px;
  line-height: 1.22;
}
.sf-compare__table thead th.is-us { background: var(--sf-navy); color: var(--sf-white); position: relative; }
.sf-compare__table thead th.is-us::before {
  content: "Your pick";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sf-pink);
  color: white;
  padding: 2px 8px;
  border-radius: var(--r-pill);
  font-size: 8px;
  letter-spacing: 0.08em;
  box-shadow: var(--shadow-pink);
  white-space: nowrap;
}
.sf-compare__table thead th.is-us .brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-top: 6px;
  max-width: 100%;
  white-space: normal;
  flex-wrap: wrap;
  text-align: center;
  line-height: 1.15;
}
.sf-compare__table thead th.is-us .brand em { color: var(--sf-pink); font-style: normal; }
.sf-compare__cell-us { background: rgba(252,0,79,0.04); }
.sf-compare__table tr:last-child td { border-bottom: 0; }
.sf-compare__yes, .sf-compare__no, .sf-compare__mid { display: inline-flex; width: 28px; height: 28px; border-radius: 50%; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; }
.sf-compare__yes { background: var(--sf-pink); color: var(--sf-white); }
.sf-compare__no  { background: var(--sf-rose-03); color: var(--fg-3); }
.sf-compare__mid { background: var(--sf-yellow-03); color: var(--sf-navy); }
.sf-compare__foot { text-align: center; font-size: 12px; color: var(--fg-3); margin-top: 24px; letter-spacing: 0.04em; }

/* ── Before / After ─────────────────────────────── */
.sf-ba { background: var(--sf-white); padding: 112px 0; }
.sf-ba__head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.sf-ba__eyebrow { font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sf-pink); margin-bottom: 14px; }
.sf-ba__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.2rem,4vw,3.4rem); text-transform: uppercase; line-height: 1; letter-spacing: -0.01em; margin: 0 0 14px; }
.sf-ba__grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: stretch; max-width: 1040px; margin: 0 auto; }
.sf-ba__col { border-radius: var(--r-xl); padding: 40px 32px; display: flex; flex-direction: column; min-height: 380px; }
.sf-ba__col--before { background: var(--sf-rose-02); color: var(--fg-1); }
.sf-ba__col--after  { background: var(--sf-navy); color: var(--sf-white); }
.sf-ba__tag { font-family: var(--font-display); font-weight: 700; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; padding: 6px 12px; border-radius: var(--r-pill); align-self: flex-start; margin-bottom: 20px; }
.sf-ba__col--before .sf-ba__tag { background: rgba(0,16,41,0.1); color: var(--fg-2); }
.sf-ba__col--after  .sf-ba__tag { background: var(--sf-pink); color: var(--sf-white); }
.sf-ba__duration { font-family: var(--font-display); font-weight: 700; font-size: clamp(3.2rem,5vw,4.4rem); line-height: 0.9; letter-spacing: -0.02em; text-transform: uppercase; margin-bottom: 8px; }
.sf-ba__col--after .sf-ba__duration em { color: var(--sf-pink); font-style: normal; }
.sf-ba__deslab { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.65; margin-bottom: 28px; }
.sf-ba__bars { display: grid; gap: 14px; margin-top: auto; }
.sf-ba__bar { display: flex; align-items: center; gap: 10px; font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; font-family: var(--font-display); font-weight: 500; }
.sf-ba__bar .label { flex: 0 0 100px; opacity: 0.7; }
.sf-ba__bar .track { flex: 1; min-width: 0; height: 10px; background: rgba(0,0,0,0.1); border-radius: var(--r-pill); overflow: hidden; }
.sf-ba__col--after .sf-ba__bar .track { background: rgba(255,255,255,0.12); }
.sf-ba__bar .fill { display: block; height: 100%; border-radius: var(--r-pill); min-width: 2px; }
.sf-ba__val {
  flex: 0 0 44px; text-align: right; font-family: var(--font-display); font-weight: 700; font-size: 14px;
  letter-spacing: 0.02em; color: var(--fg-1); font-variant-numeric: tabular-nums;
}
.sf-ba__col--after .sf-ba__val { color: rgba(255,255,255,0.95); }
.sf-ba__val-num { min-width: 1.2em; display: inline-block; }
.sf-ba__col--before .sf-ba__bar .fill { background: var(--fg-3); }
.sf-ba__col--after  .sf-ba__bar .fill { background: var(--sf-pink); }
.sf-ba__arrow { display: flex; align-items: center; justify-content: center; min-width: 64px; }
.sf-ba__arrow svg { width: 40px; height: 40px; color: var(--sf-pink); }

/* ── How It Works ───────────────────────────────── */
.sf-how { background: var(--sf-rose-01); padding: 72px 0 96px; }
.sf-how__head { text-align: center; max-width: 720px; margin: 0 auto 72px; }
.sf-how__eyebrow { font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sf-pink); margin-bottom: 14px; }
.sf-how__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.4rem,4.4vw,3.6rem); line-height: 0.95; text-transform: uppercase; letter-spacing: -0.01em; margin: 0 0 16px; }
.sf-how__sub { font-size: 17px; color: var(--fg-2); line-height: 1.5; }
.sf-how__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; position: relative; }
.sf-how__grid::before { content: ""; position: absolute; top: 70px; left: 10%; right: 10%; height: 2px; background: repeating-linear-gradient(to right, var(--sf-pink) 0 6px, transparent 6px 12px); z-index: 0; opacity: 0.3; }
.sf-how__card { background: var(--sf-white); border-radius: var(--r-xl); padding: 36px 28px 32px; position: relative; border: 1px solid var(--border); z-index: 1; transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med); }
.sf-how__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.sf-how__num { width: 56px; height: 56px; border-radius: 50%; background: var(--sf-pink); color: var(--sf-white); font-family: var(--font-display); font-weight: 700; font-size: 22px; letter-spacing: -0.02em; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; box-shadow: var(--shadow-pink); }
.sf-how__time { font-family: var(--font-display); font-weight: 700; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sf-pink); display: inline-block; margin-bottom: 10px; }
.sf-how__card h3 { font-family: var(--font-display); font-weight: 700; font-size: 22px; text-transform: uppercase; margin: 0 0 10px; letter-spacing: -0.01em; }
.sf-how__card p { font-size: 15px; color: var(--fg-2); line-height: 1.5; margin: 0; }

/* ── Mega stats ─────────────────────────────────── */
.sf-mega { background: var(--sf-navy); color: var(--sf-white); padding: 88px 0 72px; text-align: center; }
.sf-mega__eyebrow { font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sf-pink); margin-bottom: 16px; }
.sf-mega__head { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.4rem,4.6vw,3.8rem); line-height: 0.98; text-transform: uppercase; letter-spacing: -0.015em; max-width: 920px; margin: 0 auto 12px; }
.sf-mega__head em { color: var(--sf-pink); font-style: normal; }
.sf-mega__sub { font-size: 17px; color: rgba(255,255,255,0.72); max-width: 640px; margin: 0 auto 64px; line-height: 1.5; }
.sf-mega__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1100px;
  margin: 0 auto;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.sf-mega__stat { padding: 44px clamp(14px, 2vw, 24px) 40px; border-right: 1px solid rgba(255,255,255,0.12); min-width: 0; }
.sf-mega__stat:last-child { border-right: 0; }
.sf-mega__stat-num { font-family: var(--font-display); font-weight: 700; font-size: clamp(3.4rem,5vw,4.6rem); line-height: 1; color: var(--sf-pink); letter-spacing: -0.03em; margin-bottom: 12px; }
.sf-mega__stat-text { font-size: 14px; color: rgba(255,255,255,0.82); line-height: 1.4; max-width: 220px; margin: 0 auto; font-family: var(--font-display); font-weight: 500; letter-spacing: 0.02em; text-wrap: balance; }
.sf-mega__stat-src { font-size: 10px; color: rgba(255,255,255,0.38); margin-top: 10px; text-transform: uppercase; letter-spacing: 0.1em; }

/* ── Product / Buy Box ──────────────────────────── */
.sf-product { background: var(--sf-white); padding: 72px 0 96px; }
.sf-product__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: flex-start; }
.sf-product__visual { background: var(--sf-rose-01); border-radius: var(--r-xl); aspect-ratio: 4/5; display: flex; align-items: center; justify-content: center; position: sticky; top: 96px; overflow: hidden; isolation: isolate; }
.sf-product__visual img.sf-product__hero-img {
  width: auto;
  max-width: min(92%, 520px);
  max-height: 92%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 28px 36px rgba(0,16,41,0.2));
}
/* FrontRow MD sticker: pin top-left + stay under thumbnail carousel */
.sf-product__visual #frontrow-sticker {
  top: 16px;
  left: 16px;
  right: auto;
  bottom: auto;
  /* z-index: 2; */
  /* max-width: min(200px, 46%); */
}
.sf-product__thumbs { position: absolute; left: 24px; bottom: 24px; display: flex; gap: 8px; z-index: 15; }
.sf-product__thumb { width: 60px; height: 60px; border-radius: var(--r-md); background: var(--sf-white); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; padding: 6px; transition: border-color var(--dur-fast); cursor: pointer; }
.sf-product__thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: calc(var(--r-md) - 3px); }
.sf-product__thumb.is-active { border-color: var(--sf-pink); border-width: 2px; }
.sf-product__badge { position: absolute; top: 20px; right: 20px; z-index: 12; background: var(--sf-pink); color: white; font-family: var(--font-display); font-weight: 700; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 12px; border-radius: var(--r-pill); box-shadow: var(--shadow-pink); }
.sf-product__rating { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 500; font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 12px; }
.sf-product__rating .stars { color: var(--sf-pink); font-size: 15px; letter-spacing: 1px; }
.sf-product__rating a { color: var(--fg-2); text-underline-offset: 3px; }
.sf-product h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem,3.6vw,2.8rem); line-height: 0.95; text-transform: uppercase; margin: 0 0 14px; letter-spacing: -0.015em; }
.sf-product__tag { font-size: 16px; color: var(--fg-2); margin-bottom: 24px; line-height: 1.5; }
.sf-product__bullets { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 10px; }
.sf-product__bullets li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; line-height: 1.4; }
.sf-product__bullets svg { flex: 0 0 auto; width: 18px; height: 18px; color: var(--sf-pink); margin-top: 2px; }
.sf-product__bonus {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin: 0 0 22px;
  padding: 14px 16px;
  border-radius: var(--r-md);
  border: 1px solid rgba(237, 23, 75, 0.2);
  background: linear-gradient(135deg, rgba(237,23,75,0.06), rgba(45,45,94,0.04));
}
.sf-product__bonus-ic {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  background: rgba(237,23,75,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sf-pink);
}
.sf-product__bonus-ic svg { width: 22px; height: 22px; }
.sf-product__bonus-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.sf-product__bonus-copy strong {
  font-family: var(--font-display);
  font-size: 15px;
  line-height: 1.25;
}
.sf-product__bonus-copy strong a {
  color: var(--sf-navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.sf-product__bonus-copy strong a:hover { color: var(--sf-pink); }
.sf-product__bonus-meta {
  font-size: 13px;
  color: var(--fg-2);
  display: block;
}
.sf-product__free-gift {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(234, 240, 244, 0.65), rgba(255, 255, 255, 0.95));
}
.sf-product__free-gift-img {
  flex: 0 0 auto;
  width: 72px;
  height: 72px;
  border-radius: var(--r-md);
  background: var(--sf-white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.sf-product__free-gift-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.sf-product__free-gift-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.sf-product__free-gift-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.2;
  color: var(--sf-navy);
}
.sf-product__free-gift-meta {
  font-size: 12px;
  color: var(--fg-2);
  line-height: 1.35;
}
.sf-buy { border: 1px solid var(--border); border-radius: var(--r-lg); background: var(--sf-white); overflow: hidden; margin-bottom: 20px; }
.sf-buy__row { display: flex; align-items: center; gap: 18px; padding: 20px 22px; cursor: pointer; border-bottom: 1px solid var(--border); position: relative; transition: background var(--dur-fast); }
.sf-buy__row:last-child { border-bottom: 0; }
.sf-buy__row:hover { background: var(--sf-rose-01); }
.sf-buy__row.is-active { background: var(--sf-rose-01); box-shadow: inset 3px 0 0 var(--sf-pink); }
.sf-buy__row.is-active:first-child {
  background: linear-gradient(90deg, rgba(252,0,79,0.1), var(--sf-rose-01));
}
.sf-buy__radio { width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--border); flex: 0 0 auto; display: flex; align-items: center; justify-content: center; transition: border-color var(--dur-fast); }
.sf-buy__row.is-active .sf-buy__radio { border-color: var(--sf-pink); }
.sf-buy__row.is-active .sf-buy__radio::after { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--sf-pink); }
.sf-buy__body { flex: 1; }
.sf-buy__title { font-family: var(--font-display); font-weight: 700; font-size: 15px; text-transform: uppercase; letter-spacing: 0.03em; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.sf-buy__meta { font-size: 13px; color: var(--fg-2); margin-top: 4px; line-height: 1.4; }
.sf-buy__meta.sf-buy__meta--stack { display: flex; flex-direction: column; gap: 6px; align-items: flex-start; }
.sf-buy__meta.sf-buy__meta--stack .sf-buy__perks { font-size: 12px; line-height: 1.45; color: var(--fg-2); opacity: 0.95; }
.sf-buy__pricing { text-align: right; flex: 0 0 auto; }
.sf-buy__price { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--sf-navy); letter-spacing: -0.01em; }
.sf-buy__strike { color: var(--fg-3); text-decoration: line-through; font-size: 14px; margin-left: 6px; font-weight: 500; }
.sf-buy__unit { font-size: 11px; color: var(--fg-3); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; font-weight: 500; font-family: var(--font-display); }
.sf-buy__tag { background: var(--sf-pink); color: var(--sf-white); font-family: var(--font-display); font-weight: 700; font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 8px; border-radius: var(--r-pill); }
.sf-buy__savings { display: inline-block; background: var(--sf-yellow-03); color: var(--sf-navy); font-family: var(--font-display); font-weight: 700; font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; padding: 2px 8px; border-radius: var(--r-pill); }
.sf-product__urgency { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 500; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-2); margin: 14px 0 0; }
.sf-product__urgency .live { width: 8px; height: 8px; border-radius: 50%; background: #2db67a; animation: sf-pulse 2s infinite; }
.sf-product__benefits { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin: 20px 0 0; padding: 20px 0 0; border-top: 1px solid var(--border); }
.sf-product__benefits .b { text-align: center; font-family: var(--font-display); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--fg-2); font-weight: 500; }
.sf-product__benefits .b svg { width: 22px; height: 22px; color: var(--sf-navy); margin: 0 auto 6px; display: block; }
.sf-atc-btn { width: 100%; padding: 20px 40px; font-size: 15px; }
/* Main PDP ATC: red fill + bold white label (.sf-hp button uses font:inherit and strips .sf-btn weight) */
.sf-hp .sf-product button.sf-atc-btn.sf-btn--primary,
.sf-product .sf-atc-btn.sf-btn--primary {
  background: #ED174B !important;
  color: #fff !important;
  border: 0;
  box-shadow: 0 8px 24px rgba(237, 23, 75, 0.28);
  font-family: var(--font-display), system-ui, sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  text-shadow: 0 1px 0 rgba(0, 16, 41, 0.18);
}
.sf-hp .sf-product button.sf-atc-btn.sf-btn--primary:hover,
.sf-product .sf-atc-btn.sf-btn--primary:hover {
  background: #c41242 !important;
  color: #fff !important;
  box-shadow: 0 10px 28px rgba(237, 23, 75, 0.35);
}
.sf-hp .sf-product button.sf-atc-btn.sf-btn--primary svg,
.sf-product .sf-atc-btn.sf-btn--primary svg {
  stroke: #fff;
}
.sf-atc-btn.is-loading { opacity: 0.7; pointer-events: none; }
.sf-product__frontrow-ai {
  margin-top: 20px;
  position: relative;
  z-index: 1;
}
/* Fix ClinicianAI overlap with product visual */
#frontrow-gpt-container,
#iframe-frontrow-gpt,
.iframe-frontrow {
  position: relative !important;
  z-index: 1 !important;
}
.sf-product__visual {
  position: relative;
  z-index: 10;
}

/* ── Ingredients ────────────────────────────────── */
.sf-ing { background: var(--sf-rose-02); padding: 80px 0 112px; }
.sf-ing__head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.sf-ing__eyebrow { font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sf-pink); margin-bottom: 14px; }
.sf-ing__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.2rem,4vw,3.4rem); text-transform: uppercase; line-height: 1; margin: 0 0 14px; letter-spacing: -0.01em; }
.sf-ing__title em { color: var(--sf-pink); font-style: normal; }
.sf-ing__grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: center; max-width: 1100px; margin: 0 auto; }
.sf-ing__visual { aspect-ratio: 1/1; background: var(--sf-white); border-radius: var(--r-xl); position: relative; overflow: hidden; box-shadow: var(--shadow-2); display: flex; align-items: center; justify-content: center; }
.sf-ing__visual img { width: 60%; filter: drop-shadow(0 24px 40px rgba(0,16,41,0.2)); }
.sf-ing__visual img.sf-ing__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}
.sf-ing__pin { position: absolute; background: var(--sf-pink); color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 12px; box-shadow: var(--shadow-pink); z-index: 2; }
.sf-ing__pin::before { content: ""; position: absolute; inset: -6px; border-radius: 50%; border: 2px solid var(--sf-pink); opacity: 0.4; animation: sf-pulse 2s infinite; }
.sf-ing__pin:nth-child(2) { top: 25%; left: 28%; }
.sf-ing__pin:nth-child(3) { top: 50%; right: 22%; }
.sf-ing__pin:nth-child(4) { bottom: 22%; left: 35%; }
.sf-ing__list { display: grid; gap: 14px; }
.sf-ing__item { background: var(--sf-white); border-radius: var(--r-lg); padding: 20px 22px; display: flex; gap: 16px; align-items: flex-start; border: 1px solid var(--border); transition: transform var(--dur-fast), box-shadow var(--dur-fast); }
.sf-ing__item:hover { transform: translateY(-2px); box-shadow: var(--shadow-1); }
.sf-ing__num { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--sf-pink); letter-spacing: -0.02em; flex: 0 0 40px; line-height: 1; }
.sf-ing__name { font-family: var(--font-display); font-weight: 700; font-size: 15px; text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 4px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.sf-ing__name .dose { font-size: 11px; background: var(--sf-rose-02); padding: 2px 8px; border-radius: var(--r-pill); color: var(--fg-2); letter-spacing: 0.04em; }
.sf-ing__desc { font-size: 13px; color: var(--fg-2); line-height: 1.5; }

/* ── Quiz CTA ───────────────────────────────────── */
.sf-quiz { background: var(--sf-yellow-02); padding: 96px 0; position: relative; overflow: hidden; }
.sf-quiz__inner { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; padding: 0 24px; }
.sf-quiz__eyebrow { font-family: var(--font-display); font-weight: 700; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sf-pink); margin-bottom: 12px; }
.sf-quiz h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.8rem,3.4vw,2.6rem); line-height: 1; text-transform: uppercase; letter-spacing: -0.01em; margin: 0 0 14px; }
.sf-quiz p { font-size: 16px; color: var(--fg-2); margin: 0; max-width: 440px; line-height: 1.5; }
.sf-quiz__action { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.sf-quiz__time { font-family: var(--font-display); font-weight: 500; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-2); display: inline-flex; gap: 6px; align-items: center; }
.sf-quiz__time svg { width: 14px; height: 14px; }

/* ── Testimonials ───────────────────────────────── */
.sf-ugc { background: var(--sf-white); padding: 112px 0; }
.sf-ugc__head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.sf-ugc__eyebrow { font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sf-pink); margin-bottom: 14px; }
.sf-ugc__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.4rem,4vw,3.6rem); text-transform: uppercase; line-height: 1; margin: 0 0 14px; letter-spacing: -0.01em; }
.sf-ugc__sub { font-size: 17px; color: var(--fg-2); line-height: 1.5; }
.sf-ugc__meta { display: inline-flex; gap: 22px; margin-top: 24px; flex-wrap: wrap; font-family: var(--font-display); font-weight: 500; font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--fg-2); }
.sf-ugc__meta span { text-align: center; }
.sf-ugc__meta b { color: var(--sf-navy); font-size: 22px; font-weight: 700; display: block; margin-bottom: 2px; letter-spacing: -0.01em; }
.sf-ugc__meta .stars { color: var(--sf-pink); letter-spacing: 1px; }
.sf-ugc__quotes {
  display: flex;
  gap: clamp(14px, 2.5vw, 22px);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
  margin-inline: calc(-1 * clamp(14px, 4vw, 22px));
  padding-inline: clamp(14px, 4vw, 22px);
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}
.sf-ugc__quotes::-webkit-scrollbar { height: 6px; }
.sf-ugc__quotes::-webkit-scrollbar-thumb { background: rgba(0, 16, 41, 0.22); border-radius: 999px; }
.sf-ugc__q {
  flex: 0 0 min(340px, 86vw);
  scroll-snap-align: start;
  background: var(--sf-rose-01); border-radius: var(--r-lg); padding: 32px 28px; border: 1px solid var(--border); display: flex; flex-direction: column;
}
.sf-ugc__q .stars { color: var(--sf-pink); letter-spacing: 1px; font-size: 15px; margin-bottom: 12px; }
.sf-ugc__q h4 { font-family: var(--font-display); font-weight: 700; font-size: 16px; text-transform: uppercase; margin: 0 0 10px; letter-spacing: 0.01em; }
.sf-ugc__q p { font-size: 15px; line-height: 1.55; color: var(--fg-1); margin: 0 0 18px; }
.sf-ugc__q footer { font-family: var(--font-display); font-weight: 500; font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--fg-2); display: flex; justify-content: space-between; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--border); }
.sf-ugc__q footer .v { color: var(--sf-pink); font-weight: 700; }
.sf-ugc__strip { display: flex; gap: 16px; margin-top: 28px; overflow-x: auto; padding: 6px 2px 20px; scroll-snap-type: x mandatory; scrollbar-width: none; }
.sf-ugc__strip::-webkit-scrollbar { display: none; }
.sf-ugc__card { flex: 0 0 280px; aspect-ratio: 3/4; border-radius: var(--r-lg); scroll-snap-align: start; position: relative; padding: 20px; display: flex; flex-direction: column; justify-content: flex-end; color: white; overflow: hidden; }
.sf-ugc__card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,16,41,0.85) 0%, rgba(0,16,41,0.1) 60%, transparent 100%); }
.sf-ugc__card-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.sf-ugc__card:nth-child(1) { background: linear-gradient(135deg, var(--sf-rose-04), #8a6668); }
.sf-ugc__card:nth-child(2) { background: linear-gradient(135deg, var(--sf-blue-03), #3a6e8a); }
.sf-ugc__card:nth-child(3) { background: linear-gradient(135deg, var(--sf-yellow-03), #b08a3a); }
.sf-ugc__card:nth-child(4) { background: linear-gradient(135deg, #d4bfa6, #73594a); }
.sf-ugc__card:nth-child(5) { background: linear-gradient(135deg, var(--sf-rose-03), #704d50); }
.sf-ugc__card:nth-child(1) .sf-ugc__card-image { object-position: 48% 50%; }
.sf-ugc__card:nth-child(2) .sf-ugc__card-image { object-position: 50% 50%; }
.sf-ugc__card:nth-child(3) .sf-ugc__card-image { object-position: 56% 50%; }
.sf-ugc__card > * { position: relative; z-index: 1; }
.sf-ugc__card .stars { color: var(--sf-pink); letter-spacing: 1px; margin-bottom: 6px; }
.sf-ugc__card h5 { font-family: var(--font-display); font-weight: 700; font-size: 16px; text-transform: uppercase; margin: 0 0 6px; }
.sf-ugc__card small { font-family: var(--font-display); font-weight: 500; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.8; }

/* ── Discreet Shipping ──────────────────────────── */
.sf-discreet { background: var(--sf-navy); color: var(--sf-white); padding: 112px 0; }
.sf-discreet__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.sf-discreet__eyebrow { font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sf-pink); margin-bottom: 16px; }
.sf-discreet h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.2rem,4vw,3.4rem); text-transform: uppercase; line-height: 0.95; letter-spacing: -0.015em; margin: 0 0 20px; }
.sf-discreet h2 em { color: var(--sf-pink); font-style: normal; }
.sf-discreet p { font-size: 17px; color: rgba(255,255,255,0.75); line-height: 1.55; margin: 0 0 16px; max-width: 460px; }
.sf-discreet__bullets { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 14px; }
.sf-discreet__bullets li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; }
.sf-discreet__bullets svg { width: 20px; height: 20px; color: var(--sf-pink); flex: 0 0 auto; margin-top: 2px; }
.sf-discreet__box {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(11,27,56,0.35), rgba(29,42,70,0.55));
  border-radius: var(--r-xl);
  padding: 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.sf-discreet__product-box {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  object-position: center 42%;
  filter: drop-shadow(0 18px 32px rgba(0,0,0,0.35));
}
.sf-discreet__pkg { width: 58%; height: 60%; background: linear-gradient(140deg, #cfc2ae, #a09382); border-radius: 6px; position: relative; box-shadow: 0 30px 60px rgba(0,0,0,0.5); transform: rotate(-3deg); }
.sf-discreet__pkg::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 12%; background: rgba(0,0,0,0.08); border-bottom: 1px dashed rgba(0,0,0,0.15); }
.sf-discreet__pkg::after { content: "SF WELLNESS CO."; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: 0.18em; color: rgba(0,16,41,0.45); }
.sf-discreet__tape { position: absolute; bottom: 14%; right: -6%; transform: rotate(6deg); background: var(--sf-pink); color: var(--sf-white); padding: 10px 24px; font-family: var(--font-display); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; box-shadow: var(--shadow-pink); }
.sf-discreet__addr { position: absolute; top: 24%; left: 18%; background: white; padding: 8px 12px; border-radius: 3px; font-size: 9px; line-height: 1.4; color: #333; box-shadow: 0 4px 8px rgba(0,0,0,0.15); min-width: 140px; transform: rotate(-3deg); font-family: var(--font-body); }
.sf-discreet__addr b { display: block; font-size: 10px; letter-spacing: 0.04em; }

/* ── Guarantee (mockup burgundy strip) ──────────── */
.sf-guarantee { background: #8a0020; color: var(--sf-white); padding: 72px 0; text-align: center; }
.sf-guarantee__inner { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.sf-guarantee__seal { width: 96px; height: 96px; margin: 0 auto 20px; border: 3px solid var(--sf-white); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; line-height: 0.95; text-transform: uppercase; }
.sf-guarantee__seal .big { font-size: 30px; letter-spacing: -0.02em; }
.sf-guarantee__seal .sm  { font-size: 9px; letter-spacing: 0.16em; margin-top: 4px; }
.sf-guarantee h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem,3.6vw,3rem); text-transform: uppercase; line-height: 0.95; letter-spacing: -0.015em; margin: 0 0 16px; }
.sf-guarantee p { font-size: 17px; line-height: 1.55; margin: 0 auto 24px; opacity: 0.92; max-width: 600px; }
.sf-guarantee__signature { font-family: "Georgia", serif; font-style: italic; font-size: 18px; opacity: 0.9; margin-top: 24px; }

/* ── FAQ ────────────────────────────────────────── */
.sf-faq { background: var(--sf-white); padding: 112px 0; }
.sf-faq__inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.sf-faq__side { position: sticky; top: 96px; align-self: start; }
.sf-faq__eyebrow { font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sf-pink); margin-bottom: 14px; }
.sf-faq__side h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.2rem,4vw,3rem); text-transform: uppercase; line-height: 0.95; margin: 0 0 20px; letter-spacing: -0.015em; }
.sf-faq__side p { font-size: 16px; color: var(--fg-2); max-width: 340px; line-height: 1.5; margin: 0; }
.sf-faq__side .sf-btn { margin-top: 18px; }
.sf-faq__list { display: flex; flex-direction: column; border-top: 1px solid var(--border); }
.sf-faq__item { border-bottom: 1px solid var(--border); padding: 22px 0; }
.sf-faq__q { display: flex; justify-content: space-between; gap: 24px; align-items: center; width: 100%; font-family: var(--font-display); font-weight: 700; font-size: 17px; text-align: left; cursor: pointer; padding: 0; }
.sf-faq__q-icon { width: 32px; height: 32px; border-radius: 50%; background: var(--sf-rose-02); color: var(--sf-navy); display: inline-flex; align-items: center; justify-content: center; font-weight: 700; font-size: 18px; flex: 0 0 auto; transition: transform var(--dur-med) var(--ease-out), background var(--dur-fast); }
.sf-faq__item.is-open .sf-faq__q-icon { background: var(--sf-pink); color: var(--sf-white); transform: rotate(45deg); }
.sf-faq__a { margin-top: 14px; font-size: 15px; color: var(--fg-2); line-height: 1.6; display: none; }
.sf-faq__item.is-open .sf-faq__a { display: block; }

/* ── Email Capture ──────────────────────────────── */
.sf-email { background: var(--sf-rose-02); padding: 96px 0; }
.sf-email__inner { text-align: center; max-width: 600px; margin: 0 auto; padding: 0 24px; }
.sf-email__eyebrow { font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sf-pink); margin-bottom: 14px; }
.sf-email h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem,3.6vw,2.8rem); line-height: 1; text-transform: uppercase; margin: 0 0 16px; letter-spacing: -0.01em; }
.sf-email p { color: var(--fg-2); margin-bottom: 24px; font-size: 16px; }
.sf-email__form { display: flex; gap: 8px; background: var(--sf-white); border-radius: var(--r-pill); padding: 6px; border: 1px solid var(--border); box-shadow: var(--shadow-1); }
.sf-email__form input { flex: 1; border: 0; outline: none; background: transparent; padding: 12px 20px; font: inherit; font-size: 15px; }
.sf-email__form .sf-btn { padding: 14px 24px; }
.sf-email__tiny { font-size: 12px; color: var(--fg-3); margin-top: 14px; }
.sf-email__config-hint { font-size: 14px; color: var(--sf-navy, #1a1a2e); background: rgba(255, 255, 255, 0.85); border-radius: var(--r-md, 12px); padding: 12px 16px; margin: 0 0 16px; text-align: left; }
.sf-email__feedback { margin: 0; font-size: 16px; }
.sf-email__success.sf-email__feedback { color: var(--fg-2); }
.sf-email__error.sf-email__feedback { color: #b42318; margin-top: 12px; }

/* ── Big wordmark ───────────────────────────────── */
.sf-bigmark { background: var(--sf-navy); color: var(--sf-white); padding: 80px 0 20px; overflow: hidden; }
.sf-bigmark__word { font-family: var(--font-display); font-weight: 700; font-size: clamp(3rem, 11vw, 9rem); line-height: 0.85; letter-spacing: -0.03em; text-align: center; text-transform: uppercase; white-space: nowrap; }
.sf-bigmark__word em { color: var(--sf-pink); font-style: normal; }
.sf-bigmark__tag { text-align: center; font-family: var(--font-display); font-weight: 500; font-size: 14px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 36px; }

/* ── Footer ─────────────────────────────────────── */
.sf-footer { background: var(--sf-navy); color: var(--sf-white); padding: 56px 0 32px; }
.sf-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 40px; padding-top: 56px; border-top: 1px solid rgba(255,255,255,0.12); }
.sf-footer__grid > div:first-child p { margin-top: 0; }
.sf-footer p { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.6; }
.sf-footer h5 { font-family: var(--font-display); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; margin: 0 0 18px; color: rgba(255,255,255,0.55); }
.sf-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.sf-footer ul a { color: var(--sf-white); text-decoration: none; font-size: 14px; }
.sf-footer ul a:hover { color: var(--sf-pink); }
.sf-footer__social { display: flex; gap: 10px; margin-top: 20px; }
.sf-footer__social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: var(--sf-white); transition: background var(--dur-fast); }
.sf-footer__social a:hover { background: var(--sf-pink); }
.sf-footer__bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12px; color: rgba(255,255,255,0.45); letter-spacing: 0.04em; text-transform: uppercase; }
.sf-footer__bottom .pay { display: inline-flex; gap: 6px; align-items: center; }
.sf-footer__bottom .pay b { background: rgba(255,255,255,0.1); padding: 3px 8px; border-radius: 4px; font-weight: 500; letter-spacing: 0.06em; }

/* ── Sticky ATC ─────────────────────────────────── */
.sf-sticky {
  position: fixed; left: 0; right: 0; bottom: 0;
  background: var(--sf-white); border-top: 1px solid var(--border);
  box-shadow: 0 -8px 24px rgba(0,16,41,0.08);
  z-index: 200;
  padding: 14px 0;
  padding-bottom: calc(14px + env(safe-area-inset-bottom, 0));
  transform: translateY(110%);
  transition: transform var(--dur-med) var(--ease-out);
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.sf-sticky.is-visible { transform: translateY(0); pointer-events: auto; }
.sf-sticky__inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; gap: 20px; }
.sf-sticky__meta { font-size: 12px; color: var(--fg-2); line-height: 1.35; }
.sf-sticky__cta { flex-shrink: 0; }
.sf-sticky__pic { width: 56px; height: 56px; background: var(--sf-rose-01); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.sf-sticky__pic img { width: 70%; }
.sf-sticky__title { font-family: var(--font-display); font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 0.03em; line-height: 1.1; }
.sf-sticky__meta { font-size: 12px; color: var(--fg-2); margin-top: 3px; font-family: var(--font-display); font-weight: 500; letter-spacing: 0.03em; }
.sf-sticky__meta b { color: var(--sf-navy); font-weight: 700; }
.sf-sticky__meta s { color: var(--fg-3); margin-left: 6px; font-weight: 500; }
.sf-sticky__body { flex: 1; min-width: 0; }
.sf-sticky__cta { flex: 0 0 auto; }
/* Sticky bar CTA: brand red, white label (overrides any theme or utility) */
#sf-sticky-atc-btn.sf-btn.sf-btn--primary,
.sf-sticky .sf-sticky__cta.sf-btn--primary {
  background: #ED174B;
  color: #fff;
  box-shadow: 0 8px 24px rgba(237, 23, 75, 0.28);
  border: 0;
}
#sf-sticky-atc-btn.sf-btn.sf-btn--primary:hover,
.sf-sticky .sf-sticky__cta.sf-btn--primary:hover {
  background: #c41242;
  color: #fff;
}
/* ── UGC Reels (web-mockup) ─────────────────────── */
.sf-reels {
  background: var(--sf-rose-01);
  padding: 72px 0 56px;
  overflow: hidden;
  position: relative;
}
.sf-reels__head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.sf-reels__eyebrow {
  font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--sf-pink); margin-bottom: 14px;
}
.sf-reels__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.2rem, 4.4vw, 3.8rem); text-transform: uppercase; line-height: 0.95; letter-spacing: -0.01em;
  margin: 0 0 18px;
}
.sf-reels__title em { font-style: normal; color: var(--sf-pink); }
.sf-reels__sub { font-size: 17px; line-height: 1.5; color: var(--fg-2); max-width: 560px; margin: 0 auto; }
.sf-reels__marquee {
  width: 100%;
  overflow: hidden;
  padding: 40px 0 20px;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.sf-reels__track { display: flex; width: max-content; will-change: transform; animation: sf-reels-scroll 50s linear infinite; }
@keyframes sf-reels-scroll { to { transform: translateX(-50%); } }
.sf-reels__group { display: flex; gap: 24px; flex: 0 0 auto; }
.sf-reels__foot { text-align: center; margin-top: 24px; }
.sf-reel { flex: 0 0 auto; width: 290px; }
.sf-reel__phone {
  position: relative; width: 100%; height: 520px; background: #0a0a0a; border-radius: 36px; padding: 8px;
  box-shadow: 0 30px 60px rgba(0, 16, 41, 0.25), 0 0 0 2px rgba(0,0,0,0.15), inset 0 0 0 2px rgba(255,255,255,0.05);
  overflow: hidden; transform: rotate(-1deg); transition: transform 0.4s ease;
}
.sf-reel:nth-child(even) .sf-reel__phone { transform: rotate(1.5deg); }
.sf-reel:nth-child(3) .sf-reel__phone { transform: rotate(-2deg) translateY(-8px); }
.sf-reel:nth-child(4) .sf-reel__phone { transform: rotate(0.5deg) translateY(6px); }
.sf-reel__notch { position: absolute; top: 14px; left: 50%; transform: translateX(-50%); width: 80px; height: 22px; background: #000; border-radius: 12px; z-index: 5; }
.sf-reel__screen {
  position: relative; width: 100%; height: 100%; border-radius: 28px; padding: 0; color: #fff;
  font-family: var(--font-display); display: flex; flex-direction: column; overflow: hidden;
}
.sf-reel__screen--video { background: #0a0a0a; }
.sf-reel__media {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  border-radius: 28px;
}
.sf-reel__scrim {
  position: absolute; inset: 0; border-radius: 28px; z-index: 1; pointer-events: none;
  background: linear-gradient(200deg, rgba(0,16,41,0.15) 0%, rgba(0,16,41,0.5) 45%, rgba(0,0,0,0.75) 100%);
}
.sf-reel__content {
  position: relative; z-index: 2; flex: 1; display: flex; flex-direction: column;
  min-height: 0; padding: 36px 18px 64px;
}
.sf-reel__screen::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(circle at 20% 110%, rgba(255,255,255,0.18), transparent 50%),
    radial-gradient(circle at 80% 0%, rgba(255,255,255,0.12), transparent 45%);
  pointer-events: none;
}
.sf-reel__screen--video::before { opacity: 0.35; }
.sf-reel__top { position: relative; z-index: 2; display: flex; align-items: center; gap: 8px; margin-top: 4px; font-size: 12px; letter-spacing: 0.02em; }
.sf-reel__avatar { width: 26px; height: 26px; border-radius: 50%; background: linear-gradient(135deg, #fff, #fc004f); border: 1.5px solid rgba(255,255,255,0.8); }
.sf-reel__who b { font-weight: 700; }
.sf-reel__who span { opacity: 0.7; margin-left: 4px; font-weight: 500; }
.sf-reel__dots { margin-left: auto; font-size: 18px; opacity: 0.8; }
.sf-reel__eyebrow {
  position: relative; z-index: 2; margin-top: auto; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; opacity: 0.9;
  padding: 4px 10px; background: rgba(255,255,255,0.16); align-self: flex-start; border-radius: 999px; backdrop-filter: blur(6px);
}
.sf-reel__headline {
  position: relative; z-index: 2; font-family: var(--font-display); font-weight: 700; font-size: 44px; line-height: 0.9; letter-spacing: -0.02em; text-transform: uppercase; margin: 10px 0 12px; text-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.sf-reel__caption { position: relative; z-index: 2; font-size: 13px; line-height: 1.35; font-family: var(--font-body); font-weight: 500; opacity: 0.95; margin-bottom: 14px; max-width: 220px; }
.sf-reel__ui { position: absolute; right: 14px; bottom: 44px; display: flex; flex-direction: column; gap: 14px; font-size: 22px; z-index: 3; text-shadow: 0 2px 6px rgba(0,0,0,0.3); }
.sf-reel__progress { position: absolute; left: 18px; right: 18px; bottom: 18px; height: 3px; background: rgba(255,255,255,0.25); border-radius: 2px; z-index: 3; overflow: hidden; }
.sf-reel__progress span { display: block; height: 100%; width: 0; background: rgba(255,255,255,0.95); animation: sf-reel-progress 4.5s linear infinite; }
@keyframes sf-reel-progress { 0% { width: 0; } 100% { width: 100%; } }
@media (prefers-reduced-motion: reduce) {
  .sf-reels__track { animation: none; }
  .sf-reel__progress span { animation: none; }
  .sf-problem__bignum.is-animated { animation: none; }
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 1060px) {
  .sf-mega__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sf-mega__stat:nth-child(2) { border-right: 0; }
  .sf-mega__stat:nth-child(1), .sf-mega__stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.12); }
  .sf-mega__stat {
    padding: clamp(22px, 4vw, 36px) clamp(12px, 3vw, 18px) clamp(20px, 3.5vw, 32px);
  }
  .sf-mega__stat-text {
    max-width: none;
    font-size: 13px;
    line-height: 1.38;
    letter-spacing: 0.01em;
  }
  .sf-mega__stat-num {
    font-size: clamp(2.4rem, 8vw, 3.4rem);
  }
  .sf-footer__grid { grid-template-columns: repeat(3,1fr); }
  .sf-footer__grid > div:first-child { grid-column: span 3; }
}
@media (max-width: 900px) {
  .sf-container,
  .sf-container--wide { padding: 0 18px; }
  .sf-announce {
    flex-wrap: nowrap;
    gap: 6px;
    padding: 8px 8px;
    font-size: clamp(8px, 2.15vw, 11px);
    letter-spacing: 0.025em;
    white-space: nowrap;
  }
  .sf-announce__pill { padding: 2px 6px; letter-spacing: 0.04em; }
  .sf-announce__sep { display: none; }
  .sf-announce > span:nth-of-type(3),
  .sf-announce > span:nth-of-type(5) { display: none; }
  .sf-header__inner {
    gap: 8px;
    padding: 10px 12px;
  }
  .sf-logo { font-size: clamp(17px, 5vw, 20px); min-width: 0; }
  .sf-header__actions { gap: 4px; }
  .sf-header__actions .sf-iconbtn { display: none; }
  .sf-header-cta {
    display: inline-flex;
    max-width: 118px;
    padding: 9px 10px;
    font-size: 9px;
    line-height: 1.1;
    letter-spacing: 0.03em;
  }
  .sf-nav { display: none; }
  .sf-hamburger { display: flex; }
  .sf-hamburger,
  .sf-iconbtn { width: 36px; height: 36px; }
  .sf-hero__inner, .sf-product__inner, .sf-discreet__inner,
  .sf-faq__inner, .sf-problem__grid, .sf-ing__grid { grid-template-columns: 1fr; gap: 40px; }
  .sf-hero {
    overflow: hidden;
    padding-bottom: 20px;
  }
  .sf-hero::before {
    width: 360px;
    height: 360px;
    right: -180px;
    top: 180px;
  }
  .sf-hero__inner {
    padding: 28px 18px 0;
    gap: 28px;
    display: flex;
    flex-direction: column;
    grid-template-columns: unset;
    grid-template-rows: unset;
  }
  .sf-hero[data-mobile-visual="after_cta"] .sf-hero__copy--lead {
    order: 1;
  }
  .sf-hero[data-mobile-visual="after_cta"] .sf-hero__visual {
    order: 2;
  }
  .sf-hero[data-mobile-visual="after_cta"] .sf-hero__copy--tail {
    order: 3;
  }
  .sf-hero[data-mobile-visual="top"] .sf-hero__visual {
    order: 1;
  }
  .sf-hero[data-mobile-visual="top"] .sf-hero__copy--lead {
    order: 2;
  }
  .sf-hero[data-mobile-visual="top"] .sf-hero__copy--tail {
    order: 3;
  }
  .sf-hero__visual {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    grid-column: unset;
    grid-row: unset;
    align-self: stretch;
    aspect-ratio: auto;
    min-height: 0;
    max-height: none;
    padding: 12px 10px 16px;
    background: #ffffff;
    border-radius: var(--r-xl);
    box-shadow: 0 14px 48px rgba(0, 16, 41, 0.1);
    overflow: hidden;
  }
  .sf-hero__chip { display: none; }
  .sf-hero__burst {
    width: 86px;
    height: 86px;
    top: 12%;
    right: 8%;
    transform: rotate(-8deg);
  }
  .sf-hero__burst .big { font-size: 26px; }
  .sf-hero__disc,
  .sf-hero__clock {
    display: none;
  }
  .sf-hero__clock-label { display: none; }
  .sf-hero__product {
    width: 100%;
    max-width: min(100%, 720px);
    margin-left: 0;
    min-width: 0;
    min-height: 260px;
    max-height: min(82vh, 780px);
    height: auto;
    object-fit: contain;
    object-position: center center;
    filter: drop-shadow(0 20px 40px rgba(0, 16, 41, 0.14));
  }
  .sf-hero__copy--lead,
  .sf-hero__copy--tail {
    max-width: none;
    text-align: center;
    position: relative;
    z-index: 2;
  }
  .sf-hero__copy--lead {
    margin-top: 0;
  }
  .sf-hero__copy--tail .sf-hero__priceline {
    margin-top: 0;
  }
  .sf-hero__eyebrow,
  .sf-hero__rating {
    max-width: 100%;
    font-size: 10px;
    letter-spacing: 0.055em;
  }
  .sf-hero__eyebrow {
    margin-bottom: 14px;
  }
  .sf-hero__rating {
    margin-bottom: 22px;
  }
  .sf-hero__headline {
    font-size: clamp(2.55rem, 16vw, 4rem);
    line-height: 0.88;
    margin-bottom: 14px;
  }
  .sf-hero__sub {
    max-width: 34rem;
    margin: 0 auto 18px;
    font-size: 15px;
    line-height: 1.42;
  }
  .sf-hero__ctas {
    justify-content: center;
    gap: 8px;
  }
  .sf-hero__ctas .sf-btn {
    min-width: 0;
    padding: 14px 18px;
    font-size: 12px;
  }
  .sf-hero__priceline {
    justify-content: center;
    gap: 7px;
    font-size: 11px;
    line-height: 1.3;
  }
  .sf-hero__trust {
    justify-content: center;
    gap: 10px 14px;
    margin-top: 18px;
    font-size: 10px;
    letter-spacing: 0.035em;
  }
  .sf-reel { width: 240px; }
  .sf-reel__phone { height: 420px; }
  .sf-reel__headline { font-size: 30px; }
  .sf-how__grid { grid-template-columns: 1fr; }
  .sf-how__grid::before { display: none; }
  .sf-footer__grid { grid-template-columns: repeat(2,1fr); }
  .sf-footer__grid > div:first-child { grid-column: span 2; }
  .sf-ba__grid { grid-template-columns: 1fr; }
  .sf-ba__arrow { transform: rotate(90deg); padding: 12px 0; }
  .sf-quiz__action { align-items: stretch; }
  .sf-product__visual { position: relative; top: 0; }
  .sf-compare__wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--r-lg);
  }
  .sf-compare__table {
    min-width: 720px;
    width: 720px;
    table-layout: fixed;
    font-size: 14px;
  }
  .sf-compare__table th,
  .sf-compare__table td {
    padding: 16px 14px;
  }
  .sf-compare__table th:first-child,
  .sf-compare__table td:first-child {
    width: 32%;
    min-width: 0;
    padding-left: 18px;
    padding-right: 12px;
    font-size: 12px;
    letter-spacing: 0.04em;
    line-height: 1.3;
    word-break: normal;
    hyphens: none;
    -webkit-hyphens: none;
  }
  .sf-compare__table thead th {
    padding-top: 34px;
    padding-bottom: 12px;
    font-size: 11px;
    letter-spacing: 0.06em;
    vertical-align: bottom;
    line-height: 1.25;
    word-break: normal;
  }
  .sf-compare__table thead th.is-us .brand {
    margin-top: 2px;
    font-size: 12px;
  }
  .sf-compare__table thead th.is-us::before {
    font-size: 9px;
    padding: 2px 6px;
    top: 6px;
  }
  .sf-compare__yes,
  .sf-compare__no,
  .sf-compare__mid {
    width: 28px;
    height: 28px;
  }
  .sf-compare__yes svg,
  .sf-compare__no svg {
    width: 14px;
    height: 14px;
  }
  .sf-study { padding: 44px 0; }
  .sf-study__inner { gap: 22px; }
  .sf-study__badge {
    font-size: 10px;
    letter-spacing: 0.08em;
    padding: 7px 10px;
    margin-bottom: 14px;
  }
  .sf-study__headline {
    font-size: clamp(30px, 9vw, 40px);
    margin-bottom: 12px;
  }
  .sf-study__lede {
    font-size: 15px;
    line-height: 1.45;
    margin-bottom: 18px;
  }
  .sf-study__statbar {
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
  }
  .sf-study__stathead {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin-bottom: 12px;
  }
  .sf-study__statvalue {
    align-self: flex-end;
    font-size: clamp(28px, 11vw, 44px);
  }
  .sf-study__statlabel {
    font-size: 11px;
    letter-spacing: 0.06em;
    text-wrap: balance;
    line-height: 1.3;
    max-width: 100%;
  }
  .sf-study__statnote { display: inline; margin-top: 0; }
  .sf-study__caption,
  .sf-study__citeref { font-size: 12.5px; }
  .sf-study__citebox { padding: 14px; grid-template-columns: 1fr; }
  .sf-study__card { border-radius: 14px; padding: 18px; }
  .sf-study__list { margin-bottom: 16px; }
  .sf-study__list li { gap: 10px; padding: 10px 0; }
  .sf-study__list strong { font-size: 13px; }
  .sf-study__list span { font-size: 12.5px; line-height: 1.4; }
  .sf-study__cardfoot { grid-template-columns: 1fr; gap: 4px; padding-top: 14px; }
  .sf-problem { padding: 64px 0; }
  .sf-problem__grid { gap: 28px; }
  .sf-problem h2 {
    font-size: clamp(2rem, 11vw, 3rem);
    line-height: 1;
  }
  .sf-problem p { font-size: 15px; }
  .sf-problem__frac .sf-problem__piece { font-size: clamp(5rem, 26vw, 7rem); }
  .sf-compare,
  .sf-ba,
  .sf-how,
  .sf-mega,
  .sf-product,
  .sf-ing,
  .sf-ugc,
  .sf-discreet,
  .sf-guarantee,
  .sf-faq,
  .sf-email { padding: 56px 0; }
  .sf-ba__head,
  .sf-how__head,
  .sf-ing__head,
  .sf-ugc__head,
  .sf-reels__head { margin-bottom: 32px; }
  .sf-ba__col { min-height: 0; padding: 28px 22px; }
  .sf-ba__duration { font-size: clamp(2.6rem, 16vw, 3.6rem); }
  .sf-ing__visual {
    aspect-ratio: 16/11;
    max-height: 300px;
  }
  .sf-ing__visual img {
    width: auto;
    max-width: 76%;
    max-height: 86%;
    height: auto;
    object-fit: contain;
  }
  .sf-ing__visual img.sf-ing__photo {
    width: 100%;
    max-width: none;
    height: 100%;
    max-height: none;
    object-fit: cover;
  }
  .sf-ugc__meta {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
    width: 100%;
  }
  .sf-faq__inner { gap: 26px; }
  .sf-faq__side {
    position: static;
    text-align: center;
  }
  .sf-faq__side h2 {
    font-size: clamp(2rem, 10vw, 2.7rem);
    line-height: 1;
  }
  .sf-faq__side p { margin: 0 auto; }
  .sf-footer__grid {
    gap: 28px 20px;
    padding-top: 32px;
  }
  .sf-bigmark {
    padding: 48px 0 16px;
  }
  .sf-bigmark__word {
    font-size: clamp(3.1rem, 15vw, 7rem);
    line-height: 0.95;
    white-space: normal;
    overflow-wrap: anywhere;
  }
  .sf-product__inner { gap: 24px; }
  .sf-product__visual {
    aspect-ratio: 1 / 1;
    border-radius: var(--r-lg);
    min-height: min(92vw, 420px);
  }
  .sf-product__visual img.sf-product__hero-img {
    max-height: 90%;
    max-width: 92%;
  }
  .sf-product__thumbs {
    left: 14px;
    right: 14px;
    bottom: 14px;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 2px;
  }
  .sf-product__thumb {
    flex: 0 0 auto;
    width: 58px;
    height: 58px;
    padding: 5px;
  }
  .sf-product__badge {
    top: 12px;
    right: 12px;
    font-size: 10px;
    padding: 5px 9px;
  }
  .sf-product h2 {
    font-size: clamp(1.8rem, 9vw, 2.35rem);
    margin-bottom: 10px;
  }
  .sf-product__tag {
    font-size: 16px;
    line-height: 1.45;
    margin-bottom: 18px;
  }
  .sf-product__bullets {
    gap: 9px;
    margin-bottom: 18px;
  }
  .sf-product__bullets li {
    font-size: 15px;
    line-height: 1.35;
  }
  .sf-buy { margin-bottom: 14px; }
  .sf-buy__row {
    gap: 12px;
    padding: 16px 14px;
  }
  .sf-buy__radio {
    width: 20px;
    height: 20px;
  }
  .sf-buy__row.is-active .sf-buy__radio::after {
    width: 9px;
    height: 9px;
  }
  .sf-buy__title {
    font-size: 14px;
    gap: 6px;
  }
  .sf-buy__meta {
    font-size: 12px;
    line-height: 1.35;
  }
  .sf-buy__price {
    font-size: 19px;
    white-space: nowrap;
  }
  .sf-buy__strike {
    display: block;
    font-size: 11px;
    margin-left: 0;
  }
  .sf-buy__unit {
    font-size: 9px;
  }
  .sf-buy__tag,
  .sf-buy__savings {
    font-size: 8px;
    padding: 2px 6px;
  }
  .sf-atc-btn {
    padding: 14px 20px;
    font-size: 13px;
  }
  .sf-product__urgency {
    font-size: 10px;
    letter-spacing: 0.04em;
    margin-top: 10px;
  }
  .sf-product__benefits {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    margin-top: 12px;
    padding-top: 12px;
  }
  .sf-product__benefits .b {
    font-size: 8.5px;
    letter-spacing: 0.03em;
    line-height: 1.15;
  }
  .sf-product__benefits .b svg {
    width: 17px;
    height: 17px;
    margin-bottom: 4px;
  }
}
@media (max-width: 600px) {
  .sf-header-cta { display: none; }
  .sf-footer__grid {
    grid-template-columns: 1fr;
  }
  .sf-footer__grid > div:first-child {
    grid-column: auto;
  }
  .sf-footer__bottom {
    display: grid;
    gap: 10px;
    text-align: center;
    justify-content: center;
  }
  .sf-footer__bottom .pay {
    justify-content: center;
    flex-wrap: wrap;
  }
  .sf-sticky {
    padding: 8px 0;
    padding-bottom: calc(8px + env(safe-area-inset-bottom, 0));
  }
  .sf-sticky__inner {
    gap: 8px;
    padding: 0 10px;
  }
  .sf-sticky__pic {
    width: 42px;
    height: 42px;
  }
  .sf-sticky__title { font-size: 12px; }
  .sf-sticky__meta { font-size: 11px; }
  .sf-sticky__cta.sf-btn { padding: 12px 18px; font-size: 12px; }
  .sf-email__form { flex-direction: column; border-radius: var(--r-lg); }
  .sf-email__form .sf-btn { width: 100%; }
}
