/* ==========================================================================
   THE ADHD HOME RESET — Responsive Landing Page
   Fully optimized for Desktop / PC while matching the reference mobile view
   ========================================================================== */

/* --- CSS Variables & Design Tokens --- */
:root {
  --color-forest: #16382E;
  --color-forest-dark: #0F261F;
  --color-forest-light: #254B3E;
  --color-forest-muted: #3D6855;
  --color-coral: #D96B43;
  --color-coral-hover: #C55C35;
  --color-coral-light: #FBECE7;
  --color-coral-tint: #FCEDE6;
  --color-cream: #FAF7F2;
  --color-cream-soft: #F5F1E8;
  --color-cream-card: #FFFDF9;
  --color-sage-bg: #EEF3EE;
  --color-sage-border: #D8E4D8;
  --color-butter-bg: #FCF6E5;
  --color-peach-bg: #FDEEE7;
  --color-rose-bg: #F9E7EA;
  --color-text-dark: #162621;
  --color-text-body: #394A44;
  --color-text-muted: #5F736C;
  --color-gold-star: #EAA83B;
  --color-border-subtle: #E8E2D6;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-handwritten: 'Caveat', cursive;

  --shadow-sm: 0 2px 6px rgba(22, 56, 46, 0.05);
  --shadow-md: 0 8px 20px rgba(22, 56, 46, 0.08);
  --shadow-lg: 0 16px 36px rgba(22, 56, 46, 0.12);
  --shadow-book: 0 20px 40px rgba(22, 56, 46, 0.22), 0 6px 12px rgba(0, 0, 0, 0.08);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 9999px;

  --container-max-width: 1140px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-cream);
  color: var(--color-text-body);
  line-height: 1.45;
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

/* --- Global Container --- */
.site-container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* --- SITE NAVIGATION HEADER --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(250, 247, 242, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(22, 56, 46, 0.08);
  padding: 12px 0;
  transition: all 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-container {
  display: flex;
  flex-direction: column;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.brand-link:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.brand-logo-img {
  height: 42px;
  width: auto;
  display: block;
  object-fit: contain;
}

.drawer-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 12px 16px;
  border-bottom: 1px solid rgba(22, 56, 46, 0.08);
  margin-bottom: 14px;
}

.drawer-logo-img {
  height: 64px;
  width: auto;
  max-width: 170px;
  display: block;
  object-fit: contain;
}

.footer-brand-mark {
  width: 28px;
  height: 28px;
  display: inline-block;
  vertical-align: middle;
  object-fit: contain;
}

.brand-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-forest);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.01em;
  transition: opacity 0.2s ease;
}

.brand-title:hover {
  opacity: 0.85;
}

.brand-leaf {
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
}

.brand-tagline {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--color-forest-muted);
  text-transform: uppercase;
  margin-top: 1px;
}

/* Desktop Nav */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-forest);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-coral);
  transition: width 0.25s ease;
  border-radius: 2px;
}

.nav-link:hover {
  color: var(--color-coral);
}

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

.header-cta-desktop {
  display: flex;
  align-items: center;
}

.btn-header-cta {
  background-color: var(--color-forest);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 10px rgba(22, 56, 46, 0.25);
  transition: all 0.25s ease;
}

.btn-header-cta:hover {
  background-color: var(--color-forest-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(22, 56, 46, 0.35);
}

/* Mobile Hamburger Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 22px;
  height: 16px;
  padding: 0;
}

.menu-toggle .bar {
  display: block;
  width: 100%;
  height: 2.2px;
  background-color: var(--color-forest);
  border-radius: 2px;
  transition: all 0.25s ease;
}

/* Mobile Drawer */
.mobile-drawer {
  display: none;
}

/* --- HERO SECTION --- */
.hero-section {
  position: relative;
  padding: 40px 0 50px;
  overflow: hidden;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(135deg, rgba(250, 247, 242, 0.88) 0%, rgba(245, 241, 232, 0.94) 100%), url('assets/hero_bg.webp');
  background-size: cover;
  background-position: center top;
  opacity: 0.9;
  z-index: 0;
}

.hero-container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 40px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Washi Tape Sticker */
.taped-sticker {
  display: inline-block;
  background: var(--color-cream-card);
  padding: 5px 16px;
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px dashed #DDD4C6;
  transform: rotate(-3deg);
  margin-bottom: 14px;
  position: relative;
}

.taped-sticker::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 50%;
  width: 8px;
  height: 20px;
  background: rgba(230, 220, 205, 0.6);
  transform: translateY(-50%);
  border-radius: 1px;
}

.tape-text {
  font-family: var(--font-handwritten);
  font-size: 21px;
  font-weight: 700;
  color: var(--color-forest);
  white-space: nowrap;
}

/* Micro-proof under Hero CTA */
.hero-cta-microproof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: #556B62;
  margin-top: 9px;
  text-align: center;
}

.hero-cta-microproof .micro-stars {
  color: var(--color-gold-star);
  font-size: 12.5px;
  letter-spacing: 1px;
}

/* Pill "THE" Tag */
.the-tag-wrapper {
  margin-bottom: 4px;
}

.the-tag {
  display: inline-block;
  background-color: var(--color-coral);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding: 2.5px 12px;
  border-radius: var(--radius-pill);
}

/* Main Hero Heading */
.hero-title {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 60px;
  line-height: 0.92;
  color: var(--color-forest);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.hero-title .title-accent {
  display: block;
  font-size: 38px;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-top: 4px;
}

/* Subheading */
.hero-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  line-height: 1.3;
  color: #9C5235;
  margin-bottom: 24px;
  font-weight: 600;
}

.mobile-break {
  display: none;
}

/* 4 Feature Pills in a row */
.hero-features-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 28px;
  width: 100%;
  max-width: 480px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.2s ease;
}

.feature-item:hover {
  transform: translateY(-2px);
}

.feature-icon-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.feature-icon-circle svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-forest);
}

.icon-bg-green {
  background-color: #E2ECE5;
}

.icon-bg-peach {
  background-color: #FCEEE8;
}

.icon-bg-butter {
  background-color: #FCF6E5;
}

.icon-bg-sage {
  background-color: #EAF0EC;
}

.feature-label {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-forest);
  max-width: 90px;
}

/* Hero CTA & Trust (Desktop) */
.hero-action-desktop {
  width: 100%;
  max-width: 460px;
}

.hero-action-mobile {
  display: none;
  /* hidden on desktop, shown on mobile */
}

.btn-primary-forest {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background-color: var(--color-forest);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 16px 24px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(22, 56, 46, 0.35);
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary-forest:hover {
  background-color: var(--color-forest-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(22, 56, 46, 0.45);
}

.btn-primary-forest .arrow {
  font-size: 18px;
  transition: transform 0.2s ease;
}

.btn-primary-forest:hover .arrow {
  transform: translateX(5px);
}

/* Hero CTA Box */
.hero-cta-box {
  width: 100%;
  max-width: 440px;
  margin-top: 20px;
}

/* Trust Bar across bottom of hero */
.hero-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--color-forest);
  width: 100%;
}

.hero-trust-bar .trust-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.hero-trust-bar .trust-item svg {
  width: 15px;
  height: 15px;
  stroke: var(--color-forest);
}

.hero-trust-bar .trust-sep {
  color: #BACBC3;
  font-size: 11px;
}

/* Right Mockup Column */
.hero-mockup-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.mockup-book-card {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.book-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 16px 36px rgba(22, 56, 46, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mockup-book-card:hover .book-img {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(22, 56, 46, 0.22);
}

/* Hero Selling Fast Pill (In empty space above book, calm editorial aesthetic) */
.hero-selling-fast-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background-color: #FCEEE8;
  border: 1px solid #F6D2C4;
  border-radius: var(--radius-pill);
  padding: 5px 14px 5px 8px;
  color: #B25032;
  box-shadow: 0 2px 8px rgba(178, 80, 50, 0.08);
  margin-bottom: 14px;
  user-select: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-selling-fast-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(178, 80, 50, 0.14);
}

.selling-fast-icon-circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(178, 80, 50, 0.12);
  flex-shrink: 0;
}

.selling-fast-icon-circle svg {
  width: 13px;
  height: 13px;
  stroke: #B25032;
  display: block;
}

.selling-fast-text {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #B25032;
  white-space: nowrap;
}

.selling-fast-heart {
  font-family: var(--font-handwritten);
  font-size: 15px;
  color: #B25032;
  margin-left: -1px;
}

/* Hero Discount Seal Overlay (Artisanal, non-intrusive) */
.hero-discount-seal {
  position: absolute;
  top: -12px;
  right: -12px;
  z-index: 10;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background-color: var(--color-coral);
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px dashed rgba(255, 255, 255, 0.65);
  box-shadow: 0 0 0 3px var(--color-coral), 0 8px 20px rgba(217, 107, 67, 0.35);
  transform: rotate(7deg);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  pointer-events: none;
  user-select: none;
}

.mockup-book-card:hover .hero-discount-seal {
  transform: rotate(3deg) scale(1.05);
  box-shadow: 0 0 0 3px var(--color-coral), 0 12px 24px rgba(217, 107, 67, 0.42);
}

.hero-discount-seal .seal-percent {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.01em;
}

.hero-discount-seal .seal-text {
  font-family: var(--font-sans);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 2px;
  opacity: 0.95;
}



/* --- SECTION 2: WORKS WITH YOUR BRAIN --- */
.section-works-brain {
  background-color: var(--color-cream);
  padding: 60px 0;
  border-top: 1px solid var(--color-border-subtle);
}

.works-brain-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 36px;
}

.works-text {
  flex: 1;
}

.section-title-large {
  font-family: var(--font-serif);
  font-size: 36px;
  line-height: 1.18;
  color: var(--color-forest);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.section-title-large .title-line {
  display: block;
}

.highlight-brush {
  font-style: italic;
  font-family: var(--font-serif);
  position: relative;
  display: inline-block;
}

.brush-underline-svg {
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 12px;
  pointer-events: none;
}

.section-subtitle-gentle {
  font-size: 16px;
  line-height: 1.45;
  color: var(--color-text-muted);
  margin-top: 10px;
  max-width: 580px;
}

/* House Doodle */
.works-doodle-card {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.doodle-house-wrapper {
  position: relative;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.doodle-house-svg {
  width: 100%;
  height: 100%;
}

.doodle-floating-heart {
  position: absolute;
  right: -2px;
  top: -4px;
  font-family: var(--font-handwritten);
  font-size: 16px;
  color: var(--color-forest);
}

.doodle-caption {
  font-family: var(--font-handwritten);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-forest);
  text-align: left;
}

/* 5 Brain Pill Cards Grid */
.brain-pills-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.brain-pill-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 20px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid var(--color-border-subtle);
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}

.brain-pill-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.pill-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.pill-circle svg {
  width: 24px;
  height: 24px;
}

.pill-bg-coral {
  background-color: #FCEEE8;
  color: #D96B43;
}

.pill-bg-sage {
  background-color: #E2ECE5;
  color: #2D5244;
}

.pill-bg-peach {
  background-color: #FDF1EA;
  color: #BA684A;
}

.pill-bg-rose {
  background-color: #F9E7EA;
  color: #B3586C;
}

.pill-bg-green {
  background-color: #E6F0E9;
  color: #2D5C45;
}

.pill-text-main {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-forest);
}

.pill-text-sub {
  font-size: 11px;
  color: var(--color-text-muted);
  line-height: 1.2;
  margin-top: 4px;
}

/* --- SECTION 3: SMALL STEPS BIG CHANGE --- */
.section-small-steps {
  padding: 30px 0 60px;
}

.steps-card-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #E5DFD4;
  box-shadow: var(--shadow-md);
}

.steps-photo-side {
  position: relative;
  min-height: 280px;
  overflow: hidden;
}

.steps-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.steps-card-container:hover .steps-photo {
  transform: scale(1.02);
}

.steps-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.steps-overlay-text {
  position: absolute;
  top: 28px;
  left: 28px;
  font-family: var(--font-handwritten);
  font-size: 38px;
  font-weight: 700;
  line-height: 1.05;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.65);
}

.steps-list-side {
  background-color: #FCFAF7;
  padding: 32px 28px;
  display: flex;
  align-items: center;
}

.steps-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.steps-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.custom-checkbox {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  border: 2px solid #4D768A;
  background-color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.custom-checkbox svg {
  width: 14px;
  height: 14px;
  stroke: #3D6B80;
}

.step-label {
  font-family: var(--font-handwritten);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #21322C;
}

/* --- SECTION 4: WHAT'S INSIDE? --- */
.section-whats-inside {
  padding: 50px 0 60px;
  background-color: var(--color-cream);
}

.section-header-burst {
  margin-bottom: 30px;
}

.section-header-burst.center {
  text-align: center;
}

.title-with-burst {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 700;
  color: var(--color-forest);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.burst-sparks {
  display: inline-flex;
  gap: 3px;
  align-items: center;
  vertical-align: super;
}

.burst-sparks .spark {
  width: 3px;
  border-radius: 2px;
  background-color: var(--color-coral);
  display: inline-block;
}

.burst-sparks .s1 {
  height: 9px;
  transform: rotate(-25deg);
}

.burst-sparks .s2 {
  height: 15px;
  transform: rotate(0deg);
}

.burst-sparks .s3 {
  height: 9px;
  transform: rotate(25deg);
}

.inside-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.open-book-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid #E2DCCE;
  transition: transform 0.3s ease;
}

.open-book-frame:hover {
  transform: translateY(-3px);
}

.open-workbook-img {
  width: 100%;
  height: auto;
  display: block;
}

.inside-features-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.inside-bullet-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-forest);
  line-height: 1.3;
}

.round-check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #2D4A3F;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.round-check-icon svg {
  width: 13px;
  height: 13px;
  stroke: #ffffff;
}

/* --- SECTION 5: WHAT YOU'LL BE ABLE TO DO --- */
.section-able-to-do {
  padding: 30px 0 60px;
}

.able-container-card {
  background-color: var(--color-sage-bg);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  border: 1px solid var(--color-sage-border);
}

.able-cards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.able-card {
  background-color: #ffffff;
  border-radius: var(--radius-md);
  padding: 24px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid #E1EAE1;
  transition: all 0.25s ease;
}

.able-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.able-card-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--color-forest);
}

.able-card-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-forest);
}

.able-card-title {
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-forest);
}

/* --- SECTION 6: REAL PEOPLE REAL RESULTS --- */
.section-testimonials {
  padding: 30px 0 60px;
}

.testimonials-container {
  background-color: var(--color-peach-bg);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  border: 1px solid #F5DBD0;
}

.testimonials-title {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-forest);
  text-align: center;
  margin-bottom: 28px;
}

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

.testimonial-card {
  background-color: #ffffff;
  border-radius: var(--radius-md);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  border: 1px solid #F5E5DC;
  transition: all 0.25s ease;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.testimonial-quote {
  font-size: 14px;
  line-height: 1.45;
  color: #2D3E37;
  margin-bottom: 14px;
  flex-grow: 1;
}

.testimonial-author {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--color-forest);
  margin-bottom: 4px;
}

.star-rating {
  color: var(--color-gold-star);
  font-size: 14px;
  letter-spacing: 2px;
}

/* --- SECTION 7: CTA BANNER --- */
.section-cta-banner {
  padding: 30px 0 60px;
}

.cta-banner-card {
  background-color: var(--color-forest);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  color: #ffffff;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: center;
  gap: 30px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  max-width: 100%;
}

.cta-banner-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  width: 100%;
}

.cta-handwritten-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.cta-handwritten-note .note-text {
  font-family: var(--font-handwritten);
  font-size: 22px;
  font-weight: 700;
  color: #E2ECE5;
  white-space: nowrap;
}

.handwritten-arrow-svg {
  width: 44px;
  height: 28px;
}

.cta-banner-title {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 6px;
}

.cta-banner-subtitle {
  font-size: 15px;
  color: #B5CEC2;
  line-height: 1.35;
  margin-bottom: 22px;
}

.btn-primary-coral {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--color-coral);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(217, 107, 67, 0.4);
  transition: all 0.25s ease;
}

.btn-primary-coral:hover {
  background-color: var(--color-coral-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(217, 107, 67, 0.5);
}

.cta-trust-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10.5px;
  color: #C0D6CB;
  margin-top: 14px;
}

.trust-item-light {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.trust-item-light svg {
  width: 13px;
  height: 13px;
  stroke: #C0D6CB;
}

.trust-sep-light {
  color: rgba(255, 255, 255, 0.35);
  font-size: 10px;
}

/* Scalloped Price Badge */
.cta-price-badge-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.scalloped-badge {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background-color: #FFF9F0;
  color: var(--color-forest);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.22);
  border: 3px dashed #DFD4C0;
  position: relative;
  transition: transform 0.25s ease;
}

.scalloped-badge:hover {
  transform: rotate(4deg) scale(1.04);
}

.scalloped-badge .badge-just {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #556B62;
  line-height: 1;
}

.scalloped-badge .badge-price {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 800;
  color: var(--color-forest);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 2px 0;
}

.scalloped-badge .badge-desc {
  font-size: 8.5px;
  font-weight: 800;
  line-height: 1.15;
  color: #6D5B4D;
  max-width: 95px;
}

.scalloped-badge .badge-heart {
  font-family: var(--font-handwritten);
  font-size: 16px;
  color: var(--color-coral);
  line-height: 1;
  margin-top: 2px;
}

/* --- SECTION 8: FAQ ACCORDION --- */
.section-faq {
  padding: 40px 0 70px;
}

.faq-container {
  max-width: 820px;
}

.faq-accordion-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.faq-item {
  background-color: var(--color-cream);
  border: 1.5px solid #E6DFD3;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.25s ease;
}

.faq-item[open] {
  background-color: #ffffff;
  border-color: #D4CBC0;
  box-shadow: var(--shadow-sm);
}

.faq-summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  user-select: none;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-question {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--color-forest);
  line-height: 1.3;
}

.faq-chevron {
  width: 18px;
  height: 18px;
  color: var(--color-forest);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
}

.faq-chevron svg {
  width: 16px;
  height: 16px;
}

.faq-content {
  padding: 0 20px 18px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--color-text-muted);
  animation: fadeInAccordion 0.25s ease;
}

@keyframes fadeInAccordion {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

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

/* --- MINIMALIST FOOTER --- */
.site-footer {
  padding: 48px 0 28px;
  border-top: 1px solid rgba(22, 56, 46, 0.08);
  background-color: #FAF7F2;
  color: var(--color-forest);
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.footer-main-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(22, 56, 46, 0.06);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-brand-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-forest);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-brand-title:hover {
  opacity: 0.85;
}

.footer-brand-tagline {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #72847D;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-nav-link {
  font-size: 13.5px;
  font-weight: 600;
  color: #556B62;
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
  padding: 4px 0;
}

.footer-nav-link:hover {
  color: var(--color-forest);
}

.footer-nav-link.active {
  color: var(--color-forest);
  font-weight: 700;
}

.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: #7D8E87;
}

.footer-copyright {
  margin: 0;
}

.footer-signoff {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-style: italic;
  color: #5E756C;
}

.footer-signoff .footer-heart {
  font-family: var(--font-handwritten);
  font-size: 16px;
  color: var(--color-coral);
  font-style: normal;
}

/* --- CHECKOUT MODAL --- */
.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.checkout-modal[hidden] {
  display: none !important;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 38, 31, 0.7);
  backdrop-filter: blur(5px);
}

.modal-card {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 440px;
  padding: 30px 24px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.3);
  animation: modalEnter 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalEnter {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(12px);
  }

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

.modal-close-btn {
  position: absolute;
  right: 18px;
  top: 18px;
  background: none;
  border: none;
  font-size: 26px;
  line-height: 1;
  color: #7B8F87;
  cursor: pointer;
}

.modal-badge {
  display: inline-block;
  background: var(--color-coral-light);
  color: var(--color-coral);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 8px;
}

.modal-header h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--color-forest);
  margin-bottom: 6px;
}

.modal-price-line {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 16px;
}

.sale-price {
  font-size: 26px;
  font-weight: 800;
  color: var(--color-forest);
}

.original-price {
  font-size: 15px;
  color: #8C9E97;
  text-decoration: line-through;
}

.discount-pill {
  background: #E8F5E9;
  color: #2E7D32;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
}

.modal-features {
  background: #FAF7F2;
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--color-forest);
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-forest);
}

.form-input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #D5DDD8;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: var(--font-sans);
  outline: none;
  transition: border-color 0.2s;
}

.form-input:focus {
  border-color: var(--color-forest);
}

.modal-submit-btn {
  margin-top: 8px;
  padding: 14px;
  font-size: 14px;
}

.modal-security-note {
  font-size: 11px;
  color: #7B8F87;
  text-align: center;
  margin-top: 14px;
}

/* ==========================================================================
   STICKY BOTTOM LAUNCH OFFER BAR (FULL-WIDTH, BRAND-ALIGNED)
   ========================================================================== */
.sticky-offer-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(250, 247, 242, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(22, 56, 46, 0.12);
  box-shadow: 0 -4px 22px rgba(22, 56, 46, 0.08);
  padding: 10px 0;
}

.sticky-offer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sticky-offer-left {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.sticky-offer-lead {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.sticky-badge {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background-color: var(--color-sage-bg);
  border: 1px solid var(--color-sage-border);
  color: var(--color-forest);
  padding: 3.5px 8px;
  border-radius: var(--radius-pill);
  line-height: 1;
}

.sticky-discount-badge {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background-color: var(--color-coral-light);
  border: 1px solid #F6D2C4;
  color: #B25032;
  padding: 3.5px 8px;
  border-radius: var(--radius-pill);
  line-height: 1;
}

.sticky-pricing {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.sticky-price-now {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 700;
  color: var(--color-forest);
  line-height: 1;
}

.sticky-price-was {
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 500;
  color: #7B8F87;
  text-decoration: line-through;
}

.sticky-divider {
  color: rgba(22, 56, 46, 0.25);
  font-size: 12px;
  line-height: 1;
}

.sticky-scarcity {
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--color-coral);
  letter-spacing: 0.01em;
}

.sticky-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-forest);
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(22, 56, 46, 0.22);
  transition: all 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.sticky-cta-btn:hover {
  background-color: var(--color-forest-dark);
  box-shadow: 0 6px 18px rgba(22, 56, 46, 0.3);
}

.sticky-cta-btn .arrow {
  font-size: 14px;
  transition: transform 0.2s ease;
}

.sticky-cta-btn:hover .arrow {
  transform: translateX(3px);
}

body {
  padding-bottom: 66px;
}

/* ==========================================================================
   ABOUT PAGE STYLES
   ========================================================================== */
.about-hero-section {
  padding: 56px 0 44px;
  position: relative;
  background: linear-gradient(180deg, rgba(250, 247, 242, 0.6) 0%, rgba(245, 241, 232, 0.9) 100%);
  border-bottom: 1px solid var(--color-border-subtle);
  text-align: center;
}

.about-hero-content {
  max-width: 760px;
  margin: 0 auto;
}

.about-title {
  font-family: var(--font-serif);
  font-size: 42px;
  line-height: 1.15;
  color: var(--color-forest);
  margin: 16px 0 14px;
}

.about-subtitle {
  font-size: 17.5px;
  line-height: 1.5;
  color: #556B62;
  margin-bottom: 20px;
}

.about-principles-section {
  padding: 64px 0;
  background-color: var(--color-cream);
}

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

.principle-card {
  background: #FFFFFF;
  border: 1px solid rgba(22, 56, 46, 0.09);
  border-radius: 16px;
  padding: 30px 24px;
  box-shadow: 0 4px 16px rgba(22, 56, 46, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.principle-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(22, 56, 46, 0.1);
}

.principle-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--color-coral);
  background: var(--color-coral-light);
  padding: 3px 9px;
  border-radius: var(--radius-pill);
  align-self: flex-start;
  margin-bottom: 16px;
}

.principle-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-forest);
  margin-bottom: 10px;
}

.principle-desc {
  font-size: 14px;
  line-height: 1.55;
  color: #556B62;
}

.about-story-section {
  padding: 64px 0;
  background-color: #F7F3EC;
  border-top: 1px solid var(--color-border-subtle);
  border-bottom: 1px solid var(--color-border-subtle);
}

.story-card-box {
  background: #FFFFFF;
  border-radius: 20px;
  border: 1px solid rgba(22, 56, 46, 0.09);
  padding: 44px 40px;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: 0 8px 30px rgba(22, 56, 46, 0.06);
}

.story-card-box h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--color-forest);
  margin-bottom: 16px;
}

.story-card-box p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-text-body);
  margin-bottom: 14px;
}

.story-quote-highlight {
  border-left: 3px solid var(--color-coral);
  background: #FAF7F2;
  padding: 16px 20px;
  margin: 24px 0;
  border-radius: 0 10px 10px 0;
  font-family: var(--font-serif);
  font-size: 17px;
  font-style: italic;
  color: var(--color-forest);
}

/* ==========================================================================
   CONTACT PAGE STYLES
   ========================================================================== */
.contact-hero-section {
  padding: 56px 0 44px;
  background: linear-gradient(180deg, rgba(250, 247, 242, 0.6) 0%, rgba(245, 241, 232, 0.9) 100%);
  border-bottom: 1px solid var(--color-border-subtle);
  text-align: center;
}

.contact-hero-content {
  max-width: 680px;
  margin: 0 auto;
}

.contact-title {
  font-family: var(--font-serif);
  font-size: 42px;
  line-height: 1.15;
  color: var(--color-forest);
  margin: 16px 0 12px;
}

.contact-subtitle {
  font-size: 17px;
  line-height: 1.5;
  color: #556B62;
}

.contact-main-section {
  padding: 64px 0 84px;
  background-color: var(--color-cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 40px;
  align-items: start;
}

.support-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.support-card {
  background: #FFFFFF;
  border: 1px solid rgba(22, 56, 46, 0.09);
  border-radius: 16px;
  padding: 24px 22px;
  box-shadow: 0 4px 16px rgba(22, 56, 46, 0.04);
}

.support-card-title {
  font-family: var(--font-serif);
  font-size: 19px;
  color: var(--color-forest);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.support-card-desc {
  font-size: 13.5px;
  line-height: 1.5;
  color: #556B62;
  margin-bottom: 12px;
}

.support-email-pill {
  display: inline-block;
  background: var(--color-sage-bg);
  border: 1px solid var(--color-sage-border);
  color: var(--color-forest);
  font-size: 13.5px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: all 0.2s ease;
}

.support-email-pill:hover {
  background: var(--color-forest);
  color: #FFFFFF;
}

.support-guarantee-note {
  background: #FCF6E5;
  border: 1px solid #EFE2BE;
  border-radius: 12px;
  padding: 16px 18px;
  font-size: 13px;
  line-height: 1.45;
  color: #634C28;
}

.contact-form-card {
  background: #FFFFFF;
  border: 1px solid rgba(22, 56, 46, 0.1);
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 10px 32px rgba(22, 56, 46, 0.07);
}

.form-heading {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--color-forest);
  margin-bottom: 6px;
}

.form-sub {
  font-size: 13.5px;
  color: #556B62;
  margin-bottom: 24px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-forest);
}

.form-input,
.form-select,
.form-textarea {
  font-family: var(--font-sans);
  font-size: 14px;
  padding: 12px 14px;
  border: 1px solid #D6DCD7;
  border-radius: 8px;
  background: #FFFDF9;
  color: var(--color-text-dark);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-forest);
  box-shadow: 0 0 0 3px rgba(22, 56, 46, 0.1);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-submit-btn {
  background-color: var(--color-forest);
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(22, 56, 46, 0.25);
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}

.form-submit-btn:hover {
  background-color: var(--color-forest-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(22, 56, 46, 0.35);
}

.form-submit-btn:active {
  transform: scale(0.98);
}

.contact-success-banner {
  background: #E8F5E9;
  border: 1px solid #C8E6C9;
  color: #2E7D32;
  padding: 16px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  display: none;
  margin-top: 14px;
  animation: fadeInAccordion 0.3s ease;
}

/* ==========================================================================
   MOBILE VIEW OPTIMIZATION (MATCHES SCREENSHOT EXACTLY AT MOBILE VIEWPORT)
   ========================================================================== */

@media (max-width: 768px) {

  /* Header matches screenshot: centered brand, hamburger on right */
  .site-header {
    padding: 10px 0 12px;
  }

  .header-inner {
    position: relative;
    justify-content: center;
  }

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

  .brand-logo-img {
    height: 35px;
    max-width: 190px;
  }

  .brand-title {
    font-size: 17px;
  }

  .brand-leaf {
    width: 15px;
    height: 15px;
  }

  .brand-tagline {
    font-size: 6.5px;
  }

  .desktop-nav,
  .header-cta-desktop {
    display: none;
  }

  .menu-toggle {
    display: flex;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
  }

  /* Mobile Drawer Open State */
  .mobile-drawer.open {
    display: block;
    background: #FAF7F2;
    padding: 18px 20px;
    border-top: 1px solid var(--color-border-subtle);
    border-bottom: 1px solid var(--color-border-subtle);
    animation: fadeInAccordion 0.2s ease;
  }

  .mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .mobile-nav-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-forest);
    padding: 4px 0;
  }

  .mobile-drawer-btn {
    margin-top: 6px;
    padding: 12px;
    font-size: 13px;
  }

  /* Hero Section Mobile Layout */
  .hero-section {
    padding: 10px 0 20px;
  }

  .hero-grid {
    grid-template-columns: 1.15fr 0.9fr;
    gap: 8px;
    align-items: start;
  }

  .taped-sticker {
    padding: 3px 12px;
    margin-bottom: 8px;
    transform: rotate(-3.5deg);
  }

  .tape-text {
    font-size: 17px;
  }

  .hero-cta-microproof {
    font-size: 9px;
    margin-top: 5px;
    gap: 4px;
  }

  .hero-cta-microproof .micro-stars {
    font-size: 9px;
    letter-spacing: 0.5px;
  }

  .the-tag {
    font-size: 9px;
    padding: 1.5px 8px;
    margin-bottom: 2px;
  }

  .hero-title {
    font-size: 38px;
    line-height: 0.92;
    margin-bottom: 4px;
  }

  .hero-title .title-accent {
    font-size: 24px;
    margin-top: 2px;
  }

  .hero-subtitle {
    font-size: 13.5px;
    line-height: 1.25;
    margin-bottom: 12px;
  }

  .mobile-break {
    display: inline;
  }

  /* 4 feature pills on mobile */
  .hero-features-row {
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    margin-bottom: 6px;
  }

  .feature-icon-circle {
    width: 32px;
    height: 32px;
    margin-bottom: 4px;
  }

  .feature-icon-circle svg {
    width: 16px;
    height: 16px;
  }

  .feature-label {
    font-size: 7.5px;
    max-width: 54px;
  }

  /* Hero Content Column */
  .hero-content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  /* CTA Button in Left Column */
  .hero-cta-box {
    width: 100%;
    margin-top: 10px;
  }

  .hero-cta-box .btn-primary-forest {
    font-size: 11px;
    font-weight: 800;
    padding: 10px 10px;
    letter-spacing: 0.03em;
    width: 100%;
    gap: 5px;
    border-radius: var(--radius-pill);
    box-shadow: 0 4px 14px rgba(22, 56, 46, 0.3);
  }

  .hero-cta-box .btn-primary-forest .arrow {
    font-size: 13px;
  }

  /* Mockup Book Mobile Placement & Scaling */
  .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 10px;
    align-items: end;
  }

  .hero-mockup-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    align-self: stretch;
    padding-top: 0;
  }

  .mockup-book-card {
    width: 100%;
    max-width: 185px;
  }

  .mockup-book-card .book-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 12px 28px rgba(22, 56, 46, 0.18);
  }

  .hero-selling-fast-pill {
    margin-top: 4px;
    margin-bottom: auto;
    padding: 3.5px 10px 3.5px 6px;
    gap: 5px;
    box-shadow: 0 1px 6px rgba(178, 80, 50, 0.08);
  }

  .selling-fast-icon-circle {
    width: 18px;
    height: 18px;
  }

  .selling-fast-icon-circle svg {
    width: 11px;
    height: 11px;
  }

  .selling-fast-text {
    font-size: 8px;
    letter-spacing: 0.06em;
  }

  .selling-fast-heart {
    font-size: 12px;
  }

  .hero-discount-seal {
    width: 44px;
    height: 44px;
    top: -8px;
    right: -8px;
    border-width: 1.5px;
    box-shadow: 0 0 0 2px var(--color-coral), 0 4px 12px rgba(217, 107, 67, 0.28);
  }

  .hero-discount-seal .seal-percent {
    font-size: 13.5px;
  }

  .hero-discount-seal .seal-text {
    font-size: 7px;
    letter-spacing: 0.08em;
    margin-top: 1px;
  }

  /* Trust Bar across bottom of hero */
  .hero-trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
    font-size: 8px;
    font-weight: 600;
    color: var(--color-forest);
    width: 100%;
    flex-wrap: nowrap;
    white-space: nowrap;
  }

  .hero-trust-bar .trust-item {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    white-space: nowrap;
  }

  .hero-trust-bar .trust-item svg {
    width: 10px;
    height: 10px;
    stroke: var(--color-forest);
  }

  .hero-trust-bar .trust-sep {
    font-size: 8px;
    color: #BACBC3;
  }

  /* Section 2: Works with your brain */
  .section-works-brain {
    padding: 20px 0 18px;
  }

  .works-brain-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 16px;
  }

  .works-text {
    flex: 1;
    min-width: 0;
  }

  .section-title-large {
    font-size: 18px;
    line-height: 1.18;
    letter-spacing: -0.01em;
  }

  .section-title-large .title-line {
    display: block;
    white-space: nowrap;
  }

  .brush-underline-svg {
    bottom: -3px;
    height: 9px;
  }

  .section-subtitle-gentle {
    font-size: 9.5px;
    line-height: 1.35;
    margin-top: 6px;
  }

  .works-doodle-card {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .doodle-house-wrapper {
    position: relative;
    width: 34px;
    height: 34px;
    flex-shrink: 0;
  }

  .doodle-floating-heart {
    right: -2px;
    top: -3px;
    font-size: 10px;
  }

  .doodle-caption {
    font-size: 11px;
    line-height: 1.05;
    margin-top: 0;
    white-space: nowrap;
    text-align: left;
  }

  .brain-pills-row {
    grid-template-columns: repeat(5, 1fr);
    gap: 5px;
  }

  .brain-pill-card {
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .brain-pill-card:hover {
    transform: none;
    box-shadow: none;
  }

  .pill-circle {
    width: 36px;
    height: 36px;
    margin-bottom: 5px;
  }

  .pill-circle svg {
    width: 17px;
    height: 17px;
  }

  .pill-text-main {
    font-size: 8px;
    max-width: 62px;
  }

  .pill-text-sub {
    font-size: 6.5px;
    margin-top: 2px;
    max-width: 62px;
  }

  /* Section 3: Small Steps */
  .section-small-steps {
    padding: 10px 0 16px;
  }

  .steps-card-container {
    grid-template-columns: 1.1fr 1fr;
    border-radius: var(--radius-md);
  }

  .steps-photo-side {
    min-height: 140px;
  }

  .steps-overlay-text {
    top: 14px;
    left: 14px;
    font-size: 22px;
  }

  .steps-list-side {
    padding: 12px 10px;
  }

  .steps-checklist {
    gap: 7px;
  }

  .custom-checkbox {
    width: 15px;
    height: 15px;
    border-radius: 3px;
    border-width: 1.5px;
  }

  .custom-checkbox svg {
    width: 10px;
    height: 10px;
  }

  .step-label {
    font-size: 13.5px;
  }

  /* Section 4: What's Inside */
  .section-whats-inside {
    padding: 14px 0 16px;
  }

  .section-header-burst {
    margin-bottom: 12px;
  }

  .title-with-burst {
    font-size: 22px;
  }

  .burst-sparks .spark {
    width: 2.5px;
  }

  .burst-sparks .s1 {
    height: 7px;
  }

  .burst-sparks .s2 {
    height: 11px;
  }

  .burst-sparks .s3 {
    height: 7px;
  }

  .inside-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 12px;
  }

  .inside-features-list {
    gap: 6px;
  }

  .inside-bullet-item {
    font-size: 9.5px;
    gap: 6px;
  }

  .round-check-icon {
    width: 14px;
    height: 14px;
  }

  .round-check-icon svg {
    width: 9px;
    height: 9px;
  }

  /* Section 5: What you'll be able to do */
  .section-able-to-do {
    padding: 8px 0 16px;
  }

  .able-container-card {
    border-radius: var(--radius-lg);
    padding: 16px 10px;
  }

  .able-cards-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 5px;
    margin-top: 10px;
  }

  .able-card {
    padding: 10px 4px;
  }

  .able-card-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 6px;
  }

  .able-card-icon svg {
    width: 18px;
    height: 18px;
  }

  .able-card-title {
    font-size: 7.5px;
  }

  /* Section 6: Real People Real Results */
  .section-testimonials {
    padding: 8px 0 16px;
  }

  .testimonials-container {
    border-radius: var(--radius-lg);
    padding: 16px 10px;
  }

  .testimonials-title {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .testimonial-card {
    border-radius: 10px;
    padding: 10px 8px;
  }

  .testimonial-quote {
    font-size: 8.5px;
    margin-bottom: 8px;
  }

  .testimonial-author {
    font-size: 8.5px;
  }

  .star-rating {
    font-size: 9px;
    letter-spacing: 1px;
  }

  /* Section 7: CTA Banner (Zero overflow, perfectly fitted on all mobile screens) */
  .section-cta-banner {
    padding: 10px 0 18px;
    width: 100%;
    box-sizing: border-box;
  }

  .cta-banner-card {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 20px 14px 18px;
    gap: 12px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .cta-banner-content {
    min-width: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-handwritten-note {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
    width: 100%;
  }

  .cta-handwritten-note .note-text {
    font-size: 13px;
    line-height: 1.15;
    white-space: normal;
  }

  .handwritten-arrow-svg {
    width: 26px;
    height: 17px;
    flex-shrink: 0;
  }

  .cta-banner-title {
    font-size: 20px;
    line-height: 1.15;
    margin-bottom: 3px;
    letter-spacing: -0.01em;
  }

  .cta-banner-subtitle {
    font-size: 9.5px;
    line-height: 1.35;
    color: #B5CEC2;
    margin-bottom: 12px;
  }

  .btn-primary-coral {
    font-size: 11.5px;
    padding: 10px 14px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    white-space: nowrap;
    justify-content: center;
    gap: 6px;
  }

  .cta-trust-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px 6px;
    font-size: 7.5px;
    color: #C0D6CB;
    margin-top: 8px;
    width: 100%;
  }

  .trust-item-light {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    white-space: nowrap;
  }

  .trust-item-light svg {
    width: 9px;
    height: 9px;
    flex-shrink: 0;
  }

  .trust-sep-light {
    font-size: 7px;
    opacity: 0.5;
  }

  .cta-price-badge-wrapper {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .scalloped-badge {
    width: 80px;
    height: 80px;
    border-width: 2px;
    flex-shrink: 0;
    margin: 0;
  }

  .scalloped-badge .badge-just {
    font-size: 8.5px;
  }

  .scalloped-badge .badge-price {
    font-size: 19px;
    line-height: 1;
    margin: 1px 0;
    letter-spacing: -0.02em;
  }

  .scalloped-badge .badge-desc {
    font-size: 6px;
    max-width: 62px;
    line-height: 1.1;
  }

  .scalloped-badge .badge-heart {
    font-size: 10px;
    margin-top: 1px;
  }

  /* Section 8: FAQ */
  .section-faq {
    padding: 10px 0 20px;
  }

  .faq-accordion-group {
    gap: 7px;
    margin-top: 10px;
  }

  .faq-summary {
    padding: 10px 12px;
  }

  .faq-question {
    font-size: 10px;
  }

  .faq-chevron {
    width: 14px;
    height: 14px;
  }

  .faq-chevron svg {
    width: 12px;
    height: 12px;
  }

  .faq-content {
    padding: 0 12px 10px;
    font-size: 9.5px;
  }

  /* Mobile Minimalist Footer */
  .site-footer {
    padding: 32px 0 20px;
  }

  .footer-main-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding-bottom: 18px;
  }

  .footer-brand {
    align-items: center;
  }

  .footer-nav {
    justify-content: center;
    gap: 12px 18px;
  }

  .footer-bottom-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    font-size: 11.5px;
  }

  /* Mobile About & Contact */
  .about-title,
  .contact-title {
    font-size: 30px;
  }

  .about-subtitle,
  .contact-subtitle {
    font-size: 15px;
  }

  .principles-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .story-card-box {
    padding: 24px 20px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 24px 18px;
  }

  /* Mobile Sticky Offer Bar (Full-Width, Clean & Brand-Aligned) */
  body {
    padding-bottom: 74px;
  }

  .sticky-offer-bar {
    padding: 8px 0;
    padding-bottom: max(8px, env(safe-area-inset-bottom));
  }

  .sticky-offer-container {
    padding-left: 12px;
    padding-right: 12px;
    gap: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
  }

  .sticky-offer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    min-width: 0;
    flex: 1;
    white-space: normal;
  }

  .sticky-offer-lead {
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: nowrap;
  }

  .sticky-badge {
    display: none; /* keep mobile clean and uncluttered */
  }

  .sticky-discount-badge {
    font-size: 9px;
    padding: 2.5px 6px;
  }

  .sticky-price-now {
    font-size: 17px;
  }

  .sticky-price-was {
    font-size: 11px;
  }

  .sticky-divider {
    display: none;
  }

  .sticky-scarcity {
    font-size: 10px;
    line-height: 1.25;
    color: var(--color-coral);
    white-space: normal;
  }

  .sticky-cta-btn {
    font-size: 11.5px;
    font-weight: 800;
    padding: 9px 14px;
    letter-spacing: 0.03em;
    flex-shrink: 0;
    white-space: nowrap;
  }

  @media (max-width: 360px) {
    .cta-banner-card {
      padding: 16px 10px 14px;
      gap: 8px;
    }

    .scalloped-badge {
      width: 72px;
      height: 72px;
    }

    .scalloped-badge .badge-price {
      font-size: 17px;
    }

    .scalloped-badge .badge-desc {
      font-size: 5px;
      max-width: 54px;
    }

    .cta-banner-title {
      font-size: 18px;
    }
  }
}

/* ==========================================================================
   ANIMATION & MOTION SYSTEM (CALM, MINDFUL & ADHD-FRIENDLY)
   ========================================================================== */

/* Keyframe Animations */
@keyframes heroFadeInUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroWashiSettle {
  from {
    opacity: 0;
    transform: translateY(-14px) rotate(-6deg) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(-3deg) scale(1);
  }
}

@keyframes heroMockupEnter {
  from {
    opacity: 0;
    transform: scale(0.93) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Ambient Gentle Floating for Hero Book Mockup */
@keyframes gentleFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Ambient Breathing Pulse for Discount Seal */
@keyframes sealPulse {
  0%, 100% {
    transform: rotate(7deg) scale(1);
    box-shadow: 0 0 0 3px var(--color-coral), 0 8px 20px rgba(217, 107, 67, 0.35);
  }
  50% {
    transform: rotate(7deg) scale(1.05);
    box-shadow: 0 0 0 4px var(--color-coral), 0 12px 26px rgba(217, 107, 67, 0.45);
  }
}

/* Slide Up Sticky Bottom Bar */
@keyframes slideUpSticky {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Hero Staggered Entrance Animations */
.taped-sticker {
  animation: heroWashiSettle 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.the-tag-wrapper {
  animation: heroFadeInUp 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.12s both;
}

.hero-title {
  animation: heroFadeInUp 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.hero-subtitle {
  animation: heroFadeInUp 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.28s both;
}

.hero-features-row .feature-item:nth-child(1) {
  animation: heroFadeInUp 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.34s both;
}

.hero-features-row .feature-item:nth-child(2) {
  animation: heroFadeInUp 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.40s both;
}

.hero-features-row .feature-item:nth-child(3) {
  animation: heroFadeInUp 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.46s both;
}

.hero-features-row .feature-item:nth-child(4) {
  animation: heroFadeInUp 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.52s both;
}

.hero-cta-box {
  animation: heroFadeInUp 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.58s both;
}

.hero-mockup-wrapper {
  animation: heroMockupEnter 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
}

.mockup-book-card {
  animation: gentleFloat 6.5s ease-in-out 1.2s infinite;
}

.hero-discount-seal {
  animation: sealPulse 4s ease-in-out 1.4s infinite;
}

/* Scroll Reveal Classes */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger Delays for Cascade Reveals */
.stagger-1 { transition-delay: 0.08s; }
.stagger-2 { transition-delay: 0.16s; }
.stagger-3 { transition-delay: 0.24s; }
.stagger-4 { transition-delay: 0.32s; }
.stagger-5 { transition-delay: 0.40s; }

/* Tactile Micro-Interactions & Hover Polish */
.btn-primary-forest:active,
.btn-primary-coral:active,
.btn-header-cta:active,
.sticky-cta-btn:active {
  transform: scale(0.97) translateY(1px);
}

.feature-icon-circle {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
}

.feature-item:hover .feature-icon-circle {
  transform: scale(1.1) rotate(4deg);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.brain-card {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

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

.step-card {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.review-card {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(22, 56, 46, 0.1);
}

.scalloped-badge {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.scalloped-badge:hover {
  transform: rotate(-3deg) scale(1.04);
}

.faq-chevron svg {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item[open] .faq-chevron svg {
  transform: rotate(180deg);
}

.sticky-offer-bar {
  animation: slideUpSticky 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

/* Accessibility: Respect Reduced Motion Preferences */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}