/* ═══════════════════════════════════════════════════════════
   NovIA Academy — Premium Design System
   ═══════════════════════════════════════════════════════════ */

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --purple: #7C3AED;
    --purple-light: #A78BFA;
    --cyan: #06B6D4;
    --cyan-light: #67E8F9;
    --green: #10B981;
    --green-light: #6EE7B7;
    --amber: #F59E0B;
    --red: #EF4444;
    --bg: #030014;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);
    --text: #E2E8F0;
    --text-muted: #94A3B8;
    --text-dim: #64748B;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

a { color: inherit; text-decoration: none; }

/* ─── Theme Toggle Button ─── */
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-hover);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s;
}
.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.icon-moon { display: none; }
.light .icon-sun { display: none; }
.light .icon-moon { display: block; }

/* ─── Light Mode ─── */
.light {
    --bg: #F8F9FC;
    --bg-card: rgba(0, 0, 0, 0.02);
    --bg-card-hover: rgba(0, 0, 0, 0.04);
    --border: rgba(0, 0, 0, 0.08);
    --border-hover: rgba(0, 0, 0, 0.15);
    --text: #1E293B;
    --text-muted: #475569;
    --text-dim: #94A3B8;
}

.light body,
.light { background: var(--bg); color: var(--text); }

.light .navbar.scrolled {
    background: rgba(248, 249, 252, 0.9);
    border-bottom-color: var(--border);
}

.light .logo-text { color: #1E293B; }

.light .hero-title,
.light .section-title,
.light .card-title,
.light .pricing-header h3,
.light .price-amount,
.light .feature-item h4,
.light .cta-content h2,
.light .testimonial-author strong,
.light .contact-info h3,
.light .contact-locations h3,
.light .contact-item strong,
.light .location strong,
.light .msg-name,
.light .discord-header,
.light .stat-number {
    color: #1E293B;
}

.light .hero-grid {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
}

.light .hero-gradient-1 { background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, transparent 70%); }
.light .hero-gradient-2 { background: radial-gradient(circle, rgba(6, 182, 212, 0.06) 0%, transparent 70%); }
.light .hero-gradient-3 { background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%); }

.light .hero-badge {
    background: rgba(0, 0, 0, 0.03);
    border-color: var(--border);
    color: var(--text-muted);
}

.light .trust-item { color: rgba(0, 0, 0, 0.25); }
.light .trust-item:hover { color: rgba(0, 0, 0, 0.5); }

.light .formation-card,
.light .feature-item,
.light .pricing-card,
.light .testimonial-card {
    background: #fff;
    border-color: var(--border);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.light .formation-card:hover,
.light .feature-item:hover,
.light .testimonial-card:hover {
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.light .pricing-featured {
    background: linear-gradient(180deg, rgba(124, 58, 237, 0.04) 0%, #fff 100%);
    border-color: rgba(124, 58, 237, 0.25);
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.08);
}

.light .pricing-premium {
    background: linear-gradient(180deg, rgba(245, 158, 11, 0.04) 0%, #fff 100%);
    border-color: rgba(245, 158, 11, 0.2);
}

.light .tag {
    background: rgba(0, 0, 0, 0.03);
    border-color: var(--border);
    color: var(--text-muted);
}

.light .card-duration {
    background: rgba(0, 0, 0, 0.03);
}

.light .section-tag {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(6, 182, 212, 0.08));
    border-color: rgba(124, 58, 237, 0.15);
}

.light .features-gradient { background: radial-gradient(ellipse, rgba(124, 58, 237, 0.03) 0%, transparent 70%); }
.light .community-gradient { background: linear-gradient(135deg, rgba(124, 58, 237, 0.02) 0%, rgba(6, 182, 212, 0.02) 100%); }

.light .cta-gradient-1 { background: linear-gradient(135deg, rgba(124, 58, 237, 0.06) 0%, rgba(6, 182, 212, 0.04) 50%, rgba(16, 185, 129, 0.03) 100%); }
.light .cta-gradient-2 { background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, transparent 70%); }

.light .btn-outline {
    border-color: var(--border-hover);
    color: var(--text);
}
.light .btn-outline:hover {
    background: rgba(0, 0, 0, 0.03);
}

.light .btn-ghost { color: var(--text-muted); }
.light .btn-ghost:hover { color: var(--text); }

.light .btn-ghost-white {
    color: var(--text);
    border-color: var(--border-hover);
}

.light .btn-white {
    background: #1E293B;
    color: #fff;
}

.light .discord-mockup {
    background: #fff;
    border-color: var(--border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.light .discord-header {
    background: rgba(0, 0, 0, 0.02);
    border-bottom-color: var(--border);
    color: var(--text);
}

.light .msg-avatar { color: #fff; }

.light .reaction {
    background: rgba(0, 0, 0, 0.03);
    border-color: var(--border);
}

.light .footer {
    background: rgba(0, 0, 0, 0.02);
    border-top-color: var(--border);
}

.light .footer-payments span {
    border-color: var(--border);
    color: var(--text-dim);
}

.light .scroll-line {
    background: linear-gradient(to bottom, var(--purple), transparent);
}

.light .theme-toggle {
    border-color: var(--border-hover);
    background: rgba(0, 0, 0, 0.03);
    color: var(--text-muted);
}
.light .theme-toggle:hover {
    background: rgba(0, 0, 0, 0.06);
    color: var(--text);
}

.light .ftag {
    backdrop-filter: blur(12px);
    border-color: rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.light .mobile-toggle span { background: #1E293B; }

.light .faq-question { color: var(--text); }
.light .faq-question:hover { color: var(--purple); }

/* ─── Gradient Text ─── */
.gradient-text {
    background: linear-gradient(135deg, var(--purple-light), var(--cyan), var(--green-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ─── Section Headers ─── */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(6, 182, 212, 0.15));
    border: 1px solid rgba(124, 58, 237, 0.2);
    color: var(--purple-light);
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, var(--purple), #5B21B6);
    color: #fff;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
}
.btn-primary:hover {
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.5);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border-hover);
}
.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-ghost {
    background: transparent;
    color: var(--text-muted);
}
.btn-ghost:hover { color: #fff; }

.btn-white {
    background: #fff;
    color: var(--bg);
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.btn-ghost-white {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.25);
}
.btn-ghost-white:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-premium {
    background: linear-gradient(135deg, var(--amber), #D97706);
    color: #000;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
}
.btn-premium:hover {
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.5);
    transform: translateY(-2px);
}

.btn-lg { padding: 16px 32px; font-size: 16px; border-radius: var(--radius); }
.btn-sm { padding: 8px 16px; font-size: 13px; border-radius: var(--radius-xs); }
.btn-block { width: 100%; justify-content: center; }


/* ═══════════ NAVBAR ═══════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s;
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(3, 0, 20, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.logo-highlight {
    background: linear-gradient(135deg, var(--purple-light), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 14px;
    color: var(--text-muted);
    transition: color 0.2s;
    font-weight: 500;
}
.nav-links a:hover { color: #fff; }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
}


/* ═══════════ HERO ═══════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient-1 {
    position: absolute;
    top: -30%;
    left: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
    filter: blur(60px);
    animation: float1 20s ease-in-out infinite;
}

.hero-gradient-2 {
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.12) 0%, transparent 70%);
    filter: blur(60px);
    animation: float2 25s ease-in-out infinite;
}

.hero-gradient-3 {
    position: absolute;
    top: 30%;
    right: 20%;
    width: 30%;
    height: 30%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    filter: blur(40px);
    animation: float3 18s ease-in-out infinite;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 60% 60% at 50% 40%, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 40%, black, transparent);
}

@keyframes float1 { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(30px, -20px) scale(1.1); } }
@keyframes float2 { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(-20px, 30px) scale(1.05); } }
@keyframes float3 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(15px, -15px); } }

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    margin-bottom: 32px;
}

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

@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    50% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat { text-align: center; }

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
}
.stat-plus, .stat-unit {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--purple-light);
}

.stat-label {
    display: block;
    font-size: 13px;
    color: var(--text-dim);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--purple), transparent);
    border-radius: 2px;
    animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* ─── Floating Tags ─── */
.floating-tags {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.ftag {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 8px;
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: 0.2px;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    animation: floatTagIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards,
               floatTagDrift var(--drift, 12s) ease-in-out var(--delay, 1.5s) infinite;
}

.ftag-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Positions — tighter around center, asymmetric */
.ftag-1 {
    top: 24%;
    left: 12%;
    animation-delay: 0.6s;
    --delay: 1.2s;
    --drift: 14s;
}
.ftag-1 .ftag-dot { background: #7C3AED; box-shadow: 0 0 6px rgba(124, 58, 237, 0.5); }

.ftag-2 {
    top: 20%;
    right: 11%;
    animation-delay: 0.9s;
    --delay: 1.4s;
    --drift: 16s;
}
.ftag-2 .ftag-dot { background: #06B6D4; box-shadow: 0 0 6px rgba(6, 182, 212, 0.5); }

.ftag-3 {
    bottom: 32%;
    right: 10%;
    animation-delay: 1.2s;
    --delay: 1.6s;
    --drift: 13s;
}
.ftag-3 .ftag-dot { background: #10B981; box-shadow: 0 0 6px rgba(16, 185, 129, 0.5); }

.ftag-4 {
    bottom: 38%;
    left: 10%;
    animation-delay: 1.5s;
    --delay: 1.8s;
    --drift: 15s;
}
.ftag-4 .ftag-dot { background: #F59E0B; box-shadow: 0 0 6px rgba(245, 158, 11, 0.5); }

.ftag-5 {
    bottom: 20%;
    left: 18%;
    animation-delay: 1.8s;
    --delay: 2s;
    --drift: 17s;
}
.ftag-5 .ftag-dot { background: #A855F7; box-shadow: 0 0 6px rgba(168, 85, 247, 0.5); }

@keyframes floatTagIn {
    0% { opacity: 0; transform: translateY(12px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes floatTagDrift {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(6px, -8px); }
    66% { transform: translate(-4px, 5px); }
}

/* Light mode adjustments */
.light .ftag {
    color: rgba(0, 0, 0, 0.35);
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.06);
}

/* Hide on smaller screens */
@media (max-width: 1100px) {
    .ftag { font-size: 10.5px; padding: 6px 12px; }
    .ftag-1 { left: 4%; }
    .ftag-4 { left: 3%; }
    .ftag-5 { display: none; }
}

@media (max-width: 768px) {
    .floating-tags { display: none; }
}

/* ─── Hero Animations ─── */
.animate-in {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

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


/* ═══════════ TRUST BAR ═══════════ */
.trust-bar {
    padding: 40px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-label {
    text-align: center;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dim);
    margin-bottom: 24px;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.2);
    transition: color 0.3s;
}
.trust-item:hover { color: rgba(255, 255, 255, 0.5); }


/* ═══════════ FORMATIONS ═══════════ */
.formations {
    padding: 120px 0;
}

.formations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.formation-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.formation-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.card-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}
.formation-card:hover .card-glow { opacity: 1; }
.card-glow-purple { background: rgba(124, 58, 237, 0.08); }
.card-glow-cyan { background: rgba(6, 182, 212, 0.08); }
.card-glow-green { background: rgba(16, 185, 129, 0.08); }

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.card-icon.purple { background: rgba(124, 58, 237, 0.1); color: var(--purple-light); }
.card-icon.cyan { background: rgba(6, 182, 212, 0.1); color: var(--cyan-light); }
.card-icon.green { background: rgba(16, 185, 129, 0.1); color: var(--green-light); }

.card-duration {
    font-size: 12px;
    color: var(--text-dim);
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 100px;
}

.card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.card-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.tag {
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-dim);
    border: 1px solid var(--border);
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.card-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}


/* ═══════════ FEATURES ═══════════ */
.features {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.features-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.features-gradient {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(124, 58, 237, 0.06) 0%, transparent 70%);
    filter: blur(40px);
}

.features .container { position: relative; z-index: 1; }

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-item {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.3s;
}
.feature-item:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(6, 182, 212, 0.1));
    color: var(--purple-light);
    margin-bottom: 20px;
}

.feature-item h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
}

.feature-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}


/* ═══════════ PRICING ═══════════ */
.pricing {
    padding: 120px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
    transition: all 0.3s;
}

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

.pricing-featured {
    background: linear-gradient(180deg, rgba(124, 58, 237, 0.08) 0%, var(--bg-card) 100%);
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: 0 0 40px rgba(124, 58, 237, 0.1);
    transform: scale(1.03);
}
.pricing-featured:hover { transform: scale(1.03) translateY(-4px); }

.pricing-premium {
    background: linear-gradient(180deg, rgba(245, 158, 11, 0.06) 0%, var(--bg-card) 100%);
    border-color: rgba(245, 158, 11, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, var(--purple), #5B21B6);
    color: #fff;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
}

.premium-badge {
    background: linear-gradient(135deg, var(--amber), #D97706) !important;
    color: #000 !important;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4) !important;
}

.pricing-header {
    margin-bottom: 24px;
}

.pricing-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.pricing-header p {
    font-size: 14px;
    color: var(--text-muted);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 28px;
}

.price-amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #fff;
}

.price-currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-muted);
}

.price-period {
    font-size: 14px;
    color: var(--text-dim);
    margin-left: 8px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 28px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-muted);
}

.pricing-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-dim);
    margin-top: 40px;
}


/* ═══════════ TESTIMONIALS ═══════════ */
.testimonials {
    padding: 120px 0;
    border-top: 1px solid var(--border);
}

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

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: all 0.3s;
}
.testimonial-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-2px);
}

.testimonial-stars {
    color: var(--amber);
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.testimonial-author strong {
    display: block;
    font-size: 14px;
    color: #fff;
}

.testimonial-author span {
    font-size: 12px;
    color: var(--text-dim);
}


/* ═══════════ COMMUNITY ═══════════ */
.community {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.community-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.community-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.04) 0%, rgba(6, 182, 212, 0.04) 100%);
}

.community .container { position: relative; z-index: 1; }

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

.community-text .section-tag { margin-bottom: 16px; }
.community-text .section-title { text-align: left; margin-bottom: 16px; }
.community-text p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 28px;
}

.community-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.cf-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text);
}

/* Discord Mockup */
.discord-mockup {
    background: #1a1a2e;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.discord-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--border);
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

.discord-icon {
    color: var(--text-dim);
    font-size: 18px;
}

.discord-online {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 400;
    color: var(--text-dim);
}

.online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
}

.discord-messages {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.discord-msg {
    display: flex;
    gap: 12px;
}

.msg-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.msg-name {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2px;
    display: block;
}

.msg-content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

.msg-reactions {
    display: flex;
    gap: 6px;
    margin-top: 6px;
}

.reaction {
    padding: 2px 8px;
    border-radius: 100px;
    font-size: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: var(--text-muted);
}


/* ═══════════ FAQ ═══════════ */
.faq {
    padding: 120px 0;
    border-top: 1px solid var(--border);
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: color 0.2s;
}
.faq-question:hover { color: var(--purple-light); }

.faq-chevron {
    transition: transform 0.3s;
    color: var(--text-dim);
    flex-shrink: 0;
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
    color: var(--purple-light);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s;
}

.faq-item.open .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding-bottom: 20px;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}


/* ═══════════ CTA SECTION ═══════════ */
.cta-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-gradient-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.12) 0%, rgba(6, 182, 212, 0.08) 50%, rgba(16, 185, 129, 0.06) 100%);
}

.cta-gradient-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
    filter: blur(60px);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
}

.cta-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 36px;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}


/* ═══════════ CONTACT ═══════════ */
.contact {
    padding: 80px 0;
    border-top: 1px solid var(--border);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3,
.contact-locations h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.contact-info p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--text-muted);
}

.contact-item svg { flex-shrink: 0; }

.contact-item strong {
    display: block;
    font-size: 14px;
    color: #fff;
}

.contact-item span {
    font-size: 13px;
}

.contact-locations {
    padding-top: 40px;
}

.location {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
}

.location-flag { font-size: 24px; }

.location strong {
    display: block;
    font-size: 14px;
    color: #fff;
}

.location span {
    font-size: 13px;
    color: var(--text-dim);
}


/* ═══════════ FOOTER ═══════════ */
.footer {
    padding: 60px 0 32px;
    border-top: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.3);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand .logo {
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--text-dim);
    max-width: 260px;
    line-height: 1.6;
}

.footer-links h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    font-size: 14px;
    color: var(--text-dim);
    padding: 4px 0;
    transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-dim);
}

.footer-payments {
    display: flex;
    gap: 16px;
}

.footer-payments span {
    font-size: 11px;
    color: var(--text-dim);
    padding: 4px 10px;
    border: 1px solid var(--border);
    border-radius: 4px;
}


/* ═══════════ SCROLL REVEAL ═══════════ */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ═══════════ RESPONSIVE ═══════════ */

/* Tablet landscape & small desktop */
@media (max-width: 1024px) {
    .nav-links,
    .nav-actions { display: none; }
    .mobile-toggle { display: flex; }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(3, 0, 20, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 24px;
        border-bottom: 1px solid var(--border);
        gap: 16px;
    }

    .formations-grid,
    .features-grid,
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-featured { transform: scale(1); }
    .pricing-featured:hover { transform: translateY(-4px); }

    .community-content { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* Tablet portrait */
@media (max-width: 768px) {
    .hero { padding: 100px 0 60px; }
    .hero-title { font-size: clamp(30px, 5vw, 48px); }

    .formations, .features, .pricing, .testimonials, .faq, .cta-section {
        padding: 80px 0;
    }

    .section-header { margin-bottom: 40px; }

    .hero-stats { gap: 20px; }
    .stat-number { font-size: 28px; }
    .stat-divider { display: none; }

    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-locations { padding-top: 0; }
}

/* Mobile */
@media (max-width: 600px) {
    .formations-grid,
    .features-grid,
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .footer-payments { flex-wrap: wrap; justify-content: center; }

    .hero-ctas { flex-direction: column; align-items: stretch; }
    .hero-ctas .btn { justify-content: center; }
    .cta-actions { flex-direction: column; align-items: stretch; }
    .cta-actions .btn { justify-content: center; }

    .trust-logos { gap: 20px; }
    .trust-item { font-size: 13px; }
}
