:root {
    --primary-color: #8E24AA;
    /* Purple 600 */
    --primary-dark: #4A148C;
    /* Purple 900 */
    --secondary-color: #FFD740;
    /* Amber A200 */
    --accent-color: #00C853;
    /* Green A700 */
    --bg-color: #FAF5FF;
    /* Very Light Purple */
    --text-color: #333;
    --text-light: #666;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --radius: 12px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-dark);
    line-height: 1.2;
}

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

.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(142, 36, 170, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(142, 36, 170, 0.6);
}

.btn-large-green {
    background: #28a745;
    /* Standard success green */
    box-shadow: 0 5px 0 #1e7e34;
    /* Darker green solid shadow for 3D effect */
    color: white;
    font-size: 1.6rem;
    font-weight: 900;
    /* Extra bold */
    padding: 15px 60px;
    border-radius: 10px;
    /* Less rounded */
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
    text-transform: uppercase;
    width: auto;
    /* Allow it to accept padding */
    max-width: 100%;
    border: none;
    transition: transform 0.1s, box-shadow 0.1s;
    font-family: 'Outfit', sans-serif;
    /* Ensure font match */
    margin-bottom: 5px;
    /* Space for shadow */
    text-shadow: none;
}

.btn-large-green:hover {
    background-color: #218838;
    transform: translateY(2px);
    /* Press down effect */
    box-shadow: 0 3px 0 #1e7e34;
    /* Smaller shadow on press */
}

.btn-large-green:active {
    transform: translateY(5px);
    box-shadow: none;
}

.btn-subtext {
    font-size: 0.9rem;
    font-weight: 400;
    margin-top: 5px;
    opacity: 0.95;
    text-shadow: none;
    letter-spacing: 0;
    text-transform: none;
}

.cta-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-top: 20px;
}

.security-info {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: var(--text-color);
    margin-left: 5px;
}

.security-info span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

.security-info i {
    color: #555;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .cta-container {
        align-items: center;
    }

    .btn-large-green {
        font-size: 1.2rem;
        padding: 15px 20px;
    }
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-large {
    font-size: 1.2rem;
    padding: 20px 40px;
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(142, 36, 170, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(142, 36, 170, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(142, 36, 170, 0);
    }
}

.pulse-green {
    animation: pulse-green-animation 2s infinite;
}

@keyframes pulse-green-animation {
    0% {
        box-shadow: 0 5px 0 #1e7e34, 0 0 0 0 rgba(40, 167, 69, 0.7);
    }

    70% {
        box-shadow: 0 5px 0 #1e7e34, 0 0 0 20px rgba(40, 167, 69, 0);
    }

    100% {
        box-shadow: 0 5px 0 #1e7e34, 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

/* Top Bar */
.top-bar {
    background-color: #4A148C;
    color: white;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.top-bar-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.top-bar-text {
    text-align: right;
}

.top-bar-headline {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 2px;
    opacity: 0.9;
    letter-spacing: 1px;
}

.top-bar-subheadline {
    font-size: 1.3rem;
    font-weight: 700;
    background-color: white;
    color: #4A148C;
    padding: 2px 10px;
    border-radius: 4px;
    display: inline-block;
}

.countdown {
    display: flex;
    gap: 10px;
}

.countdown-item {
    background-color: white;
    color: #4A148C;
    padding: 5px 0;
    border-radius: 5px;
    text-align: center;
    width: 60px;
}

.countdown-item span {
    display: block;
    font-weight: 700;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.countdown-item span:first-child {
    font-size: 1.4rem;
}

.countdown-item .label {
    font-size: 0.6rem;
    margin-top: 2px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .top-bar-content {
        gap: 15px;
        flex-direction: column;
        text-align: center;
    }

    .top-bar-text {
        text-align: center;
    }

    .top-bar-subheadline {
        font-size: 1.1rem;
    }

    .countdown-item {
        width: 50px;
        /* Smaller width */
        padding: 2px 0;
    }

    .countdown-item span:first-child {
        font-size: 1.1rem;
        /* Smaller numbers */
    }

    .countdown-item .label {
        font-size: 0.5rem;
    }
}

/* Hero Section */
.hero {
    position: relative;
    padding: 60px 0 100px;
    background: linear-gradient(135deg, #F3E5F5 0%, #fff 100%);
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    gap: 30px;
}

.hero-text h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #4A148C;
    line-height: 1.4;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.hero-text .highlight-box {
    background-color: #4A148C;
    color: white;
    padding: 0 5px;
    display: inline-block;
    white-space: nowrap;
    transform: skew(-5deg);
    /* Slight skew for dynamic look */
    line-height: 1;
    margin: 0 2px;
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-text .highlight-box {
        white-space: normal;
    }
}

.hero-text .highlight-box span {
    display: inline-block;
    transform: skew(5deg);
    /* Unskew text */
}

.subheadline {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
    font-weight: 500;
}

.subheadline {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.badge {
    background-color: var(--accent-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--primary-dark);
    align-items: flex-start;
}

.hero-features i {
    color: #28a745;
}

.image-wrapper img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 5px solid var(--white);
}

.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.custom-shape-divider-bottom-1680000000 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-bottom-1680000000 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.custom-shape-divider-bottom-1680000000 .shape-fill {
    fill: var(--bg-color);
}

/* Product Showcase Section */
.product-showcase {
    background-color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
    align-items: start;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: auto;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.btn-small {
    font-size: 0.9rem;
    padding: 12px 25px;
    margin-top: 20px;
}

/* Sections General */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

/* How to Earn */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.icon-box {
    width: 70px;
    height: 70px;
    background-color: #FFEBEE;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

/* Curriculum */
.curriculum {
    background-color: var(--white);
}



.highlight-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.module-list {
    list-style: none;
}

.module-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.module-list i {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-top: 3px;
}

/* Bonus Section */
.bonus-section {
    background: #ffffff;
    padding: 100px 0;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.bonus-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.bonus-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: #F3E5F5;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.bonus-card h3 {
    font-family: 'Outfit', sans-serif;
    color: #1a1a1a;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    line-height: 1.3;
}

.bonus-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.price-box {
    background-color: #F8F9FA;
    padding: 15px;
    border-radius: 10px;
    width: 100%;
}

.price-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 5px !important;
    letter-spacing: 0.5px;
}

.price-values {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.price-values .old-price {
    color: #F44336;
    text-decoration: line-through;
    font-weight: 600;
    font-size: 0.9rem;
}

.price-values .new-price {
    color: #00C853;
    font-weight: 800;
    font-size: 1.1rem;
}

.bonus-footer-note {
    background-color: #F3E5F5;
    color: #8E24AA;
    padding: 12px 30px;
    border-radius: 50px;
    display: inline-block;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Curriculum (Ideal For) Layout Adjustment */
.curriculum-wrapper {
    display: flex;
    flex-direction: column;
    max-width: 800px;
    margin: 0 auto;
    gap: 30px;
}

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

.curriculum-content h2 {
    text-align: center;
}

.curriculum-content .highlight-text {
    text-align: center;
}

.module-list {
    max-width: 600px;
    margin: 0 auto 30px;
    text-align: left;
}

/* Who is it for */
.who-is-it {
    background-color: #FAFAFA;
}

.who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.who-card {
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.who-card:hover {
    transform: translateY(-5px);
}

.who-card.yes {
    background: linear-gradient(to bottom right, #E8F5E9, #ffffff);
    border-top: 5px solid #1B7A42;
}

.who-card.no {
    background: linear-gradient(to bottom right, #FFEBEE, #ffffff);
    border-top: 5px solid #B00000;
}

.who-card h3 {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.8rem;
}

.who-card.yes h3 {
    color: #1B7A42;
}

.who-card.no h3 {
    color: #B00000;
}

.who-card ul {
    list-style: none;
}

.who-card ul li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
    font-size: 1.1rem;
}

.who-card.yes ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1B7A42;
    font-weight: bold;
}

.who-card.no ul li::before {
    content: '✘';
    position: absolute;
    left: 0;
    color: #B00000;
    font-weight: bold;
}

/* Testimonials */
/* Testimonials */
.testimonials {
    background-color: var(--white);
    text-align: center;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--bg-color);
    padding: 30px;
    border-radius: var(--radius);
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.testimonial-card::before {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--secondary-color);
    opacity: 0.3;
    position: absolute;
    top: -10px;
    left: 20px;
}

.stars {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
    margin-top: auto;
}

.avatar {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
}

.slider-dots {
    display: none;
}

/* Mobile Slideshow */
@media (max-width: 768px) {
    .testimonials-slider {
        display: block;
        position: relative;
        min-height: 350px;
        /* Prevent layout shift */
    }

    .testimonial-card {
        display: none;
        /* Hide all by default on mobile */
        animation: fadeEffect 0.5s;
        /* Faster animation */
        height: 100%;
        position: absolute;
        /* Take out of flow to avoid height jumps */
        top: 0;
        left: 0;
        width: 100%;
    }

    .testimonial-card.active {
        display: flex;
        /* Show only active */
    }

    .slider-dots {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 20px;
    }

    .dot {
        cursor: pointer;
        height: 12px;
        width: 12px;
        margin: 0 2px;
        background-color: #bbb;
        border-radius: 50%;
        display: inline-block;
        transition: background-color 0.6s ease;
    }

    .dot.active,
    .dot:hover {
        background-color: var(--primary-color);
    }
}

@keyframes fadeEffect {
    from {
        opacity: 0.4
    }

    to {
        opacity: 1
    }
}

/* Pricing */
.pricing {
    background-color: var(--bg-color);
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    align-items: flex-start;
    /* Align top */
}

.pricing-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 380px;
    text-align: left;
    /* Left align content like reference */
    position: relative;
    border: 1px solid #eee;
}

.pricing-card.complete {
    border: 2px solid #25D366;
    /* Green border for premium */
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card h3 {
    font-size: 1.8rem;
    color: #000;
    margin-bottom: 20px;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    /* Clean sans-serif like reference */
}

.price-container {
    margin-bottom: 25px;
}

.old-price {
    display: block;
    font-size: 1.1rem;
    color: #D32F2F;
    /* Red strikethrough */
    text-decoration: line-through;
    font-weight: 600;
}

.current-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: #25D366;
    /* WhatsApp Green style */
    line-height: 1;
    font-family: 'Outfit', sans-serif;
}

.payment-type {
    display: block;
    font-size: 0.9rem;
    color: #888;
    margin-top: 5px;
}

.features {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}

.features i {
    color: #25D366;
    /* Green checkmarks */
    font-size: 1.2rem;
}

.btn-green-full {
    display: block;
    width: 100%;
    background-color: #25D366;
    color: white;
    text-align: center;
    padding: 18px;
    border-radius: 8px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 1.1rem;
    transition: background 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-green-full:hover {
    background-color: #1ebc57;
    transform: translateY(-2px);
}

/* Remove old ribbon if not used or style it simply if needed, keeping it minimal */
/* Ribbon Style */
.ribbon {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FF9800;
    /* Orange/Gold for highlight */
    color: #fff;
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 10;
    white-space: nowrap;
    letter-spacing: 1px;
}

/* How it works steps */
.how-it-works {
    background-color: #FDFBF7;
    padding: 100px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
    position: relative;
}

@media (min-width: 769px) {
    .steps-grid::before {
        content: '';
        position: absolute;
        top: 40px;
        left: 10%;
        width: 80%;
        height: 2px;
        background: #E0E0E0;
        z-index: 0;
    }
}

.step {
    position: relative;
    z-index: 1;
    background: transparent;
    padding: 20px;
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 80px;
    height: 80px;
    background-color: var(--white);
    color: #B00000;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

/* FAQ */
.faq {
    background-color: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px 0;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding-bottom: 20px;
    color: var(--text-light);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Footer */
.footer-cta {
    background: linear-gradient(135deg, #7B1FA2 0%, #4A148C 100%);
    color: white;
    text-align: center;
    padding: 100px 20px 40px;
}

.footer-cta h2 {
    color: white;
    margin-bottom: 20px;
    font-size: 3rem;
}

.footer-cta p {
    max-width: 600px;
    margin: 0 auto 50px;
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 300;
}

.btn-gold {
    background: linear-gradient(45deg, #FFD700, #FBC02D);
    color: #5D4037;
    box-shadow: 0 5px 20px rgba(251, 192, 45, 0.4);
    font-size: 1.1rem;
    padding: 20px 50px;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(251, 192, 45, 0.6);
}

.footer-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
    font-size: 0.9rem;
    opacity: 0.9;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.footer-badges span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.copyright {
    margin-top: 30px;
    font-size: 0.8rem;
    opacity: 0.5;
}

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

    /* Disable heavy animations */
    .reveal-left,
    .reveal-right,
    .floating,
    .pulse {
        animation: none !important;
        transform: none !important;
        opacity: 1 !important;
        transition: none !important;
    }

    /* Ensure content is visible immediately */
    .curriculum-content,
    .instructor-content {
        opacity: 1 !important;
        transform: none !important;
    }

    .hero {
        padding: 40px 0 80px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 40px 0 80px;
        /* Reduced padding */
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .hero-text h1 {
        font-size: 1.8rem;
        /* Smaller font for mobile */
        margin-bottom: 15px;
    }

    .subheadline {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .hero-features {
        justify-content: center;
        flex-direction: column;
        /* Stack features */
        gap: 10px;
        margin-bottom: 25px;
    }

    .btn {
        width: 100%;
        /* Full width buttons */
        padding: 18px;
        /* Larger touch target */
    }

    .image-wrapper img {
        max-width: 300px;
        /* Limit image size on mobile */
        margin: 0 auto;
    }

    /* Disable or simplify heavy animations */
    .floating {
        animation: none;
        /* Disable floating on mobile for performance */
    }

    .curriculum-wrapper {
        grid-template-columns: 1fr;
    }

    .curriculum-image {
        order: -1;
        margin-bottom: 30px;
    }

    .who-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.complete {
        transform: none;
    }

    .steps-grid::before {
        display: none;
    }

    .footer-cta h2 {
        font-size: 2rem;
    }

    .footer-badges {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
}

/* About Instructor */
.about-instructor {
    background-color: var(--white);
    padding: 100px 0;
}

.instructor-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.instructor-image-col {
    text-align: center;
}

.instructor-image-wrapper {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 30px;
    border: 5px solid var(--white);
    box-shadow: var(--shadow);
}

.instructor-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instructor-stats {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.stat-box {
    background: #FAFAFA;
    padding: 15px 10px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 90px;
}

.stat-box strong {
    display: block;
    font-size: 1.5rem;
    color: #2563EB;
    /* Blue like the reference */
    line-height: 1;
    margin-bottom: 5px;
}

.stat-box span {
    font-size: 0.7rem;
    color: #666;
    text-transform: uppercase;
    font-weight: 600;
}

.instructor-content h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #000;
}

.instructor-badge {
    background-color: #EEEEEE;
    color: #555;
    padding: 5px 15px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 25px;
}

.instructor-content p {
    margin-bottom: 20px;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
}

.instructor-content strong {
    color: #333;
}

@media (max-width: 768px) {
    .instructor-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .instructor-stats {
        flex-wrap: wrap;
    }
}

/* Notification Toasts */
.notification-container {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.notification-toast {
    background: white;
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border-left: 3px solid #25D366;
    width: 200px;
    display: flex;
    flex-direction: column;
    position: relative;
    pointer-events: auto;
    animation: slideInRight 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards;
    opacity: 0;
    transform: translateX(100%);
}

.notification-toast.hide {
    animation: slideOutRight 0.5s ease-in forwards;
}

.notification-name {
    color: #25D366;
    font-weight: 700;
    font-size: 0.75rem;
    margin-bottom: 1px;
}

.notification-action {
    color: #333;
    font-weight: 600;
    font-size: 0.7rem;
    margin-bottom: 2px;
}

.notification-meta {
    color: #888;
    font-size: 0.6rem;
}

.notification-close {
    position: absolute;
    top: 2px;
    right: 5px;
    color: #aaa;
    cursor: pointer;
    font-size: 1.1rem;
    line-height: 1;
}

.notification-close:hover {
    color: #555;
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutRight {
    to {
        opacity: 0;
        transform: translateX(120%);
    }
}

/* Visual Testimonials */
.testimonials-visual {
    background-color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.visual-header {
    margin-bottom: 40px;
}

.visual-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #1F2937;
    /* Dark gray like reference */
}

.header-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.stars-gold {
    color: #FBBF24;
    /* Amber/Gold */
    font-size: 1.5rem;
    display: flex;
    gap: 5px;
}

.header-rating p {
    color: #4B5563;
    font-size: 1rem;
    font-weight: 500;
}

.visual-gallery-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-gallery {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
    width: 100%;
    /* Snap alignment */
    scroll-snap-type: x mandatory;
}

.visual-gallery::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.visual-item {
    flex: 0 0 auto;
    width: 300px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
    scroll-snap-align: center;
    /* Snap logic */
}

.visual-item:hover {
    transform: translateY(-5px);
}

.visual-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.scroll-btn {
    background-color: #fff;
    border: 1px solid #ddd;
    color: #333;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 10;
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.scroll-btn:hover {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.scroll-btn.left {
    left: -20px;
    /* Pull out of container slightly */
}

.scroll-btn.right {
    right: -20px;
}

@media (max-width: 768px) {
    .visual-gallery {
        gap: 15px;
    }

    .visual-item {
        width: 260px;
    }

    .visual-header h2 {
        font-size: 1.8rem;
    }

    .scroll-btn {
        display: none;
        /* Hide arrows on mobile, use touch scroll */
    }
}

.visual-header {
    margin-bottom: 40px;
}

.visual-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #1F2937;
    /* Dark gray like reference */
}

.header-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.stars-gold {
    color: #FBBF24;
    /* Amber/Gold */
    font-size: 1.5rem;
    display: flex;
    gap: 5px;
}

.header-rating p {
    color: #4B5563;
    font-size: 1rem;
    font-weight: 500;
}

.visual-gallery-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    padding: 10px 0;
}

.visual-gallery {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
}

.visual-gallery::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.visual-item {
    flex: 0 0 auto;
    width: 300px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.visual-item:hover {
    transform: translateY(-5px);
}

.visual-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media (max-width: 768px) {
    .visual-gallery {
        gap: 15px;
    }

    .visual-item {
        width: 260px;
    }

    .visual-header h2 {
        font-size: 1.8rem;
    }
}

/* Guarantee Section (New Footer style) */
.guarantee-section {
    background-color: var(--bg-color);
    /* Cream background to match page */
    padding: 80px 0 40px;
    text-align: center;
}

.guarantee-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 50px 30px;
    max-width: 800px;
    margin: 0 auto 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(142, 36, 170, 0.1);
    /* Subtle red border */
}

.guarantee-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    /* Red from palette */
    /* Green from palette */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 25px;
}

.guarantee-card h3 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.guarantee-card p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.security-badges-footer {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.security-badges-footer span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-color);
}

.security-badges-footer i {
    color: var(--accent-color);
    /* Green */
    font-size: 1.2rem;
}

.simple-footer {
    border-top: 1px solid rgba(74, 20, 140, 0.1);
    padding-top: 40px;
    color: var(--primary-dark);
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .guarantee-card {
        padding: 40px 20px;
    }

    .security-badges-footer {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
}

/* Attention Note in Basic Plan */
.attention-note {
    display: none;
    margin-top: 20px;
    text-align: center;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .attention-note {
        display: block;
    }
}

.attention-text {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 5px;
}

.text-red {
    color: #D32F2F;
}

.text-underline {
    text-decoration: underline;
    font-weight: 800;
}

.arrow-down-red {
    color: #D32F2F;
    font-size: 3rem;
    display: block;
    margin: 5px auto 0;
    text-shadow: 0 2px 5px rgba(211, 47, 47, 0.3);
}

.floating-vertical {
    animation: floatVertical 1.5s ease-in-out infinite;
}

@keyframes floatVertical {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

@keyframes bounce-ball {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

/* Mobile-Only Offer Message */
.mobile-only-offer-msg {
    display: none;
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    background-color: #fff;
    border: 1px dashed #FF5252;
    text-align: center;
    font-size: 0.95rem;
    color: #444;
}

.mobile-only-offer-msg .warning {
    color: #D32F2F;
    font-weight: 800;
}

.mobile-only-offer-msg .highlight {
    color: #D32F2F;
    text-decoration: underline;
    font-weight: 700;
}

.mobile-only-offer-msg .arrow-down {
    margin-top: 10px;
    color: #D32F2F;
    font-size: 1.2rem;
    animation: bounce-msg 2s infinite;
}

@keyframes bounce-msg {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-5px);
    }

    60% {
        transform: translateY(-3px);
    }
}

@media (max-width: 768px) {
    .mobile-only-offer-msg {
        display: block;
    }
}