/* ===================================
   CSS Variables & Reset
   =================================== */
:root {
    --dark-bg: #1e1e2e;
    --darker-bg: #161622;
    --accent-primary: #a855f7;
    --accent-primary-strong: #c084fc;
    --accent-primary-soft: rgba(168, 85, 247, 0.12);
    --accent-secondary: #45F4FF;
    --accent-secondary-strong: #6FF6FF;
    --accent-secondary-soft: rgba(69, 244, 255, 0.12);
    --accent-gradient: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    --accent-gradient-alt: linear-gradient(135deg, var(--accent-secondary) 0%, var(--accent-secondary-strong) 100%);

    --purple: var(--accent-primary);
    --pink: var(--accent-primary);
    --cyan: var(--accent-secondary);
    --cyan-light: var(--accent-secondary-strong);
    --cyan-dark: #20D4E4;
    --yellow: #fbbf24;
    --neon-purple: var(--accent-primary-strong);
    --neon-pink: var(--accent-primary-strong);
    --neon-cyan: var(--accent-secondary-strong);
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --border-color: var(--accent-primary-soft);
    --border-color-cyan: var(--accent-secondary-soft);
    --card-bg: rgba(30, 30, 46, 0.8);
    --card-hover: var(--accent-primary-soft);
    --card-hover-cyan: var(--accent-secondary-soft);

    --font-primary: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Sora', var(--font-primary);
    --font-mono: 'JetBrains Mono', 'SFMono-Regular', Menlo, Monaco, Consolas, 'Liberation Mono', monospace;

    --step--1: 0.875rem;
    --step-0: 1rem;
    --step-1: 1.25rem;
    --step-2: 1.563rem;
    --step-3: 1.953rem;
    --step-4: 2.441rem;
    --step-5: 3.052rem;
    --step-6: 3.815rem;
    --step-hero: clamp(2rem, 4.5vw, 2.8rem);

    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;

    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.3);
    --shadow-neon-purple: 0 0 20px rgba(168, 85, 247, 0.4);
    --shadow-neon-pink: 0 0 20px rgba(236, 72, 153, 0.4);
    --shadow-neon-cyan: 0 0 20px rgba(69, 244, 255, 0.4);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    background-color: #05050e;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Keep page content above the fixed .page-background */
main, .navbar, footer {
    position: relative;
    z-index: 1;
}

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

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

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    font-family: inherit;
    cursor: pointer;
}

/* ===================================
   Utility Classes
   =================================== */

.gradient-text {
    color: var(--accent-primary);
}

.hero .gradient-text,
.hero-title.gradient-text {
    background-image: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text-gold {
    background-image: linear-gradient(135deg, #FFD700 0%, #FDB931 50%, #FFD700 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
}

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

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

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

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

.section {
    padding: 6rem 0;
    position: relative;
}

.reveal-section .stagger-item {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-section.is-visible .stagger-item {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .reveal-section .stagger-item {
        transition-delay: 0s !important;
    }
}

.section-alt {
    isolation: isolate;
}

.section-alt::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(69, 244, 255, 0.08) 0%, transparent 55%),
        radial-gradient(circle at 80% 80%, rgba(168, 85, 247, 0.08) 0%, transparent 55%),
        linear-gradient(180deg, rgba(22, 22, 34, 0.35) 0%, rgba(30, 30, 46, 0.2) 100%);
    pointer-events: none;
    z-index: 0;
}

.section-alt > * {
    position: relative;
    z-index: 1;
}

.section-label {
    display: inline-block;
    font-size: var(--step--1);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: none;
    color: var(--accent-primary-strong);
    margin-bottom: 1rem;
    padding: 0.6rem 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 2rem;
    background: var(--accent-primary-soft);
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.section-label.cyan {
    color: var(--accent-secondary);
    border-color: var(--border-color-cyan);
    background: var(--accent-secondary-soft);
}

.section-title {
    font-family: var(--font-display);
    font-size: var(--step-4);
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-block;
    padding: 1.125rem 2.5rem;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    border-radius: 0.75rem;
    transition: transform var(--transition-medium), box-shadow var(--transition-medium), opacity var(--transition-medium);
    cursor: pointer;
    text-transform: none;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s;
    will-change: transform;
}

.btn:hover::before {
    transform: translateX(100%);
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 6px 20px rgba(69, 244, 255, 0.3);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(69, 244, 255, 0.45);
}

.btn-primary-alt {
    background: var(--accent-secondary);
    color: var(--dark-bg);
    box-shadow: 0 4px 15px rgba(69, 244, 255, 0.3);
}

.btn-primary-alt:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(69, 244, 255, 0.45);
}

.btn-secondary {
    background: rgba(148, 163, 184, 0.1);
    color: var(--text-primary);
    border: 2px solid var(--border-color-cyan);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    background: rgba(69, 244, 255, 0.15);
    border-color: var(--accent-secondary);
    box-shadow: 0 6px 25px rgba(69, 244, 255, 0.4);
    transform: translateY(-2px);
}

/* ===================================
   Navigation - Glassmorphism Style
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.6rem 2rem;
    display: flex;
    justify-content: center;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
}

/* Static navbar - visible at top but scrolls away with the page */
.navbar.navbar-static {
    position: absolute;
}

/* Floating navbar - hidden by default at top of page */
.navbar.navbar-floating {
    transform: translateY(-100%);
    opacity: 0;
}

/* Show navbar when scrolled */
.navbar.navbar-floating.navbar-visible {
    transform: translateY(0);
    opacity: 1;
}

/* Glass container - Glassmorphism effect */
.navbar-glass {
    background: rgba(22, 22, 34, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--accent-primary-soft);
    border-radius: 60px;
    padding: 0.6rem 1.25rem;
    pointer-events: auto;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
}

/* Subtle inner glow */
.navbar-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.06) 0%,
        transparent 100%
    );
    border-radius: 60px 60px 0 0;
    pointer-events: none;
}

.navbar-glass:hover {
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

/* Legacy pill support */
.navbar-pill {
    background: rgba(22, 22, 34, 0.72);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--accent-primary-soft);
    border-radius: 60px;
    padding: 0.6rem 1.25rem;
    pointer-events: auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-primary);
}

/* Navbar logo - positioned absolutely on the left of the centered pill nav */
.navbar-logo {
    position: absolute;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    pointer-events: auto;
    z-index: 1;
}

.navbar-logo img {
    border-radius: 50%;
    width: 28px;
    height: 28px;
    object-fit: cover;
}

.navbar-logo-text {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-primary);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    gap: 0.25rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

/* Hide mobile menu on desktop */
.nav-menu-mobile {
    display: none;
}

.nav-menu li {
    list-style: none;
}

/* Nav link with icon - horizontal layout */
.nav-menu a,
.nav-dropdown-trigger {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    font-size: 0.75rem;
    position: relative;
    padding: 0.6rem 1rem;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    border-radius: 12px;
    text-transform: none;
}

/* Nav icon styles */
.nav-icon {
    width: 18px;
    height: 18px;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.nav-menu a:hover,
.nav-dropdown-trigger:hover {
    color: rgba(255, 255, 255, 1);
    background: rgba(255, 255, 255, 0.08);
}

.nav-menu a:hover .nav-icon,
.nav-dropdown-trigger:hover .nav-icon {
    transform: scale(1.1);
}

/* Remove underline effect from regular nav links */
.nav-menu a::after {
    display: none;
}

/* CTA Button in navbar - Glass highlight style */
.nav-cta {
    background: rgba(168, 85, 247, 0.25) !important;
    color: white !important;
    padding: 0.5rem 1rem !important;
    border-radius: 20px !important;
    font-weight: 600 !important;
    margin-left: 0.25rem;
    transition: all 0.3s ease !important;
    border: 1px solid rgba(168, 85, 247, 0.45) !important;
    box-shadow:
        0 4px 15px rgba(168, 85, 247, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.15) 0%,
        transparent 100%
    );
    border-radius: 20px 20px 0 0;
    pointer-events: none;
}

.nav-cta:hover {
    background: rgba(168, 85, 247, 0.45) !important;
    transform: scale(1.05);
    box-shadow:
        0 6px 25px rgba(168, 85, 247, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    color: white !important;
    border-color: rgba(168, 85, 247, 0.7) !important;
}

.nav-cta .nav-icon {
    color: white;
}

/* Legacy cta-link support */
.cta-link {
    background: rgba(168, 85, 247, 0.25) !important;
    color: white !important;
    padding: 0.5rem 1rem !important;
    border-radius: 20px !important;
    font-weight: 600 !important;
    border: 1px solid rgba(168, 85, 247, 0.45) !important;
}

.cta-link:hover {
    background: rgba(168, 85, 247, 0.45) !important;
}

.cta-link::after {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 0.4rem;
    cursor: pointer;
    position: fixed;
    top: 1.5rem;
    left: 1.5rem;
    padding: 0.75rem;
    background: rgba(22, 22, 34, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 12px;
    border: 1px solid var(--accent-primary-soft);
    z-index: 1001;
    pointer-events: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-medium);
}

/* ===================================
   Navigation Dropdown - Desktop
   =================================== */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    cursor: pointer;
    color: rgba(255, 255, 255, 0.6);
}

.nav-dropdown-trigger:hover {
    color: rgba(255, 255, 255, 1);
    background: rgba(255, 255, 255, 0.08);
}

.nav-dropdown-arrow {
    width: 12px;
    height: 12px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    margin-left: -0.25rem;
}

.nav-dropdown:hover .nav-dropdown-arrow {
    transform: rotate(180deg);
    opacity: 1;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 340px;
    background: linear-gradient(
        160deg,
        rgba(35, 30, 60, 0.95) 0%,
        rgba(25, 25, 45, 0.98) 50%,
        rgba(20, 20, 40, 0.95) 100%
    );
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(168, 85, 247, 0.25);
    border-radius: 16px;
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset,
        0 0 40px rgba(168, 85, 247, 0.15);
    z-index: 1000;
}

/* Dropdown arrow pointer */
.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 14px;
    height: 14px;
    background: rgba(24, 24, 36, 0.95);
    border-left: 1px solid var(--accent-primary-soft);
    border-top: 1px solid var(--accent-primary-soft);
    border-radius: 3px 0 0 0;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Dropdown Items */
.nav-dropdown-item {
    display: flex !important;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem 1rem !important;
    border-radius: 10px;
    transition: all 0.25s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.nav-dropdown-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(168, 85, 247, 0.08);
    opacity: 0;
    transition: opacity 0.25s ease;
    border-radius: 10px;
}

.nav-dropdown-item:hover::before {
    opacity: 1;
}

.nav-dropdown-item:hover {
    background: transparent !important;
}

.dropdown-item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(69, 244, 255, 0.1);
    border: 1px solid rgba(69, 244, 255, 0.2);
    border-radius: 10px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.dropdown-item-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--cyan);
    transition: all 0.3s ease;
}

.nav-dropdown-item:hover .dropdown-item-icon {
    background: rgba(69, 244, 255, 0.2);
    border-color: rgba(69, 244, 255, 0.4);
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(69, 244, 255, 0.3);
}

.nav-dropdown-item:hover .dropdown-item-icon svg {
    stroke: var(--cyan-light);
}

.dropdown-item-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    position: relative;
    z-index: 1;
}

.dropdown-item-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: color 0.25s ease;
    text-transform: none;
    letter-spacing: 0;
}

.nav-dropdown-item:hover .dropdown-item-title {
    color: var(--cyan);
}

.dropdown-item-desc {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: none;
    letter-spacing: 0;
    line-height: 1.3;
}

/* Dropdown Footer */
.nav-dropdown-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1rem;
    margin-top: 0.25rem;
    border-top: 1px solid rgba(168, 85, 247, 0.15);
    font-size: 0.65rem;
    color: var(--text-muted);
    font-style: italic;
    text-transform: none;
    letter-spacing: 0;
}

/* Dropdown Divider */
.nav-dropdown-divider {
    height: 1px;
    background: rgba(168, 85, 247, 0.15);
    margin: 0.5rem 0;
}

/* ===================================
   Mega Menu - Multi-column Dropdown
   =================================== */
.nav-mega-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 580px;
    background: linear-gradient(
        160deg,
        rgba(35, 30, 60, 0.96) 0%,
        rgba(25, 25, 45, 0.98) 50%,
        rgba(20, 20, 40, 0.96) 100%
    );
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(168, 85, 247, 0.25);
    border-radius: 16px;
    padding: 1.25rem 1rem 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset,
        0 0 40px rgba(168, 85, 247, 0.15);
    z-index: 1000;
}

/* Arrow pointer for mega menu */
.nav-mega-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 14px;
    height: 14px;
    background: rgba(35, 30, 60, 0.96);
    border-left: 1px solid rgba(168, 85, 247, 0.25);
    border-top: 1px solid rgba(168, 85, 247, 0.25);
    border-radius: 3px 0 0 0;
}

.nav-dropdown-mega:hover .nav-mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.mega-menu-column {
    padding: 0 0.25rem;
}

/* Vertical divider between columns */
.mega-menu-column + .mega-menu-column {
    border-left: 1px solid rgba(168, 85, 247, 0.15);
    padding-left: 0.75rem;
}

.mega-menu-heading {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--cyan);
    padding: 0 1rem 0.5rem;
    margin-bottom: 0.25rem;
    border-bottom: 1px solid rgba(69, 244, 255, 0.12);
}

/* Tighter items inside mega menu */
.nav-mega-menu .nav-dropdown-item {
    padding: 0.625rem 0.75rem !important;
    gap: 0.625rem;
}

.nav-mega-menu .dropdown-item-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.nav-mega-menu .dropdown-item-icon svg {
    width: 16px;
    height: 16px;
}

.nav-mega-menu .dropdown-item-title {
    font-size: 0.8125rem;
}

.nav-mega-menu .dropdown-item-desc {
    font-size: 0.65rem;
}

/* Coming Soon badge for disabled menu items */
.nav-dropdown-item-disabled {
    pointer-events: none;
    cursor: default;
}

.nav-dropdown-item-disabled .dropdown-item-icon {
    opacity: 0.35;
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
}

.nav-dropdown-item-disabled .dropdown-item-icon svg {
    stroke: var(--text-muted);
}

.nav-dropdown-item-disabled .dropdown-item-title {
    opacity: 0.4;
}

.nav-dropdown-item-disabled .dropdown-item-desc {
    opacity: 0.3;
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    font-size: 0.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--cyan);
    background: rgba(69, 244, 255, 0.08);
    border: 1px solid rgba(69, 244, 255, 0.2);
    border-radius: 20px;
    padding: 0.1rem 0.35rem;
    margin-left: 0.35rem;
    white-space: nowrap;
    line-height: 1;
    position: relative;
    top: -1px;
}

/* Mega Menu - Auto-flow Grid (for dynamic lists like Attacks) */
.mega-menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 0.5rem;
}

/* View All link at bottom of mega menu */
.mega-menu-view-all {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    padding: 0.625rem 1rem;
    margin-top: 0.5rem;
    border-top: 1px solid rgba(168, 85, 247, 0.15);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.02em;
    transition: all 0.25s ease;
    border-radius: 0 0 12px 12px;
}

.mega-menu-view-all svg {
    stroke: var(--text-muted);
    transition: all 0.25s ease;
}

.mega-menu-view-all:hover {
    color: var(--cyan);
    background: rgba(69, 244, 255, 0.06);
}

.mega-menu-view-all:hover svg {
    stroke: var(--cyan);
    transform: translateX(2px);
}

/* ===================================
   Hero Section - Refined & Confident
   =================================== */
.hero {
    height: 100vh;
    height: 100svh; /* Small viewport height for mobile browser chrome */
    min-height: 600px; /* Minimum height to ensure content fits */
    max-height: 100vh;
    max-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
    padding: 0;
    background: transparent;
}

/* Page-wide animated background: fixed to viewport so orbs drift behind every section */
.page-background {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    background: #05050e;
}

/* Legacy alias — kept in case any template still renders the old wrapper */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

/* =====================================================================
   Unified page background override
   The animated .page-background is fixed behind the whole document.
   Every top-level section must be transparent so the orbs show through.
   ===================================================================== */
.salary-section,
.salary-section-v2,
.success-stories-slider,
.certification-section,
.mentors-section,
.pricing-section,
.testimonial-section,
.syllabus-section,
.overview-section,
.faq-section,
.contact-section,
.footer-mega,
.footer,
.course-pillars-section,
.ai-myth-section,
.ai-formula-section,
.section,
.section-alt {
    background: transparent !important;
}

/* Soften alternating-section overlay so it tints rather than masks */
.section-alt::after {
    opacity: 0.35;
}

/* Rich mesh gradient orbs - cinematic depth */
.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    opacity: 0.65;
}

/* First four mesh fields drift slowly; 5-7 stay hidden to keep layer count sane. */
.hero-gradient-orb-1,
.hero-gradient-orb-2,
.hero-gradient-orb-3,
.hero-gradient-orb-4 {
    will-change: transform;
}

.hero-gradient-orb-5,
.hero-gradient-orb-6,
.hero-gradient-orb-7 {
    display: none;
}

.hero-gradient-orb-1 {
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(120, 40, 220, 0.72) 0%, rgba(80, 20, 180, 0.32) 40%, transparent 68%);
    filter: blur(90px);
    top: -320px;
    right: -180px;
    animation: heroOrbFloat1 18s ease-in-out infinite;
}

.hero-gradient-orb-2 {
    width: 750px;
    height: 750px;
    background: radial-gradient(circle, rgba(28, 68, 200, 0.68) 0%, rgba(15, 45, 165, 0.3) 40%, transparent 70%);
    filter: blur(90px);
    bottom: -280px;
    left: -180px;
    animation: heroOrbFloat2 22s ease-in-out infinite;
}

.hero-gradient-orb-3 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(18, 148, 175, 0.58) 0%, rgba(10, 100, 140, 0.24) 45%, transparent 70%);
    filter: blur(80px);
    bottom: -100px;
    left: 50%;
    animation: heroOrbFloat3 20s ease-in-out infinite;
}

.hero-gradient-orb-4 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.58) 0%, rgba(190, 40, 120, 0.26) 45%, transparent 70%);
    filter: blur(70px);
    top: 10%;
    left: -100px;
    animation: heroOrbFloat4 16s ease-in-out infinite;
}

.hero-gradient-orb-5 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(69, 244, 255, 0.56) 0%, rgba(40, 180, 220, 0.24) 45%, transparent 70%);
    filter: blur(55px);
    top: 30%;
    right: 10%;
    animation: heroOrbFloat5 14s ease-in-out infinite;
}

.hero-gradient-orb-6 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.5) 0%, rgba(200, 140, 20, 0.22) 45%, transparent 70%);
    filter: blur(50px);
    bottom: 20%;
    right: 25%;
    animation: heroOrbFloat6 19s ease-in-out infinite;
}

.hero-gradient-orb-7 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.65) 0%, rgba(130, 60, 200, 0.28) 45%, transparent 70%);
    filter: blur(40px);
    top: 55%;
    left: 35%;
    animation: heroOrbFloat7 12s ease-in-out infinite;
}

@keyframes heroOrbFloat1 {
    0%   { transform: translate(0, 0) scale(1); }
    25%  { transform: translate(-260px, 180px) scale(1.15); }
    50%  { transform: translate(-140px, 340px) scale(0.92); }
    75%  { transform: translate(220px, 220px) scale(1.2); }
    100% { transform: translate(0, 0) scale(1); }
}

@keyframes heroOrbFloat2 {
    0%   { transform: translate(0, 0) scale(1); }
    25%  { transform: translate(240px, -200px) scale(1.12); }
    50%  { transform: translate(380px, 80px) scale(0.88); }
    75%  { transform: translate(100px, 280px) scale(1.18); }
    100% { transform: translate(0, 0) scale(1); }
}

@keyframes heroOrbFloat3 {
    0%   { transform: translate(-50%, 0) scale(1); }
    25%  { transform: translate(calc(-50% - 280px), -180px) scale(1.18); }
    50%  { transform: translate(calc(-50% + 220px), -320px) scale(0.85); }
    75%  { transform: translate(calc(-50% + 320px), 160px) scale(1.15); }
    100% { transform: translate(-50%, 0) scale(1); }
}

@keyframes heroOrbFloat4 {
    0%   { transform: translate(0, 0) scale(1); }
    33%  { transform: translate(320px, 240px) scale(1.2); }
    66%  { transform: translate(480px, -120px) scale(0.85); }
    100% { transform: translate(0, 0) scale(1); }
}

@keyframes heroOrbFloat5 {
    0%   { transform: translate(0, 0) scale(1); }
    33%  { transform: translate(-280px, 200px) scale(0.9); }
    66%  { transform: translate(-140px, 360px) scale(1.22); }
    100% { transform: translate(0, 0) scale(1); }
}

@keyframes heroOrbFloat6 {
    0%   { transform: translate(0, 0) scale(1); }
    25%  { transform: translate(-200px, -140px) scale(1.15); }
    50%  { transform: translate(-340px, 100px) scale(0.9); }
    75%  { transform: translate(-80px, -260px) scale(1.2); }
    100% { transform: translate(0, 0) scale(1); }
}

@keyframes heroOrbFloat7 {
    0%   { transform: translate(0, 0) scale(1); }
    25%  { transform: translate(180px, -220px) scale(1.25); }
    50%  { transform: translate(-200px, -140px) scale(0.85); }
    75%  { transform: translate(-280px, 180px) scale(1.15); }
    100% { transform: translate(0, 0) scale(1); }
}

/* =====================================================================
   Program Stats Strip — at-a-glance proof band below hero
   ===================================================================== */
.program-stats-section {
    padding: 3.3rem 0 1rem;
    margin-top: -3.5rem;
    position: relative;
}

/* Tighten gap between stats strip and the cards section that follows */
.program-stats-section + .ai-myth-section {
    padding-top: 1.5rem;
}

.program-stats-section > .container {
    padding: 0 4rem;
}

.program-stats-section .ai-myth-header {
    text-align: center;
    max-width: none;
    margin: 0 auto 3rem;
}

.program-stats-section .ai-myth-subtext {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.program-stats-section .ai-myth-title {
    white-space: nowrap;
    font-size: 3.5rem;
}

@media (max-width: 820px) {
    .program-stats-section > .container {
        padding: 0 1.5rem;
    }
    .program-stats-section .ai-myth-title {
        white-space: normal;
        font-size: clamp(1.75rem, 6vw, 2.25rem);
    }
}

.program-stats {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 1.5rem;
    padding: 2.5rem 4.5rem;
    border: 1px solid rgba(168, 85, 247, 0.18);
    border-radius: 20px;
    background:
        linear-gradient(135deg, rgba(69, 244, 255, 0.04) 0%, rgba(168, 85, 247, 0.04) 100%),
        rgba(15, 15, 24, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.02) inset,
        0 16px 60px rgba(0, 0, 0, 0.35);
}

/* Animated conic-gradient trace border, matches .ai-myth-card-border-trace */
@property --program-stats-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

.program-stats::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 21px;
    background: conic-gradient(
        from var(--program-stats-angle),
        transparent 0%,
        rgba(69, 244, 255, 0.6) 8%,
        rgba(168, 85, 247, 0.4) 16%,
        transparent 22%
    );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 1px;
    pointer-events: none;
    animation: programStatsBorderTrace 6s linear infinite;
}

@keyframes programStatsBorderTrace {
    to { --program-stats-angle: 360deg; }
}

@media (prefers-reduced-motion: reduce) {
    .program-stats::before { animation: none; }
}

.program-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.35rem;
}

.program-stat-value {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.02em;
    background-image: linear-gradient(135deg, var(--accent-secondary-strong) 0%, var(--accent-primary-strong) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-flex;
    align-items: baseline;
}

.program-stat-plus {
    font-size: 0.55em;
    margin-left: 0.1em;
    background: inherit;
    -webkit-background-clip: text;
    background-clip: text;
}

.program-stat-label {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-primary);
    margin-top: 0.5rem;
}

.program-stat-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.45;
    max-width: 320px;
    margin-top: 0.25rem;
}

.program-stat-divider {
    width: 1px;
    height: 90px;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(168, 85, 247, 0.35) 50%,
        transparent 100%
    );
}

@media (max-width: 900px) {
    .program-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1.5rem;
    }
    .program-stat-divider {
        width: 60%;
        height: 1px;
        background: linear-gradient(
            90deg,
            transparent 0%,
            rgba(168, 85, 247, 0.35) 50%,
            transparent 100%
        );
        justify-self: center;
    }
}

/* Subtle noise texture for depth */
.hero-noise {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

.hero-content {
    text-align: center;
    z-index: 10;
    position: relative;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.25);
    border-radius: 100px;
    padding: 0.5rem 1.25rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: heroFadeInUp 0.8s ease 0.1s forwards;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
    animation: heroBadgePulse 2s ease-in-out infinite;
}

@keyframes heroBadgePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hero-badge-text {
    font-family: var(--font-primary);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--accent-primary-strong);
    letter-spacing: 0.02em;
}

/* Title */
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    opacity: 0;
    animation: heroFadeInUp 0.8s ease 0.2s forwards;
}

.hero-title-accent {
    background-image: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Subtitle */
.hero-subtitle {
    font-family: var(--font-primary);
    font-size: clamp(1.0625rem, 2vw, 1.25rem);
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 1040px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: heroFadeInUp 0.8s ease 0.35s forwards;
}

.hero-subtitle-break {
    display: none;
}

.hero-subtitle-break-desktop {
    display: inline;
}

@media (max-width: 768px) {
    .hero-subtitle-break-desktop {
        display: none;
    }
}

/* Actions */
.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    opacity: 0;
    animation: heroFadeInUp 0.8s ease 0.5s forwards;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.hero-cta-arrow {
    transition: transform 0.3s ease;
}

.hero-cta:hover .hero-cta-arrow {
    transform: translateX(4px);
}

.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0.75rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.28);
    transform: translateY(-2px);
}

.hero-cta-secondary svg {
    opacity: 0.8;
}

/* Hero Author (uses existing hero-author-lite styles) */
.hero .hero-author-lite {
    opacity: 0;
    animation: heroFadeInUp 0.8s ease 0.65s forwards;
}

/* Hero primary button - refined glass over gradient */
.hero .btn-primary {
    background: rgba(130, 50, 230, 0.22);
    border: 1px solid rgba(168, 85, 247, 0.55);
    box-shadow: 0 0 28px rgba(120, 40, 220, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero .btn-primary:hover {
    background: rgba(130, 50, 230, 0.35);
    border-color: rgba(168, 85, 247, 0.75);
    box-shadow: 0 0 44px rgba(120, 40, 220, 0.38), 0 8px 24px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Hero fade-in animation */
@keyframes heroFadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Keep fadeIn for other uses */
@keyframes fadeIn {
    to { opacity: 1; }
}

/* Stat badges (used elsewhere) */
.hero-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 0;
    flex-wrap: wrap;
    max-width: 100%;
    padding: 0 1rem;
}

.stat-badge {
    background: rgba(30, 30, 46, 0.8);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 1rem;
    padding: 1.25rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    min-width: 120px;
}

.stat-badge:hover {
    border-color: rgba(69, 244, 255, 0.3);
    transform: translateY(-2px);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-primary);
    font-family: var(--font-display);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: none;
    letter-spacing: 0.04em;
}

.hero-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.author-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--cyan);
}

/* Hero Mobile Responsiveness */
@media (max-width: 768px) {
    .hero {
        height: 100vh;
        height: 100svh;
        min-height: 550px;
        max-height: 100vh;
        max-height: 100svh;
        padding: 0;
    }

    .hero-content {
        padding: 0 1.25rem;
    }

    .hero-badge {
        padding: 0.4rem 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-badge-text {
        font-size: 0.75rem;
    }

    .hero-title {
        font-size: clamp(1.875rem, 8vw, 2.5rem);
        margin-bottom: 1.25rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-subtitle-break {
        display: block;
    }

    .hero-actions {
        flex-direction: column;
        gap: 0.875rem;
        margin-bottom: 2.5rem;
    }

    .hero-cta,
    .hero-cta-secondary {
        width: 100%;
        justify-content: center;
        padding: 0.9375rem 1.5rem;
    }

    .hero-gradient-orb-1 {
        width: 400px;
        height: 400px;
        top: -150px;
        right: -150px;
    }

    .hero-gradient-orb-2 {
        width: 350px;
        height: 350px;
        bottom: -100px;
        left: -150px;
    }

    .section-label {
        font-size: 0.8rem;
        padding: 0.4rem 0.85rem;
        letter-spacing: 0.06em;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 100vh;
        height: 100svh;
        min-height: 500px;
        max-height: 100vh;
        max-height: 100svh;
        padding: 0;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero-badge {
        padding: 0.375rem 0.875rem;
        margin-bottom: 1.25rem;
    }

    .hero-badge-dot {
        width: 6px;
        height: 6px;
    }

    .hero-badge-text {
        font-size: 0.6875rem;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.15;
    }

    .hero-subtitle {
        font-size: 0.9375rem;
        line-height: 1.5;
    }

    .hero-cta,
    .hero-cta-secondary {
        font-size: 0.9375rem;
        padding: 0.875rem 1.25rem;
    }

    .hero-gradient-orb-1,
    .hero-gradient-orb-2 {
        filter: blur(80px);
        opacity: 0.4;
    }

    .section-label {
        font-size: 0.75rem;
        padding: 0.35rem 0.7rem;
        letter-spacing: 0.04em;
    }

    .hero-stats {
        gap: 0.5rem;
        padding: 0 0.5rem;
    }

    .stat-badge {
        padding: 0.75rem 1rem;
        min-width: 0;
        flex: 1;
    }

    .stat-number {
        font-size: 1.25rem;
    }

    .stat-label {
        font-size: 0.6875rem;
    }
}
/* ===================================
   Salary Section
   =================================== */
.salary-section {
    background: var(--darker-bg);
}

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

@media (max-width: 968px) {
    .salary-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.salary-tier {
    margin-bottom: 2rem;
    padding: 2.5rem;
    background: rgba(30, 30, 46, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    transition: var(--transition-medium);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.salary-tier:hover {
    border-color: var(--cyan);
    background: rgba(30, 30, 46, 0.8);
    box-shadow: 0 10px 40px rgba(69, 244, 255, 0.15);
    transform: translateY(-5px);
}

.salary-tier h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.salary-amount {
    font-size: 2.5rem;
    font-weight: 800;
    background-image: linear-gradient(135deg, var(--purple) 0%, var(--cyan) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.salary-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
}

.money-image-container {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border-radius: 1.5rem;
    border: 2px solid var(--border-color);
    transition: var(--transition-medium);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.money-image-container:hover {
    border-color: var(--cyan);
    box-shadow: var(--shadow-neon-cyan);
    transform: translateY(-5px);
}

.money-image {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-medium);
    aspect-ratio: 500 / 333; /* Matches macro dimensions - prevents CLS */
}

.money-image-container:hover .money-image {
    transform: scale(1.05);
}

/* ===================================
   Salary Section V2 - Premium Redesign
   =================================== */
.salary-section-v2 {
    background: var(--darker-bg);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

/* Background effects */
.salary-section-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 20%, rgba(168, 85, 247, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 85% 80%, rgba(69, 244, 255, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

/* Subtle grid pattern */
.salary-section-v2::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(69, 244, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(69, 244, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    opacity: 0.5;
}

.salary-section-v2 .container {
    position: relative;
    z-index: 2;
}

/* Header Styles */
.salary-header-v2 {
    text-align: center;
    margin-bottom: 4rem;
}

.salary-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(69, 244, 255, 0.08);
    border: 1px solid rgba(69, 244, 255, 0.25);
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--accent-secondary);
    border-radius: 50%;
    animation: badgePulse 2s ease-in-out infinite;
    will-change: transform, opacity;
}

/* Navbar scroll shadow - toggled by JS classList */
.navbar-shadowed {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@keyframes badgePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.badge-text {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--accent-secondary);
    text-transform: uppercase;
}

.salary-main-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.title-highlight {
    background-image: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.salary-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Salary Cards Grid */
.salary-grid-v2 {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 4rem;
}

.salary-card-v2 {
    position: relative;
    padding: 2.5rem;
    background: linear-gradient(145deg, rgba(30, 30, 46, 0.9) 0%, rgba(22, 22, 34, 0.95) 100%);
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.salary-card-v2:hover {
    transform: translateY(-8px);
    border-color: rgba(168, 85, 247, 0.35);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(168, 85, 247, 0.08) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.salary-card-v2:hover .card-glow {
    opacity: 1;
}

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

.card-header {
    margin-bottom: 1.5rem;
}

.tier-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--accent-primary);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: block;
}

.tier-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* Salary Display */
.salary-display {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.salary-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-primary);
}

.salary-value {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    background-image: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-primary-strong) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.salary-period {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Annual Equivalent */
.annual-equivalent {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.75rem 1rem;
    background: rgba(168, 85, 247, 0.06);
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
}

.annual-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.annual-value {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* Tier Features */
.tier-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tier-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: rgba(168, 85, 247, 0.15);
    border-radius: 50%;
    font-size: 0.7rem;
    color: var(--accent-primary);
}

/* Senior Card - Premium Styling */
.salary-card-senior {
    border-color: rgba(69, 244, 255, 0.25);
    background: linear-gradient(145deg, rgba(30, 30, 46, 0.95) 0%, rgba(22, 22, 34, 0.98) 100%);
    box-shadow: 0 0 60px rgba(69, 244, 255, 0.08);
}

.salary-card-senior:hover {
    border-color: rgba(69, 244, 255, 0.5);
    box-shadow: 0 20px 60px rgba(69, 244, 255, 0.15);
}

.card-glow-senior {
    background: radial-gradient(circle at center, rgba(69, 244, 255, 0.1) 0%, transparent 50%);
}

.card-premium-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    padding: 0.35rem 0.75rem;
    background: linear-gradient(135deg, var(--accent-secondary) 0%, var(--accent-secondary-strong) 100%);
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--darker-bg);
    text-transform: uppercase;
    z-index: 3;
}

.tier-label-senior {
    color: var(--accent-secondary);
}

.tier-title-senior {
    color: var(--accent-secondary-strong);
}

.salary-display-senior .salary-currency {
    color: var(--accent-secondary);
}

.salary-display-senior .salary-value {
    background-image: linear-gradient(135deg, var(--accent-secondary) 0%, var(--accent-secondary-strong) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.annual-equivalent-senior {
    background: rgba(69, 244, 255, 0.06);
}

.tier-features-senior .feature-icon {
    background: rgba(69, 244, 255, 0.15);
    color: var(--accent-secondary);
}

/* Progression Indicator */
.progression-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 1rem;
}

.progression-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(180deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    border-radius: 2px;
    opacity: 0.4;
}

.progression-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(69, 244, 255, 0.1) 100%);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 50%;
    color: var(--accent-secondary);
    animation: arrowPulse 2.5s ease-in-out infinite;
}

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

.progression-arrow svg {
    width: 24px;
    height: 24px;
}

.progression-text {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    text-transform: uppercase;
    white-space: nowrap;
}

/* Stats Bar */
.salary-stats-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, rgba(30, 30, 46, 0.8) 0%, rgba(22, 22, 34, 0.9) 100%);
    border: 1px solid rgba(168, 85, 247, 0.12);
    border-radius: 1rem;
    margin-bottom: 3rem;
}

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

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    background-image: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, rgba(168, 85, 247, 0.3), transparent);
}

/* Bottom CTA */
.salary-cta-v2 {
    text-align: center;
}

.cta-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 550px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
}

.salary-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-primary-strong) 100%);
    border: none;
    border-radius: 100px;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(168, 85, 247, 0.3);
}

.salary-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(168, 85, 247, 0.4);
}

.salary-cta-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.salary-cta-btn:hover svg {
    transform: translateX(4px);
}

/* Responsive - Tablet */
@media (max-width: 968px) {
    .salary-section-v2 {
        padding: 4rem 0;
    }

    .salary-header-v2 {
        margin-bottom: 3rem;
    }

    .salary-grid-v2 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .progression-indicator {
        flex-direction: row;
        padding: 1rem 2rem;
    }

    .progression-line {
        width: 60px;
        height: 2px;
    }

    .progression-arrow svg {
        transform: rotate(90deg);
    }

    .salary-stats-bar {
        flex-wrap: wrap;
        gap: 2rem 3rem;
        padding: 1.5rem 2rem;
    }

    .stat-divider {
        display: none;
    }
}

/* Responsive - Mobile */
@media (max-width: 640px) {
    .salary-section-v2 {
        padding: 2.5rem 0;
    }

    .salary-header-v2 {
        margin-bottom: 2rem;
    }

    .salary-main-title {
        font-size: 1.75rem;
    }

    .salary-subtitle {
        font-size: 1rem;
    }

    .salary-card-v2 {
        padding: 1.75rem;
    }

    .salary-value {
        font-size: 2.5rem;
    }

    .progression-indicator {
        padding: 0.5rem 1.5rem;
    }

    .progression-line {
        width: 40px;
    }

    .progression-arrow {
        width: 36px;
        height: 36px;
    }

    .progression-arrow svg {
        width: 18px;
        height: 18px;
    }

    .progression-text {
        font-size: 0.7rem;
    }

    .salary-stats-bar {
        flex-direction: column;
        gap: 1.25rem;
        padding: 1.25rem 1.5rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .cta-text {
        font-size: 1rem;
    }

    .salary-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===================================
   Success Stories Slider
   =================================== */
.success-stories-slider {
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

/* Subtle background gradient for success section */
.success-stories-slider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(168, 85, 247, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(69, 244, 255, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.success-stories-header {
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.success-stories-subtitle {
    color: var(--text-secondary);
    font-size: 1.25rem;
    margin-top: 1.25rem;
    opacity: 0.9;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.gradient-text-cyan {
    color: var(--accent-secondary);
}

.glow-text {
    color: var(--cyan);
    text-shadow: 0 0 20px rgba(69, 244, 255, 0.5);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { text-shadow: 0 0 20px rgba(69, 244, 255, 0.5); }
    50% { text-shadow: 0 0 30px rgba(69, 244, 255, 0.8); }
}

@keyframes shimmer {
    to { background-position: 200% center; }
}

.success-slider-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 100px;
    z-index: 2;
}

.success-slides-container {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    transition: height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.success-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(0) scale(0.96);
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, opacity;
}

.success-slide.enter-from-right {
    transform: translateX(90px) scale(0.95);
}

.success-slide.enter-from-left {
    transform: translateX(-90px) scale(0.95);
}

.success-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) scale(1);
    z-index: 1;
}

.success-slide.exiting {
    opacity: 0;
    transform: translateX(-80px) scale(0.95);
}

.success-slide.exit-left {
    opacity: 0;
    transform: translateX(-90px) scale(0.95);
}

.success-slide.exit-right {
    opacity: 0;
    transform: translateX(90px) scale(0.95);
}

.success-slide-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    padding: 2.5rem 3rem;
    background: linear-gradient(145deg,
        rgba(30, 30, 46, 0.95) 0%,
        rgba(25, 25, 40, 0.9) 50%,
        rgba(20, 20, 35, 0.95) 100%);
    border-radius: 1.5rem;
    border: 1px solid rgba(168, 85, 247, 0.25);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
}

/* Corner accent - subtle glow */
.success-slide-content::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at top right, rgba(69, 244, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
    border-radius: 0 1.5rem 0 0;
}

.success-slide-text {
    padding: 1rem 0;
    position: relative;
    z-index: 1;
}

.success-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg,
        rgba(168, 85, 247, 0.15) 0%,
        rgba(236, 72, 153, 0.15) 100%);
    border: 1px solid rgba(168, 85, 247, 0.35);
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 1.75rem;
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.2);
}

.badge-icon {
    font-size: 1.4rem;
}

.badge-text {
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    background-image: linear-gradient(135deg, var(--purple) 0%, var(--pink) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.success-slide-title {
    font-size: 2rem;
    font-weight: 800;
    background-image: linear-gradient(135deg,
        #ffffff 0%,
        var(--cyan-light) 50%,
        var(--cyan) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.25rem;
    line-height: 1.25;
    letter-spacing: -0.02em;
    text-shadow: 0 0 80px rgba(69, 244, 255, 0.3);
}

.success-slide-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.75;
    margin-bottom: 1.75rem;
    opacity: 0.9;
}

.success-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.success-stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1rem 1.25rem;
    background: rgba(168, 85, 247, 0.08);
    border-radius: 0.75rem;
    border: 1px solid rgba(168, 85, 247, 0.15);
    transition: all 0.3s ease;
}

.success-stat-item:hover {
    background: rgba(168, 85, 247, 0.15);
    border-color: rgba(168, 85, 247, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.2);
}

.stat-highlight {
    font-size: 1.75rem;
    font-weight: 900;
    background-image: linear-gradient(135deg, var(--yellow) 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.3));
}

.stat-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: none;
    letter-spacing: 0.04em;
    font-weight: 600;
}

.btn-success-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--accent-gradient);
    color: white;
    padding: 1rem 2rem;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow:
        0 8px 25px rgba(168, 85, 247, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-success-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    will-change: transform;
}

.btn-success-cta:hover::before {
    transform: translateX(100%);
}

.btn-success-cta:hover {
    transform: translateY(-4px);
    box-shadow:
        0 15px 40px rgba(168, 85, 247, 0.5),
        0 0 0 2px rgba(168, 85, 247, 0.3);
    background-position: right center;
}

.btn-success-cta:active {
    transform: translateY(-2px);
}

.btn-success-cta svg {
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2));
}

.btn-success-cta:hover svg {
    transform: translateX(5px);
}

/* ===================================
   Interactive Demo CTA Section
   =================================== */
.demo-cta-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.demo-cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.demo-cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.demo-cta-text {
    position: relative;
}

.demo-cta-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.demo-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.demo-highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(168, 85, 247, 0.05);
    border-left: 3px solid var(--purple);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.demo-highlight-item:hover {
    background: rgba(168, 85, 247, 0.1);
    transform: translateX(5px);
}

.highlight-icon {
    font-size: 1.5rem;
}

.highlight-text {
    font-size: 1.05rem;
    color: var(--text-primary);
    font-weight: 600;
}

.demo-cta-visual {
    position: relative;
}

.demo-preview-card {
    background: rgba(30, 30, 46, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 1.25rem;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(168, 85, 247, 0.2);
    transition: all 0.4s ease;
}

.demo-preview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(168, 85, 247, 0.4);
    border-color: var(--purple);
}

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

.demo-preview-label {
    font-size: 0.85rem;
    color: var(--accent-primary);
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0.04em;
}

.demo-preview-badge {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(253, 185, 49, 0.2));
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #FFD700;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

.demo-preview-image {
    position: relative;
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 50%, #16213e 100%);
    border-radius: 0.75rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-preview-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(90deg, rgba(168, 85, 247, 0.1) 1px, transparent 1px),
        linear-gradient(rgba(168, 85, 247, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
}

.demo-preview-overlay {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(2px);
    transition: all 0.3s ease;
    cursor: pointer;
}

.demo-preview-card:hover .demo-preview-overlay {
    background: rgba(0, 0, 0, 0.2);
}

.play-button {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.5);
    transition: all 0.3s ease;
}

.demo-preview-card:hover .play-button {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(168, 85, 247, 0.7);
}

@media (max-width: 968px) {
    .demo-cta-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .demo-preview-image {
        height: 250px;
    }
}

.success-slide-visual {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.success-image-wrapper {
    position: relative;
    display: inline-block;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(69, 244, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.success-image-wrapper:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 35px 80px rgba(168, 85, 247, 0.35),
        0 0 0 2px rgba(69, 244, 255, 0.2);
}

.success-image-glow {
    display: none; /* Disabled for performance */
}

.success-image,
.success-image-wrapper .success-image {
    max-width: 100% !important;
    max-height: 460px !important;
    height: auto !important;
    width: auto !important;
    aspect-ratio: auto !important;
    display: block;
    position: relative;
    z-index: 1;
    transition: transform 0.5s ease;
}

.success-image-wrapper:hover .success-image {
    transform: scale(1.03);
}

.success-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(168, 85, 247, 0.15) 0%,
        transparent 50%,
        rgba(69, 244, 255, 0.15) 100%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 2;
}

.success-image-wrapper:hover .success-image-overlay {
    opacity: 1;
}

/* Navigation Buttons */
.success-nav {
    position: absolute;
    top: calc(50% - 25px);
    transform: translateY(-50%);
    background: rgba(30, 30, 46, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(168, 85, 247, 0.3);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 10;
    color: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.success-nav svg {
    transition: transform 0.3s ease;
}

.success-nav:hover {
    background: linear-gradient(135deg, var(--purple) 0%, var(--pink) 100%);
    border-color: transparent;
    box-shadow:
        0 0 30px rgba(168, 85, 247, 0.5),
        0 15px 35px rgba(168, 85, 247, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.success-prev:hover svg {
    transform: translateX(-3px);
}

.success-next:hover svg {
    transform: translateX(3px);
}

.success-prev {
    left: 0;
}

.success-next {
    right: 0;
}

/* Dots Navigation with Progress */
.success-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
}

.success-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(168, 85, 247, 0.25);
    border: 2px solid rgba(168, 85, 247, 0.4);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.success-dot:hover {
    background: rgba(168, 85, 247, 0.4);
    transform: scale(1.25);
}

.success-dot.active {
    background: var(--purple);
    border-color: var(--cyan);
    box-shadow:
        0 0 15px rgba(168, 85, 247, 0.6),
        0 0 30px rgba(69, 244, 255, 0.3);
    transform: scale(1.4);
    width: 28px;
    border-radius: 10px;
}

/* Progress Bar */
.success-progress-bar {
    width: 100%;
    max-width: 400px;
    height: 3px;
    background: rgba(168, 85, 247, 0.15);
    border-radius: 3px;
    margin: 2rem auto 0;
    overflow: hidden;
    position: relative;
}

.success-progress-fill {
    height: 100%;
    background: linear-gradient(90deg,
        var(--purple) 0%,
        var(--pink) 50%,
        var(--cyan) 100%);
    width: 100%;
    transform: scaleX(0);
    transform-origin: left;
    will-change: transform;
    border-radius: 3px;
}

/* Mobile Responsive */
@media (max-width: 1200px) {
    .success-slider-wrapper {
        padding: 0 80px;
    }
}

@media (max-width: 968px) {
    .success-slider-wrapper {
        padding: 0 65px;
    }

    .success-slide-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1.5rem;
    }

    .success-slide-title {
        font-size: 1.5rem;
    }

    .success-slide-description {
        font-size: 1rem;
    }

    .success-stats {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }

    .success-stat-item {
        padding: 0.75rem 1rem;
        flex: 1;
        min-width: 120px;
        text-align: center;
    }

    .success-nav {
        width: 48px;
        height: 48px;
    }

    .success-slides-container {
        min-height: 0;
    }

    .success-image-wrapper {
        max-height: none;
    }
}

@media (max-width: 640px) {
    .success-stories-slider {
        padding: 2.5rem 0;
    }

    .success-stories-subtitle {
        font-size: 1.05rem;
    }

    .success-slider-wrapper {
        padding: 0 45px;
    }

    .success-slides-container {
        min-height: 0;
    }

    .success-slide-content {
        padding: 1.5rem 1.25rem;
    }

    .success-slide-title {
        font-size: 1.5rem;
    }

    .success-slide-description {
        font-size: 0.95rem;
        line-height: 1.65;
    }

    .success-stats {
        gap: 0.75rem;
    }

    .success-stat-item {
        padding: 0.6rem 0.75rem;
        min-width: 100px;
    }

    .stat-highlight {
        font-size: 1.5rem;
    }

    .btn-success-cta {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
    }

    .success-nav {
        width: 40px;
        height: 40px;
    }

    .success-dot.active {
        width: 22px;
    }

    .success-progress-bar {
        max-width: 280px;
    }
}

/* ===================================
   Certification Section - Enhanced
   =================================== */
.certification-section {
    background: var(--dark-bg);
    overflow: hidden;
    position: relative;
}

/* Animated grid background */
.certification-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 215, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 215, 0, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
    animation: gridPulse 8s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

/* Header */
.certification-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.certification-tagline {
    color: var(--text-secondary);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Main showcase container */
.certification-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Certificate Visual Container */
.certification-visual-enhanced {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Animated glow rings */
.cert-glow-ring {
    position: absolute;
    width: 120%;
    height: 120%;
    border-radius: 50%;
    border: 1px solid rgba(255, 215, 0, 0.15);
    animation: glowRingPulse 4s ease-in-out infinite;
}

.cert-glow-ring-2 {
    width: 140%;
    height: 140%;
    animation-delay: -2s;
    border-color: rgba(255, 215, 0, 0.08);
}

@keyframes glowRingPulse {
    0%, 100% {
        transform: scale(0.95);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

/* Certificate frame */
.certification-frame {
    position: relative;
    width: 100%;
    max-width: 480px;
    border-radius: 1rem;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(30, 30, 46, 0.8) 100%);
    padding: 4px;
    box-shadow:
        0 0 60px rgba(255, 215, 0, 0.15),
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 215, 0, 0.2);
}

.certification-frame img {
    width: 100%;
    height: auto;
    border-radius: 0.75rem;
    display: block;
    aspect-ratio: 500 / 350;
}

/* Corner accents */
.cert-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    z-index: 3;
}

.cert-corner::before,
.cert-corner::after {
    content: '';
    position: absolute;
    background: #FFD700;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.8);
}

.cert-corner-tl { top: 8px; left: 8px; }
.cert-corner-tl::before { width: 20px; height: 2px; top: 0; left: 0; }
.cert-corner-tl::after { width: 2px; height: 20px; top: 0; left: 0; }

.cert-corner-tr { top: 8px; right: 8px; }
.cert-corner-tr::before { width: 20px; height: 2px; top: 0; right: 0; }
.cert-corner-tr::after { width: 2px; height: 20px; top: 0; right: 0; }

.cert-corner-bl { bottom: 8px; left: 8px; }
.cert-corner-bl::before { width: 20px; height: 2px; bottom: 0; left: 0; }
.cert-corner-bl::after { width: 2px; height: 20px; bottom: 0; left: 0; }

.cert-corner-br { bottom: 8px; right: 8px; }
.cert-corner-br::before { width: 20px; height: 2px; bottom: 0; right: 0; }
.cert-corner-br::after { width: 2px; height: 20px; bottom: 0; right: 0; }

/* Scan line animation */
.cert-scan-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.8), transparent);
    animation: scanLine 3s ease-in-out infinite;
    opacity: 0;
}

@keyframes scanLine {
    0% { top: 0; opacity: 0; }
    10% { opacity: 0.8; }
    90% { opacity: 0.8; }
    100% { top: 100%; opacity: 0; }
}

/* Verified badge */
.cert-badge-verified {
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    box-shadow:
        0 4px 20px rgba(22, 163, 74, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    z-index: 5;
}

.cert-badge-verified svg {
    flex-shrink: 0;
}

/* Value Proposition Cards */
.certification-value {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.cert-value-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: rgba(30, 30, 46, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.cert-value-card:hover {
    background: rgba(30, 30, 46, 0.8);
    border-color: rgba(255, 215, 0, 0.2);
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.cert-value-card-highlight {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(30, 30, 46, 0.6) 100%);
    border-color: rgba(255, 215, 0, 0.15);
}

.cert-value-card-highlight:hover {
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 8px 40px rgba(255, 215, 0, 0.1);
}

.cert-value-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.05) 100%);
    border-radius: 0.75rem;
    flex-shrink: 0;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.cert-value-icon svg {
    stroke: #FFD700;
}

.cert-value-content h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}

.cert-value-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* CTA Row */
.certification-cta-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    position: relative;
    z-index: 2;
}

.certification-cta-row .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    font-size: 1.05rem;
}

.certification-cta-row .btn svg {
    transition: transform 0.3s ease;
}

.certification-cta-row .btn:hover svg {
    transform: translateX(4px);
}

.certification-detail-link {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 215, 0, 0.82);
    font-family: var(--font-primary);
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 215, 0, 0.28);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.certification-detail-link:hover {
    color: #ffe680;
    border-color: rgba(255, 230, 128, 0.64);
}

.certification-cta-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* Responsive */
@media (max-width: 968px) {
    .certification-showcase {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .certification-visual-enhanced {
        order: -1;
    }

    .certification-frame {
        max-width: 400px;
        margin: 0 auto;
    }

    .cert-glow-ring {
        display: none;
    }

    .cert-value-card:hover {
        transform: none;
    }

    .certification-header {
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 480px) {
    .certification-frame {
        max-width: 100%;
    }

    .cert-value-card {
        padding: 1.25rem;
        gap: 1rem;
    }

    .cert-value-icon {
        width: 44px;
        height: 44px;
    }

    .cert-value-icon svg {
        width: 22px;
        height: 22px;
    }

    .cert-value-content h4 {
        font-size: 1rem;
    }

    .cert-value-content p {
        font-size: 0.9rem;
    }

    .certification-cta-row .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===================================
   Course Structure
   =================================== */
.course-structure {
    background: var(--darker-bg);
    padding: 3rem 0;
}

.course-header {
    text-align: center;
    margin-bottom: 2rem;
}

.course-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 680px;
    margin: 0.75rem auto 0;
}

.course-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
}

@media (max-width: 968px) {
    .course-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .course-visual-column {
        order: -1;
    }
}

/* Left Column - Course Info */
.course-info-column {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    height: 100%;
}

/* Compact Stats */
.course-stats-compact {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.stat-item-compact {
    display: flex;
    align-items: center;
    gap: 1.64rem;
    padding: 0.6rem 1rem;
    background: rgba(69, 244, 255, 0.1);
    border: 1px solid var(--border-color-cyan);
    border-radius: 0.5rem;
    transition: var(--transition-medium);
}

.stat-item-compact:hover {
    background: rgba(69, 244, 255, 0.15);
    transform: translateY(-2px);
}

.stat-item-compact .stat-icon {
    font-size: 1.1rem;
}

.stat-item-compact .stat-text {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

/* Training Highlight Box */
.training-highlight-box {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(69, 244, 255, 0.1));
    border: 2px solid var(--border-color-cyan);
    border-radius: 1rem;
    padding: 1.25rem;
}

.highlight-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.highlight-icon {
    font-size: 1.5rem;
}

.highlight-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--cyan);
    margin: 0;
    line-height: 1.3;
}

.training-highlight-box p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.training-highlight-box strong {
    color: var(--text-primary);
}

/* Learning Method Box */
.learning-method-box {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 1rem;
    padding: 1.25rem;
}

.method-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.method-icon {
    font-size: 1.5rem;
}

.method-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--cyan);
    margin: 0;
    line-height: 1.3;
}

.method-steps {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.method-step {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(168, 85, 247, 0.05);
    border-left: 3px solid var(--purple);
    border-radius: 0.5rem;
    transition: var(--transition-medium);
}

.method-step:hover {
    background: rgba(168, 85, 247, 0.1);
    transform: translateX(5px);
}

.step-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 1.75rem;
    height: 1.75rem;
    background: linear-gradient(135deg, var(--purple), var(--cyan));
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
}

.step-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.25rem 0;
    line-height: 1.3;
}

.step-info p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

.step-info strong {
    color: var(--cyan);
}

/* CTA Buttons */
.course-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.course-cta-buttons .btn {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 0.875rem 1.25rem;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
}

@media (max-width: 768px) {
    .course-cta-buttons {
        flex-direction: column;
    }

    .course-cta-buttons .btn {
        width: 100%;
    }
}

/* Right Column - Code Preview */
.course-visual-column {
    display: flex;
    align-items: stretch;
    height: 100%;
}

.code-preview-card {
    background: #0d1117;
    border: 2px solid var(--border-color-cyan);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(69, 244, 255, 0.2);
    transition: var(--transition-medium);
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.code-preview-card:hover {
    border-color: var(--cyan);
    box-shadow: 0 12px 40px rgba(69, 244, 255, 0.3);
}

.code-preview-header {
    background: rgba(69, 244, 255, 0.1);
    padding: 0.65rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid var(--border-color-cyan);
}

.code-dots {
    display: flex;
    gap: 0.4rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot-red {
    background: #ff5f56;
}

.dot-yellow {
    background: #ffbd2e;
}

.dot-green {
    background: #27c93f;
}

.code-file-name {
    color: var(--cyan);
    font-size: 0.8rem;
    font-weight: 600;
    font-family: 'Monaco', 'Courier New', monospace;
}

.code-preview-content {
    padding: 1.25rem;
    overflow-x: auto;
    flex: 1;
    display: flex;
    align-items: flex-start;
}

.code-preview-content pre {
    margin: 0;
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 0.75rem;
    line-height: 1.5;
}

.code-preview-content code {
    color: #c9d1d9;
}

.code-keyword {
    color: #ff7b72;
}

.code-function {
    color: #d2a8ff;
}

.code-type {
    color: #79c0ff;
}

.code-comment {
    color: #8b949e;
    font-style: italic;
}

.code-number {
    color: #79c0ff;
}

/* Legacy styles cleanup - keep for backward compatibility */
.course-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

@media (max-width: 968px) {
    .course-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.course-stats {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    transition: var(--transition-medium);
}

.stat-item:hover {
    border-color: var(--cyan);
    box-shadow: var(--shadow-neon-cyan);
}

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

.stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.course-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

.code-preview {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 1rem;
    overflow: hidden;
    transition: var(--transition-medium);
}

.code-preview:hover {
    border-color: var(--cyan);
    box-shadow: var(--shadow-neon-cyan);
}

.code-header {
    background: rgba(168, 85, 247, 0.1);
    padding: 1rem;
    display: flex;
    gap: 0.5rem;
}

.code-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-muted);
}

.code-dot:nth-child(1) {
    background: #ef4444;
}

.code-dot:nth-child(2) {
    background: var(--yellow);
}

.code-dot:nth-child(3) {
    background: #10b981;
}

.code-content {
    padding: 1.5rem;
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--text-secondary);
    overflow-x: auto;
}

.code-content .highlight {
    background: rgba(69, 244, 255, 0.15);
    border-bottom: 2px solid var(--cyan);
    padding: 0.2rem 0;
}

.course-image-card {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border-radius: 1.5rem;
    border: 2px solid var(--border-color);
    transition: var(--transition-medium);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.course-image-card:hover {
    border-color: var(--cyan);
    box-shadow: var(--shadow-neon-cyan);
    transform: translateY(-5px);
}

/* Course Structure - Enhanced Methodology Section */
.methodology-highlight {
    margin: 2rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(69, 244, 255, 0.1));
    border: 2px solid var(--border-color-cyan);
    border-radius: 1rem;
}

.methodology-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cyan);
    margin-bottom: 1rem;
}

.learning-approach {
    margin: 2.5rem 0;
}

.approach-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cyan);
    margin-bottom: 2rem;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.approach-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 1rem;
    transition: var(--transition-medium);
}

.approach-step:hover {
    border-color: var(--cyan);
    box-shadow: var(--shadow-neon-cyan);
    transform: translateX(10px);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--purple), var(--cyan));
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.what-makes-different {
    margin: 2.5rem 0;
    padding: 2rem;
    background: rgba(168, 85, 247, 0.05);
    border-left: 4px solid var(--purple);
    border-radius: 0.5rem;
}

.different-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--purple);
    margin-bottom: 1.5rem;
}

.different-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.different-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
}

.different-list li:before {
    content: "⚡";
    font-size: 1.5rem;
    flex-shrink: 0;
}

.different-list strong {
    color: var(--cyan);
}

/* ===================================
   Community Section
   =================================== */
.community-section {
    background: var(--dark-bg);
}

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

@media (max-width: 968px) {
    .community-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.discord-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    transition: var(--transition-medium);
}

.discord-card:hover {
    border-color: var(--cyan);
    box-shadow: var(--shadow-neon-cyan);
    transform: translateY(-5px);
}

.discord-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.25rem;
}

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

.discord-welcome {
    color: var(--text-secondary);
    font-style: italic;
}

.community-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.community-image-card {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border-radius: 1.5rem;
    border: 2px solid var(--border-color);
    transition: var(--transition-medium);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.community-image-card:hover {
    border-color: var(--cyan);
    box-shadow: var(--shadow-neon-cyan);
    transform: translateY(-5px);
}

.community-image {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-medium);
    aspect-ratio: 600 / 400; /* Matches macro dimensions - prevents CLS */
}

.community-image-card:hover .community-image {
    transform: scale(1.02);
}

.experts-showcase {
    margin-top: 4rem;
}

.experts-showcase .section-title {
    margin-bottom: 1.5rem;
}

/* ===================================
   Mentors & Community Section
   =================================== */
.mentors-section {
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.mentors-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(168, 85, 247, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(69, 244, 255, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

/* Mentors Showcase */
.mentors-showcase {
    margin-bottom: 5rem;
    position: relative;
}

.mentors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1100px) {
    .mentors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 600px) {
    .mentors-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

/* Mentor Card */
.mentor-card {
    position: relative;
    background: rgba(30, 30, 46, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.25rem;
    padding: 2rem 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.mentor-card-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(69, 244, 255, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.mentor-card:hover {
    border-color: rgba(69, 244, 255, 0.3);
    transform: translateY(-6px);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(69, 244, 255, 0.1);
}

.mentor-card:hover .mentor-card-glow {
    opacity: 1;
}

/* Featured Card (JohnnyTime) */
.mentor-card-featured {
    border-color: rgba(168, 85, 247, 0.25);
    background: linear-gradient(180deg, rgba(168, 85, 247, 0.08) 0%, rgba(30, 30, 46, 0.7) 100%);
}

.mentor-card-featured .mentor-card-glow {
    background: radial-gradient(circle, rgba(168, 85, 247, 0.2) 0%, transparent 70%);
}

.mentor-card-featured:hover {
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(168, 85, 247, 0.15);
}

/* Avatar Styles */
.mentor-avatar-wrapper {
    position: relative;
    margin-bottom: 1.25rem;
}

.mentor-avatar-ring {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--purple) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mentor-card:hover .mentor-avatar-ring {
    opacity: 1;
}

.mentor-card-featured .mentor-avatar-ring {
    background: linear-gradient(135deg, var(--purple) 0%, var(--cyan) 100%);
}

.mentor-avatar-img {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.4s ease;
    background: var(--darker-bg);
}

.mentor-avatar-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.mentor-card:hover .mentor-avatar-img {
    border-color: transparent;
}

.mentor-card:hover .mentor-avatar-img img {
    transform: scale(1.08);
}

/* Mentor Info */
.mentor-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.mentor-name-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.35rem;
}

.mentor-name-row .mentor-name {
    margin-bottom: 0;
}

.mentor-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(69, 244, 255, 0.1);
    border: 1px solid rgba(69, 244, 255, 0.2);
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.mentor-social-link:hover {
    background: rgba(69, 244, 255, 0.2);
    border-color: var(--cyan);
    color: var(--cyan);
    transform: scale(1.1);
}

.mentor-card-featured .mentor-social-link {
    background: rgba(168, 85, 247, 0.1);
    border-color: rgba(168, 85, 247, 0.2);
}

.mentor-card-featured .mentor-social-link:hover {
    background: rgba(168, 85, 247, 0.2);
    border-color: var(--accent-primary-strong);
    color: var(--accent-primary-strong);
}

.mentor-name {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.35rem;
    transition: color 0.3s ease;
}

.mentor-card:hover .mentor-name {
    color: var(--cyan);
}

.mentor-card-featured:hover .mentor-name {
    color: var(--accent-primary-strong);
}

.mentor-role {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--cyan);
    margin-bottom: 0.75rem;
    opacity: 0.9;
}

.mentor-card-featured .mentor-role {
    color: var(--accent-primary-strong);
}

.mentor-bio {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1rem;
    flex: 1;
}

/* Credential Tags */
.mentor-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.credential-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.65rem;
    background: rgba(69, 244, 255, 0.08);
    border: 1px solid rgba(69, 244, 255, 0.15);
    border-radius: 2rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.mentor-card-featured .credential-tag {
    background: rgba(168, 85, 247, 0.1);
    border-color: rgba(168, 85, 247, 0.2);
}

.mentor-card:hover .credential-tag {
    background: rgba(69, 244, 255, 0.12);
    border-color: rgba(69, 244, 255, 0.25);
}

.mentor-card-featured:hover .credential-tag {
    background: rgba(168, 85, 247, 0.15);
    border-color: rgba(168, 85, 247, 0.3);
}

.credential-icon {
    font-size: 0.85rem;
    line-height: 1;
}

/* Community Showcase */
.community-showcase {
    position: relative;
}

.community-content-enhanced {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 968px) {
    .community-content-enhanced {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.community-text-enhanced {
    position: relative;
}

.community-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1rem;
    background: rgba(88, 101, 242, 0.15);
    border: 1px solid rgba(88, 101, 242, 0.3);
    border-radius: 2rem;
    margin-bottom: 1.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #7289da;
}

.discord-svg-icon {
    width: 20px;
    height: 20px;
    color: #7289da;
}

.community-title {
    font-family: var(--font-display);
    font-size: var(--step-3);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.community-description-enhanced {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.community-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.community-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.benefit-icon {
    font-size: 1.1rem;
    width: 1.5rem;
    text-align: center;
}

/* Community Visual */
.community-visual-enhanced {
    position: relative;
}

.community-image-glow {
    display: none;
}

.community-image-frame .community-image {
    width: 100%;
    height: 366px;
    object-fit: contain;
    display: block;
}

/* Floating Stats */
.community-stats-floating {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    z-index: 10;
}

@media (max-width: 968px) {
    .community-stats-floating {
        bottom: -0.75rem;
        right: 1rem;
    }
}

.floating-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.9) 0%, rgba(114, 137, 218, 0.9) 100%);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    box-shadow:
        0 8px 25px rgba(88, 101, 242, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.15);
    animation: float-gentle 4s ease-in-out infinite;
}

@keyframes float-gentle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.floating-stat-number {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.floating-stat-label {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 0.15rem;
}

/* ===================================
   Bug Bounties Section
   =================================== */
.bounties-section {
    background: var(--darker-bg);
}

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

@media (max-width: 968px) {
    .bounties-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.bounties-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.bounties-highlight {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 2rem 0;
    text-align: center;
    padding: 1.5rem;
    background: var(--card-bg);
    border: 2px solid var(--cyan);
    border-radius: 1rem;
    box-shadow: 0 0 20px rgba(69, 244, 255, 0.3);
}

.bounty-list {
    display: grid;
    gap: 1rem;
}

.bounty-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    transition: var(--transition-medium);
}

.bounty-item:hover {
    border-color: var(--cyan);
    box-shadow: 0 0 15px rgba(69, 244, 255, 0.4);
    transform: translateX(5px);
}

.bounty-name {
    font-weight: 600;
    font-size: 1.1rem;
}

.bounty-amount {
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--cyan);
}

/* ===================================
   Trial Section
   =================================== */
.trial-section {
    background: var(--darker-bg);
}

.trial-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.trial-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.trial-form,
.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    text-align: left;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.125rem 1.25rem;
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 0.75rem;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-medium);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(69, 244, 255, 0.2), 0 4px 20px rgba(69, 244, 255, 0.3);
    transform: translateY(-1px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

/* Form row for first/last name side by side */
.form-group-row {
    display: flex;
    gap: 1rem;
}

.form-group-row input {
    flex: 1;
    min-width: 0;
}

@media (max-width: 480px) {
    .form-group-row {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* ===================================
   Experts Section
   =================================== */
.experts-section {
    background: var(--dark-bg);
}

.experts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

@media (max-width: 968px) {
    .experts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .experts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.expert-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(30, 30, 46, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    transition: var(--transition-medium);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.expert-card:hover {
    border-color: var(--cyan);
    background: rgba(30, 30, 46, 0.8);
    box-shadow: 0 10px 40px rgba(69, 244, 255, 0.15);
    transform: translateY(-10px);
}

.expert-avatar {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.expert-avatar-img {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
    overflow: hidden;
    border-radius: 50%;
    border: 3px solid var(--border-color);
    transition: var(--transition-medium);
}

.expert-avatar-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.expert-card:hover .expert-avatar-img {
    border-color: var(--cyan);
    box-shadow: 0 0 20px rgba(69, 244, 255, 0.5);
}

.expert-card:hover .expert-avatar-img img {
    transform: scale(1.1);
}

.expert-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--cyan);
}

.expert-bio {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===================================
   Pricing Section - Premium Redesign
   =================================== */
.pricing-section {
    background: linear-gradient(180deg, var(--darker-bg) 0%, #0a0a12 100%);
    position: relative;
    overflow: hidden;
    padding: 2rem 0 5rem 0;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-header-new {
    text-align: center;
    margin-bottom: 2.25rem;
    position: relative;
    z-index: 1;
}

.pricing-badge {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: rgba(168, 85, 247, 0.15);
    border: 1px solid var(--border-color);
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--accent-secondary);
    margin-bottom: 1.5rem;
    text-transform: none;
}

.pricing-main-title {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.2;
}

.pricing-subtitle {
    font-size: var(--step-1);
    color: var(--text-secondary);
    font-weight: 400;
}

/* Premium Pricing Card */
.pricing-card-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pricing-card-premium {
    background: linear-gradient(145deg, rgba(30, 30, 46, 0.95) 0%, rgba(22, 22, 34, 0.98) 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 2rem;
    padding: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 40px rgba(255, 215, 0, 0.15);
    overflow: hidden;
    position: relative;
    transition: all var(--transition-medium);
    backdrop-filter: blur(20px);
}

.pricing-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFD700 0%, #FDB931 50%, #FFD700 100%);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.pricing-card-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6),
                0 0 60px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.5);
}

/* Value Banner */
.value-banner {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.12) 0%, rgba(69, 244, 255, 0.08) 100%);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(168, 85, 247, 0.2);
    flex-wrap: wrap;
    gap: 1rem;
}

.value-tag {
    background: linear-gradient(135deg, var(--yellow) 0%, #f59e0b 100%);
    color: var(--darker-bg);
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-weight: 800;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    text-transform: none;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.countdown-compact {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.countdown-text {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
}

.countdown-inline {
    display: flex;
    gap: 0.5rem;
}

.time-block {
    background: rgba(168, 85, 247, 0.2);
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1rem;
    color: var(--cyan);
    border: 1px solid rgba(168, 85, 247, 0.3);
    min-width: 50px;
    text-align: center;
}

.time-block span {
    font-size: 1.25rem;
    background-image: linear-gradient(135deg, var(--purple) 0%, var(--cyan) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Card Header */
.pricing-card-header {
    padding: 2.5rem 2.5rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(168, 85, 247, 0.1);
}

.course-title-pricing {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    background-image: linear-gradient(135deg, var(--purple) 0%, var(--cyan) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.course-subtitle-pricing {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 400;
}

/* Pricing Display */
.pricing-display {
    padding: 2.5rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.05) 0%, rgba(69, 244, 255, 0.05) 100%);
    border-bottom: 1px solid rgba(168, 85, 247, 0.1);
}

.price-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.price-main {
    display: flex;
    align-items: flex-start;
    line-height: 1;
}

.currency {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.amount {
    font-size: 5rem;
    font-weight: 800;
    background-image: linear-gradient(135deg, var(--purple) 0%, var(--cyan) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.price-comparison {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
}

.original-price {
    font-size: 1.5rem;
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 600;
}

.savings-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.value-proposition {
    color: var(--yellow);
    font-size: 1.125rem;
    font-weight: 600;
    margin-top: 1rem;
}

/* What's Included */
.whats-included {
    padding: 2.5rem;
    border-bottom: 1px solid rgba(168, 85, 247, 0.1);
}

.included-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
}

.benefits-list {
    display: grid;
    gap: 1.25rem;
    list-style: none;
}

.benefits-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: rgba(168, 85, 247, 0.05);
    border-radius: 0.75rem;
    border: 1px solid rgba(168, 85, 247, 0.15);
    transition: all var(--transition-medium);
}

.benefits-list li:hover {
    background: rgba(168, 85, 247, 0.1);
    border-color: var(--cyan);
    transform: translateX(5px);
}

.benefit-icon {
    font-size: 1.25rem;
    color: var(--cyan);
    font-weight: 700;
    min-width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(69, 244, 255, 0.15);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
}

.benefit-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.benefit-text strong {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 700;
}

.benefit-text span {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Premium Payment Section */
.premium-payment-section {
    padding: 2.5rem;
    border-bottom: 1px solid rgba(168, 85, 247, 0.1);
}

.payment-section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.premium-payment-btn {
    padding: 1.25rem 1.5rem;
    background: rgba(168, 85, 247, 0.1);
    border: 2px solid rgba(168, 85, 247, 0.3);
    border-radius: 0.75rem;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-medium);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.premium-payment-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s;
    will-change: transform;
}

.premium-payment-btn:hover::before {
    transform: translateX(100%);
}

.premium-payment-btn:hover {
    border-color: var(--cyan);
    background: rgba(69, 244, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(69, 244, 255, 0.2);
}

.premium-payment-btn.primary-payment {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--purple) 0%, var(--cyan) 100%);
    border: none;
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.4);
}

.premium-payment-btn.primary-payment:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(168, 85, 247, 0.5);
}

.premium-payment-btn.paypal-primary {
    background: linear-gradient(135deg, #0070ba 0%, #003087 100%);
    border: none;
    color: white;
}

.premium-payment-btn.paypal-primary:hover {
    background: linear-gradient(135deg, #005ea6 0%, #002970 100%);
}

.payment-label {
    font-weight: 600;
}

.payment-icon {
    font-size: 1.5rem;
}

/* Trust Section */
.trust-section {
    padding: 2rem 2.5rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: rgba(168, 85, 247, 0.03);
    border-bottom: 1px solid rgba(168, 85, 247, 0.1);
    flex-wrap: wrap;
    gap: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.trust-icon {
    font-size: 1.5rem;
}

.trust-text {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Fine Print */
.pricing-fine-print {
    padding: 1.5rem 2.5rem;
    text-align: center;
}

.pricing-fine-print p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Lite Version Card */
.lite-version-card {
    margin-top: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(69, 244, 255, 0.05) 0%, rgba(168, 85, 247, 0.05) 100%);
    border: 2px solid rgba(69, 244, 255, 0.3);
    border-radius: 1.5rem;
    text-align: center;
    transition: all var(--transition-medium);
}

.lite-version-card:hover {
    border-color: var(--cyan);
    box-shadow: 0 10px 30px rgba(69, 244, 255, 0.2);
}

.lite-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.lite-card-description {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.btn-lite-version {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--accent-secondary);
    color: var(--dark-bg);
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    border-radius: 0.5rem;
    transition: all var(--transition-medium);
    cursor: pointer;
    text-transform: none;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 15px rgba(69, 244, 255, 0.4);
}

.btn-lite-version:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(69, 244, 255, 0.6);
}

/* ===================================
   NEW PRICING DESIGN - Conversion Optimized
   =================================== */

/* Prominent Countdown Timer */
.countdown-banner-prominent {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.25) 0%, rgba(236, 72, 153, 0.25) 100%);
    padding: 1.2rem 1.5rem;
    border-bottom: 2px solid rgba(168, 85, 247, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.countdown-banner-prominent.is-urgent {
    border-bottom-color: rgba(239, 68, 68, 0.6);
    box-shadow: 0 20px 40px rgba(239, 68, 68, 0.15);
}

.countdown-banner-prominent.is-urgent .countdown-label {
    color: #f97316;
    text-shadow: 0 2px 12px rgba(249, 115, 22, 0.6);
}

.countdown-banner-prominent.is-urgent .time-value {
    color: #f97316;
    text-shadow: 0 6px 22px rgba(249, 115, 22, 0.6);
}

.countdown-label {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--yellow);
    text-transform: none;
    text-shadow: 0 2px 10px rgba(251, 191, 36, 0.5);
}

.countdown-timer-large {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.time-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-primary);
    line-height: 1;
    min-width: 70px;
    text-align: center;
    text-shadow: 0 4px 20px rgba(168,  85, 247, 0.5);
    transform-origin: center;
}

.time-value.is-ticking {
    animation: tick-pop 0.35s ease;
}

@keyframes tick-pop {
    0% {
        transform: translateY(0) scale(1);
    }
    40% {
        transform: translateY(-6px) scale(1.08);
    }
    100% {
        transform: translateY(0) scale(1);
    }
}

.time-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
    text-transform: none;
}

.time-separator {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(168, 85, 247, 0.5);
    line-height: 1;
    margin: 0 0.25rem;
}

/* Two Column Layout */
.pricing-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2.5rem 2.5rem 1.75rem;
}

.pricing-info-column {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pricing-info-column .course-title-pricing {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    background-image: linear-gradient(135deg, var(--purple) 0%, var(--cyan) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0;
    text-align: left;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .pricing-info-column .course-title-pricing {
        white-space: normal;
        font-size: 2rem;
    }
}

.pricing-info-column .course-subtitle-pricing {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--accent-primary);
    margin: 0.75rem 0 1rem;
}

.price-hero {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.price-current {
    display: flex;
    align-items: flex-start;
    line-height: 1;
}

.price-current .currency {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    margin-right: 0.25rem;
}

.price-current .amount {
    font-size: 4.5rem;
    font-weight: 800;
    background-image: linear-gradient(135deg, var(--purple) 0%, var(--cyan) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    justify-content: center;
}

.price-details .original-price {
    font-size: 1.5rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.savings-badge-large {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    text-align: center;
    animation: pulse 2s ease-in-out infinite;
}

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

/* Compact Benefits List */
.benefits-list-compact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0;
    margin: 0;
}

.benefits-list-compact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 1rem;
    padding: 0.25rem 0;
}

.benefits-list-compact .check {
    color: var(--cyan);
    font-weight: 700;
    font-size: 1.25rem;
    min-width: 20px;
}

/* CTA Column */
.pricing-cta-column {
    display: flex;
    align-items: stretch;
}

.cta-box {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.08) 0%, rgba(69, 244, 255, 0.08) 100%);
    border: 2px solid rgba(168, 85, 247, 0.3);
    border-radius: 1.5rem;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    width: 100%;
}

.value-highlight {
    text-align: center;
    padding: 0.75rem;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2) 0%, rgba(245, 158, 11, 0.2) 100%);
    border-radius: 0.75rem;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.value-text {
    color: var(--yellow);
    font-weight: 700;
    font-size: 1.125rem;
    letter-spacing: 0.05em;
}

.cta-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin: 0;
}

/* Payment Buttons Stack */
.payment-buttons-stack {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.payment-btn-large {
    padding: 0.75rem 1.5rem;
    background: rgba(168, 85, 247, 0.1);
    border: 2px solid rgba(168, 85, 247, 0.3);
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    min-height: 50px;
}

.payment-btn-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s;
    will-change: transform;
}

.payment-btn-large:hover::before {
    transform: translateX(100%);
}

.payment-btn-large:hover {
    border-color: var(--cyan);
    background: rgba(69, 244, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(69, 244, 255, 0.3);
}

.payment-btn-large.primary-payment {
    background: linear-gradient(135deg, var(--purple) 0%, var(--cyan) 100%);
    border: none;
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.4);
}


.payment-btn-large.primary-payment:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(168, 85, 247, 0.6);
}

.payment-btn-large.paypal-btn {
    background: linear-gradient(135deg, #0070ba 0%, #003087 100%);
    border: none;
}

.payment-btn-large.paypal-btn:hover {
    background: linear-gradient(135deg, #005ea6 0%, #002970 100%);
}

.btn-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.875rem;
    position: relative;
    z-index: 1;
}

.payment-icon {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
}

.payment-icon img {
    width: 32px !important;
    height: 32px !important;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.payment-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    color: var(--text-primary);
}

.payment-btn-large.primary-payment .payment-text,
.payment-btn-large.paypal-btn .payment-text {
    color: white;
}

.payment-text strong {
    font-size: 1.125rem;
    font-weight: 700;
}

.payment-text small {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Trust Badges Compact */
.trust-badges-compact {
    display: flex;
    justify-content: space-around;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(168, 85, 247, 0.2);
}

.trust-badge {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 600;
    white-space: nowrap;
}

/* Updated Fine Print */
.pricing-fine-print {
    padding: 1.5rem 2.5rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
    border-top: 1px solid rgba(168, 85, 247, 0.1);
}

/* Updated Lite Card */
.lite-version-card {
    margin-top: 1.5rem;
    padding: 1.25rem 1.75rem;
    background: linear-gradient(135deg, rgba(69, 244, 255, 0.05) 0%, rgba(168, 85, 247, 0.05) 100%);
    border: 2px solid rgba(69, 244, 255, 0.3);
    border-radius: 1rem;
    text-align: center;
    transition: all var(--transition-medium);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.lite-version-card .lite-card-description {
    margin: 0;
    font-size: 1.2rem !important;
    color: var(--text-secondary);
}

.lite-version-card .btn-lite-version {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    white-space: nowrap;
}

/* Responsive Design for Pricing */
@media (max-width: 968px) {
    .pricing-main-title {
        font-size: 2.75rem;
    }

    .amount {
        font-size: 4rem;
    }

    .pricing-card-header,
    .pricing-display,
    .whats-included,
    .premium-payment-section {
        padding: 2.5rem 2rem;
    }

    /* New design responsive */
    .pricing-main-content {
        gap: 2rem;
        padding: 2.5rem 2rem;
    }

    .time-value {
        font-size: 2.5rem;
        min-width: 60px;
    }

    .price-current .amount {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .pricing-main-title {
        font-size: 2.25rem;
    }

    .pricing-card-premium {
        padding: 0;
        border-radius: 1.5rem;
    }

    .value-banner {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem 1.5rem;
    }

    .amount {
        font-size: 3.5rem;
    }

    .currency {
        font-size: 1.75rem;
    }

    .price-row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .price-comparison {
        align-items: center;
    }

    .pricing-card-header,
    .pricing-display,
    .whats-included,
    .premium-payment-section {
        padding: 2rem 1.5rem;
    }

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

    .premium-payment-btn.primary-payment {
        grid-column: span 1;
    }

    .trust-section {
        flex-direction: column;
        gap: 1.5rem;
    }

    /* New design responsive */
    .pricing-main-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1.5rem;
    }

    .countdown-banner-prominent {
        padding: 1.5rem 1.5rem;
    }

    .countdown-timer-large {
        gap: 0.75rem;
    }

    .time-value {
        font-size: 2rem;
        min-width: 50px;
    }

    .time-separator {
        font-size: 2rem;
    }

    .pricing-info-column .course-title-pricing {
        font-size: 2rem;
        text-align: center;
    }

    .pricing-info-column .course-subtitle-pricing {
        text-align: center;
    }

    .price-hero {
        justify-content: center;
        flex-wrap: wrap;
    }

    .price-current .amount {
        font-size: 3.5rem;
    }

    .price-current .currency {
        font-size: 1.75rem;
    }

    .cta-box {
        padding: 1.5rem;
    }

    .lite-version-card {
        flex-direction: column;
        text-align: center;
    }

    .lite-version-card .btn-lite-version {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .pricing-main-title {
        font-size: 1.75rem;
    }

    .amount {
        font-size: 2.75rem;
    }

    .countdown-inline {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.35rem;
    }

    .time-block {
        min-width: 42px;
        padding: 0.4rem 0.5rem;
        font-size: 0.85rem;
    }

    .time-block span {
        font-size: 1.1rem;
    }

    .pricing-card-header,
    .pricing-display,
    .whats-included,
    .premium-payment-section {
        padding: 1.5rem 1.25rem;
    }

    .value-banner {
        padding: 1rem 1.25rem;
    }

    .course-title-pricing {
        font-size: 1.5rem;
    }

    /* New design responsive */
    .countdown-banner-prominent {
        padding: 1.25rem 1rem;
    }

    .countdown-timer-large {
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .time-value {
        font-size: 1.75rem;
        min-width: 45px;
    }

    .time-label {
        font-size: 0.65rem;
    }

    .time-separator {
        font-size: 1.5rem;
    }

    .pricing-main-content {
        padding: 1.5rem 1.25rem;
        gap: 1.5rem;
    }

    .pricing-info-column .course-title-pricing {
        font-size: 1.75rem;
    }

    .price-hero {
        gap: 1rem;
    }

    .price-current .amount {
        font-size: 2.75rem;
    }

    .price-current .currency {
        font-size: 1.5rem;
    }

    .price-details .original-price {
        font-size: 1.25rem;
    }

    .savings-badge-large {
        font-size: 0.875rem;
        padding: 0.4rem 1rem;
    }

    .benefits-list-compact li {
        font-size: 0.9rem;
    }

    .cta-box {
        padding: 1.25rem;
        gap: 1.25rem;
    }

    .payment-btn-large {
        padding: 0.875rem 1.25rem;
    }

    .payment-text strong {
        font-size: 1rem;
    }

    .payment-text small {
        font-size: 0.8rem;
    }

    .trust-badges-compact {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* ===================================
   Testimonial Section — Marquee
   =================================== */
.testimonial-section {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.05) 0%, rgba(69, 244, 255, 0.05) 100%);
    overflow: hidden;
}

.testimonials-marquee {
    position: relative;
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
    overflow: hidden;
    padding: 1.25rem 0 0.75rem;
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 7%,
        black 93%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 7%,
        black 93%,
        transparent 100%
    );
}

@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.marquee-track {
    display: flex;
    gap: 1.25rem;
    width: max-content;
    animation: marquee-scroll 70s linear infinite;
    will-change: transform;
}

.testimonials-marquee:hover .marquee-track,
.testimonials-marquee:focus-within .marquee-track {
    animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
    .marquee-track {
        animation: none;
    }
}

.review-card {
    flex-shrink: 0;
    width: 320px;
    padding: 1.5rem;
    border-radius: 1.25rem;
    background: linear-gradient(160deg, rgba(30, 30, 46, 0.92) 0%, rgba(22, 22, 34, 0.94) 100%);
    border: 1px solid rgba(168, 85, 247, 0.18);
    box-shadow:
        0 1px 0 0 rgba(255, 255, 255, 0.04) inset,
        0 12px 30px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    transition:
        transform 320ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
        border-color 320ms ease,
        box-shadow 320ms ease;
}

.review-card:hover {
    transform: translateY(-3px);
    border-color: rgba(69, 244, 255, 0.4);
    box-shadow:
        0 1px 0 0 rgba(255, 255, 255, 0.05) inset,
        0 0 0 1px rgba(69, 244, 255, 0.15),
        0 18px 40px rgba(0, 0, 0, 0.5);
}

.review-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.review-card-header picture {
    display: inline-block;
    line-height: 0;
    flex-shrink: 0;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(69, 244, 255, 0.35);
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.08);
    display: block;
    flex-shrink: 0;
}

.review-identity {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    min-width: 0;
}

.review-handle {
    color: var(--text-primary);
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.review-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    color: var(--text-muted);
    transition: color 200ms ease, transform 200ms ease;
    flex-shrink: 0;
}

.review-social-link:hover {
    color: var(--cyan);
    transform: scale(1.15);
}

.review-social-link svg {
    width: 13px;
    height: 13px;
    fill: currentColor;
}

.review-stars {
    color: var(--yellow);
    font-size: 1rem;
    letter-spacing: 2px;
    line-height: 1;
}

.review-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.6;
    letter-spacing: 0.005em;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

/* View All Testimonials Link */
.testimonials-link-wrapper {
    text-align: center;
    margin-top: 2.5rem;
}

.testimonials-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.testimonials-view-all svg {
    transition: transform 0.3s ease;
}

.testimonials-view-all:hover svg {
    transform: translateX(4px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .review-card {
        width: 280px;
        padding: 1.25rem;
        gap: 0.75rem;
    }

    .review-text {
        font-size: 0.9rem;
        -webkit-line-clamp: 7;
    }

    .review-handle {
        font-size: 0.9rem;
    }

    .marquee-track {
        animation-duration: 55s;
    }
}

@media (max-width: 480px) {
    .review-card {
        width: 260px;
        padding: 1.1rem;
    }

    .review-avatar {
        width: 42px;
        height: 42px;
    }
}

/* ===================================
   Syllabus Section
   =================================== */
.syllabus-section {
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.syllabus-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(168, 85, 247, 0.03) 2px, transparent 2px),
        linear-gradient(90deg, rgba(168, 85, 247, 0.03) 2px, transparent 2px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

.syllabus-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
    text-transform: none;
    position: relative;
    z-index: 1;
}

/* Part Sections */
.syllabus-part {
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.part-header {
    text-align: center;
    margin-bottom: 3rem;
}

.part-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--purple) 0%, var(--pink) 100%);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 2rem;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.2em;
    margin-bottom: 0.1rem;
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.4);
    animation: pulse 3s ease-in-out infinite;
}

.part-label.advanced {
    background: linear-gradient(135deg, var(--cyan) 0%, var(--purple) 100%);
    box-shadow: 0 4px 20px rgba(69, 244, 255, 0.4);
}

.part-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 0.1rem;
}

.advanced-title {
    background-image: linear-gradient(135deg, var(--cyan) 0%, var(--purple) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Modern Syllabus Grid */
.syllabus-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(30, 30, 46, 0.9) 0%, rgba(22, 22, 34, 0.95) 100%);
    border: 2px solid var(--border-color);
    border-radius: 1.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* 🎨 BENTO GRID LAYOUT FOR 7-ITEM GUEST LECTURES
   Asymmetric grid with featured items for visual interest - no gaps */
.bonus-lecture-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-template-rows: auto auto auto;
    gap: 1.25rem;
}

/* Row 1: First item featured (spans 4 cols), items 2-3 share remaining 6 cols EQUALLY (3 each) */
.bonus-lecture-grid > .guest-lecture-item:nth-child(1) {
    grid-column: 1 / 5; /* columns 1-4 */
    grid-row: span 2;
    min-height: 200px;
}

/* Items 2 & 3 are EQUAL width (3 columns each) */
.bonus-lecture-grid > .guest-lecture-item:nth-child(2) {
    grid-column: 5 / 8; /* columns 5-7 (3 cols) */
}

.bonus-lecture-grid > .guest-lecture-item:nth-child(3) {
    grid-column: 8 / 11; /* columns 8-10 (3 cols) - EQUAL to item 2 */
}

/* Row 2: Items 4-5 - EQUAL to items 2-3 */
.bonus-lecture-grid > .guest-lecture-item:nth-child(4) {
    grid-column: 5 / 8; /* same width as item 2 */
}

.bonus-lecture-grid > .guest-lecture-item:nth-child(5) {
    grid-column: 8 / 11; /* same width as item 3 */
}

/* Row 3: Items 6-7 span full width evenly - Pashov's lectures */
.bonus-lecture-grid > .guest-lecture-item:nth-child(6) {
    grid-column: span 5;
}

.bonus-lecture-grid > .guest-lecture-item:nth-child(7) {
    grid-column: span 5;
}

/* Bottom row gets subtle top border accent */
.bonus-lecture-grid > .guest-lecture-item:nth-child(6),
.bonus-lecture-grid > .guest-lecture-item:nth-child(7) {
    border-top: 3px solid rgba(251, 191, 36, 0.25);
}

/* Featured item (1st) gets special treatment - vertical card layout */
.bonus-lecture-grid > .guest-lecture-item:nth-child(1) {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 2.5rem 1.5rem 1.5rem 1.5rem;
    background: linear-gradient(
        145deg,
        rgba(50, 40, 20, 0.95) 0%,
        rgba(40, 30, 15, 0.98) 50%,
        rgba(35, 25, 10, 0.95) 100%
    );
    border-width: 2px;
    border-color: rgba(251, 191, 36, 0.5);
}

/* Decorative corner accent for featured item */
.bonus-lecture-grid > .guest-lecture-item:nth-child(1)::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(
        135deg,
        transparent 50%,
        rgba(251, 191, 36, 0.12) 50%
    );
    pointer-events: none;
}

.bonus-lecture-grid > .guest-lecture-item:nth-child(1) .item-number {
    position: absolute;
    bottom: 1rem;
    left: 1.5rem;
    font-size: 1.875rem;
    font-weight: 800;
    min-width: 0;
    background-image: linear-gradient(135deg, var(--yellow) 0%, #ec4899 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bonus-lecture-grid > .guest-lecture-item:nth-child(1) .item-title {
    font-size: 1.35rem;
    padding-right: 0;
    line-height: 1.4;
}

.bonus-lecture-grid > .guest-lecture-item:nth-child(1) .lecturer-avatar {
    width: 44px;
    height: 44px;
    bottom: 1rem;
    right: 1rem;
    border-width: 2px;
}

/* Featured item attribution - same position as avatar, shows on hover */
.bonus-lecture-grid > .guest-lecture-item:nth-child(1) .lecturer-attribution {
    bottom: 1rem;
    right: 1rem;
    font-size: 0.75rem;
    padding: 0.4rem 0.7rem;
}

/* Tablet: 6-column simplified grid */
@media (max-width: 1100px) {
    .bonus-lecture-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 1rem;
    }

    /* Reset featured item to regular horizontal layout */
    .bonus-lecture-grid > .guest-lecture-item:nth-child(1) {
        grid-column: span 6;
        grid-row: span 1;
        min-height: auto;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        padding: 1.75rem 1rem 2rem 1rem;
    }

    .bonus-lecture-grid > .guest-lecture-item:nth-child(1) .item-number {
        font-size: 1.75rem;
        position: relative;
        top: auto;
        left: auto;
        opacity: 1;
        min-width: 50px;
    }

    .bonus-lecture-grid > .guest-lecture-item:nth-child(1) .item-title {
        font-size: 1rem;
        margin-top: 0;
    }

    .bonus-lecture-grid > .guest-lecture-item:nth-child(1) .lecturer-avatar {
        width: 32px;
        height: 32px;
        bottom: 0.6rem;
        right: 0.6rem;
    }

    .bonus-lecture-grid > .guest-lecture-item:nth-child(1) .lecturer-attribution {
        bottom: 0.6rem;
        right: 0.6rem;
    }

    .bonus-lecture-grid > .guest-lecture-item:nth-child(2),
    .bonus-lecture-grid > .guest-lecture-item:nth-child(3),
    .bonus-lecture-grid > .guest-lecture-item:nth-child(4),
    .bonus-lecture-grid > .guest-lecture-item:nth-child(5) {
        grid-column: span 3;
    }

    .bonus-lecture-grid > .guest-lecture-item:nth-child(6),
    .bonus-lecture-grid > .guest-lecture-item:nth-child(7) {
        grid-column: span 3;
    }
}

/* Small tablet / large mobile */
@media (max-width: 768px) {
    .bonus-lecture-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bonus-lecture-grid > .guest-lecture-item:nth-child(1),
    .bonus-lecture-grid > .guest-lecture-item:nth-child(2),
    .bonus-lecture-grid > .guest-lecture-item:nth-child(3),
    .bonus-lecture-grid > .guest-lecture-item:nth-child(4),
    .bonus-lecture-grid > .guest-lecture-item:nth-child(5),
    .bonus-lecture-grid > .guest-lecture-item:nth-child(6) {
        grid-column: span 1;
    }

    /* Last item spans full width */
    .bonus-lecture-grid > .guest-lecture-item:nth-child(7) {
        grid-column: span 2;
    }
}

/* Mobile: Single column */
@media (max-width: 480px) {
    .syllabus-grid-modern {
        padding: 1.5rem;
    }

    .bonus-lecture-grid {
        grid-template-columns: 1fr;
    }

    .bonus-lecture-grid > .guest-lecture-item:nth-child(1),
    .bonus-lecture-grid > .guest-lecture-item:nth-child(2),
    .bonus-lecture-grid > .guest-lecture-item:nth-child(3),
    .bonus-lecture-grid > .guest-lecture-item:nth-child(4),
    .bonus-lecture-grid > .guest-lecture-item:nth-child(5),
    .bonus-lecture-grid > .guest-lecture-item:nth-child(6),
    .bonus-lecture-grid > .guest-lecture-item:nth-child(7) {
        grid-column: span 1;
    }
}

@media (max-width: 968px) {
    .syllabus-grid-modern {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
}

.syllabus-grid-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(168, 85, 247, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(168, 85, 247, 0.08) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    animation: gridMove 20s linear infinite;
}

.syllabus-part--advanced .syllabus-grid-modern {
    border-color: var(--border-color-cyan);
    background: linear-gradient(135deg, rgba(20, 34, 40, 0.95) 0%, rgba(16, 24, 36, 0.98) 100%);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35), 0 0 35px rgba(69, 244, 255, 0.12);
}

.syllabus-part--advanced .syllabus-grid-modern::before {
    background-image:
        linear-gradient(rgba(69, 244, 255, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(69, 244, 255, 0.12) 1px, transparent 1px);
}

.syllabus-part--advanced .syllabus-item-modern {
    border-color: var(--border-color-cyan);
    border-left-color: var(--cyan);
}

.syllabus-part--advanced .syllabus-item-modern:hover {
    border-left-color: var(--cyan-light);
}

.syllabus-part--advanced .item-number {
    background-image: linear-gradient(135deg, var(--cyan) 0%, var(--purple) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes gridMove {
    0% {
        transform: perspective(500px) rotateX(60deg) translateY(0);
    }
    100% {
        transform: perspective(500px) rotateX(60deg) translateY(30px);
    }
}

.syllabus-item-modern {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.2rem 1.5rem;
    background: rgba(30, 30, 46, 0.8);
    border: 2px solid var(--border-color);
    border-left: 4px solid var(--purple);
    border-radius: 1rem;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.syllabus-item-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.1), transparent);
    transition: left 0.5s;
}

.syllabus-item-modern:hover::before {
    left: 100%;
}

.syllabus-item-modern:hover {
    border-color: var(--cyan);
    border-left-color: var(--cyan);
    background: rgba(69, 244, 255, 0.08);
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 8px 30px rgba(69, 244, 255, 0.3),
                inset 0 0 20px rgba(69, 244, 255, 0.1);
}

.item-number {
    font-size: 2.5rem;
    font-weight: 800;
    background-image: linear-gradient(135deg, var(--purple) 0%, var(--cyan) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    min-width: 70px;
    text-align: center;
    font-family: var(--font-display);
}

.item-title {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.02em;
}

.syllabus-item-modern:hover .item-title {
    color: var(--cyan);
}

/* Syllabus item title links (inline anchor around item-title) */
.item-title-link {
    text-decoration: none;
    color: inherit;
    flex: 1;
    transition: color var(--transition-fast);
}

.item-title-link .item-title {
    position: relative;
}

.item-title-link .item-title::after {
    content: '→';
    position: absolute;
    right: -1.5rem;
    opacity: 0;
    transform: translateX(-5px);
    transition: all var(--transition-fast);
    color: var(--cyan);
}

.item-title-link:hover .item-title {
    color: var(--cyan);
}

.item-title-link:hover .item-title::after {
    opacity: 1;
    transform: translateX(0);
}

/* Syllabus items that link to attack pages */
a.syllabus-item-link {
    text-decoration: none;
}

a.syllabus-item-link .item-link-icon {
    font-size: 1.25rem;
    color: var(--text-muted);
    opacity: 0;
    transform: translateX(-10px);
    transition: all var(--transition-medium);
    margin-left: auto;
}

a.syllabus-item-link:hover .item-link-icon {
    opacity: 1;
    transform: translateX(0);
    color: var(--cyan);
}

a.syllabus-item-link:hover {
    border-color: var(--cyan);
    border-left-color: var(--cyan);
    background: rgba(69, 244, 255, 0.12);
}

/* ===================================
   Bonus Guest Lectures (Syllabus-Style)
   Premium golden theme with lecturer avatars
   =================================== */

/* Section container with golden accent */
.syllabus-part--guest-lectures {
    margin-top: 4rem;
    position: relative;
}

.syllabus-part--guest-lectures .part-header {
    margin-bottom: 2.5rem;
}

.syllabus-part--guest-lectures .part-label.bonus {
    background: linear-gradient(135deg, var(--yellow) 0%, #fcd34d 100%);
    color: var(--darker-bg);
    border-color: var(--yellow);
    box-shadow: 0 0 25px rgba(251, 191, 36, 0.4);
}

.syllabus-part--guest-lectures .part-title.bonus-title {
    background-image: linear-gradient(135deg, var(--yellow) 0%, #fcd34d 50%, #ec4899 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.syllabus-part--guest-lectures .part-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.syllabus-part--guest-lectures .syllabus-grid-modern {
    border-color: rgba(251, 191, 36, 0.2);
    background: linear-gradient(135deg, rgba(40, 30, 10, 0.95) 0%, rgba(36, 24, 16, 0.98) 100%);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4), 0 0 40px rgba(251, 191, 36, 0.15);
    position: relative;
    overflow: hidden;
}

/* Animated golden grid background */
.syllabus-part--guest-lectures .syllabus-grid-modern::before {
    background-image:
        linear-gradient(rgba(251, 191, 36, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(251, 191, 36, 0.12) 1px, transparent 1px);
}


/* Individual guest lecture items */
.guest-lecture-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1rem;
    padding-right: 3rem; /* Space for avatar + label on right */
    padding-bottom: 1.25rem;
    background: linear-gradient(135deg, rgba(30, 30, 46, 0.9) 0%, rgba(40, 30, 20, 0.9) 100%);
    border: 2px solid rgba(251, 191, 36, 0.3);
    border-left: 4px solid var(--yellow);
    border-radius: 1rem;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3),
                inset 0 0 20px rgba(251, 191, 36, 0.05);
}

/* Animated gradient border effect on hover */
.guest-lecture-item::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(
        90deg,
        var(--yellow),
        #ec4899,
        var(--cyan),
        var(--yellow)
    );
    border-radius: 1rem;
    opacity: 0;
    z-index: -1;
    background-size: 300% 300%;
    animation: gradientFlow 4s linear infinite;
    transition: opacity var(--transition-medium);
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.guest-lecture-item:hover::before {
    opacity: 1;
}

/* Shine effect sweep on hover */
.guest-lecture-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(251, 191, 36, 0.2),
        transparent
    );
    transition: left 0.6s ease;
}

.guest-lecture-item:hover::after {
    left: 100%;
}

/* Hover state with golden glow */
.guest-lecture-item:hover {
    border-color: var(--yellow);
    border-left-color: #fcd34d;
    background: linear-gradient(135deg, rgba(40, 30, 20, 0.95) 0%, rgba(50, 40, 20, 0.95) 100%);
    transform: translateX(12px) scale(1.025);
    box-shadow: 0 8px 35px rgba(251, 191, 36, 0.5),
                0 0 50px rgba(251, 191, 36, 0.3),
                inset 0 0 30px rgba(251, 191, 36, 0.1);
}

/* Bonus badge/number */
.guest-lecture-item .item-number,
.guest-lecture-item .bonus-number {
    font-size: 2rem;
    font-weight: 800;
    background-image: linear-gradient(135deg, var(--yellow) 0%, #fcd34d 50%, #ec4899 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    min-width: 60px;
    text-align: center;
    font-family: var(--font-display);
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.guest-lecture-item .number-prefix {
    font-size: 0.7em;
    opacity: 0.8;
}

/* Lecture title styling */
.guest-lecture-item .item-title {
    flex: 1;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.02em;
    padding-right: 0;
    line-height: 1.35;
    transition: color var(--transition-fast);
}

.guest-lecture-item:hover .item-title {
    color: #fcd34d;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.4);
}

/* Lecturer attribution - hidden by default, shows on hover replacing avatar */
.lecturer-attribution {
    position: absolute;
    bottom: 0.6rem;
    right: 0.6rem;
    font-size: 0.5rem;
    font-weight: 600;
    color: var(--yellow);
    background: rgba(20, 15, 5, 0.95);
    backdrop-filter: blur(8px);
    padding: 0.15rem 0.35rem;
    border-radius: 0.35rem;
    border: 1px solid rgba(251, 191, 36, 0.6);
    font-style: italic;
    letter-spacing: 0.02em;
    z-index: 15;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: scale(0.8);
    transition: all var(--transition-medium);
}

/* Show label on hover - ONLY on devices with true hover capability (desktop) */
@media (hover: hover) and (pointer: fine) {
    .guest-lecture-item:hover .lecturer-attribution {
        opacity: 1;
        transform: scale(1);
    }
}

/* Lecturer avatar positioned bottom-right - bigger size */
.lecturer-avatar {
    position: absolute;
    bottom: 0.6rem;
    right: 0.6rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(251, 191, 36, 0.5);
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.3),
                inset 0 0 8px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-medium);
    z-index: 10;
}

/* Hide avatar on hover, replaced by label - ONLY on devices with true hover capability (desktop) */
@media (hover: hover) and (pointer: fine) {
    .guest-lecture-item:hover .lecturer-avatar {
        opacity: 0;
        transform: scale(0.8);
    }
}

/* Responsive adjustments for guest lectures - item styling only */
@media (max-width: 768px) {
    .guest-lecture-item {
        padding: 1.75rem 1rem 2rem 1rem;
    }

    .guest-lecture-item .item-number {
        font-size: 1.5rem;
        min-width: 45px;
    }

    .guest-lecture-item .item-title {
        font-size: 0.95rem;
    }

    .lecturer-avatar {
        width: 30px;
        height: 30px;
        bottom: 0.5rem;
        right: 0.5rem;
    }

    .lecturer-attribution {
        font-size: 0.55rem;
        padding: 0.25rem 0.4rem;
        bottom: 0.5rem;
        right: 0.5rem;
    }
}

@media (max-width: 480px) {
    .guest-lecture-item {
        gap: 0.75rem;
        padding: 1rem 0.75rem;
        padding-right: 2.5rem;
    }

    .guest-lecture-item .item-number {
        font-size: 1.35rem;
        min-width: 40px;
    }

    .guest-lecture-item .item-title {
        font-size: 0.85rem;
    }

    .lecturer-avatar {
        width: 26px;
        height: 26px;
        bottom: 0.4rem;
        right: 0.4rem;
    }

    .lecturer-attribution {
        font-size: 0.5rem;
        padding: 0.2rem 0.35rem;
        bottom: 0.4rem;
        right: 0.4rem;
    }
}

/* Guest Lectures Section */
.guest-lectures-section {
    margin-top: 5rem;
    padding-top: 4rem;
    border-top: 2px solid var(--border-color);
    position: relative;
    z-index: 1;
}

.guest-lectures-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: var(--accent-primary);
    margin-bottom: 3rem;
    letter-spacing: 0.02em;
    text-transform: none;
}

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

.lecture-card {
    text-align: center;
    padding: 0;
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 1rem;
    transition: var(--transition-medium);
    overflow: hidden;
    position: relative;
}

.lecture-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.lecture-card:hover::after {
    opacity: 1;
}

.lecture-card:hover {
    border-color: var(--yellow);
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.4);
    transform: translateY(-10px) scale(1.02);
}

.lecture-image-wrapper {
    width: 100%;
    overflow: hidden;
    transition: var(--transition-medium);
    position: relative;
    z-index: 1;
}

.lecture-image {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-medium);
}

.lecture-card:hover .lecture-image {
    transform: scale(1.1);
}

/* Responsive adjustments for syllabus */
@media (max-width: 968px) {
    .part-label {
        font-size: 0.875rem;
        padding: 0.6rem 1.5rem;
    }

    .part-title {
        font-size: 2.25rem;
    }

    .syllabus-main-title {
        font-size: 2.75rem;
    }
}

@media (max-width: 768px) {
    .syllabus-main-title {
        font-size: 2.25rem;
    }

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

@media (max-width: 480px) {
    .item-number {
        font-size: 1.75rem;
        min-width: 55px;
    }

    .item-title {
        font-size: 0.95rem;
    }

    .syllabus-item-modern {
        gap: 1rem;
        padding: 1.25rem 1rem;
    }

    .guest-lectures {
        grid-template-columns: 1fr;
    }

    .syllabus-main-title {
        font-size: 1.75rem;
    }

    .part-title {
        font-size: 1.75rem;
    }
}

/* ===================================
   Overview Section
   =================================== */
.overview-section {
    background: var(--darker-bg);
}

.video-container {
    max-width: 800px;
    margin: 2rem auto;
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 1rem;
    overflow: hidden;
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-medium);
}

.video-container:hover {
    border-color: var(--cyan);
    box-shadow: var(--shadow-neon-cyan);
}

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

.video-placeholder {
    aspect-ratio: 16/9;
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    position: relative;
    cursor: pointer;
    transition: var(--transition-medium);
}

.video-placeholder:hover {
    border-color: var(--cyan);
    box-shadow: var(--shadow-neon-cyan);
}

.play-button {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--purple) 0%, var(--cyan) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: var(--transition-medium);
}

.video-placeholder:hover .play-button {
    transform: scale(1.1);
}

.video-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
}

.video-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: #10b981;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 700;
    transform: rotate(10deg);
    box-shadow: var(--shadow-md);
}

/* ===================================
   FAQ Section
   =================================== */
.faq-section {
    background: var(--dark-bg);
}

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

.faq-item {
    margin-bottom: 1.25rem;
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 1rem;
    overflow: hidden;
    transition: var(--transition-medium);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.faq-item:hover {
    border-color: var(--cyan);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.faq-question:focus-visible {
    outline: 3px solid rgba(69, 244, 255, 0.6);
    outline-offset: 3px;
    border-radius: 0.85rem;
    box-shadow: 0 0 0 4px rgba(69, 244, 255, 0.15);
}

.faq-question:hover {
    color: var(--cyan);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--cyan);
    transition: transform var(--transition-medium);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px);
    transition: max-height 0.35s ease, opacity 0.25s ease, transform 0.35s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
}

.faq-answer > * {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.faq-answer ul {
    list-style: disc;
    margin-left: 2rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

@media (prefers-reduced-motion: reduce) {
    .reveal-section .stagger-item,
    .success-slide,
    .faq-answer,
    .time-value.is-ticking {
        transition: none;
        animation: none;
        transform: none;
    }
}

/* ===================================
   Contact Section
   =================================== */
.contact-section {
    background: var(--darker-bg);
}

.contact-form {
    max-width: 600px;
    margin: 2rem auto 0;
}

/* ===================================
   Footer - Mega Footer
   =================================== */
.footer-mega {
    background: var(--darker-bg);
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

/* Ambient background orbs */
.footer-mega::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 600px 400px at 10% 20%, rgba(168, 85, 247, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 500px 350px at 90% 80%, rgba(69, 244, 255, 0.05) 0%, transparent 70%),
        radial-gradient(ellipse 400px 300px at 50% 50%, rgba(168, 85, 247, 0.03) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.footer-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(168, 85, 247, 0.25) 5%,
        var(--accent-secondary) 20%,
        var(--accent-primary) 50%,
        var(--accent-secondary) 80%,
        rgba(168, 85, 247, 0.25) 95%,
        transparent 100%
    );
    z-index: 1;
}

.footer-glow::after {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 120px;
    background: linear-gradient(180deg,
        rgba(69, 244, 255, 0.08) 0%,
        rgba(168, 85, 247, 0.03) 50%,
        transparent 100%
    );
    pointer-events: none;
    filter: blur(4px);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(5, 1fr);
    gap: 3rem;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 1;
}

/* Brand Column */
.footer-brand {
    max-width: 340px;
    position: relative;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.875rem;
    margin-bottom: 1.25rem;
    transition: var(--transition-medium);
    padding: 0.5rem 1rem 0.5rem 0.5rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
}

.footer-logo:hover {
    background: rgba(168, 85, 247, 0.08);
    border-color: var(--accent-primary-soft);
    transform: translateY(-2px);
}

.footer-logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--accent-gradient);
    border-radius: 12px;
    flex-shrink: 0;
}

.footer-logo-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.footer-avatar {
    position: relative;
    flex-shrink: 0;
}

.footer-avatar::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: var(--accent-gradient);
    border-radius: 50%;
    z-index: 0;
    opacity: 0.9;
}

.footer-avatar::after {
    content: '';
    position: absolute;
    inset: -8px;
    background: var(--accent-gradient);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.25;
    filter: blur(8px);
}

.footer-avatar img {
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    z-index: 1;
    border: 3px solid var(--darker-bg);
}

.footer-logo-text {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

.footer-tagline {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--text-muted);
    margin-bottom: 1.75rem;
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 0.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: var(--text-secondary);
    transition: all var(--transition-medium);
    position: relative;
}

.social-link::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 13px;
    background: var(--accent-gradient);
    opacity: 0;
    z-index: -1;
    transition: opacity var(--transition-medium);
}

.social-link svg {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-fast);
}

.social-link:hover {
    background: rgba(69, 244, 255, 0.15);
    border-color: var(--accent-secondary);
    color: var(--accent-secondary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(69, 244, 255, 0.2);
}

.social-link:hover::before {
    opacity: 0.15;
}

.social-link:hover svg {
    transform: scale(1.1);
}

/* Link Columns */
.footer-column {
    min-width: 0;
}

.footer-column-title {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.875rem;
    display: inline-block;
}

.footer-column-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--accent-gradient);
    border-radius: 1px;
    transition: width var(--transition-medium);
}

.footer-column:hover .footer-column-title::after {
    width: 100%;
}

.footer-column-title-link {
    color: inherit;
    text-decoration: none;
    transition: all var(--transition-fast);
    position: relative;
}

.footer-column-title-link:hover {
    color: var(--accent-secondary);
    text-shadow: 0 0 20px rgba(69, 244, 255, 0.4);
}

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

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

.footer-links-list li:last-child {
    margin-bottom: 0;
}

.footer-links-list a {
    font-size: 0.875rem;
    color: var(--text-muted);
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    position: relative;
    padding: 0.25rem 0;
}

.footer-links-list a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--accent-secondary), var(--accent-primary));
    transition: width var(--transition-medium);
}

.footer-links-list a:hover {
    color: var(--accent-secondary);
    transform: translateX(5px);
}

.footer-links-list a:hover::before {
    width: 100%;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 1;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg,
        transparent,
        var(--accent-primary-soft) 30%,
        var(--accent-secondary-soft) 70%,
        transparent
    );
}

.footer-copyright {
    font-size: 0.8125rem;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

.footer-built {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-style: italic;
    background-image: linear-gradient(90deg, var(--text-muted), var(--accent-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.85;
}

/* Footer Responsive */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1.4fr repeat(5, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 2rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
        text-align: center;
        margin-bottom: 1rem;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-tagline {
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-column-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

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

    .footer-column:hover .footer-column-title::after {
        width: 60%;
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links-list a::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links-list a:hover {
        transform: translateX(0) translateY(-2px);
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem 2rem;
    }
}

@media (max-width: 640px) {
    .footer-mega {
        padding: 3.5rem 0 1.5rem;
    }

    .footer-mega::before {
        background:
            radial-gradient(ellipse 300px 200px at 10% 10%, rgba(168, 85, 247, 0.08) 0%, transparent 70%),
            radial-gradient(ellipse 250px 180px at 90% 90%, rgba(69, 244, 255, 0.06) 0%, transparent 70%);
    }

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

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

    .footer-bottom::before {
        width: 120px;
    }

    .social-link {
        width: 44px;
        height: 44px;
    }
}

/* Legacy footer support (keep for backward compatibility) */
.footer {
    background: var(--darker-bg);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-links a {
    color: var(--text-muted);
    transition: var(--transition-fast);
}

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

.separator {
    color: var(--text-muted);
}

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

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
    }
    50% {
        box-shadow: 0 0 40px rgba(69, 244, 255, 0.8);
    }
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* ===================================
   Responsive Design - General
   =================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 1280px) {
    .container {
        max-width: 1100px;
    }
}

@media (max-width: 1024px) {
    .container {
        max-width: 960px;
        padding: 0 1.75rem;
    }
}

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

    .section {
        padding: 4rem 0;
    }

    .section-border-top {
        padding: 3.5rem 0;
    }

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

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

    /* Mobile Navbar - Glass Style */
    .navbar {
        padding: 1rem;
    }

    .navbar-pill,
    .navbar-glass {
        display: none;
    }

    .navbar-logo {
        display: none;
    }

    /* Hide desktop menu, show mobile menu */
    .nav-menu-desktop {
        display: none !important;
    }

    .nav-menu-mobile {
        display: flex;
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: linear-gradient(
            135deg,
            rgba(60, 50, 120, 0.95) 0%,
            rgba(40, 50, 100, 0.95) 50%,
            rgba(30, 40, 90, 0.95) 100%
        );
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: safe center;
        align-items: center;
        padding: 4rem 2rem 2rem;
        transition: left var(--transition-medium);
        gap: 1rem;
        pointer-events: auto;
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-menu-mobile.active {
        left: 0;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    }

    .nav-menu-mobile a {
        flex-direction: row;
        font-size: 1.05rem;
        color: rgba(255, 255, 255, 0.7);
        gap: 0.75rem;
        padding: 0.75rem 1.5rem;
        border-radius: 12px;
        text-transform: none;
    }

    .nav-menu-mobile a .nav-icon {
        width: 24px;
        height: 24px;
    }

    .nav-menu-mobile a:hover {
        color: white;
        background: rgba(255, 255, 255, 0.1);
    }

    .nav-menu-mobile .nav-cta,
    .nav-menu-mobile .cta-link {
        font-size: 1rem !important;
        padding: 1rem 2rem !important;
        margin-left: 0 !important;
        margin-top: 1rem;
        flex-direction: row !important;
        gap: 0.75rem !important;
    }

    /* Mobile Dropdown Menu */
    .nav-dropdown-mobile {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .nav-dropdown-trigger-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        width: 100%;
        cursor: pointer;
        color: rgba(255, 255, 255, 0.7) !important;
    }

    .nav-dropdown-trigger-mobile:hover {
        color: rgba(255, 255, 255, 1) !important;
    }

    .nav-dropdown-arrow-mobile {
        width: 16px;
        height: 16px;
        transition: transform 0.3s ease;
        opacity: 1;
    }

    .nav-dropdown-mobile.active .nav-dropdown-arrow-mobile {
        transform: rotate(180deg);
        opacity: 1;
    }

    .nav-dropdown-submenu-mobile {
        display: none;
        flex-direction: column;
        width: 100%;
        padding: 0.5rem 0;
        margin-top: 0.5rem;
        background: rgba(0, 0, 0, 0.2);
        border-radius: 12px;
        overflow: hidden;
        animation: slideDown 0.3s ease;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-dropdown-mobile.active .nav-dropdown-submenu-mobile {
        display: flex;
    }

    .nav-dropdown-subitem-mobile {
        display: flex !important;
        align-items: center;
        gap: 0.75rem;
        padding: 0.875rem 1.5rem !important;
        font-size: 1rem !important;
        color: rgba(255, 255, 255, 0.8) !important;
        transition: all 0.25s ease;
        border-left: 3px solid transparent;
    }

    .nav-dropdown-subitem-mobile:hover {
        background: rgba(69, 244, 255, 0.1) !important;
        color: var(--cyan) !important;
        border-left-color: var(--cyan);
    }

    .nav-dropdown-subitem-mobile.nav-dropdown-item-disabled {
        pointer-events: none;
        opacity: 0.4;
    }

    .nav-dropdown-subitem-mobile.nav-dropdown-item-disabled .coming-soon-badge {
        opacity: 1;
        font-size: 0.6rem;
    }

    .nav-dropdown-subitem-mobile .nav-icon {
        width: 20px !important;
        height: 20px !important;
        stroke: var(--cyan);
    }

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

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .section {
        padding: 5rem 0;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .timer-display {
        gap: 0.5rem;
    }

    .timer-unit {
        min-width: 70px;
        padding: 1rem 0.5rem;
    }

    .timer-value {
        font-size: 2rem;
    }

    .section {
        padding: 4rem 0;
    }

    .success-content.reverse {
        direction: ltr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }

    .section {
        padding: 2.5rem 0;
    }

    .section-border-top {
        padding: 2.5rem 0;
    }

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

    .section-title {
        font-size: 1.85rem;
    }

    .salary-amount {
        font-size: 2rem;
    }

    .new-price {
        font-size: 2rem;
    }

    .timer-separator {
        display: none;
    }

    .guest-lectures {
        grid-template-columns: 1fr;
    }

    .expert-avatar-img {
        width: 100px;
        height: 100px;
    }

    .testimonial-avatar-img {
        width: 80px;
        height: 80px;
    }

    .success-image-card,
    .certification-image-card,
    .course-image-card,
    .community-image-card,
    .money-image-container {
        max-width: 100%;
    }

    .btn {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }
}

/* ===================================
   Print Styles
   =================================== */
@media print {
    .navbar,
    .scroll-indicator,
    .mobile-menu-toggle {
        display: none;
    }

    .section {
        page-break-inside: avoid;
    }
}

/* ===================================
   Popup Modal Styles
   =================================== */
.popup-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup-modal.active {
    opacity: 1;
    visibility: visible;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.popup-content {
    position: relative;
    background: linear-gradient(135deg, #2d2d44 0%, #1e1e2e 100%);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 40px rgba(168, 85, 247, 0.2);
    border: 1px solid rgba(168, 85, 247, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    z-index: 10001;
}

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

.popup-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    font-size: 24px;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.popup-close:hover {
    background: rgba(236, 72, 153, 0.2);
    border-color: var(--pink);
    color: var(--pink);
    transform: rotate(90deg);
}

.popup-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: #FFB366;
    margin-bottom: 1rem;
    text-align: center;
    line-height: 1.2;
}

.popup-description {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 2rem;
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.popup-form-group {
    width: 100%;
}

.popup-form-group input,
.popup-form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(124, 110, 255, 0.3);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
}

.popup-form-group input::placeholder,
.popup-form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.popup-form-group input:focus,
.popup-form-group textarea:focus {
    outline: none;
    border-color: var(--purple);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.1);
}

.popup-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.popup-submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #7C6EFF 0%, #A78BFA 100%);
    color: white;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    box-shadow: 0 4px 15px rgba(124, 110, 255, 0.3);
}

.popup-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 110, 255, 0.4);
}

.popup-submit-btn:active {
    transform: translateY(0);
}

.popup-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Scrollbar styling for popup content */
.popup-content::-webkit-scrollbar {
    width: 8px;
}

.popup-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.popup-content::-webkit-scrollbar-thumb {
    background: var(--purple);
    border-radius: 10px;
}

.popup-content::-webkit-scrollbar-thumb:hover {
    background: var(--neon-purple);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .popup-content {
        padding: 2rem 1.5rem;
        max-width: 95%;
    }

    .popup-title {
        font-size: 1.5rem;
    }

    .popup-description {
        font-size: 0.9rem;
    }

    .popup-close {
        width: 36px;
        height: 36px;
        font-size: 20px;
        top: 1rem;
        right: 1rem;
    }
}

/* ===================================
   Extracted Styles
   =================================== */

/* General Section Styles */
.section-border-top {
    padding: 5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Anti-spam honeypot fields - Hidden from real users, visible to bots */
.hidden-input,
.honeypot-field {
    display: none !important;
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
    tab-index: -1 !important;
}

/* Bug Bounties */
.bounty-source-container {
    margin-top: 1rem;
    text-align: center;
}

.bounty-source-link {
    color: var(--text-muted);
    font-size: 0.75rem;
    text-decoration: none;
    opacity: 0.6;
    transition: opacity 0.3s;
}

/* Pricing Section */
.pricing-title-small {
    margin-bottom: 0.25rem;
}

.pricing-subtitle-small {
    margin-bottom: 0.35rem;
}

.pricing-value-badge {
    margin: 0.35rem 0;
    padding: 0.35rem 0.75rem;
    background: rgba(255, 193, 7, 0.15);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 0.5rem;
    text-align: center;
}

.pricing-value-text {
    color: var(--yellow);
    font-weight: 700;
    font-size: 0.8rem;
}

.pricing-benefits-list {
    gap: 0;
    margin-top: 0.35rem;
}

.pricing-cta-box-inner {
    padding-bottom: 20px;
}

.pricing-price-container {
    text-align: center;
}

.pricing-price-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.pricing-price-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 0.5rem;
}

.pricing-old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.3rem;
    font-weight: 600;
    opacity: 0.5;
    letter-spacing: -0.02em;
}

.pricing-new-price {
    font-size: 2.8rem;
    font-weight: 800;
    background-image: linear-gradient(135deg, var(--purple) 0%, var(--cyan) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    letter-spacing: -0.03em;
    text-shadow: 0 0 30px rgba(168, 85, 247, 0.3);
}

.pricing-price-meta {
    margin-top: 0.5rem;
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
}

.pricing-save-badge {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #000;
    padding: 0.6rem 1.5rem;
    border-radius: 2rem;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 24px rgba(251, 191, 36, 0.5),
                0 0 0 2px rgba(251, 191, 36, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: pulse 2s ease-in-out infinite;
    text-transform: uppercase;
}

.value-banner {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.12) 0%, rgba(69, 244, 255, 0.08) 100%);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(168, 85, 247, 0.2);
    flex-wrap: wrap;
    gap: 1rem;
}

.value-tag {
    background: linear-gradient(135deg, var(--yellow) 0%, #f59e0b 100%);
    color: var(--darker-bg);
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-weight: 800;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    text-transform: none;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

/* Privacy Policy & Terms of Service */
.policy-hero, .terms-hero {
    padding: 8rem 0;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(69, 244, 255, 0.05) 100%);
    border-bottom: 1px solid rgba(69, 244, 255, 0.2);
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.policy-hero-content, .terms-hero-content {
    text-align: center;
}

.policy-hero h1, .terms-hero h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background-image: linear-gradient(135deg, var(--cyan) 0%, var(--purple) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-display);
    letter-spacing: -0.02em;
}

.policy-hero p, .terms-hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.policy-section, .terms-section {
    padding: 7rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.policy-content, .terms-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-item, .terms-item {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(30, 30, 46, 0.5);
    border: 1px solid rgba(69, 244, 255, 0.2);
    border-radius: 0.75rem;
    transition: all var(--transition-medium);
}

.policy-item:hover, .terms-item:hover {
    background: rgba(30, 30, 46, 0.8);
    border-color: rgba(69, 244, 255, 0.4);
    box-shadow: 0 0 20px rgba(69, 244, 255, 0.15);
}

.policy-item-title {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cyan);
    margin-bottom: 1rem;
    font-family: var(--font-display);
}

.policy-item p, .terms-item p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.terms-item p {
    font-size: 1.1rem;
}

.policy-item p:last-child {
    margin-bottom: 0;
}

.policy-item ul {
    margin: 1rem 0 0 1.5rem;
}

.policy-item li {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
}

.policy-item li strong {
    color: var(--cyan);
}

.terms-item-number {
    display: inline-block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--cyan);
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
}

.policy-footer, .terms-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(69, 244, 255, 0.2));
    border: 1px solid rgba(69, 244, 255, 0.3);
    border-radius: 0.5rem;
    color: var(--cyan);
    font-weight: 600;
    transition: all var(--transition-fast);
    font-size: 1rem;
}

.back-button:hover {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.3), rgba(69, 244, 255, 0.3));
    border-color: var(--cyan);
    box-shadow: 0 0 20px rgba(69, 244, 255, 0.3);
    transform: translateX(-4px);
}

/* SCH Lite Styles */
.hero-lite {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 10rem 0 6rem;
}

.hero-badge-lite {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(236, 72, 153, 0.15);
    border: 2px solid var(--pink);
    border-radius: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.06em;
}

.hero-title-lite {
    font-size: 4rem;
    margin-bottom: 2rem;
}

.hero-subtitle-lite-container {
    max-width: 700px;
    margin: 0 auto 1.2rem;
}

.hero-subtitle-lite-primary {
    font-size: 1.3rem;
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.hero-subtitle-lite-secondary {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-top: 1.5rem;
}

.hero-stats-lite {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat-box-lite {
    text-align: center;
    padding: 1.5rem 2.5rem;
    background: rgba(168, 85, 247, 0.1);
    border: 2px solid var(--border-color);
    border-radius: 1rem;
    min-width: 140px;
}

.stat-number-lite {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--cyan);
    margin-bottom: 0.25rem;
}

.stat-label-lite {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: none;
    letter-spacing: 0.04em;
}

.hero-actions-lite {
    gap: 1.5rem;
}

.btn-enroll-lite {
    padding: 0.7rem 1.75rem;
}

.btn-comparison-lite {
    padding: 0.7rem 1.5rem;
}

/* ===================================
   Lite hero — cyber ticker (horizontal marquee)
   =================================== */
.lite-ticker {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-bottom: 1.25rem;
    padding: 0.75rem 0;
    overflow: hidden;
    border-top: 1px solid rgba(168, 85, 247, 0.28);
    border-bottom: 1px solid rgba(69, 244, 255, 0.28);
    background: linear-gradient(
        90deg,
        rgba(168, 85, 247, 0.06) 0%,
        rgba(69, 244, 255, 0.06) 50%,
        rgba(236, 72, 153, 0.06) 100%
    );
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 0 24px rgba(168, 85, 247, 0.12);
}

/* Edge fade so the loop doesn't pop in/out abruptly */
.lite-ticker::before,
.lite-ticker::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 12%;
    pointer-events: none;
    z-index: 2;
}

.lite-ticker::before {
    left: 0;
    background: linear-gradient(90deg, rgba(5, 5, 14, 0.95) 0%, transparent 100%);
}

.lite-ticker::after {
    right: 0;
    background: linear-gradient(270deg, rgba(5, 5, 14, 0.95) 0%, transparent 100%);
}

.lite-ticker-track {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    animation: liteTickerScroll 60s linear infinite;
    will-change: transform;
}

.lite-ticker-track > .lite-ticker-item,
.lite-ticker-track > .lite-ticker-sep {
    margin-right: 1.75rem;
}

@keyframes liteTickerScroll {
    from { transform: translate3d(0, 0, 0); }
    to   { transform: translate3d(-50%, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
    .lite-ticker-track { animation: none; }
}

.lite-ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display, 'Rajdhani'), 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--text-primary);
    text-transform: none;
    text-shadow: 0 0 12px rgba(69, 244, 255, 0.25);
}

.lite-ticker-glyph {
    font-family: 'JetBrains Mono', 'Fira Code', ui-monospace, monospace;
    font-size: 0.85em;
    font-weight: 700;
    color: var(--cyan, #45f4ff);
    background: rgba(69, 244, 255, 0.08);
    border: 1px solid rgba(69, 244, 255, 0.35);
    border-radius: 4px;
    padding: 0.05em 0.35em;
    text-shadow: 0 0 8px rgba(69, 244, 255, 0.6);
    animation: liteTickerCaret 1.1s steps(2) infinite;
}

@keyframes liteTickerCaret {
    50% { opacity: 0.55; }
}

.lite-ticker-sep {
    font-size: 0.7rem;
    color: var(--purple, #a855f7);
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.7);
    transform: translateY(-1px);
}

@media (max-width: 600px) {
    .lite-ticker-item { font-size: 0.95rem; }
    .lite-ticker-track { animation-duration: 45s; }
    .lite-ticker-track > .lite-ticker-item,
    .lite-ticker-track > .lite-ticker-sep { margin-right: 1.25rem; }
}

/* ===================================
   Lite hero — animated stat strip
   Mirrors .program-stats but tuned for in-hero placement.
   =================================== */
.lite-stat-strip {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 1.25rem;
    max-width: 920px;
    margin: 0 auto 2.25rem;
    padding: 1.75rem 3rem;
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 20px;
    background:
        linear-gradient(135deg, rgba(69, 244, 255, 0.05) 0%, rgba(168, 85, 247, 0.05) 100%),
        rgba(15, 15, 24, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.02) inset,
        0 16px 60px rgba(0, 0, 0, 0.35);
}

@property --lite-stats-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

.lite-stat-strip::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 21px;
    background: conic-gradient(
        from var(--lite-stats-angle),
        transparent 0%,
        rgba(69, 244, 255, 0.6) 8%,
        rgba(168, 85, 247, 0.4) 16%,
        transparent 22%
    );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 1px;
    pointer-events: none;
    animation: liteStatsBorderTrace 6s linear infinite;
}

@keyframes liteStatsBorderTrace {
    to { --lite-stats-angle: 360deg; }
}

@media (prefers-reduced-motion: reduce) {
    .lite-stat-strip::before { animation: none; }
}

.lite-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.35rem;
}

.lite-stat-value {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.02em;
    background-image: linear-gradient(135deg, var(--cyan, #45f4ff) 0%, var(--purple, #a855f7) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.lite-stat-label {
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-primary);
    margin-top: 0.4rem;
}

.lite-stat-meta {
    font-size: 0.98rem;
    color: var(--text-muted);
    line-height: 1.45;
    max-width: 240px;
    margin-top: 0.2rem;
}

.lite-stat-divider {
    width: 1px;
    height: 80px;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(168, 85, 247, 0.35) 50%,
        transparent 100%
    );
}

@media (max-width: 820px) {
    .lite-stat-strip {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem 1.25rem;
    }
    .lite-stat-value { font-size: 2.5rem; }
    .lite-stat-divider {
        width: 60%;
        height: 1px;
        background: linear-gradient(
            90deg,
            transparent 0%,
            rgba(168, 85, 247, 0.35) 50%,
            transparent 100%
        );
        justify-self: center;
    }
}

/* ===================================
   Lite hero — attack-class chip row
   =================================== */
.lite-attack-chips {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem 0.625rem;
    max-width: 1100px;
    margin: 0 auto 2rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

@media (max-width: 900px) {
    .lite-attack-chips { flex-wrap: wrap; }
}

.lite-attack-chips-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-right: 0.25rem;
}

.lite-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.85rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    background: rgba(168, 85, 247, 0.08);
    border: 1px solid rgba(168, 85, 247, 0.28);
    border-radius: 999px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.lite-chip:hover {
    transform: translateY(-1px);
    background: rgba(69, 244, 255, 0.1);
    border-color: rgba(69, 244, 255, 0.45);
    box-shadow: 0 6px 20px rgba(69, 244, 255, 0.12);
}

@media (max-width: 600px) {
    .lite-attack-chips { gap: 0.4rem; }
    .lite-attack-chips-label { width: 100%; text-align: center; margin: 0 0 0.25rem; }
    .lite-chip { font-size: 0.78rem; padding: 0.35rem 0.7rem; }
}

/* ===================================
   Creator Badge - Cyberpunk Holographic Style
   =================================== */
.hero-author-lite {
    margin-top: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.875rem;
    padding: 0.625rem 1.5rem 0.625rem 0.625rem;
    position: relative;
    background: linear-gradient(
        135deg,
        rgba(0, 245, 255, 0.05) 0%,
        rgba(168, 85, 247, 0.03) 50%,
        rgba(0, 245, 255, 0.05) 100%
    );
    border: 1px solid transparent;
    border-radius: 50px;
    backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    cursor: default;
}

/* Animated gradient border */
.hero-author-lite::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 1px;
    background: linear-gradient(
        90deg,
        rgba(0, 245, 255, 0.6) 0%,
        rgba(168, 85, 247, 0.5) 25%,
        rgba(236, 72, 153, 0.5) 50%,
        rgba(168, 85, 247, 0.5) 75%,
        rgba(0, 245, 255, 0.6) 100%
    );
    background-size: 300% 100%;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: borderGlow 12s linear infinite;
}

/* Holographic shimmer overlay */
.hero-author-lite::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        transparent 40%,
        rgba(255, 255, 255, 0.03) 45%,
        rgba(255, 255, 255, 0.06) 50%,
        rgba(255, 255, 255, 0.03) 55%,
        transparent 60%
    );
    background-size: 200% 100%;
    animation: holographicShimmer 8s ease-in-out infinite;
    pointer-events: none;
    border-radius: 50px;
}

@keyframes borderGlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

@keyframes holographicShimmer {
    0%, 100% { background-position: 200% 0; }
    50% { background-position: -200% 0; }
}

.hero-author-lite:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow:
        0 8px 25px rgba(0, 245, 255, 0.12),
        0 0 40px rgba(168, 85, 247, 0.08);
}

/* Avatar with glowing ring */
.author-avatar-lite {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow:
        0 0 0 2px rgba(0, 245, 255, 0.5),
        0 0 12px rgba(0, 245, 255, 0.25),
        0 0 24px rgba(0, 245, 255, 0.1);
    animation: avatarPulse 8s ease-in-out infinite;
}

@keyframes avatarPulse {
    0%, 100% {
        box-shadow:
            0 0 0 2px rgba(0, 245, 255, 0.5),
            0 0 12px rgba(0, 245, 255, 0.25),
            0 0 24px rgba(0, 245, 255, 0.1);
    }
    50% {
        box-shadow:
            0 0 0 2px rgba(168, 85, 247, 0.5),
            0 0 15px rgba(168, 85, 247, 0.3),
            0 0 30px rgba(168, 85, 247, 0.12);
    }
}

.hero-author-lite:hover .author-avatar-lite {
    transform: scale(1.05);
    box-shadow:
        0 0 0 2px rgba(0, 245, 255, 0.6),
        0 0 18px rgba(0, 245, 255, 0.35),
        0 0 35px rgba(0, 245, 255, 0.15);
}

/* Text styling */
.author-text-lite {
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.02em;
    position: relative;
    z-index: 2;
    text-shadow: 0 0 12px rgba(0, 245, 255, 0.15);
}

.author-text-lite strong {
    font-weight: 700;
    background-image: linear-gradient(90deg, var(--cyan), #fff, var(--cyan));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShine 3s linear infinite;
}

@keyframes textShine {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* Verified badge tick */
.author-text-lite::after {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 0.5rem;
    width: 18px;
    height: 18px;
    font-size: 10px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--purple) 100%);
    color: #000;
    border-radius: 50%;
    vertical-align: middle;
}

.benefits-grid-lite {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-card-lite {
    text-align: center;
    padding: 2rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
}

.benefit-icon-lite {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-title-lite {
    color: var(--cyan);
    margin-bottom: 0.5rem;
}

.benefit-desc-lite {
    color: var(--text-muted);
}

.comparison-section-lite {
    background: var(--darker-bg);
    padding: 7rem 0 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-title-lite {
    margin-bottom: 2rem;
}

.comparison-grid-lite {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.comparison-card-full {
    background: linear-gradient(145deg, rgba(30, 30, 46, 0.9), rgba(22, 22, 34, 0.95));
    border: 2px solid var(--border-color-cyan);
    border-radius: 1.5rem;
    padding: 3rem 2.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
}

.comparison-badge-popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--purple), var(--cyan));
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.comparison-card-title {
    font-size: 1.75rem;
    color: var(--cyan);
    margin-bottom: 0.5rem;
    text-align: center;
    font-weight: 700;
    margin-top: 0;
}

.comparison-price-container {
    text-align: center;
    margin-bottom: 0rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.comparison-price-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.comparison-old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.25rem;
    font-weight: 600;
    opacity: 0.6;
}

.comparison-new-price {
    color: var(--cyan);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
}

.comparison-save-badge {
    background: var(--green);
    color: var(--bg-dark);
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-weight: 700;
    font-size: 0.9rem;
}

.comparison-stats-box {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(69, 244, 255, 0.08);
    border: 1px solid rgba(69, 244, 255, 0.2);
    border-radius: 1rem;
}

.comparison-stats-grid {
    display: grid;
    gap: 0.875rem;
    font-size: 1rem;
}

.comparison-stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.comparison-stat-label {
    color: var(--text-secondary);
}

.comparison-stat-value {
    color: var(--cyan);
    font-size: 1.1rem;
}

.comparison-features-box {
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.comparison-features-title {
    color: var(--purple);
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.comparison-features-list {
    display: grid;
    gap: 0.875rem;
}

.comparison-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.comparison-check-icon {
    color: var(--cyan);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.comparison-feature-text {
    line-height: 1.5;
}

.btn-comparison-full {
    width: 100%;
    text-align: center;
    padding: 1rem;
}

.comparison-card-lite {
    background: linear-gradient(145deg, rgba(30, 30, 46, 0.9), rgba(22, 22, 34, 0.95));
    border: 2px solid rgba(236, 72, 153, 0.5);
    border-radius: 1.5rem;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
}

.comparison-card-title-lite {
    font-size: 1.75rem;
    color: var(--pink);
    margin-bottom: 0.5rem;
    text-align: center;
    font-weight: 700;
    margin-top: 0;
}

.comparison-new-price-lite {
    color: var(--pink);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
}

.comparison-stats-box-lite {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(236, 72, 153, 0.08);
    border: 1px solid rgba(236, 72, 153, 0.2);
    border-radius: 1rem;
}

.comparison-stat-value-lite {
    color: var(--pink);
    font-size: 1.1rem;
}

.comparison-feature-item-disabled {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    opacity: 0.35;
}

.comparison-cross-icon {
    color: var(--text-muted);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-badge-lite {
    background: linear-gradient(135deg, var(--pink), var(--purple));
}

.countdown-banner-lite {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.25) 0%, rgba(168, 85, 247, 0.25) 100%);
    border-bottom: 2px solid rgba(236, 72, 153, 0.3);
}

.pricing-title-lite {
    background-image: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.25rem;
}

.pricing-value-badge-lite {
    margin: 0.35rem 0;
    padding: 0.35rem 0.75rem;
    background: rgba(236, 72, 153, 0.15);
    border: 1px solid rgba(236, 72, 153, 0.3);
    border-radius: 0.5rem;
    text-align: center;
}

.pricing-value-text-lite {
    color: var(--pink);
    font-weight: 700;
    font-size: 0.8rem;
}

.pricing-new-price-lite {
    font-size: 2.8rem;
    font-weight: 800;
    background-image: linear-gradient(135deg, var(--pink), var(--purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    letter-spacing: -0.03em;
    text-shadow: 0 0 30px rgba(236, 72, 153, 0.3);
}

.payment-btn-lite {
    background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
}

.lite-upgrade-card {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.05) 0%, rgba(69, 244, 255, 0.05) 100%);
    border: 2px solid rgba(168, 85, 247, 0.3);
}

.syllabus-section-lite {
    background: var(--darker-bg);
    padding: 7rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.syllabus-desc-lite {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.syllabus-image-container {
    max-width: 900px;
    margin: 0 auto 2rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.instructor-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.instructor-profile {
    margin-bottom: 2rem;
}

.instructor-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 2rem;
    border: 3px solid var(--cyan);
    box-shadow: 0 0 30px rgba(69, 244, 255, 0.4);
}

.instructor-name {
    font-size: 2rem;
    color: var(--cyan);
    margin-bottom: 1rem;
}

.instructor-bio {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.instructor-role {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.social-links-container {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.social-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(168, 85, 247, 0.1);
    border: 2px solid var(--border-color);
    border-radius: 0.75rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    min-width: 150px;
    justify-content: center;
}

.social-link-btn:hover {
    background: rgba(168, 85, 247, 0.2);
    border-color: var(--purple);
    transform: translateY(-2px);
}

.contact-section-lite {
    background: var(--darker-bg);
    padding: 7rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-cta-container {
    text-align: center;
    margin-top: 3rem;
}

/* Testimonial Social Link */
.testimonial-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 0.5rem;
    color: var(--cyan);
    transition: var(--transition-fast);
    vertical-align: middle;
}

.testimonial-social-link:hover {
    color: var(--purple);
    transform: scale(1.1);
}

.testimonial-social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* ============================================ */
/* INSTRUCTOR SECTION - SCH LITE PAGE */
/* ============================================ */

.instructor-section-lite {
    background: var(--darker-bg);
    padding: 3rem 0 7rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.syllabus-section + .instructor-section-lite {
    padding-top: 2rem;
}

.syllabus-section.section {
    padding-bottom: 3rem;
}

.instructor-container-lite {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.instructor-container-lite .section-title {
    margin-bottom: 3rem;
}

.instructor-profile-lite {
    margin-bottom: 3rem;
}

.instructor-avatar-lite {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: block;
    border: 4px solid var(--pink);
    box-shadow: 0 8px 30px rgba(236, 72, 153, 0.3);
    transition: all 0.3s ease;
}

.instructor-avatar-lite:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(236, 72, 153, 0.5);
}

.instructor-name-lite {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: var(--font-display);
}

.instructor-bio-lite {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.instructor-role-lite {
    font-size: 1rem;
    color: var(--cyan);
    font-weight: 600;
}

.social-links-lite {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.social-btn-lite {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(168, 85, 247, 0.1);
    border: 2px solid var(--border-color);
    border-radius: 0.75rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-btn-lite svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.contact-cta-lite {
    text-align: center;
    margin-top: 3rem;
}

.syllabus-subtitle-lite {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .instructor-section-lite {
        padding: 5rem 0;
    }

    .instructor-avatar-lite {
        width: 120px;
        height: 120px;
    }

    .instructor-name-lite {
        font-size: 1.75rem;
    }

    .social-links-lite {
        flex-direction: column;
        max-width: 300px;
        margin: 2rem auto 0;
    }

    .social-btn-lite {
        width: 100%;
        justify-content: center;
    }
}


/* ===================================
   INLINE CSS MIGRATION - Added Feb 2026
   YouTube Facade Components (partials/macros.html)
   =================================== */
.yt-facade-picture {
    position: absolute;
    inset: 0;
}

.yt-facade-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yt-facade-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.yt-facade-play svg {
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}

.yt-facade-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 30%);
    pointer-events: none;
}

/* ===================================
   SCH Lite Syllabus Variants (sch-lite.html)
   =================================== */
.part-label--lite {
    background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
}

.part-title--lite {
    background-image: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.syllabus-item-modern--pink {
    border-left-color: var(--pink);
}

/* ===================================
   Attack Cards - Dynamic Animation (attack-class.html)
   =================================== */
.attack-card {
    animation-delay: var(--anim-delay, 0s);
}

/* ===================================
   Exercise Demo Components (exercise-demo.html)
   =================================== */
.demo-card--centered {
    max-width: 800px;
    margin: 0 auto;
}

.card-header--borderless {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 1.5rem;
}

.card-title--centered-cyan {
    margin: 0 auto;
    text-align: center;
    font-size: 1.15rem;
    color: var(--cyan);
    font-family: var(--font-mono);
    letter-spacing: 2px;
}

.info-box--purple {
    background: rgba(168, 85, 247, 0.1);
    border-left-color: var(--purple);
}

.code-highlight {
    background: rgba(249, 115, 22, 0.2);
    padding: 0.1rem 0.4rem;
    border-radius: 3px;
}

.exploit-success-banner {
    display: none;
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(34,197,94,0.15), rgba(69, 244, 255, 0.1));
    border-radius: 12px;
    border: 2px solid #22c55e;
    position: relative;
    overflow: hidden;
}

.exploit-success-banner.visible {
    display: block;
}

.scanline {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #22c55e, transparent);
    animation: scanline 2s linear infinite;
}

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

.status-label--mono {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-value--mono {
    font-family: var(--font-mono);
}

.checklist-phase-label {
    color: var(--cyan);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
    font-family: var(--font-mono);
}

.checklist-phase-value {
    color: var(--purple);
    font-weight: 600;
    font-family: var(--font-mono);
    font-size: 0.9rem;
}

.phase-title--orange {
    color: #f97316;
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.phase-title--green {
    color: #22c55e;
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.phase-detail--muted {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-family: var(--font-mono);
}

.password-hints {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* ===================================
   SCH Lite Social Button Hover States
   =================================== */
.social-btn-lite {
    transition: all 0.3s ease;
}

.social-btn-lite:hover {
    background: rgba(168, 85, 247, 0.2);
    border-color: var(--purple);
    transform: translateY(-2px);
}

/* ===== HERO AI-ERA ENHANCEMENTS ===== */
.hero-badge-ai {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.12), rgba(168, 85, 247, 0.08));
    border: 1px solid rgba(0, 212, 255, 0.25);
    padding: 6px 16px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.hero-ai-proof {
    display: flex;
    align-items: center;
    gap: 8px 16px;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 16px 0 24px 0;
}

.hero-ai-proof-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.72);
    white-space: nowrap;
    flex-shrink: 0;
}

.hero-ai-proof-icon {
    font-size: 0.9rem;
    line-height: 1;
    flex-shrink: 0;
}

.hero-ai-proof-text {
    white-space: nowrap;
}

.hero-ai-proof-divider {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.8rem;
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .hero-ai-proof {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .hero-ai-proof-divider {
        display: none;
    }
}

/* ===== PRICING AI-ERA ENHANCEMENTS ===== */
.pricing-header-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    margin-top: 8px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== COURSE PILLARS SECTION ===== */
.course-pillars-section {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: linear-gradient(180deg, #080910 0%, #0b0c14 100%);
    border-top: 1px solid rgba(136, 137, 255, 0.08);
}

.course-pillars-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 820px 360px at 14% 0%, rgba(120, 61, 255, 0.16) 0%, transparent 60%),
        radial-gradient(ellipse 760px 340px at 88% 100%, rgba(69, 244, 255, 0.12) 0%, transparent 58%),
        linear-gradient(180deg, rgba(8, 10, 18, 0.18) 0%, rgba(8, 10, 18, 0.62) 100%);
    pointer-events: none;
    z-index: 0;
}

.course-pillars-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 120px 120px;
    opacity: 0.08;
    mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 72%);
    pointer-events: none;
    z-index: 0;
}

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

.course-pillars-section .section-header {
    max-width: 1040px;
    margin: 0 auto 4rem;
}

.course-pillars-section .section-label {
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #c7d2fe;
    border-color: rgba(129, 140, 248, 0.22);
    background: rgba(99, 102, 241, 0.1);
    box-shadow:
        0 10px 30px rgba(15, 23, 42, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.course-pillars-section .section-title {
    max-width: 1000px;
    margin: 0 auto 1.35rem;
    font-size: clamp(2.1rem, 4.6vw, 3.35rem);
    line-height: 1.08;
}

.course-pillars-section .gradient-text-cyan {
    background-image: linear-gradient(180deg, rgba(244, 248, 255, 0.98) 0%, rgba(202, 228, 255, 0.95) 52%, rgba(109, 216, 255, 0.92) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.course-pillars-section .section-subtitle {
    text-align: center;
    color: rgba(226, 232, 240, 0.82);
    font-size: 1.02rem;
    line-height: 1.75;
    max-width: 640px;
    margin-top: 0;
    margin-bottom: 3.5rem;
    margin-left: auto;
    margin-right: auto;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    counter-reset: pillar-card;
}

.pillar-card {
    position: relative;
    min-height: 100%;
    background: linear-gradient(180deg, rgba(12, 14, 24, 0.9) 0%, rgba(10, 12, 20, 0.78) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 1.8rem;
    overflow: hidden;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow:
        0 18px 52px rgba(2, 6, 23, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    counter-increment: pillar-card;
}

.pillar-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.08) 0%, transparent 24%, transparent 74%, rgba(255, 255, 255, 0.03) 100%);
    opacity: 0.5;
    pointer-events: none;
}

.pillar-card::after {
    content: '0' counter(pillar-card);
    position: absolute;
    top: 1.15rem;
    right: 1.25rem;
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.18);
}

.pillar-card:hover {
    transform: translateY(-6px);
    border-color: rgba(125, 205, 255, 0.25);
    box-shadow:
        0 26px 72px rgba(2, 6, 23, 0.34),
        0 0 32px rgba(99, 102, 241, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.pillar-card:nth-child(3n + 1) {
    border-color: rgba(168, 85, 247, 0.14);
}

.pillar-card:nth-child(3n + 2) {
    border-color: rgba(69, 244, 255, 0.12);
}

.pillar-card:nth-child(3n) {
    border-color: rgba(129, 140, 248, 0.14);
}

.pillar-icon {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    margin-bottom: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.pillar-card:nth-child(3n + 1) .pillar-icon {
    color: #d8b4fe;
    background: linear-gradient(180deg, rgba(168, 85, 247, 0.14) 0%, rgba(168, 85, 247, 0.05) 100%);
    border-color: rgba(168, 85, 247, 0.22);
}

.pillar-card:nth-child(3n + 2) .pillar-icon {
    color: #7dd3fc;
    background: linear-gradient(180deg, rgba(69, 244, 255, 0.14) 0%, rgba(69, 244, 255, 0.05) 100%);
    border-color: rgba(69, 244, 255, 0.2);
}

.pillar-card:nth-child(3n) .pillar-icon {
    color: #c7d2fe;
    background: linear-gradient(180deg, rgba(129, 140, 248, 0.14) 0%, rgba(129, 140, 248, 0.05) 100%);
    border-color: rgba(129, 140, 248, 0.22);
}

.pillar-icon svg {
    width: 24px;
    height: 24px;
}

.pillar-title {
    font-family: var(--font-display);
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
    padding-right: 2.5rem;
}

.pillar-desc {
    font-size: 0.94rem;
    color: rgba(226, 232, 240, 0.78);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 900px) {
    .course-pillars-section .section-header {
        margin-bottom: 3rem;
    }

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

@media (max-width: 600px) {
    .course-pillars-section .section-title {
        font-size: clamp(1.9rem, 9vw, 2.35rem);
    }

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

    .pillar-card {
        padding: 1.35rem;
    }

    .course-pillars-section .section-subtitle {
        margin-bottom: 2rem;
    }

    .pillar-icon {
        width: 52px;
        height: 52px;
    }

    .pillar-title {
        padding-right: 2rem;
    }
}

/* ===== HOMEPAGE PREMIUM SEQUENCE OVERRIDES ===== */
.salary-section-v2 {
    isolation: isolate;
    background: linear-gradient(180deg, #0d0807 0%, #120c0f 54%, #110e16 100%);
    border-top: 1px solid rgba(251, 191, 36, 0.08);
}

.salary-section-v2::before {
    background:
        radial-gradient(ellipse 920px 380px at 12% 6%, rgba(251, 191, 36, 0.18) 0%, transparent 58%),
        radial-gradient(ellipse 760px 360px at 88% 88%, rgba(249, 115, 22, 0.12) 0%, transparent 55%),
        linear-gradient(180deg, rgba(10, 9, 11, 0.18) 0%, rgba(10, 9, 11, 0.66) 100%);
}

.salary-section-v2::after {
    background-image: repeating-linear-gradient(125deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 30px);
    background-size: auto;
    opacity: 0.08;
    mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0.3), transparent 70%);
}

.salary-header-v2 {
    max-width: 1000px;
    margin: 0 auto 2.125rem;
}

.salary-badge {
    background: rgba(251, 191, 36, 0.08);
    border-color: rgba(251, 191, 36, 0.24);
    box-shadow:
        0 12px 32px rgba(2, 6, 23, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.salary-badge .badge-pulse {
    background: #fbbf24;
    box-shadow: 0 0 18px rgba(251, 191, 36, 0.35);
}

.salary-badge .badge-text {
    color: #fcd34d;
}

.salary-main-title {
    font-size: 3.5rem;
    letter-spacing: -0.03em;
}

.title-highlight {
    background-image: linear-gradient(135deg, #fff5da 0%, #fbbf24 46%, #f97316 100%);
}

.salary-subtitle {
    color: rgba(226, 232, 240, 0.78);
    max-width: 960px;
}

.salary-grid-v2 {
    gap: 1.75rem;
}

.salary-section-v2 .container {
    max-width: 1440px;
}

.salary-layout {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: center;
    gap: 5rem;
    align-items: center;
    margin: 0 auto 1.5rem;
}

.salary-layout .salary-grid-v2 {
    grid-template-columns: repeat(2, 400px);
    margin-bottom: 0;
}

.salary-benefits {
    gap: 1.25rem;
    align-self: center;
}

.salary-benefits li {
    font-size: 1.0625rem;
    line-height: 1.5;
}

.salary-benefits .feature-icon {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .salary-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.salary-card-v2 {
    background: linear-gradient(180deg, rgba(18, 16, 18, 0.92) 0%, rgba(15, 13, 17, 0.84) 100%);
    border-color: rgba(251, 191, 36, 0.12);
    border-radius: 24px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow:
        0 24px 64px rgba(2, 6, 23, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.salary-card-v2::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, transparent 26%, transparent 72%, rgba(255, 255, 255, 0.03) 100%);
    opacity: 0.35;
    pointer-events: none;
}

.salary-card-v2:hover {
    transform: translateY(-6px);
    border-color: rgba(251, 191, 36, 0.22);
    box-shadow:
        0 30px 72px rgba(2, 6, 23, 0.38),
        0 0 32px rgba(251, 191, 36, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.card-glow {
    background: radial-gradient(circle at center, rgba(251, 191, 36, 0.16) 0%, transparent 56%);
}

.tier-label {
    color: rgba(253, 224, 71, 0.82);
}

.tier-title {
    letter-spacing: -0.02em;
}

.salary-currency {
    color: #fbbf24;
}

.salary-value {
    background-image: linear-gradient(135deg, #fff3c4 0%, #fbbf24 52%, #f97316 100%);
}

.annual-equivalent {
    background: rgba(251, 191, 36, 0.07);
    border: 1px solid rgba(251, 191, 36, 0.12);
}

.feature-icon {
    background: rgba(251, 191, 36, 0.1);
    color: #fcd34d;
}

.salary-card-senior {
    border-color: rgba(255, 230, 160, 0.16);
    background: linear-gradient(180deg, rgba(22, 17, 16, 0.94) 0%, rgba(18, 14, 16, 0.88) 100%);
    box-shadow:
        0 0 40px rgba(255, 208, 128, 0.06),
        0 24px 64px rgba(2, 6, 23, 0.26);
}

.salary-card-senior:hover {
    border-color: rgba(255, 222, 128, 0.32);
    box-shadow:
        0 30px 72px rgba(2, 6, 23, 0.36),
        0 0 44px rgba(255, 208, 128, 0.12);
}

.card-glow-senior {
    background: radial-gradient(circle at center, rgba(255, 224, 138, 0.18) 0%, transparent 58%);
}

.tier-label-senior {
    color: #fde68a;
}

.tier-title-senior {
    color: #fff7db;
}

.salary-display-senior .salary-currency {
    color: #fde68a;
}

.salary-display-senior .salary-value {
    background-image: linear-gradient(135deg, #fff8e1 0%, #fde68a 50%, #f59e0b 100%);
}

.annual-equivalent-senior {
    background: rgba(255, 230, 160, 0.07);
    border: 1px solid rgba(255, 230, 160, 0.16);
}

.tier-features-senior .feature-icon {
    background: rgba(255, 230, 160, 0.12);
    color: #fff1b0;
}

.progression-line {
    background: linear-gradient(180deg, rgba(251, 191, 36, 0.15) 0%, rgba(251, 191, 36, 0.85) 50%, rgba(249, 115, 22, 0.75) 100%);
}

.progression-arrow {
    background: linear-gradient(180deg, rgba(251, 191, 36, 0.12) 0%, rgba(249, 115, 22, 0.08) 100%);
    border-color: rgba(251, 191, 36, 0.24);
    color: #fde68a;
    box-shadow:
        0 12px 28px rgba(2, 6, 23, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.progression-text {
    color: rgba(252, 211, 77, 0.62);
    letter-spacing: 0.12em;
}

.cta-text {
    color: rgba(226, 232, 240, 0.8);
}

.salary-cta-v2 {
    position: relative;
    margin: 0 auto;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.salary-cta-v2::before {
    content: none;
}

.salary-cta-btn {
    min-height: 56px;
    padding: 0.95rem 1.6rem;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15) 0%, rgba(249, 115, 22, 0.08) 100%);
    border: 1px solid rgba(251, 191, 36, 0.36);
    border-radius: 16px;
    box-shadow:
        0 14px 34px rgba(251, 191, 36, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.salary-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 18px 42px rgba(251, 191, 36, 0.2),
        0 0 28px rgba(251, 191, 36, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.success-stories-slider {
    isolation: isolate;
    background: linear-gradient(180deg, #061215 0%, #08131c 52%, #0a0f18 100%);
    border-top: 1px solid rgba(52, 211, 153, 0.08);
}

.success-stories-slider::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 860px 340px at 12% 18%, rgba(16, 185, 129, 0.16) 0%, transparent 58%),
        radial-gradient(ellipse 760px 360px at 88% 80%, rgba(56, 189, 248, 0.12) 0%, transparent 58%),
        linear-gradient(145deg, rgba(7, 12, 18, 0.18) 0%, rgba(7, 12, 18, 0.64) 100%);
    pointer-events: none;
}

.success-stories-slider::after {
    background-image: repeating-linear-gradient(-35deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 34px);
    opacity: 0.08;
    mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent 72%);
}

.success-stories-header {
    max-width: 760px;
    margin: 0 auto 1.05rem;
}

.success-stories-label {
    color: #86efac;
    background: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.22);
    box-shadow:
        0 12px 32px rgba(2, 6, 23, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.success-stories-slider .gradient-text-cyan {
    background-image: linear-gradient(135deg, #eff6ff 0%, #d1fae5 40%, #7dd3fc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.success-stories-header .section-title {
    margin-bottom: 0;
}

.success-stories-subtitle {
    color: rgba(226, 232, 240, 0.78);
    font-size: 1.08rem;
    line-height: 1.75;
    max-width: 620px;
}

.success-slider-wrapper {
    max-width: 1450px;
    padding: 0 92px;
}

.success-slides-container {
    border-radius: 28px;
}

.success-slide-content {
    gap: 3.25rem;
    padding: 2.6rem 3rem;
    background: linear-gradient(155deg, rgba(8, 20, 24, 0.92) 0%, rgba(11, 18, 28, 0.9) 58%, rgba(9, 14, 24, 0.94) 100%);
    border-radius: 28px;
    border-color: rgba(125, 211, 252, 0.12);
    box-shadow:
        0 24px 72px rgba(2, 6, 23, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.success-slide-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.08) 0%, transparent 28%, transparent 72%, rgba(255, 255, 255, 0.03) 100%);
    opacity: 0.32;
    pointer-events: none;
}

.success-slide-content::after {
    top: auto;
    right: -40px;
    bottom: -50px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(52, 211, 153, 0.16) 0%, transparent 68%);
    border-radius: 50%;
    filter: blur(20px);
}

.success-badge {
    gap: 0.65rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(59, 130, 246, 0.08) 100%);
    border-color: rgba(94, 234, 212, 0.22);
    box-shadow:
        0 14px 34px rgba(2, 6, 23, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.success-badge-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #99f6e4;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(148, 163, 184, 0.12);
}

.success-badge-icon svg {
    width: 18px;
    height: 18px;
}

.success-badge-text {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: #d1fae5;
    text-transform: uppercase;
}

.success-slide-title {
    font-family: var(--font-display);
    font-size: 2rem;
    background-image: linear-gradient(135deg, #f8fafc 0%, #d1fae5 48%, #7dd3fc 100%);
    text-shadow: none;
    letter-spacing: -0.03em;
}

.success-slide-description {
    color: rgba(226, 232, 240, 0.76);
}

.success-stat-item {
    min-width: 132px;
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(125, 211, 252, 0.12);
    border-radius: 18px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.success-stat-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(125, 211, 252, 0.2);
    box-shadow: 0 16px 32px rgba(2, 6, 23, 0.22);
}

.stat-highlight {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.1vw, 1.8rem);
    font-weight: 800;
    background-image: linear-gradient(135deg, #ecfeff 0%, #99f6e4 48%, #60a5fa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: none;
    letter-spacing: -0.03em;
}

.stat-text {
    color: rgba(203, 213, 225, 0.78);
}

.success-image-wrapper {
    border-radius: 24px;
    background: transparent;
    box-shadow:
        0 24px 64px rgba(2, 6, 23, 0.38),
        0 0 0 1px rgba(125, 211, 252, 0.08);
}

.success-image-wrapper:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow:
        0 30px 78px rgba(2, 6, 23, 0.44),
        0 0 0 1px rgba(110, 231, 183, 0.18);
}

.success-image-overlay {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.16) 0%, transparent 45%, rgba(56, 189, 248, 0.18) 100%);
}

.success-nav {
    background: rgba(9, 16, 26, 0.85);
    border-color: rgba(125, 211, 252, 0.16);
    box-shadow:
        0 12px 32px rgba(2, 6, 23, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    color: #eff6ff;
}

.success-nav:hover {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.18) 0%, rgba(59, 130, 246, 0.12) 100%);
    border-color: rgba(125, 211, 252, 0.32);
    box-shadow:
        0 16px 38px rgba(2, 6, 23, 0.34),
        0 0 24px rgba(52, 211, 153, 0.08);
    transform: translateY(-50%) scale(1.06);
}

.success-dot {
    width: 12px;
    height: 12px;
    background: rgba(125, 211, 252, 0.16);
    border: 1px solid rgba(125, 211, 252, 0.22);
}

.success-dot.active {
    background: linear-gradient(90deg, #34d399 0%, #60a5fa 100%);
    border-color: transparent;
    box-shadow:
        0 0 16px rgba(52, 211, 153, 0.32),
        0 0 26px rgba(96, 165, 250, 0.18);
    width: 30px;
}

.success-progress-bar {
    height: 4px;
    background: rgba(125, 211, 252, 0.12);
}

.success-progress-fill {
    background: linear-gradient(90deg, #34d399 0%, #60a5fa 100%);
    box-shadow: 0 0 15px rgba(52, 211, 153, 0.4);
}

@media (max-width: 968px) {
    .salary-section-v2 {
        padding: 4.5rem 0;
    }

    .salary-cta-v2 {
        padding: 1.75rem 1.5rem;
    }

    .success-slider-wrapper {
        padding: 0 64px;
    }

    .success-slide-content {
        gap: 2rem;
        padding: 2rem 1.75rem;
    }

    .success-slides-container {
        min-height: 0;
    }
}

@media (max-width: 640px) {
    .salary-section-v2 {
        padding: 3rem 0;
    }

    .salary-main-title {
        font-size: 1.95rem;
    }

    .salary-card-v2 {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .salary-cta-v2 {
        padding: 1.35rem 1.1rem;
        border-radius: 18px;
    }

    .salary-cta-btn {
        width: 100%;
        justify-content: center;
    }

    .success-stories-slider {
        padding: 3rem 0;
    }

    .success-slider-wrapper {
        padding: 0 42px;
    }

    .success-slide-content {
        padding: 1.45rem 1.15rem;
        border-radius: 22px;
    }

    .success-badge {
        padding: 0.45rem 0.8rem;
        gap: 0.55rem;
    }

    .success-badge-icon {
        width: 30px;
        height: 30px;
        border-radius: 10px;
    }

    .success-slide-title {
        font-size: 1.5rem;
    }

    .success-stats {
        gap: 0.75rem;
    }

    .success-stat-item {
        min-width: 0;
        flex: 1 1 calc(50% - 0.5rem);
    }
}

.mentors-section {
    isolation: isolate;
    background: linear-gradient(180deg, #09101a 0%, #0d1220 52%, #090e18 100%);
    border-top: 1px solid rgba(129, 140, 248, 0.08);
}

.mentors-section::before {
    background:
        radial-gradient(ellipse 920px 360px at 10% 8%, rgba(99, 102, 241, 0.16) 0%, transparent 58%),
        radial-gradient(ellipse 780px 360px at 88% 88%, rgba(59, 130, 246, 0.12) 0%, transparent 58%),
        linear-gradient(180deg, rgba(8, 12, 18, 0.16) 0%, rgba(8, 12, 18, 0.62) 100%);
}

.mentors-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 34px);
    opacity: 0.08;
    mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent 74%);
    pointer-events: none;
}

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

.mentors-section .section-header {
    max-width: 760px;
    margin: 0 auto 3.75rem;
}

.mentors-section .section-label {
    color: #c7d2fe;
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(129, 140, 248, 0.22);
    box-shadow:
        0 12px 32px rgba(2, 6, 23, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.mentors-section .cyan-text {
    background-image: linear-gradient(135deg, #f8fafc 0%, #dbeafe 45%, #93c5fd 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.mentors-showcase {
    margin-bottom: 4.25rem;
}

.mentor-card {
    background: linear-gradient(180deg, rgba(13, 18, 31, 0.9) 0%, rgba(10, 14, 24, 0.82) 100%);
    border-color: rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2rem 1.45rem;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow:
        0 22px 56px rgba(2, 6, 23, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.mentor-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, transparent 26%, transparent 74%, rgba(255, 255, 255, 0.03) 100%);
    opacity: 0.3;
    pointer-events: none;
}

.mentor-card:hover {
    border-color: rgba(125, 211, 252, 0.22);
    transform: translateY(-6px);
    box-shadow:
        0 28px 68px rgba(2, 6, 23, 0.36),
        0 0 28px rgba(96, 165, 250, 0.08);
}

.mentor-card-glow {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.18) 0%, transparent 70%);
}

.mentor-card-featured {
    border-color: rgba(129, 140, 248, 0.18);
    background: linear-gradient(180deg, rgba(52, 58, 126, 0.18) 0%, rgba(13, 18, 31, 0.88) 28%, rgba(10, 14, 24, 0.84) 100%);
}

.mentor-card-featured .mentor-card-glow {
    background: radial-gradient(circle, rgba(129, 140, 248, 0.22) 0%, transparent 70%);
}

.mentor-card-featured:hover {
    border-color: rgba(165, 180, 252, 0.3);
    box-shadow:
        0 28px 68px rgba(2, 6, 23, 0.38),
        0 0 34px rgba(129, 140, 248, 0.12);
}

.mentor-avatar-ring {
    inset: -5px;
    background: linear-gradient(135deg, rgba(125, 211, 252, 0.95) 0%, rgba(129, 140, 248, 0.95) 100%);
}

.mentor-card-featured .mentor-avatar-ring {
    background: linear-gradient(135deg, rgba(165, 180, 252, 0.95) 0%, rgba(96, 165, 250, 0.92) 100%);
}

.mentor-avatar-img {
    width: 104px;
    height: 104px;
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 28px rgba(2, 6, 23, 0.18);
}

.mentor-social-link {
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(96, 165, 250, 0.18);
}

.mentor-social-link:hover {
    background: rgba(59, 130, 246, 0.16);
    border-color: rgba(125, 211, 252, 0.28);
    color: #bfdbfe;
}

.mentor-card-featured .mentor-social-link {
    background: rgba(129, 140, 248, 0.08);
    border-color: rgba(165, 180, 252, 0.18);
}

.mentor-card-featured .mentor-social-link:hover {
    background: rgba(129, 140, 248, 0.16);
    border-color: rgba(199, 210, 254, 0.28);
    color: #c7d2fe;
}

.mentor-name {
    letter-spacing: -0.02em;
}

.mentor-card:hover .mentor-name {
    color: #bfdbfe;
}

.mentor-card-featured:hover .mentor-name {
    color: #c7d2fe;
}

.mentor-role {
    color: rgba(147, 197, 253, 0.82);
    letter-spacing: 0.1em;
}

.mentor-card-featured .mentor-role {
    color: rgba(199, 210, 254, 0.86);
}

.mentor-bio {
    color: rgba(226, 232, 240, 0.76);
    line-height: 1.65;
}

.credential-tag {
    gap: 0.45rem;
    padding: 0.5rem 0.8rem;
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(125, 211, 252, 0.1);
    border-radius: 999px;
    color: rgba(226, 232, 240, 0.78);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.mentor-card-featured .credential-tag {
    background: rgba(129, 140, 248, 0.1);
    border-color: rgba(165, 180, 252, 0.14);
}

.mentor-card:hover .credential-tag {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(125, 211, 252, 0.18);
}

.mentor-card-featured:hover .credential-tag {
    background: rgba(129, 140, 248, 0.14);
    border-color: rgba(199, 210, 254, 0.2);
}

.mentors-section .credential-icon {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #bfdbfe;
    flex-shrink: 0;
}

.mentors-section .credential-icon svg {
    width: 16px;
    height: 16px;
}

.community-content-enhanced {
    position: relative;
    gap: 3rem;
    padding: 2.45rem;
    background: linear-gradient(145deg, rgba(12, 18, 32, 0.92) 0%, rgba(9, 13, 23, 0.84) 100%);
    border: 1px solid rgba(125, 211, 252, 0.1);
    border-radius: 28px;
    overflow: hidden;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow:
        0 24px 64px rgba(2, 6, 23, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.community-content-enhanced::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.08) 0%, transparent 28%, transparent 72%, rgba(255, 255, 255, 0.03) 100%);
    opacity: 0.32;
    pointer-events: none;
}

.community-text-enhanced,
.community-visual-enhanced {
    position: relative;
    z-index: 1;
}

.community-header-badge {
    background: rgba(99, 102, 241, 0.14);
    border-color: rgba(129, 140, 248, 0.24);
    color: #c7d2fe;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.discord-svg-icon {
    color: #a5b4fc;
}

.community-title {
    background-image: linear-gradient(135deg, #f8fafc 0%, #dbeafe 48%, #93c5fd 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-size: 2.5rem;
    letter-spacing: -0.03em;
}

.community-description-enhanced {
    color: rgba(226, 232, 240, 0.78);
}

.community-benefits {
    gap: 0.9rem;
}

.community-benefits li {
    align-items: center;
    padding: 0.95rem 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(125, 211, 252, 0.08);
    color: rgba(226, 232, 240, 0.8);
}

.community-benefits .benefit-icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.14) 0%, rgba(59, 130, 246, 0.08) 100%);
    border: 1px solid rgba(129, 140, 248, 0.16);
    color: #bfdbfe;
    flex-shrink: 0;
}

.community-benefits .benefit-icon svg {
    width: 18px;
    height: 18px;
}

.floating-stat {
    width: 92px;
    height: 92px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.88) 0%, rgba(59, 130, 246, 0.88) 100%);
    box-shadow:
        0 14px 34px rgba(59, 130, 246, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.certification-section {
    isolation: isolate;
    background: linear-gradient(180deg, #151108 0%, #131119 54%, #0d0d14 100%);
    border-top: 1px solid rgba(250, 204, 21, 0.08);
}

.certification-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 860px 340px at 14% 12%, rgba(250, 204, 21, 0.16) 0%, transparent 58%),
        radial-gradient(ellipse 740px 340px at 86% 82%, rgba(245, 158, 11, 0.12) 0%, transparent 56%),
        linear-gradient(180deg, rgba(8, 8, 10, 0.18) 0%, rgba(8, 8, 10, 0.68) 100%);
    pointer-events: none;
}

.certification-bg-grid {
    background-image:
        linear-gradient(rgba(255, 215, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 215, 0, 0.03) 1px, transparent 1px);
    background-size: 72px 72px;
    opacity: 0.38;
    mask-image: radial-gradient(ellipse at center, black 12%, transparent 74%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 12%, transparent 74%);
}

.certification-header {
    max-width: 760px;
    margin: 0 auto 2rem;
}

.certification-section .section-label.cyan {
    color: #fcd34d;
    background: rgba(251, 191, 36, 0.08);
    border-color: rgba(251, 191, 36, 0.22);
    box-shadow:
        0 12px 32px rgba(2, 6, 23, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.certification-section .section-title {
    max-width: 780px;
    margin: 0 auto 1.2rem;
    font-size: clamp(2.1rem, 4.5vw, 3.2rem);
    letter-spacing: -0.03em;
}

.certification-section .gradient-text-gold {
    background-image: linear-gradient(135deg, #fff8e1 0%, #fcd34d 48%, #f59e0b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.certification-tagline {
    color: rgba(226, 232, 240, 0.78);
    max-width: 640px;
}

.certification-showcase {
    gap: 3.25rem;
}

.cert-glow-ring {
    border-color: rgba(251, 191, 36, 0.18);
}

.cert-glow-ring-2 {
    border-color: rgba(245, 158, 11, 0.1);
}

.certification-frame {
    max-width: 500px;
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(251, 191, 36, 0.16) 0%, rgba(22, 18, 16, 0.9) 34%, rgba(12, 12, 18, 0.92) 100%);
    padding: 5px;
    box-shadow:
        0 0 60px rgba(251, 191, 36, 0.12),
        0 24px 68px rgba(2, 6, 23, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.certification-frame img {
    border-radius: 20px;
}

.cert-badge-verified {
    background: linear-gradient(135deg, #15803d 0%, #16a34a 100%);
    box-shadow:
        0 10px 24px rgba(22, 163, 74, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.certification-value {
    gap: 1rem;
}

.cert-value-card {
    background: linear-gradient(180deg, rgba(18, 16, 15, 0.88) 0%, rgba(14, 13, 16, 0.8) 100%);
    border-color: rgba(251, 191, 36, 0.1);
    border-radius: 22px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow:
        0 18px 48px rgba(2, 6, 23, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.cert-value-card:hover {
    background: linear-gradient(180deg, rgba(20, 18, 17, 0.94) 0%, rgba(16, 15, 18, 0.86) 100%);
    border-color: rgba(251, 191, 36, 0.22);
    transform: translateY(-4px);
    box-shadow:
        0 24px 56px rgba(2, 6, 23, 0.3),
        0 0 28px rgba(251, 191, 36, 0.08);
}

.cert-value-card-highlight {
    background: linear-gradient(145deg, rgba(251, 191, 36, 0.12) 0%, rgba(24, 18, 14, 0.88) 30%, rgba(16, 13, 15, 0.84) 100%);
    border-color: rgba(251, 191, 36, 0.18);
}

.cert-value-card-highlight:hover {
    border-color: rgba(251, 191, 36, 0.32);
}

.cert-value-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(251, 191, 36, 0.16) 0%, rgba(251, 191, 36, 0.06) 100%);
    border-color: rgba(251, 191, 36, 0.22);
}

.cert-value-icon svg {
    stroke: #fcd34d;
}

.cert-value-content p {
    color: rgba(226, 232, 240, 0.76);
    line-height: 1.6;
}

.certification-cta-row {
    max-width: 960px;
    margin: 1rem auto 0;
}

.certification-cta-button {
    min-height: 56px;
    padding: 0.95rem 1.7rem;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.16) 0%, rgba(245, 158, 11, 0.08) 100%);
    border: 1px solid rgba(251, 191, 36, 0.34);
    box-shadow:
        0 14px 34px rgba(251, 191, 36, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.certification-cta-button:hover {
    transform: translateY(-2px);
    box-shadow:
        0 18px 42px rgba(251, 191, 36, 0.2),
        0 0 26px rgba(251, 191, 36, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.certification-cta-arrow {
    transition: transform 0.3s ease;
}

.certification-cta-button:hover .certification-cta-arrow {
    transform: translateX(4px);
}

.certification-cta-note {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(226, 232, 240, 0.9);
    max-width: 640px;
    text-align: center;
    line-height: 1.55;
    margin: 1rem auto 0;
}

@media (max-width: 968px) {
    .mentors-section .section-header,
    .certification-header {
        margin-bottom: 3rem;
    }

    .community-content-enhanced {
        padding: 1.9rem;
        gap: 2.25rem;
    }

    .certification-showcase {
        gap: 2.5rem;
    }

}

@media (max-width: 640px) {
    .mentors-section {
        padding: 3rem 0;
    }

    .mentor-card {
        padding: 1.55rem 1.15rem;
        border-radius: 20px;
    }

    .community-content-enhanced {
        padding: 1.3rem;
        border-radius: 22px;
    }

    .community-title {
        font-size: 1.85rem;
    }

    .community-benefits li {
        align-items: flex-start;
    }

    .community-benefits .benefit-icon {
        width: 36px;
        height: 36px;
    }

    .certification-section {
        padding: 3rem 0;
    }

    .certification-section .section-title {
        font-size: 1.95rem;
    }

    .certification-frame {
        border-radius: 20px;
    }

    .certification-frame img {
        border-radius: 16px;
    }

    .cert-value-card {
        padding: 1.25rem;
        border-radius: 18px;
    }

    .certification-cta-button {
        width: 100%;
        justify-content: center;
    }
}

.pricing-section {
    isolation: isolate;
    background: linear-gradient(180deg, #090b12 0%, #0c1118 52%, #0a0d14 100%);
    border-top: 1px solid rgba(125, 211, 252, 0.08);
}

.pricing-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 920px 360px at 14% 0%, rgba(96, 165, 250, 0.16) 0%, transparent 60%),
        radial-gradient(ellipse 780px 360px at 86% 100%, rgba(129, 140, 248, 0.12) 0%, transparent 56%),
        linear-gradient(180deg, rgba(7, 10, 16, 0.18) 0%, rgba(7, 10, 16, 0.68) 100%);
    pointer-events: none;
}

.pricing-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(-35deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 34px);
    opacity: 0.08;
    mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent 72%);
    pointer-events: none;
}

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

.pricing-header-new {
    max-width: 760px;
    margin: 0 auto 2.75rem;
}

.pricing-section-label {
    color: #c7d2fe;
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(129, 140, 248, 0.22);
    box-shadow:
        0 12px 32px rgba(2, 6, 23, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.pricing-main-title {
    background-image: linear-gradient(135deg, #f8fafc 0%, #dbeafe 44%, #93c5fd 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    letter-spacing: -0.03em;
}

.pricing-header-subtitle {
    color: rgba(226, 232, 240, 0.76);
    line-height: 1.75;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card-wrapper {
    max-width: 1160px;
}

.pricing-card-premium {
    background: linear-gradient(155deg, rgba(12, 16, 27, 0.94) 0%, rgba(11, 15, 23, 0.92) 48%, rgba(10, 13, 19, 0.95) 100%);
    border-color: rgba(125, 211, 252, 0.12);
    border-radius: 28px;
    box-shadow:
        0 28px 72px rgba(2, 6, 23, 0.36),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.pricing-card-premium::before {
    height: 2px;
    background: linear-gradient(90deg, rgba(125, 211, 252, 0.2) 0%, rgba(99, 102, 241, 0.9) 48%, rgba(125, 211, 252, 0.2) 100%);
    box-shadow: none;
}

.pricing-card-premium:hover {
    transform: translateY(-4px);
    border-color: rgba(125, 211, 252, 0.18);
    box-shadow:
        0 34px 84px rgba(2, 6, 23, 0.42),
        0 0 30px rgba(96, 165, 250, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.countdown-banner-prominent {
    background: linear-gradient(135deg, rgba(18, 29, 45, 0.84) 0%, rgba(16, 23, 38, 0.92) 100%);
    border-bottom: 1px solid rgba(125, 211, 252, 0.12);
    gap: 1.1rem;
}

.countdown-label {
    color: rgba(191, 219, 254, 0.82);
    font-size: 0.85rem;
    letter-spacing: 0.16em;
}

.time-value {
    color: #e0f2fe;
    text-shadow: none;
}

.time-separator {
    color: rgba(125, 211, 252, 0.3);
}

.pricing-main-content {
    gap: 2.5rem;
}

.pricing-info-column .course-title-pricing {
    background-image: linear-gradient(135deg, #eff6ff 0%, #cbd5e1 46%, #93c5fd 100%);
    letter-spacing: -0.03em;
}

.pricing-info-column .course-subtitle-pricing {
    color: rgba(203, 213, 225, 0.68);
}

.benefits-list-compact li {
    color: rgba(226, 232, 240, 0.78);
}

.benefits-list-compact .check {
    color: #7dd3fc;
}

.pricing-cta-box-inner {
    background: linear-gradient(145deg, rgba(16, 21, 32, 0.92) 0%, rgba(12, 16, 25, 0.88) 100%);
    border: 1px solid rgba(125, 211, 252, 0.1);
    border-radius: 24px;
    box-shadow:
        0 22px 56px rgba(2, 6, 23, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.pricing-price-container {
    background: none;
    border: none;
    border-radius: 0;
}

.pricing-save-badge {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.16) 0%, rgba(59, 130, 246, 0.1) 100%);
    border: 1px solid rgba(110, 231, 183, 0.2);
    color: #d1fae5;
    border-radius: 999px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.payment-buttons-stack-gap {
    gap: 0.85rem;
}

.payment-btn-large {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(125, 211, 252, 0.12);
    border-radius: 18px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.payment-btn-large::before {
    background: linear-gradient(90deg, transparent, rgba(125, 211, 252, 0.14), transparent);
}

.payment-btn-large:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(125, 211, 252, 0.22);
    box-shadow:
        0 14px 32px rgba(2, 6, 23, 0.24),
        0 0 20px rgba(96, 165, 250, 0.06);
}

.payment-btn-large.primary-payment {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.2) 0%, rgba(99, 102, 241, 0.16) 100%);
    border: 1px solid rgba(125, 211, 252, 0.26);
    box-shadow:
        0 18px 38px rgba(59, 130, 246, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.payment-btn-large.primary-payment:hover {
    box-shadow:
        0 20px 42px rgba(59, 130, 246, 0.22),
        0 0 24px rgba(96, 165, 250, 0.08);
}

.payment-btn-large.paypal-btn {
    background: linear-gradient(135deg, rgba(0, 112, 186, 0.18) 0%, rgba(0, 48, 135, 0.18) 100%);
    border-color: rgba(96, 165, 250, 0.18);
}

.payment-btn-large .payment-text strong {
    font-size: 1rem;
    letter-spacing: -0.01em;
}

.lite-version-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.5rem 1.75rem;
    background: linear-gradient(135deg, rgba(15, 19, 28, 0.84) 0%, rgba(12, 16, 24, 0.84) 100%);
    border: 1px solid rgba(125, 211, 252, 0.1);
    border-radius: 22px;
    box-shadow:
        0 18px 46px rgba(2, 6, 23, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.lite-version-card:hover {
    border-color: rgba(125, 211, 252, 0.18);
    box-shadow:
        0 24px 56px rgba(2, 6, 23, 0.26),
        0 0 22px rgba(96, 165, 250, 0.06);
}

.lite-version-card .lite-card-description {
    color: rgba(226, 232, 240, 0.74);
    margin: 0;
}

.lite-version-card .btn-lite-version {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    box-shadow:
        0 10px 28px rgba(168, 85, 247, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.lite-version-card .btn-lite-version:hover {
    transform: translateY(-2px);
    box-shadow:
        0 16px 40px rgba(168, 85, 247, 0.6),
        0 0 24px rgba(236, 72, 153, 0.45);
}

.lite-version-card .btn-lite-version svg {
    transition: transform 0.3s ease;
}

.lite-version-card .btn-lite-version:hover svg {
    transform: translateX(4px);
}

.testimonial-section {
    isolation: isolate;
    background: linear-gradient(180deg, #120d17 0%, #130f1a 52%, #0f0d14 100%);
    border-top: 1px solid rgba(244, 114, 182, 0.08);
}

.testimonial-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 860px 340px at 12% 12%, rgba(192, 132, 252, 0.14) 0%, transparent 58%),
        radial-gradient(ellipse 760px 360px at 88% 82%, rgba(244, 114, 182, 0.1) 0%, transparent 58%),
        linear-gradient(180deg, rgba(10, 8, 12, 0.2) 0%, rgba(10, 8, 12, 0.7) 100%);
    pointer-events: none;
}

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

.testimonial-header {
    max-width: 760px;
    margin: 0 auto 3rem;
}

.testimonial-section-label {
    color: #f5d0fe;
    background: rgba(192, 132, 252, 0.1);
    border-color: rgba(244, 114, 182, 0.18);
}

.testimonial-section-title {
    background-image: linear-gradient(135deg, #faf5ff 0%, #f5d0fe 46%, #f9a8d4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    letter-spacing: -0.03em;
}

.testimonial-section-subtitle {
    color: rgba(226, 232, 240, 0.76);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.95rem 1.4rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(244, 114, 182, 0.16);
    border-radius: 16px;
    color: #fdf2f8;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.testimonials-view-all:hover {
    border-color: rgba(244, 114, 182, 0.26);
    box-shadow:
        0 14px 32px rgba(2, 6, 23, 0.18),
        0 0 18px rgba(244, 114, 182, 0.06);
}

.syllabus-section {
    isolation: isolate;
    background: linear-gradient(180deg, #081019 0%, #0a121a 52%, #071018 100%);
    border-top: 1px solid rgba(56, 189, 248, 0.08);
}

.syllabus-section::before {
    background-image:
        linear-gradient(rgba(56, 189, 248, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(56, 189, 248, 0.025) 1px, transparent 1px);
    background-size: 70px 70px;
    opacity: 0.7;
}

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

.syllabus-header {
    max-width: 780px;
    margin: 0 auto 1rem;
}

.syllabus-section-label {
    color: #bae6fd;
    background: rgba(56, 189, 248, 0.08);
    border-color: rgba(56, 189, 248, 0.18);
}

.syllabus-main-title {
    font-size: clamp(2.25rem, 4.8vw, 3.35rem);
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
    text-transform: none;
    background-image: linear-gradient(135deg, #f8fafc 0%, #dbeafe 40%, #7dd3fc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.syllabus-subtitle {
    color: rgba(226, 232, 240, 0.76);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.syllabus-part {
    margin-bottom: 3.5rem;
}

.part-header {
    margin-bottom: 2rem;
}

.part-label {
    background: rgba(56, 189, 248, 0.1);
    color: #bae6fd;
    border: 1px solid rgba(56, 189, 248, 0.18);
    box-shadow: none;
    animation: none;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    padding: 0.6rem 1.25rem;
}

.part-label.advanced {
    background: rgba(99, 102, 241, 0.1);
    color: #c7d2fe;
    border: 1px solid rgba(129, 140, 248, 0.18);
    box-shadow: none;
}

.part-title {
    font-size: clamp(1.85rem, 3.2vw, 2.4rem);
    letter-spacing: -0.03em;
}

.advanced-title {
    background-image: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 42%, #93c5fd 100%);
}

.syllabus-grid-modern {
    padding: 2rem;
    background: linear-gradient(145deg, rgba(10, 17, 26, 0.92) 0%, rgba(9, 15, 23, 0.88) 100%);
    border: 1px solid rgba(56, 189, 248, 0.1);
    border-radius: 24px;
    box-shadow:
        0 22px 56px rgba(2, 6, 23, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.syllabus-grid-modern::before {
    animation: none;
    background-image:
        linear-gradient(rgba(56, 189, 248, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(56, 189, 248, 0.04) 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: 0.35;
}

.syllabus-part--advanced .syllabus-grid-modern {
    border-color: rgba(129, 140, 248, 0.12);
    background: linear-gradient(145deg, rgba(13, 15, 31, 0.92) 0%, rgba(10, 14, 23, 0.88) 100%);
    box-shadow:
        0 22px 56px rgba(2, 6, 23, 0.3),
        0 0 24px rgba(99, 102, 241, 0.06);
}

.syllabus-item-modern {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(56, 189, 248, 0.1);
    border-left: 2px solid rgba(56, 189, 248, 0.4);
    border-radius: 18px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.guest-lecture-item::before,
.guest-lecture-item::after {
    display: none;
}

.syllabus-item-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        115deg,
        transparent 30%,
        rgba(125, 211, 252, 0.16) 48%,
        rgba(255, 255, 255, 0.22) 54%,
        rgba(125, 211, 252, 0.16) 60%,
        transparent 78%
    );
    transform: skewX(-18deg);
    transition: left 0.85s cubic-bezier(0.22, 0.61, 0.36, 1);
    pointer-events: none;
    display: block;
}

.syllabus-item-modern:hover::before {
    left: 130%;
}

.syllabus-item-modern:hover {
    border-color: rgba(125, 211, 252, 0.22);
    border-left-color: rgba(125, 211, 252, 0.6);
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-3px);
    box-shadow:
        0 16px 36px rgba(2, 6, 23, 0.2),
        0 0 18px rgba(56, 189, 248, 0.04);
}

.item-number {
    font-size: 2.1rem;
    min-width: 60px;
}

.item-title {
    letter-spacing: -0.01em;
}

.syllabus-part--guest-lectures .part-label.bonus {
    background: rgba(251, 191, 36, 0.12);
    color: #fcd34d;
    border: 1px solid rgba(251, 191, 36, 0.22);
    box-shadow: none;
}

.syllabus-part--guest-lectures .part-title.bonus-title {
    background-image: linear-gradient(135deg, #fff8e1 0%, #fcd34d 44%, #f59e0b 100%);
}

.syllabus-part--guest-lectures .part-subtitle {
    color: rgba(226, 232, 240, 0.72);
}

.syllabus-part--guest-lectures .syllabus-grid-modern {
    border-color: rgba(251, 191, 36, 0.12);
    background: linear-gradient(145deg, rgba(23, 19, 11, 0.94) 0%, rgba(18, 15, 12, 0.88) 100%);
    box-shadow:
        0 24px 58px rgba(2, 6, 23, 0.3),
        0 0 24px rgba(251, 191, 36, 0.05);
}

.syllabus-part--guest-lectures .syllabus-grid-modern::before {
    background-image:
        linear-gradient(rgba(251, 191, 36, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(251, 191, 36, 0.04) 1px, transparent 1px);
}

.guest-lecture-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(251, 191, 36, 0.12);
    border-left: 2px solid rgba(251, 191, 36, 0.42);
    border-radius: 18px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.guest-lecture-item:hover {
    border-color: rgba(251, 191, 36, 0.22);
    border-left-color: rgba(251, 191, 36, 0.62);
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-3px);
    box-shadow:
        0 16px 36px rgba(2, 6, 23, 0.22),
        0 0 18px rgba(251, 191, 36, 0.05);
}

.bonus-lecture-grid > .guest-lecture-item:nth-child(1) {
    background: linear-gradient(145deg, rgba(28, 23, 14, 0.95) 0%, rgba(22, 18, 14, 0.92) 100%);
    border-width: 1px;
    border-color: rgba(251, 191, 36, 0.18);
}

.bonus-lecture-grid > .guest-lecture-item:nth-child(1)::after {
    display: none;
}

.lecturer-attribution {
    background: rgba(16, 12, 6, 0.88);
    border-color: rgba(251, 191, 36, 0.3);
}

.overview-section {
    isolation: isolate;
    background: linear-gradient(180deg, #081017 0%, #09131b 54%, #0a1218 100%);
    border-top: 1px solid rgba(94, 234, 212, 0.08);
}

.overview-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 820px 320px at 16% 10%, rgba(45, 212, 191, 0.14) 0%, transparent 58%),
        radial-gradient(ellipse 760px 340px at 84% 84%, rgba(56, 189, 248, 0.1) 0%, transparent 58%);
    pointer-events: none;
}

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

.overview-header {
    max-width: 760px;
    margin: 0 auto 2.6rem;
}

.overview-section-label {
    color: #99f6e4;
    background: rgba(45, 212, 191, 0.08);
    border-color: rgba(45, 212, 191, 0.18);
}

.overview-title {
    background-image: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 42%, #7dd3fc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    letter-spacing: -0.03em;
}

.overview-subtitle {
    color: rgba(226, 232, 240, 0.76);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.video-container {
    border: 1px solid rgba(94, 234, 212, 0.12);
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(8, 16, 22, 0.94) 0%, rgba(6, 12, 18, 0.9) 100%);
    box-shadow:
        0 24px 64px rgba(2, 6, 23, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.video-container:hover {
    border-color: rgba(94, 234, 212, 0.22);
    box-shadow:
        0 28px 72px rgba(2, 6, 23, 0.38),
        0 0 24px rgba(45, 212, 191, 0.06);
}

.faq-section {
    isolation: isolate;
    background: linear-gradient(180deg, #091018 0%, #0b131a 54%, #091018 100%);
    border-top: 1px solid rgba(125, 211, 252, 0.08);
}

.faq-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 820px 320px at 14% 12%, rgba(125, 211, 252, 0.12) 0%, transparent 58%),
        radial-gradient(ellipse 780px 340px at 86% 84%, rgba(56, 189, 248, 0.08) 0%, transparent 58%);
    pointer-events: none;
}

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

.faq-header {
    max-width: 760px;
    margin: 0 auto 2.6rem;
}

.faq-section-label {
    color: #bae6fd;
    background: rgba(56, 189, 248, 0.08);
    border-color: rgba(56, 189, 248, 0.18);
}

.faq-title {
    background-image: linear-gradient(135deg, #f8fafc 0%, #dbeafe 44%, #93c5fd 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    letter-spacing: -0.03em;
}

.faq-subtitle {
    color: rgba(226, 232, 240, 0.76);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.faq-list {
    max-width: 960px;
}

.faq-item {
    background: linear-gradient(145deg, rgba(12, 20, 30, 0.96) 0%, rgba(9, 14, 23, 0.92) 100%);
    border: 1px solid rgba(125, 211, 252, 0.16);
    border-radius: 20px;
    box-shadow:
        0 12px 30px rgba(2, 6, 23, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.faq-item:hover,
.faq-item.active {
    border-color: rgba(125, 211, 252, 0.3);
    background: linear-gradient(145deg, rgba(14, 23, 36, 0.98) 0%, rgba(10, 17, 28, 0.96) 100%);
    box-shadow:
        0 18px 42px rgba(2, 6, 23, 0.28),
        0 0 24px rgba(56, 189, 248, 0.06);
}

.faq-question {
    padding: 1.35rem 1.4rem;
    gap: 1rem;
    font-size: 1.02rem;
    line-height: 1.5;
}

.faq-question:hover {
    color: #bae6fd;
}

.faq-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    border-radius: 50%;
    background: rgba(56, 189, 248, 0.08);
    border: 1px solid rgba(56, 189, 248, 0.14);
    color: #7dd3fc;
    flex-shrink: 0;
}

.faq-answer > * {
    color: rgba(226, 232, 240, 0.76);
    line-height: 1.75;
}

.faq-answer a {
    color: #93c5fd;
}

.contact-section {
    isolation: isolate;
    background: linear-gradient(180deg, #0b0f18 0%, #0d101a 56%, #090d14 100%);
    border-top: 1px solid rgba(129, 140, 248, 0.08);
}

.contact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 820px 340px at 12% 10%, rgba(129, 140, 248, 0.14) 0%, transparent 58%),
        radial-gradient(ellipse 760px 340px at 88% 88%, rgba(56, 189, 248, 0.1) 0%, transparent 58%);
    pointer-events: none;
}

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

.contact-header {
    max-width: 760px;
    margin: 0 auto 2.6rem;
}

.contact-section-label {
    color: #c7d2fe;
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(129, 140, 248, 0.18);
}

.contact-title {
    background-image: linear-gradient(135deg, #f8fafc 0%, #dbeafe 42%, #c7d2fe 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    letter-spacing: -0.03em;
}

.contact-subtitle {
    color: rgba(226, 232, 240, 0.76);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    margin-top: 0;
    max-width: 720px;
    padding: 1.9rem;
    background: linear-gradient(145deg, rgba(12, 17, 28, 0.92) 0%, rgba(10, 14, 22, 0.88) 100%);
    border: 1px solid rgba(125, 211, 252, 0.1);
    border-radius: 24px;
    box-shadow:
        0 24px 64px rgba(2, 6, 23, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.contact-section .form-group input,
.contact-section .form-group textarea,
.contact-form input,
.contact-form textarea {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(125, 211, 252, 0.24);
    border-radius: 16px;
    color: #f8fafc;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.contact-section .form-group input::placeholder,
.contact-section .form-group textarea::placeholder,
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(186, 230, 253, 0.45);
}

.contact-section .form-group input:focus,
.contact-section .form-group textarea:focus,
.contact-form input:focus,
.contact-form textarea:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(125, 211, 252, 0.36);
    box-shadow:
        0 0 0 3px rgba(125, 211, 252, 0.14),
        0 8px 24px rgba(2, 6, 23, 0.18);
    transform: none;
}

.contact-submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    min-height: 54px;
    background: linear-gradient(135deg, rgba(129, 140, 248, 0.16) 0%, rgba(56, 189, 248, 0.1) 100%);
    border: 1px solid rgba(125, 211, 252, 0.24);
    color: #eff6ff;
    border-radius: 16px;
    box-shadow:
        0 14px 34px rgba(59, 130, 246, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.contact-submit-button:hover {
    background: linear-gradient(135deg, rgba(129, 140, 248, 0.22) 0%, rgba(56, 189, 248, 0.14) 100%);
    border-color: rgba(125, 211, 252, 0.34);
    transform: translateY(-2px);
    box-shadow:
        0 18px 40px rgba(59, 130, 246, 0.18),
        0 0 20px rgba(96, 165, 250, 0.06);
}

.contact-submit-button svg {
    transition: transform 0.3s ease;
}

.contact-submit-button:hover svg {
    transform: translateX(4px);
}

@media (max-width: 968px) {
    .pricing-main-content,
    .community-content-enhanced,
    .certification-showcase {
        gap: 2rem;
    }

    .testimonial-header,
    .syllabus-header,
    .overview-header,
    .faq-header,
    .contact-header {
        margin-bottom: 2.4rem;
    }

    .lite-version-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .pricing-header-new,
    .testimonial-header,
    .syllabus-header,
    .overview-header,
    .faq-header,
    .contact-header {
        margin-bottom: 2rem;
    }

    .pricing-card-premium,
    .testimonial-slide,
    .syllabus-grid-modern,
    .video-container,
    .faq-item,
    .contact-form {
        border-radius: 20px;
    }

    .pricing-main-content {
        gap: 1.5rem;
    }

    .countdown-label {
        font-size: 0.72rem;
        letter-spacing: 0.12em;
        text-align: center;
    }

    .lite-version-card .btn-lite-version,
    .contact-submit-button {
        width: 100%;
        justify-content: center;
    }

    .testimonial-carousel {
        padding: 0 46px;
    }

    .syllabus-grid-modern {
        padding: 1.35rem;
    }

    .faq-question {
        padding: 1.1rem 1rem;
        font-size: 0.95rem;
    }

    .faq-icon {
        width: 30px;
        height: 30px;
    }

    .contact-form {
        padding: 1.25rem;
    }
}

/* ===================================
   Mobile Tightening — 480px and below
   =================================== */
@media (max-width: 480px) {
    /* Mentors section */
    .mentors-showcase {
        margin-bottom: 3rem;
    }

    .mentor-card {
        padding: 1.5rem 1.25rem;
    }

    .mentor-avatar-img {
        width: 80px;
        height: 80px;
    }

    .mentor-name {
        font-size: 1.15rem;
    }

    .mentor-bio {
        font-size: 0.85rem;
    }

    .credential-tag {
        font-size: 0.65rem;
        padding: 0.3rem 0.55rem;
    }

    /* Community section */
    .community-title {
        font-size: 1.5rem;
    }

    .community-description-enhanced {
        font-size: 0.95rem;
    }

    /* Certification section */
    .certification-header {
        margin-bottom: 2rem;
    }

    .certification-tagline {
        font-size: 1rem;
    }

    /* Salary badge on very small screens */
    .salary-badge {
        padding: 0.4rem 1rem;
    }

    .badge-text {
        font-size: 0.6rem;
        letter-spacing: 0.08em;
    }

    .salary-cta-v2 .cta-text {
        font-size: 0.95rem;
    }

    /* FAQ section */
    .faq-question {
        font-size: 0.95rem;
        padding: 1rem;
    }

    .faq-answer {
        padding: 0 1rem 1rem;
    }
}

/* =========================================================
   Homepage: Hero Free-Trial Hint
   ========================================================= */
.hero-free-trial-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}
.hero-free-trial-note a {
    color: var(--cyan);
    text-decoration: none;
}
.hero-free-trial-note a:hover {
    text-decoration: underline;
}

/* =========================================================
   Homepage: Free Resources Navigation Strip
   ========================================================= */
.resources-nav-label {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1rem;
}
.resources-nav-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
}
.resource-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    color: var(--text-secondary);
    font-size: 0.875rem;
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease;
}
.resource-nav-btn:hover {
    border-color: var(--cyan);
    color: var(--cyan);
}
@media (max-width: 480px) {
    .resources-nav-strip {
        flex-direction: column;
        align-items: stretch;
    }
    .resource-nav-btn {
        justify-content: center;
    }
}

/* Success Story Image Lightbox */
.success-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: rgba(5, 6, 13, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0;
    transition: opacity 0.2s ease;
}
.success-lightbox.is-open {
    opacity: 1;
}
.success-lightbox[hidden] {
    display: none;
}
.success-lightbox-image {
    max-width: min(1200px, 100%);
    max-height: 90vh;
    width: auto;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    display: block;
}
.success-lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(15, 20, 30, 0.8);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.success-lightbox-close:hover {
    background: rgba(168, 85, 247, 0.25);
    border-color: rgba(168, 85, 247, 0.6);
    transform: scale(1.05);
}
.success-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(15, 20, 30, 0.8);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    z-index: 2;
}
.success-lightbox-prev {
    left: 5rem;
}
.success-lightbox-next {
    right: 5rem;
}
.success-lightbox-nav:hover {
    background: rgba(168, 85, 247, 0.25);
    border-color: rgba(168, 85, 247, 0.6);
    transform: translateY(-50%) scale(1.08);
}
@media (max-width: 640px) {
    .success-lightbox-prev { left: 0.5rem; }
    .success-lightbox-next { right: 0.5rem; }
    .success-lightbox-nav { width: 44px; height: 44px; }
}

.success-stories-controls {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 1.5rem;
    margin-bottom: 0;
    padding: 0;
}
.success-stories-controls .success-nav {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    width: auto;
    height: auto;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    color: #7dd3fc;
    filter: drop-shadow(0 0 6px rgba(125, 211, 252, 0.85)) drop-shadow(0 0 14px rgba(56, 189, 248, 0.55));
    transition: filter 0.25s ease, transform 0.25s ease, color 0.25s ease;
}
.success-stories-controls .success-nav:hover,
.success-stories-controls .success-nav:focus-visible {
    background: transparent;
    border: none;
    box-shadow: none;
    color: #e0f2fe;
    filter: drop-shadow(0 0 8px rgba(165, 243, 252, 1)) drop-shadow(0 0 20px rgba(56, 189, 248, 0.8));
    transform: scale(1.08);
}
.success-stories-controls .success-prev:hover svg,
.success-stories-controls .success-next:hover svg {
    transform: none;
}

/* Hack Radar unsubscribe flow */
.unsubscribe-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.unsubscribe-container {
    max-width: 640px;
}

.unsubscribe-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.25rem;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: inherit;
}

.unsubscribe-title {
    margin: 0 0 0.75rem;
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.unsubscribe-copy {
    opacity: 0.85;
    margin: 0 0 1.25rem;
}

.unsubscribe-copy-spaced {
    margin-bottom: 1.5rem;
}

.unsubscribe-copy-last {
    margin-bottom: 0;
}

.unsubscribe-link {
    color: hsl(190 95% 60%);
}

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

.unsubscribe-primary,
.unsubscribe-secondary {
    border-radius: 9999px;
    font-family: inherit;
    text-decoration: none;
}

.unsubscribe-primary {
    padding: 0.7rem 1.75rem;
    background: linear-gradient(135deg, hsl(190 95% 55%), hsl(265 80% 60%));
    color: white;
    border: 0;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 6px 24px rgba(120, 80, 220, 0.35);
}

.unsubscribe-secondary {
    padding: 0.7rem 1.5rem;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-weight: 500;
    cursor: pointer;
    font-size: 0.9rem;
}

/* Shared tool-family breadcrumb */
.tools-breadcrumb {
    position: relative;
    z-index: 10;
    padding: 0.75rem 2rem;
    background: linear-gradient(180deg, rgba(16, 16, 28, 0.9) 0%, transparent 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.tools-breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.4rem;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    font-family: var(--attack-font-mono, var(--font-mono, monospace));
    font-size: 0.78rem;
}

.tools-breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.tools-breadcrumb-link {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.2s ease;
}

.tools-breadcrumb-link:hover {
    color: var(--accent-cyan, var(--accent-secondary, #45f4ff));
}

.tools-breadcrumb-link svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
    opacity: 0.7;
}

.tools-breadcrumb-separator {
    color: rgba(124, 58, 237, 0.45);
    font-size: 0.7rem;
}

.tools-breadcrumb-current {
    color: var(--accent-cyan, var(--accent-secondary, #45f4ff));
    font-weight: 500;
}
