:root {
      --morado: #432A78;
      --morado-claro: #5A40A3;
      --verde: #0CC6AF;
      --verde-hover: #0AB09C;
      --verde-light: rgba(12, 198, 175, 0.08);
      --verde-light-2: rgba(12, 198, 175, 0.15);
      --morado-light: rgba(67, 42, 120, 0.06);
      --morado-light-2: rgba(67, 42, 120, 0.12);
      --text-dark: #1a1a2e;
      --text-medium: #4a4a5a;
      --text-light: #6b6b7b;
      --bg-white: #ffffff;
      --bg-off: #f8f7fc;
      --bg-warm: #faf9fe;
      --border-light: rgba(67, 42, 120, 0.1);
      --shadow-sm: 0 1px 3px rgba(67, 42, 120, 0.08);
      --shadow-md: 0 4px 16px rgba(67, 42, 120, 0.1);
      --shadow-lg: 0 8px 32px rgba(67, 42, 120, 0.12);
      --shadow-xl: 0 16px 48px rgba(67, 42, 120, 0.15);
      --radius-sm: 8px;
      --radius-md: 12px;
      --radius-lg: 20px;
      --radius-xl: 28px;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }

    html { scroll-behavior: smooth; font-size: 16px; }
    section[id] { scroll-margin-top: 80px; }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      color: var(--text-dark);
      background: var(--bg-white);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    /* ── UTILITY ── */
    .container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
    .container-narrow { max-width: 800px; margin: 0 auto; padding: 0 24px; }
    .text-center { text-align: center; }
    .text-verde { color: var(--verde); }
    .text-morado { color: var(--morado); }

    /* ── TYPOGRAPHY ── */
    h1, h2, h3, h4 { line-height: 1.15; font-weight: 800; color: var(--text-dark); }
    h1 { font-size: clamp(2rem, 5vw, 3.2rem); letter-spacing: -0.03em; }
    h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); letter-spacing: -0.02em; }
    h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); letter-spacing: -0.01em; }
    p { color: var(--text-medium); line-height: 1.7; }

    /* ── BUTTONS ── */
    .btn-primary {
      display: inline-flex; align-items: center; gap: 10px;
      background: var(--verde); color: #fff;
      font-size: 1.1rem; font-weight: 700;
      padding: 18px 40px; border-radius: 60px;
      text-decoration: none; border: none; cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 20px rgba(12, 198, 175, 0.35);
    }
    .btn-primary:hover {
      background: var(--verde-hover);
      transform: translateY(-2px);
      box-shadow: 0 6px 28px rgba(12, 198, 175, 0.45);
    }
    .btn-primary svg { width: 20px; height: 20px; fill: currentColor; }

    .btn-secondary {
      display: inline-flex; align-items: center; gap: 8px;
      background: transparent; color: var(--morado);
      font-size: 1rem; font-weight: 600;
      padding: 14px 32px; border-radius: 60px;
      text-decoration: none; border: 2px solid var(--morado);
      cursor: pointer; transition: all 0.3s ease;
    }
    .btn-secondary:hover {
      background: var(--morado); color: #fff;
    }

    /* ── SECTION SPACING ── */
    section { padding: 80px 0; }
    @media (max-width: 768px) { section { padding: 56px 0; } }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       SECTION 1: HERO (Eyebrow + Headline + Subheadline + CTA)
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .hero {
      background: linear-gradient(165deg, var(--morado) 0%, var(--morado-claro) 55%, #7B5FC7 100%);
      color: #fff; padding: 0;
      min-height: 100vh; display: flex; align-items: center;
      position: relative; overflow: hidden;
    }
    .hero::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(circle at 30% 20%, rgba(12,198,175,0.12) 0%, transparent 50%),
                  radial-gradient(circle at 70% 80%, rgba(12,198,175,0.08) 0%, transparent 50%);
    }
    .hero .container { position: relative; z-index: 1; padding-top: 100px; padding-bottom: 80px; }

    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(255,255,255,0.12); backdrop-filter: blur(8px);
      padding: 8px 20px; border-radius: 60px;
      font-size: 0.85rem; font-weight: 600; letter-spacing: 0.04em;
      text-transform: uppercase; color: rgba(255,255,255,0.9);
      margin-bottom: 28px;
    }
    .hero-eyebrow .dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: var(--verde); display: inline-block;
      animation: pulse-dot 2s infinite;
    }
    @keyframes pulse-dot {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.6; transform: scale(1.3); }
    }

    .hero h1 { color: #fff; margin-bottom: 24px; max-width: 700px; }
    .hero h1 .highlight {
      color: var(--verde);
      position: relative;
    }

    .hero-sub {
      font-size: clamp(1.05rem, 2vw, 1.25rem);
      color: rgba(255,255,255,0.85);
      max-width: 560px; margin-bottom: 40px;
      line-height: 1.7; font-weight: 400;
    }

    /* 90 DAYS BADGE */
    .hero-90 {
      display: flex; flex-wrap: wrap; gap: 16px; align-items: center;
      margin-bottom: 32px;
    }
    .hero-90-badge {
      display: inline-flex; align-items: center; gap: 14px;
      background: rgba(12, 198, 175, 0.15);
      border: 2px solid rgba(12, 198, 175, 0.5);
      backdrop-filter: blur(8px);
      padding: 16px 28px; border-radius: var(--radius-lg);
    }
    .hero-90-number {
      font-size: clamp(2.4rem, 5vw, 3.4rem);
      font-weight: 900; line-height: 1;
      color: var(--verde);
      letter-spacing: -0.03em;
    }
    .hero-90-text {
      display: flex; flex-direction: column;
    }
    .hero-90-text span:first-child {
      font-size: clamp(1.1rem, 2vw, 1.4rem);
      font-weight: 800; color: #fff; line-height: 1.2;
      text-transform: uppercase; letter-spacing: 0.02em;
    }
    .hero-90-text span:last-child {
      font-size: 0.85rem; color: rgba(255,255,255,0.7);
      font-weight: 500;
    }
    .hero-90-pillars {
      display: flex; flex-wrap: wrap; gap: 10px;
    }
    .hero-90-pillar {
      display: inline-flex; align-items: center; gap: 6px;
      background: rgba(255,255,255,0.1);
      padding: 8px 16px; border-radius: 60px;
      font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.9);
    }
    .hero-90-pillar svg { width: 16px; height: 16px; color: var(--verde); }

    .hero-cta-row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; margin-bottom: 48px; }

    .hero-trust {
      display: flex; flex-wrap: wrap; gap: 28px; align-items: center;
      padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.12);
    }
    .hero-trust-item {
      display: flex; align-items: center; gap: 8px;
      font-size: 0.9rem; color: rgba(255,255,255,0.75); font-weight: 500;
    }
    .hero-trust-item svg { width: 18px; height: 18px; color: var(--verde); flex-shrink: 0; }

    /* ── HERO SPLIT LAYOUT (copy left, videocall mockup right) ── */
    .hero-grid {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 64px;
      align-items: center;
    }
    @media (max-width: 960px) {
      .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    }
    .hero-copy { min-width: 0; }
    .hero-copy h1 { max-width: 640px; }
    .hero-copy .hero-sub { max-width: 560px; }
    .hero-visual { min-width: 0; display: flex; justify-content: center; }
    .hero-videocall-img {
      width: 100%;
      max-width: 520px;
      height: auto;
      border-radius: 24px;
      box-shadow: 0 30px 80px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.08) inset;
      display: block;
    }

    /* ── VIDEOCALL MOCKUP ── */
    .videocall {
      position: relative;
      width: 100%;
      max-width: 460px;
      background: #0f0b1f;
      border-radius: 24px;
      padding: 14px 14px 16px;
      box-shadow: 0 30px 80px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.08) inset;
      overflow: hidden;
    }
    .videocall::before {
      content: ''; position: absolute; inset: -40px;
      background: radial-gradient(circle at 50% 0%, rgba(12,198,175,0.18), transparent 60%);
      z-index: 0; pointer-events: none;
    }
    .videocall-bar {
      position: relative; z-index: 1;
      display: flex; justify-content: space-between; align-items: center;
      padding: 6px 6px 12px;
      color: rgba(255,255,255,0.75);
      font-size: 0.75rem; font-weight: 600;
      letter-spacing: 0.04em;
    }
    .videocall-live {
      display: inline-flex; align-items: center; gap: 6px;
      background: rgba(255,82,82,0.15);
      color: #ff6b6b;
      padding: 4px 10px; border-radius: 30px;
      text-transform: uppercase; font-size: 0.7rem; letter-spacing: 0.08em;
    }
    .videocall-live .live-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: #ff4757; animation: pulse-dot 1.6s infinite;
    }
    .videocall-title {
      display: flex; align-items: center; gap: 6px;
      color: rgba(255,255,255,0.85);
    }
    .videocall-title svg { width: 13px; height: 13px; }

    .videocall-tiles {
      position: relative; z-index: 1;
      display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
      border-radius: 14px; overflow: hidden;
    }
    .videocall-tile {
      position: relative;
      aspect-ratio: 3/4;
      border-radius: 12px;
      overflow: hidden;
      background: #1a1333;
    }
    .videocall-tile img {
      width: 100%; height: 100%; object-fit: cover;
      display: block;
    }
    .tile-name {
      position: absolute; bottom: 8px; left: 8px;
      background: rgba(0,0,0,0.55); backdrop-filter: blur(6px);
      color: #fff; font-size: 0.7rem; font-weight: 600;
      padding: 4px 10px; border-radius: 20px;
      letter-spacing: 0.01em;
      display: inline-flex; align-items: center; gap: 5px;
    }
    .tile-name svg { width: 10px; height: 10px; color: var(--verde); }

    /* Patient placeholder tile */
    .tile-placeholder {
      position: absolute; inset: 0;
      background: linear-gradient(160deg, #2a1f52 0%, #1a1333 100%);
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: 12px; padding: 20px; text-align: center;
    }
    .tile-placeholder .avatar-mark {
      width: 64px; height: 64px; border-radius: 50%;
      background: rgba(255,255,255,0.08); border: 2px dashed rgba(255,255,255,0.25);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.5);
    }
    .tile-placeholder .avatar-mark svg { width: 32px; height: 32px; }
    .tile-placeholder .placeholder-note {
      font-size: 0.7rem; color: rgba(255,255,255,0.55);
      line-height: 1.4; font-weight: 500;
    }
    .tile-placeholder .placeholder-note strong {
      color: rgba(255,255,255,0.75); font-weight: 700;
      display: block; margin-bottom: 2px;
    }

    .videocall-controls {
      position: relative; z-index: 1;
      display: flex; justify-content: center; gap: 10px;
      padding-top: 14px;
    }
    .vc-btn {
      width: 36px; height: 36px; border-radius: 50%;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.12);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.8);
      cursor: default;
    }
    .vc-btn svg { width: 16px; height: 16px; }
    .vc-btn.vc-btn--end {
      background: #e74c3c; border-color: #e74c3c; color: #fff;
    }

    /* Floating "exercise" badge over the mockup */
    .videocall-badge {
      position: absolute; z-index: 2;
      bottom: -18px; right: -12px;
      background: #fff; color: var(--morado);
      padding: 10px 16px; border-radius: 60px;
      font-size: 0.8rem; font-weight: 700;
      box-shadow: 0 12px 28px rgba(0,0,0,0.25);
      display: inline-flex; align-items: center; gap: 8px;
      letter-spacing: 0;
    }
    .videocall-badge svg { width: 16px; height: 16px; color: var(--verde); }
    @media (max-width: 480px) {
      .videocall-badge { font-size: 0.72rem; padding: 8px 14px; bottom: -14px; right: 0; }
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       SECTION 4: SOCIAL PROOF / CREDENTIALS
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .credentials { background: var(--bg-white); }

    .credential-card {
      background: var(--bg-warm);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-lg);
      padding: 48px;
      display: grid; grid-template-columns: 200px 1fr; gap: 48px;
      align-items: start;
    }
    @media (max-width: 768px) {
      .credential-card { grid-template-columns: 1fr; gap: 32px; padding: 32px; }
    }

    .credential-photo {
      width: 200px; height: 240px;
      border-radius: var(--radius-md);
      background: linear-gradient(135deg, var(--morado-light-2), var(--verde-light-2));
      display: flex; align-items: center; justify-content: center;
      font-size: 4rem; color: var(--morado);
      overflow: hidden;
    }
    .credential-photo img {
      width: 100%; height: 100%; object-fit: cover;
    }

    .credential-name { font-size: 1.4rem; font-weight: 800; margin-bottom: 4px; }
    .credential-title { color: var(--morado-claro); font-weight: 600; font-size: 0.95rem; margin-bottom: 16px; }

    .credential-stats {
      display: flex; flex-wrap: wrap; gap: 24px;
      margin-bottom: 24px; padding-bottom: 24px;
      border-bottom: 1px solid var(--border-light);
    }
    .credential-stat {
      display: flex; flex-direction: column;
    }
    .credential-stat-number { font-size: 1.6rem; font-weight: 800; color: var(--morado); line-height: 1.2; }
    .credential-stat-label { font-size: 0.8rem; color: var(--text-light); font-weight: 500; }

    .credential-badges { display: flex; flex-wrap: wrap; gap: 8px; }
    .credential-badge {
      display: inline-flex; align-items: center; gap: 6px;
      background: var(--bg-white); border: 1px solid var(--border-light);
      padding: 6px 14px; border-radius: 60px;
      font-size: 0.8rem; font-weight: 500; color: var(--text-medium);
    }
    .credential-badge svg { width: 14px; height: 14px; color: var(--verde); }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       REAL TESTIMONIALS (verified reviews)
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .testimonials { background: var(--bg-off); }
    .testimonials-eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      background: #fff; border: 1px solid var(--border-light);
      padding: 6px 16px; border-radius: 60px;
      font-size: 0.78rem; font-weight: 700;
      color: var(--morado); letter-spacing: 0.03em;
      margin-bottom: 20px;
      box-shadow: var(--shadow-sm);
    }
    .testimonials-eyebrow .stars { color: #f5b400; letter-spacing: 0.05em; }
    .testimonials-grid {
      display: flex; flex-wrap: wrap; gap: 20px;
      justify-content: center;
    }
    .testimonials-grid .testimonial-card {
      flex: 0 1 calc((100% - 40px) / 3);
      min-width: 260px;
    }
    @media (max-width: 900px) {
      .testimonials-grid .testimonial-card { flex: 0 1 100%; }
    }
    .testimonial-card {
      background: #fff;
      border: 1px solid var(--border-light);
      border-radius: var(--radius-lg);
      padding: 28px 24px;
      display: flex; flex-direction: column;
      transition: all 0.3s ease;
      position: relative;
    }
    .testimonial-card:hover {
      border-color: var(--verde);
      box-shadow: var(--shadow-md);
      transform: translateY(-2px);
    }
    .testimonial-stars {
      color: #f5b400;
      font-size: 1rem; letter-spacing: 0.05em;
      margin-bottom: 14px;
    }
    .testimonial-text {
      font-size: 0.95rem; line-height: 1.65;
      color: var(--text-dark); font-weight: 500;
      margin-bottom: 20px; flex: 1;
    }
    .testimonial-text::before {
      content: '"'; color: var(--verde); opacity: 0.35;
      font-size: 1.6rem; line-height: 0;
      margin-right: 3px;
      position: relative; top: 4px;
    }
    .testimonial-author {
      display: flex; align-items: center; gap: 12px;
      padding-top: 16px; border-top: 1px solid var(--border-light);
    }
    .testimonial-avatar {
      width: 40px; height: 40px; border-radius: 50%;
      background: linear-gradient(135deg, var(--morado-claro), var(--morado));
      color: #fff; font-weight: 800; font-size: 0.85rem;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; letter-spacing: 0.02em;
    }
    .testimonial-meta { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
    .testimonial-meta strong { font-size: 0.9rem; color: var(--text-dark); font-weight: 700; }
    .testimonial-meta .verified {
      display: inline-flex; align-items: center; gap: 4px;
      font-size: 0.75rem; color: #099485; font-weight: 600;
    }
    .testimonial-meta .verified svg { width: 12px; height: 12px; }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       SECTION 5: PAIN POINTS
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .pain-points { background: var(--bg-off); }

    .pain-section-header { margin-bottom: 48px; }
    .pain-section-header h2 { margin-bottom: 12px; }
    .pain-section-header p { font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

    .pain-grid {
      display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
    }
    @media (max-width: 768px) { .pain-grid { grid-template-columns: 1fr; } }

    .pain-card {
      background: var(--bg-white);
      border: 1px solid var(--border-light);
      border-left: 3px solid var(--verde);
      border-radius: var(--radius-md);
      padding: 24px 26px;
      position: relative;
      transition: all 0.3s ease;
    }
    .pain-card:hover {
      border-color: var(--verde);
      border-left-color: var(--verde);
      box-shadow: var(--shadow-md);
      transform: translateY(-2px);
    }
    .pain-card p { font-size: 0.95rem; color: var(--text-medium); line-height: 1.65; }
    .pain-card strong { color: var(--text-dark); display: block; margin-bottom: 4px; font-size: 1rem; }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       SECTION 6: ORIGIN STORY / TRANSFORMATION
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .story { background: var(--bg-white); }

    .story-block {
      max-width: 720px; margin: 0 auto;
    }
    .story-quote {
      font-size: clamp(1.05rem, 2vw, 1.2rem);
      line-height: 1.8; color: var(--text-medium);
      position: relative; padding-left: 32px;
      border-left: 3px solid var(--verde);
      margin-bottom: 32px;
    }
    .story-quote em { color: var(--text-dark); font-style: normal; font-weight: 600; }

    .story-motivation {
      background: var(--morado-light);
      border-radius: var(--radius-md);
      padding: 32px;
      margin-top: 40px;
    }
    .story-motivation h3 { color: var(--morado); margin-bottom: 12px; font-size: 1.1rem; }
    .story-motivation p { font-size: 1rem; }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       SECTION: CASES / TESTIMONIALS
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .cases { background: var(--bg-off); }

    .cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    @media (max-width: 900px) { .cases-grid { grid-template-columns: 1fr; } }

    .case-card {
      background: var(--bg-white);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-lg);
      padding: 36px 28px;
      display: flex; flex-direction: column;
      transition: all 0.3s ease;
    }
    .case-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

    .case-tag {
      display: inline-block;
      padding: 4px 12px; border-radius: 60px;
      font-size: 0.72rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.05em;
      margin-bottom: 16px; width: fit-content;
    }
    .case-tag.best { background: rgba(12,198,175,0.12); color: #099485; }
    .case-tag.typical { background: var(--morado-light-2); color: var(--morado); }
    .case-tag.complex { background: rgba(255, 152, 0, 0.12); color: #c77700; }

    .case-person {
      display: flex; align-items: center; gap: 14px;
      margin-bottom: 18px;
    }
    .case-avatar-ph {
      width: 56px; height: 56px; border-radius: 50%;
      background: linear-gradient(135deg, var(--morado-light-2), var(--verde-light-2));
      border: 2px dashed var(--border-light);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      color: var(--morado-claro); opacity: 0.8;
      position: relative;
    }
    .case-avatar-ph svg { width: 26px; height: 26px; }
    .case-avatar-ph::after {
      content: 'Foto pendiente';
      position: absolute; bottom: -18px; left: 50%;
      transform: translateX(-50%);
      font-size: 0.58rem; font-weight: 600;
      color: var(--text-light); opacity: 0.6;
      white-space: nowrap;
      letter-spacing: 0.02em;
    }
    .case-person-info { min-width: 0; }
    .case-name { font-size: 1.1rem; font-weight: 800; margin-bottom: 2px; line-height: 1.25; }
    .case-condition { font-size: 0.82rem; color: var(--text-light); line-height: 1.4; }

    .case-before-after { margin-bottom: 20px; }
    .case-label {
      font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
      letter-spacing: 0.06em; margin-bottom: 6px;
    }
    .case-label.before { color: #c0392b; }
    .case-label.after { color: #099485; }
    .case-before-after p { font-size: 0.9rem; margin-bottom: 12px; }

    .case-result {
      margin-top: auto; padding-top: 16px;
      border-top: 1px solid var(--border-light);
      display: flex; align-items: center; gap: 8px;
      font-size: 0.85rem; font-weight: 600; color: var(--verde);
    }
    .case-result svg { width: 16px; height: 16px; }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       SECTION 7: CONDITIONS
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .conditions { background: var(--bg-white); }

    .conditions-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
      margin-bottom: 32px;
    }
    @media (max-width: 900px) { .conditions-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 500px) { .conditions-grid { grid-template-columns: 1fr; } }

    .condition-group {
      background: var(--bg-warm);
      border-radius: var(--radius-md);
      padding: 28px 20px;
      text-align: center;
    }
    .condition-group-icon {
      width: 48px; height: 48px; border-radius: 12px;
      margin: 0 auto 14px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem;
      background: var(--verde-light-2);
    }
    .condition-group h4 {
      font-size: 0.9rem; font-weight: 700; margin-bottom: 10px; color: var(--morado);
    }
    .condition-group ul {
      list-style: none; text-align: left;
    }
    .condition-group li {
      font-size: 0.85rem; color: var(--text-medium);
      padding: 4px 0; display: flex; align-items: baseline; gap: 6px;
    }
    .condition-group li::before {
      content: ''; width: 5px; height: 5px; border-radius: 50%;
      background: var(--verde); flex-shrink: 0; margin-top: 6px;
    }

    .conditions-note {
      background: var(--morado-light);
      border-radius: var(--radius-md);
      padding: 20px 28px;
      font-size: 0.9rem; color: var(--text-medium);
      display: flex; align-items: flex-start; gap: 12px;
    }
    .conditions-note svg { width: 20px; height: 20px; color: var(--morado); flex-shrink: 0; margin-top: 2px; }

    /* ── QUÉ MEDIMOS Y MEJORAMOS ── */
    .que-medimos { background: var(--bg-warm); }
    .measure-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
      margin-bottom: 28px;
    }
    @media (max-width: 900px) { .measure-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 560px) { .measure-grid { grid-template-columns: 1fr; } }
    .measure-grid .pain-card { width: auto; height: 100%; }
    .measure-science {
      text-align: center; max-width: 720px; margin: 0 auto;
      font-size: 0.95rem; color: var(--text-medium); line-height: 1.6;
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       SECTION 8: OFFER / PRICING
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .offer {
      background: linear-gradient(165deg, var(--morado) 0%, var(--morado-claro) 100%);
      color: #fff;
    }

    .offer h2 { color: #fff; margin-bottom: 12px; }
    .offer .offer-sub { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 600px; margin: 0 auto 48px; }

    .offer-grid {
      display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
      max-width: 960px; margin: 0 auto;
      align-items: start;
    }
    @media (max-width: 768px) { .offer-grid { grid-template-columns: 1fr; } }

    .offer-card {
      background: rgba(255,255,255,0.08);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: var(--radius-xl);
      padding: 40px 32px;
      position: relative;
      transition: all 0.3s ease;
    }
    .offer-card:hover { transform: translateY(-4px); }
    .offer-card.featured {
      border: 2px solid var(--verde);
      background: rgba(255,255,255,0.12);
      box-shadow: 0 0 40px rgba(12,198,175,0.2);
    }
    .offer-card.featured .offer-popular {
      position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
      background: var(--verde); color: #fff;
      padding: 6px 20px; border-radius: 60px;
      font-size: 0.75rem; font-weight: 800; text-transform: uppercase;
      letter-spacing: 0.06em; white-space: nowrap;
    }

    .offer-label {
      font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
      letter-spacing: 0.08em; color: var(--verde); margin-bottom: 8px;
    }
    .offer-title { font-size: 1.3rem; font-weight: 800; color: #fff; margin-bottom: 20px; }

    .offer-includes { list-style: none; margin-bottom: 28px; }
    .offer-includes li {
      display: flex; align-items: flex-start; gap: 10px;
      padding: 8px 0; font-size: 0.88rem; color: rgba(255,255,255,0.9);
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .offer-includes li svg { width: 18px; height: 18px; color: var(--verde); flex-shrink: 0; margin-top: 2px; }
    .offer-includes li.bonus {
      color: var(--verde); font-weight: 600;
      border-bottom: 1px solid rgba(12,198,175,0.15);
    }
    .offer-includes li.bonus svg { color: #fff; }

    .offer-pricing {
      text-align: center;
      padding: 24px 0 20px;
      border-top: 1px solid rgba(255,255,255,0.15);
    }
    .offer-price {
      font-size: 2.6rem; font-weight: 900; color: #fff; line-height: 1;
    }
    .offer-price-period { font-size: 0.9rem; font-weight: 400; color: rgba(255,255,255,0.7); }
    .offer-price-note { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-top: 4px; }

    /* Precio "regular" tachado encima del precio actual */
    .offer-price-old {
      display: inline-block;
      font-size: 1.05rem;
      font-weight: 600;
      color: rgba(255,255,255,0.45);
      text-decoration: line-through;
      text-decoration-color: rgba(255,82,82,0.7);
      text-decoration-thickness: 2px;
      margin-bottom: 6px;
      letter-spacing: -0.01em;
    }
    .offer-price-old small { font-size: 0.8rem; opacity: 0.8; font-weight: 500; }

    .offer-launch-badge {
      display: inline-flex; align-items: center; gap: 6px;
      background: var(--verde);
      color: #fff;
      padding: 6px 14px; border-radius: 60px;
      font-size: 0.75rem; font-weight: 800;
      text-transform: uppercase; letter-spacing: 0.06em;
      margin-bottom: 10px;
      box-shadow: 0 4px 14px rgba(12, 198, 175, 0.35);
    }

    .offer-discount {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(12,198,175,0.2); border: 1px solid rgba(12,198,175,0.3);
      padding: 6px 16px; border-radius: 60px;
      font-size: 0.8rem; font-weight: 700; color: var(--verde);
      margin-top: 12px;
    }

    .offer-cta { text-align: center; margin-top: 24px; }
    .offer-cta .btn-primary { font-size: 0.95rem; padding: 14px 28px; }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       SECTION 10: GUARANTEES
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .guarantees { background: var(--bg-white); }

    .guarantee-cards {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    }
    @media (max-width: 768px) { .guarantee-cards { grid-template-columns: 1fr; } }

    .guarantee-card {
      text-align: left;
      padding: 32px 28px;
      border: 2px solid var(--border-light);
      border-top: 3px solid var(--verde);
      border-radius: var(--radius-lg);
      transition: all 0.3s ease;
    }
    .guarantee-card:hover {
      border-color: var(--verde);
      border-top-color: var(--verde);
      box-shadow: var(--shadow-md);
      transform: translateY(-2px);
    }
    .guarantee-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--morado); }
    .guarantee-card p { font-size: 0.92rem; line-height: 1.65; }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       SECTION 12: FAQ
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .faq { background: var(--bg-off); }

    .faq-list { max-width: 720px; margin: 0 auto; }

    .faq-item {
      border-bottom: 1px solid var(--border-light);
    }
    .faq-question {
      width: 100%; background: none; border: none;
      padding: 24px 0; cursor: pointer;
      display: flex; justify-content: space-between; align-items: center;
      text-align: left; font-size: 1.05rem; font-weight: 600;
      color: var(--text-dark); font-family: inherit;
      transition: color 0.2s;
    }
    .faq-question:hover { color: var(--morado); }
    .faq-question svg {
      width: 20px; height: 20px; flex-shrink: 0;
      transition: transform 0.3s;
      color: var(--morado-claro);
    }
    .faq-item.open .faq-question svg { transform: rotate(180deg); }

    .faq-answer {
      max-height: 0; overflow: hidden;
      transition: max-height 0.4s ease, padding 0.3s ease;
    }
    .faq-item.open .faq-answer { max-height: 400px; }
    .faq-answer-inner {
      padding: 0 0 24px;
      font-size: 0.95rem; color: var(--text-medium); line-height: 1.7;
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       SECTION 11: FINAL CTA
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .final-cta {
      background: linear-gradient(165deg, var(--morado) 0%, var(--morado-claro) 100%);
      color: #fff; text-align: center;
      padding: 100px 24px;
    }
    .final-cta h2 { color: #fff; margin-bottom: 16px; max-width: 600px; margin-left: auto; margin-right: auto; }
    .final-cta p { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 500px; margin: 0 auto 36px; }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       HOW IT WORKS
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .how-it-works { background: var(--bg-white); }

    .steps {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
      position: relative;
    }
    @media (max-width: 768px) { .steps { grid-template-columns: 1fr; gap: 16px; } }

    .step {
      text-align: center; padding: 28px 16px;
      position: relative;
    }
    .step-number {
      width: 48px; height: 48px; border-radius: 50%;
      background: var(--verde); color: #fff;
      font-size: 1.2rem; font-weight: 800;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 16px;
    }
    .step h4 { font-size: 0.95rem; margin-bottom: 6px; }
    .step p { font-size: 0.85rem; }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       PATIENT QUOTES (mini social proof)
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .patient-quotes { background: var(--bg-white); padding: 60px 0; }

    .quotes-scroll {
      display: flex; gap: 20px; overflow-x: auto;
      padding: 0 24px 16px;
      scrollbar-width: thin;
    }
    .quote-chip {
      flex-shrink: 0;
      background: var(--bg-warm);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-md);
      padding: 20px 24px;
      max-width: 320px;
      font-size: 0.95rem; font-style: italic;
      color: var(--text-medium);
      position: relative;
    }
    .quote-chip::before {
      content: '"'; position: absolute; top: 8px; left: 12px;
      font-size: 2rem; color: var(--verde); opacity: 0.4; font-style: normal;
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       FOOTER
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    footer {
      background: var(--text-dark); color: rgba(255,255,255,0.9);
      padding: 40px 24px; text-align: center;
      font-size: 0.85rem;
    }
    footer p { color: rgba(255,255,255,0.9); }
    footer a { color: #fff; text-decoration: none; }
    footer .footer-brand { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 8px; }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       NAV
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      padding: 16px 0;
      transition: all 0.3s ease;
    }
    .nav.scrolled {
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(12px);
      box-shadow: var(--shadow-sm);
      padding: 10px 0;
    }
    .nav-inner {
      max-width: 1120px; margin: 0 auto; padding: 0 24px;
      display: flex; justify-content: space-between; align-items: center;
      gap: 16px;
      position: relative;
    }
    .nav-logo {
      font-size: 1.3rem; font-weight: 800; color: #fff;
      text-decoration: none; letter-spacing: -0.02em;
      display: flex; flex-direction: column; line-height: 1.1;
    }
    .nav-logo .nav-tagline {
      font-size: 0.55rem; font-weight: 500; letter-spacing: 0.12em;
      text-transform: uppercase; opacity: 0.75;
    }
    .nav.scrolled .nav-logo { color: var(--morado); }
    .nav-cta {
      background: var(--verde); color: #fff;
      padding: 10px 24px; border-radius: 60px;
      font-size: 0.85rem; font-weight: 700;
      text-decoration: none; transition: all 0.3s;
    }
    .nav-cta:hover { background: var(--verde-hover); }

    .nav-links {
      display: flex; gap: 28px; align-items: center;
    }
    .nav-link {
      font-size: 0.9rem; font-weight: 600;
      color: rgba(255,255,255,0.9);
      text-decoration: none;
      transition: color 0.2s;
    }
    .nav-link:hover { color: var(--verde); }
    .nav.scrolled .nav-link { color: var(--text-medium); }
    .nav.scrolled .nav-link:hover { color: var(--morado); }

    .nav-toggle {
      display: none;
      background: none; border: none; cursor: pointer;
      padding: 8px; color: #fff;
    }
    .nav.scrolled .nav-toggle { color: var(--morado); }
    .nav-toggle svg { width: 24px; height: 24px; }

    @media (max-width: 860px) {
      .nav-links {
        display: none;
        position: absolute; top: 100%; left: 0; right: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(12px);
        flex-direction: column; gap: 0;
        padding: 8px 0;
        box-shadow: var(--shadow-md);
        border-top: 1px solid var(--border-light);
      }
      .nav-links.open { display: flex; }
      .nav-links .nav-link {
        color: var(--text-dark);
        padding: 14px 24px; width: 100%;
        border-bottom: 1px solid var(--border-light);
      }
      .nav-links .nav-link:last-child { border-bottom: none; }
      .nav-toggle { display: inline-flex; }
      .nav-cta { display: none; }
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       HORIZONTAL SCROLL CAROUSELS (pain points + cases)
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .h-scroll {
      display: flex; gap: 20px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      padding: 8px 24px 24px;
      margin: 0 -24px;
      scrollbar-width: thin;
      scrollbar-color: var(--morado-claro) transparent;
    }
    .h-scroll::-webkit-scrollbar { height: 6px; }
    .h-scroll::-webkit-scrollbar-track { background: transparent; }
    .h-scroll::-webkit-scrollbar-thumb { background: var(--morado-light-2); border-radius: 4px; }

    .h-scroll > * {
      scroll-snap-align: start;
      flex-shrink: 0;
    }

    .h-scroll-hint {
      display: flex; align-items: center; justify-content: center; gap: 8px;
      font-size: 0.8rem; font-weight: 600;
      color: var(--morado-claro); opacity: 0.7;
      margin-top: 8px;
      letter-spacing: 0.04em;
    }
    .h-scroll-hint svg { width: 14px; height: 14px; }

    /* Desktop: flechas de navegación para h-scroll */
    .h-scroll-wrap { position: relative; }
    .h-scroll-arrow {
      position: absolute; top: 50%;
      transform: translateY(-50%);
      width: 44px; height: 44px;
      border-radius: 50%;
      background: #fff;
      border: 1px solid var(--border-light);
      box-shadow: var(--shadow-md);
      display: none;
      align-items: center; justify-content: center;
      color: var(--morado);
      cursor: pointer;
      z-index: 5;
      transition: all 0.2s ease;
      padding: 0;
    }
    .h-scroll-arrow:hover:not(.disabled) {
      background: var(--morado);
      color: #fff;
      transform: translateY(-50%) scale(1.06);
    }
    .h-scroll-arrow.disabled { opacity: 0; pointer-events: none; }
    .h-scroll-arrow svg { width: 18px; height: 18px; }
    .h-scroll-arrow--left { left: -8px; }
    .h-scroll-arrow--right { right: -8px; }

    /* Drag-to-scroll */
    .h-scroll { cursor: grab; }
    .h-scroll.is-dragging { cursor: grabbing; scroll-snap-type: none; user-select: none; }
    .h-scroll.is-dragging > * { pointer-events: none; }

    @media (min-width: 900px) {
      .h-scroll-arrow { display: inline-flex; }
      .h-scroll-hint { display: none; }
    }

    /* Pain cards in carousel */
    .pain-points .h-scroll .pain-card {
      width: min(320px, 80vw);
    }
    /* Cases in carousel */
    .cases .h-scroll .case-card {
      width: min(340px, 85vw);
    }
    @media (min-width: 1000px) {
      .cases .h-scroll .case-card { width: 320px; }
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       RESULTS PROMISE BAR
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .results-bar {
      background: var(--verde);
      padding: 20px 24px; text-align: center;
      color: #fff; font-weight: 600; font-size: 1rem;
    }
    .results-bar span { font-weight: 800; }

    /* ── ANIMATIONS ── */
    .fade-up {
      opacity: 0; transform: translateY(24px);
      transition: all 0.6s ease;
    }
    .fade-up.visible {
      opacity: 1; transform: translateY(0);
    }
  

  .video-proof {
    padding: 64px 20px;
    background: linear-gradient(180deg, #F8F6FC 0%, #FFFFFF 100%);
  }
  .video-proof-header {
    text-align: center;
    margin-bottom: 32px;
  }
  .video-proof-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--verde);
    margin-bottom: 12px;
  }
  .video-proof-title {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 700;
    color: var(--morado);
    margin: 0 0 12px;
    line-height: 1.15;
  }
  .video-proof-sub {
    font-size: 1.05rem;
    color: #555;
    margin: 0;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
  .video-proof-frame {
    max-width: 360px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(67, 42, 120, 0.25), 0 0 0 1px rgba(67, 42, 120, 0.08);
    background: #000;
    aspect-ratio: 9 / 16;
  }
  .video-proof-player {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  @media (max-width: 480px) {
    .video-proof { padding: 48px 16px; }
    .video-proof-frame { max-width: 100%; }
  }


    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       MULTIPÁGINA — añadidos
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    /* Enlace de nav activo */
    .nav-link.active { color: #fff; }
    .nav-link.active::after {
      content: ''; display: block; height: 2px; margin-top: 4px;
      background: var(--verde); border-radius: 2px;
    }
    .nav.scrolled .nav-link.active { color: var(--morado); font-weight: 700; }
    @media (max-width: 860px) {
      .nav-links .nav-link.active { color: var(--morado); font-weight: 700; }
      .nav-link.active::after { display: none; }
    }

    /* Encabezado de subpáginas (page-header) */
    .page-header {
      background: linear-gradient(165deg, var(--morado) 0%, var(--morado-claro) 55%, #7B5FC7 100%);
      color: #fff; position: relative; overflow: hidden;
      padding: 150px 0 72px; text-align: center;
    }
    .page-header::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(circle at 30% 20%, rgba(12,198,175,0.12) 0%, transparent 50%),
                  radial-gradient(circle at 70% 80%, rgba(12,198,175,0.08) 0%, transparent 50%);
    }
    .page-header .container { position: relative; z-index: 1; }
    .page-header h1 { color: #fff; max-width: 760px; margin: 0 auto; }
    .page-header .hero-eyebrow { margin-bottom: 18px; }
    .page-header-sub {
      color: rgba(255,255,255,0.92); font-size: 1.1rem;
      max-width: 640px; margin: 18px auto 0; line-height: 1.6;
    }
    .page-header-cta { margin-top: 30px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
    @media (max-width: 768px) { .page-header { padding: 128px 0 56px; } }

    /* Home: enlace a subpágina al pie de una sección */
    .section-link-wrap { text-align: center; margin-top: 40px; }

    /* Home: teaser de equipo */
    .team-teaser {
      display: flex; align-items: center; gap: 32px;
      max-width: 840px; margin: 0 auto;
      background: var(--bg-off); border: 1px solid var(--border-light);
      border-radius: var(--radius-xl); padding: 32px 36px;
      box-shadow: var(--shadow-sm);
    }
    .team-teaser-photo {
      width: 140px; height: 140px; border-radius: 50%; flex-shrink: 0;
      overflow: hidden; background: var(--morado-light);
      display: flex; align-items: center; justify-content: center; font-size: 3rem;
    }
    .team-teaser-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .team-teaser h3 { color: var(--morado); margin-bottom: 8px; }
    .team-teaser p { margin-bottom: 16px; }
    @media (max-width: 640px) {
      .team-teaser { flex-direction: column; text-align: center; padding: 28px 22px; }
    }

    /* Bloque "qué es Movium" / equipo completo (texto) */
    .prose-block { max-width: 720px; margin: 0 auto; }
    .prose-block p { font-size: 1.05rem; margin-bottom: 18px; }

    /* Galería "el equipo en acción" */
    .team-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 980px; margin: 0 auto; align-items: start; }
    .team-gallery-item { margin: 0; }
    .team-gallery-item img {
      width: 100%; height: auto;
      border-radius: var(--radius-lg); display: block; box-shadow: var(--shadow-md);
    }
    .team-gallery-item figcaption { margin-top: 12px; text-align: center; font-size: 0.9rem; color: var(--text-light); font-weight: 500; }
    @media (max-width: 768px) { .team-gallery { grid-template-columns: 1fr; gap: 24px; max-width: 420px; } }

    /* Variante de 3 columnas para .steps (pilares) */
    .steps.steps-3 { grid-template-columns: repeat(3, 1fr); max-width: 880px; margin-left: auto; margin-right: auto; }
    @media (max-width: 768px) { .steps.steps-3 { grid-template-columns: 1fr; } }
    .step-number.step-emoji { font-size: 1.5rem; }

    /* Botones secundarios sobre fondo morado → texto/borde blanco (legibilidad) */
    .hero .btn-secondary,
    .page-header .btn-secondary,
    .offer .btn-secondary,
    .final-cta .btn-secondary {
      color: #fff; border-color: rgba(255,255,255,0.5);
    }
    .hero .btn-secondary:hover,
    .page-header .btn-secondary:hover,
    .offer .btn-secondary:hover,
    .final-cta .btn-secondary:hover {
      background: #fff; color: var(--morado); border-color: #fff;
    }
