/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
  /* Colors */
  --white: #FDFCFA;
  --white-pure: #FFFFFF;
  --cream: #F8F6F1;
  --beige: #F0EDE6;
  --beige-dark: #E5E0D5;
  --sage: #7A9E7E;
  --sage-light: #9CBFA0;
  --sage-dark: #5F8063;
  --sage-bg: #EFF5F0;
  --blue-smoke: #8BA4B8;
  --blue-premium: #4A7C9B;
  --text-dark: #2C2C2C;
  --text-body: #4A4A4A;
  --text-muted: #7A7A7A;
  --text-light: #9B9B9B;
  --border: #E8E5DE;
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.03);
  --shadow-md: 0 2px 12px rgba(0,0,0,0.05);
  --shadow-lg: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-xl: 0 6px 32px rgba(0,0,0,0.08);
  --shadow-card: 0 2px 12px rgba(122,158,126,0.06);
  --shadow-cta: 0 3px 16px rgba(122,158,126,0.22);

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3.5rem;
  --space-2xl: 5rem;
  --space-3xl: 6rem;

  /* Sizing */
  --container: 960px;
  --container-narrow: 720px;
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 0.3s;
}

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: var(--white);
  line-height: 1.7;
  font-size: 1.02rem;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(2.1rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.12;
}

h2 {
  font-size: clamp(1.55rem, 3.8vw, 2.25rem);
  margin-bottom: var(--space-md);
}

h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 600;
}

h4 {
  font-size: 1.05rem;
  font-weight: 600;
}

p {
  margin-bottom: var(--space-sm);
  color: var(--text-body);
}

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

.text-accent {
  color: var(--sage);
}

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

.lead {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-muted);
}

/* Highlighted text */
.highlight {
  color: var(--sage-dark);
  font-weight: 600;
}

mark {
  background: rgba(122,158,126,0.15);
  color: var(--sage-dark);
  font-weight: 800;
  padding: 0 4px;
  border-radius: 6px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--narrow {
  max-width: var(--container-narrow);
}

section {
  padding: var(--space-2xl) 0;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(95,128,99,0.10);
  color: #4a6b4e;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.section-badge svg {
  width: 13px;
  height: 13px;
  color: #4a6b4e;
}

.section-subtitle {
  max-width: 580px;
  margin: 0 auto var(--space-lg);
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253,252,250,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--duration) var(--ease);
}

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

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

.navbar__logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar__logo .logo-img {
  width: 64px !important;
  height: 64px !important;
  object-fit: contain;
  border-radius: 8px;
  margin-right: 6px;
}

.navbar__cta {
  display: none;
}

@media (min-width: 768px) {
  .navbar__cta {
    display: inline-flex;
  }
}

/* ============================================
   BUTTONS / CTA
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all var(--duration) var(--ease), box-shadow 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
}

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

.btn--primary {
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
  color: var(--white-pure);
  box-shadow: var(--shadow-cta);
}

.btn--primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 150%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  animation: shimmer 4s cubic-bezier(0.16, 1, 0.3, 1) infinite;
  z-index: 1;
}

@keyframes shimmer {
  0% { left: -100%; }
  25% { left: 200%; }
  100% { left: 200%; }
}

.btn--primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 32px rgba(122,158,126,0.45);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--lg {
  padding: 14px 30px;
  font-size: 0.95rem;
  border-radius: 12px;
}

.btn--full {
  width: 100%;
}

.btn--outline {
  background: transparent;
  color: var(--sage-dark);
  border: 2px solid var(--sage-light);
}

.btn--outline:hover {
  background: var(--sage-bg);
}

.btn__subtext {
  display: none;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  padding-top: calc(60px + var(--space-md));
  padding-bottom: var(--space-xl);
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
  overflow: hidden;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-xl);
}

.hero__content {
  max-width: 640px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white-pure);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-sm);
}

.hero__badge svg {
  width: 16px;
  height: 16px;
  color: var(--sage);
}

.hero h1 {
  margin-bottom: var(--space-md);
}

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

.hero__subtitle {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-md);
}

.hero__bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: var(--space-lg);
  padding: 0 10px;
}

.hero__bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 500;
  text-align: left;
}

.hero__bullets svg {
  width: 18px;
  height: 18px;
  color: var(--sage);
  flex-shrink: 0;
}

.hero__cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: var(--space-xs);
}

.hero__trust svg {
  width: 14px;
  height: 14px;
  color: var(--sage);
}

.hero__mockup {
  max-width: 380px;
  width: 100%;
  position: relative;
  animation: floatMockup 6s ease-in-out infinite;
}

@keyframes floatMockup {
  0% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

.hero__mockup img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.hero__mockup::before {
  content: '';
  position: absolute;
  inset: -60px;
  background: radial-gradient(circle, rgba(122,158,126,0.15) 0%, transparent 60%);
  z-index: -2;
  border-radius: 50%;
  animation: pulseGlow 5s ease-in-out infinite alternate;
}

.hero__mockup::after {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(156,191,160,0.25) 0%, transparent 70%);
  z-index: -1;
  border-radius: 50%;
}

@keyframes pulseGlow {
  0% { transform: scale(0.9); opacity: 0.7; }
  100% { transform: scale(1.1); opacity: 1; }
}

@media (min-width: 768px) {
  .hero__inner {
    flex-direction: row;
    text-align: left;
    gap: var(--space-2xl);
  }

  .hero__content {
    flex: 1;
  }

  .hero__cta-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__mockup {
    flex: 0 0 420px;
  }
}

/* ============================================
   PAIN SECTION
   ============================================ */
.pain {
  background: var(--white);
}

.pain__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.pain__card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: var(--space-sm) var(--space-md);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.pain__card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: var(--shadow-lg);
}

.pain__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(122,158,126,0.10);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
}

.pain__icon svg {
  width: 20px;
  height: 20px;
}

.pain__card h4 {
  margin-bottom: 2px;
  font-size: 0.95rem;
}

.pain__card p {
  font-size: 0.92rem;
  margin: 0;
  color: var(--text-muted);
  line-height: 1.55;
}

@media (min-width: 768px) {
  .pain__grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================
   SOLUTION SECTION
   ============================================ */
.solution {
  background: var(--sage-bg);
}

.solution__content {
  max-width: 680px;
  margin: 0 auto;
}

.solution__steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.solution__step {
  background: var(--white-pure);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
  text-align: left;
}

.solution__step:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.solution__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--sage-bg);
  color: var(--sage-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.solution__icon svg {
  width: 22px;
  height: 22px;
}

.solution__step h4 {
  margin-bottom: 4px;
}

.solution__step p {
  font-size: 0.92rem;
  margin: 0;
  color: var(--text-muted);
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits {
  background: var(--white);
}

.benefits__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.benefit__card {
  text-align: center;
  padding: var(--space-md) var(--space-sm);
  background: var(--white-pure);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.benefit__card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-xl);
}

.benefit__icon {
  width: 48px;
  height: 48px;
  background: var(--sage-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: var(--sage);
}

.benefit__icon svg {
  width: 22px;
  height: 22px;
}

.benefit__card h4 {
  margin-bottom: 4px;
  font-size: 1rem;
}

.benefit__card p {
  font-size: 0.92rem;
  margin: 0;
  color: var(--text-muted);
  line-height: 1.55;
}

@media (min-width: 640px) {
  .benefits__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 920px) {
  .benefits__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* ============================================
   CONTENTS SECTION
   ============================================ */
.contents {
  background: var(--cream);
}

.contents__list {
  max-width: 640px;
  margin: var(--space-lg) auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contents__item {
  background: var(--white-pure);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
  text-align: left;
}

.contents__item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.contents__item svg {
  width: 20px;
  height: 20px;
  color: var(--sage);
  flex-shrink: 0;
  margin-top: 2px;
}

.contents__item span {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-body);
  font-weight: 500;
}

/* ============================================
   FOR WHO / NOT FOR WHO
   ============================================ */
.audience {
  background: var(--white);
}

.audience__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.audience__col {
  background: var(--white-pure);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
}

.audience__col--yes {
  border-color: rgba(122,158,126,0.3);
}

.audience__col--no {
  border-color: rgba(200,180,160,0.3);
}

.audience__col h3 {
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: 10px;
}

.audience__col h3 svg {
  width: 24px;
  height: 24px;
}

.audience__col--yes h3 svg {
  color: var(--sage);
}

.audience__col--no h3 svg {
  color: var(--text-light);
}

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

.audience__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.audience__list li svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.audience__col--yes .audience__list li svg {
  color: var(--sage);
}

.audience__col--no .audience__list li svg {
  color: var(--text-light);
}

@media (min-width: 768px) {
  .audience__grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background: var(--sage-bg);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.testimonial__card {
  background: var(--white-pure);
  border: 1px solid rgba(122, 158, 126, 0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease), border-color var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.testimonial__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(122, 158, 126, 0.05), transparent 70%);
  z-index: -1;
  border-radius: inherit;
}

.testimonial__quote-icon {
  position: absolute;
  top: 24px;
  right: 24px;
  color: rgba(122, 158, 126, 0.1);
  z-index: -1;
}

.testimonial__quote-icon svg {
  width: 64px;
  height: 64px;
}

.testimonial__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(122, 158, 126, 0.3);
}

.testimonial__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
  color: #E5B85C;
}

.testimonial__stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.testimonial__text {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-body);
  margin-bottom: 16px;
  line-height: 1.7;
}

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

.testimonial__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage-light), var(--sage));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-pure);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial__name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.testimonial__role {
  font-size: 0.8rem;
  color: var(--text-light);
}

@media (min-width: 640px) {
  .testimonials__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 920px) {
  .testimonials__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* ============================================
   BEFORE / AFTER (Transformation)
   ============================================ */
.transformation {
  background: var(--white);
}

.transformation__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.transform__col {
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.transform__col--before {
  background: var(--cream);
  border: 1px solid var(--beige-dark);
}

.transform__col--after {
  background: var(--sage-bg);
  border: 1px solid rgba(122,158,126,0.25);
}

.transform__col h3 {
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: 10px;
}

.transform__col h3 svg {
  width: 22px;
  height: 22px;
}

.transform__col--before h3 svg {
  color: var(--text-light);
}

.transform__col--after h3 svg {
  color: var(--sage);
}

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

.transform__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.93rem;
  line-height: 1.6;
}

.transform__list li svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.transform__col--before .transform__list li svg {
  color: var(--text-light);
}

.transform__col--after .transform__list li svg {
  color: var(--sage);
}

.transformation__arrow {
  display: flex;
  justify-content: center;
  color: var(--sage);
}

.transformation__arrow svg {
  width: 32px;
  height: 32px;
}

@media (min-width: 768px) {
  .transformation__grid {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }
}

/* ============================================
   BONUSES
   ============================================ */
.bonuses {
  background: var(--cream);
}

.bonuses__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.bonus__card {
  background: var(--white-pure);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.bonus__card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.bonus__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
  color: var(--white-pure);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.bonus__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--sage-bg);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
}

.bonus__icon svg {
  width: 24px;
  height: 24px;
}

.bonus__card h4 {
  margin-bottom: 4px;
  padding-right: 64px; /* Evita que el badge pise el título */
}

.bonus__card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

@media (min-width: 640px) {
  .bonuses__grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================
   PRICING / OFFER
   ============================================ */
.pricing {
  background: var(--white);
  text-align: center;
}

.pricing__card {
  max-width: 480px;
  margin: var(--space-lg) auto 0;
  background: var(--white-pure);
  border: 1.5px solid var(--sage);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  box-shadow: var(--shadow-md);
  position: relative;
}

.pricing__popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
  color: var(--white-pure);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.pricing__price-container {
  margin: var(--space-md) 0;
}

.pricing__original {
  font-size: 1.1rem;
  color: var(--text-light);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.pricing__price {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 3.5rem;
  color: var(--text-dark);
  line-height: 1;
  letter-spacing: -0.02em;
}

.pricing__price sup {
  font-size: 1.5rem;
  position: relative;
  top: -12px;
}

.pricing__unit {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
}

.pricing__includes {
  margin: var(--space-lg) 0;
  text-align: left;
}

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

.pricing__includes li:last-child {
  border-bottom: none;
}

.pricing__includes li svg {
  width: 18px;
  height: 18px;
  color: var(--sage);
  flex-shrink: 0;
}

.pricing__cta {
  margin-top: var(--space-md);
}

/* ============================================
   GUARANTEE
   ============================================ */
.guarantee {
  background: var(--sage-bg);
}

.guarantee__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.guarantee__icon {
  width: 60px;
  height: 60px;
  background: var(--white-pure);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-sm);
  color: var(--sage);
  box-shadow: var(--shadow-sm);
}

.guarantee__icon svg {
  width: 28px;
  height: 28px;
}

.guarantee p {
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--text-body);
}

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

.faq__list {
  max-width: 680px;
  margin: var(--space-lg) auto 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq__item {
  background: var(--white-pure);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: box-shadow var(--duration) var(--ease);
}

.faq__item.active {
  box-shadow: var(--shadow-sm);
  border-color: var(--sage-light);
}

.faq__question {
  width: 100%;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--text-dark);
  text-align: left;
}

.faq__question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--duration) var(--ease);
  color: var(--sage);
}

.faq__item.active .faq__question svg {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq__answer-inner {
  padding: 0 20px 18px;
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  background: linear-gradient(180deg, var(--cream) 0%, var(--beige) 100%);
  text-align: center;
  padding: var(--space-2xl) 0;
}

.final-cta__inner {
  max-width: 600px;
  margin: 0 auto;
}

.final-cta h2 {
  margin-bottom: var(--space-sm);
}

.final-cta p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
  padding: var(--space-2xl) 0 var(--space-lg);
  font-size: 0.9rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer__brand p {
  line-height: 1.6;
  max-width: 320px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--white-pure);
  margin-bottom: var(--space-sm);
}

.footer__logo .logo-img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.footer h4 {
  color: var(--white-pure);
  font-size: 1rem;
  margin-bottom: var(--space-md);
}

.footer__links a,
.footer__legal a {
  display: block;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  margin-bottom: 12px;
  transition: color var(--duration) var(--ease);
}

.footer__links a:hover,
.footer__legal a:hover {
  color: var(--sage-light);
}

.footer__bottom {
  text-align: center;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer__disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-top: 12px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 890px) {
  .footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-lg);
  }
  .footer__brand p {
    margin: 0 auto;
  }
  .footer__logo {
    justify-content: center;
  }
}

/* ============================================
   STICKY MOBILE CTA
   ============================================ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(253,252,250,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  padding: 10px var(--space-md);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
  box-shadow: 0 -2px 12px rgba(0,0,0,0.04);
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta .btn {
  width: 100%;
  padding: 12px 20px;
  font-size: 0.88rem;
}

@media (min-width: 768px) {
  .sticky-cta {
    display: none;
  }
}

/* ============================================
   SVG ICON BASE
   ============================================ */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon svg {
  width: 1em;
  height: 1em;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* ============================================
   PREMIUM ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  filter: blur(10px);
  transition: opacity 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), 
              transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1),
              filter 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform, filter;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* Stagger */
.stagger > * {
  opacity: 0;
  transform: translateY(32px) scale(0.96);
  filter: blur(8px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1), 
              transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1),
              filter 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform, filter;
}

.stagger > *.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* ============================================
   SCROLL-PADDING (for anchors behind navbar)
   ============================================ */
html {
  scroll-padding-top: 80px;
}

/* ============================================
   UTILITY – mobile padding for sticky CTA
   ============================================ */
@media (max-width: 767px) {
  .footer {
    padding-bottom: calc(var(--space-lg) + 70px);
  }
}
.footer__logo .logo-img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-right: 14px;
}


