/* ========================================
   ULTRA-PREMIUM DESIGN SYSTEM 2026
   ======================================== */

:root {
    /* Colors */
    --color-dark: #0a0e27;
    --color-dark-secondary: #1a1f3a;
    --color-dark-tertiary: #2a2f4a;
    --color-light: #ffffff;
    --color-gray-50: #f9fafb;
    --color-gray-100: #f3f4f6;
    --color-gray-200: #e5e7eb;
    --color-gray-300: #d1d5db;
    --color-gray-600: #4b5563;
    --color-gray-700: #374151;
    --color-gray-900: #111827;

    --color-primary: #ff6b35;
    --color-primary-dark: #e85a28;
    --color-accent: #f7931e;
    --color-accent-light: #ffb84d;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    --gradient-mesh: radial-gradient(at 0% 0%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(at 100% 100%, rgba(247, 147, 30, 0.15) 0%, transparent 50%),
        radial-gradient(at 50% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 50%);

    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-2xl: 64px;
    --spacing-3xl: 96px;
    --spacing-4xl: 128px;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;

    /* Shadows - Layered Depth */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15), 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-2xl: 0 30px 80px rgba(0, 0, 0, 0.2), 0 12px 32px rgba(0, 0, 0, 0.1);

    /* Transitions */
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--color-gray-900);
    background: var(--color-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ========================================
   ANIMATED BACKGROUND GRADIENT
   ======================================== */

.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-mesh);
    z-index: -1;
    animation: gradientShift 20s ease infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.5;
    }
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */

[data-scroll-animate] {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s var(--transition-smooth) forwards;
}

[data-scroll-animate]:nth-child(2) {
    animation-delay: 0.1s;
}

[data-scroll-animate]:nth-child(3) {
    animation-delay: 0.2s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   HERO SECTION - ULTRA PREMIUM
   ======================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    /* Changed from center to move content up */
    padding-top: var(--spacing-lg);
    /* Add manual top spacing (~32px) - Aggressively Reduced */
    overflow: hidden;
    background: #000;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(30, 41, 59, 0.3) 0%, #000 100%);
    z-index: 1;
}

/* Inline Video Styling */
.hero-video-container {
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
    width: 100%;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.hero-inline-video {
    width: 100%;
    aspect-ratio: 16/9;
    display: block;
    --media-object-fit: cover;
    --media-object-position: center;
    --controls: block;
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.90) 0%, rgba(10, 14, 39, 0.85) 50%, rgba(10, 14, 39, 0.80) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 100;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    padding-top: var(--spacing-sm);
    /* Reduced from lg to sm (~16px) for tight top spacing */
    padding-bottom: var(--spacing-2xl);
}

.hero-content {
    max-width: 680px;
}

/* Badge Pill */
.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-accent-light);
    margin-bottom: var(--spacing-md);
    backdrop-filter: blur(10px);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

/* Headline with Gradient */
.hero-headline {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 900;
    line-height: 1.1;
    color: var(--color-light);
    margin-bottom: var(--spacing-lg);
    letter-spacing: -0.02em;
    max-width: 100%;
    word-wrap: break-word;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Hero Bullets */
.hero-bullets {
    list-style: none;
    margin-bottom: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.hero-bullets li {
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s var(--transition-smooth);
}

.hero-bullets li:hover {
    transform: translateX(8px);
    color: var(--color-light);
}

.bullet-icon {
    color: var(--color-primary);
    font-size: 20px;
    font-weight: 700;
}

/* Primary CTA Button */
.cta-button-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    font-size: 17px;
    font-weight: 700;
    color: var(--color-light);
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.4s var(--transition-smooth);
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.4), 0 0 0 0 rgba(255, 107, 53, 0.5);
    position: relative;
    overflow: hidden;
    /* Restored to clip the shine effect ::before element */
    margin-bottom: 0;
    z-index: 101;
    /* Higher than hero-container's 100 if needed */
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
    position: relative;
    z-index: 102;
    /* Ensure above hero-content */
}

/* Secondary CTA Button */
.cta-button-secondary {
    position: relative;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-light);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.cta-button-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--color-light);
    transform: translateY(-2px);
}

.cta-button-secondary .play-icon-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--color-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: transform 0.3s var(--transition-bounce);
}

.cta-button-secondary:hover .play-icon-circle {
    transform: scale(1.1);
    color: var(--color-primary-dark);
}

.cta-button-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button-primary:hover::before {
    left: 100%;
}

.cta-button-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.5), 0 0 0 4px rgba(255, 107, 53, 0.2);
}

.cta-button-primary:active {
    transform: translateY(-1px) scale(0.98);
}

.cta-button-primary svg {
    transition: transform 0.3s var(--transition-bounce);
}

.cta-button-primary:hover svg {
    transform: translateX(4px);
}

/* Video Wrapper */
.video-wrapper {
    margin-bottom: var(--spacing-xl);
}

.video-placeholder {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    border-radius: var(--radius-lg);
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all 0.4s var(--transition-smooth);
}

.video-placeholder:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.25) 0%, rgba(118, 75, 162, 0.25) 100%);
    transform: scale(1.02);
}

.video-play-button {
    transition: all 0.3s var(--transition-bounce);
}

.video-placeholder:hover .video-play-button {
    transform: scale(1.1);
}

.video-overlay-text {
    color: white;
    font-size: 15px;
    font-weight: 600;
    opacity: 0.9;
}

/* Trust Stats */
.trust-stats {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-size: 32px;
    font-weight: 900;
    color: var(--color-light);
    line-height: 1;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2), transparent);
}

/* ========================================
   VIDEO MODAL
   ======================================== */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--transition-smooth);
}

.video-modal.active {
    opacity: 1;
    pointer-events: all;
}

.video-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    aspect-ratio: 16/9;
    background: black;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: transform 0.4s var(--transition-bounce);
}

.video-modal.active .video-modal-content {
    transform: scale(1);
}

.video-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    z-index: 20;
    /* Ensure on top of video */
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(4px);
}

.video-modal-close:hover {
    background: rgba(255, 107, 53, 0.9);
    border-color: var(--color-primary);
    backdrop-filter: blur(4px);
}

.modal-mux-player {
    width: 100%;
    height: 100%;
    display: block;
    aspect-ratio: 16/9;
    --media-primary-color: var(--color-primary);
    --media-secondary-color: rgba(255, 255, 255, 0.5);
    --media-accent-color: var(--color-primary);
    --media-text-color: #ffffff;
    --media-control-bar-background-color: rgba(0, 0, 0, 0.7);
    --video-control-bar-height: 48px;
    object-fit: contain;
    background-color: #000;
}

/* ========================================
   FLOATING FORM - ADVANCED GLASSMORPHISM
   ======================================== */

.floating-form-wrapper {
    position: relative;
    align-self: start;
    position: sticky;
    top: 24px;
}

.floating-form {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    padding: 36px 32px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    max-width: 420px;
    transition: all 0.4s var(--transition-smooth);
}

.floating-form:hover {
    transform: translateY(-4px);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.form-header {
    margin-bottom: var(--spacing-lg);
}

.form-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--color-light);
    margin-bottom: 8px;
    text-align: center;
}

.form-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

.form-group {
    margin-bottom: 14px;
}

.form-group input {
    width: 100%;
    padding: 15px 20px;
    font-size: 15px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    transition: all 0.3s var(--transition-smooth);
    font-family: inherit;
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-dark);
}

.form-group input::placeholder {
    color: var(--color-gray-600);
}

.form-group input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.15), 0 4px 12px rgba(255, 107, 53, 0.2);
    transform: translateY(-2px);
}

.cta-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 28px;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-light);
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
    box-shadow: 0 6px 24px rgba(255, 107, 53, 0.35);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.45);
}

.cta-button svg {
    transition: transform 0.3s var(--transition-bounce);
}

.cta-button:hover svg {
    transform: translateX(3px);
}

.form-microcopy {
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 12px;
}

/* ========================================
   SECTION STYLING
   ======================================== */

section {
    position: relative;
    padding: var(--spacing-4xl) 0;
}

.section-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--spacing-md);
}

.section-header {
    margin-bottom: var(--spacing-2xl);
}

.section-header.centered {
    text-align: center;
}

.section-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    color: var(--color-dark);
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.section-subtitle {
    font-size: 20px;
    color: var(--color-gray-600);
    font-weight: 500;
    max-width: 600px;
}

.section-header.centered .section-subtitle {
    margin: 0 auto;
}

/* ========================================
   SOCIAL PROOF - BENTO GRID
   ======================================== */

.social-proof {
    background: var(--color-light);
}

.bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

.bento-item {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s var(--transition-smooth);
    aspect-ratio: 4/3;
}

.bento-item.large {
    grid-column: 1;
    aspect-ratio: 16/9;
}

.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--transition-smooth);
}

.bento-item:hover img {
    transform: scale(1.05);
}

.bento-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-lg);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    transform: translateY(100%);
    transition: transform 0.4s var(--transition-smooth);
}

.bento-item:hover .bento-overlay {
    transform: translateY(0);
}

.bento-overlay h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.bento-overlay p {
    font-size: 14px;
    opacity: 0.9;
}

.bento-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

/* ========================================
   COURSE PROGRAMS - ULTRA PREMIUM CARDS
   ======================================== */

.course-programs {
    background: linear-gradient(180deg,
            var(--color-gray-50) 0%,
            #f0f4f8 30%,
            #e8f0f7 70%,
            var(--color-light) 100%);
    position: relative;
    overflow: hidden;
}

.course-programs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 15% 25%, rgba(255, 107, 53, 0.06) 0%, transparent 35%),
        radial-gradient(circle at 85% 75%, rgba(247, 147, 30, 0.06) 0%, transparent 35%),
        radial-gradient(circle at 50% 50%, rgba(102, 126, 234, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.course-programs .container {
    position: relative;
    z-index: 1;
}

.programs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    max-width: 1100px;
    margin: 0 auto;
}

.program-card {
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.98) 0%,
            rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    border: 2px solid rgba(255, 107, 53, 0.12);
    transition: all 0.5s var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--transition-smooth);
}

.program-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(255, 107, 53, 0.02) 0%,
            rgba(247, 147, 30, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.5s var(--transition-smooth);
    pointer-events: none;
}

.program-card:hover::before {
    transform: scaleX(1);
}

.program-card:hover::after {
    opacity: 1;
}

.program-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.15);
    border-color: var(--color-primary);
}

.program-card.featured {
    border-color: var(--color-primary);
    background: linear-gradient(135deg,
            rgba(255, 247, 245, 0.98) 0%,
            rgba(255, 250, 248, 0.95) 100%);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.12);
}

.program-card.featured::before {
    transform: scaleX(1);
}

.program-card.featured::after {
    background: linear-gradient(135deg,
            rgba(255, 107, 53, 0.04) 0%,
            rgba(247, 147, 30, 0.04) 100%);
    opacity: 1;
}

/* Program Badge */
.program-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: white;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 100px;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    animation: badgePulse 2s ease-in-out infinite;
}

.program-badge.premium {
    background: linear-gradient(135deg, #667eea, #764ba2);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

@keyframes badgePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Program Header */
.program-header {
    margin-bottom: var(--spacing-lg);
    padding-right: 100px;
    /* Space for badge */
}

.program-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
}

.program-duration {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 107, 53, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary);
}

.program-duration svg {
    color: var(--color-primary);
}

/* Program Content */
.program-content {
    margin-bottom: var(--spacing-xl);
}

.program-feature {
    margin-bottom: var(--spacing-lg);
}

.feature-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-gray-700);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-sm);
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tags span {
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--color-gray-100), var(--color-gray-50));
    border: 1px solid var(--color-gray-200);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-gray-700);
    transition: all 0.3s var(--transition-smooth);
}

.feature-tags span:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.tag-note {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1)) !important;
    border-color: rgba(102, 126, 234, 0.3) !important;
    color: #667eea !important;
    font-style: italic;
}

/* Program Specs */
.program-specs {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: var(--spacing-lg);
    background: var(--color-gray-50);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-gray-200);
}

.spec-item {
    display: flex;
    gap: 8px;
    font-size: 14px;
    line-height: 1.6;
}

.spec-label {
    font-weight: 700;
    color: var(--color-dark);
    min-width: 70px;
    flex-shrink: 0;
}

.spec-value {
    color: var(--color-gray-600);
    font-weight: 500;
}

/* Program CTA */
.program-cta {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 700;
    color: var(--color-light);
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.4s var(--transition-smooth);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.program-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.program-cta:hover::before {
    left: 100%;
}

.program-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.program-cta svg {
    transition: transform 0.3s var(--transition-bounce);
}

.program-cta:hover svg {
    transform: translateX(4px);
}

/* Featured Card Extra Styling */
.program-card.featured .program-cta {
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
}

.program-card.featured .program-cta:hover {
    box-shadow: 0 12px 36px rgba(255, 107, 53, 0.5);
}

/* Responsive Grid */
@media (min-width: 768px) {
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Featured card spans full width on larger screens */
    .program-card.featured {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-xl);
        align-items: start;
    }

    .program-card.featured .program-header {
        grid-column: 1;
    }

    .program-card.featured .program-content {
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .program-card.featured .program-cta {
        grid-column: 2;
        grid-row: 1;
        align-self: start;
        margin-top: 60px;
    }
}

/* ========================================
   SOCIAL PROOF - BENTO GRID
   ======================================== */

.social-proof {
    background: linear-gradient(180deg,
            var(--color-light) 0%,
            #f8f9fa 50%,
            var(--color-gray-50) 100%);
    position: relative;
}

.social-proof::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(247, 147, 30, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.social-proof .container {
    position: relative;
    z-index: 1;
}

.bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}

.bento-item {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-lg);
    transition: all 0.5s var(--transition-smooth);
    background: white;
}

.bento-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-2xl);
}

.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--transition-smooth);
}

.bento-item:hover img {
    transform: scale(1.05);
}

.bento-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-xl);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.4s var(--transition-smooth);
}

.bento-item:hover .bento-overlay {
    transform: translateY(0);
    opacity: 1;
}

.bento-overlay h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.bento-overlay p {
    font-size: 14px;
    opacity: 0.9;
}

@media (min-width: 768px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-item.large {
        grid-row: span 2;
        aspect-ratio: 4/5;
    }
}

/* ========================================
   WHY CHOOSE US - FOCUS POINTS & COMPARISON
   ======================================== */

.why-choose {
    background: linear-gradient(180deg,
            var(--color-gray-50) 0%,
            #ffffff 30%,
            #fafbfc 70%,
            var(--color-gray-50) 100%);
    position: relative;
    overflow: hidden;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(255, 107, 53, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(247, 147, 30, 0.04) 0%, transparent 40%);
    pointer-events: none;
}

.why-choose .container {
    position: relative;
    z-index: 1;
}

/* Individual Focus Points Grid */
.focus-points-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-3xl);
}

.focus-point {
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(10px);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    border: 2px solid rgba(255, 107, 53, 0.1);
    transition: all 0.4s var(--transition-smooth);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.focus-point::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(247, 147, 30, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s var(--transition-smooth);
}

.focus-point:hover::before {
    opacity: 1;
}

.focus-point:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.15);
    border-color: var(--color-primary);
}

.focus-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(247, 147, 30, 0.15));
    border-radius: 50%;
    color: var(--color-primary);
    transition: all 0.4s var(--transition-bounce);
    position: relative;
}

.focus-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s var(--transition-smooth);
}

.focus-point:hover .focus-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.25), rgba(247, 147, 30, 0.25));
}

.focus-point:hover .focus-icon::after {
    opacity: 0.3;
    transform: scale(1.2);
}

.focus-point h4 {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: var(--spacing-sm);
}

.focus-point p {
    font-size: 15px;
    color: var(--color-gray-600);
    line-height: 1.6;
}

/* Responsive Focus Grid */
@media (min-width: 640px) {
    .focus-points-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .focus-points-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Comparison Cards */

.comparison-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-card {
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    border: 2px solid;
    transition: all 0.4s var(--transition-smooth);
}

.comparison-card.negative {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-color: #fecaca;
}

.comparison-card.positive {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-color: #bbf7d0;
}

.comparison-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: var(--spacing-lg);
}

.card-icon {
    font-size: 28px;
}

.card-header h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--color-dark);
}

.comparison-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.comparison-list li {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-gray-700);
    padding-left: 24px;
    position: relative;
}

.comparison-list li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: var(--color-primary);
    font-size: 20px;
}

/* ========================================
   URGENCY CTA - DARK GRADIENT
   ======================================== */

.urgency-cta {
    position: relative;
    background: var(--color-dark);
    overflow: hidden;
}

.urgency-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 107, 53, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(247, 147, 30, 0.2) 0%, transparent 50%);
    animation: gradientPulse 10s ease-in-out infinite;
}

@keyframes gradientPulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 0.8;
    }
}

.urgency-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid rgba(255, 107, 53, 0.4);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-accent-light);
    margin-bottom: var(--spacing-md);
}

.urgency-title {
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 900;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.03em;
    color: var(--color-light);
}

.urgency-text {
    font-size: 20px;
    margin-bottom: var(--spacing-xl);
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
}

.cta-button-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 22px 48px;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-light);
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.4s var(--transition-smooth);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.5);
}

.cta-button-large:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 50px rgba(255, 107, 53, 0.6);
}

.cta-button-large svg {
    transition: transform 0.3s var(--transition-bounce);
}

.cta-button-large:hover svg {
    transform: translateX(4px);
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq {
    background: linear-gradient(180deg,
            var(--color-light) 0%,
            #f8f9fa 50%,
            var(--color-gray-50) 100%);
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 25% 35%, rgba(255, 107, 53, 0.04) 0%, transparent 45%),
        radial-gradient(circle at 75% 65%, rgba(247, 147, 30, 0.04) 0%, transparent 45%);
    pointer-events: none;
}

.faq .container {
    position: relative;
    z-index: 1;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.faq-item {
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 2px solid rgba(255, 107, 53, 0.1);
    overflow: hidden;
    transition: all 0.3s var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.faq-item:hover {
    border-color: rgba(255, 107, 53, 0.2);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-lg) var(--spacing-xl);
    background: transparent;
    border: none;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-dark);
    text-align: left;
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s var(--transition-smooth);
    color: var(--color-primary);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--transition-smooth);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 var(--spacing-xl) var(--spacing-lg);
    color: var(--color-gray-600);
    line-height: 1.7;
}

/* ========================================
   FINAL CTA SECTION
   ======================================== */

.final-cta {
    background: linear-gradient(180deg,
            var(--color-gray-50) 0%,
            #e8f0f7 50%,
            var(--color-light) 100%);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 30% 40%, rgba(255, 107, 53, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 70% 60%, rgba(247, 147, 30, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

.final-cta .container {
    position: relative;
    z-index: 1;
}

.final-cta-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(20px);
    padding: var(--spacing-3xl) var(--spacing-xl);
    border-radius: var(--radius-2xl);
    text-align: center;
    border: 2px solid rgba(255, 107, 53, 0.15);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.12);
}

.final-cta-content {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.final-cta-title {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 900;
    margin-bottom: var(--spacing-md);
    color: var(--color-dark);
    letter-spacing: -0.02em;
}

.final-cta-text {
    font-size: 20px;
    color: var(--color-gray-600);
}

.final-actions {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    align-items: center;
    justify-content: center;
}

.final-form-inline {
    width: 100%;
    max-width: 800px;
}

.inline-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.inline-form input {
    padding: 16px 20px;
    font-size: 15px;
    border: 2px solid var(--color-gray-200);
    border-radius: var(--radius-md);
    font-family: inherit;
    transition: all 0.3s var(--transition-smooth);
}

.inline-form input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.inline-form button {
    width: 100%;
}

/* Desktop layout for inline form */
@media (min-width: 768px) {
    .inline-form {
        flex-direction: row;
        align-items: stretch;
    }

    .inline-form input {
        flex: 1;
        min-width: 0;
    }

    .inline-form button {
        flex-shrink: 0;
        width: auto;
        min-width: 180px;
    }
}

/* ========================================
   STICKY MOBILE CTA
   ======================================== */

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-sm) var(--spacing-md);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s var(--transition-smooth);
    border-top: 1px solid var(--color-gray-200);
}

.sticky-cta.visible {
    transform: translateY(0);
}

.cta-button-sticky {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-light);
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
    transition: all 0.3s var(--transition-smooth);
}

.cta-button-sticky:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 107, 53, 0.4);
}

/* ========================================
   RESPONSIVE - TABLET & DESKTOP
   ======================================== */

@media (min-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr 420px;
        gap: var(--spacing-2xl);
        align-items: center;
    }

    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-item.large {
        grid-column: 1 / -1;
    }

    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .comparison-cards {
        grid-template-columns: 1fr 1fr;
    }

    .final-actions {
        flex-direction: row;
        justify-content: center;
    }

    .sticky-cta {
        display: none;
    }
}

@media (min-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr 450px;
    }

    .bento-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .bento-item.large {
        grid-column: 1;
        grid-row: 1 / 3;
        aspect-ratio: auto;
    }

    .skills-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ========================================
   ACCESSIBILITY & PERFORMANCE
   ======================================== */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

button:focus-visible,
input:focus-visible,
a:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Smooth scrolling for all browsers */
@supports (scroll-behavior: smooth) {
    html {}
}

/* ========================================
   STICKY MOBILE CTA - THREE BUTTON BAR
   ======================================== */
.sticky-cta {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 99999 !important;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    background: #1a1a2e !important;
    /* Fixed dark color to ensure contrast */
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3) !important;
    border-top: 2px solid rgba(255, 107, 53, 0.3) !important;
    padding: 8px !important;
    display: flex !important;
    justify-content: center;
}

.sticky-cta.visible {
    transform: translateY(0) !important;
    opacity: 1 !important;
    pointer-events: all !important;
}

.sticky-cta-container {
    display: flex !important;
    gap: 10px !important;
    width: 100% !important;
    max-width: 500px !important;
    margin: 0 auto !important;
}

/* Force Reset on Links and Buttons */
.sticky-cta .sticky-btn {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
    padding: 10px 5px !important;
    border-radius: 12px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    color: #ffffff !important;
    transition: all 0.3s ease !important;
    border: none !important;
    cursor: pointer !important;
    outline: none !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    box-sizing: border-box !important;
}

/* Specific button colors */
.sticky-cta .call-btn {
    background: #2563eb !important;
    /* High contrast blue */
}

.sticky-cta .whatsapp-btn {
    background: #22c55e !important;
    /* WhatsApp Green */
}

.sticky-cta .register-btn {
    flex: 1.5 !important;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%) !important;
    font-size: 13px !important;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4) !important;
}

.sticky-cta .sticky-btn span {
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    font-family: 'Inter', sans-serif !important;
}

.sticky-cta .sticky-btn svg {
    margin-bottom: 2px !important;
}

.sticky-cta .sticky-btn:active {
    transform: scale(0.95) !important;
}

/* Responsive Overrides */
@media (min-width: 769px) {
    .sticky-cta {
        display: none !important;
    }
}

@media (max-width: 360px) {
    .sticky-cta .sticky-btn span {
        font-size: 9px !important;
    }

    .sticky-cta .register-btn {
        font-size: 11px !important;
    }
}


/* ========================================
   POPUP FORM MODAL
   ======================================== */
.popup-form-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--transition-smooth);
}

.popup-form-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-form-modal {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-xl);
    max-width: 500px;
    width: 100%;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 107, 53, 0.15);
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s var(--transition-bounce);
}

.popup-form-overlay.active .popup-form-modal {
    transform: scale(1) translateY(0);
}

.popup-close-btn {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: rgba(0, 0, 0, 0.05);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    color: var(--color-gray-600);
    transition: all 0.2s ease;
    line-height: 1;
}

.popup-close-btn:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.popup-form-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.popup-form-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: var(--spacing-xs);
}

.popup-form-subtitle {
    font-size: 16px;
    color: var(--color-gray-600);
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.popup-form-group input {
    width: 100%;
    padding: var(--spacing-md);
    border: 2px solid var(--color-gray-200);
    border-radius: var(--radius-md);
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

.popup-form-group input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.popup-submit-btn {
    width: 100%;
    padding: var(--spacing-md) var(--spacing-xl);
    background: var(--gradient-primary);
    color: var(--color-light);
    border: none;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s var(--transition-bounce);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
    border-bottom: 3px solid rgba(194, 65, 12, 0.3);
}

.popup-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.4);
}

.popup-submit-btn:active {
    transform: translateY(0);
}

.popup-form-microcopy {
    text-align: center;
    font-size: 13px;
    color: var(--color-gray-600);
    margin-top: -8px;
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .popup-form-modal {
        padding: var(--spacing-lg);
    }

    .popup-form-title {
        font-size: 24px;
    }
}