:root {
    --bg-dark: #FFFFFF;
    --bg-accent: #F9FAFB; /* Off-white for section separation */
    --primary: #E50914; /* Brand Red */
    --primary-glow: rgba(229, 9, 20, 0.06);
    --secondary: #FBBF24; /* Accent Yellow */
    --secondary-glow: rgba(251, 191, 36, 0.15);
    --text-main: #111827; /* Dark Charcoal for body text */
    --text-muted: #4B5563; /* Muted slate grey */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(0, 0, 0, 0.06);
    --container-width: 1200px;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    --card-shadow-hover: 0 20px 40px rgba(229, 9, 20, 0.06), 0 0 20px rgba(229, 9, 20, 0.02);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
    position: relative;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Background elements */
.mesh-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -2;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.05;
    animation: floatBlob 20s infinite alternate ease-in-out;
}

.blob-1 {
    top: 5%;
    left: 10%;
    width: 400px;
    height: 400px;
    background: var(--primary);
    animation-delay: 0s;
}

.blob-2 {
    bottom: 25%;
    right: 5%;
    width: 450px;
    height: 450px;
    background: var(--secondary);
    animation-delay: -5s;
}

.blob-3 {
    top: 45%;
    left: 40%;
    width: 300px;
    height: 300px;
    background: var(--primary);
    animation-delay: -10s;
}

.grid-pattern {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: -1;
}

@keyframes floatBlob {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(80px, 40px) scale(1.1); }
    100% { transform: translate(-40px, 80px) scale(0.95); }
}

/* Glassmorphism Navigation */
.glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    padding: 20px 0;
    transition: all 0.3s ease;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.logo-box-svg {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    color: #000000;
    font-weight: 800;
}

.logo .highlight {
    color: var(--primary);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    padding-top: 140px;
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(circle at 50% 40%, rgba(229, 9, 20, 0.03) 0%, transparent 60%);
}

.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
    margin-bottom: 40px;
    text-align: left;
}

.hero-content.text-left {
    flex: 1.2;
    text-align: left;
}

.hero-content.text-left h1 {
    font-size: 4.2rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: #000000;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, #ff4d4d 60%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content.text-left .subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 0 45px 0;
    font-weight: 400;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    margin-bottom: 40px;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image-card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1), 0 0 40px rgba(229, 9, 20, 0.06);
    border: 3px solid #FFFFFF;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    animation: floatImage 6s infinite ease-in-out;
    aspect-ratio: 5/4;
    width: 100%;
    max-width: 500px;
}

.hero-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-image-card:hover {
    transform: scale(1.02) rotate(1deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15), 0 0 50px rgba(229, 9, 20, 0.15);
}

@keyframes floatImage {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(-1deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@media (max-width: 992px) {
    .hero-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .hero-content.text-left {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-content.text-left h1 {
        font-size: 3.2rem;
    }
    .hero-content.text-left .subtitle {
        margin: 0 auto 30px auto;
    }
    .hero-btns {
        justify-content: center;
    }
    .hero-image-card {
        max-width: 420px;
    }
}

/* Statistics Row */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 20px;
    flex-wrap: wrap;
    background: #FFFFFF;
    border: 1px solid var(--glass-border);
    padding: 24px 50px;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #111 40%, #555 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    line-height: 1.1;
    margin-bottom: 4px;
}

.stat-num .highlight {
    background: linear-gradient(135deg, var(--primary) 30%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-lbl {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-buy {
    padding: 14px 34px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #b91c1c 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(229, 9, 20, 0.2);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(229, 9, 20, 0.35);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--glass-border);
    color: var(--text-main);
}

.btn-secondary:hover {
    border-color: var(--primary);
    background: rgba(229, 9, 20, 0.02);
    color: var(--primary);
    transform: translateY(-3px);
}

.btn-primary-sm, .btn-secondary-sm {
    padding: 9px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-primary-sm {
    background: var(--primary);
    color: white;
    border: none;
}

.btn-primary-sm:hover {
    background: #b91c1c;
    box-shadow: 0 4px 12px rgba(229, 9, 20, 0.2);
}

.btn-secondary-sm {
    background: transparent;
    border: 1.5px solid var(--glass-border);
    color: var(--text-muted);
}

.btn-secondary-sm:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Section Styling */
.section {
    padding: 120px 0;
    position: relative;
}

.alt-bg {
    background-color: var(--bg-accent);
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    color: #000000;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
}

/* Product Cards */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.glass-card {
    background: #FFFFFF;
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 24px;
    box-shadow: var(--card-shadow);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.glass-card:hover {
    transform: translateY(-8px);
    border-color: rgba(229, 9, 20, 0.15);
    box-shadow: var(--card-shadow-hover);
}

.card-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
    aspect-ratio: 16/10;
    background: #F3F4F6;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.glass-card:hover .card-image img {
    transform: scale(1.06);
}

.price-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--secondary) 0%, #F59E0B 100%);
    color: #000000;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.85rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.card-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #000000;
}

.card-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 28px;
    line-height: 1.6;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.btn-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s;
}

.btn-link:hover {
    color: var(--primary);
}

.btn-buy {
    background: #000000;
    color: #FFFFFF;
    padding: 10px 24px;
    font-size: 0.9rem;
    border-radius: 50px;
    border: none;
}

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

/* Reviews Marquee (Infinite horizontal scroll) */
.reviews-marquee-container {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.reviews-marquee-container::before, .reviews-marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.reviews-marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-dark), transparent);
}

.reviews-marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-dark), transparent);
}

.marquee-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scrollMarquee 50s linear infinite;
}

.marquee-track.reverse {
    animation-direction: reverse;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.review-card {
    position: relative;
    background: #FFFFFF;
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: 280px;
    height: 160px;
}

.review-card img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 12px;
    object-fit: contain;
}

@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Training & Coaching Layout */
.training-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.training-card {
    display: flex;
    flex-direction: column;
    padding: 36px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    background: #FFFFFF;
    box-shadow: var(--card-shadow);
}

.training-card h3 {
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #000000;
}

.training-card p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 36px;
}

.training-card .btn-primary-sm,
.training-card .btn-secondary-sm {
    margin-top: auto;
    align-self: flex-start;
}

.training-card.featured-card {
    border: 2px solid var(--primary);
    background: linear-gradient(135deg, rgba(229, 9, 20, 0.01) 0%, rgba(255, 255, 255, 0.95) 100%);
    box-shadow: 0 10px 30px rgba(229, 9, 20, 0.05);
    text-align: center !important;
    align-items: center !important;
}

.training-card.featured-card .btn-primary-sm {
    align-self: center !important;
}

.badge-featured {
    display: inline-block;
    background: rgba(229, 9, 20, 0.08);
    color: var(--primary);
    border: 1px solid rgba(229, 9, 20, 0.15);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 16px;
    width: fit-content;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #FFFFFF;
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.01);
}

.faq-item:hover {
    border-color: rgba(229, 9, 20, 0.1);
}

.faq-item.active {
    border-color: var(--primary);
    background: rgba(229, 9, 20, 0.01);
    box-shadow: 0 4px 15px rgba(229, 9, 20, 0.03);
}

.faq-question {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.1rem;
    user-select: none;
    color: #000000;
}

.faq-icon {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
    color: var(--secondary);
    display: inline-block;
    line-height: 1;
    font-weight: 800;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), padding 0.3s ease;
    padding: 0 24px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    padding-bottom: 24px;
}

/* Animations & Transitions */
.fade-in { animation: fadeIn 0.8s ease forwards; }
.fade-in-delay { animation: fadeIn 0.8s ease 0.2s forwards; opacity: 0; }
.fade-in-delay-2 { animation: fadeIn 0.8s ease 0.4s forwards; opacity: 0; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}



/* Footer (Dark High Contrast for Light Mode) */
footer {
    padding: 100px 0 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    background-color: #111827; /* Dark footer to balance design */
    color: #FFFFFF;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-info h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: #FFFFFF;
}

.footer-info p {
    color: #9CA3AF;
    max-width: 300px;
}

.footer-socials {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-socials h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #9CA3AF;
    margin-bottom: 6px;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
}

.social-links a {
    color: #E5E7EB;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.social-links a:hover {
    color: var(--secondary);
}

.footer-bottom {
    text-align: center;
    color: #9CA3AF;
    font-size: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
}

/* Mobile Menu Button Base */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
    padding: 0;
}

.mobile-menu-btn .bar {
    height: 2px;
    width: 100%;
    background-color: var(--text-main);
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Responsive design */
@media (max-width: 992px) {
    .hero-content h1, .hero-content.text-left h1 { font-size: 3.5rem; }
    .stats-row { gap: 40px; padding: 20px 30px; }
}

@media (max-width: 768px) {
    .glass-nav {
        padding: 14px 0;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu-btn.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .mobile-menu-btn.active .bar:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-btn.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    nav ul {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        border-left: 1px solid var(--glass-border);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.05);
        padding: 100px 30px 40px;
        gap: 25px;
        transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 1050;
    }

    nav ul.active {
        right: 0;
    }

    nav ul li {
        width: 100%;
    }

    nav ul li a {
        font-size: 1.15rem;
        font-weight: 600;
        display: block;
        padding: 8px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    }

    nav ul li a.btn-primary-sm {
        background: var(--primary) !important;
        color: #FFFFFF !important;
        text-align: center;
        border-radius: 12px;
        border-bottom: none;
        margin-top: 10px;
        box-shadow: 0 4px 15px rgba(229, 9, 20, 0.15);
    }

    /* Hero Headline & Buttons Side-by-Side */
    .hero-content h1, .hero-content.text-left h1 { font-size: 2.8rem; letter-spacing: -1px; }
    .hero-content .subtitle, .hero-content.text-left .subtitle { font-size: 1.1rem; }
    .hero-btns {
        flex-direction: row !important;
        gap: 8px !important;
        width: 100% !important;
        justify-content: center !important;
    }
    .hero-btns .btn-primary, .hero-btns .btn-secondary {
        width: auto !important;
        flex: 1 !important;
        max-width: 180px !important;
        padding: 12px 10px !important;
        font-size: 0.82rem !important;
        white-space: nowrap !important;
        text-align: center !important;
    }


    
    /* Stats row styling on mobile - Floating card style, taller and more visible */
    .stats-row {
        flex-direction: row !important;
        justify-content: space-around !important;
        gap: 8px !important;
        padding: 24px 12px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        border-radius: 16px !important;
        border: 1px solid rgba(229, 9, 20, 0.08) !important;
        background: #FFFFFF !important;
        box-shadow: 0 10px 30px rgba(229, 9, 20, 0.05) !important;
    }
    .stat-item {
        flex: 1 !important;
    }
    .stat-num {
        font-size: 1.7rem !important;
        white-space: nowrap !important;
        font-weight: 800 !important;
    }
    .stat-lbl {
        font-size: 0.68rem !important;
        letter-spacing: 0.5px !important;
        line-height: 1.3 !important;
        font-weight: 700 !important;
        color: var(--text-muted) !important;
    }

    /* Training cards 2 per line responsive layout */
    .training-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    .training-card {
        padding: 16px !important;
        border-radius: 16px !important;
    }
    .training-card h3 {
        font-size: 1.05rem !important;
        margin-bottom: 6px !important;
        line-height: 1.2 !important;
    }
    .training-card p {
        font-size: 0.75rem !important;
        margin-bottom: 12px !important;
        line-height: 1.3 !important;
    }
    .training-card .btn-secondary-sm {
        padding: 8px 10px !important;
        font-size: 0.75rem !important;
        text-align: center !important;
        width: 100% !important;
    }
    .adobe-icon {
        width: 44px !important;
        height: 44px !important;
        border-radius: 8px !important;
    }

    .badge-featured {
        position: static !important;
        display: inline-block !important;
        margin-bottom: 12px !important;
        width: fit-content !important;
        font-size: 0.65rem !important;
        padding: 3px 8px !important;
        border-radius: 8px !important;
    }
    .free-training-card {
        grid-column: 1 / -1 !important;
    }
    
    .section-title { font-size: 2.2rem; }
    .section { padding: 80px 0; }
    
    .footer-content { flex-direction: column; align-items: center; text-align: center; gap: 30px; }
    .social-links { justify-content: center; }
}

/* Featured Bundle Promotion Section */
#bundle-promo {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 10% 20%, rgba(229, 9, 20, 0.02) 0%, transparent 60%);
    border-bottom: 1px solid var(--glass-border);
}

.bundle-mobile-header {
    display: none;
}

.bundle-promo-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.bundle-promo-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bundle-promo-info {
    flex: 1.2;
    text-align: left;
}

.bundle-tag {
    font-size: 0.8rem;
    color: var(--primary);
    background: rgba(229, 9, 20, 0.08);
    border: 1px solid rgba(229, 9, 20, 0.15);
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 800;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 20px;
}

.bundle-promo-info h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #000000;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -1.5px;
}

.bundle-tagline {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    line-height: 1.6;
}

.bundle-features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.b-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.b-feature-item:hover {
    transform: translateY(-5px);
    border-color: rgba(229, 9, 20, 0.15);
    box-shadow: 0 15px 30px rgba(229, 9, 20, 0.05);
}

.b-feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.b-feature-item:hover::before {
    opacity: 1;
}

.bf-icon {
    width: 28px;
    height: 28px;
    background: rgba(229, 9, 20, 0.08);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
    flex-shrink: 0;
    transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.b-feature-item:hover .bf-icon {
    background: var(--primary);
    color: #FFFFFF;
    transform: scale(1.1);
}

.b-feature-item h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 4px;
}

.b-feature-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.bundle-action-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    background: #FFFFFF;
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    text-align: center;
    width: 100%;
}

.bundle-price-panel {
    text-align: center;
}

.price-retail {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 4px;
}

.price-retail .crossed {
    text-decoration: line-through;
    opacity: 0.6;
    margin-left: 5px;
}

.price-mega {
    font-size: 3.5rem;
    font-weight: 900;
    color: #15803d; /* Rich Dark Green for Price */
    line-height: 1;
    letter-spacing: -1px;
    margin-bottom: 4px;
}

.price-save {
    color: var(--primary); /* Brand Red */
    font-size: 0.85rem;
    font-weight: 700;
}

.bundle-buy-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 320px;
}

.bundle-buy-wrapper .btn-primary {
    width: 100%;
    text-align: center;
}

.btn-bundle {
    background: linear-gradient(135deg, #15803d 0%, #166534 100%) !important;
    box-shadow: 0 4px 15px rgba(21, 128, 61, 0.25) !important;
    color: #FFFFFF !important;
    border: none !important;
}

.btn-bundle:hover {
    box-shadow: 0 8px 25px rgba(21, 128, 61, 0.4) !important;
    transform: translateY(-3px) !important;
}

.bundle-guarantee {
    margin-top: 10px;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* 3D Visual composition stack (Increased cover sizes) */
.bundle-visual-composition {
    position: relative;
    height: 420px;
    width: 100%;
    max-width: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-40px); /* Shift left to prevent overlapping text on right */
}

.composition-card {
    position: absolute;
    width: 230px; /* Increased from 190px to make them imposing and well visible */
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    background: #FFFFFF;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    aspect-ratio: 10/14;
    transform-origin: bottom center;
}

.composition-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Positions of 4 covers */
.bundle-visual-composition .img-1 {
    transform: translate(-140px, -20px) rotate(-14deg);
    z-index: 1;
}

.bundle-visual-composition .img-2 {
    transform: translate(-45px, 20px) rotate(-5deg);
    z-index: 3;
}

.bundle-visual-composition .img-3 {
    transform: translate(45px, -25px) rotate(6deg);
    z-index: 2;
}

.bundle-visual-composition .img-4 {
    transform: translate(140px, 15px) rotate(15deg);
    z-index: 1;
}

/* Fan out animation on hover! */
.bundle-visual-composition:hover .img-1 {
    transform: translate(-210px, -35px) rotate(-22deg) scale(1.08);
    z-index: 2;
}

.bundle-visual-composition:hover .img-2 {
    transform: translate(-70px, 30px) rotate(-8deg) scale(1.08);
    z-index: 4;
}

.bundle-visual-composition:hover .img-3 {
    transform: translate(70px, -35px) rotate(8deg) scale(1.08);
    z-index: 3;
}

.bundle-visual-composition:hover .img-4 {
    transform: translate(210px, 25px) rotate(22deg) scale(1.08);
    z-index: 2;
}

/* 4 Products Single-Line Layout on Desktop and Responsive columns */
@media (min-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

@media (max-width: 1023px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
}

@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    .product-card {
        padding: 12px !important;
        border-radius: 16px !important;
    }
    .card-image {
        margin-bottom: 12px !important;
    }
    .price-badge {
        top: 8px !important;
        right: 8px !important;
        font-size: 0.7rem !important;
        padding: 4px 8px !important;
    }
    .card-content h3 {
        font-size: 1.1rem !important;
        margin-bottom: 6px !important;
    }
    .card-content p {
        font-size: 0.8rem !important;
        margin-bottom: 12px !important;
    }
    .card-footer {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 8px !important;
    }
    .btn-buy {
        width: 100% !important;
        text-align: center !important;
        padding: 8px 12px !important;
        font-size: 0.8rem !important;
    }
    .btn-link {
        font-size: 0.8rem !important;
        text-align: center !important;
    }
    .container {
        padding: 0 16px !important;
    }
    .hero-content h1, .hero-content.text-left h1 {
        font-size: 2.2rem !important;
    }
}

/* Adobe SVG Icons in training section */
.adobe-icon-wrapper {
    margin-bottom: 20px;
}

.adobe-icon {
    width: 60px;
    height: 60px;
    display: inline-block;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15));
    border-radius: 12px;
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.training-card:hover .adobe-icon {
    transform: scale(1.1) translateY(-3px);
}

/* Free training highlight card */
.free-training-card {
    border: 2px solid #15803d !important;
    background: linear-gradient(135deg, rgba(21, 128, 61, 0.02) 0%, rgba(255, 255, 255, 0.99) 100%) !important;
    box-shadow: 0 10px 30px rgba(21, 128, 61, 0.06) !important;
}



@media (max-width: 992px) {
    .bundle-mobile-header {
        display: block !important;
        text-align: center;
        width: 100%;
        margin-bottom: 25px;
    }
    .bundle-mobile-header h2 {
        font-size: 2.5rem;
        font-weight: 800;
        color: #000000;
        line-height: 1.1;
        margin-top: 15px;
        margin-bottom: 0;
        letter-spacing: -1.5px;
    }
    .bundle-mobile-header .bundle-tagline {
        font-size: 0.95rem;
        color: var(--text-muted);
        margin-top: 15px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.5;
    }
    .bundle-mobile-header .bundle-features-list {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important; /* 4 zones de texte sur une ligne */
        gap: 8px;
        margin-top: 25px;
        margin-bottom: 0px;
        width: 100%;
        text-align: center;
    }
    .bundle-mobile-header .b-feature-item {
        padding: 12px 6px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 6px;
        border-radius: 12px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    }
    .bundle-mobile-header .bf-icon {
        width: 22px;
        height: 22px;
        font-size: 0.75rem;
    }
    .bundle-mobile-header .b-feature-item h4 {
        font-size: 0.85rem;
        margin-bottom: 2px;
        line-height: 1.2;
    }
    .bundle-mobile-header .b-feature-item p {
        font-size: 0.68rem;
        line-height: 1.25;
    }
    .bundle-promo-info .bundle-tag,
    .bundle-promo-info h2,
    .bundle-promo-info .bundle-tagline,
    .bundle-promo-info .bundle-features-list {
        display: none !important;
    }
    .bundle-promo-wrapper {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    .bundle-visual-composition {
        transform: translateX(0) !important; /* Reset shift on vertical stack layout */
    }
    .bundle-promo-info {
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .bundle-action-box {
        width: 100%;
        flex-direction: column;
        gap: 20px;
        align-items: center;
        margin-bottom: 30px;
    }
    .bundle-price-panel {
        text-align: center;
    }
    .bundle-buy-wrapper {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .bundle-mobile-header .bundle-features-list {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 6px !important;
        margin-top: 20px;
    }
    .bundle-mobile-header .b-feature-item {
        padding: 8px 4px !important;
        border-radius: 10px !important;
        gap: 4px !important;
        min-height: auto;
    }
    .bundle-mobile-header .b-feature-item::before {
        width: 100%;
        height: 2px;
        top: 0;
        left: 0;
    }
    .bundle-mobile-header .bf-icon {
        width: 18px !important;
        height: 18px !important;
        font-size: 0.65rem !important;
    }
    .bundle-mobile-header .b-feature-item h4 {
        font-size: 0.70rem !important;
        line-height: 1.1;
    }
    .bundle-mobile-header .b-feature-item p {
        font-size: 0.55rem !important;
        line-height: 1.15 !important;
    }
    .price-mega {
        font-size: 2.2rem !important;
        white-space: nowrap !important;
    }
    .bundle-visual-composition {
        height: 310px;
        max-width: 340px;
    }
    .composition-card {
        width: 145px;
    }
    .bundle-visual-composition .img-1 { transform: translate(-80px, -12px) rotate(-14deg); }
    .bundle-visual-composition .img-2 { transform: translate(-25px, 12px) rotate(-5deg); }
    .bundle-visual-composition .img-3 { transform: translate(25px, -18px) rotate(6deg); }
    .bundle-visual-composition .img-4 { transform: translate(80px, 10px) rotate(15deg); }
    
    .bundle-visual-composition:hover .img-1 { transform: translate(-115px, -18px) rotate(-22deg) scale(1.05); }
    .bundle-visual-composition:hover .img-2 { transform: translate(-35px, 18px) rotate(-8deg) scale(1.05); }
    .bundle-visual-composition:hover .img-3 { transform: translate(35px, -18px) rotate(8deg) scale(1.05); }
    .bundle-visual-composition:hover .img-4 { transform: translate(115px, 12px) rotate(22deg) scale(1.05); }
}

/* 4 Columns for the main 4 training cards on desktop */
@media (min-width: 1024px) {
    .training-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

/* Stunning dark, glowing theme for the free training card to show it's an opportunity */
.free-training-card {
    background: linear-gradient(135deg, #020c1b 0%, #06152b 100%) !important;
    border: 2px solid #31A8FF !important;
    box-shadow: 0 15px 40px rgba(0, 102, 179, 0.25), 0 0 25px rgba(49, 168, 255, 0.15) !important;
    color: #FFFFFF !important;
    transition: all 0.3s ease !important;
}

.free-training-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 20px 45px rgba(0, 102, 179, 0.35), 0 0 30px rgba(49, 168, 255, 0.25) !important;
}

.free-training-card h3 {
    color: #FFFFFF !important;
    text-shadow: 0 0 10px rgba(49, 168, 255, 0.2) !important;
}

.free-training-card p {
    color: #A5C2EB !important;
}

.free-training-card .btn-secondary-sm {
    background: linear-gradient(135deg, #15803d 0%, #166534 100%) !important;
    border: none !important;
    color: #FFFFFF !important;
    box-shadow: 0 4px 15px rgba(21, 128, 61, 0.4) !important;
    font-weight: 700 !important;
    text-shadow: none !important;
}

.free-training-card .btn-secondary-sm:hover {
    background: linear-gradient(135deg, #166534 0%, #15803d 100%) !important;
    box-shadow: 0 6px 20px rgba(21, 128, 61, 0.6) !important;
}



/* Wide layout for free training card on desktop to show it's a great opportunity */
@media (min-width: 769px) {
    .free-training-card {
        grid-column: 1 / -1 !important;
        display: grid !important;
        grid-template-columns: auto 1fr auto !important;
        align-items: center !important;
        gap: 40px !important;
        text-align: left !important;
        padding: 40px !important;
        position: relative !important;
    }
    .free-training-card .adobe-icon-wrapper {
        margin-bottom: 0 !important;
    }
    .free-training-card h3 {
        margin-bottom: 8px !important;
        font-size: 1.8rem !important;
    }
    .free-training-card p {
        margin-bottom: 0 !important;
        font-size: 1.05rem !important;
    }
    .free-training-card .btn-secondary-sm {
        margin-top: 0 !important;
        padding: 14px 28px !important;
        font-size: 0.95rem !important;
        width: auto !important;
    }

}

/* Checkout Modal Styles */
.checkout-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(2, 12, 27, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.checkout-modal.active {
    display: flex;
    animation: fadeInModal 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes fadeInModal {
    from { opacity: 0; }
    to { opacity: 1; }
}

.checkout-modal-content {
    background: #FFFFFF !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: 24px !important;
    max-width: 580px;
    width: 100%;
    position: relative;
    padding: 40px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15) !important;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.checkout-modal.active .checkout-modal-content {
    transform: scale(1);
}

.checkout-modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-muted);
    background: transparent;
    border: none;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
}

.checkout-modal-close:hover {
    color: var(--primary);
}

.checkout-modal-header {
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 16px;
    text-align: left;
}

.checkout-modal-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 8px;
}

.checkout-product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #15803d;
}

.checkout-modal-body {
    max-height: 70vh;
    overflow-y: auto;
    padding-right: 5px;
}

.checkout-modal-body::-webkit-scrollbar {
    width: 6px;
}
.checkout-modal-body::-webkit-scrollbar-track {
    background: transparent;
}
.checkout-modal-body::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

@media (max-width: 576px) {
    .checkout-modal-content {
        padding: 24px 16px;
        border-radius: 20px !important;
    }
    .checkout-modal-header h3 {
        font-size: 1.4rem;
    }
    .checkout-modal-close {
        top: 16px;
        right: 16px;
    }
}

/* Back to Top Button Styling */
.back-to-top-btn {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary);
    color: #FFFFFF;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 800;
    box-shadow: 0 6px 20px rgba(229, 9, 20, 0.3);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.back-to-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top-btn:hover {
    background-color: #b91c1c; /* Darker red */
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(229, 9, 20, 0.45);
}

.back-to-top-btn:active {
    transform: translateY(-2px) scale(0.95);
}

@media (max-width: 768px) {
    .back-to-top-btn {
        bottom: 90px;
        right: 20px;
        width: 44px;
        height: 44px;
        font-size: 1.3rem;
    }
}

