@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Fraunces:ital,opsz,wght@1,9..144,400;1,9..144,500;1,9..144,600&display=swap');

/* ==========================================================================
   BROTE V2 — DESIGN SYSTEM RENOVADO — MOBILE FIRST
   ========================================================================== */

:root {
  --ink:       #26362E;
  --paper:     #F8F3E9;
  --cream:     #EEE4D3;
  --cream-dark:#E3D5BF;
  --coral:     #E87D61;
  --coral-dark:#C96448;
  --sage:      #9EB695;
  --sage-dark: #7A9572;
  --yellow:    #EFC65E;
  --blue:      #9BB9BC;
  --line:      rgba(38, 54, 46, 0.13);
  --line-dark: rgba(38, 54, 46, 0.22);
  --white:     #FFFFFF;

  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  --shadow-sm: 0 2px 10px rgba(38, 54, 46, 0.08);
  --shadow-md: 0 8px 28px rgba(38, 54, 46, 0.12);
  --shadow-lg: 0 20px 60px rgba(38, 54, 46, 0.18);

  --transition: 0.28s cubic-bezier(0.16, 1, 0.3, 1);

  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 96px;
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: #D8D1BF;
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow-x: hidden;
  line-height: 1.6;
}

#bg-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

body > *:not(#bg-canvas):not(.wa-float-circle):not(.cart-drawer):not(.drawer-backdrop) {
  position: relative;
  z-index: 2;
}

body.cart-open {
  overflow: hidden;
}

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

button, input {
  font: inherit;
}

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

/* ==========================================================================
   DEMO SHELL
   ========================================================================== */

.demo-shell {
  max-width: 1440px;
  margin: 16px auto;
  background: var(--paper);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--line);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   ANNOUNCEMENT BAR
   ========================================================================== */

.announcement {
  background: var(--ink);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  gap: 8px;
}

.announcement span {
  display: block;
  line-height: 1.4;
}

/* ==========================================================================
   HEADER
   ========================================================================== */

header {
  height: 68px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 243, 233, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--ink);
  flex-shrink: 0;
}

.logo span {
  color: var(--coral);
  font-size: 8px;
  margin-left: 2px;
  vertical-align: middle;
}

#site-nav {
  display: none;
  gap: 24px;
  margin-left: auto;
}

#site-nav a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 2px;
  transition: color var(--transition);
}

#site-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: -4px;
  height: 1.5px;
  background: var(--coral);
  transition: right var(--transition);
}

#site-nav a:hover { color: var(--coral); }
#site-nav a:hover::after { right: 0; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.search-btn {
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 8px;
  color: var(--ink);
  border-radius: 50%;
  transition: background var(--transition);
}

.search-btn:hover { background: var(--cream); }

.bag-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1.5px solid var(--ink);
  background: transparent;
  color: var(--ink);
  border-radius: 999px;
  padding: 7px 14px;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.bag-button:hover {
  background: var(--ink);
  color: white;
}

.bag-button span {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  background: var(--coral);
  color: white;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
}

/* Hamburger Menu Button */
.menu-button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-xs);
  flex-shrink: 0;
  transition: background var(--transition);
}

.menu-button:hover { background: var(--cream); }

.menu-button span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition), width var(--transition);
}

.menu-button span:nth-child(2) { width: 75%; }

.menu-button.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-button.is-open span:nth-child(2) { opacity: 0; width: 0; }
.menu-button.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   MOBILE NAV DRAWER
   ========================================================================== */

.mobile-nav {
  position: fixed;
  top: 0; left: 0;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--paper);
  z-index: 200;
  transform: translateX(-105%);
  transition: transform var(--transition);
  display: flex;
  flex-direction: column;
  padding: 80px 24px 40px;
  border-right: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

.mobile-nav.is-open {
  transform: translateX(0);
}

.mobile-nav nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  color: var(--ink);
}

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

.mobile-nav-cta {
  display: block;
  margin-top: 24px;
  background: var(--ink);
  color: white;
  text-align: center;
  padding: 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  transition: background var(--transition);
}

.mobile-nav-cta:hover { background: var(--coral); }

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 37, 31, 0.45);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(3px);
}

.mobile-nav-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero {
  padding: 40px 20px 50px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

.eyebrow {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--coral);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(42px, 11vw, 84px);
  line-height: 0.93;
  letter-spacing: -3px;
  margin: 0 0 20px;
  font-weight: 800;
}

.hero h1 em {
  font-family: Fraunces, serif;
  font-weight: 500;
  color: var(--sage-dark);
  font-style: italic;
}

.hero-desc {
  font-size: 15px;
  line-height: 1.68;
  color: #5D6862;
  max-width: 560px;
  margin: 0 0 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: white;
  border-radius: 999px;
  padding: 15px 26px;
  font-size: 13px;
  font-weight: 700;
  transition: background var(--transition), transform var(--transition);
  box-shadow: var(--shadow-md);
}

.primary-button:hover {
  background: var(--coral);
  transform: translateY(-2px);
}

.quiet-link {
  font-size: 13px;
  font-weight: 700;
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 3px;
  transition: color var(--transition), border-color var(--transition);
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.proof-pill {
  display: inline-block;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 10px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.02em;
}

/* Hero Visual */
.hero-visual {
  position: relative;
}

.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-badge {
  position: absolute;
  background: white;
  border-radius: var(--radius-md);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  animation: floatBadge 3s ease-in-out infinite;
}

.hero-badge-top {
  top: 16px;
  right: 16px;
  animation-delay: 0s;
}

.hero-badge-bottom {
  bottom: 16px;
  left: 16px;
  animation-delay: 1.5s;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.badge-emoji {
  font-size: 24px;
  line-height: 1;
}

.hero-badge b {
  display: block;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.hero-badge small {
  display: block;
  font-size: 10px;
  color: #7B8480;
  margin-top: 2px;
}

/* Hero Decorations */
.hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.scribble {
  position: absolute;
  z-index: 3;
  right: -10px;
  top: -14px;
  font: 500 italic 18px/1.1 Fraunces;
  transform: rotate(-8deg);
  color: var(--sage-dark);
  background: white;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.rainbow {
  position: absolute;
  width: 140px;
  height: 90px;
  left: 10px;
  bottom: 20px;
  overflow: hidden;
}

.rainbow i {
  position: absolute;
  left: 50%;
  bottom: -50px;
  transform: translateX(-50%);
  border-radius: 50% 50% 0 0;
  border-style: solid;
  background: transparent;
}

.rainbow i:nth-child(1) { width: 140px; height: 140px; border-width: 18px; border-color: #DB7459; }
.rainbow i:nth-child(2) { width: 108px; height: 108px; border-width: 16px; border-color: #E8B957; }
.rainbow i:nth-child(3) { width: 78px; height: 78px; border-width: 14px; border-color: #839E7F; }
.rainbow i:nth-child(4) { width: 52px; height: 52px; border-width: 12px; border-color: #9BB9BC; }

.star-deco {
  position: absolute;
  top: 40%;
  right: -5px;
  font-size: 28px;
  color: var(--yellow);
  transform: rotate(12deg);
  animation: spinStar 8s linear infinite;
}

@keyframes spinStar {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.age-badge {
  position: absolute;
  right: -8px;
  top: 40%;
  width: 72px;
  height: 72px;
  background: var(--paper);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  transform: rotate(6deg);
  box-shadow: var(--shadow-md);
  line-height: 1;
}

.age-badge b {
  font: 500 22px/1 Fraunces;
  display: block;
}

/* ==========================================================================
   TRUST BAR
   ========================================================================== */

.trust-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background var(--transition);
}

.trust-item:nth-child(2n) { border-right: none; }
.trust-item:nth-child(3),
.trust-item:nth-child(4) { border-bottom: none; }

.trust-item:hover { background: var(--cream-dark); }

.trust-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.trust-item strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}

.trust-item p {
  margin: 3px 0 0;
  font-size: 10px;
  color: #7B8480;
}

/* ==========================================================================
   AGE FILTER STRIP
   ========================================================================== */

.age-strip {
  padding: 20px 20px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.age-strip > p {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin: 0 0 12px;
}

.age-chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.age-chips::-webkit-scrollbar { display: none; }

.age-chips button {
  white-space: nowrap;
  border: 1.5px solid var(--line-dark);
  background: white;
  color: var(--ink);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  flex-shrink: 0;
}

.age-chips button:hover {
  border-color: var(--coral);
  color: var(--coral);
  background: rgba(232, 125, 97, 0.06);
}

.age-chips button.active {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}

/* ==========================================================================
   PROMISE STRIP
   ========================================================================== */

.promise-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.promise-strip article {
  padding: 24px 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.promise-strip article:nth-child(2n) { border-right: none; }
.promise-strip article:nth-child(3),
.promise-strip article:nth-child(4) { border-bottom: none; }

.p-num {
  font: 500 italic 20px Fraunces;
  color: var(--coral);
  flex-shrink: 0;
  width: 30px;
  line-height: 1;
}

.promise-strip strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 4px;
}

.promise-strip p {
  margin: 0;
  font-size: 11px;
  line-height: 1.5;
  color: #7B8480;
}

/* ==========================================================================
   SHOP SECTION
   ========================================================================== */

.shop {
  padding: 56px 20px;
}

.section-heading {
  margin-bottom: 36px;
}

.section-heading span {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--coral);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-heading h2 {
  font-size: clamp(36px, 8vw, 70px);
  line-height: 0.92;
  letter-spacing: -3px;
  margin: 0 0 16px;
  font-weight: 800;
}

.section-heading h2 em,
.section-heading em {
  font-family: Fraunces, serif;
  font-weight: 500;
  color: var(--sage-dark);
  font-style: italic;
}

.section-heading > p {
  color: #6F7872;
  font-size: 14px;
  line-height: 1.65;
  max-width: 520px;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.product-card {
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.product-card[hidden] { display: none; }

.product-art {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #F0EADF;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.product-card:hover .product-img {
  transform: scale(1.06);
}

.product-tag {
  position: absolute;
  left: 10px;
  top: 10px;
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.88);
  padding: 4px 9px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  line-height: 1;
}

.product-tag-hot { background: rgba(232, 125, 97, 0.92) !important; color: white; }
.product-tag-new { background: rgba(158, 182, 149, 0.92) !important; color: white; }

.product-skills {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  gap: 4px;
  padding: 10px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--transition), transform var(--transition);
  background: linear-gradient(to top, rgba(38,54,46,0.7) 0%, transparent 100%);
}

.product-card:hover .product-skills {
  opacity: 1;
  transform: translateY(0);
}

.product-skills span {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
  color: white;
  font-size: 9px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.3);
}

.quick-add {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  min-height: 40px;
  border: 0;
  background: var(--ink);
  color: white;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transform: translateY(56px);
  transition: transform var(--transition), background var(--transition);
  z-index: 2;
}

.quick-add:hover { background: var(--coral); }

.product-card:hover .quick-add,
.quick-add:focus {
  transform: translateY(0);
}

.product-info {
  padding: 14px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  flex: 1;
}

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

.product-info h3 {
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 4px;
  line-height: 1.3;
}

.product-info p {
  font-size: 10px;
  color: #7B837E;
  margin: 0;
  line-height: 1.4;
}

.product-stars {
  margin-top: 5px;
  font-size: 10px;
  color: #D4A017;
}

.product-stars small {
  color: #9B9B9B;
}

.product-price {
  font-size: 15px;
  font-weight: 800;
  color: var(--coral);
  flex-shrink: 0;
  line-height: 1;
}

.product-price small {
  font-size: 10px;
  font-weight: 600;
  color: #9B9B9B;
}

.empty-state {
  display: none;
  text-align: center;
  padding: 40px 20px;
  color: #7B8480;
  font-size: 14px;
}

.empty-state.show { display: block; }

/* ==========================================================================
   STAGES SECTION
   ========================================================================== */

.stages {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

.stages-intro {
  padding: 56px 20px 40px;
}

.stages-intro > span {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--coral);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.stages-intro h2 {
  font-size: clamp(36px, 9vw, 70px);
  line-height: 0.92;
  letter-spacing: -3px;
  margin: 0 0 16px;
  font-weight: 800;
}

.stages-intro h2 em {
  font-family: Fraunces, serif;
  font-weight: 500;
  color: var(--sage-dark);
  font-style: italic;
}

.stages-intro p {
  font-size: 14px;
  line-height: 1.68;
  color: #5D6862;
  margin: 0 0 24px;
  max-width: 500px;
}

.stages-intro > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 4px;
  transition: color var(--transition), border-color var(--transition);
}

.stages-intro > a:hover {
  color: var(--coral);
  border-color: var(--coral);
}

.stage-list {
  background: white;
  border-top: 1px solid var(--line);
}

.stage-card {
  display: grid;
  grid-template-columns: 48px 1fr 36px;
  align-items: center;
  gap: 16px;
  padding: 22px 20px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  transition: background var(--transition), padding-left var(--transition);
  position: relative;
}

.stage-card:last-child { border-bottom: none; }

.stage-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border-radius: var(--radius-sm);
  font-size: 22px;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
}

.stage-content span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--coral);
  display: block;
  margin-bottom: 4px;
}

.stage-content strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  transition: color var(--transition);
}

.stage-content p {
  font-size: 12px;
  color: #6B7670;
  line-height: 1.5;
  margin: 0;
  transition: color var(--transition);
}

.stage-card i {
  font: 500 italic 24px/1 Fraunces;
  color: var(--coral);
  text-align: right;
  transition: color var(--transition), transform var(--transition);
}

.stage-card:hover {
  background: var(--ink);
  color: white;
  padding-left: 24px;
}

.stage-card:hover .stage-icon {
  background: rgba(255,255,255,0.12);
  transform: scale(1.1);
}

.stage-card:hover .stage-content span { color: var(--yellow); }
.stage-card:hover .stage-content strong { color: white; }
.stage-card:hover .stage-content p { color: rgba(255,255,255,0.65); }
.stage-card:hover i { color: var(--yellow); transform: scale(1.2); }

/* ==========================================================================
   MILESTONE GUIDE SECTION
   ========================================================================== */

.milestone-guide {
  padding: 56px 20px;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.milestones-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}

.milestone-box {
  background: white;
  padding: 24px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.milestone-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.m-badge {
  background: var(--coral);
  color: white;
  font-size: 9px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: 0.06em;
  display: inline-block;
}

.m-progress {
  flex: 1;
  min-width: 60px;
  height: 4px;
  background: var(--cream);
  border-radius: 99px;
  overflow: hidden;
}

.m-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--coral), var(--yellow));
  border-radius: 99px;
}

.milestone-box h4 {
  font-size: 17px;
  font-weight: 800;
  margin: 0 0 10px;
  color: var(--ink);
}

.milestone-box > p {
  font-size: 13px;
  color: #5D6862;
  line-height: 1.6;
  margin: 0 0 16px;
}

.milestone-list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.milestone-list li {
  font-size: 11px;
  color: var(--ink);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  line-height: 1.3;
}

.milestone-link {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--coral);
  border-bottom: 1px solid var(--coral);
  padding-bottom: 2px;
  transition: opacity var(--transition);
}

.milestone-link:hover { opacity: 0.7; }

/* DEV BANNER */
.dev-banner {
  margin-top: 40px;
  background: var(--ink);
  color: white;
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.dev-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--yellow);
  margin-bottom: 10px;
}

.dev-banner-text p {
  font-size: 14px;
  line-height: 1.65;
  color: #BAC3BD;
  margin: 0;
}

.dev-banner-text strong {
  color: white;
}

.dev-banner-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
}

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

.dev-stat b {
  display: block;
  font-size: 26px;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 6px;
  font-family: Fraunces, serif;
}

.dev-stat small {
  font-size: 10px;
  color: #7A8E82;
  line-height: 1.3;
  display: block;
}

/* ==========================================================================
   METHOD SECTION
   ========================================================================== */

.method {
  background: var(--ink);
  color: white;
}

.method-visual {
  min-height: 300px;
  background: var(--sage);
  position: relative;
  overflow: hidden;
  padding: 40px 24px;
  display: flex;
  align-items: flex-end;
}

.method-visual > span {
  position: relative;
  z-index: 2;
  font-size: clamp(36px, 9vw, 65px);
  line-height: 0.88;
  letter-spacing: -3px;
  font-weight: 800;
}

.method-visual > span em {
  font-family: Fraunces;
  font-weight: 500;
  color: #F2DDAD;
  font-style: italic;
}

.orbit {
  position: absolute;
  border: 2px solid rgba(255,255,255,0.22);
  border-radius: 50%;
  animation: orbitPulse 4s ease-in-out infinite;
}

.orbit.one {
  width: 280px; height: 280px;
  left: 50%; top: 42%;
  transform: translate(-50%, -50%);
}

.orbit.two {
  width: 180px; height: 180px;
  left: 50%; top: 42%;
  transform: translate(-50%, -50%);
  animation-delay: 2s;
}

@keyframes orbitPulse {
  0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.05); }
}

.method-visual > i {
  position: absolute;
  left: 50%; top: 42%;
  transform: translate(-50%, -50%);
  font-size: 60px;
  color: #F4D079;
  font-style: normal;
  animation: spinStar 8s linear infinite;
}

.method-copy {
  padding: 48px 20px 52px;
}

.method-copy > span {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--yellow);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.method-copy h2 {
  font-size: clamp(34px, 8vw, 64px);
  line-height: 0.92;
  letter-spacing: -3px;
  margin: 0 0 18px;
  font-weight: 800;
}

.method-copy h2 em {
  font-family: Fraunces, serif;
  font-weight: 500;
  color: var(--sage);
  font-style: italic;
}

.method-copy > p {
  color: #ABB4AE;
  line-height: 1.72;
  font-size: 14px;
  margin: 0;
}

.method-copy ol {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.method-copy li {
  display: grid;
  grid-template-columns: 36px 1fr;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  gap: 12px;
  align-items: start;
}

.method-copy li > b {
  font-size: 11px;
  color: #D5B86A;
  font-weight: 700;
  padding-top: 2px;
}

.method-copy strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.method-copy li span {
  display: block;
  color: #8F9A94;
  font-size: 12px;
  line-height: 1.6;
}

/* ==========================================================================
   TESTIMONIALS / VOICES SECTION
   ========================================================================== */

.voices {
  background: #F0C765;
  padding: 56px 20px;
}

.voices-inner {}

.voices-top {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.voices-top > span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(38,54,46,0.7);
  text-transform: uppercase;
}

.rating {
  font-size: 16px;
  letter-spacing: 2px;
}

.rating small {
  font-size: 12px;
  letter-spacing: 0;
  color: rgba(38,54,46,0.7);
}

.testimonials-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 24px;
  position: relative;
}

.quote-mark {
  font: 500 italic 60px/0.8 Fraunces;
  color: var(--coral);
  opacity: 0.35;
  line-height: 0.8;
  height: 32px;
  overflow: hidden;
  margin-bottom: 4px;
}

.testimonial-card blockquote {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink);
  font-style: italic;
}

.testimonial-featured blockquote {
  font: 500 italic clamp(15px, 3.5vw, 22px)/1.35 Fraunces;
}

.voice-foot {
  display: flex;
  align-items: center;
  gap: 12px;
}

.family-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--coral);
  display: grid;
  place-items: center;
  color: white;
  font: 500 italic 18px Fraunces;
  flex-shrink: 0;
}

.voice-foot p {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.voice-foot strong {
  font-size: 13px;
  font-weight: 700;
}

.voice-foot span {
  font-size: 11px;
  color: #7B8480;
  margin-top: 2px;
}

.voice-nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.voice-nav {
  display: flex;
  gap: 8px;
}

.voice-nav button {
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--ink);
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  transition: background var(--transition), color var(--transition);
}

.voice-nav button:hover {
  background: var(--ink);
  color: white;
}

.all-reviews {
  font-size: 12px;
  font-weight: 700;
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 2px;
}

/* ==========================================================================
   BUNDLE SECTION
   ========================================================================== */

.bundle {
  padding: 56px 20px;
  background: linear-gradient(135deg, #EADABF 0%, #E0CFB0 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.bundle-content > span {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--coral);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.bundle-content h2 {
  font-size: clamp(34px, 8vw, 68px);
  line-height: 0.92;
  letter-spacing: -3px;
  margin: 0 0 16px;
  font-weight: 800;
}

.bundle-content h2 em {
  font-family: Fraunces, serif;
  font-weight: 500;
  color: var(--sage-dark);
  font-style: italic;
}

.bundle-content p {
  font-size: 14px;
  line-height: 1.68;
  color: #58635C;
  margin: 0 0 20px;
}

.bundle-perks {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bundle-perks li {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.bundle-content > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: white;
  border-radius: 999px;
  padding: 15px 24px;
  font-size: 12px;
  font-weight: 700;
  transition: background var(--transition), transform var(--transition);
}

.bundle-content > a:hover {
  background: var(--coral);
  transform: translateY(-2px);
}

.bundle-box {
  height: 300px;
  background: var(--coral) !important;
  position: relative;
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: 18px 18px 0 rgba(76, 59, 43, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,0.2);
  margin-top: 40px;
  transition: transform var(--transition);
  overflow: hidden;
}

.bundle-box:hover { transform: scale(1.02) rotate(-1deg); }

.bundle-box > span {
  color: white !important;
  font-size: 14px !important;
  font-weight: 800;
  letter-spacing: 3px;
}

.box-shape {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--yellow);
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
}

.box-shape::before, .box-shape::after {
  content: '';
  position: absolute;
  border-radius: 50%;
}

.box-shape::before {
  width: 115px; height: 115px;
  left: 32px; top: 32px;
  background: var(--sage);
}

.box-shape::after {
  width: 55px; height: 55px;
  left: 62px; top: 62px;
  background: var(--blue);
}

.bundle-box i {
  position: absolute;
  right: 20px; bottom: 20px;
  font-style: normal;
  color: white;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1.2;
  text-align: right;
  background: rgba(38, 54, 46, 0.3);
  padding: 8px 12px;
  border-radius: var(--radius-xs);
  backdrop-filter: blur(4px);
}

/* ==========================================================================
   JOURNAL SECTION
   ========================================================================== */

.journal {
  padding: 56px 20px;
  background: var(--paper);
}

.journal-head {
  margin-bottom: 32px;
}

.journal-head > div span {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--coral);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.journal-head h2 {
  font-size: clamp(34px, 8vw, 68px);
  line-height: 0.92;
  letter-spacing: -3px;
  margin: 0 0 16px;
  font-weight: 800;
}

.journal-head h2 em {
  font-family: Fraunces, serif;
  font-weight: 500;
  color: var(--sage-dark);
  font-style: italic;
}

.journal-head > a {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 3px;
  transition: color var(--transition);
}

.journal-head > a:hover { color: var(--coral); }

.journal-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.story {
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  padding: 18px;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.story-art {
  height: 200px;
  background: #D8DECA;
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.story-art > i {
  position: absolute;
  right: 12px; top: 12px;
  background: rgba(255,255,255,0.9);
  border-radius: 99px;
  padding: 5px 10px;
  font-size: 9px;
  font-weight: 700;
  font-style: normal;
}

.sun-shape {
  width: 130px; height: 130px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 70px 60px 0 -20px var(--coral), -60px 55px 0 -35px var(--blue);
}

.story-art-two { background: #D4BBA6; }

.moon-shape {
  width: 110px; height: 110px;
  border-radius: 50%;
  background: var(--paper);
  position: relative;
}

.moon-shape::after {
  content: '';
  position: absolute;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: #D4BBA6;
  left: 36px; top: -16px;
}

.story-art-three { background: #9FB69A; }

.flower-shape {
  font-style: normal;
  color: #F5D478;
  font-size: 88px;
  transform: rotate(12deg);
}

.story > span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--coral);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.story h3 {
  font-size: 15px;
  line-height: 1.35;
  margin: 0 0 16px;
  font-weight: 700;
  color: var(--ink);
  flex: 1;
}

.story > a {
  margin-top: auto;
  font-size: 11px;
  font-weight: 700;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  align-self: flex-start;
  transition: color var(--transition);
}

.story > a:hover { color: var(--coral); }

/* ==========================================================================
   FAQ & NEWSLETTER SECTION
   ========================================================================== */

.faq-newsletter {
  display: grid;
  grid-template-columns: 1fr;
}

.faq {
  background: #E6D8C3;
  padding: 56px 20px;
}

.faq > span {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--coral);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.faq h2 {
  font-size: clamp(34px, 8vw, 64px);
  line-height: 0.92;
  letter-spacing: -3px;
  margin: 0 0 32px;
  font-weight: 800;
}

.faq h2 em {
  font-family: Fraunces, serif;
  font-weight: 500;
  color: var(--sage-dark);
  font-style: italic;
}

.faq-list {
  border-top: 1px solid var(--line-dark);
}

.faq details {
  border-bottom: 1px solid var(--line-dark);
}

.faq summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
  gap: 12px;
}

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

.faq summary i {
  font-size: 22px;
  font-style: normal;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--coral);
}

.faq details[open] summary i {
  transform: rotate(45deg);
}

.faq details p {
  font-size: 13px;
  line-height: 1.75;
  color: #4D5851;
  margin: 0 0 22px;
  padding-right: 24px;
  animation: faqIn 0.35s ease forwards;
}

@keyframes faqIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.newsletter {
  background: var(--ink);
  color: white;
  padding: 56px 20px;
  position: relative;
  overflow: hidden;
}

.newsletter > span {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--yellow);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.newsletter h2 {
  font-size: clamp(28px, 6vw, 52px);
  line-height: 1.05;
  letter-spacing: -2px;
  margin: 0 0 14px;
  font-weight: 800;
}

.newsletter > p {
  color: #AEB7B1;
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 24px;
}

.newsletter-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.newsletter-benefits span {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 600;
}

.newsletter form label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #7A8E82;
  margin-bottom: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.newsletter-input-wrap {
  display: flex;
  border-bottom: 1.5px solid rgba(255,255,255,0.3);
  margin-bottom: 16px;
}

.newsletter input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  color: white;
  padding: 14px 0;
  outline: 0;
  font-size: 15px;
}

.newsletter input::placeholder { color: rgba(255,255,255,0.35); }

.newsletter button {
  border: 0;
  background: transparent;
  color: var(--yellow);
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  padding: 0 0 0 12px;
  flex-shrink: 0;
  transition: opacity 0.2s;
}

.newsletter button:hover { opacity: 0.7; }

.newsletter small {
  font-size: 11px;
  color: #6A7870;
  line-height: 1.5;
  display: block;
}

.newsletter small.success {
  color: var(--sage);
  font-weight: 700;
}

.newsletter-mark {
  position: absolute;
  right: -20px; bottom: -20px;
  font: 800 140px/1 "DM Sans";
  letter-spacing: -10px;
  color: rgba(255,255,255,0.04);
  pointer-events: none;
  user-select: none;
}

.newsletter-mark span {
  color: var(--coral);
  opacity: 0.06;
}

/* ==========================================================================
   CART DRAWER
   ========================================================================== */

.cart-drawer {
  position: fixed;
  z-index: 300;
  right: 0; top: 0; bottom: 0;
  width: min(400px, 100%);
  background: var(--paper);
  transform: translateX(104%);
  transition: transform var(--transition);
  display: flex;
  flex-direction: column;
  padding: 24px;
  box-shadow: -24px 0 60px rgba(29, 43, 35, 0.22);
}

body.cart-open .cart-drawer { transform: none; }

.drawer-backdrop {
  position: fixed;
  z-index: 299;
  inset: 0;
  background: rgba(26, 37, 31, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(3px);
}

body.cart-open .drawer-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.cart-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.cart-head > div span {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--coral);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.cart-head > div b {
  font-size: 16px;
  font-weight: 800;
}

.cart-head button {
  border: 0;
  background: transparent;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  color: var(--ink);
  padding: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background var(--transition);
}

.cart-head button:hover { background: var(--cream); }

.free-shipping-bar {
  background: var(--coral);
  color: white;
  padding: 10px 16px;
  font-size: 11px;
  text-align: center;
  font-weight: 700;
  border-radius: var(--radius-xs);
  margin-top: 16px;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 0;
}

.cart-empty {
  text-align: center;
  padding: 40px 0;
  color: #7B8480;
  font-size: 14px;
}

.cart-row {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.cart-thumb {
  width: 64px; height: 64px;
  background: var(--cream);
  border-radius: var(--radius-xs);
  display: grid;
  place-items: center;
  font-size: 20px;
  flex-shrink: 0;
}

.cart-row b { font-size: 13px; display: block; margin-bottom: 4px; }
.cart-row small { font-size: 11px; color: #7B8480; }
.cart-row strong { font-size: 14px; font-weight: 800; color: var(--coral); }

.cart-footer {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  font-size: 14px;
}

.cart-total-row strong { font-size: 18px; font-weight: 800; }

.cart-footer button {
  width: 100%;
  border: 0;
  background: var(--ink);
  color: white;
  border-radius: 999px;
  min-height: 50px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition);
  margin-bottom: 12px;
}

.cart-footer button:hover { background: var(--coral); }
.cart-footer small { font-size: 11px; color: #7B8480; text-align: center; display: block; }

/* ==========================================================================
   FOOTER
   ========================================================================== */

footer {
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding: 48px 20px 32px;
}

.footer-brand {
  margin-bottom: 32px;
}

.footer-brand .logo {
  font-size: 24px;
  display: inline-block;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 13px;
  color: #7B8480;
  margin: 0 0 6px;
}

.footer-brand small {
  font-size: 11px;
  color: #9B9FA0;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col strong {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 12px;
  color: #7B8480;
  transition: color var(--transition);
  line-height: 1.3;
}

.footer-col a:hover { color: var(--coral); }

.footer-copy {
  display: block;
  font-size: 11px;
  color: #9B9FA0;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  text-align: center;
}

/* ==========================================================================
   WHATSAPP FLOAT BUTTON
   ========================================================================== */

.wa-float-circle {
  position: fixed !important;
  bottom: 24px !important;
  right: 24px !important;
  width: 56px !important;
  height: 56px !important;
  border-radius: 50% !important;
  background: #25D366 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5) !important;
  z-index: 9999 !important;
  pointer-events: auto !important;
  transition: transform var(--transition), box-shadow var(--transition) !important;
}

.wa-float-circle:hover {
  transform: scale(1.1) translateY(-3px) !important;
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.65) !important;
}

.wa-tooltip {
  position: absolute;
  right: 64px;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: var(--radius-xs);
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition);
}

.wa-float-circle:hover .wa-tooltip { opacity: 1; }

/* ==========================================================================
   RESPONSIVE — TABLET (600px+)
   ========================================================================== */

@media (min-width: 600px) {
  .announcement {
    font-size: 11px;
    padding: 8px 20px;
  }

  .trust-bar {
    grid-template-columns: repeat(4, 1fr);
  }

  .trust-item {
    border-bottom: none;
  }

  .trust-item:nth-child(2n) { border-right: 1px solid var(--line); }
  .trust-item:nth-child(4) { border-right: none; }

  .promise-strip {
    grid-template-columns: repeat(4, 1fr);
  }

  .promise-strip article { border-bottom: none; }
  .promise-strip article:nth-child(2n) { border-right: 1px solid var(--line); }
  .promise-strip article:nth-child(4) { border-right: none; }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

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

  .testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .testimonial-featured {
    grid-column: 1 / -1;
  }

  .journal-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
  }

  .story-main {
    grid-row: 1 / 3;
  }
}

/* ==========================================================================
   RESPONSIVE — DESKTOP (900px+)
   ========================================================================== */

@media (min-width: 900px) {
  .demo-shell {
    margin: 20px auto;
    border-radius: var(--radius-xl);
  }

  header {
    height: 78px;
    padding: 0 4.5vw;
    gap: 40px;
  }

  .logo { font-size: 26px; }

  #site-nav { display: flex; }

  .header-actions { margin-left: 0; }

  .menu-button { display: none; }

  .hero {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 5vw;
    padding: 72px 4.5vw 88px;
    align-items: center;
  }

  .hero h1 { font-size: clamp(56px, 5.5vw, 88px); }

  .hero-desc { font-size: 17px; }

  .hero-img-wrap { aspect-ratio: unset; height: 520px; }

  .hero-badge-top { top: 24px; right: 24px; }
  .hero-badge-bottom { bottom: 24px; left: 24px; }

  .trust-bar { grid-template-columns: repeat(4, 1fr); }
  .trust-item { border-bottom: none; }

  .age-strip { padding: 28px 4.5vw; display: flex; align-items: center; gap: 24px; }
  .age-strip > p { margin-bottom: 0; white-space: nowrap; }

  .promise-strip {
    grid-template-columns: repeat(4, 1fr);
  }

  .promise-strip article {
    border-bottom: none;
    padding: 32px 2.5vw;
  }

  .promise-strip article:nth-child(2n) {
    border-right: 1px solid var(--line);
  }

  .shop { padding: 100px 4.5vw; }

  .section-heading {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: end;
    gap: 60px;
    margin-bottom: 56px;
  }

  .section-heading h2 { margin-bottom: 0; }

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

  .product-info h3 { font-size: 15px; }
  .product-info p { font-size: 12px; }
  .product-price { font-size: 17px; }

  .stages {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
  }

  .stages-intro {
    padding: 100px 5vw;
    border-bottom: none;
  }

  .stage-list { border-left: 1px solid var(--line); border-top: none; }

  .stage-card {
    grid-template-columns: 60px 1fr 40px;
    padding: 28px 4vw;
    min-height: 130px;
  }

  .stage-icon { width: 60px; height: 60px; font-size: 26px; }
  .stage-content strong { font-size: 17px; }
  .stage-content p { font-size: 13px; }

  .milestone-guide { padding: 100px 4.5vw; }

  .milestones-grid { grid-template-columns: repeat(4, 1fr); }
  .milestone-list { grid-template-columns: 1fr; }

  .dev-banner {
    flex-direction: row;
    align-items: center;
    gap: 48px;
    padding: 36px 40px;
  }

  .dev-banner-text { flex: 1; }

  .dev-banner-stats {
    flex-shrink: 0;
    width: 340px;
    padding-top: 0;
    border-top: none;
    border-left: 1px solid rgba(255,255,255,0.1);
    padding-left: 40px;
  }

  .dev-stat b { font-size: 36px; }
  .dev-stat small { font-size: 11px; }

  .method { display: grid; grid-template-columns: 1fr 1fr; }
  .method-visual { min-height: 660px; align-items: flex-end; }
  .method-copy { padding: 100px 7vw; }

  .voices { padding: 100px 6vw; }
  .voices-top { flex-direction: row; align-items: center; margin-bottom: 48px; }

  .testimonials-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .testimonial-featured { grid-column: unset; }

  .bundle {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 5vw;
    align-items: center;
    padding: 100px 6vw;
  }

  .bundle-box { margin-top: 0; height: 420px; }

  .journal { padding: 100px 4.5vw; }
  .journal-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; }

  .journal-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
    gap: 24px;
  }

  .story-art { height: 280px; }
  .story-main { grid-row: unset; }

  .faq-newsletter {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .faq { padding: 100px 6vw; }
  .newsletter { padding: 100px 6vw; }

  footer {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 48px;
    align-items: start;
    padding: 60px 4.5vw 40px;
  }

  .footer-brand { margin-bottom: 0; }

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

  .footer-copy {
    grid-column: 1 / -1;
    text-align: center;
  }
}

/* ==========================================================================
   RESPONSIVE — LARGE DESKTOP (1200px+)
   ========================================================================== */

@media (min-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ==========================================================================
   ACCESSIBILITY & FOCUS STYLES
   ========================================================================== */

:focus-visible {
  outline: 2.5px solid var(--coral);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ==========================================================================
   UTILITY
   ========================================================================== */

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