/* =================================================================
   SEERAHKEY — Styles
   Mobile-first. iPhone-optimised. Scales up to desktop.
   ================================================================= */

/* ---------- TOKENS ---------- */
:root {
  /* Brand palette */
  --brand: #C9A6D9;
  --brand-2: #B890C9;
  --brand-ink: #6F4B85;
  --brand-soft: #EFE1F3;
  --brand-mist: #F7F0F9;

  --plum: #3E2E4F;
  --plum-dark: #2A1F37;

  --ink: #17151C;
  --ink-soft: #5A5561;
  --ink-mute: #8A8592;
  --line: #ECE7EE;
  --line-strong: #D9D3DC;

  --paper: #FFFFFF;
  --paper-alt: #FAF8FC;

  --gold: #D4A842;

  /* Typography */
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Bricolage Grotesque', 'Manrope', sans-serif;

  /* Radii */
  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-full: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(23,21,28,.04), 0 1px 3px rgba(23,21,28,.04);
  --shadow-md: 0 4px 12px rgba(23,21,28,.06), 0 2px 6px rgba(23,21,28,.04);
  --shadow-lg: 0 12px 32px rgba(23,21,28,.08), 0 4px 12px rgba(23,21,28,.05);

  /* Motion */
  --ease: cubic-bezier(.22,.8,.36,1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  /* Leave room for sticky cart on mobile */
  padding-bottom: calc(88px + env(safe-area-inset-bottom));
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }

button { font: inherit; cursor: pointer; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); letter-spacing: -0.02em; }
p { margin: 0; }
ul { list-style: none; padding: 0; margin: 0; }

.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ---------- TOP BANNER ---------- */
.top-banner {
  background: var(--plum);
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.banner-icon { width: 18px; height: 18px; color: #fff; }

/* ---------- HEADER ---------- */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: saturate(180%) blur(6px);
  -webkit-backdrop-filter: saturate(180%) blur(6px);
  background: rgba(255,255,255,.88);
}
.header-inner { display: flex; justify-content: center; align-items: center; }
.site-logo img { height: 40px; width: auto; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 24px;
  border: 0;
  border-radius: var(--r-full);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .15s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
  will-change: transform;
  text-decoration: none;
}
.btn:active { transform: scale(.98); }
.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 6px 18px rgba(201,166,217,.45), inset 0 1px 0 rgba(255,255,255,.3);
}
.btn-primary:hover { background: var(--brand-2); }
.btn-dark {
  background: var(--plum);
  color: #fff;
}
.btn-dark:hover { background: var(--plum-dark); }
.btn-xl { padding: 18px 32px; font-size: 16px; }

/* ---------- HERO ---------- */
.hero { background: #fff; }
.hero-media {
  background: linear-gradient(180deg, var(--brand-mist) 0%, #fff 100%);
  padding: 0;
  position: relative;
}
.hero-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.hero-info { padding: 24px 20px 32px; }

.badge-outline {
  display: inline-block;
  padding: 8px 14px;
  border: 1.5px solid var(--brand);
  border-radius: var(--r-sm);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--brand-ink);
  margin-bottom: 16px;
}

.product-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 7vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
  color: var(--ink);
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}
.stars { display: inline-flex; gap: 2px; color: var(--brand); }
.stars svg { width: 18px; height: 18px; fill: var(--brand-2); }
.stars-sm svg { width: 14px; height: 14px; color: var(--gold); fill: var(--gold); }
.rating-text { font-weight: 600; color: var(--ink-soft); font-size: 14px; }

.price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.price-old {
  font-size: 20px;
  color: var(--ink-mute);
  text-decoration: line-through;
  font-weight: 500;
}
.price-new {
  font-size: 30px;
  font-weight: 800;
  color: var(--ink);
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}
.price-save {
  background: var(--brand);
  color: #fff;
  padding: 6px 12px;
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cta-row {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
  align-items: stretch;
}
.qty {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--r-full);
  overflow: hidden;
  background: #fff;
}
.qty-btn {
  width: 44px;
  height: 54px;
  background: transparent;
  border: 0;
  font-size: 20px;
  color: var(--ink);
  font-weight: 600;
}
.qty-btn:hover { background: var(--brand-mist); }
.qty-input {
  width: 36px;
  text-align: center;
  border: 0;
  font-weight: 700;
  font-size: 16px;
  background: transparent;
  color: var(--ink);
}
.cta-row .btn { flex: 1; }

/* Accordions (shipping, guarantee) */
.info-accordions { margin-bottom: 22px; border-top: 1px solid var(--line); }
.acc {
  border-bottom: 1px solid var(--line);
}
.acc summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 4px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--ink);
  font-size: 16px;
}
.acc summary::-webkit-details-marker { display: none; }
.acc-icon { width: 22px; height: 22px; color: var(--ink); flex-shrink: 0; }
.acc summary > span { flex: 1; }
.acc-chev {
  width: 20px; height: 20px; color: var(--ink-soft);
  transition: transform .25s var(--ease);
}
.acc[open] .acc-chev { transform: rotate(180deg); }
.acc-body {
  padding: 0 4px 18px;
  color: var(--ink-soft);
  line-height: 1.6;
  font-size: 15px;
}

.delivery-eta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 15px;
  margin-bottom: 24px;
  padding: 14px 16px;
  background: var(--brand-mist);
  border-radius: var(--r-md);
}
.delivery-eta svg { color: var(--brand-ink); flex-shrink: 0; }
.delivery-eta strong { color: var(--ink); font-weight: 700; }

.quick-review {
  margin: 0;
  padding: 20px 0 8px;
  border-top: 1px solid var(--line);
}
.quick-review blockquote {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  font-style: normal;
}
.quick-review figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--ink-soft);
}
.quick-review em { font-style: italic; font-weight: 600; }

/* ---------- AS SEEN ON ---------- */
.seen-on {
  background: var(--brand);
  padding: 22px 0;
  overflow: hidden;
  color: #fff;
  border-top: 1px solid rgba(255,255,255,.1);
}
.marquee { overflow: hidden; }
.marquee-track {
  display: flex;
  gap: 40px;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
  align-items: center;
}
.seen-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
}
.seen-item svg { fill: #fff; color: #fff; }

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ---------- SECTION TITLES ---------- */
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 6vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-align: center;
  margin-bottom: 24px;
}

/* ---------- HOW IT WORKS ---------- */
.how-it-works {
  padding: 56px 0 48px;
  background: linear-gradient(180deg, #fff 0%, var(--brand-mist) 100%);
}
.video-card {
  display: block;
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 28px;
  background: #000;
}
.video-card img { width: 100%; display: block; }
.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 70px; height: 70px;
  border-radius: 50%;
  background: rgba(255,255,255,.96);
  display: grid;
  place-items: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
  transition: transform .2s var(--ease);
}
.video-card:hover .play-btn { transform: translate(-50%, -50%) scale(1.08); }
.play-btn svg { width: 30px; height: 30px; margin-left: 3px; color: var(--plum); }

.steps-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--r-full);
  padding: 4px;
  background: #fff;
  margin-bottom: 28px;
}
.step-tab {
  background: transparent;
  border: 0;
  padding: 12px 8px;
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.step-tab svg { width: 18px; height: 18px; }
.step-tab.is-active {
  background: var(--plum);
  color: #fff;
}

.step-panel { text-align: center; padding: 12px 0 8px; }
.step-panel[hidden] { display: none; }
.step-panel h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 10vw, 72px);
  letter-spacing: -0.03em;
  color: var(--plum);
  margin-bottom: 14px;
  line-height: 1;
}
.step-panel p {
  max-width: 520px;
  margin: 0 auto 24px;
  color: var(--ink-soft);
  font-size: 16px;
}

/* ---------- FEATURES ---------- */
.features {
  padding: 56px 0;
  background: #fff;
}
.features-media {
  width: 100%;
  border-radius: var(--r-lg);
  margin-bottom: 32px;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
  object-fit: cover;
}
.feature-list { display: grid; gap: 28px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.feature-mark {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: var(--r-full);
  background: var(--brand-soft);
  color: var(--brand-ink);
  display: grid;
  place-items: center;
}
.feature-mark svg { width: 18px; height: 18px; }
.feature-list h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--ink);
}
.feature-list p { color: var(--ink-soft); font-size: 16px; line-height: 1.6; }
.feature-list strong { color: var(--ink); font-weight: 700; }

/* ---------- KEYWORD MARQUEE ---------- */
.keyword-marquee {
  background: var(--brand);
  padding: 28px 0;
  overflow: hidden;
}
.kw-track {
  display: flex;
  gap: 28px;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  font-size: clamp(28px, 5vw, 44px);
  letter-spacing: -0.01em;
  color: #fff;
}
.kw-track span { flex-shrink: 0; }

/* ---------- REVIEWS ---------- */
.reviews { padding: 56px 0; background: var(--paper-alt); }
.review-card {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.review-image { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.review-image img { width: 100%; height: 100%; object-fit: cover; }
.review-quote-mark {
  position: absolute;
  bottom: -14px; right: 20px;
  width: 44px; height: 44px;
  background: var(--brand);
  border-radius: var(--r-full);
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: var(--shadow-md);
}
.review-quote-mark svg { width: 20px; height: 20px; fill: #fff; }
.review-body { padding: 24px 22px 22px; }
.review-body .stars { margin-bottom: 10px; }
.review-body h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ink);
}
.review-body p {
  color: var(--ink-soft);
  margin-bottom: 14px;
  line-height: 1.65;
}
.review-body cite {
  font-style: italic;
  font-weight: 600;
  color: var(--ink);
  font-size: 14px;
}

/* ---------- DONATION ---------- */
.donation {
  background: var(--plum);
  color: #fff;
  padding: 48px 0;
  text-align: center;
}
.donation h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 5vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.donation p {
  max-width: 560px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,.88);
}
.donation strong { color: #fff; font-weight: 700; }

/* ---------- WHAT YOU GET ---------- */
.what-you-get { padding: 56px 0; background: #fff; }
.wyg-media {
  width: 100%;
  border-radius: var(--r-lg);
  margin-bottom: 32px;
  aspect-ratio: 1/1;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}
.wyg-list { display: grid; gap: 28px; }
.wyg-list li { display: flex; gap: 14px; align-items: flex-start; }
.wyg-icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: var(--r-md);
  background: var(--brand-soft);
  color: var(--brand-ink);
  display: grid;
  place-items: center;
}
.wyg-icon svg { width: 20px; height: 20px; }
.wyg-list h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--ink);
}
.wyg-list p { color: var(--ink-soft); line-height: 1.6; }

/* ---------- LEARN ANYWHERE ---------- */
.learn-anywhere { background: #fff; padding-bottom: 48px; }
.la-media {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.la-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.la-content { text-align: center; padding: 36px 20px 8px; }
.la-content h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 6vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  color: var(--plum);
}
.la-content p {
  color: var(--ink-soft);
  margin-bottom: 26px;
  font-size: 17px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- FAQ ---------- */
.faq { padding: 56px 0; background: var(--paper-alt); }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow .2s var(--ease);
}
.faq-item[open] { box-shadow: var(--shadow-sm); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-check {
  width: 24px; height: 24px;
  border-radius: var(--r-xs);
  background: var(--brand-soft);
  color: var(--brand-ink);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.faq-check svg { width: 16px; height: 16px; }
.faq-q { flex: 1; line-height: 1.3; }
.faq-chev {
  width: 20px; height: 20px; color: var(--ink-soft);
  transition: transform .25s var(--ease);
  flex-shrink: 0;
}
.faq-item[open] .faq-chev { transform: rotate(180deg); }
.faq-answer { padding: 0 18px 20px 56px; color: var(--ink-soft); line-height: 1.65; }
.faq-answer p { margin: 0; }

/* ---------- FOOTER ---------- */
.site-footer {
  margin-top: 48px;
  position: relative;
  background: var(--brand);
  color: #fff;
}
.footer-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  display: block;
  transform: translateY(-99%);
  pointer-events: none;
}
.footer-body { padding: 48px 0 32px; position: relative; }
.footer-logo {
  display: block;
  margin: 0 auto 32px;
  filter: brightness(0) invert(1);
  height: 48px;
  width: auto;
}
.footer-grid {
  display: grid;
  gap: 32px;
  margin-bottom: 32px;
}
.footer-col h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: 0.04em;
  color: #fff;
}
.footer-col ul { display: grid; gap: 10px; }
.footer-col a {
  color: rgba(255,255,255,.88);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color .2s var(--ease);
}
.footer-col a:hover { color: #fff; }
.footer-col p {
  color: rgba(255,255,255,.88);
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.5;
}

.newsletter {
  display: flex;
  gap: 8px;
  flex-direction: column;
}
.newsletter input {
  padding: 14px 18px;
  border-radius: var(--r-full);
  border: 0;
  background: rgba(255,255,255,.96);
  color: var(--ink);
  font-size: 15px;
  outline: none;
  font-family: inherit;
}
.newsletter input:focus { box-shadow: 0 0 0 3px rgba(255,255,255,.4); }
.newsletter button {
  padding: 14px 24px;
  border-radius: var(--r-full);
  border: 0;
  background: var(--plum);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.newsletter button:hover { background: var(--plum-dark); }

.footer-copyright {
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.7);
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.2);
}

/* ---------- STICKY CART BAR ---------- */
.sticky-cart {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-top: 1px solid var(--line);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 50;
  transform: translateY(120%);
  transition: transform .35s var(--ease);
  box-shadow: 0 -4px 20px rgba(23,21,28,.08);
}
.sticky-cart.is-visible { transform: translateY(0); }
.sc-image {
  width: 52px; height: 52px;
  object-fit: cover;
  border-radius: var(--r-sm);
  flex-shrink: 0;
  background: var(--brand-mist);
}
.sc-info { flex: 1; min-width: 0; }
.sc-info strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  color: var(--ink);
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 2px;
}
.sc-prices { display: flex; gap: 8px; align-items: baseline; font-size: 14px; }
.sc-new { color: var(--brand-ink); font-weight: 800; }
.sc-old { color: var(--ink-mute); text-decoration: line-through; font-size: 13px; }
.sc-cta { padding: 14px 20px; font-size: 13px; flex-shrink: 0; }

/* ---------- RESPONSIVE: TABLET + ---------- */
@media (min-width: 768px) {
  body { padding-bottom: 0; }

  .container { padding-left: 32px; padding-right: 32px; }

  /* Hero becomes two-column */
  .hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 0;
    gap: 32px;
  }
  .hero-media {
    border-radius: var(--r-xl);
    overflow: hidden;
    margin-left: 32px;
  }
  .hero-media img { aspect-ratio: 1/1; }
  .hero-info { padding: 0 32px; }
  .product-title { font-size: 56px; }
  .price-new { font-size: 36px; }

  /* Features split */
  .features .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
  }
  .features-media { margin: 0; }

  /* Reviews 3-column grid */
  .reviews .container {
    max-width: 1200px;
  }
  .review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }

  /* Combine review cards into grid on desktop */
  .reviews .container .review-card { margin-bottom: 0; }
  .reviews .container {
    display: block;
  }
  .reviews .container .section-title { margin-bottom: 40px; }

  /* What you get split */
  .what-you-get .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
  }
  .wyg-media { margin: 0; }

  /* Footer grid */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }
  .footer-logo { margin-left: 0; }

  /* Hide mobile sticky on desktop */
  .sticky-cart { display: none; }

  /* Bigger section padding */
  .how-it-works, .features, .reviews, .what-you-get, .faq { padding: 88px 0; }
  .donation { padding: 72px 0; }

  /* Learn anywhere desktop */
  .learn-anywhere {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 56px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 72px 32px;
  }
  .la-media { aspect-ratio: 4/3; border-radius: var(--r-xl); overflow: hidden; }
  .la-content { text-align: left; padding: 0; }
  .la-content p { margin-left: 0; }
}

@media (min-width: 1024px) {
  .hero-info { padding: 0 48px; }
  .product-title { font-size: 64px; }

  .site-header { padding: 18px 0; }
  .site-logo img { height: 48px; }

  .section-title { font-size: 48px; margin-bottom: 48px; }
}

/* ---------- REVIEWS GRID on bigger screens ---------- */
@media (min-width: 768px) {
  .reviews .container {
    display: block;
  }
  .reviews .container > .review-card:first-of-type { margin-top: 0; }
  .reviews .container > .review-card {
    display: grid;
  }

  /* Actually just stack reviews centered with max-width on desktop */
  .review-card {
    display: grid;
    grid-template-columns: 40% 60%;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
  }
  .review-image { aspect-ratio: auto; height: 100%; }
  .review-quote-mark { bottom: auto; top: 20px; right: -22px; }
}

/* ---------- MOTION PREFERENCES ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .marquee-track, .kw-track { animation: none; }
}

/* ---------- FOCUS STATES ---------- */
:focus-visible {
  outline: 2.5px solid var(--brand-ink);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible { outline-offset: 4px; }
