/** Shopify CDN: Minification failed

Line 1843:1 Unexpected "0"
Line 3624:16 Expected identifier but found whitespace
Line 3630:0 Unexpected "@media"
Line 4343:1 Expected "}" to go with "{"

**/
/* Corporate Training Landing Page - Complete Styles */

/* Import Google Fonts for consistency */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;900&display=swap');

/* Scoped wrapper - all styles contained within this */
.corporate-training-wrapper {
    font-family: 'Inter', var(--font-body-family), -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Reset box-sizing within our wrapper */
.corporate-training-wrapper *,
.corporate-training-wrapper *::before,
.corporate-training-wrapper *::after {
    box-sizing: border-box;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Container */
.corporate-training-wrapper .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation - Completely scoped */
.corporate-training-wrapper .corporate-nav {
    background: white;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    margin: 0;
    border: none;
    transition: all 0.3s ease;
}

.corporate-training-wrapper .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    position: relative;
}

.corporate-training-wrapper .logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.corporate-training-wrapper .logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.corporate-training-wrapper .logo-link:hover {
    opacity: 0.9;
}

.corporate-training-wrapper .logo-link:hover .logo-main {
    color: #2b1885;
}

.corporate-training-wrapper .logo-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2b1885, #124273);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    font-weight: 900;
    flex-shrink: 0;
}

.corporate-training-wrapper .logo-icon-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.corporate-training-wrapper .logo-text {
    display: flex;
    flex-direction: column;
}

.corporate-training-wrapper .logo-main {
    font-size: 28px;
    font-weight: 700;
    color: #2b1885;
    line-height: 1;
    margin: 0;
}

.corporate-training-wrapper .logo-sub {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    margin-top: 2px;
}

.corporate-training-wrapper .nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.corporate-training-wrapper .nav-links li {
    margin: 0;
    padding: 0;
}

.corporate-training-wrapper .nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    padding: 10px 0;
    display: block;
}

.corporate-training-wrapper .nav-links a:hover {
    color: #2b1885;
}

/* Login Button Styling */
.corporate-training-wrapper .nav-login-btn {
    background: linear-gradient(135deg, #2b1885, #9082d5) !important;
    color: white !important;
    padding: 12px 24px !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(43, 24, 133, 0.2) !important;
    border: 2px solid transparent !important;
}

.corporate-training-wrapper .nav-login-btn:hover {
    background: linear-gradient(135deg, #1f1366, #7a6bc7) !important;
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(43, 24, 133, 0.3) !important;
}

/* Mobile Menu */
.corporate-training-wrapper .mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    justify-content: space-around;
    z-index: 1001;
}

.corporate-training-wrapper .mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
    display: block;
    transform-origin: center;
}

.corporate-training-wrapper .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.corporate-training-wrapper .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.corporate-training-wrapper .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section - Luxury Redesign */
.corporate-training-wrapper .hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 25%, #4338ca 50%, #6366f1 75%, #8b5cf6 100%);
    padding: 80px 0 100px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0;
}

/* Animated Background Shapes */
.corporate-training-wrapper .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(67, 56, 202, 0.15) 0%, transparent 50%);
    animation: backgroundFloat 20s ease-in-out infinite;
    z-index: 1;
}

@keyframes backgroundFloat {
    0%, 100% { 
        transform: rotate(0deg) scale(1);
        opacity: 0.8;
    }
    33% { 
        transform: rotate(120deg) scale(1.1);
        opacity: 0.6;
    }
    66% { 
        transform: rotate(240deg) scale(0.9);
        opacity: 0.9;
    }
}

/* Geometric Shapes */
.corporate-training-wrapper .hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.corporate-training-wrapper .geometric-shape {
    position: absolute;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.corporate-training-wrapper .shape-1 {
    top: 10%;
    left: 10%;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #8b5cf6, #6366f1);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation-delay: 0s;
}

.corporate-training-wrapper .shape-2 {
    top: 20%;
    right: 15%;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #6366f1, #4338ca);
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    animation-delay: 2s;
}

.corporate-training-wrapper .shape-3 {
    bottom: 20%;
    left: 15%;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #4338ca, #3730a3);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    animation-delay: 4s;
}

.corporate-training-wrapper .shape-4 {
    bottom: 15%;
    right: 20%;
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #8b5cf6, #a855f7);
    border-radius: 50%;
    animation-delay: 1s;
}

.corporate-training-wrapper .shape-5 {
    top: 60%;
    left: 5%;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #6366f1, #8b5cf6);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.1;
    }
    50% { 
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.2;
    }
}

.corporate-training-wrapper .hero-content {
    position: relative;
    z-index: 3;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
    padding: 40px;
}

.corporate-training-wrapper .hero h1 {
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.1;
    color: white;
    letter-spacing: -0.03em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    font-family: 'Inter', var(--font-heading-family), sans-serif;
    position: relative;
    overflow: hidden;
    background: none;
    padding: 0;
    border: none;
}

/* Individual word animation setup */
.corporate-training-wrapper .hero h1 .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(60px) rotateX(-90deg);
    animation: wordReveal 0.8s ease-out forwards;
    transform-origin: center bottom;
    margin-right: 0.2em;
}

.corporate-training-wrapper .hero h1 .word:nth-child(1) { animation-delay: 0.2s; }
.corporate-training-wrapper .hero h1 .word:nth-child(2) { animation-delay: 0.4s; }
.corporate-training-wrapper .hero h1 .word:nth-child(3) { animation-delay: 0.6s; }
.corporate-training-wrapper .hero h1 .word:nth-child(4) { animation-delay: 0.8s; }
.corporate-training-wrapper .hero h1 .word:nth-child(5) { animation-delay: 1.0s; }
.corporate-training-wrapper .hero h1 .word:nth-child(6) { animation-delay: 1.2s; }

@keyframes wordReveal {
    0% {
        opacity: 0;
        transform: translateY(60px) rotateX(-90deg);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-10px) rotateX(-45deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
    }
}

/* Subtle glow animation after text reveals */
.corporate-training-wrapper .hero h1::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: titleGlow 2s ease-in-out 1.8s forwards;
    pointer-events: none;
}

@keyframes titleGlow {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.corporate-training-wrapper .hero-tagline {
    font-size: 1.6rem;
    margin-bottom: 50px;
    opacity: 0;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
    animation: heroTaglineSlide 1.2s ease-out 1.4s forwards;
    transform: translateY(30px);
    font-family: 'Inter', var(--font-body-family), sans-serif;
    background: none;
    padding: 0;
}

@keyframes heroTaglineSlide {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.corporate-training-wrapper .cta-buttons {
    margin-top: 50px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: ctaButtonsSlide 1.2s ease-out 1.8s forwards;
    transform: translateY(30px);
}

@keyframes ctaButtonsSlide {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons - Styled to avoid theme conflicts */
.corporate-training-wrapper .btn-primary,
.corporate-training-wrapper .btn-secondary {
    font-family: 'Inter', var(--font-body-family), sans-serif;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    padding: 20px 45px;
    text-align: center;
    border: none;
    outline: none;
    background-clip: border-box;
}

.corporate-training-wrapper .btn-primary {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    color: #1e3a8a;
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: 700;
    position: relative;
    overflow: hidden;
}

.corporate-training-wrapper .btn-primary::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 ease;
}

.corporate-training-wrapper .btn-primary:hover::before {
    left: 100%;
}

.corporate-training-wrapper .btn-primary:hover {
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    color: #1e3a8a;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.3);
    text-decoration: none;
}

.corporate-training-wrapper .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.corporate-training-wrapper .btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.corporate-training-wrapper .btn-secondary:hover::before {
    left: 100%;
}

.corporate-training-wrapper .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-4px);
    color: white;
    text-decoration: none;
}

/* Scroll Arrow - Updated */
.corporate-training-wrapper .scroll-arrow {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    z-index: 10;
    opacity: 0;
    animation: scrollArrowAppear 1.2s ease-out 2.2s forwards;
}

@keyframes scrollArrowAppear {
    to {
        opacity: 1;
    }
}

.corporate-training-wrapper .scroll-arrow-icon {
    width: 55px;
    height: 55px;
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.corporate-training-wrapper .scroll-arrow-icon:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.8);
    transform: scale(1.1);
}

.corporate-training-wrapper .scroll-arrow-icon::after {
    content: '↓';
    color: white;
    font-size: 22px;
    font-weight: bold;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

/* Story Introduction - Luxury Redesign */
.corporate-training-wrapper .story-intro {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #334155 50%, #475569 75%, #64748b 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Luxury animated background */
.corporate-training-wrapper .story-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 20%, rgba(99, 102, 241, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 85% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(67, 56, 202, 0.08) 0%, transparent 50%);
    animation: luxuryFloat 25s ease-in-out infinite;
    z-index: 1;
}

@keyframes luxuryFloat {
    0%, 100% { 
        transform: rotate(0deg) scale(1);
        opacity: 0.8;
    }
    25% { 
        transform: rotate(90deg) scale(1.1);
        opacity: 0.6;
    }
    50% { 
        transform: rotate(180deg) scale(0.95);
        opacity: 0.9;
    }
    75% { 
        transform: rotate(270deg) scale(1.05);
        opacity: 0.7;
    }
}

/* Rotating geometric patterns */
.corporate-training-wrapper .story-intro::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(99, 102, 241, 0.03) 60deg, transparent 120deg, rgba(139, 92, 246, 0.03) 180deg, transparent 240deg, rgba(67, 56, 202, 0.03) 300deg, transparent 360deg);
    animation: rotate 40s linear infinite;
    z-index: 1;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.corporate-training-wrapper .story-content {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    color: white;
    position: relative;
    z-index: 3;
    padding: 0 20px;
}

/* Luxury icon redesign */
.corporate-training-wrapper .story-icon {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 50px;
    font-size: 64px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.2),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
    animation: luxuryIconFloat 4s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

/* Shimmer effect for icon */
.corporate-training-wrapper .story-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: iconShimmer 3s ease-in-out infinite;
    transform: rotate(45deg);
}

@keyframes iconShimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(0%) translateY(0%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

@keyframes luxuryIconFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        box-shadow: 
            0 20px 40px rgba(0, 0, 0, 0.3),
            inset 0 2px 0 rgba(255, 255, 255, 0.2),
            inset 0 -2px 0 rgba(0, 0, 0, 0.2);
    }
    50% { 
        transform: translateY(-15px) scale(1.05);
        box-shadow: 
            0 30px 60px rgba(0, 0, 0, 0.4),
            inset 0 2px 0 rgba(255, 255, 255, 0.3),
            inset 0 -2px 0 rgba(0, 0, 0, 0.1);
    }
}

/* Story text and emphasis */
.corporate-training-wrapper .story-text {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    font-family: 'Inter', var(--font-body-family), sans-serif;
}

.corporate-training-wrapper .story-emphasis {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: #ffffff;
    margin: 80px 0;
    text-transform: uppercase;
    letter-spacing: 4px;
    position: relative;
    display: inline-block;
    font-family: 'Inter', var(--font-heading-family), sans-serif;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #ffffff, #e2e8f0, #ffffff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

/* Fallback for browsers that don't support background-clip */
@supports not (-webkit-background-clip: text) {
    .corporate-training-wrapper .story-emphasis {
        background: none;
        -webkit-text-fill-color: initial;
        color: #ffffff;
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    }
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Trust Section */
.corporate-training-wrapper .trust-section {
    background: #e3e3e4;
    padding: 80px 0;
    text-align: center;
}

.corporate-training-wrapper .trust-content {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto 60px;
    text-align: left;
}

.corporate-training-wrapper .trust-image {
    flex-shrink: 0;
}

.corporate-training-wrapper .founder-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    box-shadow: 0 10px 30px rgba(43, 24, 133, 0.2);
    border: 4px solid white;
    transition: all 0.3s ease;
}

.corporate-training-wrapper .founder-image:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(43, 24, 133, 0.3);
}

.corporate-training-wrapper .trust-quote-section {
    flex: 1;
}

.corporate-training-wrapper .trust-text {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 25px;
    font-style: italic;
    font-family: 'Inter', var(--font-body-family), sans-serif;
    text-align: left;
}

.corporate-training-wrapper .trust-attribution {
    font-weight: 600;
    color: #2b1885;
    font-size: 1.1rem;
    margin: 0;
    font-family: 'Inter', var(--font-body-family), sans-serif;
    text-align: left;
}

.corporate-training-wrapper .trust-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.corporate-training-wrapper .stat {
    text-align: center;
}

.corporate-training-wrapper .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2b1885;
    line-height: 1;
    font-family: 'Inter', var(--font-heading-family), sans-serif;
}

.corporate-training-wrapper .stat-label {
    font-size: 1.3rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 8px;
    font-weight: 500;
    line-height: 1.3;
    font-family: 'Inter', var(--font-body-family), sans-serif;
}

/* Section Headers */
.corporate-training-wrapper .how-it-works, 
.corporate-training-wrapper .video-section, 
.corporate-training-wrapper .features, 
.corporate-training-wrapper .social-proof, 
.corporate-training-wrapper .pricing, 
.corporate-training-wrapper .testimonial, 
.corporate-training-wrapper .faq-section, 
.corporate-training-wrapper .final-cta {
    padding: 100px 0;
}

.corporate-training-wrapper .how-it-works {
    background: white;
}

.corporate-training-wrapper .video-section {
    background: #2b1885;
    color: white;
}

.corporate-training-wrapper .features {
    background: #e3e3e4;
}

.corporate-training-wrapper .social-proof {
    background: white;
}

.corporate-training-wrapper .pricing {
    background: white;
}

.corporate-training-wrapper .testimonial {
    background: #e3e3e4;
}

.corporate-training-wrapper .faq-section {
    background: #e3e3e4;
}

.corporate-training-wrapper .final-cta {
    background: linear-gradient(135deg, #124273, #012b4a);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.corporate-training-wrapper .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.corporate-training-wrapper .section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    font-family: 'Inter', var(--font-heading-family), sans-serif;
    line-height: 1.2;
}

.corporate-training-wrapper .final-cta .section-title,
.corporate-training-wrapper .final-cta h2 {
    color: white;
}

.corporate-training-wrapper .video-section .section-title {
    color: white;
}

.corporate-training-wrapper .section-subtitle {
    font-size: 1.3rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-family: 'Inter', var(--font-body-family), sans-serif;
}

.corporate-training-wrapper .final-cta .section-subtitle,
.corporate-training-wrapper .final-cta p {
    color: rgba(255,255,255,0.95);
}

.corporate-training-wrapper .video-section .section-subtitle {
    color: rgba(255,255,255,0.9);
}

/* ===== LUXURY HOW IT WORKS SECTION ===== */

/* Main Section */
.corporate-training-wrapper .luxury-how-it-works {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 25%, #e2e8f0 50%, #f8fafc 75%, #ffffff 100%);
    padding: 120px 0 140px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Simple floating shapes */
.corporate-training-wrapper .luxury-floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 2;
}

.corporate-training-wrapper .floating-shape {
    position: absolute;
    opacity: 0.08;
    animation: gentleFloat 8s ease-in-out infinite;
}

.corporate-training-wrapper .shape-1 {
    top: 15%;
    left: 8%;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    animation-delay: 0s;
}

.corporate-training-wrapper .shape-2 {
    top: 25%;
    right: 12%;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #8b5cf6, #a855f7);
    border-radius: 8px;
    animation-delay: 2s;
}

.corporate-training-wrapper .shape-3 {
    bottom: 25%;
    left: 12%;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #4338ca, #6366f1);
    border-radius: 50%;
    animation-delay: 1s;
}

.corporate-training-wrapper .shape-4 {
    bottom: 35%;
    right: 15%;
    width: 35px;
    height: 35px;
    background: linear-gradient(45deg, #6366f1, #8b5cf6);
    border-radius: 6px;
    animation-delay: 3s;
}

@keyframes gentleFloat {
    0%, 100% { 
        transform: translateY(0px);
        opacity: 0.08;
    }
    50% { 
        transform: translateY(-15px);
        opacity: 0.12;
    }
}

/* Luxury Section Header */
.corporate-training-wrapper .luxury-section-header {
    text-align: center;
    margin-bottom: 100px;
    position: relative;
}

.corporate-training-wrapper .luxury-section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.1;
    position: relative;
    color: transparent;
    background: linear-gradient(135deg, #1e293b, #374151, #1e293b);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    animation: luxuryGradientShift 4s ease-in-out infinite;
    letter-spacing: -0.02em;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    font-family: 'Inter', var(--font-heading-family), sans-serif;
}

/* Fallback for browsers that don't support background-clip */
@supports not (-webkit-background-clip: text) {
    .corporate-training-wrapper .luxury-cta-title {
        background: none;
        color: white;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
}

@keyframes ctaTitleGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* CTA Description */
.corporate-training-wrapper .luxury-cta-description {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 50px;
    line-height: 1.6;
    font-weight: 400;
    opacity: 0;
    animation: ctaDescriptionSlide 1.2s ease-out 0.5s forwards;
    transform: translateY(20px);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    font-family: 'Inter', var(--font-body-family), sans-serif;
}

@keyframes ctaDescriptionSlide {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CTA Buttons Container */
.corporate-training-wrapper .luxury-cta-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    opacity: 0;
    animation: ctaButtonsSlide 1.2s ease-out 0.8s forwards;
    transform: translateY(30px);
}

@keyframes ctaButtonsSlide {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Single Primary CTA Button */
.corporate-training-wrapper .luxury-cta-primary {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    color: #1e3a8a;
    padding: 25px 60px;
    border-radius: 50px;
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 15px 40px rgba(255, 255, 255, 0.25),
        inset 0 2px 0 rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
    display: inline-block;
    text-align: center;
    min-width: 350px;
    letter-spacing: 0.02em;
    font-family: 'Inter', var(--font-body-family), sans-serif;
}

.corporate-training-wrapper .luxury-cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(30, 58, 138, 0.15), transparent);
    transition: left 0.6s ease;
}

.corporate-training-wrapper .luxury-cta-primary:hover::before {
    left: 100%;
}

.corporate-training-wrapper .luxury-cta-primary:hover {
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    color: #1e3a8a;
    transform: translateY(-8px) scale(1.08);
    box-shadow: 
        0 25px 60px rgba(255, 255, 255, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.6);
    text-decoration: none;
}

/* Trust Indicators */
.corporate-training-wrapper .luxury-trust-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    opacity: 0;
    animation: trustSlide 1.2s ease-out 1.1s forwards;
    transform: translateY(20px);
}

@keyframes trustSlide {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.corporate-training-wrapper .trust-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Inter', var(--font-body-family), sans-serif;
}

.corporate-training-wrapper .trust-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(139, 92, 246, 0.3));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

/* Urgency Badge */
.corporate-training-wrapper .urgency-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4);
    animation: urgencyPulse 2s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-family: 'Inter', var(--font-body-family), sans-serif;
}

@keyframes urgencyPulse {
    0%, 100% { 
        transform: translateX(-50%) scale(1);
        box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4);
    }
    50% { 
        transform: translateX(-50%) scale(1.05);
        box-shadow: 0 12px 35px rgba(239, 68, 68, 0.6);
    }
}

/* Page Content */
.corporate-training-wrapper .page-content {
    padding: 60px 0;
    background: #f8f9fa;
}

.corporate-training-wrapper .page-content .container {
    max-width: 800px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .corporate-training-wrapper .luxury-steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .corporate-training-wrapper .connecting-path {
        display: none;
    }

    .corporate-training-wrapper .luxury-steps-container {
        padding-top: 35px;
    }

    .corporate-training-wrapper .luxury-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    .corporate-training-wrapper .luxury-feature {
        padding: 35px 25px;
    }

    .corporate-training-wrapper .luxury-feature-header {
        padding-right: 45px;
    }

    .corporate-training-wrapper .luxury-feature-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .corporate-training-wrapper .expand-icon {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    /* Show mobile toggle */
    .corporate-training-wrapper .mobile-menu-toggle {
        display: flex !important;
    }
    
    /* Hide desktop nav by default */
    .corporate-training-wrapper .nav-links {
        display: none !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        width: 100% !important;
        background: white !important;
        flex-direction: column !important;
        box-shadow: 0 4px 20px rgba(0,0,0,0.15) !important;
        padding: 0 !important;
        z-index: 999 !important;
        border-top: 1px solid #e3e3e4 !important;
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }
    
    /* Show nav when active */
    .corporate-training-wrapper .nav-links.active {
        display: flex !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
    
    /* Style mobile nav items */
    .corporate-training-wrapper .nav-links li {
        border-bottom: 1px solid #f1f3f4 !important;
        margin: 0 !important;
    }
    
    .corporate-training-wrapper .nav-links li:last-child {
        border-bottom: none !important;
        padding-top: 10px !important;
    }
    
    .corporate-training-wrapper .nav-links a {
        padding: 18px 25px !important;
        display: block !important;
        font-size: 16px !important;
        font-weight: 500 !important;
        transition: all 0.2s ease !important;
        border-left: 4px solid transparent !important;
    }
    
    .corporate-training-wrapper .nav-links a:hover {
        background: #f8f9ff !important;
        border-left-color: #2b1885 !important;
        color: #2b1885 !important;
    }

    /* Mobile Login Button */
    .corporate-training-wrapper .nav-links .nav-login-btn {
        background: linear-gradient(135deg, #2b1885, #9082d5) !important;
        color: white !important;
        margin: 10px 20px !important;
        border-radius: 25px !important;
        text-align: center !important;
        border-left: none !important;
        box-shadow: 0 4px 15px rgba(43, 24, 133, 0.2) !important;
    }

    .corporate-training-wrapper .nav-links .nav-login-btn:hover {
        background: linear-gradient(135deg, #1f1366, #7a6bc7) !important;
        color: white !important;
        border-left: none !important;
        transform: none !important;
    }
    
    .corporate-training-wrapper .hero {
        padding: 60px 0 80px;
        min-height: 85vh;
    }

    .corporate-training-wrapper .hero-content {
        padding: 20px;
    }

    .corporate-training-wrapper .hero h1 {
        font-size: clamp(3.7rem, 8vw, 4rem);
        margin-bottom: 25px;
    }

    .corporate-training-wrapper .hero-tagline {
        font-size: 1.3rem;
        margin-bottom: 40px;
    }

    .corporate-training-wrapper .hero h1 .word {
        animation-duration: 0.6s;
    }

    .corporate-training-wrapper .hero h1 .word:nth-child(1) { animation-delay: 0.1s; }
    .corporate-training-wrapper .hero h1 .word:nth-child(2) { animation-delay: 0.2s; }
    .corporate-training-wrapper .hero h1 .word:nth-child(3) { animation-delay: 0.3s; }
    .corporate-training-wrapper .hero h1 .word:nth-child(4) { animation-delay: 0.5s; }
    .corporate-training-wrapper .hero h1 .word:nth-child(5) { animation-delay: 0.6s; }
    .corporate-training-wrapper .hero h1 .word:nth-child(6) { animation-delay: 0.7s; }

    .corporate-training-wrapper .hero-tagline {
        animation-delay: 1.0s;
    }

    .corporate-training-wrapper .cta-buttons {
        animation-delay: 1.3s;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-top: 40px;
    }

    .corporate-training-wrapper .btn-primary,
    .corporate-training-wrapper .btn-secondary {
        width: 100%;
        max-width: 320px;
        padding: 18px 35px;
        font-size: 1.1rem;
    }

    .corporate-training-wrapper .scroll-arrow {
        bottom: 25px;
        animation-delay: 1.6s;
    }

    .corporate-training-wrapper .scroll-arrow-icon {
        width: 45px;
        height: 45px;
    }

    .corporate-training-wrapper .scroll-arrow-icon::after {
        font-size: 18px;
    }

    /* Hide some geometric shapes on mobile */
    .corporate-training-wrapper .shape-2,
    .corporate-training-wrapper .shape-5 {
        display: none;
    }

    .corporate-training-wrapper .shape-1,
    .corporate-training-wrapper .shape-3,
    .corporate-training-wrapper .shape-4 {
        opacity: 0.05;
        animation-duration: 8s;
    }

    .corporate-training-wrapper .story-intro {
        padding: 80px 0;
    }

    .corporate-training-wrapper .story-icon {
        width: 100px;
        height: 100px;
        font-size: 48px;
        margin-bottom: 40px;
    }

    .corporate-training-wrapper .story-text {
        font-size: 1.4rem;
        padding: 0 10px;
    }

    .corporate-training-wrapper .story-emphasis {
        font-size: clamp(2.5rem, 6vw, 4rem) !important;
        margin: 60px 0 !important;
        letter-spacing: 2px !important;
    }

    .corporate-training-wrapper .luxury-how-it-works {
        padding: 80px 0 100px;
    }

    .corporate-training-wrapper .luxury-steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .corporate-training-wrapper .luxury-step {
        padding: 30px 20px;
        margin: 0 10px;
    }

    .corporate-training-wrapper .luxury-step-icon {
        width: 80px;
        height: 80px;
        font-size: 32px;
    }

    .corporate-training-wrapper .luxury-step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
        top: -12px;
        right: 20px;
        border: 3px solid white;
    }

    .corporate-training-wrapper .luxury-section-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .corporate-training-wrapper .luxury-section-subtitle {
        font-size: 1.2rem;
    }

    /* Disable floating shapes on mobile */
    .corporate-training-wrapper .floating-shape {
        display: none;
    }

    .corporate-training-wrapper .luxury-features {
        padding: 80px 0 100px;
    }

    .corporate-training-wrapper .luxury-features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .corporate-training-wrapper .luxury-feature {
        padding: 30px 25px;
        margin: 0 10px;
    }

    .corporate-training-wrapper .luxury-feature-header {
        gap: 15px;
        margin-bottom: 20px;
        padding-right: 45px;
    }

    .corporate-training-wrapper .luxury-feature-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
        border-radius: 14px;
    }

    .corporate-training-wrapper .expand-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
        top: 15px;
        right: 15px;
    }

    .corporate-training-wrapper .click-indicator {
        bottom: 15px;
        padding: 6px 12px;
        font-size: 0.8rem;
        border-radius: 15px;
        opacity: 0.8 !important;
        transform: translateX(-50%) translateY(0) !important;
    }

    .corporate-training-wrapper .luxury-features-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .corporate-training-wrapper .luxury-features-subtitle {
        font-size: 1.2rem;
    }

    /* Disable floating shapes on mobile */
    .corporate-training-wrapper .features-floating-shape {
        display: none;
    }

    .corporate-training-wrapper .luxury-features::before {
        animation-duration: 35s;
    }

    /* Mobile Modal Styles */
    .luxury-modal {
        margin: 10px;
        max-height: 95vh;
    }

    .luxury-modal-header {
        padding: 30px 25px 0;
    }

    .luxury-modal-content {
        padding: 25px 25px 30px;
    }

    .luxury-modal-icon-container {
        gap: 15px;
        margin-bottom: 25px;
    }

    .luxury-modal-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .luxury-modal-title {
        font-size: 1.5rem;
    }

    .luxury-modal-description {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .luxury-modal-benefits {
        padding: 20px;
    }

    .corporate-training-wrapper .pricing-card.premium {
        transform: none;
    }
    
    .corporate-training-wrapper .pricing-card.premium:hover {
        transform: translateY(-10px);
    }
    
    .corporate-training-wrapper .pricing-grid {
        grid-template-columns: 1fr;
    }

    .corporate-training-wrapper .trust-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        margin-bottom: 40px;
        padding: 0 10px;
    }

    .corporate-training-wrapper .founder-image {
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }

    .corporate-training-wrapper .trust-text,
    .corporate-training-wrapper .trust-attribution {
        text-align: center;
    }

    .corporate-training-wrapper .trust-text {
        font-size: 1.1rem;
        padding: 0 10px;
        line-height: 1.6;
    }

    .corporate-training-wrapper .trust-attribution {
        font-size: 1rem;
        padding: 0 10px;
    }

    .corporate-training-wrapper .trust-stats {
        gap: 30px;
    }

    .corporate-training-wrapper .section-title {
        font-size: 2.2rem;
    }

    .corporate-training-wrapper .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 50px;
    }

    .corporate-training-wrapper .testimonial-card {
        padding: 30px 25px;
    }

    .corporate-training-wrapper .quote-mark {
        font-size: 3rem;
        margin-bottom: 15px;
    }

    .corporate-training-wrapper .testimonial-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .corporate-training-wrapper .company-logo {
        margin-left: 0;
        align-self: flex-end;
    }

    .corporate-training-wrapper .logo-placeholder {
        width: 45px;
        height: 45px;
        font-size: 14px;
    }

    .corporate-training-wrapper .testimonial-content {
        padding: 40px 30px;
    }

    .corporate-training-wrapper .faq-section {
        padding: 60px 0;
    }

    .corporate-training-wrapper .faq-question {
        padding: 20px;
        font-size: 1.1rem;
    }

    .corporate-training-wrapper .faq-icon {
        width: 25px;
        height: 25px;
        font-size: 16px;
    }

    .corporate-training-wrapper .faq-answer-content {
        padding: 0 20px 25px;
        font-size: 1rem;
    }

    .corporate-training-wrapper .faq-container {
        padding: 0 10px;
    }

    .corporate-training-wrapper .video-container {
        margin-top: 40px;
    }

    .corporate-training-wrapper .play-button {
        width: 70px;
        height: 70px;
    }

    .corporate-training-wrapper .play-icon {
        font-size: 24px;
        margin-left: 4px;
    }

    .corporate-training-wrapper .video-overlay {
        padding: 30px 25px 20px;
    }

    .corporate-training-wrapper .video-info h3 {
        font-size: 1.4rem;
    }

    .corporate-training-wrapper .video-info p {
        font-size: 1rem;
    }

    .corporate-training-wrapper .video-duration {
        font-size: 0.9rem;
        padding: 4px 10px;
    }

    .corporate-training-wrapper .luxury-final-cta {
        padding: 80px 0 100px;
    }

    .corporate-training-wrapper .luxury-cta-content {
        padding: 40px 30px;
        border-radius: 25px;
    }

    .corporate-training-wrapper .luxury-cta-title {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .corporate-training-wrapper .luxury-cta-description {
        font-size: 1.2rem;
        margin-bottom: 35px;
    }

    .corporate-training-wrapper .luxury-cta-buttons {
        margin-bottom: 30px;
    }

    .corporate-training-wrapper .luxury-cta-primary {
        width: 100%;
        max-width: 350px;
        padding: 22px 50px;
        font-size: 1.2rem;
        min-width: auto;
    }

    .corporate-training-wrapper .luxury-trust-indicators {
        gap: 25px;
    }

    .corporate-training-wrapper .trust-indicator {
        font-size: 0.9rem;
        gap: 8px;
    }

    .corporate-training-wrapper .trust-icon {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }

    .corporate-training-wrapper .urgency-badge {
        font-size: 0.8rem;
        padding: 6px 16px;
        top: -12px;
    }

    /* Disable floating shapes on mobile */
    .corporate-training-wrapper .cta-floating-shape {
        display: none;
    }

    .corporate-training-wrapper .luxury-final-cta::before {
        animation-duration: 40s;
    }
}

/* Small tablet adjustments */
@media (max-width: 990px) and (min-width: 769px) {
    .corporate-training-wrapper .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
}

/* Large screens */
@media (min-width: 1200px) {
    .corporate-training-wrapper .container {
        max-width: 1400px;
    }
}

/* Modal Z-Index and Interaction Fixes */
.luxury-modal-overlay {
    z-index: 9999 !important;
}

.corporate-training-wrapper .luxury-cta-shapes,
.corporate-training-wrapper .cta-floating-shape {
    pointer-events: none !important;
    z-index: 2 !important;
}

.corporate-training-wrapper .luxury-final-cta::before,
.corporate-training-wrapper .luxury-final-cta::after {
    pointer-events: none !important;
    z-index: 1 !important;
}

.corporate-training-wrapper .luxury-final-cta {
    z-index: auto !important;
}

.corporate-training-wrapper .luxury-cta-content {
    z-index: 4 !important;
}

.corporate-training-wrapper .luxury-feature {
    position: relative !important;
    z-index: 10 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
}

.luxury-modal {
    z-index: 10000 !important;
}

body.modal-open {
    overflow: hidden !important;
}0 4px 20px rgba(30, 41, 59, 0.3);
    font-family: 'Inter', var(--font-heading-family), sans-serif;
}

/* Fallback for browsers that don't support background-clip */
@supports not (-webkit-background-clip: text) {
    .corporate-training-wrapper .luxury-section-title {
        background: none;
        color: #1e293b;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
}

@keyframes luxuryGradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.corporate-training-wrapper .luxury-section-subtitle {
    font-size: 1.4rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
    opacity: 0;
    animation: luxurySubtitleSlide 1.2s ease-out 0.5s forwards;
    transform: translateY(20px);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    font-family: 'Inter', var(--font-body-family), sans-serif;
}

@keyframes luxurySubtitleSlide {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Steps Container */
.corporate-training-wrapper .luxury-steps-container {
    position: relative;
    margin-top: 80px;
    padding-top: 40px;
}

/* Connecting Path */
.corporate-training-wrapper .connecting-path {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    z-index: 1;
    transform: translateY(-50%);
}

.corporate-training-wrapper .path-line {
    position: absolute;
    top: 0;
    left: 12.5%;
    right: 12.5%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(99, 102, 241, 0.3) 20%, 
        rgba(139, 92, 246, 0.5) 50%, 
        rgba(99, 102, 241, 0.3) 80%, 
        transparent 100%
    );
    border-radius: 1px;
}

/* Steps Grid */
.corporate-training-wrapper .luxury-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 3;
}

/* Step Cards */
.corporate-training-wrapper .luxury-step {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(99, 102, 241, 0.1);
    border-radius: 25px;
    padding: 40px 25px;
    text-align: center;
    position: relative;
    overflow: visible;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

.corporate-training-wrapper .luxury-step:hover {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 
        0 20px 50px rgba(99, 102, 241, 0.15),
        0 10px 30px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 1);
}

/* Step Numbers */
.corporate-training-wrapper .luxury-step-number {
    position: absolute;
    top: -15px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 900;
    font-size: 24px;
    z-index: 5;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
    border: 4px solid white;
    transition: box-shadow 0.3s ease;
    font-family: 'Inter', var(--font-heading-family), sans-serif;
}

.corporate-training-wrapper .luxury-step:hover .luxury-step-number {
    box-shadow: 0 12px 30px rgba(99, 102, 241, 0.4);
}

/* Step Icons */
.corporate-training-wrapper .luxury-step-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border: 2px solid rgba(99, 102, 241, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 30px;
    font-size: 40px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.08);
}

.corporate-training-wrapper .luxury-step:hover .luxury-step-icon {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.15));
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.15);
}

/* Typography */
.corporate-training-wrapper .luxury-step h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1e293b;
    position: relative;
    z-index: 2;
    line-height: 1.3;
    transition: all 0.3s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    letter-spacing: -0.01em;
    font-family: 'Inter', var(--font-heading-family), sans-serif;
}

.corporate-training-wrapper .luxury-step:hover h3 {
    color: #0f172a;
    text-shadow: 0 2px 6px rgba(15, 23, 42, 0.15);
    transform: translateY(-1px);
}

.corporate-training-wrapper .luxury-step p {
    color: #64748b;
    line-height: 1.7;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
    font-weight: 500;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    font-family: 'Inter', var(--font-body-family), sans-serif;
}

.corporate-training-wrapper .luxury-step:hover p {
    color: #475569;
    text-shadow: 0 1px 3px rgba(71, 85, 105, 0.1);
}

/* Video Section */
.corporate-training-wrapper .video-container {
    max-width: 900px;
    margin: 0 auto;
    margin-top: 60px;
}

.corporate-training-wrapper .video-wrapper {
    position: relative;
    background: rgba(255,255,255,0.1);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
}

.corporate-training-wrapper .video-wrapper:hover {
    transform: translateY(-15px);
    box-shadow: 0 35px 100px rgba(0,0,0,0.5);
}

.corporate-training-wrapper .video-placeholder {
    position: relative;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #124273, #012b4a);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
}

.corporate-training-wrapper .video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
    transition: all 0.3s ease;
}

.corporate-training-wrapper .video-placeholder:hover .video-thumbnail {
    opacity: 0.9;
    transform: scale(1.05);
}

.corporate-training-wrapper .play-button {
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(144, 130, 213, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(144, 130, 213, 0.4);
    border: 4px solid rgba(255,255,255,0.2);
}

.corporate-training-wrapper .play-button:hover {
    background: #9082d5;
    transform: scale(1.15);
    box-shadow: 0 20px 50px rgba(144, 130, 213, 0.6);
    border-color: rgba(255,255,255,0.4);
}

.corporate-training-wrapper .play-icon {
    color: white;
    font-size: 36px;
    margin-left: 8px;
}

.corporate-training-wrapper .video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    padding: 50px 40px 30px;
    z-index: 2;
}

.corporate-training-wrapper .video-info h3 {
    color: white;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 12px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    font-family: 'Inter', var(--font-heading-family), sans-serif;
}

.corporate-training-wrapper .video-info p {
    color: rgba(255,255,255,0.95);
    font-size: 1.2rem;
    margin-bottom: 15px;
    line-height: 1.4;
    text-shadow: 0 1px 5px rgba(0,0,0,0.3);
    font-family: 'Inter', var(--font-body-family), sans-serif;
}

.corporate-training-wrapper .video-duration {
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.2);
    font-family: 'Inter', var(--font-body-family), sans-serif;
}

/* ===== LUXURY FEATURES SECTION WITH MODALS ===== */

/* Main Features Section */
.corporate-training-wrapper .luxury-features {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #334155 50%, #475569 75%, #64748b 100%);
    padding: 120px 0 140px;
    position: relative;
    overflow: hidden;
    color: white;
}

/* Luxury background effects */
.corporate-training-wrapper .luxury-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 25%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 0%, rgba(67, 56, 202, 0.06) 0%, transparent 40%);
    animation: luxuryBackgroundFloat 25s ease-in-out infinite;
    z-index: 1;
}

@keyframes luxuryBackgroundFloat {
    0%, 100% { 
        transform: rotate(0deg) scale(1);
        opacity: 0.8;
    }
    33% { 
        transform: rotate(120deg) scale(1.05);
        opacity: 0.6;
    }
    66% { 
        transform: rotate(240deg) scale(0.95);
        opacity: 0.9;
    }
}

/* Floating luxury elements */
.corporate-training-wrapper .luxury-features-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 2;
}

.corporate-training-wrapper .features-floating-shape {
    position: absolute;
    opacity: 0.1;
    animation: featuresFloat 10s ease-in-out infinite;
}

.corporate-training-wrapper .features-shape-1 {
    top: 10%;
    left: 5%;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    animation-delay: 0s;
}

.corporate-training-wrapper .features-shape-2 {
    top: 20%;
    right: 8%;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #8b5cf6, #a855f7);
    border-radius: 12px;
    animation-delay: 3s;
}

.corporate-training-wrapper .features-shape-3 {
    bottom: 20%;
    left: 10%;
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #4338ca, #6366f1);
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    animation-delay: 1.5s;
}

.corporate-training-wrapper .features-shape-4 {
    bottom: 30%;
    right: 12%;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #6366f1, #8b5cf6);
    border-radius: 10px;
    animation-delay: 4.5s;
}

@keyframes featuresFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        opacity: 0.1;
    }
    50% { 
        transform: translateY(-25px) scale(1.1);
        opacity: 0.15;
    }
}

/* Luxury Section Header */
.corporate-training-wrapper .luxury-features-header {
    text-align: center;
    margin-bottom: 100px;
    position: relative;
}

.corporate-training-wrapper .luxury-features-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.1;
    position: relative;
    color: transparent;
    background: linear-gradient(135deg, #ffffff, #e2e8f0, #ffffff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    animation: featuresGradientShift 4s ease-in-out infinite;
    letter-spacing: -0.02em;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    font-family: 'Inter', var(--font-heading-family), sans-serif;
}

/* Fallback for browsers that don't support background-clip */
@supports not (-webkit-background-clip: text) {
    .corporate-training-wrapper .luxury-features-title {
        background: none;
        color: white;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
}

@keyframes featuresGradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.corporate-training-wrapper .luxury-features-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
    opacity: 0;
    animation: featuresSubtitleSlide 1.2s ease-out 0.6s forwards;
    transform: translateY(20px);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    font-family: 'Inter', var(--font-body-family), sans-serif;
}

@keyframes featuresSubtitleSlide {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Features Grid - 6 Cards */
.corporate-training-wrapper .luxury-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 80px;
}

/* Individual Feature Cards with Visual Cues - FIXED FOR CLICKS */
.corporate-training-wrapper .luxury-feature {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 25px !important;
    padding: 40px 30px !important;
    position: relative !important;
    overflow: visible !important;
    transition: all 0.4s ease !important;
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    animation: featureReveal 0.8s ease-out forwards;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
    cursor: pointer !important;
    user-select: none !important;
    z-index: 10 !important;
    pointer-events: auto !important;
}

/* Ensure all child elements don't block clicks */
.corporate-training-wrapper .luxury-feature * {
    pointer-events: none !important;
}

/* Re-enable pointer events for specific interactive elements */
.corporate-training-wrapper .luxury-feature .expand-icon {
    pointer-events: auto !important;
}

/* Staggered animations */
.corporate-training-wrapper .luxury-feature:nth-child(1) { animation-delay: 0.1s; }
.corporate-training-wrapper .luxury-feature:nth-child(2) { animation-delay: 0.2s; }
.corporate-training-wrapper .luxury-feature:nth-child(3) { animation-delay: 0.3s; }
.corporate-training-wrapper .luxury-feature:nth-child(4) { animation-delay: 0.4s; }
.corporate-training-wrapper .luxury-feature:nth-child(5) { animation-delay: 0.5s; }
.corporate-training-wrapper .luxury-feature:nth-child(6) { animation-delay: 0.6s; }

@keyframes featureReveal {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Enhanced hover effects */
.corporate-training-wrapper .luxury-feature:hover {
    border-color: rgba(99, 102, 241, 0.3) !important;
    box-shadow: 
        0 25px 60px rgba(99, 102, 241, 0.2),
        0 15px 35px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
    background: rgba(255, 255, 255, 0.98) !important;
    transform: translateY(-5px) !important;
}

/* Click Indicator - FORCED VISIBILITY */
.corporate-training-wrapper .click-indicator {
    position: absolute !important;
    bottom: 20px !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(10px) !important;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.9), rgba(139, 92, 246, 0.9)) !important;
    color: white !important;
    padding: 8px 16px !important;
    border-radius: 20px !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    opacity: 0 !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3) !important;
    pointer-events: none !important;
    z-index: 100 !important;
    font-family: 'Inter', sans-serif !important;
    white-space: nowrap !important;
}

/* Expand Icon - FORCED VISIBILITY */
.corporate-training-wrapper .expand-icon {
    position: absolute !important;
    top: 20px !important;
    right: 20px !important;
    width: 32px !important;
    height: 32px !important;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.8), rgba(139, 92, 246, 0.8)) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    font-size: 14px !important;
    font-weight: bold !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    animation: expandPulse 2s ease-in-out infinite !important;
    font-family: 'Inter', sans-serif !important;
    z-index: 100 !important;
    pointer-events: none !important;
}

/* Pulse animation for expand icon */
@keyframes expandPulse {
    0%, 100% { 
        box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2), 0 0 0 0 rgba(99, 102, 241, 0.4);
    }
    50% { 
        box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3), 0 0 0 8px rgba(99, 102, 241, 0);
    }
}

/* Feature Header adjusted for icon */
.corporate-training-wrapper .luxury-feature-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-right: 50px;
    pointer-events: none !important;
}

/* Feature Icons - Enhanced */
.corporate-training-wrapper .luxury-feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    flex-shrink: 0;
    position: relative;
    box-shadow: 
        0 8px 25px rgba(99, 102, 241, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    pointer-events: none !important;
}

.corporate-training-wrapper .luxury-feature:hover .luxury-feature-icon {
    transform: scale(1.05);
    box-shadow: 
        0 12px 35px rgba(99, 102, 241, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

/* Typography */
.corporate-training-wrapper .luxury-feature h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.3;
    margin: 0;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    letter-spacing: -0.01em;
    font-family: 'Inter', var(--font-heading-family), sans-serif;
    pointer-events: none !important;
}

.corporate-training-wrapper .luxury-feature:hover h3 {
    color: #0f172a;
    text-shadow: 0 2px 4px rgba(15, 23, 42, 0.1);
}

.corporate-training-wrapper .luxury-feature p {
    color: #64748b;
    line-height: 1.7;
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
    font-family: 'Inter', var(--font-body-family), sans-serif;
    pointer-events: none !important;
}

.corporate-training-wrapper .luxury-feature:hover p {
    color: #475569;
}

/* LUXURY MODAL STYLES */
.luxury-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.luxury-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.luxury-modal {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.8) translateY(30px);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.3),
        0 10px 40px rgba(99, 102, 241, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: none;
}

.luxury-modal-overlay.active .luxury-modal {
    transform: scale(1) translateY(0);
}

/* Modal Header */
.luxury-modal-header {
    padding: 40px 40px 0;
    position: relative;
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

.luxury-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(99, 102, 241, 0.1);
    border: none;
    border-radius: 50%;
    color: #64748b;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', var(--font-body-family), sans-serif;
}

.luxury-modal-close:hover {
    background: rgba(99, 102, 241, 0.2);
    color: #475569;
    transform: scale(1.1);
}

.luxury-modal-icon-container {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.luxury-modal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    box-shadow: 
        0 10px 30px rgba(99, 102, 241, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.luxury-modal-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    font-family: 'Inter', var(--font-heading-family), sans-serif;
}

/* Modal Content */
.luxury-modal-content {
    padding: 30px 40px 40px;
}

.luxury-modal-description {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 30px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
    font-family: 'Inter', var(--font-body-family), sans-serif;
}

.luxury-modal-features {
    margin-bottom: 30px;
}

.luxury-modal-features h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', var(--font-heading-family), sans-serif;
}

.luxury-modal-features h4::before {
    content: '✨';
    font-size: 1rem;
}

.luxury-modal-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.luxury-modal-feature-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
    position: relative;
    padding-left: 30px;
    color: #475569;
    font-weight: 500;
    transition: all 0.2s ease;
    font-family: 'Inter', var(--font-body-family), sans-serif;
}

.luxury-modal-feature-list li:last-child {
    border-bottom: none;
}

.luxury-modal-feature-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #6366f1;
    font-weight: bold;
    transition: all 0.2s ease;
}

.luxury-modal-feature-list li:hover {
    color: #1e293b;
    padding-left: 35px;
}

.luxury-modal-feature-list li:hover::before {
    color: #8b5cf6;
}

.luxury-modal-benefits {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.luxury-modal-benefits h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', var(--font-heading-family), sans-serif;
}

.luxury-modal-benefits h4::before {
    content: '🎯';
    font-size: 1rem;
}

.luxury-modal-benefits p {
    color: #475569;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
    font-family: 'Inter', var(--font-body-family), sans-serif;
}

/* Social Proof Section */
.corporate-training-wrapper .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.corporate-training-wrapper .testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border: 1px solid #e3e3e4;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.corporate-training-wrapper .testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #2b1885, #9082d5);
}

.corporate-training-wrapper .testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(43, 24, 133, 0.15);
    border-color: #2b1885;
}

.corporate-training-wrapper .quote-mark {
    font-size: 4rem;
    color: #9082d5;
    line-height: 1;
    margin-bottom: 20px;
    font-family: Georgia, serif;
}

.corporate-training-wrapper .testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 30px;
    font-style: italic;
    font-family: 'Inter', sans-serif;
}

.corporate-training-wrapper .testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.corporate-training-wrapper .author-name {
    font-weight: 700;
    color: #2b1885;
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-family: 'Inter', sans-serif;
}

.corporate-training-wrapper .author-title {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 3px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.corporate-training-wrapper .company-name {
    font-size: 0.9rem;
    color: #2b1885;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.corporate-training-wrapper .company-logo {
    flex-shrink: 0;
    margin-left: 20px;
}

.corporate-training-wrapper .logo-placeholder {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2b1885, #9082d5);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
}

/* ===== LUXURY PRICING SECTION - REPLACE EXISTING PRICING STYLES ===== */

/* Main Pricing Section */
.corporate-training-wrapper .pricing {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #ffffff 100%);
    padding: 120px 0 140px;
    position: relative;
    overflow: hidden;
}

/* Subtle floating background elements */
.corporate-training-wrapper .pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 25%, rgba(99, 102, 241, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(139, 92, 246, 0.03) 0%, transparent 50%);
    z-index: 1;
}

/* Floating decorative elements */
.corporate-training-wrapper .pricing::after {
    content: '';
    position: absolute;
    top: 10%;
    left: 5%;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, rgba(139, 92, 246, 0.03), rgba(168, 85, 247, 0.03));
    border-radius: 50%;
    animation: gentlePricingFloat 8s ease-in-out infinite;
    z-index: 1;
}

@keyframes gentlePricingFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.03;
    }
    50% { 
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.06;
    }
}

/* Enhanced Section Header */
.corporate-training-wrapper .pricing .section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.1;
    position: relative;
    color: transparent;
    background: linear-gradient(135deg, #1e293b, #374151, #1e293b);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    animation: luxuryTitleGradient 4s ease-in-out infinite;
    letter-spacing: -0.02em;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    z-index: 3;
    position: relative;
}

/* Fallback for browsers that don't support background-clip */
@supports not (-webkit-background-clip: text) {
    .corporate-training-wrapper .pricing .section-title {
        background: none;
        color: #1e293b;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
}

@keyframes luxuryTitleGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.corporate-training-wrapper .pricing .section-subtitle {
    font-size: 1.6rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
    opacity: 0;
    animation: subtitleSlide 1.2s ease-out 0.5s forwards;
    transform: translateY(20px);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    z-index: 3;
    position: relative;
}

@keyframes subtitleSlide {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Pricing Grid */
.corporate-training-wrapper .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
    gap: 50px;
    margin-top: 80px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 3;
}

/* Luxury Pricing Cards */
.corporate-training-wrapper .pricing-card {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    border: 2px solid rgba(99, 102, 241, 0.08) !important;
    border-radius: 30px !important;
    padding: 50px 40px 45px !important;
    text-align: center !important;
    position: relative !important;
    overflow: visible !important;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1) !important;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.08),
        0 8px 25px rgba(99, 102, 241, 0.05) !important;
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    animation: cardReveal 0.8s ease-out forwards;
}

.corporate-training-wrapper .pricing-card:nth-child(1) { animation-delay: 0.2s; }
.corporate-training-wrapper .pricing-card:nth-child(2) { animation-delay: 0.4s; }

@keyframes cardReveal {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.corporate-training-wrapper .pricing-card:hover {
    transform: translateY(-12px) scale(1.02) !important;
    box-shadow: 
        0 35px 80px rgba(99, 102, 241, 0.15),
        0 20px 50px rgba(0, 0, 0, 0.12) !important;
    border-color: rgba(99, 102, 241, 0.15) !important;
}

/* Premium Card Enhanced Styling */
.corporate-training-wrapper .pricing-card.premium {
    border: 3px solid #8b5cf6 !important;
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 
        0 25px 60px rgba(139, 92, 246, 0.2),
        0 15px 35px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
    position: relative;
    transform: none !important;
}

.corporate-training-wrapper .pricing-card.premium:hover {
    transform: translateY(-15px) scale(1.03) !important;
    box-shadow: 
        0 40px 100px rgba(139, 92, 246, 0.25),
        0 25px 60px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.95) !important;
    border-color: #7c3aed !important;
}

/* Most Popular Badge */
.corporate-training-wrapper .pricing-card.premium::before {
    content: 'Most Popular' !important;
    position: absolute !important;
    top: -18px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed) !important;
    color: white !important;
    padding: 12px 28px !important;
    border-radius: 25px !important;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    box-shadow: 
        0 8px 25px rgba(139, 92, 246, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
    animation: badgePulse 3s ease-in-out infinite !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    z-index: 10 !important;
}

@keyframes badgePulse {
    0%, 100% { 
        transform: translateX(-50%) scale(1);
        box-shadow: 
            0 8px 25px rgba(139, 92, 246, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    50% { 
        transform: translateX(-50%) scale(1.05);
        box-shadow: 
            0 12px 35px rgba(139, 92, 246, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
}

/* Enhanced Plan Icons */
.corporate-training-wrapper .plan-icon {
    width: 100px !important;
    height: 100px !important;
    background: linear-gradient(135deg, #6366f1, #8b5cf6) !important;
    border-radius: 25px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 35px !important;
    color: white !important;
    font-size: 42px !important;
    position: relative !important;
    box-shadow: 
        0 15px 35px rgba(99, 102, 241, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.2) !important;
    transition: all 0.3s ease !important;
    animation: iconFloat 4s ease-in-out infinite !important;
}

.corporate-training-wrapper .pricing-card.premium .plan-icon {
    background: linear-gradient(135deg, #8b5cf6, #a855f7) !important;
    box-shadow: 
        0 15px 35px rgba(139, 92, 246, 0.35),
        inset 0 2px 0 rgba(255, 255, 255, 0.25) !important;
}

@keyframes iconFloat {
    0%, 100% { 
        transform: translateY(0px);
        box-shadow: 
            0 15px 35px rgba(99, 102, 241, 0.3),
            inset 0 2px 0 rgba(255, 255, 255, 0.2);
    }
    50% { 
        transform: translateY(-8px);
        box-shadow: 
            0 20px 45px rgba(99, 102, 241, 0.4),
            inset 0 2px 0 rgba(255, 255, 255, 0.3);
    }
}

.corporate-training-wrapper .pricing-card:hover .plan-icon {
    transform: scale(1.1) translateY(-5px) !important;
    box-shadow: 
        0 25px 50px rgba(99, 102, 241, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.3) !important;
}

/* Enhanced Typography */
.corporate-training-wrapper .plan-name {
    font-size: 2.2rem !important;
    font-weight: 800 !important;
    color: #1e293b !important;
    margin-bottom: 20px !important;
    letter-spacing: -0.01em !important;
    transition: all 0.3s ease !important;
}

.corporate-training-wrapper .pricing-card:hover .plan-name {
    color: #0f172a !important;
    transform: translateY(-2px) !important;
}

.corporate-training-wrapper .plan-tagline {
    color: #64748b !important;
    margin-bottom: 40px !important;
    font-size: 1.4rem !important;
    line-height: 1.6 !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
}

.corporate-training-wrapper .pricing-card:hover .plan-tagline {
    color: #475569 !important;
}

/* Enhanced Features List */
.corporate-training-wrapper .plan-features {
    list-style: none !important;
    margin: 40px 0 !important;
    text-align: left !important;
    padding: 0 !important;
}

.corporate-training-wrapper .plan-features li {
    padding: 18px 0 !important;
    border-bottom: 1px solid rgba(99, 102, 241, 0.08) !important;
    position: relative !important;
    padding-left: 45px !important;
    font-size: 1.05rem !important;
    line-height: 1.6 !important;
    color: #374151 !important;
    font-weight: 500 !important;
    transition: all 0.2s ease !important;
}

.corporate-training-wrapper .plan-features li:last-child {
    border-bottom: none !important;
}

.corporate-training-wrapper .plan-features li::before {
    content: '✓' !important;
    position: absolute !important;
    left: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 28px !important;
    height: 28px !important;
    background: linear-gradient(135deg, #8b5cf6, #a855f7) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    font-weight: bold !important;
    font-size: 14px !important;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3) !important;
    transition: all 0.2s ease !important;
}

.corporate-training-wrapper .pricing-card:hover .plan-features li {
    color: #1e293b !important;
    padding-left: 50px !important;
}

.corporate-training-wrapper .pricing-card:hover .plan-features li::before {
    transform: translateY(-50%) scale(1.1) !important;
    box-shadow: 0 6px 16px rgba(139, 92, 246, 0.4) !important;
}

/* Enhanced CTA Buttons */
.corporate-training-wrapper .plan-cta {
    width: 100% !important;
    padding: 20px 40px !important;
    border: 2px solid rgba(99, 102, 241, 0.2) !important;
    background: rgba(99, 102, 241, 0.05) !important;
    color: #6366f1 !important;
    border-radius: 50px !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1) !important;
    text-decoration: none !important;
    display: inline-block !important;
    text-align: center !important;
    margin-top: 35px !important;
    position: relative !important;
    overflow: hidden !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.1) !important;
}

.corporate-training-wrapper .plan-cta::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent) !important;
    transition: left 0.6s ease !important;
}

.corporate-training-wrapper .plan-cta:hover::before {
    left: 100% !important;
}

.corporate-training-wrapper .plan-cta:hover {
    background: linear-gradient(135deg, #6366f1, #8b5cf6) !important;
    color: white !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.3) !important;
    border-color: transparent !important;
    text-decoration: none !important;
}

/* Premium CTA Enhanced Styling */
.corporate-training-wrapper .pricing-card.premium .plan-cta {
    background: linear-gradient(135deg, #8b5cf6, #a855f7) !important;
    color: white !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 
        0 12px 30px rgba(139, 92, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

.corporate-training-wrapper .pricing-card.premium .plan-cta::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent) !important;
}

.corporate-training-wrapper .pricing-card.premium .plan-cta:hover {
    background: linear-gradient(135deg, #7c3aed, #9333ea) !important;
    transform: translateY(-4px) !important;
    box-shadow: 
        0 18px 45px rgba(139, 92, 246, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    color: white !important;
    text-decoration: none !important;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .corporate-training-wrapper .pricing {
        padding: 80px 0 100px;
    }

    .corporate-training-wrapper .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 60px;
    }

    .corporate-training-wrapper .pricing-card {
        padding: 40px 30px 35px !important;
        margin: 0 10px;
    }

    .corporate-training-wrapper .plan-icon {
        width: 80px !important;
        height: 80px !important;
        font-size: 32px !important;
        margin-bottom: 25px !important;
    }

    .corporate-training-wrapper .plan-name {
        font-size: 1.8rem !important;
        margin-bottom: 15px !important;
    }

    .corporate-training-wrapper .plan-tagline {
        font-size: 1rem !important;
        margin-bottom: 30px !important;
    }

    .corporate-training-wrapper .plan-features li {
        padding: 15px 0 !important;
        padding-left: 40px !important;
        font-size: 1rem !important;
    }

    .corporate-training-wrapper .plan-cta {
        padding: 18px 35px !important;
        font-size: 1.1rem !important;
        margin-top: 25px !important;
    }

    .corporate-training-wrapper .pricing-card.premium::before {
        font-size: 0.75rem !important;
        padding: 10px 24px !important;
        top: -15px !important;
    }

    /* Disable floating animations on mobile for performance */
    .corporate-training-wrapper .pricing::after {
        display: none;
    }
    
    .corporate-training-wrapper .plan-icon {
        animation: none !important;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .corporate-training-wrapper .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
}

/* Testimonial */
.corporate-training-wrapper .testimonial-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 60px 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border-left: 5px solid #2b1885;
}

.corporate-training-wrapper .quote-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #124273, #012b4a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: white;
    font-size: 24px;
}

.corporate-training-wrapper .quote {
    font-size: 1.4rem;
    font-style: italic;
    color: #333;
    margin-bottom: 35px;
    line-height: 1.7;
    font-family: 'Inter', var(--font-body-family), sans-serif;
}

.corporate-training-wrapper .author {
    font-weight: 700;
    color: #2b1885;
    font-size: 1.2rem;
    font-family: 'Inter', var(--font-heading-family), sans-serif;
}

.corporate-training-wrapper .author-title {
    color: #666;
    font-size: 1rem;
    margin-top: 8px;
    font-weight: 500;
    font-family: 'Inter', var(--font-body-family), sans-serif;
}

/* FAQ Section - FIXED VERSION */
.corporate-training-wrapper .faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.corporate-training-wrapper .faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #e3e3e4;
    overflow: hidden;
    transition: all 0.3s ease;
}

.corporate-training-wrapper .faq-item:hover {
    box-shadow: 0 8px 25px rgba(43, 24, 133, 0.1);
    border-color: #2b1885;
}

.corporate-training-wrapper .faq-question {
    padding: 25px 30px;
    background: white;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Inter', var(--font-heading-family), sans-serif;
    transition: all 0.3s ease;
}

.corporate-training-wrapper .faq-question:hover {
    color: #2b1885;
    background: #f8f9ff;
}

.corporate-training-wrapper .faq-question.active {
    color: #2b1885;
    background: #f8f9ff;
    border-bottom: 1px solid #e3e3e4;
}

.corporate-training-wrapper .faq-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #2b1885, #9082d5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.corporate-training-wrapper .faq-question.active .faq-icon {
    transform: rotate(45deg);
    background: linear-gradient(135deg, #9082d5, #7a6bc7);
}

.corporate-training-wrapper .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    background: white;
}

.corporate-training-wrapper .faq-answer.active {
    max-height: 1000px;
}

.corporate-training-wrapper .faq-answer-content {
    padding: 0 30px 30px;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    font-family: 'Inter', var(--font-body-family), sans-serif;
}

.corporate-training-wrapper .faq-answer-content p {
    margin: 0 0 15px;
}

.corporate-training-wrapper .faq-answer-content p:last-child {
    margin-bottom: 0;
}

.corporate-training-wrapper .faq-answer-content strong {
    color: #2b1885;
    font-weight: 600;
}

/* ===== LUXURY FINAL CTA SECTION ===== */

/* Main CTA Section */
.corporate-training-wrapper .luxury-final-cta {
    background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 25%, #4338ca 50%, #6366f1 75%, #8b5cf6 100%);
    padding: 120px 0 140px;
    position: relative;
    overflow: hidden;
    color: white;
    text-align: center;
}

/* Luxury animated background patterns */
.corporate-training-wrapper .luxury-final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 30% 100%, rgba(67, 56, 202, 0.12) 0%, transparent 50%);
    animation: luxuryCtaBackgroundFloat 30s ease-in-out infinite;
    z-index: 1;
}

@keyframes luxuryCtaBackgroundFloat {
    0%, 100% { 
        transform: rotate(0deg) scale(1);
        opacity: 0.8;
    }
    25% { 
        transform: rotate(90deg) scale(1.1);
        opacity: 0.6;
    }
    50% { 
        transform: rotate(180deg) scale(0.95);
        opacity: 0.9;
    }
    75% { 
        transform: rotate(270deg) scale(1.05);
        opacity: 0.7;
    }
}

/* Floating luxury elements */
.corporate-training-wrapper .luxury-cta-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 2;
}

.corporate-training-wrapper .cta-floating-shape {
    position: absolute;
    opacity: 0.08;
    animation: ctaShapeFloat 12s ease-in-out infinite;
}

.corporate-training-wrapper .cta-shape-1 {
    top: 15%;
    left: 8%;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.2), rgba(139, 92, 246, 0.3));
    border-radius: 50%;
    animation-delay: 0s;
}

.corporate-training-wrapper .cta-shape-2 {
    top: 25%;
    right: 10%;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, rgba(99, 102, 241, 0.2), rgba(255, 255, 255, 0.3));
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    animation-delay: 4s;
}

.corporate-training-wrapper .cta-shape-3 {
    bottom: 20%;
    left: 12%;
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, rgba(139, 92, 246, 0.25), rgba(255, 255, 255, 0.2));
    border-radius: 15px;
    animation-delay: 2s;
}

.corporate-training-wrapper .cta-shape-4 {
    bottom: 35%;
    right: 15%;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.3), rgba(99, 102, 241, 0.2));
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation-delay: 6s;
}

@keyframes ctaShapeFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.08;
    }
    33% { 
        transform: translateY(-30px) rotate(120deg) scale(1.1);
        opacity: 0.12;
    }
    66% { 
        transform: translateY(-15px) rotate(240deg) scale(0.9);
        opacity: 0.15;
    }
}

/* CTA Content Container */
.corporate-training-wrapper .luxury-cta-content {
    position: relative;
    z-index: 4;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 60px 50px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    max-width: 1000px;
    margin: 0 auto;
}

.corporate-training-wrapper .luxury-cta-content:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 35px 100px rgba(0, 0, 0, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

/* Main CTA Title */
.corporate-training-wrapper .luxury-cta-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.1;
    position: relative;
    color: transparent;
    background: linear-gradient(135deg, #ffffff, #f1f5f9, #ffffff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    animation: ctaTitleGradient 4s ease-in-out infinite;
    letter-spacing: -0.02em;
    text-shadow:

    /* ===== MOBILE RESPONSIVE FIXES - ADD TO YOUR CSS FILE ===== */

/* ===== HOW IT WORKS SECTION - MOBILE FIXES ===== */

@media (max-width: 768px) {
    /* Main section padding */
    .corporate-training-wrapper .luxury-how-it-works {
        padding: 60px 0 80px !important;
    }

    /* Section header fixes */
    .corporate-training-wrapper .luxury-section-header {
        margin-bottom: 60px !important;
        padding: 0 10px !important;
    }

    .corporate-training-wrapper .luxury-section-title {
        font-size: 2rem !important;
        margin-bottom: 20px !important;
        line-height: 1.2 !important;
    }

    .corporate-training-wrapper .luxury-section-subtitle {
        font-size: 1.1rem !important;
        padding: 0 10px !important;
    }

    /* Steps container fixes */
    .corporate-training-wrapper .luxury-steps-container {
        padding-top: 0 !important;
        margin-top: 40px !important;
    }

    /* Hide connecting path on mobile */
    .corporate-training-wrapper .connecting-path {
        display: none !important;
    }

    /* Steps grid - force single column */
    .corporate-training-wrapper .luxury-steps-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
        padding: 0 !important;
    }

    /* Individual step cards */
    .corporate-training-wrapper .luxury-step {
        padding: 25px 20px !important;
        margin: 0 15px !important;
        border-radius: 20px !important;
        max-width: none !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Step numbers */
    .corporate-training-wrapper .luxury-step-number {
        width: 45px !important;
        height: 45px !important;
        font-size: 18px !important;
        top: -10px !important;
        right: 15px !important;
        border: 3px solid white !important;
    }

    /* Step icons */
    .corporate-training-wrapper .luxury-step-icon {
        width: 70px !important;
        height: 70px !important;
        font-size: 28px !important;
        margin: 15px auto 20px !important;
        border-radius: 18px !important;
    }

    /* Step typography */
    .corporate-training-wrapper .luxury-step h3 {
        font-size: 1.3rem !important;
        margin-bottom: 15px !important;
        line-height: 1.3 !important;
    }

    .corporate-training-wrapper .luxury-step p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
    }

    /* Disable floating shapes on mobile */
    .corporate-training-wrapper .floating-shape {
        display: none !important;
    }
}

/* ===== FEATURES SECTION - MOBILE FIXES ===== */

@media (max-width: 768px) {
    /* Main features section */
    .corporate-training-wrapper .luxury-features {
        padding: 60px 0 80px !important;
    }

    /* Features header */
    .corporate-training-wrapper .luxury-features-header {
        margin-bottom: 60px !important;
        padding: 0 10px !important;
    }

    .corporate-training-wrapper .luxury-features-title {
        font-size: 2rem !important;
        margin-bottom: 20px !important;
        line-height: 1.2 !important;
    }

    .corporate-training-wrapper .luxury-features-subtitle {
        font-size: 1.1rem !important;
        padding: 0 10px !important;
    }

    /* Features grid - force single column */
    .corporate-training-wrapper .luxury-features-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        margin-top: 40px !important;
        padding: 0 !important;
    }

    /* Individual feature cards */
    .corporate-training-wrapper .luxury-feature {
        padding: 25px 20px !important;
        margin: 0 15px !important;
        border-radius: 20px !important;
        max-width: none !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Feature headers */
    .corporate-training-wrapper .luxury-feature-header {
        gap: 15px !important;
        margin-bottom: 20px !important;
        padding-right: 40px !important;
    }

    /* Feature icons */
    .corporate-training-wrapper .luxury-feature-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 20px !important;
        border-radius: 12px !important;
    }

    /* Expand icons */
    .corporate-training-wrapper .expand-icon {
        width: 24px !important;
        height: 24px !important;
        font-size: 10px !important;
        top: 12px !important;
        right: 12px !important;
    }

    /* Feature typography */
    .corporate-training-wrapper .luxury-feature h3 {
        font-size: 1.2rem !important;
        line-height: 1.3 !important;
    }

    .corporate-training-wrapper .luxury-feature p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }

    /* Click indicators - make always visible on mobile */
    .corporate-training-wrapper .click-indicator {
        opacity: 1 !important;
        transform: translateX(-50%) translateY(0) !important;
        bottom: 12px !important;
        font-size: 0.75rem !important;
        padding: 4px 10px !important;
        border-radius: 12px !important;
    }

    /* Disable floating shapes on mobile */
    .corporate-training-wrapper .features-floating-shape {
        display: none !important;
    }
}

/* ===== MODAL FIXES FOR MOBILE ===== */

@media (max-width: 768px) {
    /* Modal overlay adjustments */
    .luxury-modal-overlay {
        padding: 10px !important;
        align-items: flex-start !important;
        padding-top: 20px !important;
    }

    /* Modal container */
    .luxury-modal {
        margin: 0 !important;
        max-height: 90vh !important;
        width: 100% !important;
        border-radius: 20px !important;
    }

    /* Modal header */
    .luxury-modal-header {
        padding: 25px 20px 0 !important;
    }

    .luxury-modal-close {
        top: 15px !important;
        right: 15px !important;
        width: 35px !important;
        height: 35px !important;
        font-size: 18px !important;
    }

    .luxury-modal-icon-container {
        gap: 15px !important;
        margin-bottom: 20px !important;
        flex-direction: column !important;
        text-align: center !important;
    }

    .luxury-modal-icon {
        width: 60px !important;
        height: 60px !important;
        font-size: 24px !important;
        margin: 0 auto !important;
    }

    .luxury-modal-title {
        font-size: 1.4rem !important;
        text-align: center !important;
    }

    /* Modal content */
    .luxury-modal-content {
        padding: 20px 20px 25px !important;
    }

    .luxury-modal-description {
        font-size: 0.95rem !important;
        margin-bottom: 20px !important;
    }

    .luxury-modal-features h4 {
        font-size: 1.1rem !important;
        margin-bottom: 15px !important;
    }

    .luxury-modal-feature-list li {
        padding: 10px 0 !important;
        font-size: 0.9rem !important;
        padding-left: 25px !important;
    }

    .luxury-modal-benefits {
        padding: 20px 15px !important;
        margin-top: 20px !important;
    }

    .luxury-modal-benefits h4 {
        font-size: 1rem !important;
        margin-bottom: 10px !important;
    }

    .luxury-modal-benefits p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }
}

/* ===== EXTRA SMALL MOBILE (480px and below) ===== */

@media (max-width: 480px) {
    /* How It Works - Extra small screens */
    .corporate-training-wrapper .luxury-how-it-works {
        padding: 50px 0 60px !important;
    }

    .corporate-training-wrapper .luxury-step {
        margin: 0 10px !important;
        padding: 20px 15px !important;
    }

    .corporate-training-wrapper .luxury-step h3 {
        font-size: 1.1rem !important;
    }

    .corporate-training-wrapper .luxury-step p {
        font-size: 0.9rem !important;
    }

    /* Features - Extra small screens */
    .corporate-training-wrapper .luxury-features {
        padding: 50px 0 60px !important;
    }

    .corporate-training-wrapper .luxury-feature {
        margin: 0 10px !important;
        padding: 20px 15px !important;
    }

    .corporate-training-wrapper .luxury-feature h3 {
        font-size: 1.1rem !important;
    }

    .corporate-training-wrapper .luxury-feature p {
        font-size: 0.85rem !important;
    }

    /* Section titles */
    .corporate-training-wrapper .luxury-section-title,
    .corporate-training-wrapper .luxury-features-title {
        font-size: 1.8rem !important;
        padding: 0 5px !important;
    }

    .corporate-training-wrapper .luxury-section-subtitle,
    .corporate-training-wrapper .luxury-features-subtitle {
        font-size: 1rem !important;
        padding: 0 5px !important;
    }
}

/* ===== TABLET ADJUSTMENTS (769px to 1024px) ===== */

@media (min-width: 769px) and (max-width: 1024px) {
    /* How It Works - 2 columns on tablet */
    .corporate-training-wrapper .luxury-steps-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px !important;
    }

    /* Features - 2 columns on tablet */
    .corporate-training-wrapper .luxury-features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px !important;
    }

    /* Connecting path adjustments for tablet */
    .corporate-training-wrapper .connecting-path {
        display: none !important;
    }
}

/* ===== ENSURE CONTAINER DOESN'T OVERFLOW ===== */

@media (max-width: 768px) {
    .corporate-training-wrapper .container {
        padding: 0 15px !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    /* Prevent horizontal scroll */
    .corporate-training-wrapper {
        overflow-x: hidden !important;
    }

    .corporate-training-wrapper .luxury-how-it-works,
    .corporate-training-wrapper .luxury-features {
        overflow-x: hidden !important;
    }
}
/* Luxury Our Story Section */
.corporate-training-wrapper .luxury-story-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #334155 50%, #475569 75%, #64748b 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    color: white;
}

.corporate-training-wrapper .luxury-story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 25%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 0%, rgba(67, 56, 202, 0.08) 0%, transparent 40%);
    animation: luxuryStoryFloat 30s ease-in-out infinite;
    z-index: 1;
}

@keyframes luxuryStoryFloat {
    0%, 100% { 
        transform: rotate(0deg) scale(1);
        opacity: 0.8;
    }
    33% { 
        transform: rotate(120deg) scale(1.05);
        opacity: 0.6;
    }
    66% { 
        transform: rotate(240deg) scale(0.95);
        opacity: 0.9;
    }
}

.corporate-training-wrapper .luxury-story-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 2;
}

.corporate-training-wrapper .story-floating-shape {
    position: absolute;
    opacity: 0.1;
    animation: storyShapeFloat 12s ease-in-out infinite;
}

.corporate-training-wrapper .story-shape-1 {
    top: 15%;
    left: 8%;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.2), rgba(139, 92, 246, 0.3));
    border-radius: 50%;
    animation-delay: 0s;
}

.corporate-training-wrapper .story-shape-2 {
    top: 60%;
    right: 12%;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, rgba(99, 102, 241, 0.2), rgba(255, 255, 255, 0.25));
    border-radius: 15px;
    animation-delay: 4s;
}

.corporate-training-wrapper .story-shape-3 {
    bottom: 25%;
    left: 15%;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, rgba(139, 92, 246, 0.25), rgba(255, 255, 255, 0.2));
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    animation-delay: 2s;
}

@keyframes storyShapeFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.1;
    }
    50% { 
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.15;
    }
}

.corporate-training-wrapper .luxury-story-content {
    position: relative;
    z-index: 3;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.corporate-training-wrapper .luxury-story-header {
    margin-bottom: 80px;
}

.corporate-training-wrapper .luxury-story-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.1;
    position: relative;
    color: transparent;
    background: linear-gradient(135deg, #ffffff, #e2e8f0, #ffffff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    animation: storyTitleGradient 4s ease-in-out infinite;
    letter-spacing: -0.02em;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    font-family: 'Inter', sans-serif;
}

@supports not (-webkit-background-clip: text) {
    .corporate-training-wrapper .luxury-story-title {
        background: none;
        color: white;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
}

@keyframes storyTitleGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.corporate-training-wrapper .luxury-story-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    font-family: 'Inter', sans-serif;
}

.corporate-training-wrapper .luxury-story-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 60px;
}

.corporate-training-wrapper .luxury-story-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.corporate-training-wrapper .luxury-story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.25);
}

.corporate-training-wrapper .luxury-story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(139, 92, 246, 0.4));
}

.corporate-training-wrapper .luxury-story-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    text-align: left;
    margin-bottom: 30px;
    font-weight: 400;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    font-family: 'Inter', sans-serif;
}

.corporate-training-wrapper .luxury-story-text:last-child {
    margin-bottom: 0;
}

.corporate-training-wrapper .luxury-story-highlight {
    color: rgba(139, 92, 246, 0.9);
    font-weight: 600;
    background: rgba(139, 92, 246, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
}

/* Values Grid */
.corporate-training-wrapper .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 80px;
    margin-bottom: 60px;
}

.corporate-training-wrapper .value-card {
    background: white;
    padding: 50px 40px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(99, 102, 241, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.corporate-training-wrapper .value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.3);
}

.corporate-training-wrapper .value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.corporate-training-wrapper .value-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 40px;
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.3);
    transition: all 0.3s ease;
}

.corporate-training-wrapper .value-card:hover .value-icon {
    transform: scale(1.1);
    box-shadow: 0 20px 45px rgba(99, 102, 241, 0.4);
}

.corporate-training-wrapper .value-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.corporate-training-wrapper .value-description {
    color: #64748b;
    line-height: 1.7;
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    .corporate-training-wrapper .luxury-story-section {
        padding: 80px 0;
    }

    .corporate-training-wrapper .luxury-story-content {
        padding: 0 10px;
    }

    .corporate-training-wrapper .luxury-story-title {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .corporate-training-wrapper .luxury-story-subtitle {
        font-size: 1.1rem;
        margin-bottom: 50px;
    }

    .corporate-training-wrapper .luxury-story-cards {
        gap: 25px;
        margin-top: 40px;
    }

    .corporate-training-wrapper .luxury-story-card {
        padding: 40px 30px;
        margin: 0 10px;
        border-radius: 20px;
    }

    .corporate-training-wrapper .luxury-story-text {
        font-size: 1.1rem;
        line-height: 1.7;
        text-align: center;
        margin-bottom: 25px;
    }

    .corporate-training-wrapper .luxury-story-text:last-child {
        margin-bottom: 0;
    }

    .corporate-training-wrapper .story-floating-shape {
        display: none;
    }

    .corporate-training-wrapper .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 50px;
    }

    .corporate-training-wrapper .value-card {
        padding: 40px 30px;
        margin: 0 10px;
    }

    .corporate-training-wrapper .value-icon {
        width: 80px;
        height: 80px;
        font-size: 32px;
        margin-bottom: 25px;
    }

    .corporate-training-wrapper .value-title {
        font-size: 1.3rem;
    }

    .corporate-training-wrapper .value-description {
        font-size: 1rem;
    }
}