@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;600;700;800&display=swap');

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

:root {
    /* Color Palette */
    --primary-color: #0b0f19;       /* Deep Obsidian Navy */
    --primary-light: #162032;       /* Dark Navy Surface */
    --secondary-color: #1e60d5;     /* Logo Royal Blue */
    --secondary-light: #258bf8;     /* Logo Dodger Blue */
    --accent-color: #e66a00;        /* Logo Dark Orange */
    --accent-light: #f99e1a;        /* Logo Light Gold */
    --light-bg: #f8fafc;            /* Clean light grey-blue */
    --dark-text: #0f172a;           /* Obsidian Text */
    --light-text: #64748b;          /* Cool Slate Text */
    --white: #ffffff;
    
    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #0b0f19 0%, #162032 50%, #1e60d5 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-light) 0%, var(--accent-color) 100%);
    --gradient-teal: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary-color) 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 20px -2px rgba(15, 23, 42, 0.06), 0 2px 8px -1px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 10px 10px -5px rgba(15, 23, 42, 0.04);
    --shadow-glow: 0 0 15px rgba(37, 139, 248, 0.2);
    
    /* Layout */
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--light-bg);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

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

/* ── Top Contact Bar ─────────────────────────────────────────── */
.top-bar {
    background: #080c14;
    border-bottom: 1px solid rgba(37, 139, 248, 0.15);
    padding: 0;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

/* subtle shimmer line at bottom */
.top-bar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(37, 139, 248, 0.4) 40%, rgba(230, 106, 0, 0.4) 60%, transparent 100%);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    padding: 0 24px;
    min-height: 38px;
}

/* Center tagline */
.top-bar-center {
    display: flex;
    align-items: center;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
}

.top-bar-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    padding: 0 16px;
    transition: var(--transition);
    border-right: 1px solid rgba(255,255,255,0.06);
    position: relative;
}

.top-bar-link:last-child {
    border-right: none;
    border-left: 1px solid rgba(255,255,255,0.06);
}

.top-bar-link svg {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
}

.top-bar-whatsapp {
    color: rgba(255,255,255,0.75);
}

.top-bar-whatsapp .top-bar-icon {
    background: #25d366;
    color: #fff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.top-bar-whatsapp:hover {
    color: #25d366;
    background: rgba(37, 211, 102, 0.06);
}

.top-bar-whatsapp:hover .top-bar-icon {
    box-shadow: 0 0 8px rgba(37, 211, 102, 0.5);
}

.top-bar-instagram {
    color: rgba(255,255,255,0.75);
}

.top-bar-instagram .top-bar-icon {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
    width: 22px;
    height: 22px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.top-bar-instagram:hover {
    color: #f58529;
    background: rgba(245, 133, 41, 0.06);
}

.top-bar-instagram:hover .top-bar-icon {
    box-shadow: 0 0 8px rgba(220, 39, 67, 0.5);
}

.top-bar-label {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.top-bar-label small {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.top-bar-label span {
    font-size: 0.82rem;
    font-weight: 600;
    color: inherit;
}

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

.logo img {
    height: 44px;
    border-radius: 50%;
    box-shadow: var(--shadow-glow);
    border: 2px solid var(--secondary-light);
}

.logo span {
    font-size: 1.4rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--light-text);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding: 4px 0;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-teal);
    transition: var(--transition);
}

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

.nav-links a:hover::after {
    width: 100%;
}

/* Buttons */
.btn {
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--white);
    box-shadow: 0 4px 14px 0 rgba(217, 119, 6, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(217, 119, 6, 0.4);
}

.btn-secondary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 14px 0 rgba(15, 23, 42, 0.2);
}

.btn-secondary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(15, 23, 42, 0.3);
}

.btn-danger {
    background-color: #ef4444;
    color: var(--white);
    box-shadow: 0 4px 14px 0 rgba(239, 68, 68, 0.2);
}

.btn-danger:hover {
    background-color: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(239, 68, 68, 0.3);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

/* Hero Section */
.hero {
    background: var(--gradient-hero);
    color: var(--white);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 139, 248, 0.15) 0%, rgba(0,0,0,0) 70%);
    top: -200px;
    right: -100px;
    border-radius: 50%;
    z-index: 1;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 24px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.15rem;
    margin-bottom: 36px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.hero img {
    max-width: 100%;
    border-radius: 20px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px -15px rgba(0,0,0,0.5);
    transition: var(--transition);
}

.hero img:hover {
    transform: scale(1.02);
    border-color: rgba(37, 139, 248, 0.4);
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 60px;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-card {
    background: var(--light-bg);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(226, 232, 240, 0.5);
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.feature-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-teal);
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 24px;
    display: inline-block;
    padding: 12px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: rotate(10deg);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--primary-color);
}

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

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-section h3 {
    margin-bottom: 24px;
    font-size: 1.3rem;
    font-family: 'Outfit', sans-serif;
    position: relative;
    padding-bottom: 8px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary-light);
    border-radius: 2px;
}

.footer-section p, .footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 14px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--secondary-light);
    transform: translateX(4px);
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-light);
    color: var(--primary-color);
    transform: translateY(-4px);
}

/* ── Footer Nav ──────────────────────────────────────────────── */
.footer-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 0;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    padding: 4px 18px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
}

/* pipe separators */
.footer-nav a + a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 12px;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.footer-nav a:hover {
    color: var(--white);
}

/* Highlight social links */
.footer-nav a[href*="wa.me"]:hover   { color: #25d366; }
.footer-nav a[href*="instagram"]:hover { color: #f58529; }

/* ── Footer Bottom ───────────────────────────────────────────── */
.footer-bottom {
    text-align: center;
    padding: 20px 0 0;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.82rem;
    letter-spacing: 0.3px;
}


/* Forms */
.form-container {
    max-width: 500px;
    margin: 80px auto;
    background: var(--white);
    padding: 48px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.form-container h2 {
    text-align: center;
    margin-bottom: 32px;
    color: var(--primary-color);
    font-size: 2rem;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-light);
    font-size: 0.9rem;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--dark-text);
    transition: var(--transition);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-light);
    box-shadow: var(--shadow-glow);
}

/* Dashboard Layout */
.dashboard {
    padding: 60px 0;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.dashboard-header h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    font-weight: 800;
}

/* Card */
.card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(226, 232, 240, 0.8);
    margin-bottom: 32px;
}

.card h3 {
    margin-bottom: 24px;
    color: var(--primary-color);
    font-size: 1.3rem;
}

/* Custom Table Layout */
.table-wrapper {
    overflow-x: auto;
    border-radius: var(--border-radius);
    border: 1px solid #e2e8f0;
    box-shadow: var(--shadow-sm);
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th, .table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.table th {
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table tr:last-child td {
    border-bottom: none;
}

.table tr:hover {
    background-color: var(--light-bg);
}

/* Video Player Wrapper */
.video-player {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin-bottom: 0;
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
}

.video-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Course Grid */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
}

.course-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.course-thumbnail {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 4rem;
    transition: var(--transition);
    position: relative;
}

.course-card:hover .course-thumbnail {
    filter: brightness(1.1);
}

.course-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.course-content h3 {
    margin-bottom: 12px;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.course-content p {
    color: var(--light-text);
    margin-bottom: 20px;
    font-size: 0.95rem;
    flex-grow: 1;
}

/* Alerts & Badges */
.alert {
    padding: 16px 24px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert-success {
    background-color: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
}

.alert-error {
    background-color: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fca5a5;
}

/* Status Badges */
.badge {
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
}

.badge-active {
    background-color: #d1fae5;
    color: #065f46;
}

.badge-inactive {
    background-color: #fef3c7;
    color: #92400e;
}

.badge-expired {
    background-color: #fee2e2;
    color: #991b1b;
}

/* Modal Layout */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-overlay .form-container {
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.active .form-container {
    transform: scale(1);
}

.centered-card {
    max-width: 600px;
    margin: 0 auto;
}

/* Course Sidebar Viewer Styles */
.sidebar {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 24px;
    max-height: 560px;
    overflow-y: auto;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: var(--shadow-md);
}

.video-list-item {
    display: block;
    padding: 14px 18px;
    border-radius: 8px;
    margin-bottom: 10px;
    cursor: pointer;
    text-decoration: none;
    color: var(--dark-text);
    transition: var(--transition);
    border: 1px solid transparent;
}

.video-list-item:hover {
    background: var(--light-bg);
    border-color: #e2e8f0;
}

.video-list-item.active {
    background: var(--gradient-teal);
    color: white;
    box-shadow: var(--shadow-glow);
}

.course-container {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 32px;
}

/* Media Queries */
@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero p {
        margin: 0 auto 36px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .course-container {
        grid-template-columns: 1fr;
    }
}

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

    .navbar .container {
        flex-direction: column;
        gap: 16px;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .dashboard-header .btn {
        width: 100%;
    }
    
    .form-container {
        padding: 30px 20px;
    }
}

/* Custom White-Label Video Player Controls */
.custom-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 56px;
    background: rgba(11, 15, 25, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 20px;
    z-index: 10;
    opacity: 1; /* Permanently visible! */
}

.control-btn {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-light);
}

.progress-container {
    flex-grow: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    position: relative;
    cursor: pointer;
    transition: height 0.1s ease;
}

.progress-container:hover {
    height: 10px;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--secondary-light) 0%, var(--secondary-color) 100%);
    border-radius: 4px;
    width: 0%;
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    width: 14px;
    height: 14px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    transition: transform 0.1s ease;
}

.progress-container:hover .progress-bar::after {
    transform: translateY(-50%) scale(1);
}

.time-display {
    color: #ffffff;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    min-width: 100px;
    text-align: center;
}

/* Container Fullscreen Active Override */
#yt-player-container.fullscreen-active {
    border-radius: 0 !important;
    max-width: 100vw !important;
    max-height: 100vh !important;
    width: 100vw !important;
    height: 100vh !important;
}

#yt-player-container.fullscreen-active .video-player {
    height: 100% !important;
    padding-bottom: 0 !important;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

/* Pricing Section Styles */
.pricing-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 50px;
    align-items: stretch;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

/* Featured Bundle Card Highlight Styles */
.pricing-card.featured {
    border: 2px solid var(--accent-light);
    box-shadow: 0 10px 30px -5px rgba(249, 158, 26, 0.2);
    transform: scale(1.03);
}

.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-8px);
    box-shadow: 0 20px 40px -5px rgba(249, 158, 26, 0.3);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--gradient-accent);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 40px;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.pricing-card .price {
    font-size: 2.2rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: var(--secondary-color);
    margin: 20px 0;
}

.pricing-card .original-price {
    font-size: 1.2rem;
    color: var(--light-text);
    text-decoration: line-through;
    margin-bottom: 5px;
}

.pricing-card .save-amount {
    color: #ef4444;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    text-align: left;
    flex-grow: 1;
}

.pricing-card ul li {
    padding: 8px 0;
    color: var(--light-text);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-card ul li::before {
    content: '✓';
    color: var(--secondary-light);
    font-weight: bold;
}

.pricing-card .btn {
    width: 100%;
    margin-top: auto;
}

/* Premium Bundle Highlights styling */
.bundle-includes {
    background: rgba(37, 139, 248, 0.05);
    border-radius: 8px;
    padding: 18px;
    margin: 15px 0 20px;
    text-align: left;
    border: 1px dashed rgba(37, 139, 248, 0.2);
}

.bundle-include-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 10px;
}

.bundle-include-item {
    font-size: 0.95rem;
    color: var(--primary-light);
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    font-weight: 600;
}

.bundle-include-item:last-child {
    margin-bottom: 0;
}

.bundle-include-item .val {
    color: var(--light-text);
    font-weight: 500;
}

.price-breakdown {
    border-top: 1px dashed rgba(226, 232, 240, 0.8);
    border-bottom: 1px dashed rgba(226, 232, 240, 0.8);
    padding: 15px 0;
    margin: 15px 0 25px;
    text-align: left;
}

.breakdown-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: var(--light-text);
    margin-bottom: 8px;
}

.breakdown-row:last-child {
    margin-bottom: 0;
}

.breakdown-row .old-price {
    text-decoration: line-through;
    font-weight: 600;
}

.breakdown-row.highlight {
    color: var(--primary-color);
    font-size: 1.15rem;
    font-weight: 700;
    margin-top: 5px;
}

.breakdown-row.highlight .deal-price {
    color: var(--accent-color);
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

.breakdown-row.savings {
    color: #ef4444;
    font-size: 1.05rem;
    font-weight: 700;
    background: #fef2f2;
    padding: 8px 14px;
    border-radius: 6px;
    margin-top: 12px;
    border: 1px solid #fee2e2;
}

/* ===== Full-Width Bundle Banner ===== */
.bundle-banner {
    margin-top: 40px;
    border-radius: 20px;
    background: linear-gradient(135deg, #0b0f19 0%, #162032 50%, #1e3a6e 100%);
    border: 2px solid var(--accent-light);
    box-shadow: 0 20px 60px -10px rgba(249, 158, 26, 0.25), 0 0 0 1px rgba(249,158,26,0.1);
    overflow: hidden;
    position: relative;
    transition: var(--transition);
}

.bundle-banner:hover {
    box-shadow: 0 30px 80px -10px rgba(249, 158, 26, 0.35);
    transform: translateY(-4px);
}

.featured-badge-top {
    background: var(--gradient-accent);
    color: var(--white);
    text-align: center;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.bundle-banner-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 0;
    align-items: center;
}

/* Left column */
.bundle-col {
    padding: 40px 36px;
}

.bundle-col-left {
    border-right: 1px solid rgba(255,255,255,0.08);
}

.bundle-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.bundle-tags {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bundle-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.9);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 0.9rem;
    font-weight: 500;
    width: fit-content;
    transition: var(--transition);
}

.bundle-tag:hover {
    background: rgba(255,255,255,0.14);
    border-color: var(--accent-light);
}

/* Center column */
.bundle-col-center {
    border-right: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}

.bundle-price-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.5);
    font-weight: 600;
    margin-bottom: 6px;
}

.bundle-old-price {
    font-size: 1.5rem;
    font-family: 'Outfit', sans-serif;
    color: rgba(255,255,255,0.4);
    text-decoration: line-through;
    font-weight: 700;
    margin-bottom: 12px;
}

.bundle-divider {
    width: 50px;
    height: 2px;
    background: var(--accent-light);
    margin: 16px auto;
    border-radius: 2px;
}

.bundle-new-price {
    font-size: 3rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: var(--accent-light);
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 14px;
}

.bundle-savings-tag {
    display: inline-block;
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
    border: 1px solid rgba(239,68,68,0.3);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 0.85rem;
    font-weight: 700;
}

/* Right column */
.bundle-col-right {
    text-align: center;
}

.bundle-cta-text {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.bundle-cta-btn {
    font-size: 1.05rem;
    padding: 14px 32px;
    border-radius: 10px;
    white-space: nowrap;
}

/* Responsive: stack bundle banner columns on tablet/mobile */
@media (max-width: 900px) {
    .bundle-banner-inner {
        grid-template-columns: 1fr;
    }
    .bundle-col-left,
    .bundle-col-center {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .bundle-col {
        padding: 32px 28px;
        text-align: center;
    }
    .bundle-tags {
        align-items: center;
    }
    .bundle-title {
        font-size: 1.6rem;
    }
    .bundle-new-price {
        font-size: 2.4rem;
    }
}

/* ── Course Disclaimer Modal ─────────────────────────────────── */
.disclaimer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 12, 20, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: disclaimerFadeIn 0.4s ease-out;
}

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

.disclaimer-overlay.disclaimer-closing {
    animation: disclaimerFadeOut 0.5s ease-in forwards;
}

@keyframes disclaimerFadeOut {
    from { opacity: 1; transform: scale(1); }
    to { opacity: 0; transform: scale(0.95); }
}

.disclaimer-modal {
    background: var(--white);
    border-radius: 20px;
    max-width: 720px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow:
        0 0 0 1px rgba(30, 96, 213, 0.1),
        0 25px 60px -12px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(30, 96, 213, 0.08);
    animation: disclaimerSlideUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}

@keyframes disclaimerSlideUp {
    from { opacity: 0; transform: translateY(40px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.disclaimer-header {
    background: var(--gradient-hero);
    padding: 32px 36px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.disclaimer-header::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(230, 106, 0, 0.15) 0%, transparent 70%);
    top: -100px;
    right: -50px;
    border-radius: 50%;
}

.disclaimer-header::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(37, 139, 248, 0.12) 0%, transparent 70%);
    bottom: -80px;
    left: -40px;
    border-radius: 50%;
}

.disclaimer-icon {
    font-size: 2.5rem;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
    animation: disclaimerPulse 2s ease-in-out infinite;
}

@keyframes disclaimerPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.disclaimer-header h2 {
    font-family: 'Outfit', sans-serif;
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
}

.disclaimer-subtitle {
    color: var(--accent-light);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.disclaimer-body {
    padding: 28px 36px;
    overflow-y: auto;
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--dark-text);
    scrollbar-width: thin;
    scrollbar-color: var(--secondary-light) transparent;
}

.disclaimer-body::-webkit-scrollbar {
    width: 6px;
}

.disclaimer-body::-webkit-scrollbar-track {
    background: transparent;
}

.disclaimer-body::-webkit-scrollbar-thumb {
    background: var(--secondary-light);
    border-radius: 3px;
}

.disclaimer-body p {
    margin-bottom: 14px;
}

.disclaimer-body strong {
    color: var(--primary-color);
}

.disclaimer-body ol {
    margin: 12px 0 18px 20px;
    padding: 0;
}

.disclaimer-body ol li {
    margin-bottom: 8px;
    padding-left: 6px;
    position: relative;
}

.disclaimer-body ol li::marker {
    color: var(--secondary-color);
    font-weight: 700;
}

.disclaimer-copyright {
    text-align: center;
    margin-top: 20px !important;
    padding-top: 16px;
    border-top: 1px solid #e2e8f0;
    color: var(--light-text) !important;
    font-size: 0.82rem !important;
    font-weight: 600;
}

.disclaimer-footer {
    padding: 20px 36px 28px;
    background: var(--light-bg);
    border-top: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

/* Custom Checkbox */
.disclaimer-checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark-text);
    user-select: none;
    padding: 12px 20px;
    background: var(--white);
    border-radius: 10px;
    border: 2px solid #e2e8f0;
    transition: var(--transition);
    width: 100%;
}

.disclaimer-checkbox-label:hover {
    border-color: var(--secondary-light);
    box-shadow: var(--shadow-glow);
}

.disclaimer-checkbox-label input[type="checkbox"] {
    display: none;
}

.disclaimer-checkmark {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border: 2px solid #cbd5e1;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    position: relative;
}

.disclaimer-checkmark::after {
    content: '\2713';
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    opacity: 0;
    transform: scale(0);
    transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.disclaimer-checkbox-label input[type="checkbox"]:checked ~ .disclaimer-checkmark {
    background: var(--gradient-teal);
    border-color: var(--secondary-color);
    box-shadow: 0 0 8px rgba(30, 96, 213, 0.3);
}

.disclaimer-checkbox-label input[type="checkbox"]:checked ~ .disclaimer-checkmark::after {
    opacity: 1;
    transform: scale(1);
}

/* Accept Button */
.disclaimer-accept-btn {
    width: 100%;
    padding: 14px 24px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 10px;
    letter-spacing: 0.3px;
    transition: var(--transition);
}

.disclaimer-accept-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.disclaimer-accept-btn:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(217, 119, 6, 0.4);
}

/* Responsive Disclaimer */
@media (max-width: 600px) {
    .disclaimer-overlay {
        padding: 10px;
    }

    .disclaimer-modal {
        max-height: 95vh;
        border-radius: 16px;
    }

    .disclaimer-header {
        padding: 24px 20px 20px;
    }

    .disclaimer-header h2 {
        font-size: 1.3rem;
    }

    .disclaimer-body {
        padding: 20px;
        font-size: 0.85rem;
    }

    .disclaimer-footer {
        padding: 16px 20px 20px;
    }
}

