  /* Reset */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  p { margin-bottom: 16px; }
  p:last-child { margin-bottom: 0; }

  :root {
    --cream: #FDFCFA;
    --ink: #1A1410;
    --red: #8B2626;
    --red-light: #B03A3A;
    --red-dim: #6E1E1E;
    --muted: #564E44;
    --border: #E2DCD4;
    --border-dark: rgba(255,255,255,0.08);
    --white: #FFFFFF;
  }

  html { scroll-behavior: smooth; }

  body {
    margin: 0;
    padding: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: #F5F0E8;
    color: #1A1410;
    overflow-x: hidden;
    font-size: clamp(16px, 1.3vw, 19px);
  }

  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
  }

  /* ── HEADER ── */
  header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 52px;
    background: rgba(245, 240, 232, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid #DDD5C8;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }
  .logo-badge {
    width: 32px; height: 32px;
    background: #8B2626;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 0.95rem;
    color: white;
  }
  .logo-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: #1A1410;
    line-height: 1.2;
  }
  .logo-text span { color: #8B2626; }

  .header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #8B2626;
    color: white;
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 0.2s, transform 0.2s;
    cursor: pointer;
  }
  .header-cta:hover { background: #6E1E1E !important; color: white !important; transform: translateY(-1px); }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 140px 80px 100px;
    position: relative;
    overflow: hidden;
    text-align: center;
  }

  .hero-bg-text {
    position: absolute;
    font-family: 'Playfair Display', serif;
    font-size: 20vw;
    font-weight: 900;
    font-style: italic;
    color: rgba(139, 38, 38, 0.05);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
  }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #8B2626;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.1s;
    position: relative;
    z-index: 1;
  }
  .eyebrow::before, .eyebrow::after { content: ''; width: 24px; height: 1px; background: #8B2626; }

  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 6vw, 6rem);
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.2s;
    position: relative;
    z-index: 1;
    max-width: 900px;
  }
  .hero-title em { font-style: italic; color: #8B2626; }

  .hero-sub {
    font-size: 1.2rem;
    font-weight: 300;
    color: #6B5F52;
    line-height: 1.8;
    max-width: 580px;
    margin: 0 auto 52px;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.3s;
    position: relative;
    z-index: 1;
  }
  .hero-sub strong { color: #1A1410; font-weight: 500; }

  .hero-ready {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    font-style: italic;
    color: #8B2626;
    letter-spacing: 0.02em;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.45s;
  }

  .cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.4s;
    position: relative;
    z-index: 1;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #8B2626;
    color: #fff;
    padding: 18px 40px;
    border-radius: 100px;
    font-size: 0.92rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
  }
  .btn-primary:hover { background: #6E1E1E !important; color: white !important; transform: translateY(-2px); }

  .spots-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FFFFFF;
    border: 1px solid #DDD5C8;
    border-radius: 100px;
    padding: 10px 20px;
    font-size: 0.8rem;
    color: #6B5F52;
  }
  .spots-badge strong { color: #1A1410; }

  .spots-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #8B2626;
    animation: pulse 1.8s ease-in-out infinite;
  }

  /* ── SOCIAL PROOF STRIP ── */
  .proof-strip {
    background: #1A1410;
    padding: 60px 80px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: relative;
    z-index: 1;
  }

  .proof-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 32px;
    text-align: center;
    position: relative;
  }
  .proof-item + .proof-item::before {
    content: '';
    position: absolute;
    left: 0; top: 15%; bottom: 15%;
    width: 1px;
    background: rgba(255,255,255,0.07);
  }

  .proof-num {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 4vw, 4rem);
    font-weight: 900;
    color: #F5F0E8;
    line-height: 1;
    letter-spacing: -0.02em;
  }
  .proof-num .proof-accent { color: #B03A3A; }

  .proof-item .proof-label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.38);
  }

  .proof-sep { display: none; }

  /* ── SHARED ── */
  .section-label {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #8B2626;
    margin-bottom: 20px;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 56px;
    max-width: 680px;
  }
  .section-title em { font-style: italic; color: #8B2626; }

  .section-divider { width: 100%; height: 1px; background: #DDD5C8; position: relative; z-index: 1; }

  /* ── FOR WHOM ── */
  .for-section {
    padding: 100px 80px;
    background: #1A1410;
    position: relative;
    z-index: 1;
    overflow: hidden;
  }
  .noise-overlay {
    position: absolute; inset: 0; pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.06'/%3E%3C/svg%3E");
  }

  .for-inner { max-width: 900px; margin: 0 auto; position: relative; z-index: 1; }
  .for-section .section-label { color: rgba(139,38,38,0.9); }

  .for-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.6rem);
    font-weight: 900;
    line-height: 1.1;
    color: #F5F0E8;
    margin-bottom: 48px;
  }
  .for-title em { font-style: italic; color: #B03A3A; }

  .for-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

  .for-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 26px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    transition: background 0.2s, border-color 0.2s;
  }
  .for-item:hover { background: rgba(255,255,255,0.07); border-color: rgba(139,38,38,0.3); }

  .for-check {
    width: 22px; height: 22px; min-width: 22px;
    border-radius: 50%;
    background: rgba(139,38,38,0.2);
    border: 1px solid rgba(139,38,38,0.4);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
  }
  .for-check svg { width: 9px; height: 9px; }

  .for-item p { font-size: 1rem; color: rgba(245,240,232,0.82); line-height: 1.7; }
  .for-item p strong { color: #F5F0E8; font-weight: 500; }

  /* ── THE 3 PHASES ── */
  .phases-section {
    padding: 100px 80px;
    background: #F5F0E8;
    position: relative;
    z-index: 1;
  }

  .phases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: #DDD5C8;
    border: 1px solid #DDD5C8;
    border-radius: 24px;
    overflow: hidden;
  }

  .phase-item {
    background: #FFFFFF;
    padding: 52px 40px;
    position: relative;
    overflow: hidden;
    transition: background 0.2s;
  }
  .phase-item:hover { background: #FDFAF5; }
  .phase-item::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: #8B2626;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }
  .phase-item:hover::after { transform: scaleX(1); }

  .phase-number {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 900;
    font-style: italic;
    color: rgba(139,38,38,0.08);
    line-height: 1;
    margin-bottom: 28px;
    display: block;
  }

  .phase-tag {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #8B2626;
    margin-bottom: 10px;
  }

  .phase-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.55rem;
    font-weight: 900;
    line-height: 1.2;
    color: #1A1410;
    margin-bottom: 18px;
  }

  .phase-item p {
    font-size: 0.96rem;
    color: #6B5F52;
    line-height: 1.85;
    margin-bottom: 0;
  }
  .phase-item p strong { color: #1A1410; font-weight: 500; }

  .phase-deliverables {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .phase-del {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.84rem;
    color: #1A1410;
  }

  .phase-del-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #8B2626;
    flex-shrink: 0;
  }

  /* ── HOW IT WORKS ── */
  .how-section {
    padding: 100px 80px;
    background: #1A1410;
    position: relative;
    z-index: 1;
    overflow: hidden;
  }
  .how-section .section-label { color: rgba(139,38,38,0.9); position: relative; z-index: 1; }
  .how-section .section-title { color: #F5F0E8; position: relative; z-index: 1; }
  .how-section .section-title em { color: #B03A3A; }

  .timeline {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 760px;
  }

  .timeline::before {
    content: '';
    position: absolute;
    left: 26px;
    top: 0; bottom: 0;
    width: 1px;
    background: rgba(255,255,255,0.08);
  }

  .timeline-item {
    display: flex;
    gap: 32px;
    padding: 32px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative;
  }
  .timeline-item:last-child { border-bottom: none; }

  .timeline-node {
    width: 52px;
    min-width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(139,38,38,0.15);
    border: 1px solid rgba(139,38,38,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 1rem;
    color: #B03A3A;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
  }

  .timeline-content { padding-top: 10px; }
  .timeline-week { font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(245,240,232,0.3); margin-bottom: 6px; }
  .timeline-content h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: #F5F0E8; margin-bottom: 8px; }
  .timeline-content p { font-size: 0.96rem; color: rgba(245,240,232,0.65); line-height: 1.8; margin-bottom: 0; }
  .timeline-content p strong { color: #F5F0E8; font-weight: 500; }

  /* ── REVIEWS ── */
  .reviews-section {
    padding: 100px 80px;
    background: #F5F0E8;
    position: relative;
    z-index: 1;
    border-top: 1px solid #DDD5C8;
    /* overflow: hidden removed — was clipping card hover transforms */
  }

  .reviews-header {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    margin-bottom: 56px;
    gap: 32px;
  }

  .reviews-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 16px 28px;
    background: #1A1410;
    border-radius: 100px;
    border: 1px solid rgba(139,38,38,0.2);
    flex-shrink: 0;
  }
  .reviews-rating-badge .rating-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 900;
    color: #B03A3A;
    line-height: 1;
    letter-spacing: -0.02em;
    transform: translateY(-6px);
  }
  .reviews-rating-badge .rating-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.1); }
  .reviews-rating-badge .rating-right { display: flex; flex-direction: column; gap: 4px; }
  .reviews-rating-badge .rating-stars { color: #8B2626; font-size: 0.82rem; letter-spacing: 3px; }
  .reviews-rating-badge .rating-label { font-size: 0.65rem; color: rgba(245,240,232,0.35); text-transform: uppercase; letter-spacing: 0.12em; white-space: nowrap; }

  .reviews-masonry { columns: 3; column-gap: 16px; }

  .review-card {
    break-inside: avoid;
    background: #FFFFFF;
    border: 1px solid #DDD5C8;
    border-radius: 20px;
    padding: 28px 30px;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
  }
  .review-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(26,20,16,0.09); }

  .review-card--featured { background: #1A1410; border-color: transparent; }
  .review-card--featured::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: linear-gradient(90deg, #8B2626, #B03A3A);
  }

  .review-card-stars { color: #8B2626; font-size: 0.72rem; letter-spacing: 3px; margin-bottom: 14px; }
  .review-card--featured .review-card-stars { color: #B03A3A; }

  .review-quote-mark {
    position: absolute; top: 12px; right: 20px;
    font-family: 'Playfair Display', serif; font-size: 6rem; font-weight: 900;
    color: rgba(139,38,38,0.07); line-height: 1; pointer-events: none;
  }
  .review-card--featured .review-quote-mark { color: rgba(139,38,38,0.14); }

  .review-card blockquote {
    font-style: italic; font-size: 1rem; line-height: 1.75;
    color: #1A1410; margin-bottom: 20px; position: relative; z-index: 1;
  }
  .review-card--featured blockquote { font-size: 1.05rem; color: rgba(245,240,232,0.9); }

  .review-author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid #DDD5C8; position: relative; z-index: 1; }
  .review-card--featured .review-author { border-top-color: rgba(255,255,255,0.08); }

  .review-avatar {
    width: 36px; height: 36px; min-width: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(139,38,38,0.25), rgba(139,38,38,0.08));
    border: 1px solid rgba(139,38,38,0.2);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif; font-size: 0.85rem; font-weight: 700;
    color: #8B2626; flex-shrink: 0;
  }
  .review-card--featured .review-avatar { background: rgba(139,38,38,0.15); color: #B03A3A; }

  .review-author-info strong { display: block; font-size: 0.82rem; font-weight: 500; color: #1A1410; }
  .review-card--featured .review-author-info strong { color: #F5F0E8; }
  .review-author-info span { font-size: 0.72rem; color: #6B5F52; }
  .review-card--featured .review-author-info span { color: rgba(245,240,232,0.4); }

  /* ── PRICING ── */
  .pricing-section {
    padding: 100px 80px;
    background: #1A1410;
    position: relative;
    z-index: 1;
    /* overflow: hidden removed — was clipping button hover transforms */
  }
  .pricing-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
  }
  .pricing-section .section-label { color: rgba(139,38,38,0.9); }
  .pricing-section .section-title { color: #F5F0E8; margin-bottom: 28px; }
  .pricing-section .section-title em { color: #B03A3A; }

  .pricing-left p { font-size: 1rem; color: rgba(245,240,232,0.8); line-height: 1.85; margin-bottom: 32px; }
  .pricing-left p strong { color: #F5F0E8; font-weight: 500; }

  .what-you-get { display: flex; flex-direction: column; gap: 8px; margin-bottom: 32px; }
  .wyg-item { display: flex; align-items: center; gap: 12px; padding: 14px 18px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: 10px; font-size: 0.9rem; color: rgba(245,240,232,0.82); }
  .wyg-check { width: 20px; height: 20px; min-width: 20px; border-radius: 50%; background: rgba(139,38,38,0.25); border: 1px solid rgba(139,38,38,0.4); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .wyg-check svg { width: 8px; height: 8px; }

  .pricing-card {
    background: #FFFFFF;
    border: 1px solid #DDD5C8;
    border-radius: 24px;
    padding: 48px 44px;
    box-shadow: 0 16px 64px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
  }
  .pricing-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 4px; background: linear-gradient(90deg, #8B2626, #B03A3A);
  }

  .price-tag { margin-bottom: 28px; }
  .price-amount { font-family: 'Playfair Display', serif; font-size: 4.5rem; font-weight: 900; color: #1A1410; line-height: 1; }
  .price-amount sup { font-size: 1.6rem; font-weight: 700; vertical-align: super; }
  .price-period { font-size: 0.82rem; color: #6B5F52; margin-top: 6px; }

  .price-divider { width: 100%; height: 1px; background: #DDD5C8; margin: 24px 0; }

  .price-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
  .price-feature { display: flex; align-items: center; gap: 12px; font-size: 0.86rem; color: #1A1410; }
  .price-check { width: 20px; height: 20px; min-width: 20px; border-radius: 50%; background: #8B2626; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .price-check svg { width: 10px; height: 10px; }

  .btn-join { display: block; width: 100%; text-align: center; background: #8B2626; color: white; padding: 18px; border-radius: 100px; font-size: 0.9rem; font-weight: 500; text-decoration: none; letter-spacing: 0.02em; cursor: pointer; transition: background 0.2s, transform 0.2s; margin-bottom: 14px; }
  .btn-join:hover { background: #6E1E1E !important; color: white !important; transform: translateY(-1px); }

  .price-note { text-align: center; font-size: 0.75rem; color: #6B5F52; }
  .spots-left { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 16px; font-size: 0.78rem; color: #6B5F52; }
  .spots-left strong { color: #1A1410; }

  /* ── FAQ ── */
  .faq-section { padding: 100px 80px; background: #1A1410; position: relative; z-index: 1; overflow: hidden; }
  .faq-section .section-label { color: rgba(139,38,38,0.9); position: relative; z-index: 1; }
  .faq-section .section-title { color: #F5F0E8; position: relative; z-index: 1; }
  .faq-section .section-title em { color: #B03A3A; }

  .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.07); border-radius: 20px; overflow: hidden; position: relative; z-index: 1; }
  .faq-item { background: rgba(255,255,255,0.02); padding: 36px; transition: background 0.2s; }
  .faq-item:hover { background: rgba(255,255,255,0.05); }
  .faq-q { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: #F5F0E8; margin-bottom: 12px; line-height: 1.3; }
  .faq-a { font-size: 0.95rem; color: rgba(245,240,232,0.75); line-height: 1.85; }

  /* ── ABOUT ── */
  .about-section {
    padding: 100px 80px;
    background: #F5F0E8;
    border-top: 1px solid #DDD5C8;
    position: relative;
    z-index: 1;
  }
  .about-inner { max-width: 720px; margin: 0 auto; }
  .about-title { font-family: 'Playfair Display', serif; font-size: clamp(2.4rem, 4.5vw, 3.4rem); font-weight: 900; line-height: 1.1; color: #1A1410; margin-bottom: 32px; }
  .about-inner p { font-size: 1.05rem; color: #1A1410; line-height: 2; margin-bottom: 22px; }
  .about-inner p strong { font-weight: 600; }
  .signature-name { font-family: 'Dancing Script', cursive; font-size: 5rem; font-weight: 700; line-height: 1; background: linear-gradient(135deg, #1A1410 0%, #8B2626 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

  /* ── FINAL CTA ── */
  .final-cta { padding: 120px 80px; text-align: center; background: #1A1410; position: relative; z-index: 1; /* overflow: hidden removed — was clipping button hover */ }
  .final-cta-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
  .final-cta .section-label { color: rgba(139,38,38,0.85); margin-bottom: 24px; }
  .final-title { font-family: 'Playfair Display', serif; font-size: clamp(2.4rem, 5vw, 4.5rem); font-weight: 900; line-height: 1.08; color: #F5F0E8; margin-bottom: 24px; }
  .final-title em { font-style: italic; color: #B03A3A; }
  .final-sub { font-size: 1rem; color: rgba(245,240,232,0.65); line-height: 1.8; margin-bottom: 48px; }
  .final-sub strong { color: #F5F0E8; }

  .btn-primary-light {
    display: inline-flex; align-items: center; gap: 10px;
    background: #8B2626; color: #fff;
    padding: 18px 44px; border-radius: 100px;
    font-size: 0.92rem; font-weight: 500; text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
  }
  .btn-primary-light:hover { background: #6E1E1E !important; color: white !important; transform: translateY(-2px); }
  .final-note { font-size: 0.78rem; color: rgba(245,240,232,0.3); margin-top: 20px; }

  /* ── FOOTER ── */
  footer {
    padding: 36px 80px; border-top: 1px solid rgba(255,255,255,0.06);
    background: #1A1410; display: flex; align-items: center; justify-content: space-between;
    position: relative; z-index: 1;
  }
  footer p { font-size: 0.76rem; color: rgba(245,240,232,0.25); }
  footer a { color: rgba(245,240,232,0.25); text-decoration: none; transition: color 0.2s; }
  footer a:hover { color: #B03A3A; }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.8); } }
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .reveal.visible { opacity: 1; transform: none; }

  /* ── OPERATORS PERK ── */
  .perk-section {
    padding: 100px 80px;
    background: #1A1410;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.06);
  }

  .perk-inner { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; }

  .perk-label {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(139,38,38,0.85);
    margin-bottom: 40px;
  }

  .perk-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
  }

  .perk-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139,38,38,0.18);
    border: 1px solid rgba(139,38,38,0.35);
    border-radius: 100px;
    padding: 8px 18px;
    font-size: 0.78rem;
    font-weight: 500;
    color: #B03A3A;
    margin-bottom: 24px;
  }

  .perk-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    line-height: 1.1;
    color: #F5F0E8;
    margin-bottom: 24px;
  }
  .perk-title em { font-style: italic; color: #B03A3A; }

  .perk-body { font-size: 0.98rem; color: rgba(245,240,232,0.72); line-height: 1.85; }
  .perk-body strong { color: #F5F0E8; font-weight: 500; }

  .perk-value-pill {
    display: inline-flex;
    align-items: center;
    margin-top: 24px;
    background: rgba(139,38,38,0.12);
    border: 1px solid rgba(139,38,38,0.3);
    border-radius: 100px;
    padding: 10px 22px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #B03A3A;
    letter-spacing: 0.03em;
  }

  .perk-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 36px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    margin-bottom: 16px;
  }

  .perk-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
  }

  .perk-check {
    width: 22px; height: 22px; min-width: 22px;
    border-radius: 50%;
    background: #8B2626;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .perk-check svg { width: 10px; height: 10px; }

  .perk-feature strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #F5F0E8;
    margin-bottom: 3px;
  }
  .perk-feature span {
    font-size: 0.82rem;
    color: rgba(245,240,232,0.5);
    line-height: 1.6;
  }

  .perk-note {
    font-size: 0.82rem;
    color: rgba(245,240,232,0.35);
    line-height: 1.75;
    font-style: italic;
    padding: 0 4px;
  }

  /* ── MENTORS ── */
  .mentors-section {
    display: none;
    padding: 100px 80px;
    background: #F5F0E8;
    position: relative;
    z-index: 1;
    border-top: 1px solid #DDD5C8;
  }

  .mentors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .mentor-card {
    background: #FFFFFF;
    border: 1px solid #DDD5C8;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.28s, box-shadow 0.28s;
    display: flex;
    flex-direction: column;
  }
  .mentor-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 56px rgba(26,20,16,0.12);
  }

  .mentor-photo {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #2a1a1a 0%, #1a1410 100%);
    overflow: hidden;
    flex-shrink: 0;
  }

  .mentor-photo-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mentor-photo-initials {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    font-style: italic;
    color: rgba(139,38,38,0.25);
    user-select: none;
  }

  .mentor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.4s ease;
  }
  .mentor-card:hover .mentor-photo img { transform: scale(1.04); }

  .mentor-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(26,20,16,0) 35%,
      rgba(26,20,16,0.55) 65%,
      rgba(26,20,16,0.92) 100%
    );
    pointer-events: none;
  }

  .mentor-expertise-pill {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #8B2626;
    color: white;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 100px;
    z-index: 2;
    box-shadow: 0 2px 12px rgba(139,38,38,0.4);
  }

  .mentor-photo-info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 18px 22px;
    z-index: 2;
  }
  .mentor-photo-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 3px;
  }
  .mentor-photo-role {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.02em;
  }

  .mentor-body {
    padding: 22px 24px 26px;
    flex: 1;
  }
  .mentor-bio {
    font-size: 0.92rem;
    color: #6B5F52;
    line-height: 1.8;
  }

  .mentor-placeholder {
    display: inline-block;
    background: rgba(139,38,38,0.06);
    border: 1px dashed rgba(139,38,38,0.2);
    border-radius: 6px;
    padding: 2px 10px;
    font-size: 0.75rem;
    color: rgba(139,38,38,0.45);
    font-style: italic;
  }

  /* ── JULIA ── */
  .julia-section {
    padding: 100px 80px;
    background: #1A1410;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.06);
  }

  .julia-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    margin: 0 auto;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
    max-width: 1000px;
  }

  .julia-photo-wrap {
    position: relative;
  }

  .julia-photo {
    width: 100%;
    aspect-ratio: 2/3;
    border-radius: 24px;
    overflow: hidden;
  }
  .julia-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
  }

  .julia-photo-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: rgba(139,38,38,0.15);
    border: 1px solid rgba(139,38,38,0.25);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem; font-weight: 700;
    color: #B03A3A;
  }

  .julia-badge {
    position: absolute;
    bottom: -16px; right: -16px;
    background: #8B2626;
    border-radius: 16px;
    padding: 14px 20px;
    font-size: 0.72rem;
    font-weight: 600;
    color: white;
    letter-spacing: 0.04em;
    box-shadow: 0 8px 24px rgba(139,38,38,0.4);
    line-height: 1.4;
  }
  .julia-badge span { display: block; font-weight: 400; opacity: 0.75; font-size: 0.65rem; margin-top: 2px; }

  .julia-content .section-label { color: rgba(139,38,38,0.85); }

  .julia-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    line-height: 1.1;
    color: #F5F0E8;
    margin-bottom: 28px;
  }
  .julia-title em { font-style: italic; color: #B03A3A; }

  .julia-content p {
    font-size: 1rem;
    color: rgba(245,240,232,0.72);
    line-height: 1.9;
    margin-bottom: 20px;
  }
  .julia-content p strong { color: #F5F0E8; font-weight: 500; }

  .julia-stats {
    display: flex;
    gap: 32px;
    margin-top: 36px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.07);
  }

  .julia-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: #F5F0E8;
    line-height: 1;
    margin-bottom: 4px;
  }
  .julia-stat-num span { color: #B03A3A; }
  .julia-stat-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(245,240,232,0.35);
  }

  /* ── FOUNDER QUOTE ── */
  .founder-quote-section {
    padding: 140px 80px;
    background: #F5F0E8;
    border-top: 1px solid #DDD5C8;
    border-bottom: 1px solid #DDD5C8;
    position: relative;
    z-index: 1;
    text-align: center;
    overflow: hidden;
  }

  .founder-quote-inner {
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .founder-quote-bg-mark {
    position: absolute;
    font-family: 'Playfair Display', serif;
    font-size: 36vw;
    font-weight: 900;
    color: rgba(139,38,38,0.09);
    line-height: 0.75;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    user-select: none;
    z-index: 0;
  }

  .founder-quote-accent { display: none; }

  .founder-quote-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.45;
    color: #1A1410;
    margin-bottom: 0;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 1;
  }
  .founder-quote-text em { color: #8B2626; }

  .founder-quote-rule {
    width: 1px;
    height: 52px;
    background: #DDD5C8;
    margin: 44px auto;
  }

  .founder-quote-author {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    position: relative;
    z-index: 1;
  }

  .founder-quote-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(139,38,38,0.15), rgba(139,38,38,0.05));
    border: 1px solid rgba(139,38,38,0.2);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1rem; font-weight: 700;
    color: #8B2626;
    flex-shrink: 0;
  }

  .founder-quote-author strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: #1A1410;
    text-align: left;
  }
  .founder-quote-author span {
    font-size: 0.74rem;
    color: #6B5F52;
    text-align: left;
    display: block;
    margin-top: 2px;
  }

  .pricing-outcomes {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
  }

  .outcome-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 22px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    transition: background 0.2s, border-color 0.2s;
  }
  .outcome-item:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(139,38,38,0.25);
  }

  .outcome-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 900;
    font-style: italic;
    color: rgba(139,38,38,0.5);
    flex-shrink: 0;
    min-width: 28px;
    margin-top: 2px;
  }

  .outcome-text strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #F5F0E8;
    margin-bottom: 4px;
  }

  .outcome-text span {
    font-size: 0.84rem;
    color: rgba(245,240,232,0.5);
    line-height: 1.6;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {

    /* HEADER */
    header { padding: 14px 20px; }
    .header-cta { font-size: 0.72rem; padding: 8px 16px; }

    /* HERO */
    .hero, .for-section, .phases-section, .how-section, .founder-quote-section, .pricing-section, .faq-section, .mentors-section, .julia-section, .final-cta { padding: 60px 24px; }
    .hero { padding-top: 100px; }
    .hero-bg-text { font-size: 28vw; }
    .hero-title { font-size: 2.4rem; line-height: 1.1; }
    .hero-sub { font-size: 1rem; }
    .hero-ready { font-size: 1rem; }
    .cta-group { flex-direction: column; align-items: stretch; }
    .btn-primary { justify-content: center; padding: 16px 28px; }
    .spots-badge { justify-content: center; }

    /* PROOF STRIP */
    .proof-strip { padding: 40px 24px; grid-template-columns: repeat(2, 1fr); gap: 28px 0; }
    .proof-item + .proof-item::before { display: none; }
    .proof-item { padding: 0 16px; }
    .proof-num { font-size: 2.2rem; }

    /* FOR WHOM */
    .for-grid { grid-template-columns: 1fr; }
    .for-item { padding: 18px 20px; }

    /* PHASES */
    .phases-grid { grid-template-columns: 1fr; border-radius: 16px; }
    .phase-item { padding: 32px 24px; }
    .phase-number { font-size: 3rem; margin-bottom: 16px; }
    .phase-item h3 { font-size: 1.3rem; }

    /* FOUNDER QUOTE */
    .founder-quote-section { padding: 80px 24px; }
    .founder-quote-bg-mark { font-size: 40vw; }
    .founder-quote-rule { height: 36px; margin: 28px auto; }

    /* HOW IT WORKS */
    .timeline { max-width: 100%; }
    .timeline-item { gap: 20px; padding: 24px 0; }
    .timeline-node { width: 40px; height: 40px; min-width: 40px; font-size: 0.9rem; }
    .timeline::before { left: 20px; }
    .timeline-content h3 { font-size: 1.1rem; }
    .timeline-content p { font-size: 0.92rem; }

    /* ITCONVERT PERK */
    .perk-section { padding: 60px 24px; }
    .perk-content { grid-template-columns: 1fr; gap: 28px; }
    .perk-features { padding: 22px 18px; gap: 14px; }

    /* PRICING */
    .pricing-inner { grid-template-columns: 1fr; gap: 32px; }
    .pricing-card { padding: 32px 24px; }
    .price-amount { font-size: 3rem; }
    .price-amount sup { font-size: 1.2rem; }
    .wyg-item { padding: 12px 14px; }

    /* JULIA */
    .julia-inner { grid-template-columns: 1fr; gap: 40px; margin: 0 auto; }
    .julia-photo { aspect-ratio: 1/1; }
    .julia-badge { bottom: 12px; right: 12px; }
    .julia-stats { flex-wrap: wrap; gap: 24px; }
    .julia-stat-num { font-size: 1.6rem; }

    /* FAQ */
    .faq-grid { grid-template-columns: 1fr; }
    .faq-item { padding: 24px; }
    .faq-q { font-size: 1rem; }

    /* FINAL CTA */
    .btn-primary-light { padding: 16px 32px; width: 100%; justify-content: center; }

    /* SHARED */
    .section-title { font-size: 2rem; }
    .mentors-grid { grid-template-columns: 1fr; }
    .reviews-masonry { columns: 1; }
    .reviews-header { grid-template-columns: 1fr; }
    .about-title { font-size: 2rem; }

    /* FOOTER */
    footer { flex-direction: column; align-items: center; gap: 10px; text-align: center; padding: 24px; }
  }

  /* ── SETUP SECTION ── */
  .setup-section {
    padding: 100px 80px;
    background: #F5F0E8;
    position: relative;
    z-index: 1;
    border-top: 1px solid #DDD5C8;
    /* overflow: hidden removed — was clipping card hover transforms */
  }

  .setup-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 64px;
  }

  .setup-intro-right {
    padding-bottom: 4px;
  }

  .setup-lead {
    font-size: 1.1rem;
    color: #6B5F52;
    line-height: 1.85;
    max-width: 480px;
  }
  .setup-lead strong { color: #1A1410; font-weight: 500; }

  .setup-headline-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139,38,38,0.07);
    border: 1px solid rgba(139,38,38,0.18);
    border-radius: 100px;
    padding: 7px 16px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #8B2626;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 52px;
  }

  .setup-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 16px;
  }

  .setup-grid-bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .setup-card {
    background: #FFFFFF;
    border: 1px solid #DDD5C8;
    border-radius: 20px;
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  }
  .setup-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 52px rgba(26,20,16,0.1);
    border-color: rgba(139,38,38,0.2);
  }

  /* Accent bar on hover */
  .setup-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #8B2626, #B03A3A);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
  }
  .setup-card:hover::before { transform: scaleX(1); }

  /* Large watermark number */
  .setup-card-num {
    position: absolute;
    bottom: -8px; right: 16px;
    font-family: 'Playfair Display', serif;
    font-size: 7rem;
    font-weight: 900;
    font-style: italic;
    color: rgba(139,38,38,0.05);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    transition: color 0.3s;
  }
  .setup-card:hover .setup-card-num { color: rgba(139,38,38,0.08); }

  .setup-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: rgba(139,38,38,0.07);
    border: 1px solid rgba(139,38,38,0.14);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 22px;
    font-size: 1.2rem;
    transition: background 0.2s, border-color 0.2s;
  }
  .setup-card:hover .setup-icon {
    background: rgba(139,38,38,0.12);
    border-color: rgba(139,38,38,0.25);
  }

  .setup-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1A1410;
    line-height: 1.2;
    margin-bottom: 12px;
  }

  .setup-card p {
    font-size: 0.92rem;
    color: #6B5F52;
    line-height: 1.8;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
  }
  .setup-card p strong { color: #1A1410; font-weight: 500; }

  /* Featured card — GTM / Operators */
  .setup-card--featured {
    background: #1A1410;
    border-color: transparent;
    grid-column: span 1;
  }
  .setup-card--featured::before {
    background: linear-gradient(90deg, #8B2626, #B03A3A);
  }
  .setup-card--featured .setup-icon {
    background: rgba(139,38,38,0.2);
    border-color: rgba(139,38,38,0.35);
  }
  .setup-card--featured h3 { color: #F5F0E8; }
  .setup-card--featured p { color: rgba(245,240,232,0.65); }
  .setup-card--featured p strong { color: #F5F0E8; }
  .setup-card--featured .setup-card-num { color: rgba(139,38,38,0.12); }
  .setup-card--featured:hover .setup-card-num { color: rgba(139,38,38,0.2); }

  .setup-bottom-note {
    margin-top: 40px;
    padding: 24px 32px;
    background: #1A1410;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }

  .setup-bottom-note p {
    font-size: 0.96rem;
    color: rgba(245,240,232,0.72);
    line-height: 1.7;
    margin-bottom: 0;
  }
  .setup-bottom-note p strong { color: #F5F0E8; font-weight: 500; }

  .setup-bottom-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #8B2626;
    color: white;
    padding: 12px 28px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    flex-shrink: 0;
  }
  .setup-bottom-cta:hover { background: #6E1E1E; transform: translateY(-1px); }

  @media (max-width: 900px) {
    .setup-section { padding: 60px 24px; }
    .setup-intro { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
    .setup-grid { grid-template-columns: 1fr; }
    .setup-grid-bottom { grid-template-columns: 1fr; }
    .setup-card { padding: 24px 20px; }
    .setup-card-num { font-size: 3.5rem; }
    .setup-card h3 { font-size: 1.1rem; }
    .setup-lead { font-size: 1rem; }
    .setup-bottom-note { flex-direction: column; align-items: flex-start; gap: 16px; }
    .setup-card--featured { grid-column: span 1; }
  }

