/* ============================================
   Training Page - Futuristic 2026 Design
   ============================================ */

/* Hero Section - Immersive 3D Experience */
.training-hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 50%, #0f0f1a 100%);
}

.training-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

/* Animated Gradient Mesh */
.hero-mesh {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 50% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
    animation: meshMove 20s ease-in-out infinite;
}

@keyframes meshMove {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(2%, -2%) scale(1.02); }
    50% { transform: translate(-1%, 1%) scale(0.98); }
    75% { transform: translate(1%, 2%) scale(1.01); }
}

/* Holographic Grid */
.hero-holo-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    transform: perspective(500px) rotateX(60deg);
    transform-origin: center top;
    animation: gridScroll 30s linear infinite;
}

@keyframes gridScroll {
    0% { background-position: 0 0; }
    100% { background-position: 0 600px; }
}

/* Neural Network Particles */
.neural-network {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.neural-node {
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.8), transparent);
    border-radius: 50%;
    animation: neuralPulse 4s ease-in-out infinite;
}

.neural-node::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, rgba(99, 102, 241, 0.5), transparent);
    transform-origin: left center;
}

@keyframes neuralPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

/* Floating Code Particles */
.code-particle {
    position: absolute;
    font-family: 'Fira Code', monospace;
    font-size: 12px;
    color: rgba(99, 102, 241, 0.3);
    animation: floatCode 15s linear infinite;
    white-space: nowrap;
}

@keyframes floatCode {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.5; }
    90% { opacity: 0.5; }
    100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
}

/* Hero Content */
.training-hero-content {
    position: relative;
    z-index: 10;
    padding: 140px 0 100px;
    width: 100%;
}

.training-hero-content .container {
    padding: 0 1.5rem;
}

.training-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.training-hero-text {
    color: white;
}

/* Animated Badge */
.training-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 50px;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.training-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.2), transparent);
    transform: translateX(-100%);
    animation: badgeShine 3s ease-in-out infinite;
}

@keyframes badgeShine {
    0% { transform: translateX(-100%); }
    50%, 100% { transform: translateX(100%); }
}

.badge-pulse {
    width: 10px;
    height: 10px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.training-badge span {
    color: #a5b4fc;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Glitch Title */
.training-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    position: relative;
}

.training-title .line {
    display: block;
    color: #ffffff;
}

.training-title .gradient-text {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.training-title .gradient-text::after {
    content: attr(data-text);
    position: absolute;
    left: 2px;
    top: 0;
    background: linear-gradient(135deg, #ef4444 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    animation: glitch 5s ease-in-out infinite;
}

@keyframes glitch {
    0%, 90%, 100% { opacity: 0; transform: translate(0); }
    92% { opacity: 0.8; transform: translate(-2px, 2px); }
    94% { opacity: 0; }
    96% { opacity: 0.8; transform: translate(2px, -2px); }
    98% { opacity: 0; }
}

.training-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 540px;
}

/* Feature Pills */
.feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.feature-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.feature-pill:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.5);
    transform: translateY(-2px);
}

.feature-pill i {
    color: #6366f1;
    font-size: 0.875rem;
}

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

.btn-glow {
    position: relative;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-glow::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6, #06b6d4, #6366f1);
    background-size: 300% 300%;
    border-radius: 14px;
    z-index: -1;
    animation: glowRotate 3s ease-in-out infinite;
    filter: blur(15px);
    opacity: 0.7;
}

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

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.4);
}

.btn-glow:hover::before {
    filter: blur(20px);
    opacity: 1;
}

.btn-glass {
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}

/* Hero Visual - 3D Card Stack */
.training-hero-visual {
    perspective: 1000px;
}

.card-stack {
    position: relative;
    width: 100%;
    height: 500px;
    transform-style: preserve-3d;
    animation: cardFloat 6s ease-in-out infinite;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0) rotateX(5deg) rotateY(-5deg); }
    50% { transform: translateY(-20px) rotateX(0deg) rotateY(5deg); }
}

.stack-card {
    position: absolute;
    width: 100%;
    max-width: 420px;
    background: linear-gradient(135deg, rgba(30, 30, 50, 0.9), rgba(20, 20, 40, 0.95));
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 24px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    transition: transform 0.5s ease;
}

.stack-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), transparent);
    pointer-events: none;
}

.stack-card-1 {
    z-index: 3;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.stack-card-2 {
    z-index: 2;
    right: 40px;
    top: calc(50% - 20px);
    transform: translateY(-50%) scale(0.95);
    opacity: 0.7;
}

.stack-card-3 {
    z-index: 1;
    right: 80px;
    top: calc(50% - 40px);
    transform: translateY(-50%) scale(0.9);
    opacity: 0.4;
}

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

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    position: relative;
}

.card-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 18px;
    filter: blur(10px);
    opacity: 0.5;
    z-index: -1;
}

.card-title-group h3 {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 0.25rem;
}

.card-title-group span {
    font-size: 0.875rem;
    color: #6366f1;
}

.card-content {
    color: rgba(255, 255, 255, 0.7);
}

.module-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.module-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

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

.module-list li i {
    color: #10b981;
    font-size: 0.75rem;
}

.card-progress {
    margin-top: 1.5rem;
}

.progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #06b6d4);
    background-size: 200% 100%;
    border-radius: 10px;
    animation: progressShine 2s ease-in-out infinite;
    width: 75%;
}

@keyframes progressShine {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Stats Bar */
.hero-stats-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 15, 26, 0.8);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(99, 102, 241, 0.2);
    padding: 1.5rem 0;
    z-index: 10;
}

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

.stat-item {
    text-align: center;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(99, 102, 241, 0.3), transparent);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
}

/* ============================================
   What You'll Learn Section
   ============================================ */
.learn-section {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #6366f1;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #111827;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.7;
}

/* Curriculum Grid */
.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.curriculum-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.curriculum-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--card-gradient, linear-gradient(90deg, #6366f1, #8b5cf6));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.curriculum-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.curriculum-card:hover::before {
    transform: scaleX(1);
}

.curriculum-card.card-webdesign { --card-gradient: linear-gradient(90deg, #6366f1, #818cf8); }
.curriculum-card.card-frontend { --card-gradient: linear-gradient(90deg, #8b5cf6, #a78bfa); }
.curriculum-card.card-ai { --card-gradient: linear-gradient(90deg, #06b6d4, #22d3ee); }
.curriculum-card.card-seo { --card-gradient: linear-gradient(90deg, #10b981, #34d399); }
.curriculum-card.card-branding { --card-gradient: linear-gradient(90deg, #f59e0b, #fbbf24); }
.curriculum-card.card-business { --card-gradient: linear-gradient(90deg, #ef4444, #f87171); }

.curriculum-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(99, 102, 241, 0.08);
    line-height: 1;
}

.curriculum-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--icon-bg, #6366f1), var(--icon-bg-end, #8b5cf6));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: white;
    position: relative;
}

.curriculum-card.card-webdesign .curriculum-icon { --icon-bg: #6366f1; --icon-bg-end: #818cf8; }
.curriculum-card.card-frontend .curriculum-icon { --icon-bg: #8b5cf6; --icon-bg-end: #a78bfa; }
.curriculum-card.card-ai .curriculum-icon { --icon-bg: #06b6d4; --icon-bg-end: #22d3ee; }
.curriculum-card.card-seo .curriculum-icon { --icon-bg: #10b981; --icon-bg-end: #34d399; }
.curriculum-card.card-branding .curriculum-icon { --icon-bg: #f59e0b; --icon-bg-end: #fbbf24; }
.curriculum-card.card-business .curriculum-icon { --icon-bg: #ef4444; --icon-bg-end: #f87171; }

.curriculum-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
}

.curriculum-desc {
    font-size: 0.9375rem;
    color: #6b7280;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.curriculum-topics {
    list-style: none;
    padding: 0;
    margin: 0;
}

.curriculum-topics li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: #4b5563;
}

.curriculum-topics li i {
    color: #10b981;
    font-size: 0.75rem;
}

.curriculum-duration {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
    padding: 0.5rem 1rem;
    background: #f3f4f6;
    border-radius: 50px;
    font-size: 0.8125rem;
    color: #6b7280;
}

/* ============================================
   Pricing Section - Glassmorphism Cards
   ============================================ */
.pricing-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
    position: relative;
}

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

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 100%);
    border: 1px solid rgba(99, 102, 241, 0.3);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-card.featured * {
    color: white;
}

.pricing-card.featured .pricing-features li {
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.1);
}

.pricing-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

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

.pricing-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-desc {
    font-size: 0.9375rem;
    color: #6b7280;
}

.pricing-card.featured .pricing-desc {
    color: rgba(255, 255, 255, 0.7);
}

.pricing-price {
    text-align: center;
    margin-bottom: 2rem;
}

.price-amount {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.25rem;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.price-value {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
}

.pricing-card.featured .price-value {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    font-size: 0.875rem;
    color: #9ca3af;
    margin-top: 0.5rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 0.9375rem;
    color: #4b5563;
}

.pricing-features li i {
    width: 20px;
    text-align: center;
}

.pricing-features li i.fa-check {
    color: #10b981;
}

.pricing-features li i.fa-times {
    color: #d1d5db;
}

.pricing-cta {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: block;
}

.pricing-cta.btn-primary {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border: none;
}

.pricing-cta.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.pricing-cta.btn-outline {
    background: transparent;
    color: #6366f1;
    border: 2px solid #6366f1;
}

.pricing-cta.btn-outline:hover {
    background: #6366f1;
    color: white;
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section .section-badge {
    background: rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.4);
    color: #a5b4fc;
}

.testimonials-section .section-title {
    color: white;
}

.testimonials-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: transform 0.4s ease, background 0.4s ease, border-color 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(99, 102, 241, 0.3);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-stars i {
    color: #fbbf24;
    font-size: 0.875rem;
}

.testimonial-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
}

.author-info h4 {
    font-size: 1rem;
    color: white;
    margin-bottom: 0.25rem;
}

.author-info span {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-section {
    padding: 120px 0;
    background: #ffffff;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    border-color: #c7d2fe;
}

.faq-item.active {
    border-color: #6366f1;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.0625rem;
    font-weight: 600;
    color: #111827;
    transition: background 0.3s ease, color 0.3s ease;
}

.faq-question:hover {
    background: #f9fafb;
}

.faq-question i {
    color: #6366f1;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 2000px;
}

.faq-answer p {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.7;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-white {
    padding: 1rem 2rem;
    background: white;
    color: #6366f1;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.btn-outline-white {
    padding: 1rem 2rem;
    background: transparent;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
}

/* AI Chat Widget */
.ai-chat-widget {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: var(--z-video-modal);
}

.ai-chat-btn {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.ai-chat-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.5);
}

.ai-chat-btn::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    z-index: -1;
    animation: chatPulse 2s ease-in-out infinite;
}

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

.chat-tooltip {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    font-size: 0.875rem;
    color: #111827;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.ai-chat-btn:hover + .chat-tooltip,
.chat-tooltip:hover {
    opacity: 1;
    visibility: visible;
}

.chat-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border: 8px solid transparent;
    border-left-color: white;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .pricing-card {
        padding: 2rem;
    }
    
    .price-value {
        font-size: 3rem;
    }
}

@media (max-width: 1024px) {
    .training-hero-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .training-hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 1rem;
    }

    .training-hero-visual {
        display: none;
    }

    .training-subtitle {
        max-width: 100%;
        text-align: center;
    }

    .feature-pills {
        justify-content: center;
    }

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

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

    .stat-item::after {
        display: none;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .pricing-card.featured {
        transform: none;
        order: -1;
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .section-header-center {
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .training-hero {
        min-height: auto;
        align-items: flex-start;
        padding-bottom: 140px;
    }

    .training-hero-content {
        padding: 120px 0 60px;
    }

    .training-hero-text {
        padding: 0 1.5rem;
        align-items: center;
        text-align: center;
    }

    .training-title {
        font-size: clamp(1.75rem, 7vw, 2.25rem);
        line-height: 1.2;
        text-align: center;
        width: 100%;
        max-width: 20ch;
        margin-left: auto;
        margin-right: auto;
    }

    .training-title .line {
        margin-bottom: 0.25rem;
    }

    .training-subtitle {
        font-size: 1rem;
        line-height: 1.6;
        padding: 0;
        text-align: center;
        max-width: 100%;
        max-width: 48ch;
        margin-left: auto;
        margin-right: auto;
    }

    .training-badge {
        padding: 0.5rem 1rem;
        margin-bottom: 1.5rem;
    }

    .training-badge span {
        font-size: 0.8rem;
    }

    .feature-pills {
        gap: 0.5rem;
        padding: 0;
        justify-content: center;
        width: 100%;
    }

    .feature-pill {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }

    .feature-pill i {
        font-size: 0.75rem;
    }

    .training-cta {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        padding: 0;
        width: 100%;
    }

    .btn-glow,
    .btn-glass {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
        justify-content: center;
        width: 100%;
        max-width: 320px;
    }

    /* Stats bar mobile fixes */
    .hero-stats-bar {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 1.25rem 0;
    }

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

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

    .stat-label {
        font-size: 0.75rem;
        line-height: 1.3;
    }

    /* Curriculum section mobile */
    .learn-section {
        padding: 80px 0;
    }

    .section-header-center {
        margin-bottom: 2.5rem;
    }

    .section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        padding: 0 0.5rem;
    }

    .section-subtitle {
        font-size: 1rem;
        padding: 0 0.5rem;
    }

    .curriculum-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .curriculum-card {
        padding: 1.5rem;
    }

    .curriculum-number {
        font-size: 3rem;
        top: 1rem;
        right: 1rem;
    }

    .curriculum-icon {
        width: 56px;
        height: 56px;
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .curriculum-title {
        font-size: 1.125rem;
    }

    .curriculum-desc {
        font-size: 0.875rem;
    }

    .curriculum-topics li {
        font-size: 0.8125rem;
        padding: 0.375rem 0;
    }

    .curriculum-duration {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }

    /* Pricing section mobile */
    .pricing-section {
        padding: 80px 0;
    }

    .pricing-grid {
        padding: 0 0.5rem;
    }

    .pricing-card {
        padding: 1.75rem;
    }

    .pricing-name {
        font-size: 1.25rem;
    }

    .pricing-desc {
        font-size: 0.875rem;
    }

    .price-value {
        font-size: 3rem;
    }

    .price-currency {
        font-size: 1.25rem;
    }

    .price-period {
        font-size: 0.8125rem;
    }

    .pricing-features li {
        font-size: 0.875rem;
        padding: 0.75rem 0;
    }

    .pricing-cta {
        padding: 0.875rem;
        font-size: 0.9375rem;
    }

    /* Testimonials mobile */
    .testimonials-section {
        padding: 80px 0;
    }

    .testimonials-grid {
        padding: 0 0.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 0.9375rem;
        line-height: 1.6;
    }

    .author-avatar {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    .author-info h4 {
        font-size: 0.9375rem;
    }

    .author-info span {
        font-size: 0.75rem;
    }

    /* FAQ mobile */
    .faq-section {
        padding: 80px 0;
    }

    .faq-grid {
        padding: 0 0.5rem;
    }

    .faq-question {
        padding: 1.25rem;
        font-size: 0.9375rem;
    }

    .faq-answer p {
        font-size: 0.875rem;
    }

    /* CTA section mobile */
    .cta-section {
        padding: 60px 0;
    }

    .cta-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        padding: 0 0.5rem;
    }

    .cta-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .cta-buttons {
        padding: 0 1rem;
    }

    .btn-white,
    .btn-outline-white {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
        width: 100%;
        justify-content: center;
    }

    /* AI Chat widget mobile */
    .ai-chat-widget {
        bottom: 80px;
        right: 16px;
    }

    .ai-chat-btn {
        width: 52px;
        height: 52px;
        font-size: 1.125rem;
    }

    .chat-tooltip {
        display: none;
    }
}

@media (max-width: 480px) {
    .training-hero-content {
        padding: 100px 0 50px;
    }

    .training-hero {
        padding-bottom: 155px;
    }

    .training-hero-text {
        padding: 0 1rem;
        text-align: center;
        align-items: center;
    }

    .training-title {
        font-size: clamp(1.5rem, 8vw, 1.875rem);
        text-align: center;
    }

    .training-subtitle {
        font-size: 0.9375rem;
        text-align: center;
    }

    .feature-pills {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .feature-pill {
        width: auto;
        max-width: 220px;
    }

    .training-cta {
        width: 100%;
        padding: 0;
    }

    .btn-glow,
    .btn-glass {
        max-width: 280px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
        padding: 0 0.5rem;
    }

    .hero-stats-bar {
        padding: 1rem 0;
    }

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

    .stat-label {
        font-size: 0.6875rem;
    }

    .section-title {
        font-size: 1.375rem;
    }

    .section-subtitle {
        font-size: 0.9375rem;
    }

    .curriculum-card {
        padding: 1.25rem;
    }

    .curriculum-title {
        font-size: 1rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

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

    .pricing-popular {
        font-size: 0.75rem;
        padding: 0.375rem 1rem;
    }

    .testimonial-card {
        padding: 1.25rem;
    }

    .faq-question {
        padding: 1rem;
        font-size: 0.875rem;
        gap: 0.75rem;
    }

    .faq-question span {
        flex: 1;
    }

    .faq-item.active .faq-answer {
        padding: 0 1rem 1rem;
        max-height: 2000px;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .training-title {
        font-size: 1.375rem;
    }

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

    .price-value {
        font-size: 2.25rem;
    }

    .btn-glow,
    .btn-glass,
    .btn-white,
    .btn-outline-white {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
}

/* Improve text visibility and contrast */
.module-list li {
    color: rgba(255, 255, 255, 0.85);
}

.progress-label {
    color: rgba(255, 255, 255, 0.7);
}

/* Focus states for accessibility */
.btn-glow:focus,
.btn-glass:focus,
.btn-white:focus,
.btn-outline-white:focus,
.pricing-cta:focus,
.faq-question:focus {
    outline: 2px solid #6366f1;
    outline-offset: 2px;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode improvements */
@media (prefers-contrast: high) {
    .training-badge span {
        color: #c7d2fe;
    }

    .training-subtitle {
        color: rgba(255, 255, 255, 0.95);
    }

    .feature-pill {
        border-color: rgba(255, 255, 255, 0.3);
    }

    .module-list li {
        color: rgba(255, 255, 255, 0.95);
    }
}

/* Print styles */
@media print {
    .training-hero-bg,
    .neural-network,
    .code-particle,
    .ai-chat-widget,
    .whatsapp-float,
    .back-to-top {
        display: none !important;
    }

    .training-hero {
        background: white !important;
        color: black !important;
    }

    .training-hero-text * {
        color: black !important;
        -webkit-text-fill-color: black !important;
    }
