/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #fdf8f5;
    --bg-secondary: #ffffff;
    --bg-card: #ffffff;
    --bg-card-hover: #fef9f6;
    --bg-blush: #faf0ec;
    --bg-hero: linear-gradient(165deg, #fdf6f2 0%, #f8ece6 35%, #f3e4dd 70%, #eeddd5 100%);
    --text-primary: #2c2325;
    --text-secondary: #6b5a5e;
    --text-muted: #a09194;
    --accent: #c4727f;
    --accent-dark: #a85b67;
    --accent-light: #daa0a9;
    --accent-glow: rgba(196, 114, 127, 0.2);
    --accent-subtle: rgba(196, 114, 127, 0.07);
    --rose: #e8b4bc;
    --mauve: #c9a0b0;
    --cream: #f5e6dc;
    --border: rgba(196, 114, 127, 0.1);
    --border-accent: rgba(196, 114, 127, 0.2);
    --shadow-sm: 0 2px 16px rgba(44, 35, 37, 0.04);
    --shadow-md: 0 8px 32px rgba(44, 35, 37, 0.06);
    --shadow-lg: 0 20px 60px rgba(44, 35, 37, 0.08);
    --radius: 14px;
    --radius-lg: 24px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--accent);
    color: #fff;
    text-align: center;
    padding: 11px 16px;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

#banner-countdown {
    font-variant-numeric: tabular-nums;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.live-dot {
    width: 7px;
    height: 7px;
    background: #fff;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.4); }
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    overflow: hidden;
    background: var(--bg-hero);
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 40% at 15% 85%, rgba(232, 180, 188, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 85% 20%, rgba(201, 160, 176, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(245, 230, 220, 0.4) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 780px;
}

/* ---- Hero decorative elements ---- */
.hero-deco {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.hero-deco-ring {
    width: 320px;
    height: 320px;
    border: 1.5px solid rgba(196, 114, 127, 0.12);
    border-radius: 50%;
    top: 8%;
    right: 5%;
}

.hero-deco-dots {
    width: 80px;
    height: 80px;
    bottom: 18%;
    left: 6%;
    background-image: radial-gradient(circle, rgba(196, 114, 127, 0.18) 2px, transparent 2px);
    background-size: 16px 16px;
}

.hero-deco-blob {
    width: 180px;
    height: 180px;
    top: 55%;
    right: 8%;
    background: radial-gradient(ellipse, rgba(232, 180, 188, 0.2) 0%, transparent 70%);
    border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
    animation: blobFloat 8s ease-in-out infinite;
}

.hero-deco-sparkle {
    width: 12px;
    height: 12px;
    top: 22%;
    left: 12%;
    background: var(--accent);
    opacity: 0.15;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: sparkle 4s ease-in-out infinite;
}

@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(10px, -15px) rotate(5deg); }
    66% { transform: translate(-8px, 10px) rotate(-3deg); }
}

@keyframes sparkle {
    0%, 100% { opacity: 0.15; transform: scale(1) rotate(0deg); }
    50% { opacity: 0.3; transform: scale(1.3) rotate(20deg); }
}

@media (max-width: 768px) {
    .hero-deco-ring {
        width: 180px;
        height: 180px;
        top: 5%;
        right: -5%;
    }
    .hero-deco-dots {
        width: 50px;
        height: 50px;
        bottom: 22%;
        left: 3%;
    }
    .hero-deco-blob {
        width: 100px;
        height: 100px;
    }
}

.hero-badge {
    display: inline-block;
    padding: 9px 24px;
    border: 1.5px solid var(--border-accent);
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    color: var(--accent);
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
}

.hero-date {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted, #6b5e5e);
    letter-spacing: 0.04em;
    margin-bottom: 32px;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    font-weight: 500;
    line-height: 1.12;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
    color: var(--text-primary);
}

.highlight {
    color: var(--accent);
    font-style: italic;
    font-weight: 600;
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 48px;
    line-height: 1.75;
    font-weight: 400;
}

/* ===== COUNTDOWN ===== */
.countdown-wrapper {
    margin-bottom: 48px;
}

.countdown-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 16px;
    font-weight: 500;
}

.countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.countdown-block {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(196, 114, 127, 0.12);
    border-radius: 16px;
    padding: 18px 22px;
    min-width: 82px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(44, 35, 37, 0.04);
}

.countdown-num {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1;
}

.countdown-unit {
    display: block;
    font-size: 0.68rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-top: 6px;
    font-weight: 500;
}

.countdown-sep {
    font-size: 1.6rem;
    color: var(--rose);
    font-weight: 300;
}

/* ===== CTA BUTTON ===== */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 17px 38px;
    background: var(--accent);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 24px var(--accent-glow);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
    font-family: var(--font-sans);
}

.cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px var(--accent-glow), 0 0 80px rgba(196, 114, 127, 0.08);
    background: var(--accent-dark);
}

.cta-btn:hover::before { opacity: 1; }

.cta-arrow {
    font-size: 1.15rem;
    transition: var(--transition);
}

.cta-btn:hover .cta-arrow { transform: translateX(4px); }

.cta-note {
    margin-top: 16px;
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 0.04em;
}

/* ===== PAIN POINT SECTION ===== */
.pain {
    padding: 110px 0 100px;
    background: var(--bg-secondary);
}

.pain-intro {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 600px;
    margin: -32px auto 48px;
}

.pain-list {
    max-width: 680px;
    margin: 0 auto 48px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.pain-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.pain-item:last-child {
    border-bottom: none;
}

.pain-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.pain-bullet {
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    margin-top: 7px;
}

.pain-item p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.75;
}

.pain-closer {
    text-align: center;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--accent);
    font-weight: 500;
}

/* ===== FOR YOU SECTION ===== */
.for-you {
    padding: 110px 0;
    background: var(--bg-primary);
}

.foryou-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 880px;
    margin: 0 auto;
}

.foryou-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 24px;
    border-radius: var(--radius);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(16px);
}

.foryou-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.foryou-item:hover {
    background: var(--bg-blush);
}

.foryou-check {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-top: 1px;
}

.foryou-check svg {
    width: 20px;
    height: 20px;
}

.foryou-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.65;
}

.foryou-item p strong {
    color: var(--text-primary);
}

/* ===== LEARN SECTION ===== */
.learn {
    padding: 120px 0;
    background: var(--bg-secondary);
    position: relative;
}

.learn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-accent), transparent);
}

.section-tag {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--accent);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 14px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 500;
    text-align: center;
    margin-bottom: 64px;
    line-height: 1.2;
    color: var(--text-primary);
}

.section-title.left-align { text-align: left; }

.steps-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    padding: 36px 0;
    position: relative;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.step-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-number {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-blush);
    border: 1.5px solid var(--border-accent);
    border-radius: 50%;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent);
    position: relative;
    z-index: 1;
}

.step-line {
    position: absolute;
    left: 25px;
    top: 88px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--border-accent), transparent);
}

.step-item:last-child .step-line {
    display: none;
}

.step-content h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== PROOF BAR ===== */
.proof-bar {
    padding: 64px 0;
    background: var(--bg-blush);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.proof-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 64px;
}

.proof-stat { text-align: center; }

.proof-num {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.6rem;
    font-weight: 600;
    color: var(--accent);
}

.proof-label {
    display: block;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 4px;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.proof-divider {
    width: 1px;
    height: 44px;
    background: var(--border-accent);
}

/* ===== ABOUT ===== */
.about {
    padding: 120px 0;
    background: var(--bg-primary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 1;
}

.about-image-placeholder {
    aspect-ratio: 3/4;
    background: var(--bg-blush);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    gap: 12px;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-md);
}

.about-image-placeholder svg {
    width: 64px;
    height: 64px;
    opacity: 0.3;
}

.about-image-placeholder span {
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.about-image-accent {
    position: absolute;
    top: 16px;
    left: 16px;
    right: -16px;
    bottom: -16px;
    border: 1.5px solid var(--rose);
    border-radius: var(--radius-lg);
    z-index: 0;
    opacity: 0.5;
}

.about-body {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 14px;
}

.about-list {
    list-style: none;
    margin: 28px 0 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.check-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.check-icon svg { width: 18px; height: 18px; }

/* ===== ABOUT SOCIALS ===== */
.about-socials {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.about-socials-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.about-socials-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    border: 1px solid var(--border-accent);
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--bg-primary);
    transition: var(--transition);
}

.social-link svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    color: var(--accent);
}

.social-link:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--bg-blush);
    transform: translateY(-1px);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
    box-shadow: var(--shadow-sm);
}

.testimonial-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    color: var(--accent-light);
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
    font-family: var(--font-serif);
    font-size: 1.05rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 42px;
    height: 42px;
    background: var(--bg-blush);
    border: 1.5px solid var(--rose);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--accent);
}

.testimonial-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.testimonial-role {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.testimonial-disclaimer {
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-style: italic;
}

.win-card {
    text-align: center;
    padding-bottom: 32px;
}

.win-amount {
    font-family: var(--font-serif);
    font-size: 2.6rem;
    font-weight: 600;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 4px;
}

.win-period {
    font-size: 0.82rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.win-card .testimonial-author {
    justify-content: center;
}

/* Screenshot testimonial cards */
.screenshot-card {
    padding: 0;
    overflow: hidden;
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.08);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.screenshot-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.testimonial-screenshot {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: top;
    display: block;
}

.testimonial-caption {
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.caption-name {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text);
}

.caption-result {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--accent);
}

/* Lightbox overlay */
.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    cursor: zoom-out;
    padding: 24px;
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-overlay img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* ===== REGISTER ===== */
.register {
    padding: 120px 0;
    background: var(--bg-blush);
    position: relative;
}

.register::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-accent), transparent);
}

.register-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-tag.light { color: var(--accent); }

.section-title.light { color: var(--text-primary); }

.highlight-light {
    color: var(--accent);
    font-style: italic;
    font-weight: 600;
}

.register-sub {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

.register-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.register-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.benefit-check {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--accent);
}

/* ===== FORM ===== */
.register-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 44px 36px;
    box-shadow: var(--shadow-lg);
}

.form-title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 28px;
    text-align: center;
    color: var(--text-primary);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.optional {
    color: var(--text-muted);
    font-weight: 400;
}

.form-group input {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-primary);
    border: 1.5px solid rgba(196, 114, 127, 0.15);
    border-radius: var(--radius);
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.92rem;
    transition: var(--transition);
    outline: none;
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.form-group input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-glow);
    background: #fff;
}

.form-cta {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
    font-size: 1rem;
    padding: 17px 32px;
}

.form-disclaimer {
    text-align: center;
    font-size: 0.73rem;
    color: var(--text-muted);
    margin-top: 16px;
}

/* ===== FINAL CTA ===== */
.final-cta {
    padding: 100px 0;
    background: var(--bg-secondary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(232, 180, 188, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.final-cta-headline {
    font-family: var(--font-serif);
    font-size: clamp(1.7rem, 3.5vw, 2.5rem);
    font-weight: 500;
    margin-bottom: 16px;
    position: relative;
    color: var(--text-primary);
}

.final-cta-sub {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 36px;
    position: relative;
}

.light-cta {
    position: relative;
}

/* ===== FOOTER ===== */
.footer {
    padding: 40px 0;
    border-top: 1px solid var(--border);
    background: var(--bg-primary);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-brand {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--accent);
}

.footer-copy {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 0.78rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-links a:hover { color: var(--accent); }

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .pain-grid,
    .foryou-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto 40px;
    }

    .foryou-grid { margin-bottom: 0; }

    .learn-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image-col { order: -1; max-width: 400px; margin: 0 auto; }

    .section-title.left-align { text-align: center; }

    .about-text-col { text-align: center; }
    .about-list li { justify-content: center; }

    .about-text-col .cta-btn { margin: 0 auto; }

    .register-inner {
        grid-template-columns: 1fr;
        gap: 48px;
        max-width: 520px;
        margin: 0 auto;
    }

    .register-text { text-align: center; }
    .register-benefits li { justify-content: center; }

    .proof-bar-inner {
        flex-direction: column;
        gap: 32px;
    }

    .proof-divider {
        width: 60px;
        height: 1px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .hero { padding: 100px 16px 60px; }

    .countdown { gap: 4px; }

    .countdown-block {
        padding: 12px 14px;
        min-width: 64px;
    }

    .countdown-num { font-size: 1.6rem; }

    .cta-btn { padding: 16px 28px; font-size: 0.92rem; }

    .pain, .learn, .about, .testimonials, .register, .for-you { padding: 80px 0; }

    .register-form { padding: 32px 24px; }

    .section-title { margin-bottom: 48px; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-date {
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-headline {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-sub {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.countdown-wrapper {
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero-cta {
    animation: fadeInUp 0.8s ease-out 1s both;
}

.cta-note {
    animation: fadeInUp 0.8s ease-out 1.1s both;
}

/* Subtle shimmer on CTA */
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.hero-cta {
    background: linear-gradient(110deg, var(--accent) 0%, var(--accent) 40%, var(--accent-light) 50%, var(--accent) 60%, var(--accent) 100%);
    background-size: 200% 100%;
    animation: fadeInUp 0.8s ease-out 1s both, shimmer 4s ease-in-out 2s infinite;
}

/* ===== REGISTER CENTERED ===== */
.register-inner-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.register-sub.centered {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 28px;
}

.register-benefits.centered {
    align-items: center;
}

.register-benefits.centered li {
    justify-content: center;
}

/* ===== REGISTRATION MODAL ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(44, 35, 37, 0.7);
    backdrop-filter: blur(6px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal {
    background: var(--text-primary);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    max-width: 460px;
    width: 100%;
    position: relative;
    transform: translateY(20px) scale(0.97);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
}

.modal.modal-wj {
    max-width: 560px;
    padding: 20px;
    padding-top: 40px;
    background: var(--bg-blush);
}

/* ---- Modal header ---- */
.modal-header-wj {
    text-align: center;
    padding: 0.6rem 1.5rem 0.3rem;
}

.modal-badge {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    border: 1px solid var(--accent);
    border-radius: 50px;
    padding: 0.25rem 0.9rem;
    margin-bottom: 0.4rem;
}

.modal-header-wj h2 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.15rem;
}

.modal-header-wj h2 em {
    font-style: italic;
    color: var(--accent);
}

.modal-header-wj p {
    font-size: 0.72rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* ---- WebinarJam honeypot fix ---- */
.wj-embed-wrapper {
    position: relative;
    overflow: hidden;
}


.modal-overlay.active .modal {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.8rem;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
    padding: 4px;
}

.modal-close:hover {
    color: #fff;
}

.modal-badge {
    display: inline-block;
    padding: 6px 18px;
    border: 1px solid var(--accent);
    border-radius: 100px;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    color: var(--accent);
    margin-bottom: 24px;
    text-transform: uppercase;
}

.modal-title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 500;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 10px;
}

.modal-title .highlight {
    color: var(--accent);
    font-style: italic;
    font-weight: 600;
}

.modal-sub {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 32px;
    line-height: 1.5;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.modal-form-group input {
    width: 100%;
    padding: 15px 18px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    color: #fff;
    font-family: var(--font-sans);
    font-size: 0.92rem;
    transition: var(--transition);
    outline: none;
}

.modal-form-group input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.modal-form-group input:focus {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(196, 114, 127, 0.15);
}

.modal-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 17px 32px;
    background: var(--accent);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-sans);
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    margin-top: 6px;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 24px var(--accent-glow);
}

.modal-submit:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 32px var(--accent-glow);
}

.modal-submit-arrow {
    font-size: 1.4rem;
    line-height: 1;
}

@media (max-width: 600px) {
    .modal {
        padding: 36px 24px;
    }
    .modal-title {
        font-size: 1.35rem;
    }
}
