/* ============================
   ANSIEDAD LIBRE - Landing Page
   ============================ */

:root {
  --teal:        #00c9b1;
  --teal-dark:   #009e8c;
  --teal-pale:   #e6faf8;
  --gold:        #f0b429;
  --gold-light:  #ffd166;
  --rose:        #ff6b6b;
  --deep:        #0d1117;
  --surface:     #151c27;
  --card:        #1c2535;
  --cream:       #f9fafb;
  --dark:        #0d1117;
  --text:        #1e2d3d;
  --text-muted:  #5a6a7a;
  --white:       #ffffff;
  --border:      rgba(0,201,177,0.15);

  --ff-serif: 'Playfair Display', Georgia, serif;
  --ff-sans:  'DM Sans', system-ui, sans-serif;

  --radius: 16px;
  --shadow: 0 8px 40px rgba(0, 150, 130, 0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--ff-sans); color: var(--text); background: var(--white); line-height: 1.7; font-size: 17px; overflow-x: hidden; }
h1, h2, h3, h4 { font-family: var(--ff-serif); line-height: 1.2; }
.container { width: 90%; max-width: 1100px; margin: 0 auto; }
img { max-width: 100%; height: auto; display: block; }

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--deep);
  color: var(--white);
  text-align: center;
  padding: 10px 16px;
  font-size: 0.9rem;
  font-family: var(--ff-sans);
}
.top-bar strong { color: var(--gold-light); }

/* ===== TIMER BAR ===== */
.timer-bar {
  background: linear-gradient(90deg, #b91c1c, #dc2626);
  color: var(--white);
  text-align: center;
  padding: 11px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 200;
}
.timer-bar .label { font-weight: 400; opacity: 0.9; }
.timer-digits {
  background: rgba(0,0,0,0.28);
  border-radius: 6px;
  padding: 4px 14px;
  font-family: monospace;
  font-size: 1.2rem;
  letter-spacing: 3px;
  font-weight: 700;
}
.blink { animation: blink 1s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.5} }

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 90px 0 80px;
  background: linear-gradient(135deg, #f0fffe 0%, #e8f9f7 60%, #fafff9 100%);
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(0,201,177,0.07) 1px, transparent 0);
  background-size: 36px 36px;
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }

.hero-eyebrow {
  display: inline-block;
  background: rgba(0,201,177,0.12);
  border: 1px solid rgba(0,201,177,0.35);
  color: var(--teal-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 22px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-brand {
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  color: var(--dark);
  margin-bottom: 14px;
  font-weight: 900;
}
.hero-brand em { font-style: italic; color: var(--teal-dark); }
.hero-brand span { color: var(--gold); }

.hero-subtitle {
  font-family: var(--ff-sans);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  max-width: 600px;
  margin: 0 auto 36px;
  color: var(--text-muted);
  font-weight: 400;
}
.hero-subtitle strong { color: var(--text); }

.hero-mockup {
  width: 100%;
  max-width: 500px;
  margin: 0 auto 40px;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0,150,130,0.2);
  transition: transform 0.3s ease;
}
.hero-mockup:hover { transform: translateY(-6px); }

.no-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.no-tag {
  background: rgba(255,107,107,0.08);
  border: 1px solid rgba(255,107,107,0.22);
  color: #c0392b;
  padding: 7px 16px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
}
.no-tag::before { content: '✗  '; }

.hero-price-box {
  margin-bottom: 30px;
  display: inline-block;
  padding: 12px 28px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,150,130,0.15);
  border: 1px solid rgba(0,201,177,0.2);
}
.price-old { text-decoration: line-through; color: var(--rose); font-size: 1.05rem; margin-right: 12px; }
.price-value { font-size: 2rem; font-weight: 800; color: var(--dark); font-family: var(--ff-serif); }

.cta-guarantee {
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.cta-guarantee i { margin-right: 4px; color: var(--teal-dark); }

/* ===== BUTTONS ===== */
.btn-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: #000;
  padding: 18px 36px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.05rem;
  transition: 0.25s;
  box-shadow: 0 6px 24px rgba(0,201,177,0.35);
  border: none;
  cursor: pointer;
  line-height: 1.3;
}
.btn-cta:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(0,201,177,0.55); }
.btn-cta--gold {
  background: linear-gradient(135deg, var(--gold), #c88a00);
  color: #000;
  box-shadow: 0 6px 24px rgba(240,180,41,0.35);
}
.btn-cta--gold:hover { box-shadow: 0 10px 36px rgba(240,180,41,0.55); }
.btn-cta .btn-sub {
  display: block;
  font-weight: 400;
  font-size: 0.78rem;
  opacity: 0.82;
  margin-top: 3px;
}

.pulse { animation: pulseAnim 2.5s infinite; }
@keyframes pulseAnim {
  0%   { box-shadow: 0 0 0 0 rgba(0,201,177,0.45); }
  70%  { box-shadow: 0 0 0 16px rgba(0,201,177,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,201,177,0); }
}

/* ===== FADE IN ===== */
.fade-in { opacity: 0; transform: translateY(22px); transition: opacity 0.65s ease-out, transform 0.65s ease-out; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== AUTORA ===== */
.autora {
  padding: 80px 0;
  background: var(--surface);
}
.autora-wrap {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 52px;
  align-items: center;
}
.autora-img-wrap {
  width: 230px; height: 230px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--teal);
  box-shadow: 0 0 0 10px rgba(0,201,177,0.12), 0 20px 48px rgba(0,0,0,0.15);
  margin: 0 auto;
  flex-shrink: 0;
}
.autora-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 15%;
}
.section-label {
  color: var(--teal-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  margin-bottom: 10px;
  font-family: var(--ff-sans);
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 14px;
}
.autora-title {
  color: var(--gold-light);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 18px;
  font-family: var(--ff-sans);
}
.autora-desc { color: rgba(255,255,255,0.72); font-size: 0.97rem; line-height: 1.8; margin-bottom: 14px; }
.autora-desc strong { color: var(--white); }
.autora-stats {
  display: flex; gap: 28px; margin-top: 24px; flex-wrap: wrap;
}
.stat-num { font-family: var(--ff-serif); font-size: 2rem; font-weight: 900; color: var(--teal); line-height: 1; }
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.55); margin-top: 4px; }

/* ===== SYMPTOMS ===== */
.symptoms { padding: 80px 0; background: var(--cream); }
.symptoms .section-title { text-align: center; color: var(--dark); margin-bottom: 12px; }
.symptoms .section-label { text-align: center; }
.symptoms-intro { text-align: center; max-width: 600px; margin: 0 auto 48px; color: var(--text-muted); }
.symptoms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 52px;
}
.symptom-card {
  background: var(--white);
  border: 1px solid rgba(255,107,107,0.15);
  border-radius: 14px;
  padding: 20px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.symptom-card:hover { transform: translateY(-2px); border-color: rgba(255,107,107,0.35); box-shadow: 0 6px 20px rgba(255,107,107,0.1); }
.symptom-icon {
  width: 42px; height: 42px;
  background: rgba(255,107,107,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.symptom-card span { font-size: 0.9rem; font-weight: 500; color: var(--text); }
.cta-strip {
  background: linear-gradient(135deg, rgba(0,201,177,0.08), rgba(0,201,177,0.04));
  border: 1px solid rgba(0,201,177,0.2);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  margin-top: 20px;
}
.cta-strip p { color: var(--text-muted); margin-bottom: 22px; font-size: 0.97rem; }
.cta-strip p strong { color: var(--text); }

/* ===== ABOUT / BOOK ===== */
.about { padding: 80px 0; background: var(--white); }
.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about .section-label { color: var(--teal-dark); }
.about .section-title { color: var(--dark); margin-bottom: 20px; }
.about-desc { color: var(--text-muted); font-size: 0.97rem; line-height: 1.8; margin-bottom: 16px; }
.about-features { list-style: none; margin: 20px 0 30px; }
.about-features li {
  margin-bottom: 14px;
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.95rem;
  color: var(--text);
}
.about-features i { color: var(--teal); font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.about-mockup { position: relative; }
.book-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0,150,130,0.18);
  transition: transform 0.3s;
}
.book-img:hover { transform: translateY(-6px); }

/* ===== COMPARE ===== */
.compare-section { padding: 80px 0; background: var(--surface); }
.compare-section .section-title { color: var(--white); text-align: center; margin-bottom: 12px; }
.compare-section .section-label { text-align: center; }
.compare-subtitle { text-align: center; color: rgba(255,255,255,0.6); margin-bottom: 48px; font-size: 0.97rem; }
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.compare-box {
  background: rgba(255,255,255,0.04);
  border-radius: 18px;
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.08);
}
.compare-box.bad { border-color: rgba(255,107,107,0.2); }
.compare-box.good { border-color: rgba(0,201,177,0.25); }
.compare-box h3 {
  font-family: var(--ff-serif);
  font-size: 1.25rem;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.compare-box.bad h3 { color: var(--rose); }
.compare-box.good h3 { color: var(--teal); }
.compare-item {
  display: flex; gap: 12px; margin-bottom: 14px;
  font-size: 0.93rem; color: rgba(255,255,255,0.65); line-height: 1.55;
}
.compare-item .icon { flex-shrink: 0; margin-top: 1px; }

/* ===== CHAPTERS ===== */
.chapters { padding: 80px 0; background: var(--cream); }
.chapters .section-title { text-align: center; color: var(--dark); margin-bottom: 12px; }
.chapters .section-label { text-align: center; }
.chapters-intro { text-align: center; color: var(--text-muted); margin-bottom: 48px; }
.chapter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(460px, 1fr));
  gap: 24px;
}
.chapter-card {
  background: var(--white);
  border: 1px solid rgba(0,201,177,0.15);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.chapter-card:hover { transform: translateY(-4px); border-color: rgba(0,201,177,0.4); box-shadow: 0 12px 36px rgba(0,201,177,0.12); }
.chapter-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}
.chapter-num { font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--teal-dark); margin-bottom: 10px; }
.chapter-card h3 { font-family: var(--ff-serif); font-size: 1.25rem; color: var(--dark); margin-bottom: 16px; }
.chapter-list { list-style: none; }
.chapter-list li {
  padding: 7px 0 7px 18px; font-size: 0.9rem; color: var(--text-muted);
  border-bottom: 1px solid rgba(0,0,0,0.04); position: relative;
}
.chapter-list li::before { content: '→'; position: absolute; left: 0; color: var(--teal); font-size: 0.78rem; top: 8px; }

/* ===== RESULTS ===== */
.results { padding: 80px 0; background: var(--white); }
.results .section-title { text-align: center; color: var(--dark); margin-bottom: 12px; }
.results .section-label { text-align: center; }
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.result-card {
  background: linear-gradient(135deg, rgba(0,201,177,0.05), rgba(0,201,177,0.02));
  border: 1px solid rgba(0,201,177,0.18);
  border-radius: 16px;
  padding: 28px;
  display: flex; gap: 16px; align-items: flex-start;
  transition: transform 0.2s;
}
.result-card:hover { transform: translateY(-3px); }
.result-check {
  width: 38px; height: 38px;
  background: var(--teal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: #000; font-size: 1rem; font-weight: 800;
}
.result-card p { font-size: 0.95rem; color: var(--text); font-weight: 500; line-height: 1.55; }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 80px 0; background: var(--cream); }
.testimonials .section-title { text-align: center; color: var(--dark); margin-bottom: 48px; }
.testimonials .section-label { display: block; text-align: center; }
.highlight { color: var(--teal-dark); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,201,177,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.testimonial-stars { color: var(--gold); margin-bottom: 16px; font-size: 1.05rem; }
.testimonial-text { font-style: italic; font-size: 0.93rem; line-height: 1.65; margin-bottom: 24px; color: var(--text); }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-serif); font-weight: 700; font-size: 1.3rem;
}
.testimonial-info h4 { font-size: 0.97rem; color: var(--dark); margin: 0 0 2px; }
.testimonial-info p { font-size: 0.83rem; color: var(--text-muted); margin: 0; }

/* ===== BONUSES ===== */
.bonuses { padding: 80px 0; background: var(--white); }
.bonuses .section-title { text-align: center; color: var(--dark); margin-bottom: 12px; }
.bonuses .section-label { text-align: center; }
.bundle-img {
  width: 100%; max-width: 860px;
  border-radius: 20px;
  margin: 0 auto 52px;
  box-shadow: 0 20px 60px rgba(0,150,130,0.18);
}
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.bonus-card {
  background: var(--white);
  border: 1px solid rgba(240,180,41,0.25);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.bonus-card:hover { border-color: rgba(240,180,41,0.55); transform: translateY(-4px); box-shadow: 0 12px 36px rgba(240,180,41,0.15); }
.bonus-img { width: 100%; height: 210px; object-fit: cover; display: block; }
.bonus-body { padding: 24px; }
.bonus-num {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), #c88a00);
  color: #000; font-weight: 800; font-size: 0.78rem;
  padding: 5px 14px; border-radius: 100px;
  letter-spacing: 1px; margin-bottom: 12px;
  text-transform: uppercase;
}
.bonus-body h3 { font-family: var(--ff-serif); font-size: 1.1rem; color: var(--dark); margin-bottom: 8px; }
.bonus-body p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

/* ===== PRICING ===== */
.pricing { padding: 80px 0; background: var(--surface); }
.pricing .section-label { text-align: center; }
.pricing .section-title { color: var(--white); text-align: center; margin-bottom: 48px; }
.pricing-card {
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(0,201,177,0.35);
  border-radius: 24px;
  padding: 52px 40px;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  box-shadow: 0 0 80px rgba(0,201,177,0.1);
}
.best-value {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  background: var(--teal); color: #000; font-weight: 700;
  font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 22px; border-radius: 100px; white-space: nowrap;
}
.price-old-lg { font-size: 1.1rem; color: rgba(255,255,255,0.45); text-decoration: line-through; margin-bottom: 4px; }
.price-discount { color: var(--teal); font-weight: 700; font-size: 0.95rem; margin-bottom: 16px; }
.price-main { font-family: var(--ff-serif); font-size: clamp(3rem, 10vw, 5rem); font-weight: 900; color: var(--white); line-height: 1; margin-bottom: 8px; }
.price-note { font-size: 0.88rem; color: rgba(255,255,255,0.5); margin-bottom: 36px; }
.features-list { list-style: none; text-align: left; margin-bottom: 36px; }
.features-list li {
  padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.95rem; color: rgba(255,255,255,0.75);
  display: flex; gap: 12px; align-items: center;
}
.features-list .check { color: var(--teal); }
.features-list .x { color: var(--rose); }
.secure-note { margin-top: 20px; font-size: 0.83rem; color: rgba(255,255,255,0.45); display: flex; align-items: center; justify-content: center; gap: 6px; }

/* ===== FAQ ===== */
.faq { padding: 80px 0; background: var(--cream); }
.faq .section-title { text-align: center; color: var(--dark); margin-bottom: 48px; }
.faq .section-label { text-align: center; }
.faq-inner { max-width: 740px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.08); padding: 22px 0; }
.faq-q { font-weight: 600; font-size: 1rem; color: var(--dark); margin-bottom: 10px; display: flex; justify-content: space-between; gap: 16px; cursor: pointer; }
.faq-q span { color: var(--teal-dark); flex-shrink: 0; font-size: 1.2rem; }
.faq-a { font-size: 0.95rem; color: var(--text-muted); line-height: 1.75; }

/* ===== CTA FINAL ===== */
.cta-final {
  padding: 90px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--deep), #0a1f1c);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  top: -60%; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,201,177,0.14) 0%, transparent 70%);
  pointer-events: none;
}
.cta-final .container { position: relative; z-index: 1; }
.cta-title { color: var(--white); font-size: clamp(1.8rem, 5vw, 3rem); margin-bottom: 20px; }
.highlight-light { color: var(--teal); }
.cta-desc { font-size: 1.05rem; margin-bottom: 32px; color: rgba(255,255,255,0.75); max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-price-final { margin-bottom: 36px; }
.cta-price-final span { display: block; font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-bottom: 4px; }
.cta-price-final strong { font-family: var(--ff-serif); font-size: 3.2rem; color: var(--gold-light); }
.cta-guarantee { margin-top: 20px; font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.cta-guarantee i { margin-right: 4px; }

/* ===== FOOTER ===== */
.footer {
  padding: 40px 0;
  text-align: center;
  background: var(--dark);
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
}
.footer-brand { font-weight: 700; color: var(--white); font-family: var(--ff-serif); font-size: 1.15rem; margin-bottom: 5px; }
.footer-note { margin-top: 8px; font-size: 0.82rem; }

/* ===== FLOATING BUTTONS ===== */
.floating-btns {
  position: fixed; bottom: 24px; right: 24px;
  display: flex; flex-direction: column; gap: 12px;
  z-index: 300;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.4s, transform 0.4s;
  pointer-events: none;
}
.floating-btns.show { opacity: 1; transform: translateY(0); pointer-events: all; }
.float-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 22px; border-radius: 100px;
  text-decoration: none; font-weight: 700; font-size: 0.88rem;
  box-shadow: 0 6px 24px rgba(0,0,0,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.float-btn:hover { transform: translateY(-3px) scale(1.03); }
.float-btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: #000;
  animation: floatPulse 2.5s infinite;
}
.float-btn-secondary {
  background: linear-gradient(135deg, var(--gold), #c88a00);
  color: #000;
}
@keyframes floatPulse {
  0%,100% { box-shadow: 0 6px 24px rgba(0,201,177,0.4); }
  50%      { box-shadow: 0 6px 40px rgba(0,201,177,0.72); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .autora-wrap { grid-template-columns: 1fr; text-align: center; }
  .autora-img-wrap { margin: 0 auto 30px; }
  .autora-stats { justify-content: center; }
  .compare-grid { grid-template-columns: 1fr; }
  .chapter-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .about-wrap { grid-template-columns: 1fr; text-align: center; }
  .about-features li { justify-content: center; }
  .about-mockup { order: -1; margin-bottom: 30px; }
  .floating-btns { right: 12px; bottom: 12px; }
  .float-btn { font-size: 0.8rem; padding: 11px 16px; }
  .pricing-card { padding: 40px 24px; }
  .cta-strip { padding: 28px 20px; }
}
