/* ==========================================
   GLOBAL STYLES & VARIABLES
   ========================================== */
   :root {
    /* Modern "FinTech / AI" palette (cool, premium, high-contrast) */
    --primary-color: #2563EB;      /* Blue */
    --primary-dark: #1D4ED8;       /* Deep Blue */
    --primary-light: #60A5FA;      /* Soft Blue */
    --secondary-color: #14B8A6;    /* Teal */
    --accent-color: #F59E0B;       /* Gold */
    --success-color: #10B981;
    --warning-color: #FBBF24;
    --dark-color: #0B1220;
    --light-color: #F8FAFC;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --gray-900: #0B1220;
    --white: #FFFFFF;
    
    /* Modern Gradients */
    --gradient-primary: linear-gradient(135deg, #2563EB 0%, #0EA5E9 50%, #14B8A6 100%);
    --gradient-secondary: linear-gradient(135deg, #14B8A6 0%, #22D3EE 100%);
    --gradient-accent: linear-gradient(135deg, #F59E0B 0%, #F97316 100%);
    --gradient-success: linear-gradient(135deg, #10B981 0%, #059669 100%);
    --gradient-purple: linear-gradient(135deg, #7C3AED 0%, #2563EB 100%);
    --gradient-pink: linear-gradient(135deg, #DB2777 0%, #F43F5E 100%);
    --gradient-ocean: linear-gradient(135deg, #2563EB 0%, #0EA5E9 50%, #14B8A6 100%);
    --gradient-sunset: linear-gradient(135deg, #F59E0B 0%, #FB923C 50%, #F97316 100%);
    --gradient-midnight: linear-gradient(135deg, #0B1220 0%, #111C33 100%);
    
    /* Enhanced Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-colored: 0 20px 40px -10px rgba(37, 99, 235, 0.35);
    --shadow-glow: 0 0 30px rgba(34, 211, 238, 0.22);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-800);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.2;
    color: var(--gray-900);
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.875rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

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

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

.section-padding {
    padding: 120px 0;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
}

.wk-navbar {
    padding: 1.25rem 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.wk-navbar.scrolled {
    padding: 0.75rem 0;
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.95);
}

.navbar-brand {
    font-size: 1.75rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    position: relative;
}

.wk-logo {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    box-shadow: 0 10px 25px -18px rgba(37, 99, 235, 0.55);
    flex-shrink: 0;
}

.wk-brand-top {
    line-height: 1;
}

.wk-brand-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    line-height: 1.05;
}

.brand-name {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.brand-name::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    opacity: 0;
    transition: var(--transition);
}

.navbar-brand:hover .brand-name::after {
    opacity: 1;
}

.brand-tagline {
    font-size: 0.78rem;
    font-weight: 650;
    color: var(--gray-500);
    letter-spacing: -0.01em;
    margin-top: 0;
}

.navbar-nav .nav-link {
    color: var(--gray-700);
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    margin: 0 0.25rem;
    transition: var(--transition);
    position: relative;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    width: 70%;
}

.btn-get-started {
    background: var(--gradient-primary);
    color: var(--white) !important;
    padding: 0.625rem 1.75rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: var(--shadow-colored);
    position: relative;
    overflow: hidden;
    letter-spacing: -0.01em;
}

.btn-get-started::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-get-started:hover::before {
    width: 300px;
    height: 300px;
}

.btn-get-started:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.wk-navbar .navbar-toggler {
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 12px;
    padding: 0.5rem 0.75rem;
}

.wk-navbar .navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(37, 99, 235, 0.18);
}

.wk-navbar .navbar-toggler-icon {
    filter: invert(0.2);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-primary);
    color: var(--white);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/assets/img/hero.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    filter: saturate(1.1) contrast(1.05);
    transform: scale(1.04);
    z-index: 0;
    pointer-events: none;
}

.hero-bg {
    position: relative;
    width: 100%;
    z-index: 1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    animation: heroAnimation 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes heroAnimation {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.5; }
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
}

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

.hero-badge {
    display: inline-block;
    padding: 0.625rem 1.75rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-title .text-gradient {
    background: linear-gradient(90deg, #FBBF24 0%, #F59E0B 35%, #F43F5E 70%, #A78BFA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 10px 26px rgba(11, 18, 32, 0.45));
}

.hero-description {
    font-size: 1.35rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.7;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
    flex-wrap: wrap;
}

.hero-cta-note {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0 0 3.25rem 0;
    font-weight: 600;
    opacity: 0.95;
}

.hero-cta-note i {
    font-size: 1.1rem;
    opacity: 0.95;
}

.hero-cta .btn {
    padding: 1.125rem 2.5rem;
    font-weight: 700;
    border-radius: 50px;
    font-size: 1.05rem;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
    letter-spacing: -0.01em;
}

.hero-cta .btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.hero-cta .btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-2xl);
}

.hero-cta .btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.hero-cta .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 3.5rem;
    flex-wrap: wrap;
}

.stat-item {
    position: relative;
    padding-left: 1rem;
}

.stat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-sunset);
    border-radius: 2px;
}

.stat-item h3 {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 0.25rem;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.stat-item p {
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 500;
}

.hero-image {
    position: relative;
    animation: fadeInRight 0.8s ease-out 0.2s both;
}

.hero-chart {
    position: absolute;
    width: 190px;
    height: 120px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    box-shadow: 0 22px 60px -45px rgba(11, 18, 32, 0.55);
    pointer-events: none;
    z-index: 3;
}

.hero-chart--line {
    top: 36px;
    right: -64px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='140' viewBox='0 0 220 140'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='1' y2='0'%3E%3Cstop offset='0' stop-color='%2322D3EE'/%3E%3Cstop offset='0.5' stop-color='%232563EB'/%3E%3Cstop offset='1' stop-color='%237C3AED'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M20 30H200M20 70H200M20 110H200' stroke='rgba(255,255,255,0.12)' stroke-width='1'/%3E%3Cpath d='M28 104 C48 88, 58 96, 78 78 C96 62, 112 72, 132 54 C150 40, 166 52, 192 30' fill='none' stroke='url(%23g)' stroke-width='4' stroke-linecap='round'/%3E%3Ccircle cx='28' cy='104' r='4' fill='%2322D3EE'/%3E%3Ccircle cx='78' cy='78' r='4' fill='%232563EB'/%3E%3Ccircle cx='132' cy='54' r='4' fill='%237C3AED'/%3E%3Ccircle cx='192' cy='30' r='4' fill='%23F59E0B'/%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
}

.hero-chart--bars {
    bottom: 34px;
    left: -64px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='140' viewBox='0 0 220 140'%3E%3Cpath d='M20 110H200' stroke='rgba(255,255,255,0.12)' stroke-width='1'/%3E%3Crect x='36' y='72' width='18' height='38' rx='6' fill='rgba(34,211,238,0.85)'/%3E%3Crect x='66' y='54' width='18' height='56' rx='6' fill='rgba(96,165,250,0.85)'/%3E%3Crect x='96' y='62' width='18' height='48' rx='6' fill='rgba(37,99,235,0.85)'/%3E%3Crect x='126' y='40' width='18' height='70' rx='6' fill='rgba(124,58,237,0.85)'/%3E%3Crect x='156' y='58' width='18' height='52' rx='6' fill='rgba(245,158,11,0.85)'/%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
    z-index: 3;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image img {
    border-radius: 30px;
    box-shadow: var(--shadow-2xl);
    border: 4px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}


.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 2;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.mouse {
    width: 28px;
    height: 45px;
    border: 3px solid rgba(255, 255, 255, 0.6);
    border-radius: 25px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 3px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(18px); }
}

/* ==========================================
   SECTION STYLES
   ========================================== */
.section-badge {
    display: inline-block;
    padding: 0.625rem 1.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-colored);
    position: relative;
}

.section-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 2px;
    background: var(--gradient-primary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1.25rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.section-description {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 3.5rem;
    line-height: 1.7;
    font-weight: 400;
}

.section-header {
    margin-bottom: 4.5rem;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about-image {
    position: relative;
}

.about-badge {
    position: absolute;
    bottom: -60px;
    right: 30px;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-badge i {
    font-size: 3rem;
    color: var(--primary-color);
}

.about-badge h4 {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 0.25rem;
}

.about-badge p {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0;
}

.about-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.feature-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--gray-600);
    margin: 0;
}

/* ==========================================
   COURSES SECTION
   ========================================== */
.courses-section {
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.course-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--gray-100);
    position: relative;
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
}

.course-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-light);
}

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

.course-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.course-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: var(--transition);
}

.course-card:hover .course-image::after {
    opacity: 1;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.course-card:hover .course-image img {
    transform: scale(1.15);
}

.course-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    z-index: 2;
    backdrop-filter: blur(10px);
}

.course-content {
    padding: 2.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.course-meta {
    display: flex;
    gap: 1.75rem;
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
    color: var(--gray-500);
    font-weight: 500;
}

.course-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.course-meta i {
    color: var(--primary-color);
}

.course-title {
    font-size: 1.625rem;
    margin-bottom: 0.75rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.course-subtitle {
    font-size: 1.05rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
    font-weight: 600;
}

.course-description {
    color: var(--gray-600);
    margin-bottom: 1.75rem;
    flex-grow: 1;
    line-height: 1.7;
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.75rem;
    border-top: 2px solid var(--gray-100);
    margin-bottom: 1.75rem;
}

.course-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.05rem;
}

.course-rating i {
    font-size: 1.25rem;
}

.course-price {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.course-card .btn {
    width: 100%;
    padding: 1rem;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 12px;
    background: var(--gradient-primary);
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.course-card .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.course-card .btn:hover::before {
    width: 300px;
    height: 300px;
}

.course-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

/* ==========================================
   BENEFITS SECTION
   ========================================== */
.planner-section {
    position: relative;
    background: radial-gradient(circle at 20% 10%, rgba(124, 58, 237, 0.12) 0%, transparent 45%),
                radial-gradient(circle at 80% 90%, rgba(34, 211, 238, 0.14) 0%, transparent 45%),
                linear-gradient(180deg, var(--white) 0%, var(--gray-50) 55%, var(--white) 100%);
    overflow: hidden;
}

.planner-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 35%, rgba(37, 99, 235, 0.14) 0%, transparent 52%),
        radial-gradient(circle at 82% 58%, rgba(20, 184, 166, 0.12) 0%, transparent 52%),
        url('data:image/svg+xml,<svg width="140" height="140" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="wkGrid" width="140" height="140" patternUnits="userSpaceOnUse"><path d="M 140 0 L 0 0 0 140" fill="none" stroke="rgba(37,99,235,0.08)" stroke-width="1"/><path d="M 70 0 L 70 140" fill="none" stroke="rgba(20,184,166,0.06)" stroke-width="1"/><path d="M 0 70 L 140 70" fill="none" stroke="rgba(15,23,42,0.05)" stroke-width="1"/></pattern></defs><rect width="100%25" height="100%25" fill="url(%23wkGrid)"/></svg>');
    opacity: 0.9;
    pointer-events: none;
}

.planner-shell {
    position: relative;
    z-index: 1;
}

.planner-panel {
    height: 100%;
    border-radius: 26px;
    padding: 2.25rem;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(148, 163, 184, 0.22);
    box-shadow: 0 30px 90px -60px rgba(11, 18, 32, 0.35);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    position: relative;
    overflow: hidden;
}

.planner-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(20, 184, 166, 0.06) 55%, rgba(124, 58, 237, 0.08) 100%);
    opacity: 1;
    pointer-events: none;
}

.planner-panel > * {
    position: relative;
    z-index: 1;
}

.planner-step {
    margin-bottom: 1.5rem;
}

.planner-label {
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.planner-value {
    font-weight: 900;
    color: var(--gray-900);
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.16);
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
}

.planner-hint {
    margin-top: 0.5rem;
    color: var(--gray-600);
    font-size: 0.95rem;
}

.planner-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.planner-option {
    border: 1px solid rgba(148, 163, 184, 0.28);
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    padding: 0.85rem 0.95rem;
    font-weight: 900;
    color: var(--gray-800);
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    transition: var(--transition-fast);
    text-align: left;
}

.planner-option i {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-colored);
    flex-shrink: 0;
}

.planner-option:hover {
    border-color: rgba(37, 99, 235, 0.35);
    box-shadow: 0 14px 34px -26px rgba(37, 99, 235, 0.45);
}

.planner-option:focus-visible {
    outline: 3px solid rgba(37, 99, 235, 0.25);
    outline-offset: 2px;
}

.planner-option.is-active {
    background: rgba(37, 99, 235, 0.10);
    border-color: rgba(37, 99, 235, 0.45);
    box-shadow: 0 18px 44px -28px rgba(37, 99, 235, 0.45);
}

.planner-select {
    border-radius: 16px;
    padding: 0.85rem 1rem;
    font-weight: 700;
    border-color: rgba(148, 163, 184, 0.28);
}

.planner-range {
    margin-top: 0.25rem;
}

.planner-meter-track {
    width: 100%;
    height: 12px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(15, 23, 42, 0.10);
    overflow: hidden;
}

.planner-meter-bar {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #22D3EE 0%, #2563EB 45%, #7C3AED 100%);
    box-shadow: 0 8px 22px -16px rgba(124, 58, 237, 0.7);
    transition: width 0.35s ease;
}

.planner-summary {
    margin-top: 0.6rem;
    color: var(--gray-700);
    font-weight: 600;
}

.planner-results {
    height: 100%;
    border-radius: 26px;
    padding: 2.25rem;
    background: rgba(11, 18, 32, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 40px 120px -70px rgba(11, 18, 32, 0.9);
    position: relative;
    overflow: hidden;
}

.planner-results::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 10%, rgba(34, 211, 238, 0.24) 0%, transparent 55%),
        radial-gradient(circle at 85% 80%, rgba(124, 58, 237, 0.22) 0%, transparent 60%);
    opacity: 1;
    pointer-events: none;
}

.planner-results > * {
    position: relative;
    z-index: 1;
}

.planner-results-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.planner-results-title {
    color: var(--white);
    font-weight: 900;
    letter-spacing: -0.02em;
    margin: 0 0 0.35rem 0;
}

.planner-results-subtitle {
    color: rgba(226, 232, 240, 0.85);
    margin: 0;
    max-width: 42rem;
}

.planner-contact {
    white-space: nowrap;
    padding: 0.8rem 1.25rem;
}

.planner-courses {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.planner-course-card {
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    overflow: hidden;
    transition: var(--transition-fast);
    display: flex;
    flex-direction: column;
}

.planner-course-card:hover {
    border-color: rgba(34, 211, 238, 0.35);
    box-shadow: 0 20px 60px -45px rgba(34, 211, 238, 0.6);
}

.planner-course-media {
    position: relative;
    height: 140px;
    overflow: hidden;
}

.planner-course-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05) contrast(1.05);
    opacity: 0.85;
}

.planner-course-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 18, 32, 0.25) 0%, rgba(11, 18, 32, 0.90) 100%);
}

.planner-course-body {
    padding: 1.15rem 1.15rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    flex-grow: 1;
}

.planner-course-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    color: rgba(226, 232, 240, 0.82);
    font-weight: 700;
    font-size: 0.95rem;
}

.planner-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    background: rgba(34, 211, 238, 0.14);
    border: 1px solid rgba(34, 211, 238, 0.20);
    color: rgba(226, 232, 240, 0.95);
    font-weight: 800;
    font-size: 0.85rem;
}

.planner-course-title {
    margin: 0;
    color: var(--white);
    font-weight: 900;
    letter-spacing: -0.02em;
    font-size: 1.15rem;
    line-height: 1.25;
}

.planner-course-subtitle {
    margin: 0;
    color: rgba(226, 232, 240, 0.80);
    line-height: 1.55;
}

.planner-course-actions {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.planner-course-price {
    font-weight: 900;
    background: linear-gradient(90deg, #22D3EE 0%, #60A5FA 40%, #F59E0B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.planner-course-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.95);
    padding: 0.55rem 0.8rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.planner-course-link:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.22);
    color: var(--white);
}

.planner-course-card.is-primary {
    border-color: rgba(245, 158, 11, 0.35);
    box-shadow: 0 24px 70px -55px rgba(245, 158, 11, 0.95);
}

.planner-course-card.is-primary .planner-pill {
    background: rgba(245, 158, 11, 0.16);
    border-color: rgba(245, 158, 11, 0.24);
}

.planner-course-card.is-primary .planner-course-link {
    background: rgba(245, 158, 11, 0.16);
    border-color: rgba(245, 158, 11, 0.22);
}

.planner-course-card.is-primary .planner-course-link:hover {
    background: rgba(245, 158, 11, 0.22);
}

@media (max-width: 991px) {
    .planner-results-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .planner-contact {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .planner-panel,
    .planner-results {
        padding: 1.5rem;
    }

    .planner-options {
        grid-template-columns: 1fr;
    }

    .planner-courses {
        grid-template-columns: 1fr;
    }
}

.benefits-section {
    position: relative;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 45%, var(--white) 100%);
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 28%, rgba(37, 99, 235, 0.14) 0%, transparent 55%),
        radial-gradient(circle at 82% 72%, rgba(20, 184, 166, 0.12) 0%, transparent 55%),
        url('data:image/svg+xml,<svg width="140" height="140" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="140" height="140" patternUnits="userSpaceOnUse"><circle cx="8" cy="8" r="1.2" fill="rgba(37,99,235,0.18)"/><circle cx="78" cy="40" r="1" fill="rgba(20,184,166,0.16)"/><circle cx="120" cy="100" r="1.1" fill="rgba(15,23,42,0.08)"/></pattern></defs><rect width="100%25" height="100%25" fill="url(%23dots)"/></svg>');
    opacity: 0.85;
    pointer-events: none;
}

.benefits-section .container {
    position: relative;
    z-index: 1;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.78);
    padding: 2.25rem 2rem;
    border-radius: 24px;
    box-shadow: 0 18px 40px -28px rgba(11, 18, 32, 0.35);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(148, 163, 184, 0.22);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(37, 99, 235, 0.22) 0%, transparent 55%),
        radial-gradient(circle at 75% 80%, rgba(20, 184, 166, 0.18) 0%, transparent 55%);
    opacity: 0.65;
    z-index: 0;
}

.benefit-card:hover {
    box-shadow: 0 26px 70px -42px rgba(11, 18, 32, 0.55);
    border-color: rgba(37, 99, 235, 0.35);
}

.benefit-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.75rem;
    color: var(--white);
    font-size: 2.5rem;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-colored);
    transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
    box-shadow: var(--shadow-glow);
}

.benefit-card h4 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    font-weight: 800;
    position: relative;
    z-index: 1;
    letter-spacing: -0.02em;
}

.benefit-card p {
    color: var(--gray-600);
    margin: 0;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonials-carousel {
    position: relative;
}

.testimonials-carousel .carousel-inner {
    padding-bottom: 3rem;
}

.testimonials-carousel .carousel-indicators {
    margin-bottom: 0;
}

.testimonials-carousel .carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(37, 99, 235, 0.35);
}

.testimonials-carousel .carousel-indicators .active {
    background-color: rgba(37, 99, 235, 0.95);
}

.testimonials-carousel .carousel-control-prev,
.testimonials-carousel .carousel-control-next {
    width: 52px;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    opacity: 1;
}

.testimonials-carousel .carousel-control-prev-icon,
.testimonials-carousel .carousel-control-next-icon {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-md);
    background-size: 55% 55%;
}

.testimonials-carousel .carousel-control-prev-icon {
    filter: none;
}

.testimonials-carousel .carousel-control-next-icon {
    filter: none;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    height: 100%;
}

.testimonial-rating {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.testimonial-text {
    color: var(--gray-700);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--gradient-primary);
    box-shadow: var(--shadow-colored);
}

.testimonial-avatar i {
    font-size: 1.75rem;
    color: var(--white);
}

.testimonial-author h5 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.testimonial-author p {
    color: var(--gray-600);
    font-size: 0.875rem;
    margin: 0;
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.accordion-item {
    border: none;
    margin-bottom: 1rem;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.accordion-button {
    background: var(--white);
    color: var(--gray-900);
    font-weight: 600;
    font-size: 1.125rem;
    padding: 1.5rem;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: var(--light-color);
    color: var(--primary-color);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    padding: 1.5rem;
    color: var(--gray-700);
    font-size: 1rem;
    line-height: 1.8;
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
    background: var(--gradient-primary);
    padding: 120px 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(11, 18, 32, 0.35) 0%, rgba(37, 99, 235, 0.15) 45%, rgba(20, 184, 166, 0.10) 100%),
        url('/assets/img/cta-abstract.jpg'),
        radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    background-size: cover, cover, auto, auto;
    background-position: center, center, center, center;
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
    pointer-events: none;
}

.cta-card {
    position: relative;
    z-index: 2;
    border-radius: 28px;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 30px 80px -30px rgba(11, 18, 32, 0.65);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
}

.cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-weight: 800;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
}

.cta-eyebrow i {
    opacity: 0.95;
}

.cta-card .cta-title {
    margin-bottom: 1rem;
}

.cta-card .cta-description {
    margin-bottom: 1.75rem;
    max-width: 48rem;
}

.cta-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem 1.25rem;
    opacity: 0.98;
}

.cta-points li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
}

.cta-points li i {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
}

.cta-actions {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.cta-title {
    font-size: 3.5rem;
    margin-bottom: 1.25rem;
    color: var(--white);
    font-weight: 900;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.cta-description {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-primary {
    padding: 1.25rem 3rem;
    font-weight: 700;
    border-radius: 50px;
    font-size: 1.125rem;
    box-shadow: var(--shadow-2xl);
    background: var(--white);
    color: var(--primary-color);
    border: none;
    transition: var(--transition);
}

.cta-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.3);
    background: var(--gray-50);
}

.cta-secondary {
    border-radius: 50px;
    padding: 1.15rem 2.25rem;
    font-weight: 800;
}

.cta-fineprint {
    margin: 0.25rem 0 0 0;
    font-weight: 600;
    opacity: 0.9;
    text-align: center;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    position: relative;
    overflow: hidden;
    background: var(--gradient-midnight);
    color: var(--gray-300);
    padding: 88px 0 32px;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 25%, rgba(37, 99, 235, 0.22) 0%, transparent 55%),
        radial-gradient(circle at 85% 70%, rgba(20, 184, 166, 0.18) 0%, transparent 55%),
        url('data:image/svg+xml,<svg width="120" height="120" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid2" width="120" height="120" patternUnits="userSpaceOnUse"><path d="M 120 0 L 0 0 0 120" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%25" height="100%25" fill="url(%23grid2)"/></svg>');
    opacity: 0.75;
    pointer-events: none;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.55), rgba(37, 99, 235, 0.55), transparent);
    pointer-events: none;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-brand {
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 0;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    box-shadow: 0 16px 40px -30px rgba(34, 211, 238, 0.65);
}

.footer-title {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 900;
}

.footer-description {
    margin-bottom: 1.5rem;
    color: rgba(226, 232, 240, 0.8);
    max-width: 28rem;
}

.footer-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.92);
    font-weight: 800;
    transition: var(--transition);
}

.footer-cta:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.22);
    color: var(--white);
}

.footer-links {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(226, 232, 240, 0.82);
    transition: var(--transition);
}

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

.footer-contact {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--gray-300);
}

.footer-contact a {
    color: rgba(226, 232, 240, 0.82);
}

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

.footer-contact i {
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.footer-bottom {
    margin-top: 2.75rem;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.copyright {
    margin-bottom: 0.5rem;
}

.tax-note {
    font-size: 0.875rem;
    color: rgba(148, 163, 184, 0.8);
    margin: 0;
}

/* ==========================================
   COURSE DETAIL PAGE
   ========================================== */
.course-hero {
    background: var(--light-color);
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}

.course-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(248, 250, 252, 0.92) 0%, rgba(248, 250, 252, 0.78) 55%, rgba(248, 250, 252, 0.88) 100%),
        var(--course-hero-bg);
    background-size: cover, cover;
    background-position: center, center;
    opacity: 0.9;
    filter: saturate(1.05) contrast(1.05);
    transform: scale(1.03);
    z-index: 0;
    pointer-events: none;
}

.course-hero > .container {
    position: relative;
    z-index: 1;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.breadcrumb-item a {
    color: var(--gray-600);
}

.breadcrumb-item.active {
    color: var(--gray-900);
}

.course-hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.course-hero-subtitle {
    font-size: 1.5rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.course-hero-description {
    font-size: 1.125rem;
    color: var(--gray-700);
    margin-bottom: 2rem;
}

.course-hero-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-700);
    font-weight: 500;
}

.meta-item i {
    color: var(--primary-color);
}

.course-hero-image img {
    box-shadow: var(--shadow-xl);
}

.overview-section {
    margin-bottom: 4rem;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.outcome-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-color);
    border-radius: 10px;
}

.outcome-item i {
    color: var(--secondary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.curriculum-modules {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.module-item {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.module-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.module-header {
    background: var(--light-color);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.module-title {
    font-size: 1.25rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.module-number {
    background: var(--gradient-primary);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    font-weight: 700;
}

.module-duration {
    color: var(--gray-600);
    font-weight: 500;
}

.module-lessons {
    list-style: none;
    padding: 1.5rem;
}

.module-lessons li {
    display: flex;
    align-items: start;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.module-lessons li:last-child {
    border-bottom: none;
}

.module-lessons i {
    color: var(--primary-color);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.prerequisites-box {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    display: flex;
    gap: 1rem;
}

.prerequisites-box i {
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.for-who-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.for-who-item {
    text-align: center;
}

.for-who-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.for-who-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.for-who-item p {
    color: var(--gray-600);
    margin: 0;
}

/* Sidebar */
.course-sidebar {
    position: sticky;
    top: 100px;
}

.pricing-card,
.features-list {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
}

.pricing-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-subtitle {
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.pricing-options {
    margin-bottom: 2rem;
}

.pricing-option {
    margin-bottom: 1rem;
}

.pricing-option input[type="radio"] {
    display: none;
}

.pricing-option label {
    display: block;
    padding: 1.5rem;
    border: 2px solid var(--gray-200);
    border-radius: 15px;
    cursor: pointer;
    transition: var(--transition);
}

.pricing-option input:checked + label {
    border-color: var(--primary-color);
    background: var(--light-color);
}

.plan-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.plan-name {
    font-size: 1.25rem;
    font-weight: 700;
}

.plan-badge {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.plan-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.plan-features {
    list-style: none;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.plan-features i {
    color: var(--secondary-color);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
    font-size: 0.875rem;
}

.badge-item i {
    color: var(--primary-color);
}

.features-list h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.features-list ul {
    list-style: none;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.features-list i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

/* ==========================================
   CHECKOUT PAGE
   ========================================== */
.checkout-section {
    background: var(--light-color);
    min-height: 100vh;
    padding-top: 120px;
}

.checkout-form-container {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.checkout-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.checkout-subtitle {
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.form-section {
    margin-bottom: 2.5rem;
}

.form-section-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-number {
    width: 35px;
    height: 35px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.form-label {
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    padding: 0.75rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(79, 70, 229, 0.1);
}

.payment-methods {
    margin-bottom: 1.5rem;
}

.payment-icons {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-color);
    border-radius: 10px;
}

.payment-icons i {
    font-size: 2rem;
    color: var(--primary-color);
}

.checkout-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    color: var(--gray-600);
    font-size: 0.875rem;
}

.checkout-security i {
    color: var(--secondary-color);
    font-size: 1.25rem;
}

.order-summary {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.summary-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.summary-course {
    display: flex;
    gap: 1rem;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.summary-course img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.course-info h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.course-info p {
    color: var(--gray-600);
    margin: 0;
}

.summary-features {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.summary-features h5 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.summary-features ul {
    list-style: none;
}

.summary-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.summary-features i {
    color: var(--secondary-color);
}

.summary-pricing {
    margin-bottom: 1.5rem;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.pricing-row.total {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    padding-top: 0.75rem;
    border-top: 2px solid var(--gray-200);
}

.summary-guarantee {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 10px;
    display: flex;
    gap: 1rem;
}

.summary-guarantee i {
    color: var(--secondary-color);
    font-size: 2rem;
    flex-shrink: 0;
}

.summary-guarantee h5 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.summary-guarantee p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin: 0;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.success-icon i {
    font-size: 4rem;
    color: var(--white);
}

/* ==========================================
   LEGAL PAGES
   ========================================== */
.legal-page {
    padding: 120px 0 80px;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content .last-updated {
    color: var(--gray-600);
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* ==========================================
   CONTACT PAGE
   ========================================== */
.contact-section {
    padding: 120px 0 80px;
}

.contact-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.contact-success {
    border-radius: 18px;
    border: 1px solid rgba(16, 185, 129, 0.25);
    box-shadow: 0 18px 50px -40px rgba(16, 185, 129, 0.55);
}

.contact-success-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.22);
    flex-shrink: 0;
}

.contact-success-icon i {
    font-size: 1.4rem;
}

.contact-success-title {
    margin: 0 0 0.35rem 0;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.contact-success-text {
    margin: 0 0 0.9rem 0;
    color: var(--gray-700);
}

.contact-success-actions {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: start;
    gap: 1rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-item-content h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.contact-item-content p {
    color: var(--gray-600);
    margin: 0;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    .stat-item p {
        font-size: 0.9rem;
    }
    
    .hero-chart {
        display: none;
    }
    
    .course-sidebar {
        position: static;
        margin-top: 3rem;
    }

    .cta-card {
        padding: 2.25rem 1.5rem;
    }

    .cta-points {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 767px) {
    .navbar-brand {
        font-size: 1.4rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 2.25rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }

    .testimonials-carousel .carousel-control-prev,
    .testimonials-carousel .carousel-control-next {
        display: none;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .checkout-form-container {
        padding: 2rem 1.5rem;
    }
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    padding: 0.875rem 1.75rem;
    border-radius: 12px;
    font-weight: 700;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
    letter-spacing: -0.01em;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.btn:active::after {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-colored);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    opacity: 0.95;
}

.btn-lg {
    padding: 1.125rem 2.25rem;
    font-size: 1.125rem;
    border-radius: 50px;
}

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

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
    color: var(--white);
}
/* ==========================================
   COURSE DETAIL - OPPORTUNITY SECTION
   ========================================== */
   .opportunity-highlight {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    border-radius: 24px;
    padding: 3rem;
    border: 2px solid var(--gray-200);
}

.opportunity-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.opportunity-disclaimer {
    margin: -2rem 0 2.25rem;
    color: var(--gray-600);
    font-size: 0.85rem;
    line-height: 1.5;
    text-align: center;
}

.stat-box {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.stat-box i {
    font-size: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.stat-box h3 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-box p {
    color: var(--gray-600);
    margin: 0;
    font-size: 0.95rem;
}

.opportunity-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.opportunity-content > p {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.opportunity-points {
    list-style: none;
    padding: 0;
}

.opportunity-points li {
    display: flex;
    align-items: start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 12px;
}

.opportunity-points i {
    color: var(--secondary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.opportunity-points strong {
    color: var(--gray-900);
}

/* ==========================================
   FEATURES GRID DETAILED
   ========================================== */
.features-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-detailed {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid var(--gray-200);
    transition: var(--transition);
    text-align: center;
}

.feature-detailed:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.feature-icon-large {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 3rem;
    box-shadow: var(--shadow-colored);
    transition: var(--transition);
}

.feature-detailed:hover .feature-icon-large {
    transform: scale(1.1) rotate(360deg);
}

.feature-detailed h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.feature-detailed > p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-benefits {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.badge-feature {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
}

/* ==========================================
   APPLICATIONS SHOWCASE
   ========================================== */
.applications-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.application-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    border-left: 5px solid var(--primary-color);
    box-shadow: var(--shadow-md);
    position: relative;
    transition: var(--transition);
}

.application-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-xl);
}

.app-number {
    position: absolute;
    top: -15px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    box-shadow: var(--shadow-lg);
}

.application-card h4 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    padding-right: 60px;
}

.application-card > p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.app-outcome {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-success);
    color: var(--white);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
}

/* ==========================================
   TOOLS & SOFTWARE
   ========================================== */
.tools-list {
    background: var(--light-color);
    padding: 2.5rem;
    border-radius: 20px;
}

.tool-category {
    margin-bottom: 2.5rem;
}

.tool-category:last-child {
    margin-bottom: 0;
}

.tool-category h4 {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    color: var(--gray-900);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tool-category i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.tool-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tool-tags span {
    padding: 0.625rem 1.25rem;
    background: var(--white);
    color: var(--gray-800);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.tool-tags span:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ==========================================
   TIMELINE ROADMAP
   ========================================== */
.timeline-roadmap {
    position: relative;
    padding: 2rem 0;
}

.timeline-roadmap::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.125rem;
    box-shadow: var(--shadow-colored);
    z-index: 2;
}

.timeline-content {
    flex: 1;
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--gray-200);
    transition: var(--transition);
}

.timeline-content:hover {
    border-color: var(--primary-color);
    transform: scale(1.02);
}

.timeline-content h4 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--gray-900);
}

.timeline-content p {
    color: var(--gray-600);
    margin: 0;
    line-height: 1.7;
}

/* ==========================================
   GUARANTEE BOX
   ========================================== */
.guarantee-box {
    background: var(--gradient-success);
    color: var(--white);
    padding: 3rem;
    border-radius: 24px;
    display: flex;
    gap: 2.5rem;
    align-items: start;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.guarantee-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.guarantee-icon {
    flex-shrink: 0;
}

.guarantee-icon i {
    font-size: 5rem;
    opacity: 0.9;
}

.guarantee-content {
    position: relative;
    z-index: 2;
}

.guarantee-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 900;
}

.guarantee-content > p {
    font-size: 1.125rem;
    opacity: 0.95;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.guarantee-points {
    list-style: none;
    padding: 0;
}

.guarantee-points li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
    font-weight: 600;
}

.guarantee-points i {
    font-size: 1.5rem;
    opacity: 0.9;
}

/* ==========================================
   RESPONSIVE - COURSE DETAILS
   ========================================== */
@media (max-width: 991px) {
    .timeline-roadmap::before {
        left: 60px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: row;
    }
    
    .timeline-marker {
        width: 100px;
        height: 100px;
        font-size: 1rem;
    }
    
    .guarantee-box {
        flex-direction: column;
        text-align: center;
    }
    
    .guarantee-icon i {
        font-size: 4rem;
    }
}

@media (max-width: 767px) {
    .opportunity-highlight {
        padding: 2rem;
    }

    .opportunity-disclaimer {
        margin: -1.25rem 0 1.75rem;
        font-size: 0.82rem;
    }
    
    .stat-box {
        padding: 1.5rem;
    }
    
    .stat-box h3 {
        font-size: 2rem;
    }
    
    .features-grid-detailed {
        grid-template-columns: 1fr;
    }
    
    .timeline-marker {
        width: 80px;
        height: 80px;
        font-size: 0.95rem;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
}
