:root {
    --cream: #EEF0FF;
    --warm-white: #F5F4FF;
    --ink: #1E1A3C;
    --brown: #3D2E8A;
    --amber: #f1ab1e;
    --amber-light: #f9c74f;
    --green: #3DB87A;
    --green-light: #62D99A;
    --red-soft: #E84040;
    --gray-soft: #6B6B6B;
    --border: #D5D0F0;
    --shadow: rgba(91, 79, 207, 0.14);
    --purple: #5B4FCF;
    --purple-dark: #3D2E8A;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--ink);
    font-size: 17px;
    line-height: 1.7;
  }

  .urgency-bar {
    background: var(--amber);
    color: #fff;
    text-align: center;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
  }

  /* HERO */
  .hero {
    background: var(--purple);
    color: #fff;
    padding: 64px 24px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,216,77,0.18) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-badge {
    display: inline-block;
    background: var(--amber);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 100px;
    margin-bottom: 28px;
  }
  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 5.5vw, 58px);
    line-height: 1.15;
    max-width: 820px;
    margin: 0 auto 24px;
  }
  .hero-sub {
    font-size: clamp(16px, 2vw, 20px);
    color: #F0EDFF;
    max-width: 620px;
    margin: 0 auto 40px;
  }
  .btn-primary {
    display: inline-block;
    background: var(--amber);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 18px 48px;
    border-radius: 8px;
    text-decoration: none;
    transition: background .2s, transform .15s;
    box-shadow: 0 6px 24px rgba(212,112,10,0.35);
  }
  .btn-primary:hover { background: #B85D08; transform: translateY(-2px); }
  .hero-proof {
    margin-top: 36px;
    font-size: 14px;
    color: #F0ECFF;
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
  }
  .hero-proof span::before { content: '✓ '; color: var(--amber-light); font-weight: 700; }

  /* SECTIONS */
  .section { padding: 80px 24px; }
  .section-inner { max-width: 780px; margin: 0 auto; }
  .section-inner.wide { max-width: 960px; }
  .section-alt { background: var(--warm-white); }
  .section-dark { background: var(--ink); color: var(--cream); }

  .section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 16px;
  }
  h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 4vw, 42px);
    line-height: 1.2;
    margin-bottom: 24px;
  }
  h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(20px, 3vw, 28px);
    margin-bottom: 12px;
    line-height: 1.3;
  }
  p { margin-bottom: 18px; }
  p:last-child { margin-bottom: 0; }
  .divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--purple), transparent);
    margin: 0 auto 48px;
    max-width: 120px;
  }
  .arrow-divider { text-align: center; font-size: 28px; padding: 8px 0; opacity: .5; }

  /* PAIN */
  .belief-box {
    background: #fff;
    border-radius: 14px;
    padding: 36px 40px;
    text-align: center;
    box-shadow: 0 2px 16px var(--shadow);
    margin-bottom: 40px;
  }
  .belief-quote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(22px, 3.5vw, 32px);
    font-style: italic;
    color: var(--brown);
    line-height: 1.4;
    margin-bottom: 8px;
  }
  .belief-sub { font-size: 15px; color: var(--gray-soft); }
  .pain-list { list-style: none; margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
  .pain-list li {
    display: flex;
    gap: 14px;
    background: #fff;
    padding: 18px 22px;
    border-radius: 10px;
    border-left: 4px solid var(--red-soft);
    box-shadow: 0 2px 12px var(--shadow);
    font-size: 16px;
    align-items: center;
    font-weight: 500;
  }

  /* PHASES */
  .phases { display: flex; flex-direction: column; gap: 0; margin-top: 40px; }
  .phase { display: flex; gap: 24px; padding: 28px 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
  .phase:last-child { border-bottom: none; }
  .phase-num {
    background: var(--purple);
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 900;
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
  }
  .phase h4 { font-weight: 700; font-size: 18px; margin-bottom: 6px; color: var(--ink); }
  .phase p { color: var(--gray-soft); font-size: 15px; margin: 0; }

  /* RESULTS */
  .results-list { list-style: none; margin-top: 32px; display: flex; flex-direction: column; gap: 14px; }
  .results-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 17px; }
  .results-list li span:first-child { font-size: 22px; flex-shrink: 0; }

  /* BENEFITS */
  .benefit-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 8px;
    margin-top: 32px;
  }
  .benefit-grid::-webkit-scrollbar { display: none; }
  .benefit-card {
    flex: 0 0 calc(50% - 10px);
    scroll-snap-align: start;
  }
  @media (max-width: 600px) {
    .benefit-card { flex: 0 0 80%; }
  }
  .benefit-card {
    background: #fff;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 2px 12px var(--shadow);
    border-bottom: 3px solid var(--purple);
    text-align: center;
    flex: 0 0 calc(50% - 10px);
    scroll-snap-align: start;
  }
  @media (max-width: 600px) { .benefit-card { flex: 0 0 80%; } }
  .benefit-icon { font-size: 36px; margin-bottom: 14px; }
  .benefit-card h4 { font-weight: 700; font-size: 17px; margin-bottom: 8px; }
  .benefit-card p { color: var(--gray-soft); font-size: 15px; margin: 0; }

  /* TESTIMONIALS */
  .testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-top: 40px; }
  .testimonial {
    background: #fff;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 2px 16px var(--shadow);
    position: relative;
  }
  .testimonial::before {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    line-height: 1;
    color: var(--amber-light);
    position: absolute;
    top: 8px; left: 20px;
    opacity: .25;
  }
  .testimonial p { font-size: 15px; color: var(--gray-soft); margin-bottom: 16px; padding-top: 20px; }
  .testimonial-author { font-weight: 700; font-size: 14px; color: var(--ink); }
  .testimonial-role { font-size: 13px; color: var(--gray-soft); }
  .stars { color: #F59E3A; font-size: 14px; margin-bottom: 8px; }

  /* CAROUSEL PLACEHOLDER */
  .carousel-placeholder {
    background: #F0EBE3;
    border: 2px dashed var(--border);
    border-radius: 14px;
    padding: 60px 24px;
    text-align: center;
    margin: 40px 0;
    color: var(--gray-soft);
  }
  .carousel-placeholder .ph-icon { font-size: 40px; margin-bottom: 12px; }
  .carousel-placeholder p { font-size: 15px; margin: 0; }

  /* HOW TO USE */
  .how-grid { display: flex; flex-direction: column; gap: 24px; margin-top: 40px; max-width: 480px; margin-left: auto; margin-right: auto; }
  .how-card { background: #fff; border-radius: 12px; padding: 28px 24px; text-align: center; box-shadow: 0 2px 12px var(--shadow); }
  .how-icon { font-size: 36px; margin-bottom: 14px; }
  .how-card h4 { font-weight: 700; font-size: 16px; margin-bottom: 8px; }
  .how-card p { color: var(--gray-soft); font-size: 14px; margin: 0; }

  /* FAQ */
  .faq-item { border-bottom: 1px solid var(--border); padding: 24px 0; }
  .faq-item:first-child { border-top: 1px solid var(--border); }
  .faq-q { font-weight: 700; font-size: 17px; color: var(--ink); margin-bottom: 10px; }
  .faq-q::before { content: '🤔  '; }
  .faq-a { color: var(--gray-soft); font-size: 16px; }

  /* OFFER */
  .offer-box {
    background: #fff;
    border-radius: 20px;
    padding: 48px;
    box-shadow: 0 8px 48px rgba(92,61,30,0.15);
    text-align: center;
    border-top: 6px solid var(--amber);
    max-width: 640px;
    margin: 0 auto;
  }
  .offer-tag {
    display: inline-block;
    background: #FEF3E7;
    color: var(--amber);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
  }
  .offer-price-old { font-size: 16px; color: var(--gray-soft); text-decoration: line-through; }
  .offer-price {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 900;
    color: var(--purple);
    line-height: 1;
    margin: 8px 0;
  }
  .offer-price sup { font-size: 30px; vertical-align: super; }
  .offer-price-installment { font-size: 15px; color: var(--gray-soft); margin-bottom: 32px; }
  .offer-includes {
    text-align: left;
    background: #F9F5EF;
    border-radius: 10px;
    padding: 20px 24px;
    margin: 24px 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .offer-includes li { font-size: 15px; display: flex; gap: 10px; align-items: flex-start; }
  .offer-includes li::before { content: ''; }
  .offer-bonus-title { font-weight: 700; font-size: 16px; margin: 24px 0 12px; color: var(--brown); text-align: left; }
  .offer-bonus-list { text-align: left; list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 10px; }
  .offer-bonus-list li {
    font-size: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: #FFFDF9;
    border-radius: 8px;
    border: 1px solid var(--border);
  }
  .bonus-price { font-size: 13px; color: var(--gray-soft); white-space: nowrap; text-decoration: line-through; }
  .btn-cta {
    display: block;
    background: var(--green);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    padding: 22px 40px;
    border-radius: 10px;
    text-decoration: none;
    transition: background .2s, transform .15s;
    box-shadow: 0 8px 24px rgba(61,184,122,0.35);
    margin-bottom: 12px;
  }
  .btn-cta:hover { background: #2A9463; transform: translateY(-2px); }
  .offer-secure { font-size: 13px; color: var(--gray-soft); margin-bottom: 20px; }
  .offer-guarantee {
    font-size: 14px;
    color: var(--gray-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
  }

  footer {
    background: var(--ink);
    color: #6B6B6B;
    text-align: center;
    padding: 40px 24px;
    font-size: 14px;
  }
  footer a { color: #6B6B6B; text-decoration: underline; }

  @media (max-width: 600px) {
    .section { padding: 56px 20px; }
    .offer-box { padding: 32px 20px; }
    .belief-box { padding: 28px 24px; }
    .offer-price { font-size: 52px; }
  }

  @media (max-width: 640px) {
    .two-col-grid { grid-template-columns: 1fr !important; }
  }
  @media (max-width: 720px) {
    .three-col { grid-template-columns: 1fr !important; }
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero h1 { animation: fadeUp .7s ease .1s both; }
  .hero-sub { animation: fadeUp .7s ease .25s both; }
  .hero .btn-primary { animation: fadeUp .7s ease .4s both; }
  .hero-proof { animation: fadeUp .7s ease .55s both; }

  /* FIXED CTA BUTTON */
  .fixed-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--purple-dark);
    padding: 16px 24px;
    text-align: center;
    box-shadow: 0 -4px 24px rgba(91,79,207,0.35);
    transform: translateY(100%);
    transition: transform .4s cubic-bezier(.22,.61,.36,1);
  }
  .fixed-cta.visible { transform: translateY(0); }
  .fixed-cta-inner {
    display: block;
    background: var(--amber);
    border-radius: 12px;
    padding: 14px 32px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(212,112,10,0.35);
    max-width: 480px;
    margin: 0 auto;
    transition: background .2s, transform .15s;
    text-decoration: none;
    color: #fff;
  }
  .fixed-cta-inner:hover { background: #B85D08; transform: translateY(-2px); }
  .fixed-cta a {
    display: block;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: .01em;
    line-height: 1.3;
  }
  .fixed-cta-title {
    display: block;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: .01em;
    margin-bottom: 2px;
  }
  .fixed-cta .cta-sub {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    margin-top: 4px;
  }
  @media (max-width: 600px) {
    .fixed-cta a { font-size: 16px; }
  }



      .test-carousel { position: relative; overflow: hidden; }
      .test-track {
        display: flex;
        transition: transform .5s ease;
      }
      .test-slide {
        flex: 0 0 100%;
        padding: 0 8px;
        box-sizing: border-box;
      }
      .test-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        margin-top: 24px;
      }
      .test-btn {
        background: transparent;
        border: 1px solid var(--border);
        color: var(--gray-soft);
        width: 36px; height: 36px;
        border-radius: 50%;
        font-size: 16px;
        cursor: pointer;
        display: flex; align-items: center; justify-content: center;
        transition: border-color .2s, color .2s;
      }
      .test-btn:hover { border-color: var(--amber); color: var(--amber); }
      .test-dots { display: flex; gap: 6px; }
      .test-dot {
        width: 7px; height: 7px;
        border-radius: 50%;
        background: var(--border);
        cursor: pointer;
        transition: background .2s;
      }
      .test-dot.active { background: var(--amber); }
    


      .auto-carousel-wrap {
        overflow: hidden;
        border-radius: 16px;
        position: relative;
        cursor: grab;
      }
      .auto-carousel-wrap:active { cursor: grabbing; }
      .auto-carousel-track {
        display: flex;
        gap: 16px;
        will-change: transform;
      }
      .auto-carousel-slide {
        flex-shrink: 0;
        border-radius: 12px;
        overflow: hidden;
        width: calc(50% - 8px);
      }
      .auto-carousel-slide img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 12px;
      }
      @media (max-width: 600px) {
        .auto-carousel-slide { width: 82%; }
      }
    


      details.faq-accordion { border-bottom: 1px solid var(--border); }
      details.faq-accordion:first-of-type { border-top: 1px solid var(--border); }
      details.faq-accordion summary {
        list-style: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 22px 0;
        font-weight: 700;
        font-size: 17px;
        cursor: pointer;
        color: var(--ink);
        gap: 16px;
      }
      details.faq-accordion summary::-webkit-details-marker { display: none; }
      details.faq-accordion summary::after {
        content: '+';
        font-size: 24px;
        font-weight: 300;
        color: var(--amber);
        flex-shrink: 0;
        transition: transform .2s;
      }
      details.faq-accordion[open] summary::after {
        content: '−';
      }
      details.faq-accordion .faq-a {
        color: var(--gray-soft);
        font-size: 16px;
        padding-bottom: 22px;
        line-height: 1.7;
      }
    
  /* FIXED CTA BUTTON */
  .fixed-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--purple-dark);
    padding: 16px 24px;
    text-align: center;
    box-shadow: 0 -4px 24px rgba(91,79,207,0.35);
    transform: translateY(100%);
    transition: transform .4s cubic-bezier(.22,.61,.36,1);
  }
  .fixed-cta.visible { transform: translateY(0); }
  .fixed-cta-inner {
    display: block;
    background: var(--amber);
    border-radius: 12px;
    padding: 14px 32px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(212,112,10,0.35);
    max-width: 480px;
    margin: 0 auto;
    transition: background .2s, transform .15s;
    text-decoration: none;
    color: #fff;
  }
  .fixed-cta-inner:hover { background: #B85D08; transform: translateY(-2px); }
  .fixed-cta a {
    display: block;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: .01em;
    line-height: 1.3;
  }
  .fixed-cta-title {
    display: block;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: .01em;
    margin-bottom: 2px;
  }
  .fixed-cta .cta-sub {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    margin-top: 4px;
  }
  @media (max-width: 600px) {
    .fixed-cta a { font-size: 16px; }
  }