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

  :root {
    --cream: #FBF7F0;
    --warm-white: #FFFDF9;
    --sage: #6B8F71;
    --sage-dark: #4A6850;
    --sage-light: #C8DDC9;
    --sage-xlight: #EAF2EB;
    --terracotta: #C4714E;
    --terracotta-light: #F5E8E1;
    --gold: #C9973A;
    --gold-light: #FDF3E0;
    --charcoal: #2C2C2A;
    --mid: #5A5955;
    --soft: #9A9893;
    --border: #E8E3DA;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--charcoal);
    line-height: 1.7;
    overflow-x: hidden;
  }

  /* ── ANNOUNCEMENT BAR ── */
  .topbar {
    background: var(--sage);
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.03em;
  }
  .topbar strong { color: #D4EDCF; }

  /* ── HERO ── */
  .hero {
    background: var(--warm-white);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    position: relative;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -150px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: var(--sage-xlight);
    opacity: 0.5;
    pointer-events: none;
  }
  .hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -100px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: var(--terracotta-light);
    opacity: 0.4;
    pointer-events: none;
  }

  .hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 70px 40px 80px;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--sage-xlight);
    border: 1px solid var(--sage-light);
    color: var(--sage-dark);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 22px;
  }
  .hero-badge::before {
    content: '';
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--sage);
  }

  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(38px, 5vw, 58px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--charcoal);
    margin-bottom: 8px;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--sage-dark);
  }
  .hero-subtitle {
    font-size: 19px;
    color: var(--mid);
    margin-bottom: 30px;
    font-weight: 300;
    line-height: 1.6;
  }
  .hero-subtitle strong { color: var(--charcoal); font-weight: 600; }

  .hero-checks {
    list-style: none;
    margin-bottom: 36px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .hero-checks li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--charcoal);
  }
  .hero-checks li::before {
    content: '✓';
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--sage);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .cta-primary {
    display: inline-block;
    background: var(--sage);
    color: #fff;
    padding: 18px 40px;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    border: none;
    cursor: pointer;
    letter-spacing: 0.01em;
  }
  .cta-primary:hover { background: var(--sage-dark); transform: translateY(-2px); }
  .cta-primary span { font-size: 12px; display: block; font-weight: 400; opacity: 0.85; margin-top: 3px; }

  .price-hint {
    margin-top: 14px;
    font-size: 13px;
    color: var(--soft);
  }
  .price-hint strong { color: var(--terracotta); font-size: 16px; }

  /* BOOK MOCKUP */
  .hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .book-cover {
    width: 280px;
    height: 360px;
    background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
    border-radius: 6px 14px 14px 6px;
    padding: 30px 28px;
    color: #fff;
    box-shadow: -6px 10px 30px rgba(0,0,0,0.22), 4px 4px 0 rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    animation: floatBook 4s ease-in-out infinite;
  }
  @keyframes floatBook {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }
  .book-cover::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
  }
  .book-cover::after {
    content: '';
    position: absolute;
    bottom: -40px; left: -40px;
    width: 150px; height: 150px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
  }
  .book-spine {
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 22px;
    background: rgba(0,0,0,0.2);
    border-radius: 6px 0 0 6px;
  }
  .book-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.75;
    margin-left: 22px;
  }
  .book-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    margin-left: 22px;
    position: relative;
    z-index: 1;
  }
  .book-author {
    font-size: 11px;
    opacity: 0.8;
    margin-left: 22px;
    font-weight: 500;
    position: relative;
    z-index: 1;
  }
  .book-icon {
    font-size: 60px;
    text-align: center;
    margin: 10px 0;
    opacity: 0.15;
  }

  .social-proof-mini {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 8px 18px 8px 10px;
    width: fit-content;
  }
  .avatars { display: flex; }
  .avatars div {
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -6px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
  }
  .avatars div:first-child { margin-left: 0; background: var(--sage); }
  .avatars div:nth-child(2) { background: var(--terracotta); }
  .avatars div:nth-child(3) { background: var(--gold); }
  .social-proof-mini span { font-size: 12px; color: var(--mid); font-weight: 500; }
  .social-proof-mini strong { color: var(--charcoal); }

  /* ── SECTION GENERIC ── */
  section { padding: 80px 20px; }
  .container { max-width: 1100px; margin: 0 auto; }
  .section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 12px;
  }
  h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--charcoal);
    margin-bottom: 18px;
  }
  h2 em { font-style: italic; color: var(--sage-dark); }

  /* ── DOR / PROBLEMA ── */
  .pain {
    background: var(--charcoal);
    color: #fff;
  }
  .pain h2 { color: #fff; }
  .pain h2 em { color: var(--sage-light); }
  .pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 48px;
  }
  .pain-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 28px 26px;
  }
  .pain-icon { font-size: 28px; margin-bottom: 14px; }
  .pain-card h3 { font-size: 17px; font-weight: 600; color: #fff; margin-bottom: 8px; }
  .pain-card p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.6; }

  /* ── PARA QUEM É ── */
  .forwhom { background: var(--warm-white); }
  .forwhom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 44px;
  }
  .forwhom-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
  }
  .forwhom-card .emoji { font-size: 32px; margin-bottom: 12px; display: block; }
  .forwhom-card h3 { font-size: 15px; font-weight: 600; color: var(--charcoal); margin-bottom: 6px; }
  .forwhom-card p { font-size: 13px; color: var(--mid); line-height: 1.5; }

  /* ── O QUE VOCÊ VAI APRENDER ── */
  .learn { background: var(--sage-xlight); }
  .learn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
    margin-top: 44px;
  }
  .learn-item {
    background: #fff;
    border-radius: 10px;
    padding: 22px 20px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    border: 1px solid var(--sage-light);
  }
  .learn-num {
    width: 34px; height: 34px;
    background: var(--sage);
    color: #fff;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .learn-item h3 { font-size: 15px; font-weight: 600; color: var(--charcoal); margin-bottom: 4px; }
  .learn-item p { font-size: 13px; color: var(--mid); line-height: 1.5; }

  /* ── RESULTADO ── */
  .result { background: var(--warm-white); }
  .result-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 48px;
    align-items: center;
  }
  .result-before-after {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
  }
  .ba-label {
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .ba-before .ba-label { background: #FEF2F2; color: #B91C1C; }
  .ba-after .ba-label { background: var(--sage-xlight); color: var(--sage-dark); }
  .ba-content { padding: 20px; }
  .ba-content ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
  .ba-content ul li { font-size: 14px; color: var(--charcoal); display: flex; gap: 10px; }
  .ba-before .ba-content ul li::before { content: '✗'; color: #DC2626; font-weight: 700; }
  .ba-after .ba-content ul li::before { content: '✓'; color: var(--sage); font-weight: 700; }
  .divider-ba { height: 1px; background: var(--border); }

  .result-text p { font-size: 17px; color: var(--mid); line-height: 1.8; margin-bottom: 16px; }
  .result-text p strong { color: var(--charcoal); font-weight: 600; }
  .result-stat {
    display: flex;
    gap: 28px;
    margin-top: 28px;
  }
  .stat-box {
    text-align: center;
    padding: 20px;
    background: var(--sage-xlight);
    border-radius: 12px;
    border: 1px solid var(--sage-light);
    flex: 1;
  }
  .stat-box .big { font-family: 'Playfair Display', serif; font-size: 34px; font-weight: 700; color: var(--sage-dark); }
  .stat-box small { font-size: 12px; color: var(--mid); display: block; margin-top: 4px; }

  /* ── BÔNUS ── */
  .bonus { background: var(--terracotta-light); }
  .bonus h2 em { color: var(--terracotta); }
  .bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 44px;
  }
  .bonus-card {
    background: #fff;
    border: 1px solid rgba(196, 113, 78, 0.2);
    border-radius: 14px;
    padding: 28px 24px;
    position: relative;
  }
  .bonus-tag {
    position: absolute;
    top: -11px;
    left: 20px;
    background: var(--terracotta);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
  }
  .bonus-card .book-mini {
    width: 48px; height: 62px;
    border-radius: 3px 8px 8px 3px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
  }
  .bonus-card h3 { font-size: 16px; font-weight: 600; color: var(--charcoal); margin-bottom: 6px; }
  .bonus-card p { font-size: 13px; color: var(--mid); line-height: 1.5; }
  .bonus-value { margin-top: 14px; font-size: 12px; color: var(--soft); }
  .bonus-value span { font-weight: 700; color: var(--terracotta); font-size: 14px; text-decoration: line-through; }

  /* ── AUTORA ── */
  .author { background: var(--warm-white); }
  .author-inner {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 60px;
    align-items: center;
  }
  .author-photo-wrap {
    position: relative;
  }
  .author-photo {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--sage-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    overflow: hidden;
    position: relative;
  }
  .author-photo-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--sage-xlight) 0%, var(--sage-light) 100%);
  }
  .author-photo-initial {
    position: relative;
    z-index: 1;
    font-family: 'Playfair Display', serif;
    font-size: 100px;
    color: var(--sage);
    opacity: 0.3;
    font-weight: 900;
  }
  .author-quote {
    position: absolute;
    bottom: 24px;
    left: -20px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 18px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    max-width: 220px;
  }
  .author-quote p { font-size: 13px; color: var(--mid); font-style: italic; line-height: 1.5; }
  .author-quote strong { font-size: 12px; color: var(--sage-dark); font-weight: 600; font-style: normal; display: block; margin-top: 6px; }
  .author-creds {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0 28px;
  }
  .cred-badge {
    background: var(--sage-xlight);
    border: 1px solid var(--sage-light);
    color: var(--sage-dark);
    font-size: 12px;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 100px;
  }
  .author h2 { margin-bottom: 12px; }
  .author p { font-size: 16px; color: var(--mid); line-height: 1.8; margin-bottom: 14px; }

  /* ── DEPOIMENTOS ── */
  .testimonials { background: var(--cream); }
  .test-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 44px;
  }
  .test-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px 24px;
  }
  .stars { color: var(--gold); font-size: 15px; margin-bottom: 14px; letter-spacing: 2px; }
  .test-card p { font-size: 15px; color: var(--charcoal); line-height: 1.7; font-style: italic; margin-bottom: 18px; }
  .test-author { display: flex; align-items: center; gap: 12px; }
  .test-avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 700; color: #fff;
  }
  .test-name { font-size: 14px; font-weight: 600; color: var(--charcoal); }
  .test-role { font-size: 12px; color: var(--soft); }

  /* ── OFERTA / PREÇO ── */
  .offer {
    background: var(--charcoal);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .offer::before {
    content: '';
    position: absolute;
    top: -80px; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 600px;
    border-radius: 50%;
    background: rgba(107, 143, 113, 0.08);
    pointer-events: none;
  }
  .offer h2 { color: #fff; margin-bottom: 10px; }
  .offer h2 em { color: var(--sage-light); }
  .offer-sub { font-size: 17px; color: rgba(255,255,255,0.6); margin-bottom: 48px; }

  .offer-box {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 48px 40px;
    max-width: 520px;
    margin: 0 auto;
    position: relative;
  }
  .offer-badge-main {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--terracotta);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 20px;
    border-radius: 100px;
    white-space: nowrap;
  }
  .price-block { margin: 20px 0 32px; }
  .price-from { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
  .price-main {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
  }
  .price-main sup { font-size: 30px; vertical-align: top; margin-top: 12px; font-weight: 400; }
  .price-detail { font-size: 14px; color: rgba(255,255,255,0.5); margin-top: 4px; }
  .includes-list {
    list-style: none;
    text-align: left;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .includes-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
  }
  .includes-list li::before {
    content: '✓';
    width: 20px; height: 20px;
    border-radius: 50%;
    background: var(--sage);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .cta-big {
    display: block;
    background: var(--sage);
    color: #fff;
    padding: 20px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    margin-bottom: 14px;
    letter-spacing: 0.01em;
  }
  .cta-big:hover { background: var(--sage-dark); transform: translateY(-2px); }
  .security-note { font-size: 12px; color: rgba(255,255,255,0.4); display: flex; justify-content: center; align-items: center; gap: 6px; }
  .security-note::before { content: '🔒'; font-size: 12px; }

  /* ── GARANTIA ── */
  .guarantee { background: var(--gold-light); }
  .guarantee-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: center;
    max-width: 700px;
    margin: 0 auto;
  }
  .guarantee-seal {
    width: 130px; height: 130px;
    border-radius: 50%;
    background: var(--gold);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-shrink: 0;
    border: 4px dashed rgba(255,255,255,0.5);
    outline: 4px solid var(--gold);
  }
  .guarantee-seal .days { font-family: 'Playfair Display', serif; font-size: 38px; font-weight: 900; line-height: 1; }
  .guarantee-seal small { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.9; line-height: 1.3; margin-top: 2px; }
  .guarantee h3 { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: var(--charcoal); margin-bottom: 8px; }
  .guarantee p { font-size: 15px; color: var(--mid); line-height: 1.7; }

  /* ── FAQ ── */
  .faq { background: var(--warm-white); }
  .faq-list { max-width: 700px; margin: 44px auto 0; }
  .faq-item { border-bottom: 1px solid var(--border); }
  .faq-q {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 20px 0;
    text-align: left;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--charcoal);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }
  .faq-q:hover { color: var(--sage-dark); }
  .faq-arrow { font-size: 18px; transition: transform 0.25s; flex-shrink: 0; color: var(--sage); }
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .faq-a p { font-size: 15px; color: var(--mid); line-height: 1.7; padding-bottom: 20px; }
  .faq-item.open .faq-arrow { transform: rotate(180deg); }
  .faq-item.open .faq-a { max-height: 300px; }

  /* ── CTA FINAL ── */
  .cta-final {
    background: var(--sage);
    text-align: center;
    padding: 80px 20px;
  }
  .cta-final h2 { color: #fff; font-size: clamp(26px, 4vw, 40px); margin-bottom: 14px; }
  .cta-final p { color: rgba(255,255,255,0.75); font-size: 17px; max-width: 540px; margin: 0 auto 36px; }
  .cta-white {
    display: inline-block;
    background: #fff;
    color: var(--sage-dark);
    padding: 18px 44px;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.15s;
  }
  .cta-white:hover { transform: translateY(-2px); }

  /* ── FOOTER ── */
  footer {
    background: var(--charcoal);
    color: rgba(255,255,255,0.45);
    text-align: center;
    padding: 30px 20px;
    font-size: 13px;
  }
  footer a { color: rgba(255,255,255,0.5); text-decoration: none; }

  /* ── STICKY CTA MOBILE ── */
  .sticky-cta {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--charcoal);
    padding: 12px 20px;
    z-index: 100;
    border-top: 2px solid var(--sage);
    justify-content: space-between;
    align-items: center;
    gap: 14px;
  }
  .sticky-cta span { color: rgba(255,255,255,0.7); font-size: 13px; }
  .sticky-cta strong { color: #fff; font-size: 16px; }
  .sticky-cta a {
    background: var(--sage);
    color: #fff;
    padding: 12px 22px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 860px) {
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { order: -1; }
    .result-cols { grid-template-columns: 1fr; }
    .author-inner { grid-template-columns: 1fr; }
    .author-photo { max-height: 280px; }
    .guarantee-inner { grid-template-columns: 1fr; text-align: center; }
    .guarantee-seal { margin: 0 auto; }
    .sticky-cta { display: flex; }
    body { padding-bottom: 70px; }
    section { padding: 60px 20px; }
    .hero-inner { padding: 50px 20px 60px; }
    .offer-box { padding: 40px 24px; }
  }

  @media (max-width: 560px) {
    .book-cover { width: 220px; height: 290px; }
    .forwhom-grid { grid-template-columns: 1fr 1fr; }
    .result-stat { gap: 12px; }
    .stat-box .big { font-size: 26px; }
  }

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