/* =========================================
   Premium Styles & Variables
   ========================================= */
:root {
    /* Modern Color Palette */
    --primary-blue: #2563EB;
    --primary-blue-hover: #1D4ED8;
    --primary-gradient: linear-gradient(135deg, #2563EB 0%, #3B82F6 100%);
    --light-blue: #EFF6FF;

    --orange: #F97316;
    --orange-gradient: linear-gradient(135deg, #F97316 0%, #FB923C 100%);
    --light-orange: #FFF7ED;

    --purple: #8B5CF6;
    --purple-gradient: linear-gradient(135deg, #8B5CF6 0%, #A78BFA 100%);
    --light-purple: #F5F3FF;

    --teal: #14B8A6;
    --teal-gradient: linear-gradient(135deg, #14B8A6 0%, #2DD4BF 100%);
    --light-teal: #F0FDFA;

    --green: #10B981;
    --light-green: #ECFDF5;

    --text-dark: #0F172A;
    --text-gray: #475569;
    --text-light: #94A3B8;

    --bg-white: #FFFFFF;
    --bg-light: #F8FAFC;
    --bg-dark: #0B1120;

    /* Typography */
    --font-main: 'Outfit', sans-serif;

    /* Refined Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.025);
    --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
    --shadow-colored: 0 20px 25px -5px rgba(37, 99, 235, 0.15), 0 8px 10px -6px rgba(37, 99, 235, 0.1);

    /* Border Radius */
    --radius-md: 0.75rem;
    --radius-lg: 1.25rem;
    --radius-xl: 2rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================================
   Global Reset & Setup
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;

}



body {
    font-family: var(--font-main);
    color: var(--text-gray);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-fast);
}

ul {
    list-style: none;
}

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

.container {
    max-width: 90%;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* =========================================
   Utility Classes & Animations
   ========================================= */
.text-primary {
    color: var(--primary-blue);
}

.text-orange {
    color: var(--orange);
}

.text-purple {
    color: var(--purple);
}

.text-teal {
    color: var(--teal);
}

.text-white {
    color: var(--bg-white);
}

/* Gradient Text */
.text-gradient-primary {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-blue {
    background: var(--primary-gradient);
    color: white;
}

.blue-light {
    background-color: var(--light-blue);
}

.orange-light {
    background-color: var(--light-orange);
}

.purple-light {
    background-color: var(--light-purple);
}

.teal-light {
    background-color: var(--light-teal);
}

.green-bg {
    background-color: var(--green);
    color: white;
}

.bg-gradient-light {
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
}

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

/* Buttons */
.login-btn {
    font-weight: 600;
    color: var(--text-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    transition: color var(--transition-fast);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.575rem 1.75rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-full);
    transition: all var(--transition-normal);
    cursor: pointer;
    border: none;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: #F5A623;
    color: white;
    box-shadow: 0 4px 14px 0 rgba(245, 166, 35, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.5);
    background: #e0931d;
}

.btn-dark {
    background: #111;
    color: white;
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-dark:hover {
    background: #222;
    transform: translateY(-2px);
}

.btn-play {
    background: transparent;
    color: white;
    border: none;
    box-shadow: none;
    padding: 0;
    gap: 0.75rem;
}

.btn-play i {
    width: 45px;
    height: 45px;
    background: #F5A623;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.4);
    transition: transform 0.3s ease;
}

.btn-play:hover {
    background: transparent;
    color: white;
    transform: none;
    box-shadow: none;
    border-color: transparent;
}

.btn-play:hover i {
    transform: scale(1.1);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: none;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: white;
    transform: translateY(-2px);
}

/* Section Shared Styles */
section {
    padding: 6rem 0;
    position: relative;
}

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

.section-tag {
    display: inline-block;
    padding: 0.35rem 1.25rem;
    background-color: var(--light-blue);
    color: var(--primary-blue);
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    margin-bottom: 1.25rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.section-tag.section-tag-orange {
    background-color: var(--light-orange);
    color: var(--orange);
    border: 1px solid rgba(249, 115, 22, 0.1);
}

.section-header h2 {
    font-size: 2.75rem;
    margin-bottom: 1.25rem;
}

.section-subtitle {
    font-size: 1.125rem;
    max-width: 650px;
    margin: 0 auto;
    color: var(--text-gray);
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

/* =========================================
   Header & Navigation
   ========================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-normal);
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.header.scrolled .logo,
.header.scrolled .nav-links a:hover,
.header.scrolled .nav-links a.active,
.header.scrolled .login-btn,
.header.scrolled .mobile-menu-btn {
    color: var(--text-dark);
}

.header.scrolled .nav-links a {
    color: var(--text-gray);
}

.header.scrolled .logo span {
    color: var(--primary-blue);
}

.header .container {
    max-width: 100%;
    padding: 0 4rem;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    transition: height var(--transition-normal);
}

.header.scrolled .nav-container {
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: #F5A623;
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(245, 166, 35, 0.3);
}

.logo span {
    color: white;
    font-weight: 300;
}

.nav-links {
    display: flex;
    gap: 1.75rem;
}

.nav-links a {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #F5A623;
    transition: width var(--transition-fast);
    border-radius: 2px;
}

.nav-links a:hover,
.nav-links a.active {
    color: white;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.login-btn {
    font-weight: 600;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

/* =========================================
   Hero Section
   ========================================= */
.hero {
    padding-top: 160px;
    padding-bottom: 6rem;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.1) 100%), url('images/hero-banner.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

.hero-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
}

/* Background animated shapes */
.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 8s infinite alternate ease-in-out;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.05) 0%, rgba(249, 115, 22, 0) 70%);
    border-radius: 50%;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.1);
        opacity: 1;
    }
}

/* Premium Decorative Elements */
.decor-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.8;
    animation: float-slow 10s ease-in-out infinite alternate;
}

.circle-1 {
    width: 600px;
    height: 600px;
    background: rgba(37, 99, 235, 0.1);
    top: -10%;
    right: 0%;
}

.circle-2 {
    width: 500px;
    height: 500px;
    background: rgba(249, 115, 22, 0.05);
    bottom: -10%;
    left: 5%;
    animation-delay: -5s;
}

.decor-dots {
    position: absolute;
    top: 20%;
    left: 5%;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 2px, transparent 2px);
    background-size: 20px 20px;
    z-index: 0;
}

@keyframes float-slow {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(30px, -30px);
    }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Premium Badge */
.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(239, 246, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(191, 219, 254, 0.8);
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.1);
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.premium-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 99, 235, 0.15);
    border-color: rgba(147, 197, 253, 1);
}

.badge-text {
    color: #1E40AF;
    background: linear-gradient(90deg, #1E40AF, #3B82F6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.5);
    animation: blink 2s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

/* Hero Rating */
.hero-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #A2B5B0;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-rating .stars {
    color: #F5A623;
    display: flex;
    gap: 0.2rem;
    font-size: 1rem;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
    letter-spacing: -0.03em;
    font-weight: 800;
}

.text-gradient-primary {
    color: white;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: white;
}

.typewriter::after {
    content: '|';
    animation: blink 1s step-end infinite;
    color: #F5A623;
    margin-left: 2px;
}

.hero-desc {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 90%;
    color: #A2B5B0;
    font-weight: 400;
    border-left: 2px solid rgba(255, 255, 255, 0.2);
    padding-left: 1.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    align-items: center;
}

/* Horizontal Stats Row */
.hero-stats-row {
    display: flex;
    gap: 2.5rem;
    margin-top: 2rem;
    align-items: center;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat h3 {
    color: white;
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
    font-weight: 800;
}

.hero-stat p {
    color: #A2B5B0;
    font-size: 0.8rem;
    max-width: 120px;
    line-height: 1.4;
    margin: 0;
    text-transform: none;
    letter-spacing: normal;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.15);
}

.hero-image-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* Hero Decor Stars */
.hero-star {
    position: absolute;
    color: #F5A623;
    animation: float 4s ease-in-out infinite alternate;
}

.hero-star-1 {
    top: 15%;
    left: -5%;
    font-size: 2.5rem;
}

.hero-star-2 {
    bottom: 20%;
    left: -10%;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.2);
    animation-delay: -2s;
}

.hero-star-3 {
    top: 50%;
    right: -10%;
    font-size: 1rem;
    color: #F5A623;
    animation-delay: -1s;
}

/* Clean Image Frame */
.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    z-index: 2;
    background: transparent;
    border: none;
    box-shadow: none;
    display: inline-block;
}

.image-frame img {
    border-radius: 20px;
    max-height: 700px;
    object-fit: cover;
}

.hero-bottom-shape {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 10;
    line-height: 0;
}

.hero-bottom-shape svg {
    display: block;
    width: 100%;
    height: 60px;
}

.hero-img {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    display: block;
    transform: scale(1.05);
    transition: transform 0.5s ease;
}

.image-frame:hover .hero-img {
    transform: scale(1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.25rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 1);
    display: flex;
    align-items: center;
    gap: 1.25rem;
    animation: float 6s ease-in-out infinite;
    z-index: 10;
}

.top-card {
    top: 5%;
    left: -15%;
}

.bottom-card {
    top: 40%;
    right: -10%;
    animation-delay: -3s;
}

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

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

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

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: inset 0 -2px 5px rgba(0, 0, 0, 0.1);
}

.floating-text h4 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.floating-text p {
    font-size: 0.75rem;
    margin: 0;
    color: var(--text-light);
}

.progress-bar,
.progress-bar-light {
    width: 120px;
    height: 6px;
    background-color: #F1F5F9;
    border-radius: var(--radius-full);
    margin-top: 6px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background-color: var(--green);
    border-radius: var(--radius-full);
    position: relative;
}

/* Animated progress bar */
.progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
    animation: shimmer 2s infinite;
}

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

    100% {
        transform: translateX(100%);
    }
}

.progress-bar-light .progress {
    background-color: var(--primary-blue);
}

/* =========================================
   About Section
   ========================================= */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background-color: white;
    padding: 3rem 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid #CBD5E1;
    /* Gray border */
    transition: all var(--transition-normal);
    box-shadow: 0 15px 35px -5px rgba(17, 24, 39, 0.15);
    /* Dark shadow for all */
}

.feature-card:hover {
    border-color: #94A3B8;
    /* Slightly darker gray on hover */
    transform: translateY(-8px);
    box-shadow: 0 25px 45px -10px rgba(17, 24, 39, 0.25);
}

.feature-icon {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    transition: transform var(--transition-fast);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.35rem;
}

/* =========================================
   What You Will Master Section
   ========================================= */
.master-section {
    position: relative;
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    background: white;
    padding: 0.5rem;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    display: inline-flex;
    left: 50%;
    transform: translateX(-50%);
    position: relative;
    border: 1px solid #F1F5F9;
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-gray);
    cursor: pointer;
    transition: all var(--transition-fast);
    font-family: inherit;
}

.tab-btn:hover {
    color: var(--text-dark);
}

.tab-btn.active {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.master-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.master-card {
    background-color: white;
    padding: 3rem 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: 0 15px 35px -5px rgba(17, 24, 39, 0.15);
    transition: all var(--transition-normal);
    border: 1px solid #CBD5E1;
}

.master-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px -10px rgba(17, 24, 39, 0.25);
    border-color: #94A3B8;
}

.m-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.75rem;
}

.master-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

/* =========================================
   Who This Is For Section
   ========================================= */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.audience-card {
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all var(--transition-normal);
}

.audience-card:nth-child(1) {
    background-color: var(--light-blue);
    border: 1px solid #BFDBFE;
}

.audience-card:nth-child(2) {
    background-color: var(--light-orange);
    border: 1px solid #FFEDD5;
}

.audience-card:nth-child(3) {
    background-color: var(--light-teal);
    border: 1px solid #CCFBF1;
}

.audience-card:nth-child(4) {
    background-color: var(--light-purple);
    border: 1px solid #EDE9FE;
}

.audience-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.a-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    transition: transform var(--transition-normal);
}

.audience-card:hover .a-icon {
    transform: scale(1.1) rotate(5deg);
}

.audience-card h4 {
    font-size: 1.1rem;
}

/* =========================================
   Why This Program Stands Out Section
   ========================================= */
.why-stand-out {
    overflow: hidden;
}

.standout-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.title-with-icon {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.target-icon {
    font-size: 3rem;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.standout-left h2 {
    font-size: 3rem;
    line-height: 1.1;
}

.standout-list li {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    padding: 1.25rem 1.5rem;
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    font-weight: 600;
    color: var(--text-dark);
    transition: all var(--transition-fast);
    border: 1px solid transparent;
}

.standout-list li:hover {
    background-color: white;
    border-color: #E2E8F0;
    box-shadow: var(--shadow-md);
    transform: translateX(10px);
}

.list-num {
    width: 36px;
    height: 36px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
    flex-shrink: 0;
}

.outcome-box {
    background: #3B82F6;
    color: white;
    padding: 3.5rem 3rem;
    border-radius: 28px;
    box-shadow: 0 25px 50px -12px rgba(59, 130, 246, 0.4);
    position: relative;
    text-align: left;
}

.outcome-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.outcome-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    border: 1px solid rgba(255, 255, 255, 0.35);
    flex-shrink: 0;
}

.outcome-box h3 {
    color: white;
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.outcome-subtitle {
    color: white;
    margin-bottom: 3rem;
    font-size: 1.15rem;
    font-weight: 500;
}

.outcome-list {
    display: flex;
    flex-direction: column;
    gap: 2.25rem;
}

.outcome-list li {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-weight: 600;
    font-size: 1.15rem;
    line-height: 1.5;
}

.outcome-check {
    width: 22px;
    height: 22px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
    margin-left: 6px;
}

.outcome-check i {
    color: #3B82F6;
    font-size: 0.7rem;
}

/* =========================================
   Mentors Section
   ========================================= */
.splide__track {
    padding: 1rem 0 3rem !important;
    /* Extra padding to prevent drop shadows from getting clipped */
}

.mentor-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid #F1F5F9;
}

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

.mentor-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.mentor-img {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: var(--shadow-sm);
}

.mentor-info h4 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.mentor-role {
    font-size: 0.75rem;
    color: var(--primary-blue);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.mentor-bio {
    font-size: 0.95rem;
    margin-bottom: 2rem;
    color: var(--text-gray);
}

.mentor-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.mentor-tag i {
    color: var(--green);
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.mentor-pills {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    border-top: 1px solid #F1F5F9;
    padding-top: 1.5rem;
}

.pill {
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    transition: all var(--transition-fast);
}

.pill:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* Colorful Pills */
.pill-blue {
    background: var(--light-blue);
    color: var(--primary-blue);
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.pill-purple {
    background: var(--light-purple);
    color: var(--purple);
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.pill-orange {
    background: var(--light-orange);
    color: var(--orange);
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.pill-teal {
    background: var(--light-teal);
    color: var(--teal);
    border: 1px solid rgba(20, 184, 166, 0.2);
}

.pill-green {
    background: var(--light-green);
    color: var(--green);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

/* =========================================
   Testimonials Section
   ========================================= */
/* Testimonial specific overrides if any */

.testimonial-card {
    background-color: white;
    padding: 3rem 2.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid #FEE2E2;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all var(--transition-normal);
}

.testimonial-card:nth-child(2) {
    border-color: #CCFBF1;
}

.testimonial-card:nth-child(3) {
    border-color: #E0E7FF;
}

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

.quote-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 0.125rem;
}

.author-info p {
    font-size: 0.8rem;
    margin: 0;
    color: var(--text-light);
}

.stars {
    margin-left: auto;
    color: #FBBF24;
    font-size: 0.8rem;
    display: flex;
    gap: 2px;
}

/* =========================================
   Footer
   ========================================= */
.footer {
    background-color: var(--bg-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 6rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 5rem;
    margin-bottom: 5rem;
}

.footer-logo {
    color: white;
    margin-bottom: 1.5rem;
}

.footer-desc {
    margin-bottom: 2.5rem;
    max-width: 320px;
    font-size: 1.05rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    transition: all var(--transition-fast);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: var(--primary-gradient);
    border-color: transparent;
    transform: translateY(-3px);
}

.footer-links-col h4 {
    color: white;
    margin-bottom: 1.75rem;
    font-size: 1.1rem;
}

.footer-links-col ul li {
    margin-bottom: 1.25rem;
}

.footer-links-col a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-links-col a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links a:hover {
    color: white;
}

/* =========================================
   Mobile Navigation
   ========================================= */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100vh;
    height: 100dvh;
    background-color: white;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    padding: 2rem 2rem calc(2.5rem + env(safe-area-inset-bottom));
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav.open {
    left: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
}

.mobile-close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-gray);
    cursor: pointer;
}

.mobile-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.mobile-link {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: auto;
}

.w-full {
    width: 100%;
}

/* =========================================
   Responsive Design
   ========================================= */
@media (max-width: 1024px) {

    .hero-container,
    .standout-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-content p {
        margin: 0 auto 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .floating-card {
        display: none;
    }

    .standout-left {
        text-align: left;
    }

    .features-grid,
    .master-cards,
    .mentors-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
        width: 100%;
    }

    section {
        padding: 4rem 0;
    }

    .badge-text {
        font-size: 9px;
    }

    .header .container {
        padding: 0 1.5rem;
    }

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

    .nav-links,
    .nav-actions {
        display: none;
    }

    .hero {
        padding-top: 120px;
        min-height: 100dvh;
        background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 100%), url('images/hero-banner.png');
        background-position: center;
        justify-content: center;
    }

    .hero-content h1, .hero-title {
        font-size: 2.75rem;
        text-align: center;
    }

    .hero-rating {
        justify-content: center;
    }

    .hero-desc {
        text-align: center;
        border-left: none;
        padding-left: 0;
        margin: 0 auto 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }

    .hero-buttons .btn-dark,
    .hero-buttons .btn-play {
        width: 100%;
        justify-content: center;
    }

    .hero-stats-row {
        display: none;
    }

    .hero-stat {
        align-items: center;
        text-align: center;
    }

    .hero-stat p {
        text-align: center;
    }

    .hero-stat-divider {
        display: none;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .standout-left h2 {
        font-size: 1.85rem;
    }

    .target-icon {
        font-size: 2rem;
    }

    .hero-stats {
        flex-direction: row;
        justify-content: space-between;
        gap: 1rem;
        width: 100%;
    }

    .stat-divider {
        width: 1px;
        height: 40px;
    }

    .tabs {
        flex-direction: column;
        border-radius: var(--radius-md);
        width: 100%;
    }

    .tab-btn {
        width: 100%;
        border-radius: var(--radius-md);
    }

    .features-grid,
    .master-cards,
    .mentors-grid,
    .testimonials-grid,
    .audience-grid {
        grid-template-columns: 1fr;
    }

    .standout-container {
        gap: 2rem;
    }

    .outcome-box {
        padding: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}