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

    :root {
      --purple:       #5D287D;
      --purple-dark:  #2B123A;
      --purple-light: #F3ECF7;
      --purple-mid:   #C9A8E8;
      --accent:       #D946A6;
      --mint:         #3DDC97;
      --white:        #FFFFFF;
      --off-white:    #F3ECF7;
      --text-dark:    #1F1F24;
      --text-mid:     #4A3B5C;
      --text-light:   #8A7A9B;
      --border:       #E0D3F0;
    }

    html { scroll-behavior: smooth; }

    /* Las imagenes llevan width/height en el HTML para reservar espacio y evitar
       saltos de layout. height:auto es imprescindible: sin el, el atributo height
       del HTML fija la altura y anula cualquier aspect-ratio del CSS. */
    img {
      max-width: 100%;
      height: auto;
    }

    body {
      font-family: 'Inter', sans-serif;
      color: var(--text-dark);
      background: var(--white);
      overflow-x: hidden;
    }

    /* ─── NAVBAR ─── */
    nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255,255,255,0.96);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid var(--border);
      padding: 16px 32px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--purple);
      letter-spacing: -0.5px;
    }

    .logo span { color: var(--text-dark); }

    .nav-cta {
      background: var(--purple);
      color: var(--white);
      border: none;
      border-radius: 50px;
      padding: 10px 24px;
      font-size: 0.875rem;
      font-weight: 600;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.2s, transform 0.15s;
    }

    .nav-cta:hover { background: var(--purple-dark); transform: translateY(-1px); }

    /* ─── HERO ─── */
    .hero {
      background: linear-gradient(135deg, #F3ECF7 0%, #EDE5F5 50%, #E2D0F0 100%);
      padding: 100px 32px 80px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -80px; right: -80px;
      width: 400px; height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(123,79,166,0.12) 0%, transparent 70%);
    }

    .hero::after {
      content: '';
      position: absolute;
      bottom: -100px; left: -60px;
      width: 350px; height: 350px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(123,79,166,0.08) 0%, transparent 70%);
    }

    .hero-badge {
      display: inline-block;
      background: var(--purple);
      color: var(--white);
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 6px 18px;
      border-radius: 50px;
      margin-bottom: 28px;
    }

    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 5vw, 3.4rem);
      font-weight: 700;
      line-height: 1.2;
      color: var(--text-dark);
      max-width: 780px;
      margin: 0 auto 24px;
    }

    .hero h1 em {
      font-style: normal;
      color: var(--purple);
    }

    .hero p {
      font-size: clamp(1rem, 2vw, 1.2rem);
      color: var(--text-mid);
      max-width: 600px;
      margin: 0 auto 40px;
      line-height: 1.7;
      font-weight: 400;
    }

    .hero-img-placeholder {
      width: 100%;
      max-width: 480px;
      height: 360px;
      margin: 48px auto 0;
      border-radius: 24px;
      background: linear-gradient(135deg, var(--purple-light), var(--purple-mid));
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
      color: var(--purple-dark);
      font-size: 0.875rem;
      font-weight: 500;
      border: 2px dashed var(--purple-mid);
    }

    .hero-img-placeholder svg { opacity: 0.5; }

    /* ─── BUTTONS ─── */
    .btn-primary {
      display: inline-block;
      background: var(--purple);
      color: var(--white);
      padding: 18px 40px;
      border-radius: 50px;
      font-size: 1rem;
      font-weight: 600;
      text-decoration: none;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      box-shadow: 0 8px 24px rgba(123,79,166,0.3);
    }

    .btn-primary:hover {
      background: var(--purple-dark);
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(123,79,166,0.4);
    }

    .btn-secondary {
      display: inline-block;
      background: transparent;
      color: var(--purple);
      border: 2px solid var(--purple);
      padding: 16px 38px;
      border-radius: 50px;
      font-size: 1rem;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.2s;
    }

    .btn-secondary:hover {
      background: var(--purple);
      color: var(--white);
    }

    /* ─── SECTIONS ─── */
    section { padding: 80px 32px; }

    .container {
      max-width: 1080px;
      margin: 0 auto;
    }

    .section-label {
      display: inline-block;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--purple);
      margin-bottom: 16px;
    }

    h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 4vw, 2.6rem);
      font-weight: 700;
      line-height: 1.25;
      color: var(--text-dark);
      margin-bottom: 20px;
    }

    h2 em {
      font-style: normal;
      color: var(--purple);
    }

    .subtitle {
      font-size: 1.05rem;
      color: var(--text-mid);
      line-height: 1.7;
      max-width: 600px;
    }

    /* ─── VIDEO ─── */
    .video-section {
      background: var(--purple-dark);
      padding: 80px 32px;
      text-align: center;
    }

    .video-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--accent);
      color: white;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 8px 20px;
      border-radius: 50px;
      margin-bottom: 24px;
    }

    .video-section h2 {
      color: white;
      max-width: 700px;
      margin: 0 auto 16px;
    }

    .video-section h2 em { color: var(--purple-mid); }

    .video-section .subtitle {
      color: rgba(255,255,255,0.65);
      margin: 0 auto 48px;
    }

    .video-wrapper {
      max-width: 800px;
      margin: 0 auto 40px;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 32px 80px rgba(0,0,0,0.4);
      position: relative;
      background: #0a0a0a;
    }

    .video-wrapper iframe {
      width: 100%;
      aspect-ratio: 16/9;
      display: block;
      border: none;
    }

    /* placeholder mientras no hay video */
    .video-placeholder {
      width: 100%;
      aspect-ratio: 16/9;
      background: linear-gradient(135deg, #1a0a2e, #2B123A);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 20px;
      cursor: pointer;
    }

    .play-btn {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: var(--purple);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 0 0 12px rgba(93,40,125,0.25);
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .play-btn:hover {
      transform: scale(1.1);
      box-shadow: 0 0 0 18px rgba(93,40,125,0.2);
    }

    .video-placeholder p {
      color: rgba(255,255,255,0.5);
      font-size: 0.9rem;
    }

    .video-placeholder strong {
      display: block;
      color: white;
      font-size: 1.1rem;
      margin-bottom: 4px;
    }

    .video-points {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 12px;
      max-width: 700px;
      margin: 0 auto 40px;
    }

    .video-point {
      display: flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 50px;
      padding: 8px 18px;
      font-size: 0.85rem;
      color: rgba(255,255,255,0.8);
    }

    .video-point span { color: var(--mint); font-size: 1rem; }

    /* ─── PAIN POINTS ─── */
    .pain-section {
      background: var(--purple-dark);
      color: var(--white);
    }

    .pain-section h2 { color: var(--white); }
    .pain-section h2 em { color: var(--purple-mid); }

    .pain-section .subtitle { color: rgba(255,255,255,0.7); }

    .pain-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 16px;
      margin-top: 48px;
    }

    .pain-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 16px;
      padding: 24px;
      display: flex;
      align-items: flex-start;
      gap: 16px;
    }

    .pain-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: rgba(123,79,166,0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 1.3rem;
    }

    .pain-card p {
      font-size: 0.95rem;
      color: rgba(255,255,255,0.85);
      line-height: 1.6;
    }

    /* ─── DIFFERENT ─── */
    .different-section {
      background: var(--off-white);
    }

    .different-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .different-img-placeholder {
      width: 100%;
      height: 420px;
      border-radius: 24px;
      background: linear-gradient(135deg, var(--purple-light), var(--purple-mid));
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
      color: var(--purple-dark);
      font-size: 0.875rem;
      font-weight: 500;
      border: 2px dashed var(--purple-mid);
      order: 2;
    }

    .different-content { order: 1; }

    .diff-list {
      list-style: none;
      margin-top: 32px;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .diff-list li {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      font-size: 0.975rem;
      color: var(--text-mid);
      line-height: 1.65;
    }

    .diff-check {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: var(--purple);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .diff-check svg { width: 14px; height: 14px; }

    /* ─── STORY ─── */
    .story-section {
      background: var(--white);
    }

    .story-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }

    .story-img-placeholder {
      width: 100%;
      height: 460px;
      border-radius: 24px;
      background: linear-gradient(160deg, var(--purple-light), var(--purple-mid));
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
      color: var(--purple-dark);
      font-size: 0.875rem;
      font-weight: 500;
      border: 2px dashed var(--purple-mid);
      position: relative;
    }

    .story-tag {
      position: absolute;
      bottom: 24px;
      left: 24px;
      background: var(--purple);
      color: var(--white);
      border-radius: 12px;
      padding: 12px 18px;
      font-size: 0.85rem;
      font-weight: 600;
      line-height: 1.4;
    }

    .story-content p {
      font-size: 1rem;
      color: var(--text-mid);
      line-height: 1.8;
      margin-bottom: 20px;
    }

    .story-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-top: 36px;
    }

    .stat-card {
      background: var(--purple-light);
      border-radius: 16px;
      padding: 20px;
      text-align: center;
    }

    .stat-card .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 2.2rem;
      font-weight: 700;
      color: var(--purple);
      line-height: 1;
    }

    .stat-card .stat-label {
      font-size: 0.82rem;
      color: var(--text-mid);
      margin-top: 6px;
      line-height: 1.4;
    }

    /* ─── PROGRAM ─── */
    .program-section {
      background: linear-gradient(160deg, #F3ECF7 0%, var(--off-white) 100%);
      text-align: center;
    }

    .program-section .subtitle { margin: 0 auto; }

    .program-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
      margin-top: 56px;
      text-align: left;
    }

    .program-card {
      background: var(--white);
      border-radius: 20px;
      padding: 32px;
      border: 1px solid var(--border);
      transition: box-shadow 0.2s, transform 0.2s;
    }

    .program-card:hover {
      box-shadow: 0 16px 48px rgba(123,79,166,0.12);
      transform: translateY(-4px);
    }

    .prog-icon {
      width: 56px;
      height: 56px;
      border-radius: 16px;
      background: var(--purple-light);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      margin-bottom: 20px;
    }

    .program-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 10px;
    }

    .program-card p {
      font-size: 0.92rem;
      color: var(--text-mid);
      line-height: 1.7;
    }

    /* ─── APP ─── */
    .app-section {
      background: var(--purple-dark);
      overflow: hidden;
      position: relative;
    }

    .app-section::before {
      content: '';
      position: absolute;
      top: -120px; right: -120px;
      width: 500px; height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(123,79,166,0.2) 0%, transparent 70%);
      pointer-events: none;
    }

    .app-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .app-content .subtitle { color: rgba(255,255,255,0.65); max-width: 100%; }
    .app-content h2 { color: var(--white); }
    .app-content h2 em { color: var(--purple-mid); }

    .app-features {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-top: 36px;
    }

    .app-feature {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 14px;
      padding: 18px 20px;
      transition: background 0.2s, border-color 0.2s;
    }

    .app-feature:hover {
      background: rgba(123,79,166,0.15);
      border-color: rgba(123,79,166,0.35);
    }

    .app-feat-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: rgba(123,79,166,0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      flex-shrink: 0;
    }

    .app-feat-text strong {
      display: block;
      color: var(--white);
      font-size: 0.95rem;
      font-weight: 600;
      margin-bottom: 4px;
    }

    .app-feat-text span {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.55);
      line-height: 1.5;
    }

    .app-mockup {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .phone-frame {
      width: 300px;
      background: #111;
      border-radius: 40px;
      border: 6px solid #333;
      padding: 12px 10px;
      box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
      position: relative;
    }


    .phone-screen {
      background: #1A0F2E;
      border-radius: 28px;
      overflow: hidden;
      line-height: 0;
    }

    .phone-screen img {
      width: 100%;
      display: block;
    }























    @media (max-width: 768px) {
      .app-inner { grid-template-columns: 1fr; gap: 48px; }
      .app-mockup { order: -1; }
      .phone-frame { width: 260px; }
    }

    /* ─── RESULTS ─── */
    .results-section {
      background: var(--white);
      text-align: center;
    }

    .results-section .subtitle { margin: 0 auto 56px; }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
      margin-bottom: 48px;
    }

    .testimonial-card {
      background: var(--off-white);
      border-radius: 20px;
      padding: 28px;
      text-align: left;
      border: 1px solid var(--border);
    }

    .stars { color: var(--purple); font-size: 1.1rem; margin-bottom: 14px; }

    .testimonial-card p {
      font-size: 0.95rem;
      color: var(--text-mid);
      line-height: 1.7;
      font-style: italic;
      margin-bottom: 20px;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .author-avatar {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: var(--purple-light);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      color: var(--purple);
      font-weight: 700;
      font-family: 'Playfair Display', serif;
      flex-shrink: 0;
    }

    .author-info strong {
      display: block;
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--text-dark);
    }

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

    .before-after-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
      margin-top: 48px;
    }

    .before-after-card {
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid var(--border);
    }

    .ba-placeholder {
      width: 100%;
      height: 280px;
      background: linear-gradient(135deg, var(--purple-light), var(--purple-mid));
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      color: var(--purple-dark);
      font-size: 0.8rem;
      font-weight: 500;
      border-bottom: 2px dashed var(--purple-mid);
    }

    .ba-label {
      background: var(--white);
      padding: 12px 16px;
      font-size: 0.85rem;
      color: var(--text-mid);
      font-weight: 500;
      text-align: center;
    }

    /* ─── FAQ ─── */
    .faq-section {
      background: var(--off-white);
    }

    .faq-section .container {
      display: grid;
      grid-template-columns: 1fr 1.6fr;
      gap: 64px;
      align-items: start;
    }

    .faq-intro .subtitle { max-width: 100%; }

    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .faq-item {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 14px;
      overflow: hidden;
    }

    .faq-question {
      width: 100%;
      background: none;
      border: none;
      padding: 20px 24px;
      text-align: left;
      font-size: 0.975rem;
      font-weight: 600;
      color: var(--text-dark);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      transition: color 0.2s;
      font-family: 'Inter', sans-serif;
    }

    .faq-question:hover { color: var(--purple); }

    .faq-chevron {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: var(--purple-light);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: transform 0.25s;
    }

    .faq-item.open .faq-chevron { transform: rotate(180deg); }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
      font-size: 0.92rem;
      color: var(--text-mid);
      line-height: 1.7;
      padding: 0 24px;
    }

    .faq-item.open .faq-answer {
      max-height: 300px;
      padding: 0 24px 20px;
    }

    /* ─── FINAL CTA ─── */
    .cta-section {
      background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 100%);

      text-align: center;
      padding: 100px 32px;
      position: relative;
      overflow: hidden;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      top: -100px; right: -100px;
      width: 400px; height: 400px;
      border-radius: 50%;
      background: rgba(255,255,255,0.05);
    }

    .cta-section::after {
      content: '';
      position: absolute;
      bottom: -80px; left: -80px;
      width: 300px; height: 300px;
      border-radius: 50%;
      background: rgba(255,255,255,0.04);
    }

    .cta-section h2 {
      color: var(--white);
      max-width: 720px;
      margin: 0 auto 20px;
      font-size: clamp(1.8rem, 4vw, 2.8rem);
    }

    .cta-section p {
      color: rgba(255,255,255,0.8);
      font-size: 1.05rem;
      line-height: 1.7;
      max-width: 560px;
      margin: 0 auto 44px;
    }

    .btn-white {
      display: inline-block;
      background: var(--white);
      color: var(--purple-dark);
      padding: 18px 44px;
      border-radius: 50px;
      font-size: 1rem;
      font-weight: 700;
      text-decoration: none;
      transition: all 0.2s;
      box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    }

    .btn-white:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 40px rgba(0,0,0,0.3);
    }

    .cta-note {
      margin-top: 20px;
      font-size: 0.85rem;
      color: rgba(255,255,255,0.55);
    }

    /* ─── FOOTER ─── */
    footer {
      background: var(--purple-dark);
      color: rgba(255,255,255,0.5);
      text-align: center;
      padding: 28px 32px;
      font-size: 0.82rem;
    }

    footer span { color: var(--purple-mid); }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 768px) {
      nav { padding: 14px 20px; }

      section { padding: 64px 20px; }

      .hero { padding: 80px 20px 60px; }

      .different-inner,
      .story-inner {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .different-img-placeholder { order: -1; height: 280px; }
      .story-img-placeholder { height: 300px; }

      .faq-section .container {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .story-stats { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 480px) {
      .logo { font-size: 1.2rem; }
      .nav-cta { padding: 8px 16px; font-size: 0.8rem; }
      .story-stats { grid-template-columns: 1fr; }
    }

    /* ─── FOOTER: enlaces legales y aviso ─── */
    .footer-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 8px 22px;
      margin: 18px 0 20px;
    }

    .footer-links a {
      color: var(--purple-mid);
      text-decoration: none;
      font-size: 0.82rem;
      border-bottom: 1px solid transparent;
      transition: border-color 0.2s ease;
    }

    .footer-links a:hover,
    .footer-links a:focus-visible { border-bottom-color: var(--purple-mid); }

    .footer-disclaimer {
      max-width: 720px;
      margin: 0 auto;
      font-size: 0.72rem;
      line-height: 1.65;
      color: rgba(255,255,255,0.38);
    }

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

    .skip-link {
      position: absolute;
      left: -9999px;
      top: 0;
      z-index: 999;
      background: var(--purple);
      color: #fff;
      padding: 12px 20px;
      border-radius: 0 0 10px 0;
      font-size: 0.85rem;
      font-weight: 600;
      text-decoration: none;
    }

    .skip-link:focus { left: 0; }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }
    }

    /* ─── PAGINAS LEGALES / SOPORTE ─── */
    .legal {
      max-width: 780px;
      margin: 0 auto;
      padding: 120px 24px 80px;
      color: var(--text-mid);
      font-size: 0.95rem;
      line-height: 1.75;
    }

    .legal h1 {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: clamp(2rem, 5vw, 2.8rem);
      line-height: 1.15;
      color: var(--text-dark);
      margin-bottom: 10px;
    }

    .legal .legal-meta {
      display: inline-block;
      font-size: 0.78rem;
      color: var(--text-light);
      background: var(--purple-light);
      border-radius: 50px;
      padding: 6px 16px;
      margin-bottom: 40px;
    }

    .legal h2 {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 1.4rem;
      color: var(--purple);
      margin: 44px 0 12px;
      line-height: 1.3;
    }

    .legal h3 {
      font-size: 1rem;
      color: var(--text-dark);
      margin: 26px 0 8px;
    }

    .legal p { margin-bottom: 14px; }

    .legal ul { margin: 0 0 16px 20px; }

    .legal li { margin-bottom: 8px; }

    .legal a { color: var(--purple); }

    .legal strong { color: var(--text-dark); }

    .legal table {
      width: 100%;
      border-collapse: collapse;
      margin: 16px 0 24px;
      font-size: 0.87rem;
    }

    .legal th,
    .legal td {
      border: 1px solid var(--border);
      padding: 10px 12px;
      text-align: left;
      vertical-align: top;
    }

    .legal th { background: var(--purple-light); color: var(--text-dark); font-weight: 600; }

    .legal-note {
      background: var(--purple-light);
      border-left: 4px solid var(--purple);
      border-radius: 0 12px 12px 0;
      padding: 16px 20px;
      margin: 24px 0;
      font-size: 0.88rem;
    }

    .legal-back {
      display: inline-block;
      margin-top: 48px;
      color: var(--purple);
      font-weight: 600;
      text-decoration: none;
      font-size: 0.9rem;
    }

    .legal-back:hover { text-decoration: underline; }

    /* ─── 404 ─── */
    .notfound {
      min-height: 70vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 120px 24px 80px;
      gap: 18px;
    }

    .notfound h1 {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: clamp(2.2rem, 6vw, 3.2rem);
      color: var(--text-dark);
    }

    .notfound p { color: var(--text-mid); max-width: 460px; }

    @media (max-width: 768px) {
      .legal { padding: 100px 20px 64px; }
      .legal table { display: block; overflow-x: auto; }
    }
