:root {
  --peach: #ffa37d;
  --pink-bg: #ffd1df;
  --pink-grid: rgba(224, 116, 143, 0.25);
  --pink-darker: #ffb8ca;
  --rose: #ffc7d7;
  --rose-light: #ffe8ee;
  --cream: #fffaf4;
  --cream-soft: #fffaf4;
  --cherry: #7a1623;
  --cherry-light: #9e2433;
  --cocoa: #4b231f;
  --muted: #7d4640;
  
  /* Pastel Palette for Cards */
  --bg-blue: #e0f2ff;
  --bg-green: #e1f4e0;
  --bg-pink-light: #ffe6f0;
  --bg-orange: #ffe8d6;
  --bg-yellow: #fff5c0;
  
  --ink: #331b1b;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--pink-bg);
  /* Retro Grid Pattern */
  background-image: 
    linear-gradient(var(--pink-grid) 1.5px, transparent 1.5px),
    linear-gradient(90deg, var(--pink-grid) 1.5px, transparent 1.5px);
  background-size: 30px 30px;
  background-position: center top;
  overflow-x: hidden;
}

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

/* Base Helpers */
.container {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 60px 20px;
}

.text-center {
  text-align: center;
}

.section-title {
  margin: 0 0 10px 0;
  color: var(--cherry);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(36px, 4.5vw, 54px);
  font-weight: 700;
  text-align: center;
}

.section-subtitle {
  text-align: center;
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 40px;
  font-weight: 600;
}

/* Section Background Utilities */
.bg-cream-sec,
.bg-pink-sec,
.bg-dark-sec,
.bg-pink-grid-sec {
  position: relative;
  padding: 40px 0;
}
.bg-cream-sec { background-color: var(--cream); }
.bg-pink-sec { background-color: var(--pink-bg); }
.bg-dark-sec { background-color: var(--pink-darker); }
.bg-pink-grid-sec {
  background-color: var(--pink-bg);
  background-image:
    linear-gradient(var(--pink-grid) 1.5px, transparent 1.5px),
    linear-gradient(90deg, var(--pink-grid) 1.5px, transparent 1.5px);
  background-size: 30px 30px;
  background-position: center top;
}

/* Organic section flow: each section's own bottom edge is clipped into a wave, so the next section shows through naturally. */
.hero-section {
  background-color: var(--pink-bg);
  background-image:
    linear-gradient(var(--pink-grid) 1.5px, transparent 1.5px),
    linear-gradient(90deg, var(--pink-grid) 1.5px, transparent 1.5px);
  background-size: 30px 30px;
  background-position: center top;
}
.landing-shell > section,
.landing-shell > footer {
  --flow-wave: clamp(56px, 7vw, 96px);
}
.landing-shell > section {
  margin-bottom: calc(var(--flow-wave) * -1);
  padding-bottom: calc(var(--flow-wave) + 36px);
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - var(--flow-wave) + 24px),
    91% calc(100% - var(--flow-wave) + 44px),
    79% calc(100% - var(--flow-wave) + 40px),
    66% calc(100% - var(--flow-wave) + 18px),
    52% calc(100% - var(--flow-wave) + 8px),
    38% calc(100% - var(--flow-wave) + 26px),
    25% calc(100% - var(--flow-wave) + 38px),
    14% calc(100% - var(--flow-wave) + 34px),
    6% calc(100% - var(--flow-wave) + 16px),
    0 calc(100% - var(--flow-wave))
  );
}
.landing-shell > section:nth-of-type(2n + 1) {
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - var(--flow-wave) + 10px),
    86% calc(100% - var(--flow-wave) + 32px),
    72% calc(100% - var(--flow-wave) + 44px),
    58% calc(100% - var(--flow-wave) + 36px),
    45% calc(100% - var(--flow-wave) + 14px),
    32% calc(100% - var(--flow-wave) + 8px),
    19% calc(100% - var(--flow-wave) + 30px),
    8% calc(100% - var(--flow-wave) + 42px),
    0 calc(100% - var(--flow-wave) + 28px)
  );
}
.landing-shell > footer {
  padding-top: calc(var(--flow-wave) + 32px);
}

.landing-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 10px;
}

/* NAV */
.top-nav {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr 1fr auto 1fr 1fr;
  align-items: center;
  min-height: 86px;
  padding: 16px clamp(24px, 5vw, 72px) 0;
}
.nav-link, .nav-button {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cherry);
}
.nav-link:nth-child(2) { justify-self: start; }
.nav-link:nth-child(4), .nav-button { justify-self: end; }
.brand-mark {
  color: var(--cherry);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.02em;
}
.nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 20px;
  border: 2px solid var(--cherry);
  border-radius: 999px;
  background: var(--cream);
  color: var(--cherry);
  box-shadow: 2px 2px 0px var(--cherry);
  transition: transform 0.1s, box-shadow 0.1s;
}
.nav-button:hover {
  transform: translate(2px, 2px);
  box-shadow: 0px 0px 0px var(--cherry);
}

/* HERO */
.hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 20px 60px 20px;
}
.main-card {
  background: var(--cream);
  border: 3px solid var(--cherry);
  border-radius: 32px;
  box-shadow: 12px 12px 0px var(--cherry);
  width: min(1200px, 100%);
  overflow: hidden;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  padding: clamp(40px, 6vw, 80px);
  gap: 40px;
}
.cursive-accent {
  font-family: 'Caveat', cursive;
  color: var(--cherry-light);
  font-size: clamp(28px, 3.5vw, 36px);
  transform: rotate(-4deg);
  margin-bottom: 10px;
  margin-left: -10px;
}
h1 {
  margin: 0;
  color: var(--cherry);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(48px, 5.5vw, 76px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.hero-copy {
  max-width: 480px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 600;
  line-height: 1.6;
}

/* Buttons & Pricing */
.price-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 32px;
}
.current-price {
  color: var(--cherry);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 700;
  line-height: 1;
}
.old-price {
  color: rgba(122, 22, 35, 0.5);
  font-size: 20px;
  font-weight: 700;
  text-decoration: line-through;
}
.sale-pill {
  padding: 8px 16px;
  border: 2px solid var(--cherry);
  border-radius: 999px;
  background: var(--rose);
  color: var(--cherry);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 2px 2px 0px var(--cherry);
  transform: rotate(-2deg);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}
.primary-cta, .secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 32px;
  border: 2px solid var(--cherry);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.1s, box-shadow 0.1s;
}
.primary-cta {
  background: var(--cherry);
  color: var(--cream);
  box-shadow: 4px 4px 0px rgba(122, 22, 35, 0.3);
}
.primary-cta:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0px rgba(122, 22, 35, 0.3);
}
.secondary-cta {
  background: var(--cream);
  color: var(--cherry);
  box-shadow: 4px 4px 0px rgba(122, 22, 35, 0.3);
}
.secondary-cta:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0px rgba(122, 22, 35, 0.3);
}

/* Product Stage - "Sticker" aesthetic */
.product-stage {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
}
.image-wrapper {
  position: relative;
  z-index: 2;
  filter: drop-shadow(8px 8px 0px var(--cherry));
}
.product-image {
  width: min(100%, 500px);
  aspect-ratio: 1884 / 1262;
  object-fit: contain;
  filter: 
    saturate(1.05)
    drop-shadow(0px 0px 1px white)
    drop-shadow(2px 2px 0px white)
    drop-shadow(-2px -2px 0px white)
    drop-shadow(2px -2px 0px white)
    drop-shadow(-2px 2px 0px white);
  transform: rotate(2deg);
  transition: transform 0.3s ease;
}
.product-image:hover { transform: rotate(0deg) scale(1.02); }

/* Floating Retro Tags */
.floating-tag {
  position: absolute;
  z-index: 3;
  padding: 8px 16px;
  background: var(--cream);
  border: 2px solid var(--cherry);
  border-radius: 999px;
  color: var(--cherry);
  font-family: 'Caveat', cursive;
  font-size: 22px;
  font-weight: 600;
  box-shadow: 3px 3px 0px var(--cherry);
  white-space: nowrap;
}
.tag-1 { top: -10px; right: 10px; transform: rotate(6deg); background: var(--rose-light); }
.tag-2 { bottom: 50px; left: -10px; transform: rotate(-8deg); background: var(--bg-green); }
.tag-3 { bottom: 10px; right: 20px; transform: rotate(4deg); background: var(--bg-yellow); }

/* PROBLEM STRIP */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.problem-card {
  background: var(--cream);
  border: 2px solid var(--cherry);
  border-radius: 16px;
  padding: 28px 34px 34px;
  box-shadow: 4px 4px 0px rgba(122, 22, 35, 0.15);
  text-align: center;
  overflow: hidden;
}
.problem-photo {
  display: block;
  width: min(250px, 76%);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 2px solid rgba(122, 22, 35, 0.9);
  border-radius: 18px;
  margin: 0 auto 24px;
  box-shadow: 0 10px 24px rgba(122, 22, 35, 0.12);
}
.problem-card h3 {
  color: var(--cherry);
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 40px);
  margin: 0 0 8px 0;
}
.problem-card p {
  color: var(--muted);
  font-size: clamp(16px, 1.8vw, 24px);
  margin: 0;
  line-height: 1.5;
  max-width: 620px;
  margin-inline: auto;
}

/* THE SCALP SIGNAL */
.scalp-signal {
  /* Using bg-dark-sec wrapper */
  background-image: radial-gradient(var(--cherry) 1px, transparent 1px);
  background-size: 20px 20px;
}
.signal-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.signal-text h2 {
  color: var(--cherry);
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 52px);
  margin: 0 0 20px 0;
}
.signal-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0 0;
}
.signal-list li {
  color: var(--cherry);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Polaroid Styles */
.signal-visuals {
  position: relative;
  height: 400px;
}
.polaroid {
  position: absolute;
  background: white;
  padding: 12px 12px 40px 12px;
  border: 2px solid var(--cherry);
  box-shadow: 6px 6px 0px var(--cherry);
  width: 240px;
  border-radius: 4px;
}
.p-tilt-right {
  transform: rotate(6deg);
  z-index: 2;
}
.p-tilt-left {
  transform: rotate(-8deg);
  z-index: 1;
}
.signal-visuals .p-tilt-right {
  top: 20px;
  right: 20px;
}
.signal-visuals .p-tilt-left {
  top: 60px;
  left: 20px;
}
.polaroid-photo {
  width: 100%;
  aspect-ratio: 1/1;
  background-color: var(--rose);
  border: 2px solid var(--cherry);
}
.block-pore { background: linear-gradient(45deg, #ffd1df, #ffb8ca); }
.healthy-root { background: linear-gradient(45deg, #e1f4e0, #a9dea1); }

.polaroid-caption {
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  text-align: center;
  font-family: 'Caveat', cursive;
  font-size: 22px;
  color: var(--cherry);
}
.drawn-arrow {
  position: absolute;
  font-family: 'Caveat', cursive;
  font-size: 28px;
  color: var(--cherry);
  font-weight: 700;
}
.arrow-signal {
  bottom: -20px;
  right: 60px;
  transform: rotate(-15deg);
  z-index: 3;
}

/* SCALP ANALYSIS FORM */
.analysis-section {
  position: relative;
  z-index: 4;
}
.analysis-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1.22fr);
  gap: 36px 46px;
  padding: clamp(32px, 5vw, 58px);
}
.analysis-intro {
  align-self: start;
}
.analysis-intro h2 {
  color: var(--cherry);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 1.05;
  margin: 0 0 18px;
}
.analysis-intro p {
  color: var(--muted);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.6;
  margin: 0;
}
.analysis-form {
  min-width: 0;
}
.form-section + .form-section {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 2px dashed rgba(122, 22, 35, 0.28);
}
.form-section h3 {
  color: var(--cherry);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 26px;
  margin: 0 0 16px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.field span,
.option-group p {
  color: var(--cherry);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 2px solid var(--cherry);
  border-radius: 8px;
  background: white;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  padding: 13px 14px;
  outline: none;
  box-shadow: 3px 3px 0 rgba(122, 22, 35, 0.12);
}
.field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--cherry) 50%),
    linear-gradient(135deg, var(--cherry) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% + 1px),
    calc(100% - 12px) calc(50% + 1px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 34px;
}
.field textarea {
  min-height: 110px;
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  box-shadow: 0 0 0 4px rgba(255, 163, 125, 0.35), 3px 3px 0 rgba(122, 22, 35, 0.12);
}
.full-field {
  margin-top: 18px;
}
.option-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.option-group p {
  flex-basis: 100%;
  margin: 0 0 2px;
}
.option-group label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 8px 12px;
  border: 2px solid rgba(122, 22, 35, 0.5);
  border-radius: 999px;
  background: var(--rose-light);
  color: var(--cherry);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}
.option-group input {
  accent-color: var(--cherry);
}
.analysis-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}
button.primary-cta {
  cursor: pointer;
  font-family: inherit;
}
button.primary-cta:disabled {
  cursor: wait;
  opacity: 0.68;
}
.form-status {
  flex: 1 1 240px;
  min-height: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
}
.analysis-result {
  grid-column: 1 / -1;
  padding: 26px;
  border: 2px solid var(--cherry);
  border-radius: 16px;
  background: var(--bg-green);
  box-shadow: 5px 5px 0 rgba(122, 22, 35, 0.16);
}
.result-kicker,
.result-meta span {
  color: var(--cherry);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.analysis-result h3 {
  color: var(--cherry);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 3vw, 40px);
  margin: 8px 0 10px;
}
.analysis-result p {
  max-width: 760px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.6;
  margin: 0;
}
.result-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* WHAT'S IN THE RITUAL (Candy Box) */
.ritual-section {}
.candy-box {
  padding: 60px;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.candy-center {
  text-align: center;
  max-width: 600px;
}
.candy-center h2 {
  color: var(--cherry);
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 48px);
  margin: 10px 0;
}
.candy-center p {
  color: var(--muted);
  font-size: 18px;
  font-weight: 600;
}
.scatter-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  width: 100%;
}
.product-item {
  background: white;
  border: 2px solid var(--cherry);
  border-radius: 20px;
  padding: 30px 20px;
  width: 220px;
  text-align: center;
  box-shadow: 4px 4px 0px rgba(122, 22, 35, 0.1);
  transition: transform 0.2s;
}
.product-item:hover {
  transform: translateY(-5px);
}
.prod-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--cherry);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--cherry);
}
.bg-mint { background: var(--bg-green); }
.bg-rose { background: var(--bg-pink-light); }
.bg-peach { background: var(--bg-orange); }
.bg-yellow { background: var(--bg-yellow); }
.bg-blue { background: var(--bg-blue); }

.product-item h4 {
  margin: 0 0 8px 0;
  color: var(--cherry);
  font-size: 18px;
}
.product-item p {
  margin: 0;
  font-family: 'Caveat', cursive;
  font-size: 20px;
  color: var(--muted);
}

/* HOW IT WORKS */
.step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step-card {
  background: white;
  border: 2px dashed var(--cherry);
  border-radius: 12px;
  padding: 24px;
  position: relative;
}
.step-num {
  display: inline-block;
  background: var(--cherry);
  color: white;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.step-card h3 {
  margin: 0 0 8px 0;
  color: var(--cherry);
  font-family: 'Playfair Display', serif;
  font-size: 24px;
}
.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

/* NEW CHOOSE SCALP TYPE (CATEGORIES) */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}
.category-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.category-oval {
  width: 100%;
  max-width: 200px;
  aspect-ratio: 2.2 / 3.2;
  border-radius: 999px;
  border: 1.5px dashed var(--cherry);
  padding: 6px;
  margin-bottom: 20px;
  background: var(--cream);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.category-item:hover .category-oval {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(122, 22, 35, 0.15);
}
.category-oval img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 999px;
}
.category-item h3 {
  font-family: 'Playfair Display', serif;
  color: var(--cherry);
  font-size: 22px;
  margin: 0 0 6px 0;
}
.category-item p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
  font-weight: 500;
}

/* REAL RESULTS */
.real-results {
  position: relative;
  z-index: 5;
}
.results-bg {
  /* Using bg-dark-sec wrapper instead */
  padding-bottom: 20px;
}

/* VIDEO TESTIMONIALS */
.video-testimonials {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}
.video-card {
  width: 220px;
  aspect-ratio: 9/16;
  border: 2px solid var(--cherry);
  border-radius: 16px;
  box-shadow: 4px 4px 0px var(--cherry);
  overflow: hidden;
  position: relative;
  background-color: var(--cream);
}
.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.p-tilt-right-slight { transform: rotate(2deg); }
.p-tilt-left-slight { transform: rotate(-2deg); }

.review-masonry {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}
.polaroid-review {
  position: relative;
  background: white;
  padding: 12px 12px 40px 12px;
  border: 2px solid var(--cherry);
  box-shadow: 6px 6px 0px var(--cherry);
  width: 260px;
  border-radius: 4px;
}
.result-image-card {
  width: min(420px, 100%);
  transform-origin: center;
}
.result-image-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  filter: drop-shadow(7px 9px 0 var(--cherry));
}
.text-review-card {
  background: var(--cream);
  border: 2px solid var(--cherry);
  border-radius: 20px;
  padding: 30px;
  width: 300px;
  box-shadow: 4px 4px 0px rgba(122, 22, 35, 0.15);
  position: relative;
}
.stars {
  color: #ff9800;
  font-size: 20px;
  margin-bottom: 12px;
}
.text-review-card p {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 16px 0;
}
.text-review-card strong {
  color: var(--cherry);
  font-family: 'Playfair Display', serif;
}
.sticker-badge-1 { transform: rotate(2deg); }
.sticker-badge-2 { transform: rotate(-3deg); }

/* OFFER SECTION */
.offer-section {
  text-align: center;
}
.offer-card {
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.offer-card h2 {
  color: var(--cherry);
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 56px);
  margin: 10px 0 20px;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.faq-card {
  background: white;
  border: 2px solid var(--cherry);
  border-radius: 16px;
  padding: 24px;
}
.faq-card h4 {
  margin: 0 0 12px 0;
  color: var(--cherry);
  font-size: 18px;
}
.faq-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 60px 20px 40px;
  color: var(--peach);
  font-weight: 600;
  background-color: var(--cherry);
  position: relative;
}

.hero-section { z-index: 20; }
.authority-strip { z-index: 19; }
.problem-strip { z-index: 18; }
.scalp-signal { z-index: 17; }
.analysis-section { z-index: 16; }
.ritual-section { z-index: 15; }
.how-it-works { z-index: 14; }
.scalp-types { z-index: 13; }
.real-results { z-index: 12; }
.offer-section { z-index: 11; }
.faq-section { z-index: 10; }
.footer { z-index: 9; }

/* --- NEW ADDITIONS --- */

/* AUTHORITY LOGOS */
.authority-strip {
  /* Using bg-cream-sec */
}
.authority-title {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 24px;
}
.logo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(30px, 6vw, 60px);
}
.fake-logo {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: var(--cherry);
  opacity: 0.6;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* CLEAN BADGES */
.clean-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}
.badge-sticker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: white;
  border: 1.5px solid var(--cherry);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--cherry);
  box-shadow: 2px 2px 0px var(--pink-grid);
  transform: rotate(-1deg);
  transition: transform 0.2s;
}
.badge-sticker:nth-child(even) {
  transform: rotate(2deg);
}
.badge-sticker:hover {
  transform: scale(1.05);
}

/* TEXTURE POLAROIDS */
.relative-container {
  position: relative;
}
.texture-polaroid {
  position: absolute;
  background: white;
  padding: 10px 10px 36px 10px;
  border: 2px solid var(--cherry);
  box-shadow: 4px 4px 0px var(--cherry);
  width: 180px;
  border-radius: 4px;
  z-index: 10;
  display: none; /* Hide on mobile to save space */
}
@media (min-width: 981px) {
  .texture-polaroid { display: block; }
}
.texture-1 {
  top: 40px;
  left: -40px;
  transform: rotate(-12deg);
}
.texture-2 {
  bottom: 40px;
  right: -40px;
  transform: rotate(8deg);
}

/* SCROLL ANIMATION */
.problem-card, .product-item, .step-card, .category-item, .faq-card, .video-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.is-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* URGENCY COMPONENTS */

/* 1. Dispatch Banner (Top Bar) */
.dispatch-banner {
  background: var(--cherry);
  color: var(--cream);
  text-align: center;
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 50;
}
.dispatch-banner strong {
  font-family: 'Courier New', Courier, monospace;
  font-size: 15px;
  color: var(--peach);
  background: rgba(0,0,0,0.2);
  padding: 2px 6px;
  border-radius: 4px;
}

/* 2. Retro Ticket Timer */
.ticket-timer {
  background: var(--bg-yellow);
  border: 2px dashed var(--cherry);
  border-radius: 8px;
  padding: 12px 24px;
  margin: 10px 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  box-shadow: 4px 4px 0px rgba(122, 22, 35, 0.15);
  transform: rotate(-1deg);
}
.timer-label {
  font-family: 'Caveat', cursive;
  font-size: 24px;
  color: var(--cherry);
  font-weight: 600;
}
.timer-clock {
  font-family: 'Courier New', Courier, monospace;
  font-size: 22px;
  font-weight: 800;
  color: var(--cherry);
  background: white;
  padding: 6px 12px;
  border: 2px solid var(--cherry);
  border-radius: 6px;
  letter-spacing: 0.1em;
}

/* 3. Live Purchase Toast */
.live-toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: white;
  border: 2px solid var(--cherry);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 6px 6px 0px rgba(122, 22, 35, 0.15);
  z-index: 100;
  transform: translateY(150px) rotate(-2deg);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none;
  max-width: 320px;
}
.live-toast.show {
  transform: translateY(0) rotate(-2deg);
  opacity: 1;
}
.toast-img {
  width: 48px;
  height: 48px;
  background-color: var(--pink-bg);
  border-radius: 8px;
  border: 1.5px solid var(--cherry);
  background-image: url('./assets/melix-products-cutout.png');
  background-size: cover;
  background-position: center;
}
.toast-text p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}
.toast-text p strong { color: var(--cherry); }
.toast-text .toast-item { font-weight: 800; color: var(--cherry); font-size: 12px; }
.toast-time {
  display: block;
  font-size: 11px;
  color: #999;
  margin-top: 4px;
  font-style: italic;
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; padding: 40px 24px; }
  .hero-copy { margin: 24px auto 0; }
  .price-row, .hero-actions { justify-content: center; }
  .product-stage { margin-top: 60px; }
  .tag-2 { left: 10%; }
  .tag-3 { right: 10%; }
  
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .signal-layout { grid-template-columns: 1fr; }
  .signal-visuals { margin-top: 40px; height: 350px; display: flex; justify-content: center; }
  .signal-visuals .p-tilt-right { right: auto; left: 50%; transform: translateX(-30%) rotate(6deg); }
  .signal-visuals .p-tilt-left { left: auto; right: 50%; transform: translateX(-30%) rotate(-8deg); }
  .analysis-card { grid-template-columns: 1fr; }
  .analysis-intro { text-align: center; }
  .analysis-intro .cursive-accent { margin-left: 0; }
  
  .step-grid { grid-template-columns: repeat(2, 1fr); }
  .category-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
  .faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .dispatch-banner { font-size: 11px; padding: 6px; }
  .dispatch-banner strong { font-size: 13px; }
  
  .live-toast {
    bottom: 16px;
    left: 16px;
    right: 16px;
    max-width: none;
  }

  .top-nav { grid-template-columns: 1fr auto 1fr; gap: 12px; padding: 18px 18px 0; }
  .nav-link { display: none; }
  .brand-mark { grid-column: 2; }
  .nav-button { grid-column: 3; }
  
  h1 { font-size: clamp(38px, 10vw, 48px); }
  .floating-tag { font-size: 18px; padding: 6px 12px; }
  
  .problem-grid { grid-template-columns: 1fr; }
  .step-grid { grid-template-columns: 1fr; }
  .analysis-card { padding: 34px 18px; border-radius: 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .option-group label { width: 100%; border-radius: 8px; }
  .analysis-actions .primary-cta { width: 100%; }
  .analysis-result { padding: 20px; border-radius: 10px; }
  .result-meta .secondary-cta { width: 100%; }
  .category-grid { grid-template-columns: 1fr; gap: 40px; }
  .category-oval { max-width: 240px; }
  
  .candy-box { padding: 40px 20px; }
  
  .video-testimonials {
    gap: 10px;
    justify-content: space-between;
  }
  .video-card {
    flex: 1;
    width: auto;
    border-radius: 10px;
    box-shadow: 2px 2px 0px var(--cherry);
    border-width: 1.5px;
  }
  .p-tilt-right-slight { transform: rotate(1deg); }
  .p-tilt-left-slight { transform: rotate(-1deg); }

  .review-masonry { flex-direction: column; gap: 24px; margin-top: 30px; }
  .polaroid-review, .text-review-card, .result-image-card { width: 100%; max-width: 320px; margin: 0 auto; left: auto !important; right: auto !important; transform: none; }
  /* Keep a subtle rotation for mobile so it still looks like stickers */
  .polaroid-review.p-tilt-left { transform: rotate(-2deg); }
  .polaroid-review.p-tilt-right { transform: rotate(2deg); }
  .result-image-card.p-tilt-left { transform: rotate(-2deg); }
}
