/* ==========================================================================
   LoomGum Restore Therapy — Sales Page (US)
   Single stylesheet. No inline styles, no runtime-injected CSS.
   Order: tokens → primitives → components (top of page to bottom) → utilities.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens & reset
   -------------------------------------------------------------------------- */
:root {
  --ink: #0C1E38;
  --ink-soft: #333;
  --muted: #3B5F82;
  --bg-soft: #E8F2FF;
  --line: rgba(26, 111, 212, .15);
  --brand: #1A6FD4;
  --brand-deep: #0F4EA0;
  --brand-light: #C8DCFF;
  --action: #ff6a3d;
  --action-deep: #e8541f;
  --night: #0C1E38;
  --warn-orange: #ff8b3d;
}

* { box-sizing: border-box; font-family: "Inter", sans-serif; font-weight: 400; font-style: normal; }
html { scroll-behavior: smooth; }
body { padding: 0; margin: 0; color: #212529; background: #fff; }
h1, h2, h3, p, blockquote, figure, ul, ol { margin: 0; padding: 0; }
ul, ol { list-style: none; }
img { display: block; max-width: 100%; }
button { border: none; outline: none; cursor: pointer; font-family: inherit; }
b { font-weight: 700; }
a { color: inherit; text-decoration: none; }
section[id] { scroll-margin-top: 88px; }

h1, h2, h3, blockquote, figcaption { text-wrap: balance; }
p, li { text-wrap: pretty; }

@media (max-width: 768px) {
  html, body { max-width: 100%; overflow-x: clip; overscroll-behavior-x: none; }
}

/* --------------------------------------------------------------------------
   2. Layout primitives
   -------------------------------------------------------------------------- */
.container { padding: 0 20px; max-width: 1280px; width: 100%; margin: 0 auto; }
@media (max-width: 768px) { .container { padding: 0 12px; } }

/* --------------------------------------------------------------------------
   3. Shared CTA block
   -------------------------------------------------------------------------- */
@keyframes pulse {
  0%, 100% { transform: scale(1);   box-shadow: 0 8px 18px -4px rgba(255,106,61,.5), inset 0 1px 0 rgba(255,255,255,.22); }
  50%      { transform: scale(.97); box-shadow: 0 5px 14px -4px rgba(255,106,61,.4), inset 0 1px 0 rgba(255,255,255,.22); }
}
@keyframes glowing {
  0%, 100% { opacity: .55; box-shadow: 0 0 0 3px rgba(59,214,107,.18); }
  50%      { opacity: 1;   box-shadow: 0 0 0 5px rgba(59,214,107,.32); }
}
.pulse { animation: pulse 1.6s infinite; }
.glowing { animation: glowing 1.4s infinite; }

.cta-group { margin: 0 auto; max-width: 420px; }
.cta-group-hero { max-width: 480px; width: 100%; margin: 0; }

.cta-button {
  padding: 20px 16px; font-family: "Montserrat", sans-serif; font-weight: 800; font-size: 22px;
  line-height: 1; text-transform: uppercase; text-align: center; color: #fff; background: var(--action);
  border-radius: 10px; width: 100%; letter-spacing: .02em; display: flex; align-items: center;
  justify-content: center; gap: 10px; text-decoration: none;
  box-shadow: 0 8px 18px -4px rgba(255,106,61,.5), inset 0 1px 0 rgba(255,255,255,.22);
  transition: background .15s, transform .15s, box-shadow .15s;
  text-wrap: nowrap;
}
.cta-button:hover {
  background: var(--action-deep); transform: translateY(-2px); color: #fff;
  box-shadow: 0 14px 26px -6px rgba(255,106,61,.55), inset 0 1px 0 rgba(255,255,255,.25);
}
.cta-button svg { width: 32px; height: 32px; background: rgba(255,255,255,.25); border-radius: 50%; padding: 6px; flex-shrink: 0; }
.cta-group-hero .cta-button { font-size: clamp(16px, 5.5vw, 26px); padding: 22px 16px; white-space: nowrap; }

.cta-bottom { width: fit-content; margin: 14px auto 0; display: flex; align-items: center; gap: 8px; color: #333; font-size: 12.5px; line-height: 1.5; flex-wrap: wrap; justify-content: center; }
.cta-group-hero .cta-bottom { font-size: 15px; }
.cta-ellipse { width: 14px; height: 14px; display: inline-block; border-radius: 50%; background: #3bd66b; box-shadow: 0 0 0 4px rgba(59,214,107,.18); }
.cta-stock { display: inline-flex; gap: 3px; margin: 0 4px; }
.cta-stock i { width: 14px; height: 12px; background: #d9d9d9; border-radius: 2px; display: block; }
.cta-stock i.on { background: #fc2201; }
.cta-low { color: #ef4444; font-weight: 700; }
.shipByDate { font-weight: 700; }

@media (max-width: 980px) { .cta-group-hero .cta-button { font-size: 22px; } }
@media (max-width: 768px) {
  .cta-group { display: flex; flex-direction: column; align-items: center; margin-left: auto; margin-right: auto; }
  .cta-group .cta-button { width: 100%; box-sizing: border-box; }
  .cta-group .cta-bottom { display: flex; justify-content: center; text-align: center; width: 100%; flex-wrap: wrap; gap: 6px; }
  .cta-group-hero { align-items: center; text-align: center; width: 100%; }
  .cta-group-hero .cta-bottom { justify-content: center; }
  .cta-button { font-size: clamp(14px, 4.3vw, 17px); padding-left: 12px; padding-right: 12px; }
  .cta-group-hero .cta-button { font-size: clamp(14px, 4.3vw, 17px); }
  .cta-bottom { flex-wrap: nowrap; white-space: nowrap; font-size: clamp(9.9px, 2.75vw, 13.75px); gap: 4px; width: 100%; justify-content: center; }
  .cta-ellipse { width: 10px; height: 10px; }
  .cta-stock { gap: 2px; margin: 0 2px; }
  .cta-stock i { width: 10px; height: 9px; }
}
@media (max-width: 680px) {
  .cta-group { width: 100%; max-width: none; box-sizing: border-box; }
  .cta-button { width: 100%; padding-top: 10px; padding-bottom: 10px; min-height: 54px; white-space: nowrap; justify-content: center; gap: 10px; box-sizing: border-box; line-height: 1; }
  .cta-group-hero .cta-button { padding-top: 10px; padding-bottom: 10px; min-height: 54px; }
}
@media (max-width: 560px) { .cta-button { text-wrap: balance; } }

/* --------------------------------------------------------------------------
   4. Sticky top bar: announce + trust strip + header
   -------------------------------------------------------------------------- */
.topbar { position: sticky; top: 0; left: 0; right: 0; z-index: 60; }

.announcebar { background: #acf4a1; color: #111; text-align: center; padding: 7px 16px; font-weight: 700; font-size: 13.5px; letter-spacing: .04em; line-height: 1.3; }
.announcebar__inner { display: flex; align-items: center; justify-content: center; flex-wrap: nowrap; gap: 8px; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: #0D1B2E; white-space: nowrap; overflow: hidden; }
.announcebar__inner b { color: #111; font-weight: 700; }
.announcebar__divider { font-weight: 400; font-size: 11px; opacity: .45; color: #0D1B2E; }
.announcebar__note { font-weight: 700; letter-spacing: .06em; color: #0D1B2E; }

@keyframes trustbar-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.trustbar { background: var(--night); color: #fff; border-bottom: 1px solid var(--line); }
.trustbar > .container { max-width: 1720px; }
.trustbar__inner { display: flex; align-items: center; justify-content: center; gap: 56px; padding: 10px 0; font-weight: 700; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; color: #fff; }
.trustbar__item { display: flex; align-items: center; gap: 9px; white-space: nowrap; color: #fff; }
.trustbar__icon { flex-shrink: 0; color: var(--brand); }
.trustbar__icon--accent { stroke: #4D9FEC; }
.trustbar__dup { display: none; }
@media (max-width: 768px) {
  .trustbar .container { overflow: hidden; padding: 0; max-width: 100%; }
  .trustbar__inner { justify-content: flex-start; gap: 40px; width: max-content; animation: trustbar-scroll 14s linear infinite; flex-wrap: nowrap; }
  .trustbar__dup { display: flex; }
}

.header { padding: 10px 0; background: #fff; border-bottom: 1px solid var(--line); position: static; transition: box-shadow .2s; }
.header--scrolled { box-shadow: 0 2px 16px rgba(0,0,0,.12); }
.header > .container { max-width: 1280px; }
.header__inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; }
.header__logo { display: flex; align-items: center; gap: 10px; justify-self: start; padding: 0; background: none; }
.header__logo-img { height: 44px; width: auto; max-width: 220px; display: block; object-fit: contain; }
.header__navigation { display: flex; align-items: center; justify-content: center; justify-self: center; }
.header__menu { display: flex; align-items: center; gap: 80px; width: auto; }
.header__menu-link { font-weight: 600; font-size: 16px; line-height: 1.5; color: #171717; }
.header__menu-link:hover { color: var(--brand); }
.header__cta-group { display: flex; align-items: center; justify-content: flex-end; justify-self: end; }
.header__button { box-shadow: 0 4px 4px 0 rgba(255,106,61,.25); background: var(--action); border-radius: 6px; padding: 10px 18px; font-weight: 700; font-size: 15px; line-height: 1.5; color: #fff; display: flex; align-items: center; gap: 8px; flex-shrink: 0; transition: background .15s, transform .15s; }
.header__button:hover { background: var(--action-deep); transform: translateY(-1px); color: #fff; }
.header__hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; color: var(--ink); }
.header__hamburger svg { width: 28px; height: 28px; }

.header__mobile-menu { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: #fff; transform: translateY(-100%); transition: transform .3s ease; box-shadow: 0 4px 20px rgba(0,0,0,.15); }
.header__mobile-menu.open { transform: translateY(0); }
.header__mobile-menu-top { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid var(--line); }
.header__mobile-close { background: none; border: none; cursor: pointer; padding: 4px; color: var(--ink); }
.header__mobile-close svg { width: 28px; height: 28px; }
.header__mobile-nav { display: flex; flex-direction: column; }
.header__mobile-link { padding: 18px 20px; font-family: "Anek Latin", sans-serif; font-weight: 700; font-size: 18px; color: var(--ink); border-bottom: 1px solid var(--line); }
.header__mobile-link:last-child { border-bottom: 0; }

@media (max-width: 980px) {
  .header__inner { display: flex; justify-content: space-between; align-items: center; }
  .header__navigation { display: none; }
  .header__cta-group { display: none; }
  .header__hamburger { display: block; }
}
@media (max-width: 768px) { .header__logo-img { height: 40px; padding: 2px 0; box-sizing: content-box; } }

/* --------------------------------------------------------------------------
   5. Hero
   -------------------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; }
@media (min-width: 769px) {
  .hero {
    background:
      radial-gradient(circle, rgba(26,111,212,.055) 1px, transparent 1.4px) 0 0 / 22px 22px,
      radial-gradient(1100px 700px at 8% 12%, rgba(255,255,255,.85), transparent 62%),
      radial-gradient(900px 620px at 46% 100%, rgba(26,111,212,.10), transparent 68%),
      linear-gradient(160deg, #EEF5FF 0%, #E4EFFE 55%, #DDEAFC 100%);
  }
}
@media (max-width: 768px) { .hero { background: #fff; } }
@media (max-width: 560px) { .hero { overflow-x: hidden; } }

.hero-video { position: absolute; top: 0; right: 0; bottom: 0; width: 55%; z-index: 1; pointer-events: none; }
.hero-video__media { width: 100%; height: 100%; object-fit: cover; display: block; -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 15%); mask-image: linear-gradient(to right, transparent 0%, #000 15%); }
@media (max-width: 1200px) { .hero-video { display: none; } }

.hero__inner { position: relative; z-index: 4; padding: 42px 0 38px; max-width: 780px; width: 100%; }
@media (max-width: 980px) { .hero__inner { max-width: none; } }
@media (max-width: 768px) { .hero__inner { display: flex; flex-direction: column; padding-top: 24px; } }

.hero__rated { display: inline-flex; align-items: center; font-weight: 500; font-size: 15px; line-height: 1.3; color: var(--ink); margin-bottom: 14px; gap: 8px; }
.hero__rated-image { display: inline-flex; gap: 1px; }
.hero__rated-strip { display: inline-flex; gap: 3px; }
.hero__rated-image .tp-strip { width: auto; height: 14px; display: block; }
@media (max-width: 768px) {
  .hero__rated { order: 1; display: flex; flex-direction: row; flex-wrap: wrap; align-items: center; justify-content: center; text-align: center; gap: 6px; width: 100%; font-size: 13px; white-space: nowrap; }
  .hero__rated-image { gap: 0; flex-shrink: 0; flex-wrap: nowrap; }
  .hero__rated-score { display: none; }
}

.hero__title { font-family: "Anek Latin", sans-serif; font-weight: 700; font-size: 58px; line-height: .95; letter-spacing: -.02em; color: var(--ink); margin-bottom: 10px; text-wrap: balance; }
.hero__title em { font-style: normal; }
@media (min-width: 769px) { .hero__title-line2 { color: var(--brand); } }
@media (max-width: 768px) {
  .hero__title { order: 2; font-size: clamp(28px, 8.7vw, 44px); line-height: 1.02; letter-spacing: -.025em; font-weight: 800; text-align: center; }
  .hero__title-line2 { display: block; margin-top: 6px; font-size: .82em; font-weight: 800; letter-spacing: -.02em; line-height: 1.02; color: var(--brand); }
}

.hero__subtitle { font-weight: 500; font-size: 20px; line-height: 1.4; color: var(--ink); opacity: .82; margin-bottom: 16px; }
.hero__subtitle--wide { width: 640px; max-width: 100%; }
@media (max-width: 980px) { .hero__subtitle { font-size: 17px; } }
@media (max-width: 768px) {
  .hero__subtitle { order: 4; margin: 16px 0 0; text-align: left; font-size: clamp(15.5px, 4.3vw, 17px); font-weight: 400; line-height: 1.5; color: var(--ink); max-width: 100%; width: 100%; letter-spacing: 0; text-wrap: pretty; }
  .hero__subtitle b { font-weight: 800; }
  br.hide-mobile { display: none; }
}

.hero__mobile-img { display: none; border-radius: 14px; overflow: hidden; }
.hero__mobile-video { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; display: block; }
@media (max-width: 768px) {
  .hero__mobile-img { display: block; order: 3; background: var(--brand-light); border-radius: 0; margin: 0 -20px; width: calc(100% + 40px); }
}

.hero__checks { display: flex; flex-direction: column; gap: 9px; margin-bottom: 14px; }
.hero__checks-item { display: flex; align-items: flex-start; gap: 14px; font-weight: 500; font-size: 18px; line-height: 1.3; color: var(--ink); }
.hero__checks-item svg { width: 24px; height: 24px; flex-shrink: 0; margin-top: 2px; }
@media (max-width: 980px) { .hero__checks-item { font-size: 16px; } }
@media (max-width: 768px) {
  .hero__checks { order: 5; align-items: stretch; width: 100%; max-width: none; margin: 10px 0 0; padding-left: 0; gap: 0; }
  .hero__checks-item { position: relative; align-items: center; white-space: normal; line-height: 1.3; padding: 5px 0; gap: 14px; text-align: left; font-size: clamp(15.5px, 4.9vw, 19px); letter-spacing: -.01em; }
  .hero__checks-item svg { width: 25px; height: 25px; margin-top: 0; }
  .hero__checks-item b { font-weight: 800; }
}

.hero__message { margin-bottom: 9px; }
@media (min-width: 769px) { .hero__message { max-width: 480px; width: 100%; display: block; } }
@media (max-width: 768px) { .hero__message { max-width: 100%; width: 100%; display: flex; } }

.selling-fast-bar {
  display: flex; align-items: center; justify-content: center; text-align: center; width: 100%;
  box-sizing: border-box; font-weight: 600; font-size: 16.5px; line-height: 1.4; padding: 9px 16px;
  gap: 8px; border-radius: 10px; white-space: nowrap;
  color: var(--ink); background: rgba(12,30,56,.08); border: 1px solid rgba(12,30,56,.18);
  text-wrap: nowrap;
}
.selling-fast-bar__icon { width: 16px; height: auto; flex-shrink: 0; }
.selling-fast-bar__text { font-weight: 500; }
.selling-fast-bar .sf-num { font-weight: 600; }
@media (max-width: 768px) {
  .selling-fast-bar { font-size: clamp(12px, 3.95vw, 16px); padding: 8px; gap: 6px; letter-spacing: -.02em; line-height: 1.3; max-width: 100%; overflow: visible; }
  .selling-fast-bar__icon { width: clamp(12px, 3.95vw, 16px); height: auto; }
  .selling-fast-bar b, .selling-fast-bar .sf-num { color: var(--action); font-weight: 700; }
}
@media (max-width: 560px) { .selling-fast-bar { text-wrap: balance; } }

.hero__inner .cta-bottom { color: var(--ink); }
@media (max-width: 768px) {
  .hero__inner .cta-bottom { flex-wrap: nowrap; font-size: clamp(11px, 2.75vw, 14.3px); gap: 5px; white-space: nowrap; width: 100%; justify-content: center; }
  .hero__inner .cta-low { white-space: nowrap; }
}

/* --------------------------------------------------------------------------
   6. Press ticker
   -------------------------------------------------------------------------- */
@keyframes v3-ticker-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.partners { background: #F5F4F2; padding: 28px 0; }
.v3-partners-wrap { max-width: 1280px; width: 100%; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; gap: 48px; flex-wrap: nowrap; }
.partners__title { font-family: "Anek Latin", sans-serif; font-size: 22px; font-weight: 700; letter-spacing: -.01em; text-transform: capitalize; color: #414141; flex-shrink: 0; line-height: 1; }
.v3-ticker { position: relative; overflow: hidden; flex: 1; min-width: 0; }
.v3-ticker::before, .v3-ticker::after { content: ""; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none; }
.v3-ticker::before { left: 0; background: linear-gradient(to right, #F5F4F2, transparent); }
.v3-ticker::after { right: 0; background: linear-gradient(to left, #F5F4F2, transparent); }
.v3-ticker-track { display: flex; align-items: center; gap: 64px; width: max-content; animation: v3-ticker-scroll 32s linear infinite; }
.v3-ticker-track:hover { animation-play-state: paused; }
.v3-ticker-item { flex: 0 0 auto; display: flex; align-items: center; }
.v3-ticker-item img { max-height: 52px; width: auto; display: block; opacity: .65; filter: grayscale(1); }
@media (max-width: 768px) {
  .partners { padding: 12px 0; }
  .v3-partners-wrap { padding: 0 12px; gap: 8px; flex-wrap: wrap; flex-direction: column; align-items: center; }
  .v3-partners-wrap .partners__title { font-size: 18px; display: block; text-align: center; width: 100%; padding: 8px 0 4px; line-height: 1.3; order: -1; }
  .v3-partners-wrap .v3-ticker { order: 1; width: 100%; }
  .v3-ticker-track { gap: 32px; }
  .v3-ticker-item { padding: 0 16px; }
  .v3-ticker-item img { max-height: 64px; width: auto; }
}

/* --------------------------------------------------------------------------
   7. Results scroller
   -------------------------------------------------------------------------- */
@keyframes results-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-50% - 8px)); } }
.results-scroll-section { background: #fff; padding: 64px 0 50px; overflow: hidden; }
.results-scroll__head { text-align: center; padding: 0 24px 20px; }
.results-eyebrow { display: flex; align-items: center; justify-content: center; gap: 14px; font-family: "Montserrat", sans-serif; font-size: 14px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--brand); margin: 0 0 8px; }
.results-eyebrow::before, .results-eyebrow::after { content: ""; height: 1px; flex: 1 1 auto; max-width: 60px; background: rgba(26,111,212,.5); }
.results-scroll-title { font-family: "Anek Latin", sans-serif; font-size: clamp(28px, 5vw, 46px); font-weight: 700; color: var(--ink); line-height: .95; margin: 0; }
.results-scroll-title em { font-style: normal; font-weight: inherit; color: var(--brand); }
.results-scroll-title br { display: none; }
.results-scroll__viewport { position: relative; width: 100%; overflow: hidden; }
.results-scroll__track { display: flex; gap: 16px; width: max-content; animation: results-scroll 42s linear infinite; }
.results-scroll__item { flex-shrink: 0; width: 533px; aspect-ratio: 4 / 3; border-radius: 16px; overflow: hidden; }
.results-scroll__img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
@media (max-width: 768px) {
  .results-scroll-section { padding-top: 50px; }
  .results-eyebrow { font-size: 13px; margin: 0 auto 14px; }
  .results-scroll-title { font-size: clamp(34px, 9.8vw, 42px); font-weight: 800; line-height: 1.02; letter-spacing: -.03em; max-width: min(calc(100vw - 24px), 400px); margin: 0 auto; }
  .results-scroll-title br { display: revert; }
  .results-scroll__item { width: 94.6vw; }
}

/* --------------------------------------------------------------------------
   8. Shared section headings
   -------------------------------------------------------------------------- */
.title-header { display: flex; align-items: center; justify-content: center; gap: 14px; font-weight: 700; font-size: 14px; line-height: 2.08; letter-spacing: .16em; text-transform: uppercase; text-align: center; color: var(--brand); margin-bottom: 8px; text-wrap: nowrap; }
.title-header::before, .title-header::after { content: ""; height: 1px; flex: 1 1 auto; max-width: 60px; background: rgba(26,111,212,.5); }
.title { font-family: "Anek Latin", sans-serif; font-weight: 700; font-size: 54px; line-height: .95; letter-spacing: -.025em; text-align: center; color: var(--ink); text-wrap: balance; max-width: 900px; margin: 0 auto; }
.title em { font-style: normal; font-weight: inherit; color: var(--brand); }
.title br { display: none; }
@media (max-width: 768px) {
  .title { font-size: clamp(34px, 9.8vw, 42px); font-weight: 800; line-height: 1.02; letter-spacing: -.03em; max-width: min(calc(100vw - 24px), 400px); }
  .title br { display: revert; }
}
@media (max-width: 680px) { .title-header { font-size: 13px; margin-bottom: 12px; } }

/* --------------------------------------------------------------------------
   9. Overview / description
   -------------------------------------------------------------------------- */
.description { padding: 50px 0 25px; background: linear-gradient(180deg, #C9ECFF, #FFFFFF); }
.description__inner { text-align: center; }
.description__title { margin: 0 auto 20px; }
.desc-mobile-img { display: none; width: 100%; justify-content: center; padding: 0; }
.desc-mobile-img__img { width: 312px; height: auto; object-fit: contain; display: block; }
.description__boxes { display: grid; grid-template-columns: minmax(0, 380px) auto minmax(0, 380px); grid-template-rows: repeat(3, auto); justify-content: space-between; align-items: start; gap: 24px; margin: 24px 0; text-align: left; }
.description__box { max-width: 440px; width: 100%; display: grid; grid-template-rows: subgrid; grid-row: 1 / -1; gap: 18px; }
.description__boxes > .desc-desktop-img { grid-row: 1 / -1; align-self: center; }
.desc-desktop-img { flex: 0 0 300px; display: flex; align-items: center; justify-content: center; min-width: 0; }
.desc-desktop-img__frame { width: 300px; display: flex; align-items: center; justify-content: center; }
.desc-desktop-img__img { width: 347px; height: 395px; max-height: 500px; object-fit: cover; display: block; }
.description__box-row { display: flex; align-items: flex-start; gap: 16px; padding: 12px 0; }
.description__box-icon { width: 52px; height: 52px; flex-shrink: 0; overflow: hidden; display: grid; place-items: center; border-radius: 12px; }
.description__box-icon-img { width: 100%; height: 100%; object-fit: contain; }
.description__box-content h3 { font-family: "Anek Latin", sans-serif; font-weight: 700; font-size: 22px; line-height: 1.2; color: var(--ink); margin-bottom: 8px; letter-spacing: -.01em; }
.description__box-content p { font-weight: 400; font-size: 16px; line-height: 1.55; color: var(--muted); }
@media (max-width: 1200px) {
  .description__boxes { display: flex; flex-direction: column; }
  .description__box { display: flex; flex-direction: column; max-width: none; }
}
@media (max-width: 768px) {
  .description { padding: 56px 0 0; }
  .description__inner { padding: 0; }
  .desc-mobile-img { display: flex; }
  .desc-desktop-img { display: none; }
  .description__boxes { gap: 0; }
  .description__box { gap: 0; }
  .description__box-icon { width: 45px; height: 45px; min-width: 45px; min-height: 45px; }
  .description-cta-group { display: none; }
}

/* --------------------------------------------------------------------------
   10. Why it works
   -------------------------------------------------------------------------- */
.why-it-works { background: #fff; padding: 80px 0; }
.why-pheromones-row { display: flex; align-items: center; gap: 60px; }
.why-pheromones-imgs { flex: 1; min-width: 0; align-self: stretch; }
.why-pheromones-imgs__frame { border-radius: 16px; overflow: hidden; aspect-ratio: 1 / 1; width: 100%; }
.why-pheromones-imgs__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.why-it-works__body { flex: 1; min-width: 0; }
.why-phero-eyebrow { font-family: "Montserrat", sans-serif; font-size: 14px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--brand); margin: 0 0 8px; }
.why-phero-title { font-family: "Anek Latin", sans-serif; font-weight: 700; font-size: 40px; line-height: 1.35; letter-spacing: -.02em; color: var(--ink); margin: 0 0 20px; }
.why-phero-title em { font-style: normal; color: var(--brand); }
.why-phero-title br { display: none; }
.why-phero-img-mobile { display: none; position: relative; border-radius: 16px; overflow: hidden; margin: 16px 0 20px; }
.why-phero-img-mobile__img { width: 100%; object-fit: contain; display: block; background: #f5f5f5; }
.why-intro-p { font-size: 17px; line-height: 1.55; color: var(--muted); margin: 0 0 24px; }
.why-intro-p b { display: block; font-family: "Anek Latin", sans-serif; font-size: 28px; font-weight: 800; line-height: 1.1; letter-spacing: -.025em; margin-bottom: 14px; color: var(--ink); }
.vs-divider { display: flex; align-items: center; margin: 18px 0 16px; }
.vs-divider::before, .vs-divider::after { content: ""; flex: 1 1 auto; height: 1px; background: rgba(12,30,56,.14); }
.vs-divider span { flex-shrink: 0; width: 46px; height: 46px; margin: 0 14px; border-radius: 50%; background: var(--brand); color: #fff; font-weight: 800; font-size: 16px; letter-spacing: -.01em; display: grid; place-items: center; }
.why-solution { background: #EBF4FF; border-radius: 12px; padding: 20px 24px; margin-bottom: 24px; }
.why-solution-p { font-size: 16px; line-height: 1.55; color: var(--ink); margin: 0 0 16px; }
.why-solution-p b { display: block; font-family: "Anek Latin", sans-serif; font-size: 28px; font-weight: 800; line-height: 1.1; letter-spacing: -.025em; margin-bottom: 10px; color: var(--ink); }
.why-solution-kicker { display: block; margin: 0 0 18px; font-weight: 800; font-size: 16px; line-height: 1.3; color: var(--brand); }
.why-solution-rows { display: flex; flex-direction: column; gap: 12px; }
.why-solution-row { position: relative; display: flex; align-items: flex-start; gap: 12px; }
.why-solution-icon { width: 34px; height: 34px; flex-shrink: 0; border-radius: 50%; object-fit: contain; display: block; padding: 6px; box-sizing: border-box; background: #fff; box-shadow: inset 0 0 0 1.5px rgba(26,111,212,.28); }
.why-solution-row__text { font-size: 15.5px; line-height: 1.4; color: var(--ink); margin: 0; }
@media (max-width: 768px) {
  .why-it-works { padding: 20px 0 0; }
  .why-pheromones-row { flex-direction: column; gap: 24px; }
  .why-pheromones-imgs { display: none; }
  .why-it-works__body { width: 100%; }
  .why-phero-eyebrow { display: flex; align-items: center; justify-content: center; gap: 12px; text-align: center; font-size: 13px; letter-spacing: .16em; margin: 0 auto 14px; }
  .why-phero-eyebrow::before, .why-phero-eyebrow::after { content: ""; height: 1px; flex: 1 1 auto; max-width: 44px; background: rgba(26,111,212,.4); }
  .why-phero-title { text-align: center; font-size: clamp(30px, 9.8vw, 42px); line-height: 1.02; letter-spacing: -.03em; font-weight: 800; max-width: min(calc(100vw - 24px), 400px); margin: 0 auto 14px; }
  .why-phero-title br { display: revert; }
  .why-phero-img-mobile { display: block; }
  .why-intro-p { margin: 0 0 9px; font-size: clamp(15px, 4.2vw, 16.5px); line-height: 1.5; color: #1F2937; }
  .why-intro-p b { font-size: clamp(26px, 7.2vw, 30px); line-height: 1.08; margin-bottom: 8px; }
  .why-intro-p b::after { content: ""; display: block; width: 56px; height: 5px; border-radius: 2px; background: #DC2626; margin: 14px 0 16px; }
  .vs-divider { margin: 22px 0 18px; }
  .vs-divider span { width: 58px; height: 58px; font-size: 20px; }
  .why-solution { padding: 22px 18px; border-radius: 16px; }
  .why-solution-p { margin: 0 0 9px; font-size: clamp(14.5px, 4vw, 16px); line-height: 1.45; }
  .why-solution-p b { font-size: clamp(19px, 5.6vw, 23px); line-height: 1.15; margin-bottom: 8px; }
  .why-solution-kicker { font-size: clamp(14px, 3.9vw, 15.5px); }
  .why-solution-rows { border-top: 1px solid rgba(12,30,56,.12); padding-top: 18px; gap: 16px; }
  .why-solution-row { gap: 14px; }
  .why-solution-row:not(:last-child)::before { content: ""; position: absolute; left: 21px; top: 48px; bottom: -16px; border-left: 2px dashed rgba(26,111,212,.4); }
  .why-solution-icon { width: 44px; height: 44px; margin-top: 0; padding: 8px; }
  .why-solution-row__text { font-size: clamp(13.5px, 3.8vw, 15px); line-height: 1.4; }
  .why-solution-row__text b { display: block; margin-bottom: 3px; }
}

/* --------------------------------------------------------------------------
   11. Benefits ("how")
   -------------------------------------------------------------------------- */
.how { padding: 50px 0 25px; background: #F5F4F2; }
.how__inner { text-align: center; margin-bottom: 30px; }
.how__boxes { display: flex; flex-direction: column; gap: 28px; margin-top: 30px; margin-bottom: 28px; text-align: left; }
.how__box { display: flex; flex-direction: row-reverse; justify-content: space-between; align-items: flex-start; gap: 75px; }
.how__box:nth-of-type(2n) { flex-direction: row; }
.how__box-image { flex: 0 0 44%; width: 44%; aspect-ratio: 3 / 2; border-radius: 24px; background: linear-gradient(135deg, #E8F2FF, #C8DCFF); overflow: hidden; }
.how__box-media { width: 100%; height: 100%; object-fit: cover; display: block; }
.how__box-content { flex: 0 0 calc(56% - 75px); align-self: center; }
.how__box-title { font-family: "Anek Latin", sans-serif; font-weight: 700; font-size: 34px; line-height: 1.15; color: var(--ink); margin-bottom: 14px; letter-spacing: -.02em; }
.how__box-title em { font-style: normal; color: var(--brand); }
.how__box-title::after { content: ""; display: block; height: 1px; background: rgba(12,30,56,.14); margin: 14px 0 0; }
.how__box-text { font-weight: 400; font-size: 18px; line-height: 1.55; color: var(--muted); }
.how__pill { display: flex; align-items: flex-start; gap: 10px; background: #EBF4FF; border-radius: 12px; padding: 10px 14px; margin: 16px 0 0; font-size: 16px; line-height: 1.45; color: var(--ink); }
.how__pill::before { content: "\2713"; flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; background: var(--brand); color: #fff; font-size: 12px; font-weight: 700; display: grid; place-items: center; margin-top: 1px; }
.how__pill b { font-weight: 800; }
.how__pill span { color: var(--brand); }
.how-review { margin: 20px 0 0; border-left: 3px solid var(--brand); background: #fff; padding: 12px 16px; }
.how-review__stars { margin-bottom: 8px; }
.how-review-text { font-size: 15px; line-height: 1.4; color: var(--muted); margin: 0 0 8px; }
.how-review-name { font-size: 15px; font-weight: 700; color: var(--ink); margin: 0; }
.how-cta-group { position: static; display: block; padding-top: 20px; }
@media (max-width: 980px) {
  .how__box, .how__box:nth-of-type(2n) { flex-direction: column; gap: 24px; }
  .how__box-image { flex: 0 0 auto; width: 100%; }
  .how__box-content { flex: 1 1 auto; width: 100%; }
}
@media (max-width: 768px) {
  .how { padding: 25px 0; }
  .how__inner { padding: 0; }
  .how__boxes { gap: 36px; }
  .how__box-image { max-width: 100%; }
  .how__box-content { padding: 16px 0 4px; }
  .how__box-text { width: 100%; max-width: 100%; text-align: left; }
  .how__box-title { font-size: clamp(19px, 6.1vw, 34px); max-width: 100%; line-height: 1.18; letter-spacing: -.025em; font-weight: 800; white-space: nowrap; overflow: visible; }
  .how__box-title em { display: inline; white-space: nowrap; }
  .how__pill { padding: 8px 12px; font-size: clamp(14px, 3.9vw, 15.5px); line-height: 1.4; }
  .how-review-name { font-size: 14.5px; }
  .how-cta-group { display: flex; width: calc(100% + 40px); max-width: calc(100% + 40px); margin-left: -20px; margin-right: -20px; align-items: center; box-sizing: border-box; }
  .how-cta-group .cta-button { width: calc(100% - 40px); max-width: 480px; margin: 0 auto; }
  .how-cta-group .cta-bottom { justify-content: center; width: 100%; }
}
@media (max-width: 680px) {
  .how__box-image { min-height: 282px; aspect-ratio: 376 / 282; }
  .how__box-text { font-size: 15px; margin-bottom: 0; }
}
@media (max-width: 430px) { .how__box-text { font-size: 16px; } }
@media (max-width: 390px) { .how__box-text { font-size: 15px; } }

/* --------------------------------------------------------------------------
   12. Trust band (split)
   -------------------------------------------------------------------------- */
.split { background: #ddeaf8; }
.split__inner { display: flex; align-items: stretch; }
.split__image { width: 50%; align-self: stretch; }
.split__image-photo { width: 100%; height: 100%; min-height: 420px; object-fit: cover; display: block; }
.split__content { max-width: 600px; width: 100%; margin-left: 48px; padding: 36px 28px 36px 0; display: flex; align-self: center; flex-direction: column; gap: 10px; }
.split__title { font-family: "Anek Latin", sans-serif; font-weight: 700; font-size: 38px; line-height: 1.1; letter-spacing: -.02em; color: var(--ink); margin: 6px 0 14px; text-wrap: balance; padding-left: 12px; padding-right: 12px; }
.split__title--mobile { display: none; }
.split__boxes { display: flex; flex-direction: column; gap: 18px; padding-left: 12px; padding-right: 12px; }
.split__box { display: flex; gap: 18px; align-items: center; }
.split__box b { font-family: "Anek Latin", sans-serif; font-weight: 800; font-size: 48px; line-height: 1; letter-spacing: -.02em; color: var(--brand-deep); min-width: 100px; }
.split__box span { font-weight: 500; font-size: 18px; line-height: 1.35; color: var(--ink); text-align: left; }
@media (min-width: 1600px) {
  .split__content { max-width: 1000px; }
}
@media (max-width: 980px) {
  .split__inner { flex-direction: column; }
  .split__image { width: 100%; aspect-ratio: 16 / 10; }
  .split__content { margin: 0; padding: 48px 0; }
}
@media (max-width: 768px) {
  .split__image { aspect-ratio: 4 / 3; }
  .split__image-photo { min-height: 0; height: 100%; }
  .split__content { padding: 24px 0; }
  .split__title { font-size: clamp(34px, 9.8vw, 42px); font-weight: 800; line-height: 1.02; letter-spacing: -.03em; max-width: min(calc(100vw - 24px), 400px); }
  .split__title--desktop { display: none; }
  .split__title--mobile { display: block; }
}
@media (max-width: 680px) {
  .split__content { padding: 32px 0; }
  .split__box { gap: 16px; }
  .split__box b { min-width: 90px; }
  .split__box span { font-size: 16px; }
}

/* --------------------------------------------------------------------------
   13. Use cases + how-to steps (set)
   -------------------------------------------------------------------------- */
.set { padding: 50px 0; }
.set--steps { background: #F5F4F2; }
.set__inner { text-align: center; }
.set__boxes { margin-top: 22px; display: flex; justify-content: space-evenly; gap: 24px; text-align: left; }
.set__carousel-wrap, .how__carousel-wrap { display: contents; }
.set__boxes-wrapper { display: contents; }
.set__box { max-width: none; width: 100%; background: #fff; border: 1px solid var(--line); border-radius: 20px; overflow: hidden; padding: 0; transition: transform .2s, box-shadow .2s, border-color .2s; }
.set__box:hover { transform: translateY(-3px); box-shadow: 0 18px 38px -16px rgba(10,26,44,.18); border-color: #cfe4f5; }
.set__box-image { aspect-ratio: 308 / 280; background: linear-gradient(135deg, #E8F2FF, #C8DCFF); position: relative; overflow: hidden; margin: 0; border-radius: 0; }
.set__box-media { width: 100%; height: 100%; object-fit: cover; display: block; }
.set__box-body { padding: 16px 20px 20px; container-type: inline-size; }
.set__box-body--step { text-align: center; padding-top: 10px; container-type: normal; }
.set__box-title { font-family: "Anek Latin", sans-serif; font-weight: 700; font-size: clamp(17px, 9cqi, 23px); line-height: 1.2; color: var(--ink); margin: 0 0 5px; letter-spacing: -.01em; }
.set--steps .set__box-title { font-size: 23px; }
.set__box-title--nowrap { white-space: nowrap; }
.set__box-text { font-weight: 400; font-size: 16px; line-height: 1.5; color: var(--muted); }
.how__boxes-wrapper { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step-card__media { position: relative; width: 100%; padding-top: 75%; overflow: hidden; }
.step-card__img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.step-card__num-wrap { display: flex; justify-content: center; margin-top: -17px; position: relative; z-index: 2; }
.step-num { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; background: var(--brand); color: #fff; font-family: "Montserrat", sans-serif; font-weight: 800; font-size: 15px; flex-shrink: 0; border: 3px solid #fff; box-sizing: content-box; }
.set__carousel-dots, .how__carousel-dots { display: none; justify-content: center; gap: 8px; margin-top: 20px; }
.how__carousel-dots { gap: 7px; }
.set__carousel-dots button, .how__carousel-dots button, .reviews__carousel-dots button { width: 8px; height: 8px; border-radius: 50%; background: #C8D6E9; border: none; cursor: pointer; padding: 0; transition: background .2s, transform .2s; }
.set__carousel-dots button.active, .how__carousel-dots button.active, .reviews__carousel-dots button.active { background: var(--brand); transform: scale(1.35); }
.set__carousel-wrap, .how__carousel-wrap, .reviews__carousel-wrap,
.set__boxes-wrapper, .how__boxes-wrapper, .reviews__boxes-inner { touch-action: pan-y; }
@media (max-width: 768px) {
  .set { padding: 40px 0; }
  .set .container { padding-left: 0; padding-right: 0; }
  .set__inner { padding: 0; }
  .set__boxes { flex-direction: column; align-items: stretch; gap: 16px; }
  .set__carousel-wrap, .how__carousel-wrap { display: block; overflow: hidden; width: 100%; position: relative; }
  .set__boxes-wrapper { display: flex; flex-wrap: nowrap; overflow: visible; gap: 10px; transition: transform .35s cubic-bezier(.4, 0, .2, 1); will-change: transform; }
  .set__boxes-wrapper > .set__box { flex: 0 0 calc(100% - 60px); width: calc(100% - 60px); }
  .how__boxes-wrapper { display: flex; gap: 10px; flex-wrap: nowrap; transition: transform .35s cubic-bezier(.4, 0, .2, 1); will-change: transform; }
  .how__boxes-wrapper > .set__box { flex: 0 0 calc(100% - 40px); width: calc(100% - 40px); min-width: 0; box-sizing: border-box; padding: 0; }
  .how__boxes-wrapper > .set__box .set__box-body { padding: 16px; }
  .set__carousel-dots, .how__carousel-dots { display: flex; }
}
@media (max-width: 430px) { .set__box-text { font-size: 18px; } }
@media (max-width: 390px) { .set__box-text { font-size: 16px; } }
@media (max-width: 375px) { .set__box-text { font-size: 15px; } }
@media (max-width: 320px) { .set__box-text { font-size: 14px; } }

/* --------------------------------------------------------------------------
   14. Marquee
   -------------------------------------------------------------------------- */
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee { background: var(--night); overflow: hidden; padding: 14px 0; display: flex; white-space: nowrap; user-select: none; }
.marquee__track { display: flex; align-items: center; flex-shrink: 0; animation: marquee-scroll 34s linear infinite; }
.marquee__item { font-family: "Anek Latin", sans-serif; font-weight: 700; font-size: 24px; line-height: 1; letter-spacing: -.01em; color: #fff; padding: 0 36px; display: inline-flex; align-items: center; gap: 12px; }
.marquee__item svg { width: 22px; height: 22px; color: #4D9FEC; flex-shrink: 0; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@media (max-width: 680px) { .marquee__item { font-size: 18px; padding: 0 24px; } }

/* --------------------------------------------------------------------------
   15. Comparison
   -------------------------------------------------------------------------- */
.comp { padding: 50px 0; background: #fff; }
.comp__inner { text-align: center; }
.comp__title--mobile { margin-top: 0; }
.comp__title--mobile br { display: revert; }
.comp__title--mobile em { font-style: normal; color: var(--brand); }
.comp__sub { text-align: center; max-width: 560px; margin: 14px auto 0; font-size: 17px; line-height: 1.45; color: var(--muted); text-wrap: pretty; }

.comp-table--mobile { display: none; }
.comp-table--desktop { max-width: 920px; margin: 0 auto; }
.comp-table__layout { display: flex; align-items: flex-start; }
.comp-table__labels { flex: 1.6; display: flex; flex-direction: column; }
.comp-table__spacer-img { height: 200px; flex-shrink: 0; }
.comp-table__spacer-head { height: 64px; flex-shrink: 0; }
.comp-table__spacer-foot { height: 41px; flex-shrink: 0; }
.comp-table__spacer-foot--rival { height: 42px; }
.comp-table__label { height: 50px; flex-shrink: 0; display: flex; align-items: center; font-weight: 700; font-size: 15px; color: var(--ink); border-top: 1px solid #dde8f0; padding-right: 20px; }
.comp-table__label--last { border-bottom: 1px solid #dde8f0; }
.comp-table__cols {
  flex: 3; display: flex; gap: 16px; min-width: 0;
  background-image:
    linear-gradient(#dde8f0 1px, transparent 1px), linear-gradient(#dde8f0 1px, transparent 1px),
    linear-gradient(#dde8f0 1px, transparent 1px), linear-gradient(#dde8f0 1px, transparent 1px),
    linear-gradient(#dde8f0 1px, transparent 1px), linear-gradient(#dde8f0 1px, transparent 1px),
    linear-gradient(#dde8f0 1px, transparent 1px), linear-gradient(#dde8f0 1px, transparent 1px);
  background-size: 100% 2px;
  background-position: 0 264px, 0 314px, 0 364px, 0 414px, 0 464px, 0 514px, 0 564px, 0 614px;
  background-repeat: no-repeat;
}
.comp-table__col { flex: 1; display: flex; flex-direction: column; }
.comp-table__col-img { flex-shrink: 0; display: flex; justify-content: center; align-items: center; position: relative; z-index: 2; }
.comp-table__col-img--rival { height: 200px; align-items: flex-end; }
.comp-table__product-img { width: 160px; height: 160px; object-fit: contain; display: block; margin-top: 40px; }
.comp-table__rival-img { width: 108px; height: 108px; border-radius: 12px; object-fit: cover; display: block; }
.comp-table__panel { border-radius: 16px; margin-top: -54px; padding-top: 54px; position: relative; z-index: 1; display: flex; flex-direction: column; background: rgba(235, 244, 255, .5); }
.comp-table__panel--us { background: #EBF4FF; margin-top: -100px; padding-top: 100px; }
.comp-table__head { height: 64px; flex-shrink: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; }
.comp-table__stars { height: 18px; width: auto; display: block; }
.comp-table__name { font-family: "Anek Latin", sans-serif; font-weight: 700; font-size: 15px; color: var(--ink); }
.comp-table__cell { height: 50px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; border-top: 1px solid #dde8f0; }
.comp-table__cell--last { border-bottom: 1px solid #dde8f0; }
.comp-table__icon { width: 18px; height: 18px; display: block; }
.comp-cta-group { margin: 0 auto; padding: 48px 0 0; max-width: 480px; }

.comp-table__mhdr { display: grid; grid-template-columns: 1.6fr 1fr 1fr; column-gap: 8px; align-items: stretch; }
.comp-table__mcol { display: grid; grid-template-rows: 88px 1fr; align-content: end; align-items: stretch; justify-items: center; position: relative; }
.comp-table__mimg-wrap { width: 100%; height: 88px; display: flex; justify-content: center; align-items: flex-end; position: relative; z-index: 2; }
.comp-table__mimg--us { width: 80px; height: 80px; object-fit: contain; display: block; }
.comp-table__mimg--rival { width: 66px; height: 66px; object-fit: cover; display: block; }
.comp-table__minfo { width: 100%; min-height: 66px; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; gap: 3px; padding: 26px 4px 10px; position: relative; z-index: 1; box-sizing: border-box; border-radius: 12px 12px 0 0; margin-top: -22px; }
.comp-table__minfo--us { background: #EBF4FF; }
.comp-table__minfo--rx { background: #f0f3f7; }
.comp-table__mstars { height: 14px; width: auto; display: block; }
.comp-table__mname { font-family: "Anek Latin", sans-serif; font-weight: 700; font-size: 13px; color: #1a1a1a; text-align: center; line-height: 1.2; }
.comp-table__mname--us { color: var(--ink); }
.comp-table__mgrid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; column-gap: 8px; border-bottom: 1px solid rgba(12,30,56,.12); }
.comp-table__mdivider { grid-column: 1 / -1; height: 1px; background: rgba(12,30,56,.12); }
.comp-table__mfeat { display: flex; align-items: center; text-align: left; font-weight: 600; font-size: 13px; color: #1a1a1a; line-height: 1.3; padding: 10px 6px 10px 0; }
.comp-table__mcell { display: flex; align-items: center; justify-content: center; padding: 10px 0; }
.comp-table__mcell--us { background: #EBF4FF; }
.comp-table__mcell--rx { background: #f0f3f7; }
.comp-table__mgrid > .comp-table__mcell--us:nth-last-child(2) { border-radius: 0 0 0 12px; }
.comp-table__mgrid > .comp-table__mcell--rx:last-child { border-radius: 0 0 12px 0; }
.comp-table__micon { width: 17px; height: 17px; display: block; }

@media (max-width: 768px) {
  .comp { padding: 56px 0 48px; overflow-x: hidden; overflow-y: visible; }
  .comp .container { padding: 0 12px; }
  .comp__sub { max-width: 340px; }
  .comp__sub br { display: none; }
  .comp-table--mobile { display: block; }
  .comp-table--desktop { display: none; }
}
@media (max-width: 430px) { .comp-table__mname { font-size: 17px; } }
@media (max-width: 390px) { .comp-table__mname { font-size: 16px; } }
@media (max-width: 375px) { .comp-table__mname { font-size: 15px; } }
@media (max-width: 320px) { .comp-table__mname { font-size: 14px; } .comp-table__micon { width: 15px; height: 15px; } }

/* --------------------------------------------------------------------------
   16. Guarantee
   -------------------------------------------------------------------------- */
.guarantee-band { padding: 0; }
.guarantee-card { background: var(--night); border-radius: 24px; padding: 0 24px; display: flex; flex-wrap: wrap; align-items: center; gap: 40px; max-width: 1120px; margin: 0 auto; }
.guarantee-card__badge { flex-shrink: 0; }
.guarantee-badge-img { width: 240px; height: 200px; object-fit: contain; display: block; }
.guarantee-card__body { flex: 1 1 320px; min-width: 0; }
.guarantee-card__title { font-family: "Anek Latin", sans-serif; font-weight: 700; font-size: 32px; line-height: 1.3; color: #fff; margin: 0 0 12px; letter-spacing: -.02em; }
.guarantee-card__text { font-weight: 400; font-size: 16px; line-height: 1.55; color: rgba(255,255,255,.82); margin: 0; width: 100%; max-width: 750px; }
@media (max-width: 768px) {
  .guarantee-card { flex-direction: column; justify-content: flex-start; align-items: center; text-align: center; padding: 26px 22px 30px; gap: 28px; border-radius: 20px; }
  .guarantee-badge-img { width: 172px; height: 172px; }
  .guarantee-card__body { flex: 0 0 auto; width: 100%; }
  .guarantee-card__title { font-size: 26px; font-weight: 800; line-height: 1.2; margin: 0 0 12px; text-wrap: balance; }
  .guarantee-card__text { font-size: 16.5px; line-height: 1.6; color: rgba(255,255,255,.9); }
}

/* --------------------------------------------------------------------------
   17. Featured reviews carousel
   -------------------------------------------------------------------------- */
.reviews { padding: 50px 0; background: #fff; }
.reviews-eyebrow { display: flex; align-items: center; justify-content: center; gap: 14px; font-family: "Montserrat", sans-serif; font-size: 14px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--brand); margin: 0 0 14px; }
.reviews-eyebrow::before, .reviews-eyebrow::after { content: ""; height: 1px; flex: 1 1 auto; max-width: 60px; background: rgba(26,111,212,.5); }
.reviews__title { font-family: "Anek Latin", sans-serif; font-weight: 700; font-size: 46px; line-height: 1.1; text-align: center; color: var(--ink); letter-spacing: -.025em; margin: 0 auto; max-width: 880px; text-wrap: balance; }
.reviews__title em { font-style: normal; font-weight: inherit; color: var(--brand); }
.reviews-sub { display: block; text-align: center; font-size: 19px; line-height: 1.4; color: var(--muted); max-width: 560px; margin: 16px auto 32px; }
.reviews__boxes { display: block; margin: 22px 0; }
.reviews__carousel-wrap { display: contents; }
.reviews__boxes-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; width: 100%; }
.reviews__box { background: #fff; border: 1px solid var(--line); border-radius: 20px; display: flex; flex-direction: column; overflow: hidden; transition: box-shadow .2s, border-color .2s; }
.reviews__box:hover { box-shadow: 0 20px 40px -16px rgba(10,26,44,.15); border-color: #cfe4f5; }
.reviews__box-header { position: relative; height: 300px; background: linear-gradient(135deg, #E8F2FF, #C8DCFF); }
.reviews__box-photo { width: 100%; height: 100%; object-fit: cover; display: block; }
.reviews__box-data { position: absolute; border-radius: 10px; padding: 0 7px 0 5px; background: #fff; left: 14px; bottom: 14px; display: flex; gap: 8px; align-items: center; height: 35px; box-shadow: 0 6px 14px -4px rgba(10,26,44,.18); }
.reviews__box-data > div { display: flex; flex-direction: row; align-items: center; gap: 6px; }
.reviews__box-avatar { width: 26px; height: 26px; border-radius: 50%; overflow: hidden; flex-shrink: 0; background: linear-gradient(135deg, #33c5f3, var(--brand-deep)); }
.reviews__box-avatar.b { background: linear-gradient(135deg, #3ec98a, #1a7a4d); }
.reviews__box-avatar.c { background: linear-gradient(135deg, #ff9c5b, #e85c1f); }
.reviews__box-avatar-img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.reviews__box-name { font-weight: 700; font-size: 12px; color: #000; line-height: 1; white-space: nowrap; }
.reviews__box-verification { display: flex; align-items: center; gap: 3px; font-weight: 500; font-size: 11px; line-height: 1; color: #1ac70e; white-space: nowrap; }
.reviews__box-body { padding: 22px 22px 24px; display: flex; flex: 1; flex-direction: column; }
.reviews__box-stars { display: flex; gap: 1px; margin-bottom: 10px; }
.reviews__box-stars svg { width: 16px; height: 16px; color: #ff9911; }
.reviews__box-title { position: relative; font-family: "Anek Latin", sans-serif; font-weight: 700; font-size: 19px; color: var(--ink); margin: 0 0 10px; letter-spacing: -.01em; }
.reviews__box-title::after { content: "\201D"; color: var(--brand); font-size: 1.5em; line-height: 0; vertical-align: -.28em; margin-left: 4px; }
.reviews__box-review { font-weight: 400; font-size: 15.5px; line-height: 1.55; color: var(--muted); }
.reviews__carousel-dots { display: none; justify-content: center; gap: 8px; margin-top: 20px; }
@media (max-width: 1200px) { .reviews__boxes-inner { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
  .reviews { padding: 50px 0 10px; }
  .reviews__title { text-align: center; font-size: clamp(34px, 9.8vw, 42px); letter-spacing: -.03em; line-height: 1.02; font-weight: 800; max-width: min(calc(100vw - 24px), 400px); margin: 0 auto 12px; }
  .reviews-eyebrow::before, .reviews-eyebrow::after { background: rgba(26,111,212,.4); }
  .reviews-sub { max-width: min(calc(100vw - 24px), 400px); margin: 16px auto 28px; }
  .reviews__carousel-wrap { display: block; overflow: hidden; width: 100%; position: relative; }
  .reviews__boxes-inner { display: flex; grid-template-columns: unset; flex-wrap: nowrap; gap: 0; transition: transform .35s cubic-bezier(.4, 0, .2, 1); will-change: transform; }
  .reviews__boxes-inner > .reviews__box { flex: 0 0 100%; width: 100%; min-width: 100%; }
  .reviews__box-title { font-size: 19px; line-height: 1.25; text-wrap: balance; }
  .reviews__box-review { font-size: 16px; }
  .reviews__box-review b { color: var(--brand); }
  .reviews__carousel-dots { display: flex; margin-top: 16px; }
}
@media (max-width: 390px) { .reviews__box-review { font-size: 14px; } }
@media (max-width: 320px) { .reviews__box-title { font-size: 14px; } .reviews__box-review { font-size: 12px; } }

/* --------------------------------------------------------------------------
   18. Buy card
   -------------------------------------------------------------------------- */
.buy { background: #f0f5fe; padding: 20px 0; }
.buy-card { max-width: 1120px; margin: 0 auto; border: 2px dashed var(--brand); border-radius: 24px; overflow: hidden; background: #fff; display: flex; min-height: 480px; }
.buy-card__image { width: 48%; flex-shrink: 0; position: relative; }
.buy-card__image-img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; position: absolute; inset: 0; }
.buy-card__content { flex: 1; padding: 44px 48px; display: flex; flex-direction: column; justify-content: center; }
.buy-badge { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px; align-self: flex-start; background: #EBF4FF; border-radius: 10px; padding: 10px 14px; }
.buy-eyebrow { font-weight: 700; font-size: 13.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--brand); }
.buy-title { font-family: "Anek Latin", sans-serif; font-weight: 800; font-size: clamp(25px, 2.85vw, 38px); line-height: 1.1; letter-spacing: -.02em; color: var(--ink); margin: 0 0 14px; text-transform: uppercase; white-space: nowrap; }
.buy-title em { font-style: normal; font-weight: inherit; color: var(--brand); }
.buy-rule { width: 64px; height: 4px; background: var(--brand); border-radius: 99px; margin-bottom: 14px; }
.buy-subtitle { font-size: 15px; line-height: 1.45; color: var(--muted); margin: 0 0 18px; max-width: 430px; }
.buy-card__image--mobile { display: none; width: 100%; border-radius: 12px; overflow: hidden; margin: 0 0 20px; }
.buy-card__image-mobile-img { width: 100%; display: block; object-fit: cover; }
.buy-social-proof { display: flex; align-items: center; gap: 12px; border: 1px solid #e2e8f0; border-radius: 10px; padding: 10px 14px; margin-bottom: 18px; width: 100%; box-sizing: border-box; }
.buy-social-left { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.buy-avatars { display: flex; flex-shrink: 0; margin-right: 2px; }
.buy-avatar-img { width: 30px; height: 30px; border-radius: 50%; border: 2px solid #fff; flex-shrink: 0; margin-right: -8px; overflow: hidden; display: block; }
.buy-avatar-img:last-child { margin-right: 0; }
.buy-avatar-img img { width: 100%; height: 100%; object-fit: cover; }
.buy-rating { display: flex; gap: 6px; align-items: center; flex-shrink: 0; }
.buy-rating-strip { display: inline-flex; gap: 2px; }
.buy-rating-text { font-size: 15px; color: var(--ink); }
.buy-social-divider { width: 1px; height: 20px; background: #e2e8f0; }
.buy-social-instock { display: flex; align-items: center; gap: 6px; }
.buy-instock-dot { width: 9px; height: 9px; border-radius: 50%; background: #22c55e; display: inline-block; box-shadow: 0 0 0 3px rgba(34,197,94,.2); }
.instock-label { font-weight: 600; color: #22c55e; font-size: 13.5px; white-space: nowrap; }
.buy-trust-bullets { display: grid; grid-template-columns: auto auto; gap: 8px 20px; margin-bottom: 20px; justify-content: start; }
.buy-trust-bullet { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; color: var(--muted); }
.try-today-text { text-align: center; font-size: 13px; color: var(--muted); margin: 10px 0 0; }
@media (min-width: 769px) and (max-width: 1100px) {
  .buy-card__content { min-width: 0; box-sizing: border-box; }
  .buy-social-proof { flex-wrap: wrap; row-gap: 8px; justify-content: center; }
  .buy-social-divider { display: none; }
}
@media (max-width: 768px) {
  .buy { padding: 0px 0 50px; }
  .buy-card { flex-direction: column; min-height: unset; overflow: visible; }
  .buy-card__image { display: none; }
  .buy-card__image--mobile { display: block; margin-top: -8px; margin-bottom: 12px; }
  .buy-card__content { padding: 28px 20px; width: 100%; box-sizing: border-box; }
  .buy-card__content .cta-button { width: 100%; box-sizing: border-box; }
  #addCart { width: 100%; white-space: nowrap; font-size: clamp(14px, 4.2vw, 18px); justify-content: center; gap: 10px; }
  .buy-eyebrow { font-size: 12px; }
  .buy-subtitle { font-size: 16px; }
  .buy-social-proof { justify-content: space-between; gap: 0; padding: 10px 5px; flex-wrap: nowrap; }
  .buy-social-left { width: 50%; }
  .buy-avatar-img { width: clamp(20px, 5vw, 28px); height: clamp(20px, 5vw, 28px); }
  .buy-rating-strip .tp-strip { height: 10px; width: auto; }
  .buy-rating-text { font-size: clamp(10px, 2.8vw, 13px); }
  .buy-social-instock { width: 50%; justify-content: center; }
  .buy-trust-bullets { grid-template-columns: 1fr 1fr; gap: 10px; }
}
@media (max-width: 430px) { .buy-eyebrow { font-size: 11px; } .buy-instock-dot { width: 10px; height: 10px; } .instock-label { font-size: 12px; } }
@media (max-width: 390px) { .buy-eyebrow { font-size: 10px; } .buy-subtitle { font-size: 15.5px; } .buy-instock-dot { width: 9px; height: 9px; } .instock-label { font-size: 10.5px; } }
@media (max-width: 375px) { .buy-subtitle { font-size: 14.5px; } .buy-instock-dot { width: 8.5px; height: 8.5px; } .instock-label { font-size: 9.5px; } }
@media (max-width: 320px) { .buy-eyebrow { font-size: 9px; } .buy-subtitle { font-size: 12px; } .buy-instock-dot { width: 5px; height: 5px; } .instock-label { font-size: 8px; } }

/* --------------------------------------------------------------------------
   19. Expert
   -------------------------------------------------------------------------- */
.expert { padding: 24px 0; background: #fff; }
.expert__inner { display: flex; align-items: stretch; gap: 64px; max-width: 1120px; margin: 0 auto; background: transparent; border: 1px solid var(--line); border-radius: 28px; overflow: hidden; box-shadow: 0 30px 70px -40px rgba(10,26,44,.3); }
.expert__media { position: relative; width: 42%; align-self: stretch; flex-shrink: 0; }
.expert__media-img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.expert__media-badge { position: absolute; left: 24px; bottom: 24px; z-index: 3; display: inline-flex; align-items: center; gap: 8px; background: #fff; border-radius: 999px; padding: 9px 16px 9px 12px; font-weight: 700; font-size: 14px; color: var(--ink); box-shadow: 0 10px 26px -10px rgba(10,26,44,.45); }
.expert__media-badge svg { width: 20px; height: 20px; color: var(--brand); }
.expert__body { flex: 1; display: block; padding: 40px 44px; }
.expert__eyebrow { font-weight: 700; font-size: 14px; line-height: 1; letter-spacing: .16em; text-transform: uppercase; color: var(--brand); margin-bottom: 14px; }
.expert__name { font-family: "Anek Latin", sans-serif; font-weight: 700; font-size: 40px; line-height: 1.04; letter-spacing: -.025em; color: var(--ink); margin-bottom: 6px; }
.expert__role { font-weight: 600; font-size: 17px; color: var(--muted); margin-bottom: 22px; width: 450px; max-width: 100%; }
.expert-rule { display: none; }
.expert__quote { position: relative; font-weight: 400; font-size: 18px; line-height: 1.65; color: var(--muted); max-width: 560px; text-align: left; }
.expert__qmark { display: none; }
.expert__quote-text { display: block; overflow: visible; width: 100%; font-size: 16px; line-height: 1.5; color: var(--muted); }
.expert__sign { margin-top: 24px; display: flex; flex-direction: column; gap: 2px; }
.expert__sign > span { display: flex; flex-direction: column; gap: 2px; }
.expert__sign-mark { font-family: "Dancing Script", cursive; font-weight: 700; font-size: 32px; line-height: 1; color: var(--brand-deep); display: block; }
.expert__sign-name { font-weight: 700; font-size: 15px; color: var(--ink); letter-spacing: .01em; display: block; }
@media (min-width: 981px) {
  .expert__media-img { position: absolute; inset: 0; }
  .expert__body > *:last-child { margin-bottom: 0; }
}
@media (max-width: 980px) {
  .expert__inner { flex-direction: column; gap: 0; height: auto; }
  .expert__media { width: 100%; aspect-ratio: 16 / 11; }
}
@media (max-width: 768px) {
  .expert__media { aspect-ratio: 4 / 3; height: auto; }
  .expert__body { padding: 32px 24px; }
  .expert__eyebrow { position: relative; text-align: left; max-width: none; padding-bottom: 9px; margin: 0 0 14px; }
  .expert__eyebrow::after { content: ""; position: absolute; left: 0; bottom: 0; width: 52px; height: 2px; background: var(--brand); }
  .expert__name { font-size: clamp(28px, 8vw, 34px); line-height: 1.05; margin: 0 0 14px; }
  .expert__role { display: block; width: 100%; font-size: 18px; }
  .expert-rule { display: block; height: 1px; background: rgba(12,30,56,.14); margin: 18px 0; }
  .expert__quote { display: flex; gap: 10px; padding: 0; width: 100%; max-width: 100%; box-sizing: border-box; }
  .expert__qmark { display: block; width: auto; flex: 0 0 auto; font-family: Georgia, "Times New Roman", serif; font-size: 44px; line-height: .8; color: var(--brand); }
  .expert__quote-text { width: auto; flex: 1 1 auto; min-width: 0; font-size: 15.5px; line-height: 1.5; }
  .expert__quote-text b { color: var(--brand); font-weight: 800; }
  .expert__sign { flex-direction: row; align-items: center; justify-content: flex-start; gap: 13px; margin-top: 20px; }
  .expert__sign > span { align-items: flex-start; }
  .expert__sign-mark { font-size: 30px; }
  .expert__sign-name { font-size: 13px; color: var(--muted); }
}
@media (max-width: 430px) { .expert__role { font-size: 16px; } }
@media (max-width: 390px) { .expert__role { font-size: 15px; } }
@media (max-width: 375px) { .expert__role { font-size: 14px; } }
@media (max-width: 320px) { .expert__role { font-size: 12px; } }

/* --------------------------------------------------------------------------
   20. Trustpilot-style review wall
   -------------------------------------------------------------------------- */
.tp-reviews { padding: 40px 0; background: #fff; }
.tp-reviews__eyebrow { display: flex; align-items: center; justify-content: center; gap: 14px; font-weight: 700; font-size: 14px; letter-spacing: .12em; text-transform: uppercase; text-align: center; color: #00b67a; margin-bottom: 8px; }
.tp-reviews__eyebrow::before, .tp-reviews__eyebrow::after { content: ""; height: 1px; flex: 1 1 auto; max-width: 60px; background: rgba(0,182,122,.5); }
.tp-reviews__title { font-family: "Anek Latin", sans-serif; font-weight: 700; font-size: clamp(32px, 4vw, 48px); line-height: 1; letter-spacing: -.025em; text-align: center; color: var(--ink); margin: 0 auto 20px; }
.tp-reviews__title--mobile { display: none; }
.tp-reviews__top { display: grid; grid-template-columns: 1fr auto 1fr; gap: 40px; align-items: center; margin: 0 auto 24px; max-width: 1080px; }
.tp-reviews__bars { display: flex; flex-direction: column; gap: 10px; }
.tp-reviews__bar-row { display: flex; align-items: center; gap: 12px; }
.tp-reviews__bar-label { width: 150px; min-width: 150px; flex-shrink: 0; font-weight: 600; font-size: 14px; color: var(--ink); }
.tp-reviews__bar { flex: 1; height: 24px; background: #dcdce6; border-radius: 3px; overflow: hidden; min-width: 0; }
.tp-reviews__bar-fill { display: block; height: 100%; background: #00b67a; border-radius: 3px; }
.tp-reviews__bar-fill--90 { width: 90%; }
.tp-reviews__bar-fill--94 { width: 94%; }
.tp-reviews__bar-fill--96 { width: 96%; }
.tp-reviews__bar-fill--98 { width: 98%; }
.tp-reviews__bar-num { font-family: "Anek Latin", sans-serif; font-weight: 700; font-size: 16px; color: var(--ink); min-width: 28px; text-align: right; }
.tp-reviews__overall { text-align: center; padding: 0 20px; }
.tp-reviews__overall-num { font-family: "Anek Latin", sans-serif; font-weight: 800; font-size: 56px; line-height: 1; color: var(--ink); display: block; }
.tp-reviews__overall-stars { display: flex; gap: 3px; justify-content: center; margin: 8px 0; }
.tp-reviews__overall-stars-img { width: 152px; max-width: 152px; height: auto; display: block; margin: 0 auto; }
.tp-reviews__overall-meta { font-size: 14px; color: var(--muted); line-height: 1.4; }
.tp-reviews__photos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.tp-reviews__photo { aspect-ratio: 1; border-radius: 8px; min-width: 0; overflow: hidden; }
.tp-reviews__photo-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tp-reviews__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1080px; margin: 0 auto; align-items: stretch; }
.tp-reviews__card { display: flex; flex-direction: column; height: 100%; background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.tp-reviews__card-img { aspect-ratio: 4 / 3; border-radius: 8px; overflow: hidden; }
.tp-reviews__card-photo { width: 100%; height: 100%; object-fit: cover; display: block; }
.tp-reviews__card-body { padding: 16px; display: flex; flex-direction: column; flex: 1 1 auto; }
.tp-reviews__card-user { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.tp-reviews__card-avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--night); color: #fff; display: grid; place-items: center; font-size: 12px; font-weight: 700; flex-shrink: 0; }
.tp-reviews__card-name { font-weight: 700; font-size: 14px; color: var(--ink); }
.tp-reviews__card-verified { display: inline-flex; align-items: center; gap: 4px; font-size: 13px; font-weight: 600; color: #00b67a; margin-left: auto; white-space: nowrap; }
.tp-reviews__card-verified svg { width: 18px; height: 18px; flex-shrink: 0; }
.tp-reviews__card-stars { display: flex; align-items: center; gap: 3px; margin-bottom: 10px; flex-wrap: nowrap; }
.tp-reviews__card-stars svg { width: 20px; height: 20px; color: #fff; background: #00b67a; border-radius: 3px; padding: 2px; flex-shrink: 0; }
.tp-reviews__card-date { font-size: 12px; color: var(--muted); font-weight: 500; margin-left: 6px; white-space: nowrap; }
.tp-reviews__card-title { min-height: 2.5em; margin-bottom: 8px; font-family: "Anek Latin", sans-serif; font-weight: 700; font-size: 16px; color: var(--ink); }
.tp-reviews__card-text { min-height: 4.35em; margin-bottom: 0; font-size: 14px; line-height: 1.55; color: var(--muted); }
@media (min-width: 769px) and (max-width: 1100px) {
  .tp-reviews__card-stars { flex-wrap: wrap; row-gap: 4px; }
  .tp-reviews__card-date { white-space: normal; }
}
@media (max-width: 900px) {
  .tp-reviews__top { grid-template-columns: 1fr; gap: 28px; }
  .tp-reviews__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .tp-reviews { padding-bottom: 0; }
  .tp-reviews__title { font-size: clamp(34px, 9.8vw, 42px); font-weight: 800; line-height: 1.02; letter-spacing: -.03em; max-width: min(calc(100vw - 24px), 400px); }
  .tp-reviews__title--desktop { display: none; }
  .tp-reviews__title--mobile { display: block; }
  .tp-reviews .container { padding: 0 12px; }
  .tp-reviews__bar-label { width: 100px; min-width: 100px; font-size: 13px; }
  .tp-reviews__card-title { min-height: 2.6em; font-size: 24px; }
  .tp-reviews__card-text { min-height: 0; font-size: 18px; }
}
@media (max-width: 680px) {
  .tp-reviews__top { gap: 20px; }
  .tp-reviews__bar { min-width: 100px; height: 20px; }
  .tp-reviews__bar-num { font-size: 14px; }
  .tp-reviews__overall-num { font-size: 44px; }
  .tp-reviews__photos { gap: 6px; }
  .tp-reviews__grid { gap: 14px; }
  .tp-reviews__card-img { aspect-ratio: 16 / 10; }
}
@media (max-width: 580px) { .tp-reviews__grid { grid-template-columns: 1fr; } }
@media (max-width: 430px) { .tp-reviews__card-title { font-size: 22px; } }
@media (max-width: 390px) { .tp-reviews__card-title { font-size: 19px; } .tp-reviews__card-text { font-size: 16px; } }
@media (max-width: 320px) { .tp-reviews__card-title { font-size: 15.5px; } .tp-reviews__card-text { font-size: 14px; } }

/* --------------------------------------------------------------------------
   21. FAQ
   -------------------------------------------------------------------------- */
.faq { padding: 35px 0 28px; background: #fff; }
.faq__title { font-family: "Anek Latin", sans-serif; font-weight: 700; font-size: 44px; line-height: 1.04; text-align: center; color: var(--ink); margin-bottom: 22px; letter-spacing: -.025em; }
.faq__boxes { max-width: 880px; width: 100%; margin: 0 auto; }
.faq__box { border-bottom: 1px solid rgba(33,37,41,.18); padding: 12px 4px; }
.faq__box:first-child { border-top: 1px solid rgba(33,37,41,.18); }
.faq__box-header { display: flex; justify-content: space-between; align-items: center; cursor: pointer; gap: 16px; width: 100%; background: none; border: none; padding: 0; text-align: left; color: inherit; }
.faq__box-header:hover .faq__box-question { color: var(--brand); }
.faq__box-question { display: block; font-family: "Anek Latin", sans-serif; font-weight: 700; font-size: 16px; line-height: 1.35; color: var(--ink); letter-spacing: -.01em; transition: color .15s; }
.faq__box-icon { width: 32px; height: 32px; border-radius: 50%; background: #eaf3fb; color: var(--brand-deep); display: grid; place-items: center; flex-shrink: 0; transition: background .15s; }
.faq__box-icon svg { width: 14px; height: 14px; }
.faq__box.open .faq__box-icon { background: var(--brand); color: #fff; }
.faq__box.open .faq-vertical { display: none; }
.faq__box-footer { display: none; }
.faq__box.open .faq__box-footer { display: block; }
.faq__box-footer-inner { padding: 14px 4px 4px; font-size: 16px; line-height: 1.6; color: var(--muted); }
@media (max-width: 768px) {
  .faq .container { padding: 0 12px; }
  .faq__title { font-size: clamp(34px, 9.8vw, 42px); font-weight: 800; line-height: 1.02; letter-spacing: -.03em; max-width: min(calc(100vw - 24px), 400px); margin-left: auto; margin-right: auto; }
  .faq__box-question { font-size: 20px; }
}
@media (max-width: 430px) { .faq__box-question { font-size: 19px; } }
@media (max-width: 390px) { .faq__box-question { font-size: 17.5px; } .faq__box-footer-inner { font-size: 15.5px; } }
@media (max-width: 375px) { .faq__box-question { font-size: 16.5px; } .faq__box-footer-inner { font-size: 14.5px; } }
@media (max-width: 320px) { .faq__box-question { font-size: 13.5px; } .faq__box-footer-inner { font-size: 12px; } }

/* --------------------------------------------------------------------------
   22. Closing CTA band
   -------------------------------------------------------------------------- */
.faq-cta { padding: 48px 0; background: var(--bg-soft); }
.faq-cta__inner { text-align: center; max-width: 560px; margin: 0 auto; }
.faq-cta__title { font-family: "Anek Latin", sans-serif; font-weight: 800; font-size: 36px; line-height: 1.3; letter-spacing: -.02em; color: var(--ink); margin: 0 0 10px; }
.faq-cta__sub { font-size: 17px; line-height: 1.55; color: var(--muted); margin: 0 0 28px; }
.faq-cta__group { max-width: 420px; margin: 0 auto; }
@media (min-width: 769px) {
  .faq-cta__inner { max-width: none; }
  .faq-cta__title, .faq-cta__sub { white-space: nowrap; }
}

/* --------------------------------------------------------------------------
   23. Mobile sticky CTA
   -------------------------------------------------------------------------- */
.mobile-sticky-cta { display: none; transform: translateY(110%); transition: transform .35s cubic-bezier(.4, 0, .2, 1); }
.mobile-sticky-cta__inner { width: 100%; max-width: 100%; }
@media (max-width: 768px) {
  .mobile-sticky-cta { display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 900; background: #fff; box-shadow: 0 -6px 24px rgba(12,30,56,.14); padding: 10px 16px 14px; box-sizing: border-box; flex-direction: column; align-items: center; border-top: 1px solid var(--line); }
  .mobile-sticky-cta.is-visible { transform: translateY(0); }
  .mobile-sticky-cta .cta-bottom { color: var(--ink); font-size: 13.5px; }
  .mobile-sticky-cta .cta-low { color: #ef4444; }
}

/* --------------------------------------------------------------------------
   24. Footer
   -------------------------------------------------------------------------- */
.footer { padding: 48px 0 36px; background: var(--night); color: #fff; text-align: center; }
.footer .container { text-align: center; }
.footer__logo { margin: 0 auto 20px; display: flex; justify-content: center; align-items: center; }
.footer__logo .header__logo { color: #fff; padding: 0; background: none; gap: 10px; }
.footer__logo-img { height: 96px; width: auto; display: block; object-fit: contain; margin-top: 0; margin-bottom: 0; }
.footer__nav { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 12px 28px; max-width: 940px; margin: 0 auto 18px; }
.footer__nav a { font-weight: 700; font-size: 15px; color: #fff; opacity: .9; letter-spacing: .01em; }
.footer__nav a:hover { opacity: 1; color: #fff; }
.footer__copy { font-weight: 700; font-size: 15px; color: #fff; margin: 0 auto 18px; text-align: center; }
.footer__legal { font-weight: 500; font-size: 13px; line-height: 1.6; color: rgba(255,255,255,.5); max-width: 700px; width: 100%; margin: 0 auto 26px; text-align: center; }
.footer__payments { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin: 0; }
.footer__payments img { height: 28px; width: auto; border-radius: 4px; display: block; }
@media (max-width: 768px) { .footer__legal { font-size: 14px; } }
@media (max-width: 680px) {
  .footer__nav { gap: 10px 18px; }
  .footer__nav a { padding: 8px 4px; line-height: 1.3; }
}

/* --------------------------------------------------------------------------
   25. Small-screen body-copy floor
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
  .faq__box-footer-inner, .reviews__box-review, .tp-reviews__card-text,
  .how__box-text, .set__box-text, .expert__quote { line-height: 1.6; }
  p, li { line-height: 1.6; }
}
