 /* ----- RESET & GLOBAL ----- */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
        background: linear-gradient(145deg, #0c0b1a 0%, #1a1a2f 40%, #12162c 100%);
        color: #ffffff;
        line-height: 1.5;
        overflow-x: hidden;
        width: 100%;
    }

    img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    .container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
    }

    /* ----- TYPOGRAPHY & UTILITY ----- */
    .section-title {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }

    .highlight-primary {
        background: linear-gradient(130deg, #e2a1ff, #a560e8, #7c3aed);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: 900;
    }

    /* ----- neon / mil-btn (standardized) ----- */
    .mil-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 2px solid #a26bb5;
        background: transparent;
        color: #fff;
        font-weight: 600;
        font-size: 1rem;
        padding: 0.9rem 2.2rem;
        border-radius: 50px;
        text-decoration: none;
        transition: all 0.3s ease;
        cursor: pointer;
        box-shadow: inset 0 0 10px #a26bb5, inset 0 0 20px #a26bb5;
        animation: neonPulse 2.2s infinite alternate;
        backdrop-filter: blur(4px);
        letter-spacing: 0.3px;
    }

    .mil-btn:hover {
        transform: scale(1.04);
        box-shadow: inset 0 0 18px #b67fd1, inset 0 0 38px #a26bb5;
        border-color: #c49bda;
    }

    @keyframes neonPulse {
        0% {
            box-shadow: inset 0 0 8px #a26bb5, inset 0 0 16px #a26bb5;
        }

        100% {
            box-shadow: inset 0 0 18px #c48de0, inset 0 0 36px #b368d6;
        }
    }

    /* ----- HEADER LOGO (scroll header fixed) ----- */
    .scroll-header {
        position: fixed;
        top: 0;
        left: 0;
        width: 90%;
        display: flex;
        align-items: center;
        padding: 12px 30px;
        background: rgba(15, 23, 42, 0.45);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        z-index: 9999;
        transition: all .4s ease;
    }

    .scroll-header.active {
        background: rgba(8, 10, 24, 0.85);
    }

    .scroll-logo {
        width: 100px;
        height: auto;
    }

    @media (max-width: 600px) {
        .scroll-header {
            padding: 10px 18px;
        }

        .scroll-logo {
            width: 110px;
        }
    }

    /* ----- HEADLINE SECTION ----- */
    .headline-section {
        max-width: 1200px;
        margin: 0 auto;
        padding: 100px 24px 50px;
        text-align: center;
        position: relative;
    }

    .headline {
        font-size: clamp(2.2rem, 6vw, 4.2rem);
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 1.2rem;
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    }

    .subheadline {
        font-size: clamp(1.1rem, 2.8vw, 1.5rem);
        color: #e0deff;
        max-width: 900px;
        margin: 0 auto 2rem auto;
        font-weight: 400;
    }

    /* objections auto-scroll (inline flex, no scrollbar) */
    .objection-wrapper {
        width: 100%;
        overflow: hidden;
        margin-top: 2rem;
    }

    .objections-list.inline-list {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        gap: 2rem;
        list-style: none;
        padding: 0.8rem 0;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        white-space: nowrap;
        justify-content: flex-start;
    }

    .objections-list.inline-list::-webkit-scrollbar {
        display: none;
    }

    .objections-list li {
        display: inline-flex;
        align-items: center;
        gap: 0.6rem;
        color: #fff;
        font-size: 1rem;
        font-weight: 500;
        flex: 0 0 auto;
    }

    .objections-list li:not(:last-child)::after {
        content: "•";
        margin-left: 1.5rem;
        opacity: 0.4;
        color: #aaa;
    }

    .check-icon {
        width: 22px;
        height: 22px;
        background: linear-gradient(145deg, #1abc9c, #16a085);
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        color: #fff;
        flex-shrink: 0;
    }

    /* ----- MILKMONEY INTRO (grid / mobile first) ----- */
    .milkmoney-section {
        padding: 70px 24px;
    }

    .milkmoney-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .milkmoney-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
    }

    .milkmoney-image img {
        border-radius: 28px;
        box-shadow: 0 20px 40px -12px #b77cd9;
        width: 100%;
        max-width: 440px;
        margin: 0 auto;
    }

    .milkmoney-content {
        text-align: left;
    }

    .milkmoney-title {
        font-size: clamp(2rem, 4vw, 2.8rem);
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }

    .milkmoney-title span {
        color: #c896ff;
    }

    .milkmoney-points {
        display: flex;
        flex-wrap: wrap;
        gap: 0.8rem 1.5rem;
        margin: 1.5rem 0;
    }

    .point {
        background: rgba(255, 255, 255, 0.06);
        backdrop-filter: blur(8px);
        border-radius: 60px;
        padding: 0.5rem 1.6rem;
        font-weight: 500;
        border: 1px solid rgba(200, 150, 255, 0.2);
    }

    .milkmoney-description {
        font-size: 1.2rem;
        margin: 2rem 0 2rem;
    }

    .milkmoney-description strong {
        color: #d6a2ff;
    }

    @media (max-width: 800px) {
        .milkmoney-grid {
            grid-template-columns: 1fr;
            text-align: center;
        }

        .milkmoney-content {
            text-align: center;
        }

        .milkmoney-points {
            justify-content: center;
        }
    }

    /* ----- TRAINING / LEARN SECTIONS (standard cards) ----- */
    .training-section,
    .learn-section {
        max-width: 1000px;
        margin: 0 auto;
        padding: 3rem 24px;
    }

    .training-section h1 {
        font-size: clamp(2rem, 5vw, 2.8rem);
        font-weight: 800;
    }

    .training-section h2 {
        font-size: 1.6rem;
        font-weight: 400;
        font-style: italic;
        color: #cfc5ff;
        margin-bottom: 2rem;
    }

    .highlight {
        color: #c47ef0;
        font-weight: 700;
    }

    /* ----- TESTIMONIALS GRID (responsive) ----- */
    .testimonials-section {
        padding: 4rem 24px;
    }

    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 24px;
        max-width: 1200px;
        margin: 2rem auto;
    }

    .testimonial-item {
        border-radius: 24px;
        overflow: hidden;
        border: 2px solid rgba(180, 130, 255, 0.2);
        transition: 0.3s;
        background: #16182e;
    }

    .testimonial-item:hover {
        border-color: #a26bb5;
        transform: translateY(-6px);
        box-shadow: 0 20px 30px -8px #a26bb570;
    }

    .testimonial-item img {
        width: 100%;
        height: auto;
        /* aspect-ratio: 4/3; */
        object-fit: cover;
    }

    /* ----- MASTERCLASS CARD (glass) ----- */
    .masterclass-card {
        background: rgba(20, 18, 40, 0.75);
        backdrop-filter: blur(12px);
        border-radius: 40px;
        padding: 3rem 2.5rem;
        border: 1px solid rgba(168, 139, 250, 0.25);
        margin: 3rem 0;
    }

    .learn-list {
        list-style: none;
        margin-top: 2rem;
    }

    .learn-list li {
        display: flex;
        gap: 1rem;
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
        color: #f0ebff;
    }

    .check-mark {
        color: #2ecc71;
        font-weight: 800;
        font-size: 1.6rem;
        line-height: 1;
    }

    .audience-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
        margin: 2.5rem 0;
    }

    .audience-item {
        background: #1c1f3a;
        padding: 1.8rem 1rem;
        border-radius: 20px;
        text-align: center;
        border: 1px solid #413773;
        transition: 0.2s;
    }

    .audience-item:hover {
        border-color: #b47aff;
        background: #262b4a;
    }

    .audience-icon {
        font-size: 2.4rem;
        margin-bottom: 0.6rem;
    }

    .audience-item h3 {
        color: white;
        font-size: 1.2rem;
    }

    /* ----- F.A.B.S STEPS (modern card) ----- */
    .steps-container {
        max-width: 1000px;
        margin: 0 auto;
    }

    .step-card {
        background: rgba(24, 26, 45, 0.8);
        backdrop-filter: blur(8px);
        border-radius: 32px;
        padding: 2.5rem;
        border: 1px solid #a26bb550;
        margin: 2rem 0;
    }

    .step-header {
        display: flex;
        align-items: center;
        gap: 1.5rem;
        flex-wrap: wrap;
        margin-bottom: 2rem;
    }

    .step-number {
        font-size: 3.5rem;
        font-weight: 800;
        background: linear-gradient(145deg, #c084fc, #e879f9);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        line-height: 1;
    }

    .step-title {
        font-size: 2rem;
        font-weight: 700;
        color: white;
    }

    .step-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .features-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
    }

    .feature-item {
        background: #1e203b;
        padding: 0.8rem 1rem;
        border-radius: 40px;
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.95rem;
    }

    .results-box {
        background: #1e1a3a;
        border-radius: 20px;
        padding: 1.5rem;
        margin: 1.5rem 0;
    }

    .results-comparison {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .divider {
        text-align: center;
        font-size: 2rem;
        opacity: 0.7;
        position: relative;
    }

    @media (max-width: 700px) {
        .step-content {
            grid-template-columns: 1fr;
        }

        .step-header {
            flex-direction: column;
            align-items: start;
        }
    }

    /* ----- CTA & BOTTOM BAR (fixed) ----- */
    .cta-section {
        text-align: center;
        background: linear-gradient(130deg, #221d3d, #1b1738);
        border-radius: 48px;
        padding: 3rem 2rem;
        margin-top: 3rem;
        margin-bottom: 3rem;
    }

    .cta-title {
        font-size: clamp(1.8rem, 4vw, 2.8rem);
        font-weight: 700;
    }

    .cta-button {
        background: linear-gradient(130deg, #b47aff, #db8bff);
        border: none;
        color: #0c0b1a;
        font-weight: 800;
        padding: 1.2rem 2.8rem;
        border-radius: 60px;
        font-size: 1.3rem;
        margin: 2rem 0;
        display: inline-block;
        text-decoration: none;
        transition: 0.3s;
        box-shadow: 0 12px 30px -5px #ba7efa;
    }

    .guarantee {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
        color: #b6b3d4;
    }

    /* bottom bar */
    .bottom-bar {
        background: #ce3737;
        padding: 1rem 24px;
        position: fixed;
        bottom: 0;
        width: 100%;
        z-index: 999;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }

    .bottom-bar-content {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        width: 100%;
        justify-content: space-between;
        align-items: center;
    }

    .countdown-timer {
        font-weight: 700;
        font-size: 1.4rem;
    }

    .bottom-bar-button {
        background: #000;
        color: white;
        border: none;
        border-radius: 40px;
        padding: 0.8rem 2rem;
        font-weight: 600;
        cursor: pointer;
    }

    /* footer */
    .footer {
        padding: 2rem 24px 6rem;
        border-top: 1px solid #2f2b50;
    }

    p.text-center {
        text-align: center;
        color: #bfb9e6;
    }

    .text-center a {
        color: #f2cdff;
        text-decoration: none;
        font-weight: 500;
    }

    /* responsive fine-tuning */
    @media (max-width: 600px) {
        .bottom-bar-content {
            flex-direction: column;
            text-align: center;
        }

        .objections-list li {
            font-size: 0.9rem;
        }

        .masterclass-card {
            padding: 2rem 1.5rem;
        }
    }
    
    /* ===== Bottom Bar ===== */
.bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #0b0f2f;
    color: #fff;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.25);
}

/* Content Layout */
.bottom-bar-content {
    max-width: 1200px;
    margin: auto;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

/* Left */
.bottom-bar-left {
    display: flex;
    flex-direction: column;
}

.bottom-bar-date {
    font-weight: 600;
    font-size: 14px;
}

.bottom-bar-timezone {
    font-size: 12px;
    opacity: 0.8;
}

/* Right */
.bottom-bar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Countdown */
.countdown-timer {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: bold;
    font-size: 18px;
}

.countdown-label {
    font-size: 11px;
    opacity: 0.7;
    margin-right: 5px;
}

.countdown-separator {
    font-weight: bold;
}

/* Button */
.bottom-bar-button {
    background: #ff3b3b;
    padding: 10px 18px;
    color: #fff;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.bottom-bar-button:hover {
    background: #ff1f1f;
    transform: scale(1.05);
}

/* ===== Mobile ===== */
@media (max-width: 768px) {

    .bottom-bar-content {
        flex-direction: column;
        text-align: center;
    }

    .bottom-bar-right {
        flex-direction: column;
        width: 100%;
    }

    .bottom-bar-button {
        width: 100%;
    }
}