/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: #FAF7FF;
  color: #1C1035;
  overflow-x: hidden;
}

/* ===== DESIGN TOKENS ===== */
:root {
  --lavender:    #C9A8E0;
  --lavender-lt: #EDE0F8;
  --purple:      #6B2D8B;
  --purple-dk:   #4A1D66;
  --purple-bg:   #F5EEFF;
  --yellow:      #F5C842;
  --yellow-dk:   #E8A020;
  --green:       #4A8B5C;
  --green-lt:    #6BBF80;
  --red-leaf:    #C0392B;
  --orange-leaf: #E67E22;
  --dark:        #1C1035;
  --mid:         #5A4870;
  --muted:       #9580AA;
  --navy:        #1A1040;
}

/* ===== FONTS ===== */
/* Bebas Neue — display / headings */
/* Playfair Display italic — tagline / script */
/* Syne — sub-headings */
/* DM Sans — body */

.purple-text { color: var(--purple); }

/* ===== LAYOUT ===== */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
section { padding: 96px 0; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 30px; border-radius: 100px; font-family: 'DM Sans', sans-serif;
  font-weight: 600; font-size: 15px; cursor: pointer; border: none;
  text-decoration: none; transition: all 0.25s ease; white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--purple), var(--lavender));
  color: #fff; box-shadow: 0 6px 24px rgba(107,45,139,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(107,45,139,0.5); }
.btn-soft { background: var(--lavender-lt); color: var(--purple); font-weight: 600; }
.btn-soft:hover { background: var(--lavender); color: #fff; }
.btn-outline { background: transparent; color: var(--purple); border: 2px solid var(--purple); }
.btn-outline:hover { background: var(--purple); color: #fff; }
.btn-yellow { background: var(--yellow); color: var(--dark); font-weight: 700; }
.btn-yellow:hover { background: var(--yellow-dk); transform: translateY(-2px); }
.btn-nav { background: var(--purple); color: #fff; padding: 10px 22px; font-size: 14px; }
.btn-nav:hover { background: var(--purple-dk); }
.full-w { width: 100%; }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250,247,255,0.92); backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(107,45,139,0.1);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 4px 24px rgba(107,45,139,0.12); }
.nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
  height: 68px; display: flex; align-items: center; gap: 24px;
}
/* ===== LOGO — Bebas Neue, condensed, bold ===== */
.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px; letter-spacing: 4px;
  color: var(--purple); text-decoration: none;
  line-height: 1;
}
.nav-links { display: flex; list-style: none; gap: 28px; margin-left: auto; }
.nav-links a {
  color: var(--mid); text-decoration: none; font-weight: 500; font-size: 14px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--purple); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; }
.mobile-menu { display: none; flex-direction: column; padding: 14px 24px 18px; border-top: 1px solid rgba(107,45,139,0.1); gap: 4px; }
.mobile-menu a { padding: 10px 0; color: var(--mid); text-decoration: none; font-weight: 500; border-bottom: 1px solid rgba(107,45,139,0.06); }
.mobile-menu.open { display: flex; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: #EDE0F8;           /* lavender base matching packaging */
  padding: 100px 24px 80px;
  max-width: 100%; position: relative; overflow: hidden;
}

/* Corner blobs — dark navy amoeba shapes, exactly as on packaging */
.corner-blob {
  position: absolute; pointer-events: none; z-index: 0;
}
.blob-tl {
  width: 320px; height: 300px; top: -60px; left: -60px;
  background: #1A1040;
  border-radius: 40% 60% 55% 45% / 50% 40% 60% 50%;
  opacity: 0.85;
}
.blob-br {
  width: 280px; height: 260px; bottom: -50px; right: -50px;
  background: #1A1040;
  border-radius: 55% 45% 40% 60% / 45% 55% 45% 55%;
  opacity: 0.8;
}

/* Scatter dots — small dark dots scattered on purple bg */
.scatter-dots { position: absolute; inset: 0; pointer-events: none; z-index: 0; }

/* Autumn leaves */
.autumn-leaves { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.autumn-leaf { position: absolute; }
.al-1 { top: 50px; right: 80px; width: 72px; transform: rotate(-15deg); filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15)); }
.al-2 { top: 110px; right: 30px; width: 60px; transform: rotate(20deg); filter: drop-shadow(0 4px 8px rgba(0,0,0,0.12)); }
.al-3 { top: 160px; right: 100px; width: 52px; transform: rotate(-5deg); }
.al-4 { bottom: 180px; right: 60px; width: 44px; transform: rotate(30deg); opacity: 0.7; }
.al-5 { bottom: 120px; right: 120px; width: 50px; }

/* Monstera leaf */
.monstera-leaf { position: absolute; pointer-events: none; z-index: 1; }
.ml-hero { bottom: 0; left: -30px; width: 120px; opacity: 0.5; }

.hero-inner {
  position: relative; z-index: 2;
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; gap: 56px;
}
.hero-content { flex: 1; max-width: 560px; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.55); color: var(--purple);
  border: 1px solid rgba(107,45,139,0.2); padding: 7px 16px;
  border-radius: 100px; font-size: 13px; font-weight: 600; margin-bottom: 20px;
  backdrop-filter: blur(8px);
}
.dot-pill {
  width: 7px; height: 7px; border-radius: 50%; background: var(--purple); display: inline-block;
}

/* ===== HERO TITLE — Bebas Neue display ===== */
.hero-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 9vw, 112px);
  line-height: 0.95;
  letter-spacing: 2px;
  color: var(--dark);
  margin-bottom: 12px;
}
/* "Redefined." — Playfair italic, purple */
.hero-italic {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 800;
  font-size: clamp(52px, 7.5vw, 96px);
  letter-spacing: 0px;
  background: linear-gradient(120deg, var(--purple), var(--lavender));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 17px; color: var(--mid); line-height: 1.7;
  margin-bottom: 22px; max-width: 460px;
}

/* White pill badges — from packaging */
.pill-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 30px; }
.pill-badge {
  background: #fff; color: var(--purple);
  border: 1.5px solid rgba(107,45,139,0.2);
  padding: 7px 16px; border-radius: 100px;
  font-size: 12px; font-weight: 600;
  box-shadow: 0 2px 10px rgba(107,45,139,0.1);
}
.pill-dark {
  background: rgba(255,255,255,0.15); color: #fff;
  border-color: rgba(255,255,255,0.3);
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-stats { display: flex; align-items: center; gap: 20px; }
.hs { display: flex; flex-direction: column; }
.hs strong { font-family: 'Bebas Neue', sans-serif; font-size: 30px; letter-spacing: 1px; color: var(--dark); line-height: 1; }
.hs span { font-size: 11px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-top: 2px; }
.hs-div { width: 1px; height: 36px; background: rgba(107,45,139,0.2); }

/* ===== HERO VISUAL — Product box ===== */
.hero-visual {
  flex: 0 0 auto;
  display: flex; flex-direction: column; align-items: flex-end;
  gap: 24px; position: relative;
}
.pkg-stack { position: relative; width: 260px; height: 340px; }
.pkg-card {
  position: absolute; border-radius: 22px;
  box-shadow: 0 24px 64px rgba(107,45,139,0.25);
  overflow: hidden; transition: transform 0.3s;
}
.pkg-card:hover { transform: translateY(-8px) !important; }
.pkg-front {
  width: 220px; height: 300px;
  background: linear-gradient(145deg, #C9A8E0, #9B59B6);
  right: 0; bottom: 0; z-index: 3; transform: rotate(2deg);
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  padding: 16px;
}
.pkg-back {
  width: 190px; height: 260px;
  background: linear-gradient(145deg, #B088C8, #7B3FA0);
  left: 0; bottom: 20px; z-index: 2; transform: rotate(-6deg);
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  padding: 16px;
}
.pkg-circle-bg {
  position: absolute; width: 190px; height: 190px; border-radius: 50%;
  background: rgba(255,255,255,0.1); top: 10px; left: 50%; transform: translateX(-50%);
}
.pkg-girl { width: 140px; position: relative; z-index: 2; filter: drop-shadow(0 6px 16px rgba(0,0,0,0.2)); }
.pkg-brand {
  font-family: 'Bebas Neue', sans-serif; font-size: 20px;
  letter-spacing: 4px; color: #fff; position: relative; z-index: 3;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.pkg-sub {
  font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.75);
  letter-spacing: 2px; text-transform: uppercase; position: relative; z-index: 3; margin-top: 2px;
}
.pkg-size-dot {
  position: absolute; top: 14px; right: 14px; z-index: 4;
  width: 34px; height: 34px; border-radius: 50%;
  background: #3B82F6; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 800; letter-spacing: 0.3px;
}
.pkg-leaf-acc { position: absolute; top: 12px; left: 12px; z-index: 4; }
.pkg-leaf-corner { position: absolute; bottom: 48px; left: 10px; z-index: 4; opacity: 0.7; }

/* Molecule decoration */
.molecule-deco {
  background: rgba(255,255,255,0.6); padding: 12px 16px;
  border-radius: 16px; backdrop-filter: blur(8px);
  border: 1px solid rgba(107,45,139,0.15);
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--purple); padding: 13px 0; overflow: hidden; white-space: nowrap;
}
.trust-track {
  display: inline-flex; gap: 48px;
  animation: marquee 24s linear infinite;
}
.trust-track span { color: rgba(255,255,255,0.88); font-size: 13px; font-weight: 500; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block; background: var(--lavender-lt); color: var(--purple);
  border: 1px solid var(--lavender); padding: 6px 16px; border-radius: 100px;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 14px;
}
.tag-lt {
  background: rgba(255,255,255,0.12) !important;
  color: rgba(255,255,255,0.9) !important;
  border-color: rgba(255,255,255,0.25) !important;
}

/* ===== BEBAS NEUE section title ===== */
.section-title-bb {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5.5vw, 68px);
  letter-spacing: 2px;
  line-height: 0.95;
  margin-bottom: 16px;
  color: var(--dark);
}

.section-sub {
  font-size: 16px; color: var(--mid); max-width: 500px;
  margin: 0 auto; line-height: 1.7;
}

/* Monstera section decorations */
.section-monstera { position: absolute; pointer-events: none; z-index: 0; }
.sm-tr { top: 0; right: 0; }
.sm-bl { bottom: 0; left: 0; }

/* ===== PRODUCTS ===== */
.products { background: #FAF7FF; position: relative; overflow: hidden; }
.product-filters { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.filter-btn {
  padding: 9px 20px; border-radius: 100px; border: 1.5px solid var(--lavender);
  background: #fff; font-size: 13px; font-weight: 600; cursor: pointer;
  transition: all 0.2s; color: var(--mid);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--purple); color: #fff; border-color: var(--purple);
  box-shadow: 0 4px 16px rgba(107,45,139,0.28);
}
.products-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(252px, 1fr)); gap: 24px;
}
.product-card {
  background: #fff; border-radius: 24px; padding: 24px;
  box-shadow: 0 2px 14px rgba(107,45,139,0.07);
  border: 1.5px solid transparent; cursor: pointer; transition: all 0.3s;
  position: relative; overflow: hidden;
}
.product-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--purple), var(--lavender));
  opacity: 0; transition: opacity 0.3s;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(107,45,139,0.14); border-color: var(--lavender); }
.product-card:hover::before { opacity: 1; }
.prod-img-box {
  width: 100%; height: 160px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 56px; margin-bottom: 16px; position: relative;
}
.prod-leaf-acc { position: absolute; right: 8px; bottom: 8px; }
.prod-cat { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--purple); margin-bottom: 5px; }
.prod-name { font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.prod-desc { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 10px; }
.prod-pack { font-size: 11px; color: #ccc; margin-bottom: 14px; }
.prod-row { display: flex; align-items: center; justify-content: space-between; }
.prod-price { font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 1px; color: var(--purple); line-height: 1; }
.prod-old { font-size: 13px; color: #ccc; text-decoration: line-through; margin-left: 6px; }
.prod-add {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--lavender));
  color: #fff; border: none; font-size: 20px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: transform 0.2s;
}
.prod-add:hover { transform: scale(1.12); }

/* ===== HOW TO USE ===== */
.howtouse {
  background: #EDE0F8; position: relative; overflow: hidden;
  padding: 80px 0;
}
/* dark navy corner blobs — exact match to packaging side panel */
.htu-blob { position: absolute; pointer-events: none; z-index: 0; }
.htu-blob-tl {
  width: 260px; height: 240px; top: -50px; left: -50px;
  background: var(--navy);
  border-radius: 40% 60% 55% 45% / 50% 40% 60% 50%;
  opacity: 0.9;
}
.htu-blob-br {
  width: 220px; height: 200px; bottom: -40px; right: -40px;
  background: var(--navy);
  border-radius: 55% 45% 40% 60% / 45% 55% 45% 55%;
  opacity: 0.85;
}
.htu-molecule { position: absolute; bottom: 28px; left: 40px; z-index: 2; }

/* "HOW TO USE" title — large Bebas Neue with underline, matching packaging */
.htu-big-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 7vw, 88px);
  letter-spacing: 3px;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 8px;
  position: relative; z-index: 2;
}
.htu-title-underline {
  width: 120px; height: 4px;
  background: var(--dark); margin: 0 auto 48px;
  position: relative; z-index: 2;
}
.htu-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  margin-bottom: 56px; position: relative; z-index: 2;
}
.htu-step-card {
  background: rgba(255,255,255,0.75); border-radius: 24px; padding: 32px 24px;
  text-align: center; backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: 0 8px 32px rgba(107,45,139,0.1);
}
.htu-step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--yellow); color: var(--dark);
  font-family: 'Bebas Neue', sans-serif; font-size: 24px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.htu-step-icon { margin-bottom: 16px; }
.htu-step-card h3 {
  font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700;
  color: var(--dark); margin-bottom: 10px;
}
.htu-step-card p { font-size: 14px; color: var(--mid); line-height: 1.65; }

/* Girl panel */
.htu-girl-panel {
  display: flex; gap: 48px; align-items: center;
  background: rgba(107,45,139,0.1); border-radius: 28px; padding: 32px 40px;
  position: relative; z-index: 2;
}
.htu-girl-left { flex: 1; }
.htu-note { font-size: 14px; color: var(--mid); line-height: 1.7; margin-bottom: 20px; }
.htu-badges-row { display: flex; gap: 10px; flex-wrap: wrap; }
.htu-girl-right {
  display: flex; flex-direction: column; align-items: center; gap: 12px; flex-shrink: 0;
}
/* "Confidence Redefined." — Playfair italic script */
.confidence-script {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-weight: 700;
  font-size: 22px; color: var(--purple);
  letter-spacing: 0.5px;
}

/* ===== CALCULATOR ===== */
.calculator { background: var(--purple-bg); position: relative; overflow: hidden; }
.calc-wrapper { display: flex; gap: 72px; align-items: flex-start; }
.calc-left { flex: 1; padding-top: 8px; }
.calc-feat-list { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.cf-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; color: var(--mid); font-weight: 500;
}
.cf-item span { font-size: 20px; }
.calc-right { flex: 0 0 460px; }
.calc-card {
  background: #fff; border-radius: 28px; padding: 36px;
  box-shadow: 0 16px 56px rgba(107,45,139,0.12);
}
.calc-header { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.calc-emoji { font-size: 32px; }
.calc-title {
  font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800;
}
.calc-form { display: flex; flex-direction: column; gap: 20px; }
.fg { display: flex; flex-direction: column; gap: 8px; }
.fg label {
  font-size: 12px; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: 1px;
}
.fg input[type="date"] {
  padding: 12px 16px; border: 1.5px solid var(--lavender-lt);
  border-radius: 12px; font-size: 15px; font-family: 'DM Sans', sans-serif;
  color: var(--dark); outline: none; transition: border-color 0.2s; background: var(--purple-bg);
}
.fg input[type="date"]:focus { border-color: var(--purple); }
.range-row { display: flex; align-items: center; gap: 14px; }
input[type="range"] {
  flex: 1; height: 6px; border-radius: 3px; appearance: none;
  background: var(--lavender-lt); outline: none; cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  appearance: none; width: 20px; height: 20px; border-radius: 50%;
  background: var(--purple); box-shadow: 0 2px 8px rgba(107,45,139,0.4);
}
.rv { font-weight: 700; color: var(--purple); min-width: 60px; text-align: right; font-size: 14px; }
.calc-results {
  border-top: 1.5px solid var(--lavender-lt); padding-top: 24px;
  margin-top: 24px; flex-direction: column; gap: 0;
}
.res-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.ri { display: flex; align-items: flex-start; gap: 10px; }
.ri-ico { font-size: 22px; margin-top: 2px; }
.rl { font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; }
.rv2 { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; color: var(--dark); margin-top: 2px; }
.cycle-vis {
  display: flex; gap: 4px; flex-wrap: wrap;
  padding: 16px; background: var(--purple-bg); border-radius: 16px;
}
.cday {
  width: 26px; height: 26px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 600; color: #fff;
}

/* ===== SUBSCRIPTIONS ===== */
.subscribe { background: #fff; }
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 28px; }
.plan-card {
  background: var(--purple-bg); border-radius: 28px; padding: 36px;
  border: 2px solid transparent; position: relative; transition: all 0.3s; overflow: hidden;
}
.plan-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(107,45,139,0.14); }
.plan-hero {
  background: linear-gradient(145deg, var(--purple), var(--purple-dk));
  border-color: var(--yellow); transform: scale(1.03);
  box-shadow: 0 12px 48px rgba(107,45,139,0.4);
}
.plan-hero:hover { transform: scale(1.03) translateY(-6px); }
.plan-popular-ribbon {
  position: absolute; top: -2px; left: 50%; transform: translateX(-50%);
  background: var(--yellow); color: var(--dark);
  padding: 5px 20px; border-radius: 0 0 16px 16px;
  font-size: 12px; font-weight: 700; white-space: nowrap;
}
.plan-leaf-deco { position: absolute; top: 14px; right: 14px; opacity: 0.7; }
.plan-tier { font-family: 'Bebas Neue', sans-serif; font-size: 18px; letter-spacing: 2px; color: var(--purple); margin-bottom: 8px; }
.plan-price { font-family: 'Bebas Neue', sans-serif; font-size: 52px; letter-spacing: 1px; color: var(--dark); line-height: 1; margin-bottom: 6px; }
.plan-price span { font-size: 18px; color: var(--muted); font-family: 'DM Sans', sans-serif; font-weight: 500; }
.plan-tag-line { font-size: 14px; color: var(--mid); margin-bottom: 22px; }
.plan-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.plan-list li { font-size: 14px; color: var(--mid); }
.plan-list li.dim { color: #ccc; }
.plan-list-lt li { color: rgba(255,255,255,0.85); }
.sub-note { text-align: center; font-size: 13px; color: var(--muted); line-height: 2; }

/* ===== IMPACT ===== */
.impact {
  background: linear-gradient(145deg, #1C1035, #2D1B44, #1C1035);
  padding: 96px 0; position: relative; overflow: hidden;
}
.imp-blob-tl {
  width: 300px; height: 280px; top: -60px; left: -60px;
  background: rgba(107,45,139,0.4);
  border-radius: 40% 60% 55% 45% / 50% 40% 60% 50%;
}
.imp-blob-br {
  width: 260px; height: 240px; bottom: -50px; right: -50px;
  background: rgba(107,45,139,0.35);
  border-radius: 55% 45% 40% 60% / 45% 55% 45% 55%;
}
.impact-autumn { position: absolute; pointer-events: none; z-index: 1; }
.al-impact-1 { top: 40px; right: 80px; width: 56px; transform: rotate(-18deg); }
.al-impact-2 { bottom: 60px; right: 180px; width: 44px; transform: rotate(25deg); }
.impact-wrapper { display: flex; gap: 72px; align-items: center; position: relative; z-index: 2; }
.impact-left { flex: 1; }
.impact-stats-row { display: flex; gap: 40px; margin: 28px 0; }
.is { display: flex; flex-direction: column; gap: 4px; }
.in { font-family: 'Bebas Neue', sans-serif; font-size: 42px; letter-spacing: 1px; color: var(--yellow); line-height: 1; }
.il { font-size: 13px; color: rgba(255,255,255,0.5); font-weight: 500; }
.impact-right { flex: 0 0 360px; display: flex; flex-direction: column; align-items: center; gap: 28px; }
.ic-ring-wrap { position: relative; }
.ic-ring {
  width: 200px; height: 200px; border-radius: 50%;
  border: 10px solid rgba(201,168,224,0.2);
  display: flex; align-items: center; justify-content: center; position: relative;
}
.ic-ring::before {
  content: ''; position: absolute; inset: -6px; border-radius: 50%;
  border: 4px solid transparent;
  border-top-color: var(--purple); border-right-color: var(--yellow);
  animation: spin 5s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.ic-inner { text-align: center; }
.ic-pct { font-family: 'Bebas Neue', sans-serif; font-size: 60px; color: var(--yellow); display: block; letter-spacing: 2px; line-height: 1; }
.ic-inner p { font-size: 13px; color: rgba(255,255,255,0.5); }
.impact-molecule { }
.ic-pills { display: flex; flex-direction: column; gap: 10px; width: 100%; }
.ic-pill {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85); padding: 10px 20px; border-radius: 100px;
  font-size: 13px; font-weight: 600; text-align: center;
  backdrop-filter: blur(8px);
}

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--purple-bg); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: #fff; border-radius: 24px; padding: 28px;
  box-shadow: 0 4px 20px rgba(107,45,139,0.07); position: relative; overflow: hidden;
}
.testi-ft {
  background: linear-gradient(145deg, var(--purple), var(--purple-dk));
}
.testi-leaf { position: absolute; bottom: 14px; right: 14px; }
.testi-stars { font-size: 15px; margin-bottom: 14px; }
.testi-card p { font-size: 15px; color: var(--mid); line-height: 1.7; margin-bottom: 22px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-av {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px; color: var(--dark);
}
.testi-author strong { display: block; font-size: 14px; font-weight: 700; color: var(--dark); }
.testi-author span { font-size: 12px; color: var(--muted); }

/* ===== FOOTER ===== */
.footer { background: var(--dark); padding: 64px 0 28px; position: relative; overflow: hidden; }
.footer-monstera { position: absolute; bottom: 0; right: 60px; }
.footer-top { display: flex; gap: 60px; margin-bottom: 48px; position: relative; z-index: 1; }
.footer-brand-col { flex: 0 0 260px; }
.footer-logo {
  font-family: 'Bebas Neue', sans-serif; font-size: 28px;
  letter-spacing: 4px; color: #fff; margin-bottom: 4px;
}
/* Footer tagline — Playfair italic */
.footer-tagline-italic {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-weight: 700;
  font-size: 16px; color: var(--lavender);
  margin-bottom: 12px;
}
.footer-desc { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.7; margin-bottom: 20px; }
.social-row { display: flex; gap: 12px; }
.social-row a { font-size: 22px; text-decoration: none; opacity: 0.6; transition: opacity 0.2s; }
.social-row a:hover { opacity: 1; }
.footer-links-row { display: flex; gap: 48px; flex: 1; }
.fcol { display: flex; flex-direction: column; gap: 10px; }
.fcol h4 {
  font-family: 'Bebas Neue', sans-serif; font-size: 16px;
  letter-spacing: 2px; color: #fff; margin-bottom: 4px;
}
.fcol a { font-size: 14px; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.fcol a:hover { color: var(--lavender); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  position: relative; z-index: 1;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.28); }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(28,16,53,0.75);
  backdrop-filter: blur(12px); z-index: 200;
  display: none; align-items: center; justify-content: center; padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: #fff; border-radius: 28px; padding: 40px;
  max-width: 460px; width: 100%; position: relative;
  animation: modalIn 0.3s ease; overflow: hidden;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.88) translateY(24px); }
  to   { opacity: 1; transform: scale(1)    translateY(0); }
}
.modal-x {
  position: absolute; top: 16px; right: 16px;
  background: var(--purple-bg); border: none;
  width: 30px; height: 30px; border-radius: 50%;
  cursor: pointer; font-size: 13px; color: var(--mid);
  display: flex; align-items: center; justify-content: center;
}
.modal-leaf { position: absolute; top: 14px; left: 14px; opacity: 0.4; }
.modal-title {
  font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 2px; margin-bottom: 4px;
}
.modal-price {
  font-family: 'Bebas Neue', sans-serif; font-size: 36px;
  letter-spacing: 1px; color: var(--purple); margin-bottom: 24px;
}
.modal-form { display: flex; flex-direction: column; gap: 13px; }
.modal-form input, .modal-form select {
  padding: 13px 16px; border: 1.5px solid var(--lavender-lt);
  border-radius: 12px; font-size: 14px; font-family: 'DM Sans', sans-serif;
  outline: none; transition: border-color 0.2s; color: var(--dark); background: var(--purple-bg);
}
.modal-form input:focus, .modal-form select:focus { border-color: var(--purple); }

/* ===== TOAST ===== */
.toast {
  position: fixed; bottom: 32px; left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: linear-gradient(135deg, var(--purple), var(--lavender));
  color: #fff; padding: 13px 28px; border-radius: 100px;
  font-weight: 600; font-size: 15px; z-index: 300;
  transition: transform 0.4s ease;
  box-shadow: 0 8px 32px rgba(107,45,139,0.4);
  white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { flex-direction: column; text-align: center; }
  .hero-actions, .hero-stats, .pill-badges { justify-content: center; }
  .hero-sub { max-width: 100%; }
  .hero-visual { display: none; }
  .calc-wrapper { flex-direction: column; }
  .calc-right { flex: 1; width: 100%; }
  .impact-wrapper { flex-direction: column; }
  .impact-right { display: none; }
  .htu-girl-panel { flex-direction: column; text-align: center; }
}
@media (max-width: 768px) {
  section { padding: 64px 0; }
  .nav-links, .nav-right .btn-nav { display: none; }
  .hamburger { display: flex; }
  .plans-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .htu-grid { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; gap: 36px; }
  .footer-links-row { flex-wrap: wrap; gap: 28px; }
  .impact-stats-row { flex-direction: column; gap: 20px; }
  .res-grid { grid-template-columns: 1fr; }
  .hero-h1 { font-size: 54px; }
  .section-title-bb { font-size: 38px; }
  .htu-big-title { font-size: 44px; }
}
@media (max-width: 480px) {
  .calc-card { padding: 22px; }
  .modal-box { padding: 28px 18px; }
  .hero-stats { flex-wrap: wrap; gap: 14px; }
}
