/* ===== JULIA DEN BEST — GIRLY FITNESS LANDING PAGE v2 ===== */

:root {
    --pink: #E91E8C;
    --pink-light: #F472B6;
    --pink-soft: #FDF2F8;
    --pink-bg: #FFF5F9;
    --pink-glow: rgba(233, 30, 140, 0.15);
    --green: #10B981;
    --white: #FFFFFF;
    --gray-light: #F9FAFB;
    --gray: #F3F4F6;
    --gray-text: #6B7280;
    --gray-dark: #374151;
    --text: #1F2937;
    --radius: 16px;
    --radius-sm: 12px;
    --shadow: 0 4px 24px rgba(233, 30, 140, 0.08);
    --shadow-lg: 0 8px 40px rgba(233, 30, 140, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    max-width: 100vw;
}
img, video { max-width: 100%; height: auto; }
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.2; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.highlight {
    background: linear-gradient(135deg, var(--pink), var(--pink-light));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 14px 32px; border-radius: 50px; font-family: 'Inter', sans-serif;
    font-weight: 600; font-size: 16px; cursor: pointer; border: none;
    transition: var(--transition); text-decoration: none;
}
.btn-primary {
    background: linear-gradient(135deg, var(--pink), var(--pink-light));
    color: var(--white); box-shadow: 0 4px 20px rgba(233, 30, 140, 0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(233, 30, 140, 0.4); }
.btn-secondary { background: var(--white); color: var(--pink); border: 2px solid var(--pink-light); }
.btn-secondary:hover { background: var(--pink-soft); }
.btn-hero { padding: 18px 40px; font-size: 18px; }
.btn-sm { padding: 10px 24px; font-size: 14px; }

/* Language Switch */
.lang-switch {
    display: flex; border: 2px solid var(--gray); border-radius: 8px; overflow: hidden;
}
.lang-btn {
    padding: 6px 12px; font-size: 13px; font-weight: 600; border: none;
    background: var(--white); color: var(--gray-text); cursor: pointer;
    font-family: 'Inter', sans-serif; transition: all 0.2s;
}
.lang-btn.active { background: var(--pink); color: var(--white); }
.lang-btn:hover:not(.active) { background: var(--pink-soft); }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(255,255,255,0.92); backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(233, 30, 140, 0.08);
    padding: 12px 0;
}
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-brand {
    font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700;
    color: var(--text); text-decoration: none;
}

/* ===== HERO ===== */
.hero {
    padding-top: 80px;
    background: linear-gradient(135deg, #FDF2F8 0%, #FCE7F3 30%, #FBCFE8 60%, #F9A8D4 100%);
    overflow: hidden;
}
.hero-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
    align-items: center; padding: 60px 0 80px;
}
.hero-text { position: relative; z-index: 2; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--white); color: var(--pink); padding: 8px 20px;
    border-radius: 50px; font-size: 13px; font-weight: 600; margin-bottom: 20px;
    box-shadow: var(--shadow);
}
.badge-dot {
    width: 8px; height: 8px; background: var(--green); border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero h1 {
    font-size: clamp(28px, 4vw, 48px); color: var(--text); margin-bottom: 16px;
    letter-spacing: -0.02em; text-wrap: balance; hyphens: none; -webkit-hyphens: none;
    word-break: normal; overflow-wrap: normal;
}
.hero-subtitle {
    font-size: clamp(15px, 1.8vw, 18px); color: var(--gray-dark);
    line-height: 1.7; margin-bottom: 28px;
    hyphens: none; -webkit-hyphens: none; text-wrap: pretty;
}
.hero-subtitle strong { color: var(--text); }
/* Hero USP bar */
.hero-usp-bar {
    display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px;
}
.usp-item {
    display: flex; align-items: center; gap: 12px;
    font-size: 15px; font-weight: 500; color: var(--text);
    line-height: 1.4;
}
.usp-item svg { flex-shrink: 0; }
.hero-cta-group { margin-bottom: 32px; }
.hero-guarantee {
    display: flex; align-items: center; gap: 8px;
    margin-top: 12px; font-size: 14px; color: var(--green); font-weight: 500;
}
.hero-stats {
    display: flex; gap: 0;
    background: var(--white);
    border-radius: 16px;
    padding: 18px 12px;
    box-shadow: 0 4px 20px rgba(233, 30, 140, 0.08);
    margin-top: 8px;
}
.stat { text-align: center; flex: 1; position: relative; }
.stat + .stat::before {
    content: ''; position: absolute; left: 0; top: 20%; bottom: 20%;
    width: 1px; background: #F3E8F0;
}
.stat-number {
    display: block; font-family: 'Inter', sans-serif;
    font-size: 30px; font-weight: 800; color: var(--pink);
    line-height: 1.1; letter-spacing: -0.02em;
}
.stat-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-top: 6px;
    letter-spacing: 0.01em;
    line-height: 1.3;
}

/* Hero Image */
.hero-image {
    position: relative;
    /* Stretch to match the text column so the photo doesn't float low when
       the text column is tall (USP bar + CTA + stats). min-height keeps it
       tall enough on short text columns (tablet-ish). */
    align-self: stretch;
    min-height: 480px;
}
.hero-img-wrapper {
    /* Absolute fill so the image can't push the grid row taller than the
       text column — the photo crops naturally to fit with object-fit cover. */
    position: absolute;
    inset: 0;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.hero-img-wrapper img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    object-position: center 22%;
}
/* Dropzone for hero photo (shown when no image file exists) */
.hero-dropzone {
    display: none; min-height: 400px;
    align-items: center; justify-content: center;
    background: #fff;
    border: 3px dashed var(--pink-light); border-radius: 24px;
    cursor: pointer; transition: all 0.3s;
    box-shadow: var(--shadow-lg);
}
.hero-dropzone.drag-active { background: var(--pink-soft); border-color: var(--pink); }
.dropzone-content { text-align: center; padding: 32px 20px; }
.dropzone-icon { font-size: 56px; display: block; margin-bottom: 16px; }
.dropzone-content p { font-size: 16px; color: var(--pink); font-weight: 600; line-height: 1.6; }
.dropzone-content small { color: var(--gray-text); font-weight: 400; font-size: 14px; }

.hero-float-card {
    position: absolute; background: var(--white); border-radius: 14px;
    padding: 12px 16px; display: flex; align-items: center; gap: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1); font-size: 13px;
    animation: float 4s ease-in-out infinite;
}
.float-card-1 { top: 16%; left: -24px; }
.float-card-2 { bottom: 16%; right: -24px; animation-delay: 2s; }
.float-emoji { font-size: 24px; }
.hero-float-card strong { display: block; font-size: 14px; }
.hero-float-card span { color: var(--gray-text); font-size: 12px; }
@keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ===== SOCIAL PROOF TICKER ===== */
.social-proof-bar {
    background: var(--white); border-bottom: 1px solid var(--gray);
    padding: 14px 0; overflow: hidden;
}
.ticker-track { overflow: hidden; white-space: nowrap; }
.ticker-content {
    display: inline-block; animation: ticker 30s linear infinite;
}
.ticker-item { font-size: 14px; color: var(--gray-dark); }
.ticker-sep { color: var(--pink-light); margin: 0 16px; font-size: 18px; }
.proof-stars { color: #FBBF24; font-size: 14px; margin-right: 4px; }
@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== EMPATHY SECTION ===== */
.empathy-section { padding: 80px 0; background: var(--white); }
.empathy-card {
    background: var(--gray-light); border-radius: 24px;
    padding: 48px; max-width: 800px; margin: 0 auto;
}
.empathy-card h2 { text-align: center; font-size: 32px; margin-bottom: 32px; }
.empathy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.empathy-item {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 12px 16px; border-radius: var(--radius-sm);
}
.empathy-item.negative { background: #FEF2F2; }
.empathy-item.positive { background: #F0FDF4; }
.empathy-x { color: #EF4444; font-weight: 700; font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.empathy-check { color: var(--green); font-weight: 700; font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.empathy-item p { font-size: 14px; line-height: 1.5; }
.empathy-divider {
    text-align: center; margin: 32px 0; position: relative;
}
.empathy-divider::before {
    content: ''; position: absolute; top: 50%; left: 0; right: 0;
    height: 1px; background: #E5E7EB;
}
.empathy-divider span {
    position: relative; background: var(--gray-light);
    padding: 0 20px; font-weight: 600; color: var(--pink);
    font-size: 16px;
}

/* ===== GUARANTEE BANNER ===== */
.guarantee-banner { padding: 40px 0; background: #F0FDF4; }
.guarantee-content {
    display: flex; align-items: center; gap: 20px;
    max-width: 700px; margin: 0 auto;
}
.guarantee-shield { flex-shrink: 0; }
.guarantee-content h3 { font-size: 20px; margin-bottom: 4px; color: #065F46; }
.guarantee-content p { font-size: 14px; color: #047857; line-height: 1.6; }

/* ===== QUIZ SECTION ===== */
.quiz-section { padding: 80px 0; background: var(--pink-bg); }
.quiz-wrapper {
    background: var(--white); border-radius: 24px; padding: 48px;
    box-shadow: var(--shadow-lg); max-width: 700px; margin: 0 auto;
}
.quiz-header { text-align: center; margin-bottom: 40px; }
.quiz-header h2 { font-size: 28px; margin-bottom: 8px; }
.quiz-header p { color: var(--gray-text); font-size: 16px; }
.progress-bar { width: 100%; height: 6px; background: var(--gray); border-radius: 3px; margin-top: 24px; overflow: hidden; }
.progress-fill { height: 100%; background: linear-gradient(90deg, var(--pink), var(--pink-light)); border-radius: 3px; transition: width 0.4s ease; width: 12.5%; }
.progress-text { display: block; text-align: center; font-size: 13px; color: var(--gray-text); margin-top: 8px; }

.quiz-step { display: none; animation: fadeIn 0.4s ease; }
.quiz-step.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.quiz-step h3 { font-size: 22px; margin-bottom: 8px; text-align: center; }
.step-subtitle { text-align: center; color: var(--gray-text); margin-bottom: 24px; font-size: 15px; }

.options-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.option-card { cursor: pointer; }
.option-card input { display: none; }
.option-content {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    padding: 20px 16px; border: 2px solid var(--gray); border-radius: var(--radius-sm);
    text-align: center; transition: var(--transition); background: var(--white);
}
.option-card input:checked + .option-content { border-color: var(--pink); background: var(--pink-soft); box-shadow: 0 0 0 3px var(--pink-glow); }
.option-content:hover { border-color: var(--pink-light); background: var(--pink-soft); }
.option-emoji { font-size: 32px; }
.option-text { font-weight: 500; font-size: 15px; }

.scale-options { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.scale-card { cursor: pointer; }
.scale-card input { display: none; }
.scale-content { display: grid; grid-template-columns: 48px 1fr; grid-template-rows: auto auto; gap: 0 12px; padding: 16px; border: 2px solid var(--gray); border-radius: var(--radius-sm); transition: var(--transition); }
.scale-card input:checked + .scale-content { border-color: var(--pink); background: var(--pink-soft); }
.scale-content:hover { border-color: var(--pink-light); }
.scale-number { grid-row: 1 / 3; display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: var(--pink-soft); color: var(--pink); border-radius: 50%; font-weight: 700; font-size: 18px; align-self: center; }
.scale-label { font-weight: 600; font-size: 15px; }
.scale-desc { font-size: 13px; color: var(--gray-text); line-height: 1.4; }

.quiz-textarea { width: 100%; min-height: 120px; padding: 16px; border: 2px solid var(--gray); border-radius: var(--radius-sm); font-family: 'Inter', sans-serif; font-size: 15px; resize: vertical; transition: var(--transition); margin-top: 24px; }
.quiz-textarea:focus { outline: none; border-color: var(--pink); box-shadow: 0 0 0 3px var(--pink-glow); }

.commitment-section { margin-top: 24px; }
.commitment-card { text-align: center; padding: 40px 24px; background: linear-gradient(135deg, var(--pink-soft), #FCE7F3); border-radius: var(--radius); border: 2px solid var(--pink-light); }
.commitment-emoji { font-size: 48px; display: block; margin-bottom: 16px; }
.commitment-card h4 { font-size: 24px; margin-bottom: 8px; }
.commitment-card p { color: var(--gray-dark); margin-bottom: 24px; }
.btn-commitment { cursor: pointer; }
.btn-commitment input { display: none; }

.contact-form { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.form-group label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 6px; color: var(--gray-dark); }
.form-group input { width: 100%; padding: 14px 16px; border: 2px solid var(--gray); border-radius: var(--radius-sm); font-family: 'Inter', sans-serif; font-size: 15px; transition: var(--transition); }
.form-group input:focus { outline: none; border-color: var(--pink); box-shadow: 0 0 0 3px var(--pink-glow); }
.form-group input::placeholder { color: #D1D5DB; }
.field-error { color: #E91E8C; font-size: 13px; margin-top: 6px; line-height: 1.35; font-weight: 500; }

.quiz-nav { display: flex; justify-content: space-between; margin-top: 32px; gap: 12px; }
.quiz-nav .btn { min-width: 140px; }
.btn-submit { width: 100%; padding: 18px; font-size: 18px; }

.quiz-trust { display: flex; flex-direction: column; gap: 8px; margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--gray); }
.quiz-trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray-text); }

/* ===== REVIEWS ===== */
.reviews-section { padding: 80px 0; background: var(--white); }
.reviews-section h2 { text-align: center; font-size: 32px; margin-bottom: 40px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { background: var(--pink-soft); border-radius: var(--radius); padding: 28px; border: 1px solid #FCE7F3; }
.review-stars { color: #FBBF24; font-size: 18px; margin-bottom: 12px; }
.review-text { font-size: 15px; line-height: 1.6; color: var(--gray-dark); margin-bottom: 16px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 40px; height: 40px; background: linear-gradient(135deg, var(--pink), var(--pink-light)); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; }
.review-author strong { display: block; font-size: 14px; }
.review-author span { font-size: 13px; color: var(--gray-text); }

/* ===== TRANSFORMATIONS ===== */
.transformations-section { padding: 80px 0; background: var(--pink-bg); }
.transformations-section h2 { text-align: center; font-size: 32px; margin-bottom: 8px; }
.section-subtitle { text-align: center; color: var(--gray-text); margin-bottom: 48px; font-size: 16px; }
.transformations-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.transformation-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.before-after { display: flex; align-items: center; gap: 8px; padding: 20px; }
.ba-side { flex: 1; text-align: center; }
.ba-label { display: block; font-size: 12px; font-weight: 600; color: var(--gray-text); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px; }
.ba-placeholder { height: 140px; background: var(--gray); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--gray-text); }
.ba-placeholder.glow { background: linear-gradient(135deg, var(--pink-soft), #FCE7F3); color: var(--pink); font-weight: 600; }
.ba-arrow { font-size: 24px; color: var(--pink); font-weight: 700; }
.transformation-info { padding: 0 20px 20px; }
.transformation-info h4 { font-size: 18px; margin-bottom: 8px; }
.transformation-stats { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.t-stat { background: var(--pink-soft); color: var(--pink); padding: 4px 12px; border-radius: 50px; font-size: 13px; font-weight: 600; }
.transformation-info p { font-size: 14px; color: var(--gray-text); font-style: italic; }

/* ===== COMMUNITY SECTION ===== */
.community-section { padding: 80px 0; background: var(--white); }
.community-card {
    display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px;
    align-items: center; background: var(--pink-soft);
    border-radius: 24px; padding: 48px; border: 2px solid #FCE7F3;
}
.community-text h2 { font-size: 28px; margin-bottom: 16px; }
.community-text p { font-size: 15px; color: var(--gray-dark); line-height: 1.7; margin-bottom: 24px; }
.community-perks { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.community-perks li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; line-height: 1.5; }
.community-perks svg { flex-shrink: 0; margin-top: 2px; }
.community-visual { text-align: center; }
.community-avatars { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 16px; }
.c-avatar {
    width: 48px; height: 48px; border-radius: 50%; color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 18px; border: 3px solid var(--white);
}
.c-avatar-more {
    width: 48px; height: 48px; border-radius: 50%; background: var(--pink);
    color: var(--white); display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 14px; border: 3px solid var(--white);
}
.community-count { font-size: 14px; color: var(--gray-text); font-weight: 500; }

/* ===== PROGRAM SECTION ===== */
.program-section { padding: 80px 0; background: var(--gray-light); }
.program-header { text-align: center; margin-bottom: 48px; }
.program-badge { display: inline-block; background: var(--pink-soft); color: var(--pink); padding: 6px 20px; border-radius: 50px; font-size: 14px; font-weight: 600; margin-bottom: 16px; }
.program-header h2 { font-size: 32px; margin-bottom: 8px; }
/* ===== TIMELINE ===== */
.timeline {
    position: relative;
    max-width: 760px;
    margin: 0 auto 64px;
    padding: 12px 0 24px;
}
/* Static faint track */
.timeline::before {
    content: '';
    position: absolute;
    left: 38px;
    top: 24px;
    bottom: 24px;
    width: 3px;
    background: #FCE7F3;
    border-radius: 3px;
}
/* Scroll-driven fill (JS updates --fill from 0 to 1) */
.timeline-fill {
    position: absolute;
    left: 38px;
    top: 24px;
    bottom: 24px;
    width: 3px;
    border-radius: 3px;
    transform-origin: top;
    transform: scaleY(var(--fill, 0));
    background: linear-gradient(to bottom, var(--pink-light), var(--pink) 50%, var(--pink));
    box-shadow: 0 0 14px rgba(233, 30, 140, 0.45);
    will-change: transform;
    transition: transform 0.15s linear;
    pointer-events: none;
    z-index: 1;
}
/* Active dot: past the scroll-fill fill point, turns solid pink */
.timeline-dot {
    transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}
.timeline-dot.is-active {
    background: linear-gradient(135deg, var(--pink), var(--pink-light));
    color: var(--white);
    border-color: var(--white);
    box-shadow: 0 6px 22px rgba(233, 30, 140, 0.45);
    transform: scale(1.06);
}
.timeline-phase-label::before {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.timeline-phase.is-active > .timeline-phase-label::before {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 22px rgba(233, 30, 140, 0.5);
}
@media (prefers-reduced-motion: reduce) {
    .timeline-fill, .timeline-dot, .timeline-phase-label::before { transition: none; }
    .timeline-fill { transform: scaleY(1); }
}
.timeline-phase {
    position: relative;
    margin-bottom: 36px;
}
.timeline-phase-label {
    position: relative;
    padding: 18px 24px 18px 96px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--pink-soft), #FEF6FA);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(233, 30, 140, 0.08);
}
.timeline-phase-label::before {
    content: '❀';
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink), var(--pink-light));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 16px rgba(233, 30, 140, 0.35);
}
.timeline-phase-label .phase-number {
    display: inline-block;
    background: var(--pink);
    color: var(--white);
    padding: 3px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}
.timeline-phase-label h3 {
    font-size: 22px;
    margin-bottom: 4px;
    color: var(--text);
}
.timeline-phase-label p {
    font-size: 14px;
    color: var(--gray-text);
    margin: 0;
}
.timeline-week {
    position: relative;
    padding: 0 0 22px 96px;
    min-height: 60px;
}
.timeline-week:last-child { padding-bottom: 4px; }
.timeline-dot {
    position: absolute;
    left: 18px;
    top: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--pink);
    color: var(--pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 17px;
    box-shadow: 0 4px 14px rgba(233, 30, 140, 0.18);
    z-index: 2;
}
.timeline-week.last-week .timeline-dot {
    background: linear-gradient(135deg, var(--pink), var(--pink-light));
    color: var(--white);
    border-color: var(--white);
    box-shadow: 0 6px 20px rgba(233, 30, 140, 0.4);
}
.timeline-content {
    background: var(--white);
    border-radius: 16px;
    padding: 14px 18px;
    box-shadow: 0 2px 12px rgba(233, 30, 140, 0.06);
    border: 1px solid #FCE7F3;
    transition: var(--transition);
}
.timeline-content:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 22px rgba(233, 30, 140, 0.14);
    border-color: var(--pink-light);
}
.timeline-content h4 {
    font-size: 17px;
    margin-bottom: 4px;
    color: var(--text);
}
.timeline-content p {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.5;
    margin: 0;
}

.program-features { text-align: center; }
.program-features h3 { font-size: 28px; margin-bottom: 32px; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-item { text-align: center; padding: 24px 16px; background: var(--white); border-radius: var(--radius); transition: var(--transition); border: 1px solid var(--gray); }
.feature-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--pink-light); }
.feature-icon { font-size: 36px; display: block; margin-bottom: 12px; }
.feature-item h4 { font-size: 16px; margin-bottom: 8px; }
.feature-item p { font-size: 13px; color: var(--gray-text); line-height: 1.5; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { padding: 80px 0; background: var(--pink-bg); }
.testimonials-section h2 { text-align: center; font-size: 32px; margin-bottom: 40px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: var(--white); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); }
.testimonial-quote { font-family: 'Playfair Display', serif; font-size: 60px; color: var(--pink-light); line-height: 1; margin-bottom: -8px; }
.testimonial-card p { font-size: 15px; line-height: 1.6; color: var(--gray-dark); margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 44px; height: 44px; background: linear-gradient(135deg, var(--pink), var(--pink-light)); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; }
.testimonial-author strong { display: block; font-size: 15px; }
.testimonial-author span { font-size: 13px; color: var(--gray-text); }

/* ===== CTA SECTION ===== */
.cta-section { padding: 80px 0; background: linear-gradient(135deg, #FDF2F8, #FCE7F3, #FBCFE8); text-align: center; }
.cta-section h2 { font-size: 36px; margin-bottom: 12px; }
.cta-section p { font-size: 18px; color: var(--gray-dark); margin-bottom: 32px; }
.cta-guarantee { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 16px; font-size: 14px; color: var(--green); font-weight: 500; }

/* ===== FOOTER ===== */
.footer { background: var(--text); color: var(--white); padding: 48px 0 24px; }
.footer-content { display: flex; justify-content: space-between; align-items: start; margin-bottom: 32px; }
.footer-brand h3 { font-size: 20px; margin-bottom: 8px; }
.footer-brand p { font-size: 14px; color: #9CA3AF; max-width: 300px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: #D1D5DB; text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: var(--pink-light); }
.footer-bottom { border-top: 1px solid #374151; padding-top: 20px; text-align: center; font-size: 13px; color: #6B7280; }

/* ===== MODAL ===== */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); backdrop-filter: blur(4px); display: none; align-items: center; justify-content: center; z-index: 1000; padding: 20px; overflow-y: auto; }
.modal-overlay.active { display: flex; }
.modal-content { background: var(--white); border-radius: 24px; padding: 48px; text-align: center; max-width: 480px; width: 100%; animation: modalIn 0.3s ease; max-height: 92vh; overflow-y: auto; }

/* ===== ALMOST DONE MODAL ===== */
.almost-done-modal { position: relative; text-align: center; padding: 36px 28px 28px; max-width: 540px; background: linear-gradient(180deg, #FFF5F9 0%, var(--white) 130px); }
.modal-close-x {
    position: absolute; top: 12px; right: 12px;
    background: var(--white); border: 1px solid var(--gray);
    width: 34px; height: 34px; border-radius: 50%;
    font-size: 20px; line-height: 1; color: var(--gray-text);
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.modal-close-x:hover { background: var(--pink-soft); color: var(--pink); border-color: var(--pink-light); }
.almost-done-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(16, 185, 129, 0.08);
    color: var(--green);
    padding: 6px 14px; border-radius: 50px;
    font-size: 13px; font-weight: 600;
    margin-bottom: 14px;
}
.almost-done-title {
    font-size: 28px; line-height: 1.15;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
    text-wrap: balance;
    hyphens: none; -webkit-hyphens: none;
}
.almost-done-sub {
    font-size: 15px; color: var(--gray-dark);
    margin-bottom: 22px; line-height: 1.5;
}
.success-reminder-card {
    display: flex; align-items: center; gap: 14px;
    background: var(--pink-soft);
    border: 1px solid #FCE7F3;
    border-radius: 16px;
    padding: 14px 16px;
    margin-bottom: 18px;
    text-align: left;
}
.reminder-icon { font-size: 32px; flex-shrink: 0; }
.reminder-text { display: flex; flex-direction: column; gap: 2px; }
.reminder-text strong { font-size: 14px; color: var(--text); line-height: 1.35; }
.reminder-text span { font-size: 13px; color: var(--gray-text); line-height: 1.4; }
.success-cta-btn { width: 100%; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.04em; font-size: 15px; }
.almost-done-modal [hidden] { display: none !important; }
.success-disclaimer {
    font-size: 12px; color: var(--gray-text);
    margin-bottom: 24px; line-height: 1.5;
    text-align: left;
    padding: 0 4px;
}
.almost-done-divider {
    position: relative; text-align: center;
    margin: 8px 0 18px;
    font-size: 13px; color: var(--gray-text); font-weight: 500;
}
.almost-done-divider::before,
.almost-done-divider::after {
    content: ''; position: absolute; top: 50%;
    width: calc(50% - 120px); height: 1px;
    background: linear-gradient(90deg, transparent, var(--pink-light), transparent);
}
.almost-done-divider::before { left: 0; }
.almost-done-divider::after { right: 0; }
.almost-done-divider span { padding: 0 12px; background: transparent; display: inline-block; max-width: 230px; }

/* Video card */
.video-card {
    cursor: pointer;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 28px rgba(233, 30, 140, 0.14);
    transition: var(--transition);
    background: var(--white);
    border: 1px solid #FCE7F3;
    text-align: left;
}
.video-card:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(233, 30, 140, 0.22); }
.video-thumb {
    position: relative; aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, var(--pink-soft), #FEF6FA);
    overflow: hidden;
}
.video-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; object-position: center 18%; }
.video-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.0) 40%, rgba(233,30,140,0.25) 100%);
    display: flex; align-items: center; justify-content: center;
}
.video-play-button {
    width: 68px; height: 68px; border-radius: 50%;
    background: var(--white);
    color: var(--pink);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
    padding-left: 4px;
    transition: transform 0.25s ease;
}
.video-card:hover .video-play-button { transform: scale(1.08); }
.video-caption { padding: 12px 16px; display: flex; flex-direction: column; gap: 2px; }
.video-caption strong { font-size: 15px; color: var(--text); }
.video-caption span { font-size: 12px; color: var(--gray-text); }

/* Availability form */
.availability-form {
    background: var(--white);
    border: 1px solid var(--pink-light);
    border-radius: 18px;
    padding: 18px 18px 20px;
    margin: 4px 0 16px;
    text-align: left;
    box-shadow: 0 4px 22px rgba(233, 30, 140, 0.1);
}
.availability-form h3 {
    font-size: 18px; margin-bottom: 14px; color: var(--text);
}
.av-field { margin-bottom: 14px; display: flex; flex-direction: column; gap: 8px; }
.av-field-label { font-size: 13px; font-weight: 600; color: var(--gray-dark); }
.av-days { display: flex; flex-wrap: wrap; gap: 8px; }
.av-days label {
    position: relative;
    cursor: pointer;
}
.av-days label input { position: absolute; opacity: 0; pointer-events: none; }
.av-days label span {
    display: inline-block;
    padding: 8px 14px;
    border: 1.5px solid var(--gray);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    background: var(--white);
    color: var(--gray-dark);
    transition: var(--transition);
    min-width: 46px; text-align: center;
}
.av-days label:hover span { border-color: var(--pink-light); color: var(--pink); }
.av-days label input:checked + span {
    background: var(--pink); color: var(--white); border-color: var(--pink);
    box-shadow: 0 3px 12px rgba(233, 30, 140, 0.25);
}
.av-select, .av-textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--gray);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text);
    background: var(--white);
    transition: var(--transition);
    resize: vertical;
}
.av-select:focus, .av-textarea:focus { border-color: var(--pink); outline: none; box-shadow: 0 0 0 4px rgba(233, 30, 140, 0.12); }
.availability-form .btn { width: 100%; margin-top: 4px; }
.av-success {
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    padding: 16px 12px;
    background: var(--pink-soft);
    border-radius: 14px;
    text-align: center;
    animation: modalIn 0.3s ease;
}
.av-success-icon { font-size: 32px; }
.av-success strong { font-size: 15px; color: var(--text); }
.av-success span { font-size: 13px; color: var(--gray-text); }
@keyframes modalIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
.modal-icon { font-size: 56px; margin-bottom: 16px; }
.modal-content h2 { font-size: 28px; margin-bottom: 12px; }
.modal-content p { color: var(--gray-dark); margin-bottom: 8px; }
.modal-subtitle { font-size: 14px; color: var(--gray-text); margin-bottom: 24px !important; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
    /* Revert desktop's absolute-fill positioning — on mobile the image should
       flow normally and size from its own aspect ratio. */
    .hero-image { max-width: 360px; margin: 0 auto; min-height: 0; align-self: auto; }
    .hero-img-wrapper { position: static; inset: auto; }
    .hero-stats { justify-content: center; }
    .hero-cta-group { display: flex; flex-direction: column; align-items: center; }
    .hero-guarantee { justify-content: center; }
    .float-card-1 { left: -8px; }
    .float-card-2 { right: -8px; }
    .empathy-grid { grid-template-columns: 1fr; }
    .empathy-card { padding: 32px 20px; }
    .guarantee-content { flex-direction: column; text-align: center; }
    .community-card { grid-template-columns: 1fr; }
    .reviews-grid, .transformations-grid, .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .container { padding: 0 28px; }
    .hero { padding-top: 60px; }
    .hero-grid { padding-top: 28px; padding-bottom: 40px; gap: 28px; text-align: left; }
    .hero-text { text-align: left; }
    .hero h1 {
        font-size: 30px; line-height: 1.1; letter-spacing: -0.025em;
        margin-bottom: 14px; font-weight: 700;
    }
    .hero-subtitle { font-size: 15px; line-height: 1.55; margin-bottom: 24px; color: var(--gray-dark); }
    .hero-badge { font-size: 12px; padding: 6px 14px; margin-bottom: 18px; }
    .hero-usp-bar { gap: 14px; margin-bottom: 28px; padding: 0; }
    .usp-item { font-size: 15px; gap: 12px; }
    .hero-stats { flex-direction: row; gap: 20px; flex-wrap: wrap; justify-content: flex-start; margin-top: 4px; }
    .hero-guarantee { justify-content: flex-start; }
    .hero-cta-group { align-items: stretch; }
    .stat-number { font-size: 26px; }
    .stat-label { font-size: 13px; font-weight: 600; color: var(--text); }
    .hero-stats { padding: 14px 10px; gap: 0; flex-wrap: nowrap; justify-content: space-between; }
    .hero-image { max-width: 100%; margin-top: 8px; }
    .hero-img-wrapper { aspect-ratio: 4/5; max-height: none; min-height: 0; height: auto; border-radius: 20px; }
    .hero-img-wrapper img { height: 100%; min-height: 0; max-height: none; object-position: center 30%; }
    .hero-float-card { display: none; }
    .hero-cta-group .btn { width: 100%; }
    .hero-usps li { font-size: 14px; }
    .quiz-wrapper { padding: 18px 12px; border-radius: 14px; }
    .quiz-section { padding: 32px 0; }
    .quiz-header h2 { font-size: 20px; }
    .quiz-header p { font-size: 14px; }
    .quiz-step h3 { font-size: 17px; }
    .options-grid { grid-template-columns: 1fr; gap: 10px; }
    .option-card { padding: 14px; font-size: 14px; }
    .scale-content { grid-template-columns: 40px 1fr; }
    .quiz-nav { flex-direction: column; gap: 8px; }
    .quiz-nav .btn { width: 100%; }
    .features-grid { grid-template-columns: 1fr; }
    .reviews-section, .transformations-section, .program-section, .testimonials-section, .cta-section, .empathy-section, .community-section { padding: 40px 0; }
    .reviews-section h2, .transformations-section h2, .program-header h2, .testimonials-section h2, .cta-section h2, .empathy-card h2, .community-text h2 { font-size: 22px; }
    .section-subtitle, .program-header p, .reviews-section p, .transformations-section p { font-size: 14px; }
    .footer-content { flex-direction: column; gap: 20px; padding: 32px 0; }
    .footer-links { flex-direction: column; gap: 10px; }
    .btn-hero { padding: 13px 20px; font-size: 14px; width: 100%; }
    .btn { padding: 11px 20px; font-size: 14px; }
    .modal-content { padding: 28px 18px; margin: 16px; max-width: calc(100vw - 32px); }
    .modal-content h2 { font-size: 22px; }
    .almost-done-modal { padding: 26px 18px 22px; }
    .almost-done-title { font-size: 22px; }
    .almost-done-sub { font-size: 14px; margin-bottom: 18px; }
    .success-reminder-card { padding: 12px 12px; gap: 10px; }
    .reminder-icon { font-size: 26px; }
    .reminder-text strong { font-size: 13px; }
    .reminder-text span { font-size: 12px; }
    .success-cta-btn { font-size: 14px; letter-spacing: 0.03em; }
    .almost-done-divider::before, .almost-done-divider::after { width: calc(50% - 110px); }
    .video-play-button { width: 56px; height: 56px; }
    .video-caption strong { font-size: 14px; }
    .availability-form { padding: 16px 14px 18px; }
    .availability-form h3 { font-size: 16px; }
    .av-days label span { padding: 7px 12px; font-size: 13px; min-width: 42px; }
    .nav-brand { font-size: 16px; }
    .navbar .container { padding: 0 12px; }
    .navbar { padding: 10px 0; }
    .nav-cta { padding: 9px 14px; font-size: 13px; }
    .lang-switch { gap: 2px; padding: 3px; }
    .lang-btn { padding: 4px 7px; font-size: 12px; }
    /* Empathy & cards */
    .empathy-card, .review-card, .testimonial-card, .transformation-card { padding: 18px 14px; }
    /* Timeline mobile */
    .timeline { padding: 8px 0 16px; }
    .timeline::before { left: 26px; }
    .timeline-fill { left: 26px; }
    .timeline-phase { margin-bottom: 24px; }
    .timeline-phase-label { padding: 14px 16px 14px 72px; border-radius: 16px; margin-bottom: 14px; }
    .timeline-phase-label::before { left: 14px; width: 28px; height: 28px; font-size: 14px; }
    .timeline-phase-label h3 { font-size: 17px; }
    .timeline-phase-label p { font-size: 13px; }
    .timeline-week { padding: 0 0 14px 72px; }
    .timeline-dot { left: 12px; width: 34px; height: 34px; font-size: 14px; border-width: 2px; }
    .timeline-content { padding: 12px 14px; border-radius: 14px; }
    .timeline-content h4 { font-size: 15px; }
    .timeline-content p { font-size: 13px; }
    .empathy-card h2 { margin-bottom: 16px; }
    .empathy-list li { font-size: 14px; }
    /* Text overflow safety — NO hyphens on headings (ugly mid-word breaks) */
    p { overflow-wrap: break-word; word-wrap: break-word; hyphens: auto; }
    h1, h2, h3 { overflow-wrap: break-word; word-wrap: normal; hyphens: none; -webkit-hyphens: none; }
    /* Tickers */
    .social-proof-ticker, .marquee, .social-proof-bar { overflow: hidden; }
    /* Guarantee banner */
    .guarantee-banner { padding: 18px 14px; margin: 0; border-radius: 0; }
    .guarantee-content h3 { font-size: 17px; }
    .guarantee-content p { font-size: 13px; }
    /* Community */
    .community-card { padding: 22px 14px; }
    .community-text h2 { font-size: 22px; }
    .community-avatars { flex-wrap: wrap; gap: 6px; justify-content: center; }
    .community-avatars .avatar { width: 36px; height: 36px; font-size: 14px; }
    /* Progress bar/text */
    .progress-text { font-size: 13px; }
    /* Transformation before/after tighter */
    .transformation-before, .transformation-after { min-height: 100px; }
    /* Photo dropzone smaller */
    .dropzone-icon { font-size: 44px; }
    .dropzone-content p { font-size: 14px; }
}

@media (max-width: 380px) {
    .hero h1 { font-size: 26px; }
    .container { padding: 0 20px; }
    .quiz-wrapper { padding: 16px 10px; }
    .option-card { padding: 12px; font-size: 13px; }
    .nav-cta { padding: 8px 12px; font-size: 12px; }
    .lang-btn { padding: 3px 6px; font-size: 11px; }
    .guarantee-banner { margin: 0; }
}

/* ===== FAQ ===== */
.faq-section { padding: 80px 0; background: var(--pink-soft); }
.faq-header { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.faq-header h2 { font-size: clamp(28px, 3.5vw, 40px); margin: 14px 0 12px; letter-spacing: -0.02em; }
.faq-header .section-subtitle { color: var(--gray-text); font-size: 16px; }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(233, 30, 140, 0.06);
    overflow: hidden;
    transition: box-shadow 0.25s ease;
}
.faq-item[open] { box-shadow: 0 6px 24px rgba(233, 30, 140, 0.12); }
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 56px 20px 22px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    position: relative;
    transition: color 0.2s;
    -webkit-tap-highlight-color: rgba(233, 30, 140, 0.1);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 22px; top: 50%; transform: translateY(-50%);
    width: 28px; height: 28px;
    display: flex; align-items: center; justify-content: center;
    background: var(--pink-soft); color: var(--pink);
    border-radius: 50%; font-size: 20px; font-weight: 600;
    transition: transform 0.25s ease, background 0.25s;
}
.faq-item[open] summary::after { content: '−'; transform: translateY(-50%) rotate(0deg); background: var(--pink); color: var(--white); }
.faq-item summary:hover { color: var(--pink); }
.faq-answer { padding: 0 22px 22px; color: var(--gray-dark); line-height: 1.65; font-size: 15px; }
.faq-answer p { margin: 0; }
@media (max-width: 640px) {
    .faq-section { padding: 48px 0; }
    .faq-header { margin-bottom: 28px; }
    .faq-header h2 { font-size: 24px; }
    .faq-item summary { padding: 16px 48px 16px 18px; font-size: 15px; }
    .faq-item summary::after { right: 14px; width: 26px; height: 26px; font-size: 18px; }
    .faq-answer { padding: 0 18px 18px; font-size: 14px; }
}

/* ===== MOBILE STICKY CTA ===== */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(10px);
    box-shadow: 0 -8px 28px rgba(233, 30, 140, 0.15);
    z-index: 999;
    transform: translateY(110%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-sticky-cta.visible { transform: translateY(0); }
.mobile-sticky-cta .btn {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    font-weight: 700;
    min-height: 52px;
    box-shadow: 0 6px 20px rgba(233, 30, 140, 0.35);
}
@media (max-width: 900px) {
    .mobile-sticky-cta { display: block; }
    /* Make room so sticky CTA doesn't cover footer content */
    body { padding-bottom: 0; }
    footer { padding-bottom: 80px; }
}
/* Hide on quiz/form step to avoid covering the form */
.mobile-sticky-cta.form-active { transform: translateY(110%) !important; }

/* Bigger tap targets on mobile for smooth phone navigation */
@media (max-width: 900px) {
    .btn { min-height: 48px; }
    .nav-cta { min-height: 40px; }
    .option-card { min-height: 48px; }
    a, button { -webkit-tap-highlight-color: rgba(233, 30, 140, 0.2); }
}
