/* ============================================================
   JESS NEUROCOACH — Vuelve a Casa
   Design System: DESIGN.md
   ============================================================ */

/* 1. CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Surfaces */
  --bg-canvas:       #F4ECE0;
  --bg-canvas-soft:  #EAE2D0;
  --bg-paper:        #FBF7EE;
  --bg-deep:         #3A2E22;

  /* Text */
  --text-primary:    #2A211A;
  --text-secondary:  #6B4F3A;
  --text-muted:      #9C8770;
  --text-on-deep:    #F4ECE0;

  /* Accents */
  --accent-olive:       #7A8763;
  --accent-olive-deep:  #5F6B4F;
  --accent-gold:        #B8965A;
  --accent-gold-soft:   #E5C98E;
  --accent-teal:        #7BA8A6;
  --accent-clay:        #C97D5A;
  --accent-clay-deep:   #A35E40;

  /* Shadows */
  --shadow-soft:  0 1px 2px rgba(58,46,34,.04), 0 8px 24px rgba(58,46,34,.06);
  --shadow-lift:  0 4px 12px rgba(163,94,64,.18);
  --shadow-modal: 0 20px 60px rgba(58,46,34,.18);

  /* Typography */
  --font-display: "Cormorant Garamond", "Source Serif Pro", Georgia, serif;
  --font-body:    "Inter", "Source Sans 3", -apple-system, sans-serif;
  --font-script:  "Caveat", "Dancing Script", cursive;

  /* Spacing (4px base) */
  --s1:  4px;
  --s2:  8px;
  --s3:  12px;
  --s4:  16px;
  --s6:  24px;
  --s8:  32px;
  --s12: 48px;
  --s16: 64px;
  --s24: 96px;
  --s32: 128px;

  /* Layout */
  --container: 1140px;
  --nav-height: 76px;

  /* Transitions */
  --ease: cubic-bezier(.25,.46,.45,.94);
}

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

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

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-primary);
  background-color: var(--bg-canvas);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }

/* Grain texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: .4;
}

/* 3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--text-primary);
}

.display {
  font-size: clamp(52px, 7vw, 72px);
  line-height: 1.05;
  letter-spacing: -.02em;
}

h1 {
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.12;
  letter-spacing: -.018em;
}

h2 {
  font-size: clamp(28px, 3.5vw, 38px);
  line-height: 1.2;
  letter-spacing: -.015em;
}

h3 {
  font-family: var(--font-body);
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 500;
  line-height: 1.3;
}

h4 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
}

p { line-height: 1.7; color: var(--text-secondary); }
p + p { margin-top: var(--s4); }

.script {
  font-family: var(--font-script);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 400;
  color: var(--accent-olive-deep);
  line-height: 1.1;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent-olive-deep);
}

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

/* 4. LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--s6);
}

@media (min-width: 1024px) {
  .container { padding-inline: var(--s12); }
}

.section {
  padding-block: var(--s16);
}

@media (min-width: 768px) {
  .section { padding-block: var(--s24); }
}

.section--deep {
  background-color: var(--bg-deep);
  color: var(--text-on-deep);
}
.section--deep p, .section--deep h2, .section--deep h3 { color: var(--text-on-deep); }
.section--deep .text-secondary-on-deep { color: rgba(244,236,224,.7); }

.section--paper     { background-color: var(--bg-paper); }
.section--canvas    { background-color: var(--bg-canvas); }
.section--soft      { background-color: var(--bg-canvas-soft); }

.section-header {
  max-width: 640px;
}

.section-header--center {
  max-width: 700px;
  margin-inline: auto;
  text-align: center;
}

.section-header .eyebrow { margin-bottom: var(--s3); }
.section-header h2        { margin-bottom: var(--s6); }
.section-header p         { font-size: 17px; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s12);
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s6);
}

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; gap: var(--s16); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

/* fade-in on scroll */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}
.fade-in-delay-1 { transition-delay: .1s; }
.fade-in-delay-2 { transition-delay: .2s; }
.fade-in-delay-3 { transition-delay: .3s; }

/* 5. NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--bg-canvas);
  border-bottom: 1px solid rgba(107,79,58,.08);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: box-shadow .3s var(--ease);
}

.nav.scrolled {
  box-shadow: var(--shadow-soft);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav__logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  text-decoration: none;
}

.nav__logo-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: -.01em;
  line-height: 1.1;
}

.nav__logo-tagline {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav__links {
  display: none;
  align-items: center;
  gap: var(--s8);
}

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

.nav__link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  position: relative;
  padding-bottom: 2px;
  transition: color .2s;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-olive);
  transition: width .25s var(--ease);
}

.nav__link:hover,
.nav__link.active { color: var(--accent-olive-deep); }

.nav__link:hover::after,
.nav__link.active::after { width: 100%; }

.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--s4);
}

.nav__cta {
  display: none;
}

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

/* Hamburger */
.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 6px 0;
  cursor: pointer;
}

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

.nav__hamburger span {
  display: block;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s;
}

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

/* Mobile menu */
.nav__mobile {
  position: fixed;
  inset: var(--nav-height) 0 0 0;
  background-color: var(--bg-paper);
  display: flex;
  flex-direction: column;
  padding: var(--s12) var(--s6);
  gap: var(--s6);
  transform: translateX(100%);
  transition: transform .35s var(--ease);
  z-index: 99;
}

.nav__mobile.open { transform: none; }

.nav__mobile-link {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  color: var(--text-primary);
  padding-block: var(--s3);
  border-bottom: 1px solid rgba(107,79,58,.1);
}

.nav__mobile-link:last-child { border-bottom: none; }

.nav__mobile .btn-primary {
  margin-top: var(--s4);
  align-self: flex-start;
}

/* 6. BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  padding: 14px 28px;
  background-color: var(--accent-clay);
  color: var(--bg-paper);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background-color .2s, transform .2s, box-shadow .2s;
  white-space: nowrap;
  min-height: 48px;
}

.btn-primary:hover {
  background-color: var(--accent-clay-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lift);
}

.btn-primary:active { transform: none; }

.btn-primary--sm {
  padding: 10px 20px;
  font-size: 14px;
  min-height: 40px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  padding: 14px 28px;
  background-color: transparent;
  color: var(--accent-olive-deep);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  border-radius: 999px;
  border: 1.5px solid var(--accent-olive);
  cursor: pointer;
  text-decoration: none;
  transition: border-color .2s, background-color .2s, transform .2s;
  white-space: nowrap;
  min-height: 48px;
}

.btn-secondary:hover {
  border-color: var(--accent-olive-deep);
  background-color: rgba(122,135,99,.06);
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  color: var(--accent-olive-deep);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--accent-gold-soft);
  padding-bottom: 1px;
  transition: color .2s, border-color .2s;
}

.btn-ghost:hover {
  color: var(--accent-gold);
  border-color: var(--accent-gold);
}

/* 7. CARDS
   ============================================================ */
.card {
  background-color: var(--bg-paper);
  border: 1px solid rgba(107,79,58,.08);
  border-radius: 16px;
  padding: var(--s8);
  box-shadow: var(--shadow-soft);
}

@media (min-width: 768px) {
  .card { padding: var(--s8) var(--s8); }
}

/* 8. HERO
   ============================================================ */
.hero {
  background-color: var(--bg-paper);
  padding-block: var(--s16) var(--s16);
  overflow: hidden;
  position: relative;
}

@media (min-width: 768px) {
  .hero { padding-block: var(--s24) var(--s24); }
}

/* Decorative bg circle */
.hero::after {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,150,90,.10) 0%, transparent 70%);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s12);
  align-items: center;
}

@media (min-width: 768px) {
  .hero__grid {
    grid-template-columns: 55fr 45fr;
    gap: var(--s16);
  }
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: var(--s6);
}

.hero__eyebrow { margin-bottom: calc(var(--s3) * -1); }

.hero__title {
  font-size: clamp(52px, 9vw, 80px);
  line-height: 1.02;
  letter-spacing: -.03em;
}

.hero__body {
  font-size: 18px;
  max-width: 480px;
  color: var(--text-secondary);
}

.hero__script {
  display: block;
  margin-top: calc(var(--s3) * -1);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s4);
  margin-top: var(--s2);
}

.hero__image-wrap {
  position: relative;
}

.hero__image {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top center;
  border-radius: 24px 60px 24px 60px;
  display: block;
}

@media (max-width: 767px) {
  .hero__image {
    aspect-ratio: 3/4;
    border-radius: 16px;
    max-height: 460px;
    object-fit: cover;
  }
}

/* Decorative brushstroke ring behind image */
.hero__image-wrap::before {
  content: '';
  position: absolute;
  inset: -16px;
  border-radius: 28px 64px 28px 64px;
  border: 1px solid rgba(184,150,90,.2);
  pointer-events: none;
  z-index: 0;
}

.hero__image { position: relative; z-index: 1; }

/* 9. PAIN POINTS SECTION
   ============================================================ */
.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s6);
  margin-top: var(--s12);
}

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

.pain-card {
  background-color: var(--bg-paper);
  border-radius: 16px;
  padding: var(--s8);
  box-shadow: var(--shadow-soft);
  border-left: 3px solid var(--accent-gold-soft);
}

.pain-card__text {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.5;
}

/* 10. APPROACH SECTION
   ============================================================ */
.approach__image {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

@media (min-width: 768px) {
  .approach__image { aspect-ratio: 3/4; }
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--s6);
  margin-top: var(--s8);
}

.feature-item {
  display: flex;
  gap: var(--s4);
}

.feature-item__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: rgba(122,135,99,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  color: var(--accent-olive-deep);
  font-size: 14px;
}

.feature-item__title {
  font-weight: 600;
  font-size: 15px;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.feature-item__desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* 11. ABRIL METHOD
   ============================================================ */
.april-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s6);
  margin-top: var(--s12);
}

@media (min-width: 768px) {
  .april-grid { grid-template-columns: repeat(5, 1fr); gap: var(--s4); }
}

.april-card {
  background-color: var(--bg-paper);
  border-radius: 16px;
  padding: var(--s6) var(--s6) var(--s8);
  box-shadow: var(--shadow-soft);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s3);
  transition: transform .2s;
}

.april-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }

.april-card__letter {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 1;
  color: var(--accent-gold);
  font-weight: 400;
}

.april-card__title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.april-card__desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* 12. TESTIMONIALS
   ============================================================ */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s6);
  margin-top: var(--s12);
}

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

.testimonial-card {
  background-color: var(--bg-paper);
  border-radius: 16px;
  padding: var(--s8);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: var(--s6);
}

.testimonial-card__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  line-height: 1.55;
  color: var(--accent-olive-deep);
}

.testimonial-card__footer {
  display: flex;
  align-items: center;
  gap: var(--s3);
  padding-top: var(--s4);
  border-top: 1px solid rgba(107,79,58,.1);
}

.testimonial-card__heart {
  color: var(--accent-gold);
  font-size: 14px;
}

.testimonial-card__author {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

/* 13. FINAL CTA SECTION
   ============================================================ */
.cta-section {
  background-color: var(--bg-deep);
  padding-block: var(--s24);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(184,150,90,.12);
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 1px solid rgba(184,150,90,.08);
  pointer-events: none;
}

.cta-section h2 {
  color: var(--text-on-deep);
  font-size: clamp(36px, 5vw, 56px);
}

.cta-section .script {
  color: var(--accent-gold);
  display: block;
  margin-top: var(--s2);
  font-size: clamp(32px, 4vw, 44px);
}

.cta-section p {
  color: rgba(244,236,224,.7);
  font-size: 17px;
  margin-top: var(--s6);
  max-width: 400px;
  margin-inline: auto;
}

.cta-section .btn-primary {
  margin-top: var(--s8);
}

/* 14. FOOTER
   ============================================================ */
.footer {
  background-color: var(--bg-deep);
  border-top: 1px solid rgba(244,236,224,.08);
  padding-block: var(--s12);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s8);
}

@media (min-width: 768px) {
  .footer__inner {
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--s16);
  }
}

.footer__brand {}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--text-on-deep);
}

.footer__brand-tagline {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(244,236,224,.4);
  margin-top: var(--s1);
}

.footer__brand-desc {
  font-size: 14px;
  color: rgba(244,236,224,.5);
  line-height: 1.65;
  margin-top: var(--s4);
  max-width: 260px;
}

.footer__col-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(244,236,224,.4);
  margin-bottom: var(--s4);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}

.footer__link {
  font-size: 14px;
  color: rgba(244,236,224,.6);
  transition: color .2s;
}

.footer__link:hover { color: var(--text-on-deep); }

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: var(--s3);
  font-size: 14px;
  color: rgba(244,236,224,.6);
  margin-bottom: var(--s3);
}

.footer__bottom {
  margin-top: var(--s8);
  padding-top: var(--s6);
  border-top: 1px solid rgba(244,236,224,.08);
  font-size: 13px;
  color: rgba(244,236,224,.3);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--s4);
}

/* 15. WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
}

.whatsapp-float svg { width: 28px; height: 28px; }

/* 16. PAGE HEROES (inner pages)
   ============================================================ */
.page-hero {
  background-color: var(--bg-paper);
  padding-block: var(--s16) var(--s12);
  text-align: center;
}

@media (min-width: 768px) {
  .page-hero { padding-block: var(--s24) var(--s16); }
}

.page-hero .eyebrow { margin-bottom: var(--s4); }
.page-hero h1       { margin-bottom: var(--s6); }
.page-hero p        { font-size: 18px; max-width: 560px; margin-inline: auto; }

/* 17. ABOUT PAGE
   ============================================================ */
.about__image {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  display: block;
}

.credentials-list {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
  max-width: 560px;
  margin-inline: auto;
  margin-top: var(--s12);
}

.credential-item {
  display: flex;
  align-items: flex-start;
  gap: var(--s4);
  padding: var(--s4) var(--s6);
  background-color: var(--bg-paper);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.credential-item__dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-olive);
  margin-top: 7px;
}

.credential-item__text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* 18. PRICING PAGE
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s6);
  margin-top: var(--s12);
  align-items: start;
}

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

.pricing-card {
  background-color: var(--bg-paper);
  border: 1.5px solid rgba(107,79,58,.08);
  border-radius: 20px;
  padding: var(--s8);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: var(--s4);
  position: relative;
}

.pricing-card--featured {
  border-color: var(--accent-olive);
  box-shadow: var(--shadow-soft), 0 0 0 1px var(--accent-olive);
  transform: none;
}

@media (min-width: 768px) {
  .pricing-card--featured { transform: scale(1.02); }
}

.pricing-card__badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  background-color: rgba(122,135,99,.12);
  color: var(--accent-olive-deep);
  align-self: flex-start;
}

.pricing-card--featured .pricing-card__badge {
  background-color: var(--accent-olive);
  color: #fff;
}

.pricing-card__name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--text-primary);
}

.pricing-card__price {
  font-family: var(--font-display);
  font-size: 52px;
  line-height: 1;
  color: var(--accent-gold);
  font-weight: 400;
}

.pricing-card__price span {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-card__duration {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: -8px;
}

.pricing-card__desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  padding-bottom: var(--s4);
  border-bottom: 1px solid rgba(107,79,58,.08);
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}

.pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: var(--s3);
  font-size: 14px;
  color: var(--text-secondary);
}

.pricing-card__feature::before {
  content: '✓';
  color: var(--accent-olive);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-card .btn-primary,
.pricing-card .btn-secondary {
  width: 100%;
  margin-top: var(--s4);
  justify-content: center;
}

/* 19. FAQ ACCORDION
   ============================================================ */
.faq-list {
  max-width: 720px;
  margin-inline: auto;
  margin-top: var(--s12);
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}

.faq-item {
  background-color: var(--bg-paper);
  border: 1px solid rgba(107,79,58,.08);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
  padding: var(--s6) var(--s6);
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
  user-select: none;
  transition: color .2s;
  list-style: none;
  min-height: 60px;
}

.faq-question:hover { color: var(--accent-olive-deep); }

.faq-question::marker,
.faq-question::-webkit-details-marker { display: none; }

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--accent-olive);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-olive-deep);
  font-size: 14px;
  transition: transform .3s var(--ease), background-color .2s;
}

details[open] .faq-icon {
  transform: rotate(45deg);
  background-color: var(--accent-olive);
  color: #fff;
  border-color: var(--accent-olive);
}

.faq-answer {
  padding: 0 var(--s6) var(--s6);
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* 20. DIVIDER / DECORATIVE
   ============================================================ */
.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, var(--accent-gold-soft), transparent);
  border-radius: 2px;
  margin-block: var(--s4);
}

/* 21. RESPONSIVE UTILITIES
   ============================================================ */
@media (max-width: 767px) {
  .hide-mobile { display: none !important; }
  .script { font-size: clamp(22px, 7vw, 30px); }
}

@media (min-width: 768px) {
  .hide-desktop { display: none !important; }
}

/* Accessibility */
:focus-visible {
  outline: 2px solid var(--accent-olive);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =============================================
   INTERACTIVE ENHANCEMENTS v2
   frontend-design — Jess Neurocoach
   ============================================= */

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-clay), var(--accent-gold));
  z-index: 1001;
  width: 0%;
  pointer-events: none;
  transition: width .08s linear;
}

/* Custom cursor (desktop) */
.cursor-dot {
  position: fixed;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent-clay);
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  mix-blend-mode: multiply;
  opacity: 0;
  transition: opacity .4s;
}

.cursor-dot.ready { opacity: 1; }

.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(201,125,90,.35);
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width .25s var(--ease), height .25s var(--ease), border-color .25s;
  opacity: 0;
}

.cursor-ring.ready    { opacity: 1; }
.cursor-ring.hovering { width: 52px; height: 52px; border-color: rgba(201,125,90,.18); }

/* Hero word reveal */
.hero__image-wrap { position: relative; }

.hero__title .word-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

.hero__title .word-inner {
  display: inline-block;
  transform: translateY(110%);
  animation: wordReveal .85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-play-state: paused;
}

.hero__title.revealed .word-inner { animation-play-state: running; }

@keyframes wordReveal {
  to { transform: translateY(0); }
}

/* Hero script fade-up */
.hero__script-anim {
  opacity: 0;
  transform: translateY(10px);
  animation: scriptFade .7s var(--ease) forwards;
  animation-play-state: paused;
}

.hero__script-anim.revealed {
  animation-play-state: running;
}

@keyframes scriptFade {
  to { opacity: 1; transform: none; }
}

/* Brushstroke SVG alrededor de la imagen */
.hero__brushstroke {
  position: absolute;
  inset: -30px;
  width: calc(100% + 60px);
  height: calc(100% + 60px);
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}

.hero__brush-path {
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  animation: drawBrush 2.4s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}

@keyframes drawBrush {
  to { stroke-dashoffset: 0; }
}

/* Hero image tilt */
.hero__image-tilt { will-change: transform; }

/* Magnetic CTA: JS controla transform, CSS solo color/shadow */
.btn-primary.js-magnetic {
  transition: background-color .2s, box-shadow .2s;
}

.btn-primary.js-magnetic:hover {
  transform: none;
  background-color: var(--accent-clay-deep);
  box-shadow: var(--shadow-lift);
}

/* Pain cards — stagger fade-in via nth-child */
.pain-grid .pain-card:nth-child(1) { transition-delay:   0ms; }
.pain-grid .pain-card:nth-child(2) { transition-delay: 100ms; }
.pain-grid .pain-card:nth-child(3) { transition-delay: 200ms; }

/* Testimonial carousel */
.testimonial-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: var(--s6);
  padding-bottom: var(--s4);
  margin-top: var(--s12);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
}

.testimonial-carousel::-webkit-scrollbar { display: none; }
.testimonial-carousel.dragging { cursor: grabbing; }

.testimonial-carousel .testimonial-card {
  flex: 0 0 min(480px, 88vw);
  scroll-snap-align: start;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: var(--s6);
}

.carousel-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent-gold-soft);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all .35s var(--ease);
}

.carousel-dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--accent-gold);
}

/* APRIL sequential reveal */
.april-card {
  opacity: 0;
  transform: translateY(28px);
  position: relative;
}

.april-card.visible {
  opacity: 1;
  transform: none;
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}

.april-card.visible:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
  transition: transform .2s, box-shadow .2s;
}

.april-ping {
  position: absolute;
  inset: -3px;
  border-radius: 18px;
  border: 1px solid var(--accent-gold-soft);
  opacity: 0;
  pointer-events: none;
}

.april-card.visible .april-ping {
  animation: aprilPing .9s ease-out .25s forwards;
}

@keyframes aprilPing {
  0%   { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.14); opacity: 0; }
}
