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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

/* =========================================================
   HEADER
========================================================= */
header {
   position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transition: all 0.3s ease;
     z-index: 10000 !important;
    position: fixed !important
}

.nav-container {
   max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 9999;
}

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

/* Logo */
.logo a {
    display: block;
    transition: opacity 0.3s;
}

.logo a:hover {
    opacity: 0.8;
}

.logo img {
    height: 75px;
    width: auto;
    display: block;
}

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
}

.nav-links > li > a,
.dropdown-toggle {
    position: relative;
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-links > li > a:hover,
.dropdown-toggle:hover { color: #D4AF37; }

.nav-links > li > a::after,
.dropdown-toggle::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #D4AF37;
    transition: width 0.3s ease;
}
.nav-links > li > a:hover::after,
.dropdown-toggle:hover::after { width: 100%; }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-toggle { background: none; border: none; cursor: pointer; font: inherit; }
.dropdown-icon { transition: transform 0.3s; }
.dropdown:hover .dropdown-icon { transform: rotate(180deg); }

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: #010101;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    padding: 0.75rem;
    min-width: 500px;
}

.dropdown-item {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    transition: all 0.2s;
}
.dropdown-item:hover { background: rgba(212,175,55,0.1); color: #D4AF37; }

.dropdown-item-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
}

.dropdown-item-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.25rem;
}
.dropdown-item-title {
    font-weight: 600;
    font-size: 0.75rem;
}

.dropdown-item-desc {
    font-size: 0.6rem;
    color: #94a3b8;
}


.dropdown-menu-simple { min-width: 220px; padding: 0.5rem; }

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 6px;
    text-decoration: none;
    color: #fff;
    transition: all 0.2s;
    font-size: 0.95rem;
}
.dropdown-link:hover { background: rgba(212,175,55,0.1); color: #D4AF37; }
.dropdown-link svg { flex-shrink: 0; }

/* Nav Right */
.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(212,175,55,0.5);
    color: #fff;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
}
.lang-btn:hover {
    background: rgba(212,175,55,0.1);
    border-color: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212,175,55,0.2);
}

.cta-button {
    padding: 0.6rem 1.8rem;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s;
    display: inline-block;
    white-space: nowrap;
}
.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212,175,55,0.4);
}

/* =========================================================
   HAMBURGER BUTTON — hidden on desktop, shown on mobile
========================================================= */
.mobile-menu-btn {
    display: none; /* shown via media query below */
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    width: 44px;
    height: 44px;
    border-radius: 8px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
}
.mobile-menu-btn:hover { background: rgba(255,255,255,0.1); }

.hamburger {
    width: 24px;
    height: 18px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.hamburger span {
    display: block;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* =========================================================
   MOBILE MENU — hidden by default, shown when .active
========================================================= */
.mobile-menu {
    display: none; /* block via .active */
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 8, 20, 0.99);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    overflow-y: auto;
    z-index: 9998;
    border-top: 1px solid rgba(212,175,55,0.2);
    animation: none;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-content {
    padding: 2rem 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.mobile-menu-link {
    display: block;
    padding: 1rem 1.25rem;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    border-radius: 10px;
    margin-bottom: 0.4rem;
    transition: all 0.2s;
    border: 1px solid transparent;
}
.mobile-menu-link:hover {
    background: rgba(212,175,55,0.08);
    border-color: rgba(212,175,55,0.2);
    color: #D4AF37;
}

.mobile-menu-section { margin: 1.5rem 0; }

.mobile-menu-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding-left: 0.25rem;
}

.mobile-menu-item {
    display: flex;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    margin-bottom: 0.4rem;
    transition: all 0.2s;
    border: 1px solid transparent;
}
.mobile-menu-item:hover {
    background: rgba(212,175,55,0.08);
    border-color: rgba(212,175,55,0.2);
}

.mobile-menu-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
}

.mobile-menu-title { font-weight: 600; font-size: 0.95rem; margin-bottom: 0.2rem; }
.mobile-menu-desc { font-size: 0.8rem; color: #94a3b8; }

.mobile-menu-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.lang-btn.mobile,
.cta-button.mobile {
    width: 100%;
    text-align: center;
    padding: 0.9rem;
    font-size: 1rem;
    display: block;
}

/* =========================================================
   HERO SECTION
========================================================= */
.formation-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 5% 4rem;
    background: radial-gradient(circle at center, rgba(185,122,30,0.15), transparent 150%);
    position: relative;
    overflow: hidden;
}

.hero-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch; /* changed from center */
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-text {
    padding-right: 1rem;
    display: flex;
    flex-direction: column;
    /* remove any justify-content */

}
.formation-badge {
    display: inline-block;
    background: transparent;
    border: 1px solid #D4AF37;
    color: #D4AF37;
    padding: 8px 20px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}


.hero-text h1 {
    margin-top: auto; 
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.1;
    background: linear-gradient(135deg, #fff, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: -1px;
    text-align: center;
}

.hero-text p {
    margin-bottom: auto; /* floats cta-group down to video bottom */
    font-size: .9rem;
    color: #e9e5e5;
    line-height: 1.8;
    text-align: center;
}


.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0 1.5rem;
}

.stat-number {
    font-size: 1rem;
    font-weight: 700;
    color: #D4AF37;
    text-align: center;
}

.stat-label {
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}
.hero-cta-group {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    /* no margin-top needed — auto on p pushes it down */
}

.hero-cta {
    
    padding: 16px 20px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    text-decoration: none;
            color: #D4AF37;
            border: 1px solid rgba(212, 175, 55, 0.6);
            border-radius:4px;
            background: rgba(212, 175, 55, 0.08);
            backdrop-filter: blur(6px);
            box-shadow: 
                0 4px 12px rgba(0, 0, 0, 0.4),
                0 0 10px rgba(212, 175, 55, 0.15);
            transition: all 0.3s ease;
}
.hero-cta:hover {
    color: #fff;
            letter-spacing: 1.5px;
            background: rgba(212, 175, 55, 0.15);
            border-color: #D4AF37;
            box-shadow: 
                0 6px 18px rgba(0, 0, 0, 0.5),
                0 0 18px rgba(212, 175, 55, 0.35);
            transform: translateY(-2px);
}



.hero-cta-secondary {
    border: 1px solid #D4AF37;
    background: #D4AF37; color: #000; 
}
.hero-cta-secondary:hover {background: transparent;
    border: 1px solid #D4AF37;
    color: #D4AF37; }

.hero-video {
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);

}
.hero-video::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
    z-index: 10;
}

.video-embed {

    position: relative;
    padding-bottom: 69.5%;
    height: 100%;
    overflow: hidden;
}
.video-embed iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* =========================================================
   PROFESSOR SECTION
========================================================= */
.professor-section {
    padding: 6rem 5%;
    background: radial-gradient(circle at center, rgba(185,122,30,0.15), transparent 150%);
    position: relative;
}

.professor-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.professor-image-box {
    position: sticky;
    top: 100px;
}

.professor-image {
    width: 100%;
    aspect-ratio: 3/4;
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    position: relative;
    overflow: hidden;
}
.professor-image::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}
.professor-image img { width: 100%; height: 100%; object-fit: cover; }

.professor-credentials {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
}
.professor-credentials h4 {
    color: #D4AF37;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.credential-item {
    padding: 0.8rem 0;
    border-bottom: 1px solid #1a1a1a;
    color: #c7bfbf;
    font-size: 0.9rem;
}
.credential-item:last-child { border-bottom: none; }

.professor-info h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -1px;
}
.professor-title {
    font-size: 0.9rem;
    color: #D4AF37;
    margin-bottom: 2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.professor-bio {
    color: #c7bfbf;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 2rem;
}
.professor-bio p { margin-bottom: 1rem; }

.professor-achievements { margin-top: 3rem; }
.professor-achievements h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.achievement-list { list-style: none; }
.achievement-list li {
    padding: 1rem 0 1rem 2rem;
    border-left: 2px solid #1a1a1a;
    margin-bottom: 1rem;
    color: #c7bfbf;
    position: relative;
}
.achievement-list li::before {
    content: '✓';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: #D4AF37;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}
.credential-check {
    color: #D4AF37;
}
/* =========================================================
   CURRICULUM SECTION
========================================================= */
.curriculum-section {
    padding: 6rem 5%;
    background: radial-gradient(circle at center, rgba(185,122,30,0.15), transparent 150%);
}

.section-title {
    text-align: center;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.section-subtitle {
    text-align: center;
    font-size: 1rem;
    color: #666;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.curriculum-container {
    max-width: 1000px;
    margin: 0 auto;
}

.module {
    background: #000;
    border: 1px solid #1a1a1a;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}
.module:hover { border-color: #D4AF37; }

.module-header {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.module-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
    opacity: 0;
    transition: opacity 0.3s;
}
.module:hover .module-header::before { opacity: 1; }

.module-title-area {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex: 1;
    min-width: 0;
}

.module-number {
    background: transparent;
    border: 1px solid #D4AF37;
    color: #D4AF37;
    width: 46px;
    height: 46px;
    min-width: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.module-title-text h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}
.module-meta { font-size: 0.82rem; color: #666; }

.module-toggle {
    color: #D4AF37;
    font-size: 1.3rem;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 1rem;
}
.module.active .module-toggle { transform: rotate(180deg); }

.module-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.module.active .module-content { max-height: 1000px; }

.module-lessons {
    padding: 0 2rem 2rem;
    list-style: none;
}

.lesson-item {
    padding: 0.9rem 1rem 0.9rem 3.5rem;
    border-bottom: 1px solid #1a1a1a;
    border-left: 2px solid transparent;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    transition: border-left-color 0.2s ease, background 0.2s ease, padding-left 0.2s ease;
    cursor: default;
}

.lesson-item {
    border-left-color: #D4AF37;
    background: rgba(212, 175, 55, 0.04);
    padding-left: 4rem;
    box-shadow: inset 3px 0 12px rgba(212, 175, 55, 0.08);
}

.lesson-item:last-child { border-bottom: none; }

.lesson-duration {
    color: #D4AF37;
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* =========================================================
   TESTIMONIALS
========================================================= */
.testimonials-section {
    padding: 6rem 5%;
    background: radial-gradient(circle at center, rgba(185,122,30,0.15), transparent 150%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 3rem auto 0;
}

.testimonial-card {
    background: #010101;
    padding: 2rem;
    border: 1px solid #1a1a1a;
    position: relative;
    transition: all 0.3s ease;
}
.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
    opacity: 0;
    transition: opacity 0.3s;
}
.testimonial-card:hover { border-color: #D4AF37; transform: translateY(-5px); }
.testimonial-card:hover::before { opacity: 1; }

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.testimonial-avatar {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #000;
    font-size: 1.4rem;
}
.testimonial-info h4 { font-size: 1rem; color: #fff; margin-bottom: 0.25rem; }
.testimonial-info p { font-size: 0.82rem; color: #999; }
.testimonial-rating { color: #D4AF37; margin-bottom: 1rem; font-size: 1rem; }
.testimonial-card blockquote { color: #999; line-height: 1.8; font-style: italic; font-size: 0.92rem; }

/* =========================================================
   PRICING
========================================================= */
/* ── Pricing Section ── */
.pricing {
    padding: 6rem 5%;
    background: radial-gradient(circle at center, rgba(185,122,30,0.08), transparent 70%);
}
.pricing-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(212,175,55,0.06) 1px, transparent 1px);
    background-size: 14px 14px;
    pointer-events: none;
}
.pricing-content { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }

/* ── Bento grid ── */
.bento-grid { display: grid; grid-template-columns: repeat(8, 1fr); gap: 10px; }

/* ── Base card ── */
.pricing-card {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.pricing-card::before {
    content: '';
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #D4AF3745, transparent);
    opacity: 0;
    transition: opacity .35s;
}
.pricing-card:hover::before { opacity: 1; }
.pricing-card:hover {
    transform: translateY(-5px);
    border-color: #D4AF3732;
    box-shadow: 0 22px 55px rgba(0,0,0,.6);
}

/* ── Column spans ── */
.standard-card { grid-column: span 3; }
.featured-card  { grid-column: span 5; background: #0c0b00; border-color: #D4AF3738; }
.featured-card::before { opacity: 1; }
.card-4-col     { grid-column: span 4; }

/* ── Featured glow ── */
.gradient-overlay {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 55% at 0% 0%, #D4AF3715, transparent);
    pointer-events: none;
}

/* ── VIP card ── */
.vip-card { background: #0c0b00; border-color: #D4AF3728; }
.vip-glow {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 50% at 50% 0%, #D4AF3708, transparent);
    pointer-events: none;
}

/* ── Card header ── */
.card-header {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 20px 22px;
    flex-wrap: wrap;
}
.card-header .btn { margin-left: auto; }

/* ── Badges ── */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 4px 11px;
    border-radius: 100px;
}
.badge-gold { background: #D4AF3710; color: #D4AF37; border: 1px solid #D4AF3728; }
.badge-hot  { background: linear-gradient(135deg, #D4AF37, #f0c840); color: #000; }
.badge-free { background: #ffffff08; color: #ffffff45; border: 1px solid #ffffff12; }

/* ── Buttons ── */
.btn {
    font-size: .73rem;
    font-weight: 700;
    padding: 9px 18px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    letter-spacing: .02em;
    white-space: nowrap;
    transition: all .25s ease;
    text-decoration: none;
    display: inline-block;
}
.btn-gold  { background: linear-gradient(135deg, #D4AF37, #efd050); color: #000; }
.btn-gold:hover { box-shadow: 0 5px 22px rgba(212,175,55,.35); transform: scale(1.03); }
.btn-ghost { background: #ffffff07; color: #ffffff65; border: 1px solid #1e1e1e; }
.btn-ghost:hover { background: #ffffff11; border-color: #ffffff28; color: #fff; }
.btn-vip   { background: #1a0f00; color: #D4AF37; border: 1px solid #D4AF3730; }
.btn-vip:hover { background: #2a1800; border-color: #D4AF3750; }

/* ── Price section ── */
.price-section { padding: 0 22px 22px; }
.featured-card .price-section { display: flex; gap: 36px; align-items: flex-start; }
.price-left { min-width: 28%; }

.price-display { display: flex; align-items: baseline; gap: 5px; margin-bottom: 18px; }
.price-amount {
    font-family: 'Syne', 'Inter', sans-serif;
    font-size: 2.7rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.03em;
    line-height: 1;
}
.featured-card .price-amount { color: #D4AF37; }
.price-suffix { font-size: .73rem; color: #ffffff35; padding-bottom: 3px; }
.price-desc { font-size: .73rem; color: #ffffff38; line-height: 1.6; margin-top: -8px; }

/* ── Features list ── */
.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    padding: 0; margin: 0;
}
.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: .78rem;
    color: #ffffffb5;
    line-height: 1.4;
}
.check-icon {
    flex-shrink: 0;
    width: 15px; height: 15px;
    background: #D4AF3712;
    border: 1px solid #D4AF3730;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}
.check-icon svg { width: 8px; height: 8px; stroke: #D4AF37; stroke-width: 3; fill: none; }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .bento-grid { grid-template-columns: repeat(4, 1fr); }
    .standard-card, .featured-card, .card-4-col { grid-column: span 4; }
    .featured-card .price-section { flex-direction: column; gap: 20px; }
}
@media (max-width: 640px) {
    .bento-grid { grid-template-columns: 1fr; }
    .standard-card, .featured-card, .card-4-col { grid-column: span 1; }
    .card-header .btn { margin-left: 0; width: 100%; text-align: center; }
    .hide-mobile { display: none; }
}
.hero-badge-Step {
    display: inline-block; /* or block */
    margin: 1.5rem auto 2rem auto; /* auto left/right centers it */
    text-align: center;
    padding: 8px 24px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: #D4AF37;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    background: rgba(212, 175, 55, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    align-items: center;
}

.hero-badge-Step::before,
.hero-badge-Step::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5));
}

.hero-badge-Step::before {
    right: 100%;
    margin-right: 15px;
    transform: translateY(-50%);
}

.hero-badge-Step::after {
    left: 100%;
    margin-left: 15px;
    transform: translateY(-50%) rotate(180deg);
}

.hero-badge-Step:hover {
    border-color: rgba(212, 175, 55, 0.8);
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}
.hero-badge,
.hero-badge-Step {
    display: inline-block !important;
    padding: 8px 24px !important;
    border: 1px solid rgba(212, 175, 55, 0.4) !important;
    color: #D4AF37 !important;
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;
    position: relative !important;
    background: rgba(212, 175, 55, 0.05) !important;
    backdrop-filter: blur(10px) !important;
    transition: all 0.3s ease !important;
    margin-bottom: 2rem !important;
}

.hero-badge::before,
.hero-badge-Step::before {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    right: 100% !important;
    width: 36px !important;
    height: 1px !important;
    margin-right: 14px !important;
    transform: translateY(-50%) !important;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5)) !important;
}

.hero-badge::after,
.hero-badge-Step::after {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    left: 100% !important;
    width: 36px !important;
    height: 1px !important;
    margin-left: 14px !important;
    transform: translateY(-50%) rotate(180deg) !important;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5)) !important;
}

.hero-badge:hover,
.hero-badge-Step:hover {
    border-color: rgba(212, 175, 55, 0.8) !important;
    background: rgba(212, 175, 55, 0.1) !important;
}

/* Center badges that are inside centered sections */
.live-top .hero-badge,
.models-header .hero-badge,
.cr-section-head .hero-badge {
    display: block !important;
    width: fit-content !important;
    margin: 0 auto 1.25rem auto !important;
}

/* Step badge stays centered inline */
.hero-badge-Step {
    display: block !important;
    width: fit-content !important;
    margin: 1rem auto !important;
    text-align: center !important;
        

}
/* =========================================================
   FOOTER
========================================================= */
.footer {
    background: radial-gradient(circle at center, rgba(185,122,30,0.15), transparent 150%);
    border-top: 1px solid #1a1a1a;
    padding: 80px 0 40px;
}
.footer-container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.footer-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 60px;
}
.footer-brand { flex: 1; min-width: 260px; max-width: 380px; }
.footer-logo-section { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.footer-description { color: #999; line-height: 1.8; margin-bottom: 30px; font-size: 0.9rem; }
.footer-social { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-social-link {
    width: 40px;
    height: 40px;
    border: 1px solid #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    transition: all 0.3s ease;
    text-decoration: none;
}
.footer-social-link:hover { border-color: #D4AF37; color: #D4AF37; transform: translateY(-3px); }

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 32px;
    flex: 2;
}
.footer-column h3 {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}
.footer-column ul { list-style: none; }
.footer-column li { margin-bottom: 12px; }
.footer-column a { color: #999; text-decoration: none; font-size: 0.88rem; transition: color 0.3s ease; }
.footer-column a:hover { color: #D4AF37; }

.footer-bottom {
    border-top: 1px solid #1a1a1a;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-copyright { color: #666; font-size: 0.82rem; }
.footer-legal { display: flex; gap: 24px; list-style: none; flex-wrap: wrap; }
.footer-legal a { color: #666; text-decoration: none; font-size: 0.82rem; transition: color 0.3s ease; }
.footer-legal a:hover { color: #D4AF37; }

/* =========================================================
   ANIMATIONS
========================================================= */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
.pricing-card:nth-child(1) { animation-delay: 0.1s; }
.pricing-card:nth-child(2) { animation-delay: 0.2s; }
.pricing-card:nth-child(3) { animation-delay: 0.3s; }
.pricing-card:nth-child(4) { animation-delay: 0.4s; }

/* =========================================================
   RESPONSIVE — TABLET (≤1024px)
========================================================= */
@media (max-width: 1024px) {
    .nav-links { display: none; }
    .nav-right { display: none; }
    .mobile-menu-btn { display: flex; }

    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .hero-text { padding-right: 0; }

    .professor-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .professor-image-box { position: relative; top: 0; max-width: 400px; }

    .bento-grid { grid-template-columns: repeat(4, 1fr); }
    .featured-card { grid-column: span 4; }
    .standard-card { grid-column: span 4; }
    .card-4-col { grid-column: span 4; }
    .featured-card .price-section { flex-direction: column; gap: 20px; }
}

/* =========================================================
   RESPONSIVE — MOBILE (≤768px)
========================================================= */
@media (max-width: 768px) {
    .mobile-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 90vh;
        background: rgba(0, 0, 0, 0.95);
        z-index: 99999;
        overflow-y: auto;
    }

    .mobile-menu.active {
        display: block !important;
    }
    .nav-container { padding: 0 1.25rem; }

    .formation-hero { padding: 100px 5% 3rem; }

    .hero-text h1 { font-size: clamp(1.8rem, 7vw, 2.5rem); }
    .hero-text p { font-size: 1rem; }

    .hero-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem;
    }
    .stat-number { font-size: 1.5rem; }

    .hero-cta-group { flex-direction: column; }
    .hero-cta { width: 100%; text-align: center; padding: 15px 24px; }

    .professor-section { padding: 4rem 5%; }
    .professor-image-box { max-width: 100%; }

    .curriculum-section { padding: 4rem 5%; }
    .module-header { padding: 1.25rem; }
    .module-title-text h3 { font-size: 0.95rem; }
    .module-lessons { padding: 0 1rem 1.5rem; }
    .lesson-item { padding: 0.8rem 0.5rem 0.8rem 0.5rem; font-size: 0.85rem; }

    .testimonials-section { padding: 4rem 5%; }
    .testimonials-grid { grid-template-columns: 1fr; }

    .pricing { padding: 4rem 5%; }
    .bento-grid { grid-template-columns: 1fr; gap: 14px; }
    .featured-card,
    .standard-card,
    .card-4-col { grid-column: span 1; }
    .price-amount { font-size: 2.5rem; }
    .card-header { flex-direction: column; align-items: flex-start; }
    .card-header .btn { margin-left: 0; width: 100%; text-align: center; }
    .badge-outline.hide-mobile { display: none; }

    .footer { padding: 60px 0 30px; }
    .footer-main { gap: 36px; }
    .footer-brand { min-width: 100%; max-width: 100%; }
    .footer-links { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* =========================================================
   RESPONSIVE — SMALL MOBILE (≤480px)
========================================================= */
@media (max-width: 480px) {
    .nav-content { height: 70px; }
    .mobile-menu { top: 70px; }
    .logo img { height: 48px; }

    .formation-hero { padding: 90px 4% 2.5rem; }
    .hero-text h1 { font-size: clamp(1.6rem, 8vw, 2rem); letter-spacing: -0.5px; }
    .hero-stats { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .stat-number { font-size: 1.3rem; }

    .module-number { width: 38px; height: 38px; min-width: 38px; font-size: 0.95rem; }
    .module-title-text h3 { font-size: 0.88rem; }
    .module-meta { font-size: 0.75rem; }

    .footer-links { grid-template-columns: 1fr 1fr; }
    .footer-legal { gap: 16px; }

    .price-amount { font-size: 2.2rem; }
    .section-title { font-size: 1.6rem; }
}
@media (max-width: 1200px) {
    .formations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}    

@media (max-width: 900px) {
  .mobile-menu-btn       { display: flex !important; }
    .nav-links             { display: none !important; }
    .nav-right             { display: none !important; }  
}
@media (max-width: 1024px) {
    /* Header container */
  .nav-container {
    padding: 0 1.5rem;
  }
  
  .nav-content {
    height: 70px;
  }
  
  /* Logo */
  .logo img {
    height: 60px;
  }
  
  /* Navigation links - smaller spacing */
  .nav-links {
    gap: 0.3rem;
  }
  
  .nav-links > li > a,
  .dropdown-toggle {
    font-size: 0.85rem;
    padding: 0.5rem 0.8rem;
  }
  
  /* Right side buttons */
  .nav-right {
    gap: 0.75rem;
  }
  
  .lang-btn {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
  }
  
  .cta-button {
    padding: 0.5rem 1.5rem;
    font-size: 0.85rem;
  }
  
  /* Dropdown adjustments */
  .dropdown-grid {
    grid-template-columns: 1fr;
    min-width: 400px;
  }
  
  .dropdown-menu-simple {
    min-width: 200px;
  }
  .dropdown-menu {
    display: none !important;
  }
}
@media (hover: none) and (pointer: coarse) {
  /* Better touch targets */
  .mobile-menu-btn {
    min-width: 44px;
    min-height: 44px;
  }
  
  .mobile-menu-link,
  .mobile-menu-item {
    min-height: 44px;
  }
  
  .lang-btn.mobile,
  .cta-button.mobile {
    min-height: 48px;
  }
}
header.scrolled {
  background: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}
@media (max-width: 1024px) {
  
  /* Header adjustments */
  .nav-content {
    padding: 0 1rem;
  }
  
  .nav-links {
    gap: 0.3rem;
  }
  
  .nav-links > li > a,
  .dropdown-toggle {
    font-size: 0.85rem;
    padding: 0.5rem 0.8rem;
  }
  
  .logo img {
    height: 60px;
  }
  
  /* Hero section */
  .hero {
    padding: 7rem 3% 4rem;
  }
  
  .hero h1 {
    font-size: 3rem;
  }

  .hero h2 {
    font-size: 1.6rem;
  }
  
  .hero-cta {
    padding: 16px 50px;
    font-size: 0.85rem;
  }

  /* Grids - 2 columns */
  .features-grid,
  .courses-grid,
  .formations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

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

  /* Timeline adjustments */
  .timeline-content {
    width: 45%;
  }
  
  .timeline-content h2 {
    font-size: 1.6rem;
  }
  
  .blur-text-container {
    width: 45%;
  }
  
  .blur-text {
    font-size: 1rem;
  }

  /* Tabs content */
  .tab-content.active {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 40px;
  }
  
  .content-title {
    font-size: 2rem;
  }
  
  /* Coming soon carousel */
  .carousel-container {
    padding: 0 50px;
  }
  
  /* Footer */
  .footer-links {
    gap: 30px;
  }
}
@media (max-width: 896px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 5rem 5% 3rem;
  }
  
  .hero h1 {
    margin-top: 1rem;
  }
}
@media (hover: none) and (pointer: coarse) {
  .feature-card:hover,
  .course-card:hover,
  .formation-card:hover,
  .timeline-content:hover {
    transform: none;
  }
  
  .hero-cta,
  .cta-button,
  .content-button,
  .formation-cta,
  .notify-btn {
    min-height: 44px;
  }
  
  .nav-links > li > a,
  .dropdown-toggle {
    min-height: 44px;
  }
}
@media (max-width: 768px) {
    .features-header h2 {
                font-size: 2rem;
            }

            .features-header p {
                font-size: 0.9rem;
            }

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

            .feature-card {
                padding: 30px 24px;
            }

            .feature-card:nth-child(n) {
                border-right: none;
                border-bottom: 1px dashed #1a1a1a;
            }

            .feature-card:last-child {
                border-bottom: none;
            }
    .pricing-header h1 {
                font-size: 2.5rem;
            }

            .bento-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .featured-card,
            .standard-card,
            .card-4-col {
                grid-column: span 1;
            }

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

            .card-header {
                flex-direction: column;
                align-items: flex-start;
            }

            .card-header .btn {
                margin-left: 0;
                width: 100%;
            }

            .badge-outline.hide-mobile {
                display: none;
            }
    .hero h1 {
                font-size: 2.5rem;
            }

            .hero h2 {
                font-size: 1.4rem;
            }

            .video-wrapper {
                margin: 2rem auto;
                border-radius: 10px;
            }
    .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(0, 0, 0, 0.98);
                flex-direction: column;
                padding: 2rem;
                gap: 1rem;
            }

            .nav-links.active {
                display: flex;
            }

           

            .features-grid,
            .courses-grid {
                grid-template-columns: 1fr;
            }

            .timeline-content {
                width: 80%;
                margin-left: 10% !important;
            }

            .timeline-item:nth-child(even) .timeline-text {
                text-align: left !important;
            }

            .timeline-line {
                left: 30px;
            }

            .timeline-line-progress {
                left: 30px;
            }

            .timeline-marker {
                left: 30px;
            }

            .timeline-icon-start,
            .timeline-icon-end {
                left: 30px;
            }

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

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

            .coming-soon-card {
                min-width: 100%;
            }

            .carousel-container {
                padding: 0 40px;
            }
    header {
    position: fixed;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
  }
  
  .nav-container {
    padding: 0 1rem;
  }
  
  .nav-content {
    height: 70px;
  }
  
  /* Logo */
  .logo img {
    height: 55px;
  }
  
  /* Hide desktop nav and buttons */
  .nav-links,
  .nav-right {
    display: none !important;
  }
  
  /* Mobile menu button */
  .mobile-menu-btn {
    display: flex;
    border: 1px solid rgba(212, 175, 175, 0.3);
  }
  
  /* Mobile Menu Overlay */
  .mobile-menu {
    top: 70px;
  }
  
  .mobile-menu-content {
    padding: 1.5rem 1rem;
  }
  
  /* Mobile menu links */
  .mobile-menu-link {
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
  }
  
  /* Mobile dropdown sections */
  .mobile-menu-section {
    margin: 1.5rem 0;
  }
  
  .mobile-menu-label {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
  }
  
  /* Mobile dropdown items */
  .mobile-menu-item {
    padding: 0.9rem 1rem;
    gap: 0.9rem;
  }
  
  .mobile-menu-icon {
    width: 44px;
    height: 44px;
  }
  
  .mobile-menu-title {
    font-size: 0.9rem;
  }
  
  .mobile-menu-desc {
    font-size: 0.75rem;
  }
  
  /* Mobile buttons section */
  .mobile-menu-buttons {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    gap: 0.9rem;
  }
  
  .lang-btn.mobile {
    width: 100%;
    padding: 0.9rem;
    font-size: 0.95rem;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.5);
    color: #fff;
    font-weight: 600;
  }
  
  .lang-btn.mobile:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #d4af37;
  }
  

  .cta-button.mobile {
    width: 100%;
    padding: 0.9rem;
    font-size: 0.95rem;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #000;
    font-weight: 700;
  }
  
  .cta-button.mobile:hover {
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
  }
header.scrolled {
    background: rgba(0, 0, 0, 0.98);
  }
  .nav-links,
  .nav-right {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }
  
  .hero {
    padding: 6rem 5% 3rem;
    min-height: auto;
  }

  .hero h1 {
    font-size: 2.2rem;
    margin-top: 2rem;
    line-height: 1.1;
  }

  .hero h2 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }

  .hero-cta {
    width: 100%;
    max-width: 100%;
    padding: 16px 40px;
    font-size: 0.85rem;
  }
  
  .student-count {
    font-size: 0.85rem;
  }
  
  /* Avatar circles */
  .avatar-circles img,
  .avatar-more {
    width: 36px;
    height: 36px;
    margin-left: -10px;
  }

  /* Video wrapper */
  .video-wrapper {
    width: 100%;
    margin: 2rem auto;
    border-radius: 8px;
  }

  /* Sections */
  section {
    padding: 4rem 5%;
  }
  
  .section-title {
    font-size: 2rem;
    margin-bottom: 0.8rem;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 3rem;
  }

  /* All grids - Single column */
  .features-grid,
  .courses-grid,
  .formations-grid,
  .feedback-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Feature cards */
  .feature-card {
    padding: 2rem 1.5rem;
  }

  .feature-image {
    margin: -2rem -1.5rem 1.5rem;
    height: 200px;
  }
  
  .feature-card h3 {
    font-size: 1.2rem;
  }
  
  .feature-card p {
    font-size: 0.9rem;
  }

  /* Timeline - Simplified vertical layout */
  .timeline-container {
    padding: 40px 0;
  }
  
  .timeline-line,
  .timeline-line-progress {
    left: 20px;
  }
  
  .timeline-marker {
    left: 20px;
  }
  
  .timeline-icon-start,
  .timeline-icon-end {
    left: 20px;
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }
  
  .timeline-icon-start img,
  .timeline-icon-end img {
    width: 70px;
    height: 75px;
  }

  .timeline-item {
    margin: 80px 0;
  }

  .timeline-content {
    width: calc(100% - 60px);
    margin-left: 60px !important;
  }
  
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    margin-left: 60px !important;
  }

  .timeline-content h2 {
    font-size: 1.4rem;
    padding: 20px;
  }

  .timeline-text {
    padding: 20px;
  }
  
  .timeline-text h2,
  .timeline-text p {
    text-align: left !important;
  }
  
  .step-number {
    margin-left: 20px;
    padding: 6px 30px;
    font-size: 0.7rem;
  }

  .timeline-image {
    height: 180px;
  }
  
  /* Hide blur text on mobile */
  .blur-text-container {
    display: none;
  }

  /* AI Section */
  .ai-bottom-cta {
    padding: 40px 20px;
    margin-top: 60px;
  }
  
  .ai-bottom-cta h2 {
    font-size: 1.8rem;
  }
  
  .ai-bottom-cta p {
    font-size: 0.9rem;
  }

  /* Formations */
  .formation-content {
    padding: 20px;
  }
  
  .formation-content h3 {
    font-size: 1.5rem;
  }
  
  .formation-stats {
    flex-wrap: wrap;
    padding: 15px 0;
  }
  
  .stat-item {
    flex: 1 1 45%;
  }

  /* Coming Soon Banner */
  .coming-soon-banner-card {
    padding: 80px 20px;
    background-position: center;
  }
  
  .coming-soon-banner h3 {
    font-size: 1.8rem;
  }
  
  .coming-soon-banner p {
    font-size: 0.95rem;
  }

  /* Carousel */
  .carousel-container {
    padding: 0 20px;
  }

  .coming-soon-card {
    min-width: 100%;
  }
  
  .coming-soon-media {
    height: 220px;
  }
  
  .coming-soon-content {
    padding: 30px 20px;
  }
  
  .coming-soon-content h3 {
    font-size: 1.6rem;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
  }
  
  .carousel-btn.prev {
    left: -10px;
  }
  
  .carousel-btn.next {
    right: -10px;
  }

  /* FAQ */
  .faq-question {
    padding: 20px;
    font-size: 1rem;
  }
  
  .faq-answer {
    padding: 0 20px;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 20px 20px 20px;
  }

  /* Feedback */
  .feedback-comment {
    padding: 20px;
  }
  
  .feedback-avatar {
    width: 45px;
    height: 45px;
  }

  /* Tabs */
  .tabs-list {
    gap: 10px;
    margin-bottom: 40px;
  }
  
  .tab-trigger {
    padding: 12px 20px;
    font-size: 0.85rem;
  }

  .tab-content {
    padding: 40px 20px;
  }

  .tab-content.active {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .content-title {
    font-size: 1.8rem;
  }
  
  .content-description {
    font-size: 0.95rem;
  }
  
  .content-button {
    width: 100%;
    text-align: center;
  }

  /* Pricing */
  .pricing {
    padding: 4rem 5%;
  }
  
  .pricing-card {
    padding: 2rem 1.5rem;
  }
  
  .price {
    font-size: 2.5rem;
  }

  /* Footer */
  .footer {
    padding: 60px 0 30px;
  }
  
  .footer-main {
    flex-direction: column;
    gap: 40px;
  }

  .footer-brand {
    min-width: auto;
    max-width: 100%;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 10px;
  }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: none;
    box-shadow: none;
    background: transparent;
    display: none;
  }
  
  .dropdown-grid,
  .dropdown-menu-simple {
    grid-template-columns: 1fr;
    min-width: auto;
    padding: 0;
  }
  
  .dropdown-item {
    padding: 15px;
  }
  .nav-content  { height: 70px !important; }
    .logo img     { height: 58px !important; }
    .mobile-menu  { top: 70px; }

    .mobile-menu-btn {
        display: flex !important;
    }
    .nav-links,
    .nav-right {
        display: none !important;
    }
}
@media (max-width: 480px) {
  
  /* Header */
  .nav-container {
    padding: 0 0.8rem;
  }
  
  
  .mobile-menu-btn {
    width: 40px;
    height: 40px;
  }
  
  .hamburger {
    width: 22px;
    height: 16px;
  }
  
  .mobile-menu-link {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
  
  .mobile-menu-item {
    padding: 0.8rem;
  }
  
  .mobile-menu-icon {
    width: 40px;
    height: 40px;
  }
  
  .mobile-menu-title {
    font-size: 0.85rem;
  }
  
  .mobile-menu-desc {
    font-size: 0.7rem;
  }
  
  .lang-btn.mobile,
  .cta-button.mobile {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .hero h2 {
    font-size: 1.1rem;
  }
  
  .hero-cta {
    padding: 14px 30px;
    font-size: 0.8rem;
    letter-spacing: 1px;
  }


  .section-title {
    font-size: 1.7rem;
  }
  
  .section-subtitle {
    font-size: 0.95rem;
  }

  .feature-card {
    padding: 1.5rem 1rem;
  }
  
  .feature-image {
    margin: -1.5rem -1rem 1rem;
    height: 180px;
  }

  .timeline-content h2 {
    font-size: 1.2rem;
  }
  
  .timeline-text {
    padding: 15px;
  }
  
  .step-number {
    padding: 5px 20px;
    font-size: 0.65rem;
  }

  .formation-content h3,
  .coming-soon-banner h3,
  .ai-bottom-cta h2 {
    font-size: 1.5rem;
  }
  
  .formation-stats {
    gap: 10px;
  }
  
  .stat-item {
    flex: 1 1 100%;
  }

  .coming-soon-banner-card {
    padding: 60px 15px;
  }
  
  .coming-soon-content h3 {
    font-size: 1.4rem;
  }

  .tab-trigger {
    padding: 10px 16px;
    font-size: 0.8rem;
  }
  
  .content-title {
    font-size: 1.5rem;
  }

  .pricing-card {
    padding: 2rem 1.5rem;
  }
  
  .price {
    font-size: 2rem;
  }
  
  .old-price {
    font-size: 1.2rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .footer-logo-text {
    font-size: 1.2rem;
  }
  .nav-content  { height: 64px !important; }
    .logo img     { height: 50px !important; }
    .mobile-menu  { top: 64px; }
    .mobile-menu-content { padding: 0.75rem 1rem 3rem; }

}

/* OVERRIDE FIX — paste at bottom */
@media (max-width: 768px) {
    header {
        position: fixed !important;
        top: 0 !important;
    }
    .mobile-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 90vh;
        background: rgba(0, 0, 0, 0.95);
        z-index: 99999;
        overflow-y: auto;
    }

    .mobile-menu.active {
        display: block !important;
    }
    
    .footer { padding: 60px 0 30px; }
    .footer-main { gap: 36px; }
    .footer-brand { min-width: 100%; max-width: 100%; }
    .footer-links { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
      .logo img {
    height: 55px;
  }
}
@media (max-width: 480px) {
    .mobile-menu {
        top: 64px !important;
    }
}
@media (max-width: 768px) {

  /* Remove container padding */
  .nav-container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* Flex alignment */
  .nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 !important;
  }

  /* Logo flush left */
  .logo {
    margin-left: 0 !important;
    padding-left: 0 !important;
  }

  .logo img {
    display: block;
    margin-left: 0 !important;
  }

  /* Menu button flush right */
  .mobile-menu-btn {
    margin-right: 0.5rem !important;
    padding-right: 0 !important;
  }

  /* Header background */
  header {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
/* Footer Disclaimer */
.footer-disclaimer {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 50px;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
}

.footer-disclaimer-title {
    font-style: italic;
    color: #e63946;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.footer-disclaimer p {
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 16px;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.footer-disclaimer p:last-child {
    margin-bottom: 0;
}
/* ─── Mobile Menu Shell ─── */
.mobile-menu {
    position: fixed !important;
    top: 70px !important;
    left: 0; right: 0; bottom: 0;
    background: #080808;
    z-index: 10000;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .22s ease, transform .22s ease, visibility 0s linear .22s;
    -webkit-overflow-scrolling: touch;
}
.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity .22s ease, transform .22s ease;
}
@media (max-width: 480px) {
    .mobile-menu { top: 64px !important; }
}

/* ─── Inner wrapper ─── */
.mobile-menu-content {
    padding: 1rem 1rem 3rem;
    max-width: 480px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* ─── Top action buttons ─── */
.mm-actions {
    display: flex;
    gap: 8px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 6px;
}

.mm-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 16px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    cursor: pointer;
    width: 100%;
    text-decoration: none;
    border: none;
    transition: all .18s ease;
}

.mm-btn--outline {
    background: transparent;
    border: 1px solid rgba(212,175,55,0.35);
    color: #ccc;
}
.mm-btn--outline:hover {
    border-color: #D4AF37;
    color: #D4AF37;
}

.mm-btn--gold {
    background: #D4AF37;
    color: #000;
    font-weight: 700;
}
.mm-btn--gold:hover {
    background: #e8c444;
}

/* ─── Nav container ─── */
.mm-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* ─── Flat nav links (Home, Discipline, Pricing) ─── */
.mm-link {
    display: flex;
    align-items: center;
    height: 42px;
    padding: 0 12px;
    color: #bbb;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    border-radius: 7px;
    transition: background .15s, color .15s;
}
.mm-link:hover {
    background: rgba(255,255,255,0.04);
    color: #fff;
}

/* ─── Accordion wrapper ─── */
.mm-accordion {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.07);
    margin: 3px 0;
}

/* ─── Accordion toggle button ─── */
.mm-accordion__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 42px;
    padding: 0 12px;
    background: rgba(255,255,255,0.03);
    border: none;
    color: #999;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background .15s, color .15s;
}
.mm-accordion__toggle:hover,
.mm-accordion__toggle.open {
    background: rgba(212,175,55,0.06);
    color: #D4AF37;
}

/* ─── Arrow icon ─── */
.mm-accordion__arrow {
    flex-shrink: 0;
    transition: transform .22s ease;
    color: currentColor;
}
.mm-accordion__toggle.open .mm-accordion__arrow {
    transform: rotate(180deg);
}

/* ─── Collapsible body ─── */
.mm-accordion__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .28s ease;
    background: #050505;
    border-top: 0 solid transparent;
}
.mm-accordion__body.open {
    max-height: 400px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

/* ─── Items inside accordion ─── */
.mm-accordion__item {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 40px;
    padding: 0 12px;
    color: #aaa;
    text-decoration: none;
    font-size: 0.86rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: background .15s, color .15s;
}
.mm-accordion__item:last-child {
    border-bottom: none;
}
.mm-accordion__item:hover {
    background: rgba(212,175,55,0.06);
    color: #D4AF37;
}
.mm-accordion__item:hover .mm-accordion__icon {
    color: #D4AF37;
}

/* ─── Icon inside item ─── */
.mm-accordion__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: #555;
    transition: color .15s;
}
* {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
[lang="ar"] * {
    font-family: 'Cairo', sans-serif;
}

/* ── All Backgrounds ── */
body {
    background: #000;
    background-image: radial-gradient(ellipse at 50% 0%, rgba(185, 122, 30, 0.10) 0%, transparent 60%);
    background-attachment: fixed;
}

section,
.hero,
.features-section,
.Steps,
.formations-premium,
.faq-section,
.feedback-section,
.live-section,
.models-section,
.ai-section,
.footer {
    background: transparent !important;
}

/* ── Section Title ── */
.section-title {
    text-align: center !important;
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    letter-spacing: -0.5px !important;
    line-height: 1.15 !important;
    margin-bottom: 1rem !important;
    background: linear-gradient(135deg, #ffffff, #d4af37) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.9rem !important;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.6rem !important;
    }
}

/* ── Section Subtitle ── */
.section-subtitle {
    text-align: center !important;
    font-size: 1rem !important;
    font-weight: 400 !important;
    color: #666 !important;
    line-height: 1.8 !important;
    max-width: 620px !important;
    margin: 0 auto 4rem auto !important;
}

@media (max-width: 768px) {
    .section-subtitle {
        font-size: 0.95rem !important;
        margin-bottom: 3rem !important;
    }
}

/* Default: desktop */
.mobile-only {
    display: none;
}

.desktop-only {
    display: block;
}

/* Mobile (screens ≤ 768px) */
@media (max-width: 768px) {
    .mobile-only {
        display: block;
    }

    .desktop-only {
        display: none;
    }
    .pricing .section-subtitle{
      display: none;
    }
  }
  /* ── Hero reorder fix ── */

/* DESKTOP: explicit grid placement — keeps the original 2-column look */
.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
    gap: 4rem;
    align-items: stretch;
}

.hero-text-top {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    flex-direction: column;
}

.hero-text-bottom {
    grid-column: 1;
    grid-row: 2;
    display: flex;
    flex-direction: column;
}

.hero-video {
    grid-column: 2;
    grid-row: 1 / 3; /* spans both rows on the right */
}
/* ── Fix selectors after hero-text split — exact match to original ── */

.hero-text-top h1,
.hero-text-bottom h1 {
    margin-top: auto;
    margin-bottom: -3rem; /* looks good on desktop */
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.1;
    background: linear-gradient(135deg, #fff, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: -1px;
    text-align: center;
}

/* Fix mobile spacing */
@media (max-width: 768px) {
    .hero-text-top h1,
    .hero-text-bottom h1 {
        margin-bottom: 1rem;
    }
}

.hero-text-top p,
.hero-text-bottom p {
    margin-bottom: 2rem;
    margin-top: 0;
    font-size: 0.9rem;
    color: #e9e5e5;
    line-height: 1.8;
    text-align: center;
}

/* Mobile overrides — exact match to original */
@media (max-width: 768px) {
    .hero-text-top h1,
    .hero-text-bottom h1 { font-size: clamp(1.8rem, 7vw, 2.5rem); }

    .hero-text-top p,
    .hero-text-bottom p { font-size: .8rem; }
}

@media (max-width: 480px) {
    .hero-text-top h1,
    .hero-text-bottom h1 { font-size: clamp(1.6rem, 8vw, 2rem); letter-spacing: -0.5px; }
}
/* MOBILE ONLY: switch to flex and reorder */
@media (max-width: 768px) {
    .hero-content-wrapper {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero-text-top    { order: 1; display: flex; flex-direction: column; }
    .hero-video       { order: 2; }
    .hero-text-bottom { order: 3; display: flex; flex-direction: column; }
}
