@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg: #fbf5ee;
  --bg-2: #f5e7d8;
  --bg-3: #efd9c4;
  --ink: #1a0f0c;
  --text: #1f1410;
  --text-2: #3a2620;
  --muted: #806862;
  --line: rgba(31, 20, 16, 0.08);

  --primary: #c45c3c;
  --primary-2: #e08a5a;
  --primary-deep: #6e2616;
  --gold: #d6a974;
  --rose: #e6b9a2;
  --plum: #4a1d2a;

  --cream: #fff8f1;
  --card: #ffffff;

  --shadow-xs:
    0 1px 2px rgba(74, 29, 42, 0.04),
    0 2px 6px rgba(196, 92, 60, 0.04);
  --shadow-sm:
    0 1px 2px rgba(74, 29, 42, 0.04),
    0 4px 10px rgba(196, 92, 60, 0.06),
    0 12px 24px rgba(110, 38, 22, 0.05);
  --shadow-md:
    0 1px 2px rgba(74, 29, 42, 0.05),
    0 6px 16px rgba(196, 92, 60, 0.08),
    0 24px 48px rgba(110, 38, 22, 0.10);
  --shadow-lg:
    0 1px 2px rgba(74, 29, 42, 0.06),
    0 8px 24px rgba(196, 92, 60, 0.10),
    0 40px 80px rgba(110, 38, 22, 0.18);

  --radius: 24px;
  --radius-sm: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background-color: var(--bg);
  background-image:
    radial-gradient(1100px 700px at 88% -8%, rgba(224, 138, 90, 0.28), transparent 55%),
    radial-gradient(900px 600px at -12% 18%, rgba(214, 169, 116, 0.26), transparent 60%),
    radial-gradient(700px 500px at 12% 78%, rgba(230, 185, 162, 0.24), transparent 60%),
    radial-gradient(1000px 700px at 95% 60%, rgba(196, 92, 60, 0.08), transparent 60%),
    radial-gradient(1200px 800px at 50% 115%, rgba(74, 29, 42, 0.10), transparent 60%),
    linear-gradient(180deg, #fdf8f1 0%, #f5e3d2 60%, #ead0b9 100%);
  background-attachment: fixed;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.3;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.page-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(700px 360px at 92% 8%, rgba(255, 220, 190, 0.40), transparent 70%),
    radial-gradient(560px 340px at 4% 82%, rgba(255, 232, 206, 0.28), transparent 70%),
    radial-gradient(420px 260px at 50% 50%, rgba(255, 240, 222, 0.16), transparent 70%);
  z-index: 0;
}

.page-texture {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    repeating-conic-gradient(rgba(214, 169, 116, 0.015) 0% 25%, transparent 0% 50%) 0 0 / 60px 60px,
    radial-gradient(ellipse 800px 400px at 75% 20%, rgba(230, 185, 162, 0.15), transparent 70%),
    radial-gradient(ellipse 600px 300px at 25% 80%, rgba(214, 169, 116, 0.12), transparent 70%);
}

section, footer, nav { position: relative; z-index: 1; }

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 24px;
  background: rgba(251, 245, 238, 0.75);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(196, 92, 60, 0.06);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  flex-shrink: 0;
}

.nav-logo-icon {
  color: var(--primary);
  display: flex;
}

.nav-logo-text {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.nav-logo-sub {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: -3px;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 6px;
}

.nav-link {
  text-decoration: none;
  color: var(--text-2);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 999px;
  transition: color 0.25s, background 0.25s;
}

.nav-link:hover {
  color: var(--ink);
  background: rgba(196, 92, 60, 0.06);
}

.nav-link.active {
  color: var(--primary-deep);
  font-weight: 600;
}

.nav-contact {
  display: none;
  padding: 10px 22px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s;
  box-shadow: 0 4px 14px rgba(26, 15, 12, 0.18);
  flex-shrink: 0;
}

.nav-contact:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26, 15, 12, 0.28);
}

.nav-mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-open .nav-mobile-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-mobile-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-mobile-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile-menu {
  display: none;
  flex-direction: column;
  padding: 8px 0 20px;
  gap: 4px;
}

.nav-open .nav-mobile-menu {
  display: flex;
}

.nav-mobile-menu .nav-link {
  padding: 12px 16px;
  font-size: 15px;
}

.nav-mobile-menu .nav-contact {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 8px;
  margin-left: 16px;
}

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-contact { display: inline-flex; }
  .nav-mobile-toggle { display: none; }
  .nav-mobile-menu { display: none !important; }
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3 {
  font-family: 'Fraunces', 'Playfair Display', Georgia, serif;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 14px;
  font-weight: 600;
}

h1 {
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.h1-soft { color: var(--text-2); font-weight: 500; }

h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.15;
}

h3 {
  font-size: 19px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 8px;
}

p { margin: 0 0 14px; }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-deep);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 248, 241, 0.55));
  border: 1px solid rgba(196, 92, 60, 0.18);
  padding: 7px 15px 7px 13px;
  border-radius: 999px;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-weight: 700;
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 8px 20px rgba(110, 38, 22, 0.06);
}

.tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--gold) 60%, var(--primary-2) 100%);
  box-shadow:
    0 0 0 3px rgba(196, 92, 60, 0.10),
    0 0 8px rgba(214, 169, 116, 0.6);
}

.tag.center { margin-left: auto; margin-right: auto; }

.lead {
  color: var(--muted);
  font-size: 17px;
  font-weight: 400;
}

.lead.subtle {
  font-size: 15.5px;
  color: var(--muted);
  opacity: 0.85;
}

.center { text-align: center; }

.accent {
  background:
    linear-gradient(135deg, var(--primary-deep) 0%, var(--primary) 35%, var(--gold) 70%, var(--primary-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  font-weight: 700;
}

/* ============================================
   LAYOUT
   ============================================ */

.section {
  padding: 100px 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.section.solution,
.section.results { text-align: center; }

.section.solution h2,
.section.results h2 { max-width: 760px; margin-left: auto; margin-right: auto; }

.section .lead.center { max-width: 620px; margin-left: auto; margin-right: auto; }

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

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  padding: 50px 24px 80px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
}

@media (min-width: 900px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    padding: 70px 24px 100px;
    gap: 50px;
    align-items: start;
  }
}

.hero-copy {
  max-width: 560px;
  padding-top: 20px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-right {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

@media (max-width: 899px) {
  .hero-right {
    flex-direction: column;
    align-items: center;
  }
}

/* Feature Pills */
.hero-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
}

@media (max-width: 899px) {
  .hero-features {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 18px;
  box-shadow: var(--shadow-xs);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s;
  min-width: 160px;
}

.feature-pill:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.feature-pill-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(214, 169, 116, 0.15), rgba(196, 92, 60, 0.08));
  color: var(--primary);
  flex-shrink: 0;
}

.feature-pill-text {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.2;
  letter-spacing: 0.3px;
}

.feature-pill-text strong {
  display: block;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* ============================================
   DASHBOARD
   ============================================ */

.dashboard {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 28px;
  padding: 24px;
  box-shadow: var(--shadow-md);
  width: 100%;
  max-width: 320px;
  flex-shrink: 0;
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.dashboard-title {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--ink);
}

.dashboard-plus {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(214, 169, 116, 0.1);
  color: var(--primary);
  font-size: 18px;
  font-weight: 300;
  cursor: pointer;
}

.dashboard-score-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 248, 241, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-xs);
}

.dashboard-score-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--muted);
  margin-bottom: 6px;
}

.dashboard-score-value {
  font-family: 'Fraunces', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 8px;
}

.dashboard-score-max {
  font-size: 18px;
  font-weight: 500;
  color: var(--muted);
}

.dashboard-chart {
  height: 50px;
  margin-bottom: 10px;
}

.dashboard-chart-svg {
  width: 100%;
  height: 100%;
}

.dashboard-message {
  font-size: 12px;
  color: var(--primary);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dashboard-check {
  color: var(--gold);
  font-weight: 700;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

.dashboard-stat {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 248, 241, 0.85));
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 16px;
  padding: 14px;
  box-shadow: var(--shadow-xs);
}

.dashboard-stat-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--muted);
  margin-bottom: 4px;
}

.dashboard-stat-value {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}

.dashboard-stat-dim {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.dashboard-progress-bar {
  height: 4px;
  background: rgba(214, 169, 116, 0.15);
  border-radius: 4px;
  margin-top: 8px;
  overflow: hidden;
}

.dashboard-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--primary-2));
  border-radius: 4px;
}

.dashboard-trend {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 248, 241, 0.85));
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 16px;
  padding: 14px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-xs);
}

.dashboard-trend-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--muted);
  margin-bottom: 10px;
}

.dashboard-trend-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 50px;
  margin-bottom: 8px;
}

.trend-bar {
  flex: 1;
  background: linear-gradient(180deg, rgba(214, 169, 116, 0.25), rgba(214, 169, 116, 0.1));
  border-radius: 4px;
  transition: background 0.3s;
}

.trend-bar.active {
  background: linear-gradient(180deg, var(--gold), var(--primary-2));
}

.dashboard-score-badges {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.score-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(214, 169, 116, 0.12), rgba(196, 92, 60, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.8);
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
}

.dashboard-checkin {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--gold), var(--primary-2));
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 8px 20px rgba(214, 169, 116, 0.3);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s;
}

.dashboard-checkin:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(214, 169, 116, 0.4);
}

/* ============================================
   THE OFFER (integrated section)
   ============================================ */

.offer-section { text-align: center; padding-top: 80px; }

.offer-head { max-width: 640px; margin: 0 auto; }
.offer-head h2 { margin-bottom: 16px; }
.offer-head .lead.center { margin-bottom: 0; }

.offer-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
  text-align: left;
  align-items: stretch;
}

@media (min-width: 860px) {
  .offer-grid-2 {
    grid-template-columns: 1.12fr 0.88fr;
    gap: 32px;
    align-items: center;
  }
}

.offer-includes {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 248, 241, 0.55) 100%);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--radius);
  padding: 32px 32px 28px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
}

.offer-includes-title {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--primary-deep);
  margin-bottom: 22px;
}

.offer-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 22px;
}

@media (max-width: 560px) {
  .offer-checklist { grid-template-columns: 1fr; gap: 13px; }
}

.offer-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-2);
}

.offer-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--gold) 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(196, 92, 60, 0.3);
}

.offer-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  padding: 36px 30px;
  border-radius: var(--radius);
  background:
    radial-gradient(360px 220px at 50% -12%, rgba(224, 138, 90, 0.20), transparent 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 248, 241, 0.72) 100%);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  overflow: hidden;
}

.offer-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--primary) 20%, var(--gold) 50%, var(--primary) 80%, transparent 100%);
  opacity: 0.85;
}

.offer-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin-bottom: 14px;
}

.offer-price-amount {
  font-family: 'Fraunces', serif;
  font-size: clamp(42px, 9vw, 56px);
  font-weight: 700;
  line-height: 1;
  color: var(--primary-deep);
}

.offer-price-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--muted);
}

.offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 24px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(31, 88, 65, 0.08);
  border: 1px solid rgba(31, 88, 65, 0.18);
  color: #1f5841;
  font-size: 13px;
  font-weight: 600;
}

.offer-cta { width: 100%; }

.offer-microcopy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 16px 0 0;
  font-size: 12.5px;
  color: var(--muted);
}

.offer-microcopy svg { opacity: 0.6; flex-shrink: 0; }

@media (max-width: 600px) {
  .offer-section { padding-top: 60px; }
  .offer-includes { padding: 26px 22px 24px; }
  .offer-panel { padding: 30px 22px; }
  .offer-cta { font-size: 15px; }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.2px;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
  cursor: pointer;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

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

.btn-arrow {
  font-size: 16px;
  transition: transform 0.3s;
}

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

.btn-dark {
  background: #1a1a1a;
  color: #fff;
  box-shadow:
    0 4px 14px rgba(26, 26, 26, 0.25),
    0 12px 32px rgba(26, 26, 26, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.btn-dark::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 50%);
  pointer-events: none;
}

.btn-dark:hover {
  background: #111;
  box-shadow:
    0 6px 20px rgba(26, 26, 26, 0.35),
    0 16px 42px rgba(26, 26, 26, 0.20);
}

.btn-dark.large { padding: 18px 36px; font-size: 16px; }

.btn-outline {
  background: rgba(255, 255, 255, 0.55);
  color: var(--primary-deep);
  border: 1.5px solid rgba(196, 92, 60, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.85);
  border-color: var(--primary);
  box-shadow: 0 8px 22px rgba(110, 38, 22, 0.10);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #1f5841 0%, #163b2d 100%);
  color: #fff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.18) inset,
    0 12px 28px rgba(22, 59, 45, 0.30);
}

.btn-whatsapp:hover {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.20) inset,
    0 16px 36px rgba(22, 59, 45, 0.40);
}

.wa-icon { width: 18px; height: 18px; }

.btn-ghost {
  background: rgba(255, 255, 255, 0.55);
  color: var(--primary-deep);
  border: 1px solid rgba(196, 92, 60, 0.32);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.85);
  border-color: var(--primary);
  box-shadow: 0 8px 22px rgba(110, 38, 22, 0.10);
}

/* ============================================
   CARDS / GRIDS
   ============================================ */

.solution-grid,
.offer-grid,
.nutrition-grid {
  display: grid;
  gap: 22px;
  margin-top: 40px;
  text-align: left;
}

@media (min-width: 760px) {
  .solution-grid,
  .nutrition-grid { grid-template-columns: repeat(3, 1fr); }
}

.card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 248, 241, 0.92) 100%);
  padding: 32px 26px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255, 255, 255, 0.9);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--primary) 20%, var(--gold) 50%, var(--primary) 80%, transparent 100%);
  opacity: 0.85;
}

.card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(420px 180px at 50% 110%, rgba(214, 169, 116, 0.12), transparent 70%);
}

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

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(214, 169, 116, 0.14), rgba(196, 92, 60, 0.07));
  color: var(--primary);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.card-num {
  display: inline-block;
  font-family: 'Fraunces', serif;
  font-size: 13px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 2px;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.card h3 { color: var(--ink); position: relative; z-index: 1; }

.card p {
  color: var(--muted);
  font-size: 15.5px;
  margin: 0;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ============================================
   RESULTS / TRANSFORMATION
   ============================================ */

.results-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 48px;
  text-align: left;
}

@media (min-width: 760px) {
  .results-layout {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
  }
}

.results-image-frame {
  position: relative;
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
}

.results-image-frame::before {
  content: '';
  position: absolute;
  inset: -28px;
  background:
    radial-gradient(closest-side, rgba(224, 138, 90, 0.24), transparent 70%),
    linear-gradient(135deg, rgba(196, 92, 60, 0.16), rgba(214, 169, 116, 0.12));
  border-radius: 36px;
  filter: blur(32px);
  z-index: -1;
}

.results-image-frame img {
  width: 100%;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.6);
  display: block;
}

.results-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.results-badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.results-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s;
}

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

.results-badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(214, 169, 116, 0.15), rgba(196, 92, 60, 0.08));
  color: var(--primary);
  flex-shrink: 0;
}

.results-badge-text {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  line-height: 1.3;
}

.results-badge-text strong {
  display: block;
  font-size: 14px;
  color: var(--ink);
  font-weight: 700;
}

/* ============================================
   OFFER
   ============================================ */

.offer-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 900px) {
  .offer-layout {
    grid-template-columns: 0.4fr 0.6fr;
    gap: 60px;
    align-items: start;
  }
}

.offer-intro {
  text-align: left;
}

.offer-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.offer-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 600px) {
  .offer-grid { grid-template-columns: repeat(3, 1fr); }
}

.offer-card {
  padding: 26px 22px 24px;
}

.offer-cta-card {
  background: var(--ink);
  border-radius: var(--radius);
  padding: 2px;
  box-shadow:
    0 8px 24px rgba(26, 15, 12, 0.20),
    0 24px 48px rgba(26, 15, 12, 0.12);
}

.offer-cta-inner {
  background: linear-gradient(135deg, #1a1a1a 0%, #222 50%, #1a1a1a 100%);
  border-radius: 22px;
  padding: 32px 28px;
  text-align: center;
}

.offer-cta-price {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 6px;
}

.offer-cta-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 20px;
}

.offer-cta-inner .btn-dark {
  background: #fff;
  color: var(--ink);
  width: 100%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.offer-cta-inner .btn-dark:hover {
  background: #f5f5f5;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
}

.offer-cta-inner .btn-dark::after { display: none; }

.offer-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 18px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.3px;
}

.trust-item svg { opacity: 0.5; }

/* ============================================
   NUTRITION
   ============================================ */

.section.nutrition { text-align: center; }
.section.nutrition h2 { max-width: 760px; margin-left: auto; margin-right: auto; }

.nutrition-card .card-icon {
  margin-bottom: 16px;
}

/* ============================================
   FINAL CTA
   ============================================ */

.final-cta-wrap {
  padding: 40px 20px 80px;
  max-width: 1100px;
  margin: 40px auto 0;
}

.final-cta {
  position: relative;
  text-align: center;
  background:
    radial-gradient(700px 340px at 50% -10%, rgba(255, 220, 190, 0.55), transparent 70%),
    radial-gradient(500px 300px at 100% 110%, rgba(214, 169, 116, 0.30), transparent 70%),
    radial-gradient(500px 300px at 0% 110%, rgba(230, 185, 162, 0.30), transparent 70%),
    linear-gradient(180deg, #fff8f1 0%, #f5e1cf 60%, #efd0b8 100%);
  padding: 80px 32px 64px;
  border-radius: 36px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 -1px 0 rgba(110, 38, 22, 0.04) inset,
    var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.85);
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(214, 169, 116, 0.5) 50%, rgba(196, 92, 60, 0.35) 100%);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.final-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(380px 200px at 12% 100%, rgba(196, 92, 60, 0.10), transparent 70%),
    radial-gradient(380px 200px at 88% 100%, rgba(214, 169, 116, 0.10), transparent 70%);
  pointer-events: none;
}

.final-cta > * { position: relative; z-index: 1; }

.final-cta h2 { margin-bottom: 14px; max-width: 640px; margin-left: auto; margin-right: auto; }
.final-cta .lead.center { margin-bottom: 28px; }
.final-cta .btn { margin: 8px 6px; }

.final-cta .after-pay {
  font-size: 13.5px;
  color: var(--muted);
  margin: 22px 0 12px;
}

.final-cta .secure { margin-top: 16px; }

.secure {
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: 0.3px;
  margin: 0;
}

/* ============================================
   DIVIDER
   ============================================ */

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px auto 28px;
  max-width: 320px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(110, 38, 22, 0.22), transparent);
}

.divider span { padding: 0 14px; }

/* ============================================
   FREE GUIDE
   ============================================ */

.free-guide {
  max-width: 460px;
  margin: 0 auto;
}

.free-guide h3 {
  font-size: 20px;
  margin-bottom: 6px;
  color: var(--ink);
}

.free-guide p {
  font-size: 14.5px;
  color: var(--muted);
  margin-bottom: 18px;
}

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

.footer {
  text-align: center;
  padding: 30px 20px 40px;
  color: var(--muted);
  font-size: 13px;
}

.footer p { margin: 0; }

/* ============================================
   WHY (stacked centered leads)
   ============================================ */

.section.solution .lead.center + .lead.center { margin-top: -2px; }

/* ============================================
   PROGRAM — WHAT YOU'LL GET (6 cards)
   ============================================ */

.section.program { text-align: center; }
.section.program h2 { max-width: 760px; margin-left: auto; margin-right: auto; }

.features-grid {
  display: grid;
  gap: 22px;
  margin-top: 44px;
  text-align: left;
}

@media (min-width: 620px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 920px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
}

.feature-card { padding: 30px 26px 28px; }

.feature-card .card-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
}

/* Program CTA card (no pricing) */
.program-cta {
  margin-top: 44px;
  background: var(--ink);
  border-radius: var(--radius);
  padding: 2px;
  box-shadow:
    0 8px 24px rgba(26, 15, 12, 0.20),
    0 24px 48px rgba(26, 15, 12, 0.12);
}

.program-cta-inner {
  background: linear-gradient(135deg, #1a1a1a 0%, #232323 50%, #1a1a1a 100%);
  border-radius: 22px;
  padding: 40px 28px;
  text-align: center;
}

.program-cta-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 3vw, 28px);
  color: #fff;
  margin-bottom: 8px;
}

.program-cta-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 24px;
}

.program-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.btn-light {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.30);
}

.btn-light:hover {
  background: #f6f0e8;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.40);
}

.btn-ghost-dark {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.btn-ghost-dark:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
}

.program-cta .offer-trust { margin-top: 22px; }

/* ============================================
   CTA BAND (mid-page)
   ============================================ */

.cta-band-wrap {
  padding: 20px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.cta-band {
  position: relative;
  text-align: center;
  background:
    radial-gradient(700px 340px at 50% -10%, rgba(255, 220, 190, 0.55), transparent 70%),
    radial-gradient(500px 300px at 100% 110%, rgba(214, 169, 116, 0.30), transparent 70%),
    radial-gradient(500px 300px at 0% 110%, rgba(230, 185, 162, 0.30), transparent 70%),
    linear-gradient(180deg, #fff8f1 0%, #f5e1cf 60%, #efd0b8 100%);
  padding: 60px 32px;
  border-radius: 32px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.85);
}

.cta-band h2 { max-width: 680px; margin-left: auto; margin-right: auto; margin-bottom: 14px; }
.cta-band .lead.center { margin-bottom: 28px; }

/* ============================================
   TESTIMONIALS CAROUSEL (WhatsApp style)
   ============================================ */

.section.testimonials { text-align: center; }
.section.testimonials h2 { max-width: 760px; margin-left: auto; margin-right: auto; }

.testi-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 980px;
  margin: 44px auto 0;
}

.testi-track {
  display: flex;
  overflow: hidden;
  border-radius: var(--radius);
  flex: 1;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.testi-slide {
  flex: 0 0 calc(100% / var(--per-view, 1));
  max-width: calc(100% / var(--per-view, 1));
  padding: 6px;
  box-sizing: border-box;
}

.wa-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 248, 241, 0.92) 100%);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  text-align: left;
}

.wa-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: linear-gradient(135deg, #1f5841 0%, #163b2d 100%);
  color: #fff;
}

.wa-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 17px;
  flex-shrink: 0;
}

.wa-meta { display: flex; flex-direction: column; line-height: 1.2; flex: 1; }
.wa-name { font-weight: 600; font-size: 14.5px; }
.wa-status { font-size: 11.5px; color: rgba(255, 255, 255, 0.65); }
.wa-card-icon { width: 22px; height: 22px; color: rgba(255, 255, 255, 0.85); flex-shrink: 0; }

.wa-body {
  margin: 0;
  padding: 22px 18px 24px;
  background:
    radial-gradient(circle at 20% 10%, rgba(214, 169, 116, 0.06), transparent 60%),
    rgba(236, 226, 214, 0.35);
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 9px;
}

.wa-bubble {
  position: relative;
  background: #fff;
  border-radius: 4px 16px 16px 16px;
  padding: 14px 16px 22px;
  font-size: 15.5px;
  color: var(--text);
  line-height: 1.55;
  box-shadow: 0 2px 6px rgba(74, 29, 42, 0.08);
  max-width: 92%;
}

.wa-bubble::before {
  content: '';
  position: absolute;
  top: 0;
  left: -7px;
  border-width: 0 8px 8px 0;
  border-style: solid;
  border-color: transparent #fff transparent transparent;
}

.wa-time {
  display: block;
  text-align: right;
  font-size: 10.5px;
  color: var(--muted);
  margin-top: 4px;
}

.wa-ticks { color: #34b7f1; font-size: 11px; }

.testi-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(196, 92, 60, 0.2);
  background: rgba(255, 255, 255, 0.7);
  color: var(--primary-deep);
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--shadow-xs);
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

.testi-arrow:hover {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

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

.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(110, 38, 22, 0.18);
  cursor: pointer;
  transition: width 0.3s, background 0.3s;
}

.testi-dot.active {
  width: 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
}

@media (max-width: 600px) {
  .testi-arrow { width: 38px; height: 38px; }
  .testi-carousel { gap: 6px; }
}

/* ============================================
   FOUNDER
   ============================================ */

.founder-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 820px) {
  .founder-layout {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
  }
}

.founder-portrait {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.founder-avatar {
  position: relative;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1 / 1;
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(closest-side at 50% 35%, rgba(255, 255, 255, 0.7), transparent 75%),
    linear-gradient(150deg, var(--rose) 0%, var(--gold) 55%, var(--primary-2) 100%);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.6);
  overflow: hidden;
}

.founder-avatar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(400px 200px at 50% 120%, rgba(74, 29, 42, 0.22), transparent 70%);
}

.founder-monogram {
  position: relative;
  font-family: 'Fraunces', serif;
  font-size: clamp(90px, 18vw, 140px);
  font-weight: 600;
  color: #fff;
  text-shadow: 0 4px 24px rgba(110, 38, 22, 0.35);
  z-index: 1;
}

.founder-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.founder-badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(214, 169, 116, 0.18), rgba(196, 92, 60, 0.1));
  color: var(--primary);
  flex-shrink: 0;
}

.founder-badge-text {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--muted);
  line-height: 1.3;
}

.founder-badge-text strong {
  display: block;
  font-size: 13.5px;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0.3px;
}

.founder-copy { text-align: left; }
.founder-copy h2 { margin-bottom: 16px; }

/* ============================================
   DISCLAIMER
   ============================================ */

.disclaimer {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  font-style: italic;
  padding: 14px 18px;
  border-left: 2px solid rgba(196, 92, 60, 0.3);
  background: rgba(255, 255, 255, 0.45);
  border-radius: 0 12px 12px 0;
  margin: 0;
}

/* ============================================
   FREE GUIDE TAG
   ============================================ */

.free-guide-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--primary-deep);
  background: rgba(196, 92, 60, 0.1);
  border: 1px solid rgba(196, 92, 60, 0.2);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

/* ============================================
   FLOATING WHATSAPP WIDGET
   ============================================ */

.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 200;
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366 0%, #1f5841 100%);
  color: #fff;
  text-decoration: none;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.25) inset,
    0 10px 28px rgba(22, 59, 45, 0.4);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s, gap 0.3s, padding 0.3s;
}

.wa-float-icon { width: 26px; height: 26px; flex-shrink: 0; }

.wa-float-label {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  transition: max-width 0.35s ease, opacity 0.3s ease, margin 0.3s ease;
}

.wa-float:hover {
  transform: translateY(-3px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.3) inset,
    0 16px 36px rgba(22, 59, 45, 0.5);
  gap: 10px;
  padding: 14px 22px 14px 16px;
}

.wa-float:hover .wa-float-label {
  max-width: 160px;
  opacity: 1;
}

@media (min-width: 900px) {
  .wa-float { gap: 10px; padding: 14px 22px 14px 16px; }
  .wa-float-label { max-width: 160px; opacity: 1; }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 899px) {
  .dashboard {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .section { padding: 70px 20px; }
  .hero { padding: 40px 20px 50px; }
  .final-cta { padding: 60px 22px 50px; border-radius: 28px; }
  .final-cta-wrap { padding: 20px 14px 60px; }
  .lead { font-size: 16px; }

  .feature-pill {
    min-width: auto;
    padding: 10px 14px;
  }

  .feature-pill-text strong { font-size: 12px; }
  .feature-pill-text { font-size: 11.5px; }

  .dashboard {
    max-width: 100%;
  }

  .results-layout { gap: 30px; }

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

  .cta-band { padding: 48px 22px; border-radius: 26px; }
  .program-cta-inner { padding: 32px 22px; }
  .program-cta-buttons .btn { width: 100%; }
  .founder-copy { text-align: center; }
  .founder-copy .tag.center,
  .founder-copy .tag { margin-left: auto; margin-right: auto; }
  .wa-float { right: 16px; bottom: 16px; padding: 13px; }
  .wa-float-label { display: none; }
}

@media (max-width: 380px) {
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
}

/* ============================================
   STORIES GRID (Real Women. Real Results.)
   ============================================ */

.section.stories { text-align: center; }
.section.stories h2 { max-width: 720px; margin-left: auto; margin-right: auto; }

.stories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  max-width: 900px;
  margin: 48px auto 0;
  text-align: left;
}

@media (min-width: 720px) {
  .stories-grid { grid-template-columns: 1fr 1fr; align-items: start; }
}

.wa-card { margin: 0; }

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

.wa-card {
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
}

.wa-name-row {
  display: flex;
  align-items: center;
  gap: 5px;
}

.wa-verified {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: #4fd1ff;
}

.stories-cta {
  margin-top: 56px;
}

.stories-cta .cta-band { padding: 52px 32px; }
.stories-cta .cta-band h2 { margin-bottom: 24px; }

@media (max-width: 600px) {
  .stories-cta { margin-top: 44px; }
  .stories-cta .cta-band { padding: 44px 22px; border-radius: 26px; }
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s ease,
    transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.stories-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.stories-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.stories-grid .reveal:nth-child(4) { transition-delay: 0.24s; }

.solution-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.solution-grid .reveal:nth-child(3) { transition-delay: 0.16s; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
