/* ============================================
   ADORABLE ACCOUNTABILITY — Design System
   ============================================ */
/* B10 Fix: tokens centralised — single source of truth */
@import url('tokens.css');

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
  opacity: 0;
  transition: var(--transition);
}

.btn:hover::after {
  opacity: 1;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-primary {
  background: linear-gradient(135deg, var(--sage), var(--sage-dark));
  color: var(--white);
}

.btn-secondary {
  background: var(--white);
  color: var(--sage-dark);
  border: 2px solid var(--sage);
}

.btn-secondary:hover {
  background: var(--sage-light);
}

.btn-accent {
  background: linear-gradient(135deg, var(--gold), var(--peach-dark));
  color: var(--white);
}

.btn-small {
  padding: 10px 24px;
  font-size: 0.9rem;
}

/* --- Section Styles --- */
section {
  padding: 100px 0;
  position: relative;
}

.section-label {
  display: inline-block;
  padding: 6px 20px;
  background: var(--sage-light);
  color: var(--sage-dark);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.section-title {
  margin-bottom: 16px;
  color: var(--charcoal);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--charcoal-light);
  max-width: 600px;
  margin: 0 auto 48px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 248, 240, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(168, 197, 160, 0.2);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--sage-dark);
}

.nav-logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--sage), var(--sage-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--charcoal-light);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--sage);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-links a:hover {
  color: var(--sage-dark);
}

.nav-links a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: var(--transition);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--cream);
  padding: 24px;
  flex-direction: column;
  gap: 20px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border-bottom-left-radius: var(--radius-md);
  border-bottom-right-radius: var(--radius-md);
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  font-size: 1.1rem;
  font-weight: 600;
  padding: 8px;
  color: var(--charcoal);
}

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  background: linear-gradient(170deg, var(--cream) 0%, var(--peach-light) 40%, var(--sage-light) 100%);
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sage-dark);
  margin-bottom: 20px;
  border: 1px solid rgba(168, 197, 160, 0.3);
}

.hero h1 {
  margin-bottom: 20px;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--sage-dark), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text {
  font-size: 1.15rem;
  color: var(--charcoal-light);
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(2deg);
  transition: var(--bounce);
  max-width: 420px;
}

.hero-image-wrapper:hover {
  transform: rotate(0deg) scale(1.02);
}

.hero-image-wrapper img {
  width: 100%;
  border-radius: var(--radius-lg);
}

.hero-float {
  position: absolute;
  border-radius: var(--radius-md);
  background: var(--white);
  padding: 12px 18px;
  box-shadow: var(--shadow-md);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: float 3s ease-in-out infinite;
}

.hero-float-1 {
  top: -10px;
  right: -30px;
  animation-delay: 0s;
}

.hero-float-2 {
  bottom: 40px;
  left: -40px;
  animation-delay: 1s;
}

.hero-float-3 {
  bottom: -15px;
  right: 20px;
  animation-delay: 2s;
}

/* Decorative blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  animation: blob 8s ease-in-out infinite;
}

.blob-1 {
  width: 400px;
  height: 400px;
  background: var(--sage-light);
  top: -100px;
  right: -100px;
}

.blob-2 {
  width: 300px;
  height: 300px;
  background: var(--peach);
  bottom: -50px;
  left: -50px;
  animation-delay: 2s;
}

.blob-3 {
  width: 200px;
  height: 200px;
  background: var(--lavender);
  top: 50%;
  left: 30%;
  animation-delay: 4s;
}

/* --- Social Proof Bar --- */
.proof-bar {
  background: var(--white);
  padding: 32px 0;
  border-top: 1px solid rgba(168, 197, 160, 0.15);
  border-bottom: 1px solid rgba(168, 197, 160, 0.15);
}

.proof-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  text-align: center;
}

.proof-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.proof-number {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--sage-dark);
}

.proof-label {
  font-size: 0.85rem;
  color: var(--charcoal-light);
}

/* --- Why It Works --- */
.why-section {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: var(--transition);
  border: 1px solid transparent;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sage), var(--gold));
  transform: scaleX(0);
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--sage-light);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
}

.why-card:nth-child(1) .why-icon {
  background: linear-gradient(135deg, var(--sage-light), var(--sage));
}

.why-card:nth-child(2) .why-icon {
  background: linear-gradient(135deg, var(--peach-light), var(--peach));
}

.why-card:nth-child(3) .why-icon {
  background: linear-gradient(135deg, var(--lavender), #B0A0C8);
}

.why-card:nth-child(4) .why-icon {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.why-card h3 {
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.95rem;
  color: var(--charcoal-light);
}

/* B9 Fix: .collections-grid and companion rules removed — no matching HTML in any page */

/* --- Products --- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(168, 197, 160, 0.15);
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-image {
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
}

.product-image-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.product-card:nth-child(1) .product-image-bg {
  background: linear-gradient(135deg, var(--sage-light), var(--mint));
}

.product-card:nth-child(2) .product-image-bg {
  background: linear-gradient(135deg, var(--peach-light), var(--peach));
}

.product-card:nth-child(3) .product-image-bg {
  background: linear-gradient(135deg, var(--lavender), var(--sky));
}

.product-card:nth-child(4) .product-image-bg {
  background: linear-gradient(135deg, var(--gold-light), var(--peach));
}

.product-card:nth-child(5) .product-image-bg {
  background: linear-gradient(135deg, var(--mint), var(--sage-light));
}

.product-card:nth-child(6) .product-image-bg {
  background: linear-gradient(135deg, var(--sky), var(--lavender));
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--sage-dark);
  color: white;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
}

.product-info {
  padding: 20px;
}

.product-info h3 {
  margin-bottom: 6px;
  font-size: 1.1rem;
}

.product-desc {
  font-size: 0.85rem;
  color: var(--charcoal-light);
  margin-bottom: 12px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--sage-dark);
}

.product-includes {
  font-size: 0.75rem;
  color: var(--charcoal-light);
}

.product-sticker-upsell {
  margin-top: 12px;
  padding: 10px 14px;
  background: var(--peach-light);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--peach-dark);
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  user-select: none;
}

.product-sticker-upsell:hover {
  background: var(--peach);
  color: var(--white);
}

.product-sticker-upsell.active {
  background: var(--sage-light);
  color: var(--sage-dark);
  border-color: var(--sage);
}

.product-sticker-upsell.active .sticker-toggle-label::before {
  content: '✓ ';
}

.product-sticker-upsell.active:hover {
  background: var(--sage);
  color: var(--white);
}

/* --- Product Mini-Tracker Mockup --- */
.product-mockup {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  gap: 8px;
  position: relative;
}

.mockup-char {
  font-size: 2.4rem;
}

.mockup-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--charcoal);
}

.mockup-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  width: 70%;
  margin-top: 4px;
}

.mockup-grid span {
  aspect-ratio: 1;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.mockup-grid span.filled {
  background: rgba(168, 197, 160, 0.6);
  border-color: rgba(168, 197, 160, 0.3);
}

.mockup-grid span.filled.cozy {
  background: rgba(245, 214, 200, 0.7);
  border-color: rgba(228, 169, 142, 0.3);
}

.mockup-grid span.filled.nature {
  background: rgba(184, 224, 210, 0.7);
  border-color: rgba(144, 200, 184, 0.3);
}

.mockup-grid span.filled.minimal {
  background: rgba(200, 184, 219, 0.6);
  border-color: rgba(200, 184, 219, 0.3);
}

/* --- Was Price (Anchor) --- */
.product-price-was {
  font-size: 0.85rem;
  color: var(--charcoal-light);
  text-decoration: line-through;
  opacity: 0.7;
  margin-left: 4px;
}

/* --- What's Included Toggle --- */
.product-whats-included {
  margin-top: 6px;
  font-size: 0.8rem;
}

.product-whats-included summary {
  cursor: pointer;
  color: var(--sage-dark);
  font-weight: 600;
  list-style: none;
}

.product-whats-included summary::before {
  content: "📦 ";
}

.product-whats-included summary::after {
  content: " ▸";
  font-size: 0.7rem;
}

.product-whats-included[open] summary::after {
  content: " ▾";
}

.product-whats-included p {
  margin: 4px 0 0;
  padding: 8px 10px;
  background: rgba(168, 197, 160, 0.08);
  border-radius: 6px;
  color: var(--charcoal-light);
  font-size: 0.78rem;
  line-height: 1.5;
}

/* --- Bundle Comparison Callout --- */
.bundle-comparison {
  font-size: 0.82rem;
  color: var(--charcoal-light);
  padding: 8px 12px;
  background: rgba(168, 197, 160, 0.1);
  border-radius: 8px;
  margin-top: 8px;
  margin-bottom: 4px;
  line-height: 1.4;
}

.bundle-comparison strong {
  color: var(--sage-dark);
}

/* --- Bundle Gift Badge --- */
.bundle-gift-badge {
  text-align: center;
  font-size: 0.8rem;
  color: var(--charcoal-light);
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(168, 197, 160, 0.15);
}

/* --- Product Dual CTAs --- */
.product-ctas {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.product-ctas .product-buy {
  flex: 2;
  justify-content: center;
}

.product-ctas .product-preview {
  flex: 1;
  justify-content: center;
}

.product-value {
  font-size: 0.8rem;
  color: var(--charcoal-light);
  margin-top: 8px;
  font-style: italic;
}

/* --- Outline Button --- */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  background: transparent;
  color: var(--sage-dark);
  border: 2px solid var(--sage);
}

.btn-outline:hover {
  background: var(--sage-light);
  color: var(--sage-dark);
  transform: translateY(-2px);
}

/* --- Subscription Teaser --- */
.subscription-section {
  background: linear-gradient(170deg, var(--cream) 0%, var(--peach-light) 50%, var(--cream) 100%);
}

.subscription-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(168, 197, 160, 0.15);
}

.subscription-content {
  max-width: 700px;
}

/* --- Bundles --- */
.bundles-section {
  background: linear-gradient(170deg, var(--sage-light) 0%, var(--cream) 100%);
}

.bundles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.bundle-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  border: 2px solid transparent;
}

.bundle-card.featured {
  border-color: var(--gold);
}

.bundle-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.bundle-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--peach-dark));
  color: white;
  padding: 6px 20px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}

.bundle-emoji {
  font-size: 3rem;
  margin-bottom: 16px;
}

.bundle-card h3 {
  margin-bottom: 8px;
}

.bundle-desc {
  font-size: 0.9rem;
  color: var(--charcoal-light);
  margin-bottom: 20px;
}

.bundle-includes {
  text-align: left;
  margin-bottom: 24px;
}

.bundle-includes li {
  padding: 6px 0;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--cream-dark);
}

.bundle-includes li::before {
  content: '✓';
  color: var(--sage-dark);
  font-weight: 700;
}

.bundle-price {
  margin-bottom: 20px;
}

.bundle-price .price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--sage-dark);
}

.bundle-price .original {
  text-decoration: line-through;
  color: var(--charcoal-light);
  font-size: 0.9rem;
  margin-left: 8px;
}

.bundle-savings {
  display: inline-block;
  background: var(--peach-light);
  color: var(--peach-dark);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

/* --- How It Works --- */
.how-section {
  background: var(--white);
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.how-steps::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 16.67%;
  right: 16.67%;
  height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--gold), var(--peach));
  border-radius: 3px;
}

.how-step {
  text-align: center;
  position: relative;
  z-index: 2;
}

.how-number {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 24px;
  background: var(--cream);
  border: 3px solid var(--sage);
  transition: var(--bounce);
}

.how-step:hover .how-number {
  transform: scale(1.1);
  box-shadow: var(--shadow-glow);
}

.how-step h3 {
  margin-bottom: 8px;
}

.how-step p {
  font-size: 0.95rem;
  color: var(--charcoal-light);
}

/* --- Personalization --- */
.personal-section {
  background: linear-gradient(170deg, var(--peach-light) 0%, var(--cream) 100%);
}

.personal-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.personal-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.95rem;
  color: var(--charcoal);
}

.form-group select,
.form-group input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--sage-light);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: var(--font-body);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-group select:focus,
.form-group input:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 4px rgba(168, 197, 160, 0.2);
}

.color-options {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.color-swatch {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid transparent;
  transition: var(--transition);
}

.color-swatch:hover,
.color-swatch.active {
  border-color: var(--charcoal);
  transform: scale(1.15);
}

.personal-preview {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.preview-tracker {
  width: 100%;
  max-width: 280px;
  border-radius: var(--radius-sm);
  padding: 24px;
  transition: var(--transition);
}

.preview-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-bottom: 16px;
}

.preview-cell {
  aspect-ratio: 1;
  border-radius: 6px;
  transition: var(--transition);
}

.preview-character {
  font-size: 3rem;
  margin-bottom: 12px;
}

.personal-price-note {
  margin-top: 24px;
  padding: 16px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  text-align: center;
  color: var(--charcoal-light);
}

.personal-price-note strong {
  color: var(--sage-dark);
}

/* --- Testimonials --- */
.testimonials-section {
  background: var(--white);
  overflow: hidden;
}

.testimonial-carousel {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 20px;
}

.testimonial-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 40px;
  text-align: center;
}

.testimonial-stars {
  font-size: 1.3rem;
  margin-bottom: 16px;
  color: var(--gold);
}

.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--charcoal);
  margin-bottom: 24px;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.testimonial-name {
  font-weight: 700;
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--charcoal-light);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sage-light);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.testimonial-dot.active {
  background: var(--sage-dark);
  width: 28px;
  border-radius: 5px;
}

/* --- Email CTA --- */
.cta-section {
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 50%, var(--gold) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  color: white;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

.cta-form input {
  flex: 1;
  padding: 16px 24px;
  border: none;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-family: var(--font-body);
  outline: none;
}

.cta-form .btn {
  white-space: nowrap;
}

.cta-emoji {
  font-size: 4rem;
  margin-bottom: 20px;
}

/* --- Pricing --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  border: 2px solid transparent;
}

.pricing-card.popular {
  border-color: var(--sage);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.pricing-popular-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sage);
  color: white;
  padding: 6px 20px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
}

.pricing-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.pricing-card h3 {
  margin-bottom: 8px;
}

.pricing-range {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--sage-dark);
  margin-bottom: 20px;
}

.pricing-features {
  text-align: left;
  margin-bottom: 28px;
}

.pricing-features li {
  padding: 8px 0;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--cream-dark);
}

.pricing-features li::before {
  content: '✦';
  color: var(--sage);
}

/* --- FAQ --- */
.faq-section {
  background: var(--white);
}

.faq-list {
  max-width: 740px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--cream-dark);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 24px 0;
  background: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--sage-dark);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--sage-dark);
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--sage);
  color: white;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding-bottom: 24px;
  color: var(--charcoal-light);
  line-height: 1.8;
}

/* --- Footer --- */
.footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  color: white;
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer h4 {
  color: white;
  margin-bottom: 16px;
  font-size: 1rem;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer ul li a:hover {
  color: var(--sage-light);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 1.1rem;
}

.footer-social a:hover {
  background: var(--sage);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
}

/* --- Reviews Strip --- */
.reviews-strip {
  padding: 40px 0;
  background: var(--cream);
  overflow: hidden;
}

.reviews-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.reviews-scroll::-webkit-scrollbar {
  display: none;
}

.mini-review {
  min-width: 280px;
  max-width: 320px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid rgba(168, 197, 160, 0.15);
  scroll-snap-align: start;
  flex-shrink: 0;
  transition: var(--transition);
}

.mini-review:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.mini-review-stars {
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.mini-review p {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--charcoal);
  margin-bottom: 10px;
  line-height: 1.6;
}

.mini-review-author {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--sage-dark);
}

/* --- Categories Grid --- */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.category-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 20px;
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--sage-light);
}

.category-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.category-card h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.category-card p {
  font-size: 0.85rem;
  color: var(--charcoal-light);
  margin-bottom: 16px;
}

/* --- Filter Bar --- */
.filter-bar {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  background: var(--white);
  border: 2px solid var(--sage-light);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal-light);
  transition: var(--transition);
  cursor: pointer;
}

.filter-btn:hover {
  border-color: var(--sage);
  color: var(--sage-dark);
}

.filter-btn.active {
  background: var(--sage);
  color: var(--white);
  border-color: var(--sage);
}

/* --- Product Tags --- */
.product-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.product-tag {
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 600;
  background: var(--cream);
  color: var(--charcoal-light);
}

/* --- Products Section bg --- */
.products-section {
  background: var(--white);
}

/* --- ADHD Callout --- */
.adhd-callout-inner {
  background: linear-gradient(135deg, var(--lavender), var(--peach-light));
  border-radius: var(--radius-md);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.adhd-callout-icon {
  font-size: 3rem;
  flex-shrink: 0;
}

.adhd-callout-text {
  flex: 1;
  min-width: 260px;
}

.adhd-callout-text h3 {
  margin-bottom: 6px;
}

.adhd-callout-text p {
  font-size: 0.9rem;
  color: var(--charcoal-light);
}

/* --- About Section --- */
.about-section {
  background: linear-gradient(170deg, var(--cream) 0%, var(--peach-light) 100%);
}

.about-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.about-text p {
  margin-bottom: 16px;
  color: var(--charcoal-light);
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-text .section-title {
  margin-bottom: 24px;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-value {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 18px 24px;
  font-size: 1.05rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.about-value:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}

/* --- Final CTA --- */
.final-cta-section {
  padding: 80px 0;
  background: var(--cream);
}

.final-cta h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

/* --- Emoji Stat (proof bar) --- */
.emoji-stat {
  flex-direction: row;
  gap: 10px;
}

/* --- Animations --- */
@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes blob {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(20px, -20px) scale(1.05);
  }

  66% {
    transform: translate(-10px, 10px) scale(0.95);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text {
    margin: 0 auto 32px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .hero-image-wrapper {
    max-width: 320px;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* B9 Fix: .collections-grid removed */

  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bundles-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .personal-content {
    grid-template-columns: 1fr;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 60px;
  }

  .hero-float {
    display: none;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  /* B9 Fix: .collections-grid removed */

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .bundles-grid {
    grid-template-columns: 1fr;
  }

  .how-steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .how-steps::before {
    display: none;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .cta-form {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .adhd-callout-inner {
    flex-direction: column;
    text-align: center;
  }

  .proof-stats {
    gap: 30px;
  }

  .blob {
    display: none;
  }
}