/* ============================================
   Vida Calma — Landing Page Stylesheet
   Product: Guia de Regulacion del Sistema Nervioso
   Brand Config: vida-calma-brand-config.json
   ============================================ */

/* --- CSS Variables (from brand config) --- */
:root {
  /* Colors */
  --deep-sage: #4A6356;
  --warm-taupe: #A89279;
  --terracotta: #C4724E;
  --midnight-teal: #1E3A3A;
  --warm-cream: #FAF7F2;
  --soft-linen: #F0EBE3;
  --charcoal: #2B2B2B;
  --stone-gray: #6B6B6B;
  --white: #FFFFFF;

  /* Font families (loaded via Google Fonts in HTML) */
  --font-heading: 'Tenor Sans', sans-serif;
  --font-body: 'Nunito', sans-serif;
  --font-accent: 'Lora', serif;

  /* Spacing */
  --section-padding: 80px 24px;
  --section-padding-mobile: 56px 18px;
  --max-width: 780px;
  --max-width-wide: 960px;
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--charcoal);
  background-color: var(--warm-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--terracotta);
  text-decoration: none;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--deep-sage);
  letter-spacing: 0.015em;
}

h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

h2 {
  font-size: 2rem;
  line-height: 1.25;
}

h3 {
  font-size: 1.5rem;
  line-height: 1.3;
  letter-spacing: 0.01em;
}

h4 {
  font-size: 1.125rem;
  line-height: 1.35;
}

p {
  margin-bottom: 1rem;
}

strong {
  font-weight: 600;
}

/* Accent text (Lora for quotes and featured phrases) */
.accent-text {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
}

.body-large {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.75;
}

.caption {
  font-size: 0.875rem;
  color: var(--stone-gray);
  line-height: 1.5;
}

/* --- Layout --- */
.section {
  padding: var(--section-padding);
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-inner--wide {
  max-width: var(--max-width-wide);
  margin: 0 auto;
}

/* Alternate background sections */
.section--linen {
  background-color: var(--soft-linen);
}

.section--teal {
  background-color: var(--midnight-teal);
  color: var(--warm-cream);
}

.section--teal h2,
.section--teal h3,
.section--teal h4 {
  color: var(--warm-cream);
}

.section--teal .caption {
  color: #b0bfba;
}

/* --- CTA Buttons --- */
.cta-button {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--white);
  background-color: var(--terracotta);
  padding: 18px 40px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.25s ease, transform 0.15s ease;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.cta-button:hover {
  background-color: #b5653f;
  transform: translateY(-1px);
}

.cta-button:active {
  transform: translateY(0);
}

.cta-button--large {
  font-size: 1.25rem;
  padding: 22px 48px;
}

.cta-wrap {
  text-align: center;
  margin-top: 32px;
}

.cta-subtext {
  display: block;
  margin-top: 12px;
  font-size: 0.875rem;
  color: var(--stone-gray);
  font-family: var(--font-accent);
  font-style: italic;
}

/* --- Top Navigation Bar --- */
.topbar {
  background-color: var(--warm-cream);
  border-bottom: 1px solid var(--soft-linen);
  padding: 16px 24px;
  text-align: center;
}

.topbar-brand {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--deep-sage);
  letter-spacing: 0.04em;
}

/* ============================================
   SECTION 1: HERO
   ============================================ */
.hero {
  padding: 64px 24px 80px;
  text-align: center;
}

.hero .section-inner {
  max-width: 720px;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--deep-sage);
  background-color: rgba(74, 99, 86, 0.1);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.hero h1 {
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--charcoal);
  max-width: 600px;
  margin: 0 auto 32px;
}

.hero-mockup {
  max-width: 360px;
  margin: 40px auto 0;
  background-color: var(--soft-linen);
  border-radius: 12px;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--stone-gray);
  font-size: 0.875rem;
  font-style: italic;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
  flex-wrap: wrap;
}

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

.hero-stat-number {
  display: block;
  font-family: var(--font-accent);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--deep-sage);
  line-height: 1.2;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--stone-gray);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================
   SECTION 2: PROBLEM (Amplification)
   ============================================ */
.problem-list {
  list-style: none;
  margin: 32px 0;
}

.problem-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  line-height: 1.65;
}

.problem-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--deep-sage);
}

.pull-quote {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--deep-sage);
  border-left: 3px solid var(--terracotta);
  padding-left: 24px;
  margin: 36px 0;
}

/* ============================================
   SECTION 3: FAILED SOLUTIONS
   ============================================ */
.failed-solutions-grid {
  display: grid;
  gap: 24px;
  margin-top: 36px;
}

.failed-card {
  background-color: var(--white);
  border: 1px solid var(--soft-linen);
  border-radius: 10px;
  padding: 28px 24px;
}

.failed-card-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.failed-card p {
  font-size: 0.95rem;
  color: var(--stone-gray);
  line-height: 1.65;
  margin-bottom: 0;
}

.failed-verdict {
  margin-top: 36px;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: center;
  color: var(--deep-sage);
}

/* ============================================
   SECTION 4: MECHANISM (R.E.S.E.T.)
   ============================================ */
.reset-steps {
  margin-top: 40px;
}

.reset-step {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
  align-items: flex-start;
}

.reset-letter {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--deep-sage);
  color: var(--warm-cream);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reset-content h4 {
  margin-bottom: 4px;
  color: var(--charcoal);
}

.reset-content p {
  font-size: 0.95rem;
  color: var(--stone-gray);
  margin-bottom: 0;
  line-height: 1.65;
}

.reset-summary {
  margin-top: 36px;
  padding: 24px;
  background-color: rgba(74, 99, 86, 0.08);
  border-radius: 10px;
  text-align: center;
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--deep-sage);
}

/* ============================================
   SECTION 5: WHAT'S INSIDE
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}

.feature-item {
  background-color: var(--white);
  border: 1px solid var(--soft-linen);
  border-radius: 10px;
  padding: 24px 20px;
  text-align: center;
}

.feature-number {
  font-family: var(--font-accent);
  font-size: 2rem;
  font-weight: 600;
  color: var(--terracotta);
  line-height: 1.1;
  margin-bottom: 6px;
}

.feature-label {
  font-size: 0.9rem;
  color: var(--charcoal);
  font-weight: 600;
  margin-bottom: 4px;
}

.feature-desc {
  font-size: 0.875rem;
  color: var(--stone-gray);
  line-height: 1.5;
}

.spanish-note {
  margin-top: 36px;
  text-align: center;
  font-size: 1.05rem;
  color: var(--deep-sage);
  font-weight: 600;
}

/* ============================================
   SECTION 6: BONUSES
   ============================================ */
.bonus-stack {
  margin-top: 36px;
}

.bonus-card {
  background-color: var(--warm-cream);
  border: 1px solid var(--warm-taupe);
  border-radius: 10px;
  padding: 28px 24px;
  margin-bottom: 20px;
  position: relative;
}

.bonus-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  background-color: var(--deep-sage);
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.bonus-card h4 {
  color: var(--charcoal);
  margin-bottom: 8px;
}

.bonus-card p {
  font-size: 0.95rem;
  color: var(--stone-gray);
  line-height: 1.65;
}

.bonus-value {
  font-family: var(--font-accent);
  font-weight: 500;
  color: var(--terracotta);
  font-size: 0.95rem;
  margin-top: 8px;
}

.bonus-total {
  text-align: center;
  margin-top: 32px;
  padding: 20px;
  background-color: rgba(196, 114, 78, 0.08);
  border-radius: 10px;
}

.bonus-total-value {
  font-family: var(--font-accent);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--terracotta);
}

.bonus-total-note {
  font-size: 0.9rem;
  color: var(--stone-gray);
  margin-top: 4px;
}

/* ============================================
   SECTION 7: PRICE
   ============================================ */
.price-section {
  text-align: center;
}

.price-comparisons {
  margin: 32px auto;
  max-width: 420px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(250, 247, 242, 0.15);
  font-size: 0.95rem;
}

.section--teal .price-row {
  color: #c8d6d0;
}

.price-row-label {
  text-align: left;
}

.price-row-cost {
  font-family: var(--font-accent);
  font-weight: 500;
  color: var(--warm-taupe);
}

.price-highlight {
  margin-top: 40px;
}

.price-big {
  font-family: var(--font-accent);
  font-size: 4.5rem;
  font-weight: 600;
  color: var(--warm-cream);
  line-height: 1;
}

.price-description {
  font-size: 1.05rem;
  margin-top: 8px;
  color: #b0bfba;
}

.price-per-page {
  margin-top: 16px;
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--warm-taupe);
}

.pro-license {
  margin-top: 28px;
  padding: 16px 24px;
  background-color: rgba(250, 247, 242, 0.06);
  border: 1px solid rgba(250, 247, 242, 0.12);
  border-radius: 8px;
  display: inline-block;
  font-size: 0.9rem;
  color: #b0bfba;
}

/* ============================================
   SECTION 8: GUARANTEE
   ============================================ */
.guarantee-box {
  background-color: var(--white);
  border: 2px solid var(--deep-sage);
  border-radius: 12px;
  padding: 40px 32px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.guarantee-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(74, 99, 86, 0.12);
  color: var(--deep-sage);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.guarantee-box h3 {
  margin-bottom: 16px;
}

.guarantee-box p {
  font-size: 0.95rem;
  color: var(--stone-gray);
  line-height: 1.7;
}

.guarantee-bold {
  font-weight: 600;
  color: var(--charcoal);
}

.guarantee-timeframe {
  margin-top: 12px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--deep-sage);
}

/* ============================================
   SECTION 9: FAQ
   ============================================ */
.faq-list {
  margin-top: 36px;
}

.faq-item {
  border-bottom: 1px solid var(--soft-linen);
  padding: 20px 0;
}

.faq-item:first-child {
  border-top: 1px solid var(--soft-linen);
}

.faq-question {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.faq-answer {
  font-size: 0.95rem;
  color: var(--stone-gray);
  line-height: 1.7;
  /* Accordion behavior: max-height, overflow, padding controlled in accordion section below */
}

/* ============================================
   SECTION 10: FINAL CTA
   ============================================ */
.final-cta {
  text-align: center;
}

.final-cta h2 {
  margin-bottom: 24px;
}

.options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 36px 0;
  text-align: left;
}

.option-card {
  padding: 28px 24px;
  border-radius: 10px;
}

.option-card--a {
  background-color: var(--soft-linen);
  border: 1px solid #ddd6cb;
}

.option-card--b {
  background-color: rgba(74, 99, 86, 0.08);
  border: 2px solid var(--deep-sage);
}

.option-label {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--deep-sage);
  margin-bottom: 12px;
}

.option-card p {
  font-size: 0.95rem;
  line-height: 1.65;
}

.option-card--a p {
  color: var(--stone-gray);
}

.option-card--b p {
  color: var(--charcoal);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: var(--midnight-teal);
  color: #8aa89c;
  padding: 40px 24px;
  text-align: center;
  font-size: 0.85rem;
  line-height: 1.7;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--warm-cream);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.footer-tagline {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--warm-taupe);
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.footer-domain {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #a3c4b5;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.footer-disclaimer {
  max-width: 600px;
  margin: 0 auto;
  font-size: 0.8rem;
  color: #a3c4b5;
  line-height: 1.6;
}

/* ============================================
   FOCUS STYLES (Accessibility)
   ============================================ */
:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 2px;
}

.cta-button:focus-visible {
  outline: 3px solid var(--deep-sage);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px rgba(74, 99, 86, 0.2);
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-item {
  border-bottom: 1px solid var(--soft-linen);
  cursor: pointer;
}

.faq-question {
  position: relative;
  padding-right: 2rem;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  color: var(--warm-taupe);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  content: '\2212';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding-top: 0;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-top: 0.75rem;
}

/* ============================================
   TEAL SECTION UTILITY CLASSES
   ============================================ */
.teal-caption {
  color: #b0bfba;
  margin-bottom: 8px;
}

.teal-subtext {
  color: #b0bfba;
}

.pull-quote--centered {
  text-align: center;
  border-left: none;
  padding-left: 0;
}

/* ============================================
   PAYMENT TRUST
   ============================================ */
.payment-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--stone-gray);
}

.payment-icon {
  padding: 2px 8px;
  background: rgba(74, 99, 86, 0.06);
  border-radius: 4px;
  font-weight: 600;
}

.section--teal .payment-trust {
  color: #b0bfba;
}

.section--teal .payment-icon {
  background: rgba(250, 247, 242, 0.1);
}

/* ============================================
   CTA MICRO-COPY
   ============================================ */
.cta-micro {
  display: block;
  font-size: 0.875rem;
  color: var(--stone-gray);
  margin-top: 0.5rem;
}

/* ============================================
   VALUE STACK STRIKETHROUGH
   ============================================ */
.price-was {
  text-decoration: line-through;
  color: var(--warm-taupe);
  font-family: var(--font-accent);
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

/* ============================================
   STICKY MOBILE CTA BAR
   ============================================ */
.sticky-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--warm-cream);
  padding: 12px 18px;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.1);
  z-index: 100;
  text-align: center;
}

.sticky-cta-bar .cta-button {
  width: 100%;
  max-width: 400px;
  font-size: 0.95rem;
  padding: 14px 24px;
}

/* ============================================
   INTERIOR MOCKUP GRID
   ============================================ */
.interior-mockups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 2rem;
}

.interior-mockups img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

/* ============================================
   "THIS IS FOR YOU" LIST
   ============================================ */
.for-you-list {
  list-style: none;
  padding: 0;
  max-width: 640px;
  margin: 0 auto;
}

.for-you-list li {
  position: relative;
  padding: 12px 0 12px 36px;
  border-bottom: 1px solid var(--soft-linen);
  font-size: 1.05rem;
  line-height: 1.6;
}

.for-you-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--deep-sage);
  font-weight: 700;
  font-size: 1.1rem;
}

/* ============================================
   "HOW IT WORKS" STEPS
   ============================================ */
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 2rem;
  text-align: center;
}

.how-step {
  padding: 24px 16px;
}

.how-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--deep-sage);
  color: var(--warm-cream);
  font-family: var(--font-numbers, 'Tenor Sans', sans-serif);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.how-step h4 {
  color: var(--deep-sage);
  margin-bottom: 8px;
}

.how-step p {
  font-size: 0.95rem;
  color: var(--stone-gray);
}

/* ============================================
   SCIENCE BACKING
   ============================================ */
.science-backing {
  margin-top: 2rem;
  padding: 24px;
  background: rgba(74, 99, 86, 0.06);
  border-radius: 8px;
}

.science-label {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--deep-sage);
  margin-bottom: 12px;
}

.science-list {
  list-style: none;
  padding: 0;
}

.science-list li {
  position: relative;
  padding: 8px 0 8px 24px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.science-list li::before {
  content: '\25C6';
  position: absolute;
  left: 0;
  color: var(--deep-sage);
  font-size: 0.6rem;
  top: 14px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  max-width: 640px;
}

.about-mission {
  margin-top: 1.5rem;
  padding: 20px 24px;
  background: rgba(74, 99, 86, 0.06);
  border-radius: 8px;
  border-left: 3px solid var(--deep-sage);
}

/* ============================================
   SCIENCE CREDIBILITY SECTION
   ============================================ */
.science-credibility {
  margin-top: 3rem;
}

.science-credibility h2 {
  text-align: center;
  margin-bottom: 0.5rem;
}

.science-credibility-subtitle {
  text-align: center;
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--stone-gray);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.science-researchers {
  display: grid;
  gap: 20px;
  margin-bottom: 2rem;
}

.researcher-card {
  background: var(--white);
  border: 1px solid var(--soft-linen);
  border-radius: 10px;
  padding: 24px;
}

.researcher-card h4 {
  color: var(--deep-sage);
  margin-bottom: 4px;
  font-size: 1.05rem;
}

.researcher-field {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--terracotta);
  margin-bottom: 8px;
  display: block;
}

.researcher-card p {
  font-size: 0.95rem;
  color: var(--stone-gray);
  line-height: 1.6;
  margin-bottom: 0;
}

.science-stat-box {
  text-align: center;
  padding: 28px 24px;
  background: rgba(74, 99, 86, 0.08);
  border-radius: 10px;
  border-left: 3px solid var(--deep-sage);
}

.science-stat-number {
  font-family: var(--font-accent);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--deep-sage);
  line-height: 1.1;
  margin-bottom: 8px;
}

.science-stat-label {
  font-size: 1rem;
  color: var(--charcoal);
  line-height: 1.5;
}

.science-stat-source {
  display: block;
  font-size: 0.8rem;
  color: var(--stone-gray);
  margin-top: 8px;
  font-style: italic;
}

/* ============================================
   GUARANTEE ENHANCEMENT
   ============================================ */
.guarantee-badge-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.guarantee-mini-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--deep-sage);
  font-weight: 600;
  background: rgba(74, 99, 86, 0.06);
  padding: 6px 12px;
  border-radius: 20px;
}

.guarantee-mini-badge span[aria-hidden] {
  font-size: 1rem;
}

/* Teal section variant */
.section--teal .guarantee-mini-badge {
  color: var(--warm-cream);
  background: rgba(250, 247, 242, 0.1);
}

/* ============================================
   WHY WE CREATED THIS (MISSION STORY)
   ============================================ */
.mission-story {
  max-width: 640px;
}

.mission-quote {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--deep-sage);
  text-align: center;
  margin-top: 1.5rem;
  line-height: 1.6;
}

.mission-foundation {
  margin-top: 1.5rem;
  padding: 20px 24px;
  background: rgba(74, 99, 86, 0.06);
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--stone-gray);
  line-height: 1.65;
  text-align: center;
}

/* ============================================
   FAILED TRANSITION
   ============================================ */
.failed-transition {
  text-align: center;
  margin-top: 1.5rem;
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--deep-sage);
  font-size: 1.1rem;
}

/* ============================================
   LAUNCH BADGE
   ============================================ */
.launch-badge {
  display: inline-block;
  margin-top: 8px;
  padding: 6px 14px;
  background: rgba(74, 99, 86, 0.08);
  border: 1px solid rgba(74, 99, 86, 0.15);
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--deep-sage);
  font-weight: 600;
}

/* ============================================
   CTA PULSE ANIMATION
   ============================================ */
@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(196, 114, 78, 0.3); }
  50% { box-shadow: 0 4px 24px rgba(196, 114, 78, 0.5); }
}

.cta-button--large {
  animation: cta-pulse 2.5s ease-in-out infinite;
}

.cta-button--large:hover {
  animation: none;
}

/* ============================================
   TAP FEEDBACK
   ============================================ */
.faq-item:active {
  background-color: rgba(74, 99, 86, 0.04);
}

.cta-button:active {
  opacity: 0.9;
  transform: scale(0.98);
}

/* ============================================
   RESPONSIVE — Tablet (768px+)
   ============================================ */
@media (min-width: 768px) {
  .failed-solutions-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================
   RESPONSIVE — Mobile (< 640px)
   ============================================ */
@media (max-width: 639px) {
  :root {
    --section-padding: 48px 18px;
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .hero {
    padding: 48px 18px 56px;
  }

  .hero-stats {
    gap: 20px;
  }

  .hero-stat-number {
    font-size: 1.5rem;
  }

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

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

  .cta-button {
    width: 100%;
    padding: 18px 24px;
  }

  .cta-button--large {
    padding: 20px 24px;
  }

  .price-big {
    font-size: 3.5rem;
  }

  .guarantee-box {
    padding: 28px 20px;
  }

  .reset-step {
    gap: 14px;
  }

  .reset-letter {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .hero-mockup {
    max-width: 280px;
    min-height: 220px;
  }

  .interior-mockups {
    grid-template-columns: 1fr;
  }

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

  body {
    padding-bottom: 80px;
  }
}

/* ============================================
   RESPONSIVE — Large Desktop (1200px+)
   ============================================ */
@media (min-width: 1200px) {
  .section {
    padding: 96px 32px;
  }

  h1 {
    font-size: 3rem;
  }
}
