/* ===================================================
   COOKIE HEAD — LANDING PAGE
   =================================================== */

:root {
  --purple-900: #2A0D5C;
  --purple-800: #3E1480;
  --purple-700: #4A1A8F;
  --purple-600: #5A1FA0;       /* Cookie Head brand purple */
  --purple-500: #7A3DC4;
  --purple-400: #9A5FE3;
  --purple-200: #DCC3FA;
  --purple-100: #EFE2FF;
  --purple-50:  #F8F2FF;

  --pink: #FF2E93;
  --pink-light: #FFB3D1;
  --pink-soft: #FFE6F1;
  --coral: #FF6B3D;

  --yellow: #FFD93D;
  --yellow-glow: #FFEC85;

  --cream: #FFF8EE;
  --cream-2: #FBEEDA;
  --ink: #1A0F08;
  --ink-2: #3A1F0F;
  --gray-600: #5C4D40;
  --gray-500: #7A6B5E;
  --gray-300: #C7BBB0;
  --gray-200: #E8DDD0;

  --radius: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --shadow-sm: 0 4px 12px rgba(45, 14, 92, 0.08);
  --shadow-md: 0 10px 30px rgba(45, 14, 92, 0.12);
  --shadow-lg: 0 30px 80px rgba(45, 14, 92, 0.22);
  --shadow-xl: 0 60px 120px rgba(45, 14, 92, 0.32);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 800px; }

/* ===================================================
   GLOBAL ELEMENTS
   =================================================== */

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple-600);
  background: var(--purple-100);
  padding: 8px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.eyebrow--light {
  color: var(--yellow);
  background: rgba(255, 217, 61, 0.12);
  border: 1px solid rgba(255, 217, 61, 0.3);
}

.section-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(36px, 5.5vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 18px;
}
.section-title--light { color: #fff; }

.section-sub {
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--gray-500);
  max-width: 620px;
  margin: 0 auto;
}
.section-sub--light { color: rgba(255,255,255,0.78); }

.hl {
  background: linear-gradient(180deg, transparent 62%, var(--yellow) 62%);
  padding: 0 6px;
}
.hl-pink { color: var(--pink); }
.hl-yellow { color: var(--yellow); }

.stars { display: inline-flex; gap: 2px; }
.stars svg { width: 16px; height: 16px; fill: var(--yellow); }
.stars--big svg {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 2px 4px rgba(255,217,61,0.4));
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  text-align: center;
  padding: 14px 28px;
  border-radius: 100px;
  border: 0;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn--small {
  padding: 11px 18px;
  font-size: 14px;
  background: var(--purple-600);
}

.btn--medium { padding: 14px 26px; font-size: 15px; }

.btn--primary {
  background: linear-gradient(135deg, var(--pink) 0%, var(--coral) 100%);
  box-shadow:
    0 12px 24px rgba(255, 46, 147, 0.35),
    inset 0 -3px 0 rgba(0,0,0,0.15);
}
.btn--primary:hover {
  box-shadow:
    0 22px 44px rgba(255, 46, 147, 0.5),
    inset 0 -3px 0 rgba(0,0,0,0.15);
}

.btn--white {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.btn--giant {
  padding: 22px 42px;
  font-size: 20px;
  border-radius: 22px;
  min-width: 320px;
  letter-spacing: 0.01em;
}
.btn--giant .btn__main {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.02em;
}
.btn--giant .btn__sub {
  font-size: 12px;
  font-weight: 600;
  opacity: 0.88;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ===================================================
   STICKY OFFER BAR
   =================================================== */
.offer-bar {
  background: linear-gradient(90deg, var(--purple-900) 0%, var(--ink) 100%);
  color: #fff;
  font-size: 14px;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.offer-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 11px 16px;
  max-width: 1240px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.offer-bar__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 0 var(--pink);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,46,147,0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(255,46,147,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,46,147,0); }
}
.offer-bar__text { font-weight: 500; }
.offer-bar__text strong { color: var(--yellow); font-weight: 800; letter-spacing: 0.04em; }
.offer-bar__countdown {
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  color: var(--yellow);
  padding: 2px 8px;
  background: rgba(255,217,61,0.15);
  border-radius: 6px;
  margin-left: 4px;
}
.offer-bar__cta {
  background: var(--pink);
  color: #fff;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  letter-spacing: 0.05em;
  transition: transform .15s ease;
}
.offer-bar__cta:hover { transform: translateY(-1px); }

/* ===================================================
   NAV
   =================================================== */
.nav {
  position: sticky;
  top: 41px;
  z-index: 90;
  background: rgba(255,248,238,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(45, 14, 92, 0.08);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 24px;
  max-width: 1240px;
  margin: 0 auto;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__logo-mark {
  width: 38px;
  height: 38px;
  object-fit: contain;
}
.nav__logo-mark--light { filter: brightness(0) invert(1); }
.nav__logo-text {
  font-family: 'Archivo Black', sans-serif;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--purple-600);
  text-transform: lowercase;
}
.nav__links {
  display: flex;
  gap: 28px;
  font-weight: 600;
  font-size: 15px;
}
.nav__links a {
  transition: color .15s ease;
  color: var(--ink);
}
.nav__links a:hover { color: var(--purple-600); }

/* ===================================================
   HERO
   =================================================== */
.hero {
  position: relative;
  padding: 0 0 0;
  overflow: hidden;
  background: linear-gradient(180deg, var(--purple-50) 0%, var(--cream) 60%);
}

/* Subtle background image with strong tint */
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.hero__bg-img {
  position: absolute;
  inset: 0;
}
.hero__bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  filter: saturate(1.1);
}
.hero__bg-tint {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(90, 31, 160, 0.25) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(255, 46, 147, 0.18) 0%, transparent 50%),
    linear-gradient(180deg, rgba(255,248,238,0.2) 0%, var(--cream) 95%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 90px;
  min-height: 700px;
}

.hero__copy { position: relative; z-index: 3; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero__eyebrow-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--pink);
  animation: pulse 1.6s infinite;
}

.hero__headline {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(48px, 6.6vw, 92px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 28px;
}
.hero__free {
  display: inline-block;
  color: var(--pink);
  text-shadow: 5px 5px 0 rgba(255,46,147,0.15);
  letter-spacing: -0.03em;
  font-size: 1.15em;
  margin-right: 8px;
}
.hero__price-row {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  margin-right: 8px;
}
.hero__price-strike {
  color: var(--purple-600);
  position: relative;
  padding: 0 6px;
}
.hero__price-strike::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -2%;
  right: -2%;
  height: 8px;
  background: var(--pink);
  transform: rotate(-3deg);
  border-radius: 4px;
}
.hero__price-of {
  font-size: 0.5em;
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gray-500);
}

.hero__sub {
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--gray-600);
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.55;
}
.hero__sub strong { color: var(--ink); font-weight: 700; }
.hero__sub-line { display: block; margin-top: 8px; font-size: 0.95em; color: var(--gray-500); }

.hero__ctas {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.store-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.store-row--center { justify-content: center; }
.store-img-btn {
  display: inline-block;
  transition: transform .15s ease;
  border-radius: 12px;
  overflow: hidden;
}
.store-img-btn:hover { transform: translateY(-2px); }
.store-img-btn img {
  height: 48px;
  width: auto;
  display: block;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--gray-500);
}
.hero__trust strong { color: var(--ink); }

/* Hero visual — real cookie photos */
.hero__visual {
  position: relative;
  height: 600px;
  width: 100%;
}

.hero__cookie {
  position: absolute;
  display: block;
}
.hero__cookie img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 25px 40px rgba(45, 14, 92, 0.35));
}
.hero__cookie--main {
  width: 78%;
  top: 18%;
  left: 8%;
  z-index: 2;
  animation: floatA 7s ease-in-out infinite;
}
.hero__cookie--2 {
  width: 44%;
  bottom: 8%;
  right: 6%;
  z-index: 3;
  animation: floatB 6s ease-in-out infinite;
  transform: rotate(8deg);
}
.hero__cookie--3 {
  width: 36%;
  top: 4%;
  right: 4%;
  z-index: 1;
  animation: floatC 8s ease-in-out infinite;
  transform: rotate(-12deg);
  opacity: 0.92;
}
@keyframes floatA {
  0%,100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-18px) rotate(2deg); }
}
@keyframes floatB {
  0%,100% { transform: translateY(0) rotate(8deg); }
  50% { transform: translateY(-12px) rotate(14deg); }
}
@keyframes floatC {
  0%,100% { transform: translateY(0) rotate(-12deg); }
  50% { transform: translateY(-10px) rotate(-6deg); }
}

.hero__price-tag {
  position: absolute;
  top: 4%;
  left: -2%;
  z-index: 4;
  background: var(--yellow);
  color: var(--ink);
  padding: 16px 22px;
  border-radius: 18px;
  text-align: center;
  border: 3px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  font-family: 'Archivo Black', sans-serif;
  transform: rotate(-7deg);
  animation: float 4.5s ease-in-out infinite;
}
.hero__price-tag-strike {
  font-size: 20px;
  text-decoration: line-through;
  text-decoration-color: var(--pink);
  text-decoration-thickness: 3px;
  opacity: 0.75;
  margin-bottom: 2px;
}
.hero__price-tag-free {
  font-size: 48px;
  letter-spacing: -0.03em;
  color: var(--pink);
  line-height: 0.9;
}
.hero__price-tag-sub {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 6px;
  opacity: 0.85;
}
@keyframes float {
  0%,100% { transform: rotate(-7deg) translateY(0); }
  50% { transform: rotate(-7deg) translateY(-8px); }
}

.hero__badge {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  border-radius: 16px;
  font-family: 'Archivo Black', sans-serif;
  border: 2px solid var(--ink);
  box-shadow: 0 12px 24px rgba(0,0,0,0.25);
}
.hero__badge-num {
  font-size: 30px;
  color: var(--yellow);
  line-height: 1;
}
.hero__badge-text {
  font-size: 11px;
  letter-spacing: 0.08em;
  line-height: 1.05;
  color: #fff;
}
.hero__badge--cookies {
  bottom: 18%;
  left: 0;
  transform: rotate(-6deg);
}
.hero__badge--shakes {
  top: 38%;
  right: -3%;
  transform: rotate(7deg);
  background: var(--pink);
  border-color: var(--pink);
}
.hero__badge--shakes .hero__badge-num { color: var(--yellow); }

/* Marquee */
.hero__marquee {
  position: relative;
  z-index: 5;
  background: var(--ink);
  color: var(--yellow);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
  font-family: 'Archivo Black', sans-serif;
  font-size: 16px;
  letter-spacing: 0.08em;
  border-top: 3px solid var(--pink);
  border-bottom: 3px solid var(--pink);
}
.marquee {
  display: inline-flex;
  animation: scroll 30s linear infinite;
}
.marquee span { padding-right: 40px; }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===================================================
   AS PRESS
   =================================================== */
.aspress {
  padding: 40px 0;
  background: #fff;
  border-bottom: 1px solid var(--gray-200);
}
.aspress__label {
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 22px;
}
.aspress__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 44px;
  align-items: center;
  font-family: 'Archivo Black', sans-serif;
  letter-spacing: 0.1em;
  font-size: 18px;
  color: var(--ink);
  opacity: 0.6;
}
.aspress__logos span { transition: opacity .2s ease; }
.aspress__logos span:hover { opacity: 1; }

/* ===================================================
   OFFER STACK
   =================================================== */
.offer {
  padding: 110px 0;
  background: var(--cream);
}
.offer__head {
  text-align: center;
  margin-bottom: 56px;
}

.stack {
  max-width: 860px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 3px solid var(--ink);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.stack__row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px 28px;
  border-bottom: 1px solid var(--gray-200);
  position: relative;
}
.stack__row:last-child { border-bottom: 0; }

.stack__row--head {
  background: var(--ink);
  color: var(--cream);
  font-family: 'Archivo Black', sans-serif;
  font-size: 13px;
  letter-spacing: 0.14em;
  padding: 16px 28px;
}

.stack__item {
  display: flex;
  gap: 18px;
  align-items: center;
}
.stack__icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  background: var(--purple-50);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 2px solid var(--ink);
}
.stack__icon img {
  width: 92%;
  height: 92%;
  object-fit: contain;
}

.stack__icon--shake {
  background: linear-gradient(135deg, var(--pink) 0%, var(--coral) 100%);
  color: #fff;
  font-family: 'Archivo Black', sans-serif;
  font-size: 14px;
  letter-spacing: 0.04em;
}
.stack__icon--bonus { background: var(--purple-100); }
.stack__icon--phone { background: var(--purple-200); }
.stack__icon--phone svg { width: 32px; height: 32px; }

.stack__item h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 2px;
  line-height: 1.2;
}
.stack__item p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.4;
}

.stack__value {
  font-family: 'Archivo Black', sans-serif;
  font-size: 22px;
  color: var(--ink);
  text-decoration: line-through;
  text-decoration-color: var(--pink);
  text-decoration-thickness: 3px;
  white-space: nowrap;
}

.stack__row--shake { background: var(--pink-soft); }
.stack__row--bonus {
  background: linear-gradient(90deg, var(--purple-100) 0%, #fff 100%);
}
.stack__bonus-pill {
  position: absolute;
  top: 50%;
  left: -1px;
  transform: translateY(-50%);
  background: var(--purple-600);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: 0 100px 100px 0;
}
.stack__row--bonus { padding-left: 90px; }

.stack__total {
  background: linear-gradient(135deg, var(--purple-900) 0%, var(--ink) 100%);
  color: #fff;
  padding: 24px 28px;
}
.stack__total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-family: 'Archivo Black', sans-serif;
  font-size: 18px;
}
.stack__total-strike {
  text-decoration: line-through;
  text-decoration-color: var(--pink);
  text-decoration-thickness: 3px;
  opacity: 0.85;
}
.stack__total-row--final {
  border-top: 2px dashed rgba(255,255,255,0.22);
  margin-top: 8px;
  padding-top: 16px;
  font-size: 22px;
}
.stack__total-final {
  color: var(--yellow);
  font-size: 40px;
  text-shadow: 0 2px 16px rgba(255,217,61,0.4);
}

.stack__cta {
  background: var(--yellow-glow);
  padding: 36px 28px;
  text-align: center;
}
.stack__cta-note {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 20px;
  font-size: 13px;
  color: var(--ink-2);
  max-width: 500px;
  text-align: left;
  line-height: 1.5;
}
.stack__cta-note svg { flex-shrink: 0; margin-top: 2px; color: var(--purple-600); }

/* ===================================================
   FLAVOR GALLERY
   =================================================== */
.flavors {
  padding: 110px 0;
  background:
    radial-gradient(ellipse at top, var(--purple-50) 0%, var(--cream) 70%);
}
.flavors__head {
  text-align: center;
  margin-bottom: 64px;
}
.flavors__head .section-sub { margin: 0 auto; }

.flavors__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.flavor {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 18px 18px 20px;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
  cursor: default;
  text-align: left;
  box-shadow: 4px 4px 0 var(--ink);
}
.flavor:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--ink);
}

.flavor__img {
  aspect-ratio: 1 / 1;
  background: var(--purple-50);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border: 2px solid var(--ink);
}
.flavor__img img {
  width: 88%;
  height: 88%;
  object-fit: contain;
  filter: drop-shadow(0 8px 12px rgba(0,0,0,0.2));
}
.flavor h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 16px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  color: var(--ink);
}
.flavor p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.4;
  min-height: 54px;
}
.flavor__tag {
  display: inline-block;
  margin-top: 10px;
  background: var(--ink);
  color: var(--yellow);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 4px 8px;
  border-radius: 6px;
}
.flavor__tag--hot { background: var(--pink); color: #fff; }
.flavor__tag--vgf { background: var(--purple-600); color: #fff; }

.flavors__cta {
  text-align: center;
  margin-top: 48px;
}

/* ===================================================
   WHY
   =================================================== */
.why {
  position: relative;
  padding: 120px 0;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}
.why__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.why__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}
.why::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 15% 20%, var(--purple-700) 0%, transparent 50%),
    radial-gradient(circle at 85% 80%, var(--pink) 0%, transparent 50%),
    linear-gradient(180deg, rgba(26,15,8,0.65), rgba(26,15,8,0.85));
  pointer-events: none;
}
.why .container { position: relative; z-index: 2; }
.why__head {
  text-align: center;
  margin-bottom: 70px;
}
.why__head .section-sub--light { margin: 0 auto; }

.why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1080px;
  margin: 0 auto;
}
.why__card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease;
}
.why__card:hover {
  transform: translateY(-8px);
  border-color: var(--yellow);
}
.why__img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--purple-700);
}
.why__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.why__card:hover .why__img img {
  transform: scale(1.06);
}
.why__body { padding: 28px 32px 36px; }
.why__num {
  font-family: 'Archivo Black', sans-serif;
  font-size: 44px;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 12px;
  opacity: 0.95;
}
.why__card h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 26px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.why__card p {
  color: rgba(255,255,255,0.78);
  font-size: 15px;
  line-height: 1.55;
}

/* ===================================================
   REVIEWS
   =================================================== */
.reviews {
  padding: 110px 0;
  background: var(--cream);
}
.reviews__head {
  text-align: center;
  margin-bottom: 64px;
}
.reviews__metric {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(20px, 2.5vw, 30px);
  color: var(--ink);
  background: var(--yellow);
  padding: 10px 24px;
  border-radius: 100px;
  border: 3px solid var(--ink);
  margin-top: 12px;
  white-space: normal;
  box-shadow: 4px 4px 0 var(--ink);
}

.reviews__hero {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 32px;
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: 6px 6px 0 var(--ink);
}
.reviews__photo {
  position: relative;
  overflow: hidden;
  background: var(--purple-100);
  min-height: 360px;
}
.reviews__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reviews__photo-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
}
.reviews__featured {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.reviews__featured blockquote {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 16px 0 18px;
}
.reviews__featured p {
  color: var(--gray-600);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.reviews__author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.reviews__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-500), var(--pink));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Archivo Black', sans-serif;
  font-size: 20px;
  color: #fff;
  flex-shrink: 0;
}
.reviews__name { font-weight: 800; font-size: 15px; }
.reviews__meta { font-size: 13px; color: var(--gray-500); }

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 60px;
}

.review {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform .2s ease, box-shadow .2s ease;
}
.review:hover {
  transform: translate(-2px,-2px);
  box-shadow: 8px 8px 0 var(--ink);
}
.review h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 18px;
  line-height: 1.2;
  margin: 14px 0 10px;
  letter-spacing: -0.01em;
}
.review p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.5;
  margin-bottom: 20px;
}
.review__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.review__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Archivo Black', sans-serif;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
}
.review__avatar--1 { background: linear-gradient(135deg, var(--purple-500), var(--pink)); }
.review__avatar--2 { background: linear-gradient(135deg, var(--yellow), var(--coral)); color: var(--ink); }
.review__avatar--3 { background: linear-gradient(135deg, var(--ink), var(--purple-700)); }
.review__name { font-weight: 800; font-size: 14px; }
.review__meta { font-size: 12px; color: var(--gray-500); }

.reviews__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 4px 4px 0 var(--ink);
}
.stat { text-align: center; }
.stat__num {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(28px, 3.5vw, 48px);
  color: var(--purple-600);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}
.stat__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ===================================================
   HOW IT WORKS
   =================================================== */
.how {
  padding: 100px 0;
  background: var(--purple-100);
}
.how__head {
  text-align: center;
  margin-bottom: 60px;
}
.how__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.how__step {
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  box-shadow: 6px 6px 0 var(--ink);
  position: relative;
}
.how__step-num {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  background: var(--pink);
  color: #fff;
  border: 3px solid var(--ink);
  border-radius: 50%;
  font-family: 'Archivo Black', sans-serif;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.how__step h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 20px;
  margin: 16px 0 10px;
}
.how__step p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.5;
}
.how__arrow {
  font-family: 'Archivo Black', sans-serif;
  font-size: 40px;
  color: var(--purple-600);
}

/* ===================================================
   FAQ
   =================================================== */
.faq {
  padding: 100px 0;
  background: var(--cream);
}
.faq__head {
  text-align: center;
  margin-bottom: 48px;
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__item {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  transition: box-shadow .2s ease;
}
.faq__item[open] { box-shadow: 4px 4px 0 var(--ink); }
.faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 28px;
  font-family: 'Archivo Black', sans-serif;
  font-size: 17px;
  position: relative;
  padding-right: 60px;
  letter-spacing: -0.005em;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  font-weight: 300;
  color: var(--purple-600);
  transition: transform .25s ease;
  line-height: 1;
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__item p {
  padding: 0 28px 24px;
  color: var(--gray-600);
  font-size: 15px;
  line-height: 1.6;
}

/* ===================================================
   FINAL CTA
   =================================================== */
.finalcta {
  padding: 130px 0;
  position: relative;
  color: #fff;
  overflow: hidden;
  text-align: center;
  background: var(--purple-900);
}
.finalcta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.finalcta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}
.finalcta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 20% 30%, var(--purple-700) 0%, transparent 55%),
    radial-gradient(circle at 80% 70%, var(--pink) 0%, transparent 50%),
    linear-gradient(180deg, rgba(42,13,92,0.7) 0%, rgba(26,15,8,0.9) 100%);
}
.finalcta__inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
}
.finalcta__headline {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(40px, 6.5vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.finalcta__sub {
  font-size: clamp(16px, 1.3vw, 19px);
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  line-height: 1.5;
}
.finalcta__sub strong { color: var(--yellow); }
.finalcta .store-row {
  margin-top: 24px;
  margin-bottom: 40px;
}
.finalcta__guarantee {
  display: inline-flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 18px 24px;
  border-radius: 14px;
  max-width: 580px;
  line-height: 1.5;
  backdrop-filter: blur(8px);
}
.finalcta__guarantee svg { flex-shrink: 0; color: var(--yellow); margin-top: 1px; }
.finalcta__guarantee strong { color: #fff; }

/* ===================================================
   FOOTER
   =================================================== */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}
.footer__top {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 32px;
}
.footer__top .nav__logo-text { color: #fff; }
.footer__tag {
  font-style: italic;
  color: var(--yellow);
  font-family: 'Caveat', cursive;
  font-size: 24px;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}
.footer__cols h4 {
  color: #fff;
  font-family: 'Archivo Black', sans-serif;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer__cols a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  transition: color .15s ease;
}
.footer__cols a:hover { color: var(--yellow); }
.footer__base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
}
.footer__base a { color: rgba(255,255,255,0.6); margin: 0 6px; }
.footer__base a:hover { color: var(--yellow); }

/* ===================================================
   MOBILE CTA
   =================================================== */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: linear-gradient(135deg, var(--pink) 0%, var(--coral) 100%);
  color: #fff;
  padding: 14px 20px;
  border-radius: 16px;
  text-align: center;
  font-family: 'Archivo Black', sans-serif;
  z-index: 80;
  box-shadow: 0 12px 30px rgba(255, 46, 147, 0.45);
}
.mobile-cta__main {
  display: block;
  font-size: 15px;
  letter-spacing: 0.02em;
}
.mobile-cta__sub {
  display: block;
  font-size: 11px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  opacity: 0.9;
  letter-spacing: 0.04em;
  margin-top: 2px;
  text-transform: uppercase;
}

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

@media (max-width: 1100px) {
  .flavors__grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 40px;
    padding-bottom: 60px;
  }
  .hero__visual {
    height: 460px;
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }
  .reviews__hero { grid-template-columns: 1fr; }
  .reviews__photo { min-height: 280px; }
  .reviews__grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .how__grid { grid-template-columns: 1fr; gap: 32px; }
  .how__arrow { transform: rotate(90deg); justify-self: center; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .flavors__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  .nav__links { display: none; }
  .nav .btn--small { display: none; }
  .offer-bar { font-size: 11px; }
  .offer-bar__inner { gap: 6px; padding: 7px 10px; flex-wrap: nowrap; }
  .offer-bar__text { font-size: 11px; }
  .offer-bar__cta { padding: 5px 10px; font-size: 11px; flex-shrink: 0; }
  .offer-bar__countdown { padding: 1px 6px; }
  .nav { top: 41px; }
  .nav__inner { padding: 10px 16px; justify-content: flex-start; }
  .nav__logo-text { font-size: 17px; white-space: nowrap; }
  .nav__logo-mark { width: 32px; height: 32px; }

  .hero { padding-top: 0; }
  .hero__inner { padding-top: 24px; padding-bottom: 32px; min-height: 0; }
  .hero__headline { font-size: clamp(40px, 11vw, 64px); }
  .hero__price-row { gap: 6px; }
  .hero__price-of { font-size: 0.45em; }
  .hero__sub { font-size: 16px; }
  .hero__visual { height: 340px; max-width: 100%; }

  .hero__price-tag { left: 0; top: 0; transform: rotate(-7deg) scale(0.78); transform-origin: top left; }
  .hero__badge--cookies { left: 0; transform: rotate(-6deg) scale(0.85); transform-origin: bottom left; }
  .hero__badge--shakes { right: 0; transform: rotate(7deg) scale(0.85); transform-origin: top right; }

  .btn--giant { min-width: 0; width: 100%; padding: 20px 28px; }
  .btn--giant .btn__main { font-size: 16px; }
  .hero__ctas { width: 100%; }
  .store-row { width: 100%; justify-content: space-between; }
  .store-img-btn img { height: 44px; }

  .offer, .why, .reviews, .how, .faq, .flavors { padding: 70px 0; }
  .finalcta { padding: 80px 0; }

  .stack__row { padding: 16px 18px; grid-template-columns: 1fr; }
  .stack__row--head { display: none; }
  .stack__row--bonus { padding-left: 18px; padding-top: 32px; }
  .stack__bonus-pill { top: 8px; left: 18px; transform: none; border-radius: 100px; }
  .stack__value { justify-self: flex-start; padding-left: 80px; font-size: 18px; }
  .stack__item h3 { font-size: 15px; }
  .stack__item p { font-size: 12px; }
  .stack__icon { width: 56px; height: 56px; }
  .stack__icon--phone svg { width: 26px; height: 26px; }
  .stack__total { padding: 20px; }
  .stack__total-row { font-size: 14px; }
  .stack__total-row--final { font-size: 16px; }
  .stack__total-final { font-size: 32px; }
  .stack__cta { padding: 28px 16px; }

  .flavors__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .flavor { padding: 12px 12px 14px; }
  .flavor h3 { font-size: 14px; }
  .flavor p { font-size: 12px; min-height: 48px; }
  .flavor__tag { font-size: 9px; padding: 3px 6px; }

  .why__body { padding: 22px 22px 28px; }
  .why__card h3 { font-size: 22px; }
  .why__num { font-size: 36px; }

  .reviews__featured { padding: 28px 26px; }
  .reviews__featured blockquote { font-size: 22px; }
  .reviews__stats { grid-template-columns: repeat(2, 1fr); padding: 24px 16px; }

  .footer__cols { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer__top { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer__base { flex-direction: column; align-items: flex-start; text-align: left; }

  body { padding-bottom: 84px; }
  .mobile-cta { display: block; }
}

@media (max-width: 480px) {
  .flavors__grid { gap: 12px; }
  .aspress__logos { gap: 22px; font-size: 14px; }
  .hero__visual { height: 280px; }
}
