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

  :root {
    --cream: #FAF6F0;
    --cream-dark: #F0E8D8;
    --terracotta: #C4714A;
    --terracotta-light: #E8A886;
    --terracotta-dark: #8B4A28;
    --sage: #7A9E7E;
    --sage-light: #B2CDB5;
    --sage-dark: #3D6B42;
    --ink: #2A2420;
    --ink-light: #5C4F44;
    --muted: #8B7D70;
    --white: #FFFDF9;
    --border: rgba(42,36,32,0.1);
    --lavender: #9B8EC4;
  }

  html { scroll-behavior: smooth; scroll-padding-top: 90px; }
  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--ink);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.25rem 5%;
    background: rgba(250,246,240,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s;
  }
  .nav-logo {
    display: flex; flex-direction: row; align-items: center; gap: 0.6rem; line-height: 1.1; text-decoration: none;
  }
  .nav-logo-img {
    width: 42px; height: 42px; border-radius: 50%; object-fit: cover;
  }
  .nav-logo-script {
    font-family: 'Dancing Script', cursive;
    font-size: 1.35rem;
    color: var(--terracotta);
  }
  .nav-logo-sub {
    display: none;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
  }
  .nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
  .nav-links a {
    font-size: 0.83rem; font-weight: 500; color: var(--ink-light);
    text-decoration: none; letter-spacing: 0.5px; text-transform: uppercase; transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--terracotta); }
  .nav-cta { background: var(--terracotta); color: var(--white) !important; padding: 0.6rem 1.4rem; border-radius: 50px; transition: background 0.2s !important; }
  .nav-cta:hover { background: var(--terracotta-dark) !important; }

  /* ── BUTTONS ── */
  .btn-primary {
    background: var(--terracotta); color: var(--white); padding: 0.9rem 2rem;
    border-radius: 50px; font-size: 0.9rem; font-weight: 500; text-decoration: none;
    transition: all 0.25s; border: none; cursor: pointer; letter-spacing: 0.3px; display: inline-block;
  }
  .btn-primary:hover { background: var(--terracotta-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(196,113,74,0.3); }
  .btn-outline {
    background: transparent; color: var(--terracotta); padding: 0.9rem 2rem;
    border-radius: 50px; font-size: 0.9rem; font-weight: 500; text-decoration: none;
    border: 1.5px solid var(--terracotta); transition: all 0.25s; cursor: pointer; letter-spacing: 0.3px; display: inline-block;
  }
  .btn-outline:hover { background: var(--terracotta); color: var(--white); transform: translateY(-2px); }
  .btn-sage {
    background: var(--sage); color: var(--white); padding: 0.9rem 2rem;
    border-radius: 50px; font-size: 0.9rem; font-weight: 500; text-decoration: none;
    transition: all 0.25s; border: none; cursor: pointer; letter-spacing: 0.3px; display: inline-block;
  }
  .btn-sage:hover { background: var(--sage-dark); transform: translateY(-2px); }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: grid; grid-template-columns: 1fr 1fr;
    align-items: center; padding: 8rem 5% 4rem; gap: 4rem;
    position: relative; overflow: hidden;
  }
  .hero::before {
    content: ''; position: absolute; top: -10%; right: -5%;
    width: 55vw; height: 55vw; border-radius: 50%;
    background: radial-gradient(circle, #E8A88630 0%, transparent 70%); pointer-events: none;
  }
  .hero::after {
    content: ''; position: absolute; bottom: 5%; left: -5%;
    width: 30vw; height: 30vw; border-radius: 50%;
    background: radial-gradient(circle, #B2CDB530 0%, transparent 70%); pointer-events: none;
  }
  .hero-eyebrow {
    font-family: 'Dancing Script', cursive; font-size: 1.3rem; color: var(--sage-dark);
    margin-bottom: 1rem; opacity: 0; animation: fadeUp 0.8s 0.1s forwards;
  }
  .hero h1 {
    font-family: 'Cormorant Garamond', serif; font-size: clamp(2.8rem, 4.5vw, 5rem);
    font-weight: 300; line-height: 1.08; letter-spacing: -1px; color: var(--ink);
    margin-bottom: 1.5rem; opacity: 0; animation: fadeUp 0.8s 0.25s forwards;
  }
  .hero h1 em { font-style: italic; color: var(--terracotta); }
  .hero-sub {
    font-size: 1.05rem; line-height: 1.75; color: var(--ink-light);
    max-width: 480px; margin-bottom: 2rem; opacity: 0; animation: fadeUp 0.8s 0.4s forwards;
  }
  .hero-chips {
    display: flex; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 2.5rem;
    opacity: 0; animation: fadeUp 0.8s 0.48s forwards;
  }
  .chip {
    background: var(--cream-dark); border: 1px solid var(--border);
    border-radius: 50px; padding: 0.4rem 1rem; font-size: 0.8rem; color: var(--ink-light);
    display: flex; align-items: center; gap: 0.4rem;
  }
  .chip-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sage); }
  .hero-btns {
    display: flex; gap: 1rem; flex-wrap: wrap;
    opacity: 0; animation: fadeUp 0.8s 0.55s forwards;
  }
  .hero-visual {
    position: relative; display: flex; align-items: center; justify-content: center;
    opacity: 0; animation: fadeIn 1.2s 0.3s forwards;
  }
  .hero-img-wrap {
    width: 100%; max-width: 460px; aspect-ratio: 4/5;
    border-radius: 60% 40% 55% 45% / 45% 55% 45% 55%;
    overflow: hidden;
    background: linear-gradient(145deg, #D6E8D8 0%, #7A9E7E 55%, #C4A35A 100%);
    position: relative;
  }
  .hero-img-placeholder {
    width: 100%; height: 100%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 1rem; padding: 2rem;
  }
  .hero-img-placeholder p {
    font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-style: italic;
    color: var(--white); text-align: center; line-height: 1.5; opacity: 0.85;
  }
  .hero-badge-1 {
    position: absolute; bottom: 2rem; left: -2rem;
    background: var(--white); border-radius: 20px; padding: 1rem 1.4rem;
    box-shadow: 0 12px 40px rgba(42,36,32,0.12);
    display: flex; align-items: center; gap: 0.75rem;
  }
  .badge-icon { width: 40px; height: 40px; background: var(--sage-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
  .badge-num { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 600; color: var(--ink); line-height: 1; }
  .badge-label { font-size: 0.72rem; color: var(--muted); margin-top: 2px; }
  .hero-badge-2 {
    position: absolute; top: 2rem; right: -1.5rem;
    background: var(--terracotta); border-radius: 20px; padding: 0.9rem 1.2rem;
    box-shadow: 0 12px 40px rgba(196,113,74,0.3);
  }
  .badge2-num { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 600; color: var(--white); line-height: 1; }
  .badge2-label { font-size: 0.72rem; color: rgba(255,255,255,0.8); margin-top: 2px; }

  /* ── SECTION COMMONS ── */
  section { padding: 6rem 5%; }
  .section-eyebrow { font-family: 'Dancing Script', cursive; font-size: 1.2rem; color: var(--sage-dark); margin-bottom: 0.5rem; }
  .section-title {
    font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 300; line-height: 1.15; letter-spacing: -0.5px; color: var(--ink);
    max-width: 700px; margin-bottom: 1rem;
  }
  .section-title em { font-style: italic; color: var(--terracotta); }
  .section-desc { font-size: 1rem; line-height: 1.75; color: var(--ink-light); max-width: 560px; margin-bottom: 3rem; }

  /* ── WHAT YOU GET (PROGRAM SECTION) ── */
  .program-section { background: var(--cream-dark); }
  .program-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
  .program-card {
    background: var(--ink); border-radius: 28px; padding: 3rem;
    color: var(--cream); position: relative; overflow: hidden;
  }
  .program-card::before {
    content: 'RESET'; position: absolute; bottom: -1rem; right: -1rem;
    font-family: 'Cormorant Garamond', serif; font-size: 8rem; font-weight: 600;
    color: rgba(255,255,255,0.04); letter-spacing: -4px; line-height: 1; pointer-events: none;
  }
  .program-tag {
    display: inline-block; background: var(--terracotta); color: var(--white);
    font-size: 0.7rem; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase;
    padding: 0.35rem 0.9rem; border-radius: 50px; margin-bottom: 1.5rem;
  }
  .program-card h3 {
    font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 300;
    color: var(--cream); line-height: 1.2; margin-bottom: 0.5rem;
  }
  .program-card h3 em { font-style: italic; color: var(--terracotta-light); }
  .program-subtitle { font-size: 0.88rem; color: rgba(250,246,240,0.55); margin-bottom: 2rem; letter-spacing: 0.5px; }
  .program-includes {
    list-style: none; display: flex; flex-direction: column; gap: 0.85rem; margin-bottom: 2.5rem;
  }
  .program-includes li {
    display: flex; align-items: flex-start; gap: 0.85rem;
    font-size: 0.9rem; color: rgba(250,246,240,0.85); line-height: 1.5;
  }
  .include-icon {
    width: 28px; height: 28px; border-radius: 8px; background: rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center; font-size: 0.9rem; flex-shrink: 0; margin-top: 1px;
  }
  .program-divider { height: 1px; background: rgba(255,255,255,0.08); margin: 1.5rem 0; }

  .program-details { display: flex; flex-direction: column; gap: 0; }
  .program-details .section-eyebrow { margin-bottom: 0.25rem; }
  .program-details .section-title { margin-bottom: 1.5rem; }
  .detail-desc { font-size: 0.97rem; line-height: 1.8; color: var(--ink-light); margin-bottom: 1.25rem; }
  .who-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1.5rem 0 2rem; }
  .who-tag {
    background: var(--white); border: 1px solid var(--border); border-radius: 50px;
    padding: 0.45rem 1rem; font-size: 0.82rem; color: var(--ink-light);
  }
  .platform-badge {
    display: flex; align-items: center; gap: 0.75rem; margin-top: 1.5rem;
    padding: 1rem 1.25rem; background: var(--cream-dark); border-radius: 14px;
    border: 1px solid var(--border); font-size: 0.88rem; color: var(--ink-light);
  }
  .platform-icon { font-size: 1.2rem; }

  /* ── WHY JOURNAL ── */
  .why-section {}
  .why-header { text-align: center; margin-bottom: 0; }
  .why-header .section-title, .why-header .section-desc { margin-left: auto; margin-right: auto; }
  .benefits-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem; margin-top: 3rem;
  }
  .benefit-card {
    background: var(--white); border-radius: 24px; padding: 2rem;
    border: 1px solid var(--border); transition: transform 0.3s, box-shadow 0.3s; position: relative; overflow: hidden;
  }
  .benefit-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    border-radius: 24px 24px 0 0; transition: height 0.3s;
  }
  .benefit-card:nth-child(1)::before { background: var(--terracotta); }
  .benefit-card:nth-child(2)::before { background: var(--sage); }
  .benefit-card:nth-child(3)::before { background: #C4A35A; }
  .benefit-card:nth-child(4)::before { background: var(--lavender); }
  .benefit-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(42,36,32,0.1); }
  .benefit-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
  .benefit-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 600; color: var(--ink); margin-bottom: 0.6rem; }
  .benefit-card p { font-size: 0.9rem; line-height: 1.65; color: var(--muted); }

  /* ── STRUGGLES ── */
  .struggles-section { background: var(--ink); color: var(--cream); position: relative; overflow: hidden; }
  .struggles-section::before {
    content: '"'; position: absolute; top: -2rem; left: 3%;
    font-family: 'Cormorant Garamond', serif; font-size: 25rem; color: rgba(255,255,255,0.03);
    line-height: 1; pointer-events: none;
  }
  .struggles-section .section-title { color: var(--cream); }
  .struggles-section .section-desc { color: rgba(250,246,240,0.6); }
  .struggles-section .section-eyebrow { color: var(--terracotta-light); }
  .struggles-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
  .struggles-list { display: flex; flex-direction: column; gap: 0.85rem; }
  .struggle-item {
    display: flex; align-items: flex-start; gap: 1rem; padding: 1.1rem 1.4rem;
    background: rgba(255,255,255,0.05); border-radius: 16px; border: 1px solid rgba(255,255,255,0.07);
    transition: background 0.25s, border-color 0.25s; cursor: default;
  }
  .struggle-item:hover { background: rgba(196,113,74,0.15); border-color: rgba(196,113,74,0.3); }
  .struggle-num { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 300; color: var(--terracotta-light); line-height: 1.2; flex-shrink: 0; width: 2rem; }
  .struggle-text { font-size: 0.9rem; line-height: 1.6; color: rgba(250,246,240,0.8); padding-top: 2px; }
  .struggles-right { display: flex; flex-direction: column; gap: 1.5rem; }
  .struggles-quote {
    padding: 2.5rem; background: rgba(255,255,255,0.04); border-radius: 24px; border: 1px solid rgba(255,255,255,0.08);
  }
  .quote-text { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-style: italic; font-weight: 300; line-height: 1.4; color: var(--cream); margin-bottom: 1rem; }
  .quote-author { font-size: 0.85rem; color: var(--terracotta-light); letter-spacing: 0.5px; }
  .cert-badge {
    display: flex; align-items: center; gap: 1rem;
    padding: 1.25rem 1.5rem; background: rgba(255,255,255,0.05); border-radius: 18px; border: 1px solid rgba(255,255,255,0.08);
  }
  .cert-icon { width: 48px; height: 48px; background: linear-gradient(135deg, #9B8EC4, #C4714A); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
  .cert-title { font-size: 0.88rem; font-weight: 500; color: var(--cream); margin-bottom: 2px; }
  .cert-sub { font-size: 0.78rem; color: rgba(250,246,240,0.55); }

  /* ── PROCESS ── */
  .process-section { background: var(--cream-dark); }
  .process-steps {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem; margin-top: 3rem; position: relative;
  }
  .process-steps::before {
    content: ''; position: absolute; top: 2.75rem; left: 10%; right: 10%;
    height: 1px; background: linear-gradient(90deg, transparent, var(--terracotta-light), transparent); z-index: 0;
  }
  .step-item { text-align: center; padding: 2rem 1rem; position: relative; z-index: 1; }
  .step-circle {
    width: 56px; height: 56px; border-radius: 50%; background: var(--white);
    border: 2px solid var(--terracotta-light); display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.25rem; font-family: 'Cormorant Garamond', serif; font-size: 1.3rem;
    font-weight: 600; color: var(--terracotta); transition: all 0.3s;
  }
  .step-item:hover .step-circle { background: var(--terracotta); color: var(--white); transform: scale(1.1); }
  .step-item h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 600; color: var(--ink); margin-bottom: 0.4rem; }
  .step-item p { font-size: 0.82rem; line-height: 1.6; color: var(--muted); }

  /* ── ABOUT ── */
  .about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
  .about-img-wrap {
    aspect-ratio: 4/5; border-radius: 40px;
    background: linear-gradient(160deg, #D6E8D8 0%, var(--sage) 55%, #C4A35A 100%);
    position: relative; overflow: hidden;
  }
  .about-img-placeholder { text-align: center; padding: 2rem; }
  .about-img-placeholder p { font-family: 'Dancing Script', cursive; font-size: 1.5rem; color: var(--white); margin-top: 1rem; }
  .about-decor { position: absolute; bottom: -2rem; right: -2rem; width: 160px; height: 160px; border-radius: 50%; background: rgba(196,113,74,0.2); }
  .about-content .section-eyebrow { margin-bottom: 0.25rem; }
  .about-content .section-title { margin-bottom: 1.5rem; }
  .about-desc { font-size: 0.97rem; line-height: 1.8; color: var(--ink-light); margin-bottom: 1.25rem; }
  .credentials { display: flex; flex-direction: column; gap: 0.75rem; margin: 1.75rem 0; }
  .cred-item { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; color: var(--ink-light); }
  .cred-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sage); flex-shrink: 0; }
  .cert-proof {
    display: flex; align-items: center; gap: 0.75rem; margin-top: 0.5rem;
    padding: 0.9rem 1.2rem; background: var(--cream-dark); border-radius: 14px; border: 1px solid var(--border);
    font-size: 0.85rem; color: var(--ink-light);
  }
  .cert-proof-icon { font-size: 1.1rem; }

  /* ── STATS ── */
  .stats-section { background: var(--terracotta); padding: 5rem; }
  .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 3rem; text-align: center; }
  .stat-num { font-family: 'Cormorant Garamond', serif; font-size: clamp(3rem, 6vw, 5rem); font-weight: 300; color: var(--white); line-height: 1; margin-bottom: 0.5rem; }
  .stat-num span { font-size: 0.5em; vertical-align: super; }
  .stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.75); font-weight: 500; letter-spacing: 1px; text-transform: uppercase; }

  /* ── TESTIMONIALS ── */
  .testimonials-section { background: var(--cream-dark); }
  .testimonials-header { text-align: center; }
  .testimonials-header .section-title, .testimonials-header .section-desc { margin-left: auto; margin-right: auto; }
  .testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
  .testi-card { background: var(--white); border-radius: 24px; padding: 2rem; border: 1px solid var(--border); transition: transform 0.3s; }
  .testi-card:hover { transform: translateY(-4px); }
  .testi-stars { color: var(--terracotta); font-size: 1rem; letter-spacing: 2px; margin-bottom: 1rem; }
  .testi-text { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-style: italic; font-weight: 300; line-height: 1.65; color: var(--ink); margin-bottom: 1.5rem; }
  .testi-author { display: flex; align-items: center; gap: 0.75rem; }
  .testi-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; font-weight: 600; color: var(--white); flex-shrink: 0; }
  .testi-name { font-size: 0.88rem; font-weight: 500; color: var(--ink); }
  .testi-since { font-size: 0.78rem; color: var(--muted); }
  .testi-note { text-align: center; margin-top: 2rem; font-size: 0.85rem; color: var(--muted); font-style: italic; }

  /* ── FAQs ── */
  .faq-section {}
  .faq-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; }
  .faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
  .faq-item {
    border: 1px solid var(--border); border-radius: 16px; overflow: hidden;
    transition: border-color 0.2s;
  }
  .faq-item.open { border-color: var(--terracotta-light); }
  .faq-q {
    width: 100%; background: var(--white); border: none; cursor: pointer;
    padding: 1.25rem 1.5rem; text-align: left; display: flex; align-items: center; justify-content: space-between;
    gap: 1rem; font-family: 'DM Sans', sans-serif; font-size: 0.92rem; font-weight: 500; color: var(--ink);
    transition: background 0.2s;
  }
  .faq-q:hover { background: var(--cream-dark); }
  .faq-arrow { font-size: 1rem; color: var(--muted); transition: transform 0.3s; flex-shrink: 0; }
  .faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--terracotta); }
  .faq-a {
    background: var(--cream); padding: 0 1.5rem; max-height: 0; overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    font-size: 0.88rem; line-height: 1.75; color: var(--ink-light);
  }
  .faq-item.open .faq-a { max-height: 300px; padding: 0 1.5rem 1.25rem; }
  .faq-side { align-self: start; position: sticky; top: 100px; }
  .faq-cta-card {
    background: var(--ink); border-radius: 28px; padding: 3rem 2.5rem;
    text-align: center; position: relative; overflow: hidden;
  }
  .faq-cta-card::before {
    content: '🌿'; position: absolute; bottom: -1rem; right: -1rem; font-size: 8rem; opacity: 0.07; line-height: 1;
  }
  .faq-cta-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; font-style: italic; color: var(--cream); margin-bottom: 1rem; line-height: 1.3; }
  .faq-cta-card p { font-size: 0.9rem; color: rgba(250,246,240,0.6); line-height: 1.7; margin-bottom: 2rem; }
  .faq-cta-price {
    font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 600;
    color: var(--terracotta-light); margin-bottom: 0.25rem;
  }
  .faq-cta-price-note { font-size: 0.78rem; color: rgba(250,246,240,0.45); margin-bottom: 2rem; }

  /* ── CONTACT ── */
  .contact-section { background: var(--cream-dark); }
  .contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
  .contact-info .section-title { margin-bottom: 1rem; }
  .contact-info .section-desc { margin-bottom: 2rem; }
  .contact-details { display: flex; flex-direction: column; gap: 1rem; }
  .contact-item { display: flex; align-items: center; gap: 1rem; font-size: 0.92rem; color: var(--ink-light); }
  .contact-icon { width: 40px; height: 40px; border-radius: 12px; background: var(--white); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; border: 1px solid var(--border); }
  .contact-form { display: flex; flex-direction: column; gap: 1.25rem; background: var(--white); padding: 2.5rem; border-radius: 28px; border: 1px solid var(--border); }
  .form-group { display: flex; flex-direction: column; gap: 0.5rem; }
  .form-group label { font-size: 0.8rem; font-weight: 500; color: var(--ink-light); letter-spacing: 0.3px; text-transform: uppercase; }
  .form-group input, .form-group textarea, .form-group select {
    background: var(--cream); border: 1.5px solid var(--border); border-radius: 12px;
    padding: 0.85rem 1rem; font-family: 'DM Sans', sans-serif; font-size: 0.92rem; color: var(--ink);
    outline: none; transition: border-color 0.2s; width: 100%;
  }
  .form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--terracotta-light); }
  .form-group textarea { resize: vertical; min-height: 100px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

  /* ── FOOTER ── */
  footer { background: var(--ink); color: rgba(250,246,240,0.7); padding: 4rem 5% 2.5rem; }
  .footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 2rem; }
  .footer-brand { }
  .footer-brand-logo { font-family: 'Dancing Script', cursive; font-size: 1.8rem; color: var(--terracotta-light); display: block; margin-bottom: 0.25rem; text-decoration: none; }
  .footer-brand-sub { font-size: 0.7rem; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(250,246,240,0.4); margin-bottom: 1rem; }
  .footer-brand p { font-size: 0.85rem; line-height: 1.7; max-width: 260px; }
  .footer-col h5 { font-size: 0.78rem; font-weight: 500; color: var(--cream); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 1.25rem; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
  .footer-col a { color: rgba(250,246,240,0.6); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
  .footer-col a:hover { color: var(--terracotta-light); }
  .footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; }
  .social-links { display: flex; gap: 0.75rem; }
  .social-link {
    width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,0.06);
    display: flex; align-items: center; justify-content: center; color: rgba(250,246,240,0.7);
    text-decoration: none; font-size: 0.85rem; transition: all 0.2s;
  }
  .social-link:hover { background: var(--terracotta); color: var(--white); }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes fadeIn  { from { opacity: 0; } to { opacity: 1; } }
  .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }




  /* ── CERTIFICATE ── */
  .cert-image-wrap {
    margin-top: 1.5rem;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid #C4A35A;
    box-shadow: 0 8px 32px rgba(196,163,90,0.2);
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .cert-image-wrap:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(196,163,90,0.3);
  }
  .cert-image {
    width: 100%; display: block;
  }
  .cert-overlay-label {
    position: absolute;
    top: 0.75rem; right: 0.75rem;
    background: rgba(196,163,90,0.9);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    backdrop-filter: blur(4px);
  }

  /* Certificate Images Grid */
  .cert-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-top: 1.5rem;
  }
  .cert-images-grid .cert-image-wrap {
    margin-top: 0;
  }
  @media (max-width: 600px) {
    .cert-images-grid {
      grid-template-columns: 1fr;
    }
  }

  /* Lightbox */
  .cert-lightbox {
    display: none; position: fixed; inset: 0; z-index: 999;
    background: rgba(0,0,0,0.85); align-items: center; justify-content: center;
    padding: 2rem; cursor: zoom-out;
  }
  .cert-lightbox.open { display: flex; }
  .cert-lightbox img {
    max-width: 90vw; max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.5);
    object-fit: contain;
  }
  .cert-lightbox-close {
    position: absolute; top: 1.5rem; right: 1.5rem;
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,0.15); border: none; color: #fff;
    font-size: 1.2rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
  }
  .cert-lightbox-close:hover { background: rgba(255,255,255,0.3); }



  /* ── MOSAIC TESTIMONIALS ── */
  .mosaic-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 1.25rem;
    margin-top: 3rem;
  }
  .mosaic-video {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
  }
  .mosaic-video-inner {
    position: relative;
    width: 100%;
    height: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(160deg, #2A2420 0%, #5C4F44 100%);
    box-shadow: 0 8px 32px rgba(42,36,32,0.15);
  }
  .mosaic-video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .mosaic-video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    background: linear-gradient(160deg, rgba(42,36,32,0.85) 0%, rgba(92,79,68,0.75) 100%);
    cursor: pointer;
    transition: background 0.3s;
    z-index: 2;
  }
  .mosaic-video-overlay:hover {
    background: linear-gradient(160deg, rgba(42,36,32,0.7) 0%, rgba(92,79,68,0.6) 100%);
  }
  .mosaic-play-btn {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--terracotta);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(196,113,74,0.4);
    transition: transform 0.25s, box-shadow 0.25s;
  }
  .mosaic-video-overlay:hover .mosaic-play-btn {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(196,113,74,0.5);
  }
  .mosaic-video-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-style: italic;
    color: rgba(250,246,240,0.85);
    text-align: center;
    line-height: 1.5;
  }
  .mosaic-video-label span {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-style: normal;
    opacity: 0.5;
  }
  .mosaic-video-overlay.hidden { display: none; }

  .mosaic-tile .screenshot-card {
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  .mosaic-tile .screenshot-card img {
    flex: 1;
    object-fit: contain;
    min-height: 0;
  }

  @media (max-width: 900px) {
    .mosaic-grid {
      grid-template-columns: 1fr;
      grid-template-rows: auto;
      gap: 1rem;
      max-width: 480px;
      margin-left: auto;
      margin-right: auto;
    }
    .mosaic-video {
      grid-column: auto;
      grid-row: auto;
    }
    .mosaic-video-inner {
      min-height: 320px;
    }
  }

  /* ── BATCH SCHEDULE ── */
  .batch-schedule {
    margin-top: 1.5rem;
    padding: 1.4rem 1.5rem;
    background: var(--white);
    border-radius: 18px;
    border: 1px solid var(--border);
  }
  .batch-title {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: 0.3px;
    margin-bottom: 1rem;
    text-transform: uppercase;
  }
  .batch-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .batch-card {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1rem;
    background: var(--cream);
    border-radius: 12px;
    border: 1px solid var(--border);
  }
  .batch-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
  }
  .batch-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
  }
  .batch-day {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--ink);
  }
  .batch-time {
    font-size: 0.82rem;
    color: var(--terracotta);
    font-weight: 500;
  }

  /* ── PAY BUTTON ── */
  .btn-pay {
    background: linear-gradient(135deg, #2D6A4F 0%, #40916C 100%);
    color: var(--white);
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s;
    border: none;
    cursor: pointer;
    letter-spacing: 0.3px;
    display: inline-block;
    box-shadow: 0 4px 16px rgba(45,106,79,0.25);
  }
  .btn-pay:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(45,106,79,0.35);
    background: linear-gradient(135deg, #1B4332 0%, #2D6A4F 100%);
  }
  .pay-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0.5rem 0;
  }
  .pay-divider::before, .pay-divider::after {
    content: ''; flex: 1; height: 1px; background: var(--border);
  }
  .pay-divider span {
    font-size: 0.78rem;
    color: var(--muted);
    white-space: nowrap;
  }

  /* ── CAROUSELS ── */
  .carousel-wrap {
    position: relative; display: flex; align-items: center; gap: 1rem; margin-top: 2.5rem;
  }
  .carousel-viewport {
    overflow: hidden; border-radius: 20px; flex: 1;
  }
  .carousel-track {
    display: flex; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
    will-change: transform;
  }
  .carousel-slide {
    min-width: 100%; box-sizing: border-box; padding: 0 0.25rem;
  }
  .screenshot-card {
    background: var(--white); border-radius: 20px; border: 1px solid var(--border);
    overflow: hidden; box-shadow: 0 4px 20px rgba(42,36,32,0.08);
    max-width: 520px; margin: 0 auto;
  }
  .screenshot-header {
    background: #128C7E; padding: 0.6rem 1rem;
    display: flex; align-items: center; gap: 0.4rem;
  }
  .wa-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4); display: inline-block; }
  .screenshot-label { font-size: 0.7rem; font-weight: 500; color: rgba(255,255,255,0.8); margin-left: auto; letter-spacing: 0.5px; }
  .screenshot-card img { width: 100%; display: block; object-fit: contain; background: #ECE5DD; }
  .gallery-slide-inner {
    width: 100%;
    height: 520px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(42,36,32,0.12);
    background: var(--cream-dark);
  }
  .session-photo {
    width: 100%; height: 100%; object-fit: cover;
    object-position: center center;
    display: block;
  }
  .carousel-btn {
    width: 48px; height: 48px; border-radius: 50%; border: 1.5px solid var(--border);
    background: var(--white); color: var(--ink); font-size: 1.1rem;
    cursor: pointer; flex-shrink: 0; transition: all 0.2s;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 12px rgba(42,36,32,0.08);
  }
  .carousel-btn:hover { background: var(--terracotta); color: var(--white); border-color: var(--terracotta); }
  .carousel-dots {
    display: flex; justify-content: center; gap: 0.5rem; margin-top: 1.25rem;
  }
  .carousel-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--border); border: none; cursor: pointer; padding: 0;
    transition: all 0.25s;
  }
  .carousel-dot.active { background: var(--terracotta); width: 24px; border-radius: 4px; }

  /* Gallery section — mosaic */
  .gallery-section { background: var(--cream-dark); }
  .gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 3rem;
  }
  .gallery-tile {
    border-radius: 16px;
    overflow: hidden;
    background: var(--cream);
    box-shadow: 0 4px 16px rgba(42,36,32,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .gallery-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(42,36,32,0.14);
  }
  .gallery-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
  }
  .gallery-tile:hover img {
    transform: scale(1.05);
  }
  .gallery-wide {
    grid-column: span 2;
  }
  .gallery-wide img {
    height: 280px;
  }
  .gallery-tile:not(.gallery-wide) img {
    height: 220px;
  }
  @media (max-width: 900px) {
    .gallery-mosaic {
      grid-template-columns: repeat(2, 1fr);
      gap: 0.75rem;
    }
    .gallery-wide {
      grid-column: span 2;
    }
    .gallery-wide img { height: 200px; }
    .gallery-tile:not(.gallery-wide) img { height: 160px; }
  }
  @media (max-width: 480px) {
    .gallery-mosaic {
      grid-template-columns: repeat(2, 1fr);
    }
    .gallery-wide { grid-column: span 2; }
    .gallery-wide img { height: 160px; }
    .gallery-tile:not(.gallery-wide) img { height: 130px; }
  }

  /* ── SCREENSHOT TESTIMONIALS ── */
  .testi-screenshots-featured {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1.5rem; margin-top: 3rem;
  }
  .testi-screenshots-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem; margin-top: 1.25rem;
  }
  .screenshot-card {
    background: var(--white);
    border-radius: 20px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 16px rgba(42,36,32,0.06);
  }
  .screenshot-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(42,36,32,0.12);
  }
  .screenshot-header {
    background: #128C7E;
    padding: 0.6rem 1rem;
    display: flex; align-items: center; gap: 0.4rem;
  }
  .wa-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,0.4);
    display: inline-block;
  }
  .screenshot-label {
    font-size: 0.7rem; font-weight: 500;
    color: rgba(255,255,255,0.8);
    margin-left: auto;
    letter-spacing: 0.5px;
  }
  .screenshot-card img {
    width: 100%; display: block;
    object-fit: contain;
    background: #ECE5DD;
  }
  @media (max-width: 900px) {
    .testi-screenshots-featured { grid-template-columns: 1fr; }
    .testi-screenshots-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 600px) {
    .testi-screenshots-grid { grid-template-columns: 1fr; }
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; text-align: center; padding: 7rem 5% 4rem; }
    .hero-sub, .hero-chips, .hero-btns { margin-left: auto; margin-right: auto; }
    .hero-chips, .hero-btns { justify-content: center; }
    .hero-visual { order: -1; }
    .hero-img-wrap { max-width: 320px; }
    .hero-badge-1, .hero-badge-2 { display: none; }
    .program-layout, .struggles-layout, .about-layout, .contact-layout, .faq-layout { grid-template-columns: 1fr; }
    .faq-side { position: static; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
    nav .nav-links { display: none; }
    .process-steps::before { display: none; }
  }
  @media (max-width: 600px) {
    section { padding: 4rem 5%; }
    .stats-section { padding: 4rem 5%; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
  }

  /* ── FLOATING WHATSAPP ── */
  .whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: transform 0.3s, box-shadow 0.3s, opacity 0.4s;
    opacity: 0;
    transform: scale(0.5) translateY(20px);
    pointer-events: none;
    text-decoration: none;
  }
  .whatsapp-float.visible {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: auto;
  }
  .whatsapp-float:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 8px 32px rgba(37,211,102,0.5);
  }

  /* ── NAV SHARE BUTTON ── */
  .nav-share-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: transparent;
    border: 1.5px solid var(--border);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--ink-light);
    cursor: pointer;
    transition: all 0.25s;
    flex-shrink: 0;
  }
  .nav-share-btn:hover {
    border-color: var(--terracotta);
    color: var(--terracotta);
    background: rgba(196,113,74,0.06);
  }
  .nav-share-btn svg { flex-shrink: 0; }

  @media (max-width: 900px) {
    .nav-share-label { display: none; }
    .nav-share-btn {
      padding: 0.5rem;
      border-radius: 50%;
      width: 38px;
      height: 38px;
      justify-content: center;
    }
  }

  /* ── SHARE MODAL ── */
  .share-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(42,36,32,0.6);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    animation: shareOverlayIn 0.25s ease;
  }
  .share-overlay.open { display: flex; }
  @keyframes shareOverlayIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  .share-modal {
    background: var(--white);
    border-radius: 28px;
    padding: 2.5rem;
    max-width: 440px;
    width: 100%;
    position: relative;
    box-shadow: 0 32px 80px rgba(42,36,32,0.25);
    animation: shareModalIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  }
  @keyframes shareModalIn {
    from { opacity: 0; transform: translateY(24px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
  }
  .share-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--cream-dark);
    border: none;
    color: var(--ink-light);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
  }
  .share-modal-close:hover {
    background: var(--terracotta);
    color: var(--white);
  }
  .share-modal-header {
    text-align: center;
    margin-bottom: 2rem;
  }
  .share-modal-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
  }
  .share-modal-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-weight: 300;
    font-style: italic;
    color: var(--ink);
    margin-bottom: 0.4rem;
  }
  .share-modal-header p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.5;
  }

  /* Share grid */
  .share-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.75rem;
  }
  .share-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0.5rem;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--white);
    cursor: pointer;
    transition: all 0.25s;
    font-family: 'DM Sans', sans-serif;
  }
  .share-option:hover {
    border-color: var(--terracotta-light);
    background: var(--cream);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(42,36,32,0.1);
  }
  .share-option-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s;
  }
  .share-option:hover .share-option-icon {
    transform: scale(1.1);
  }
  .share-option span {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--ink-light);
    letter-spacing: 0.2px;
  }

  /* Copy link row */
  .share-copy-row {
    display: flex;
    gap: 0.5rem;
    align-items: stretch;
  }
  .share-copy-row input {
    flex: 1;
    background: var(--cream);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    color: var(--ink-light);
    outline: none;
    min-width: 0;
    transition: border-color 0.2s;
  }
  .share-copy-row input:focus {
    border-color: var(--terracotta-light);
  }
  .share-copy-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.75rem 1.25rem;
    background: var(--ink);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s;
    flex-shrink: 0;
  }
  .share-copy-btn:hover {
    background: var(--terracotta);
  }
  .share-copy-btn.copied {
    background: var(--sage-dark);
  }

  @media (max-width: 480px) {
    .share-modal {
      padding: 2rem 1.5rem;
      border-radius: 24px;
    }
    .share-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 0.5rem;
    }
    .share-option {
      padding: 0.75rem 0.35rem;
    }
    .share-option-icon {
      width: 38px;
      height: 38px;
    }
  }