* {
    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.95rem; }
.dropdown-item-desc { font-size: 0.8rem; 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: center;
    position: relative;
    z-index: 1;
    width: 100%;

}

.hero-text { padding-right: 1rem;;
}

.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 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    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;
}

.hero-text p {
    font-size: 1.1rem;
    color: #999;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.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;
}

.stat-box { display: flex; flex-direction: column; gap: 0.4rem; }
.stat-number { font-size: 1.8rem; font-weight: 700; color: #D4AF37; }
.stat-label { font-size: 0.8rem; color: #666; text-transform: uppercase; letter-spacing: 1px; }

.hero-cta-group {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.hero-cta {
    background: #D4AF37;
    color: #000;
    border: none;
    padding: 16px 40px;
    font-size: 0.85rem;
    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;
}
.hero-cta:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212,175,55,0.3);
}
.hero-cta-secondary {
    background: transparent;
    border: 1px solid #D4AF37;
    color: #D4AF37;
}
.hero-cta-secondary:hover { background: #D4AF37; color: #000; }

.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: 66.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: #999;
    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: #999;
    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: #999;
    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;
}

/* =========================================================
   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: #D4AF37;
    color: #000;
    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;
    color: #999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
}
.lesson-item:last-child { border-bottom: none; }
.lesson-duration { color: #D4AF37; font-size: 0.82rem; 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 {
    padding: 6rem 5%;
    background: radial-gradient(circle at center, rgba(185,122,30,0.1), transparent 70%);
    position: relative;
}

.pricing-container {
    padding: 0;
    position: relative;
}
.pricing-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(212,175,55,0.08) 1px, transparent 1px);
    background-size: 12px 12px;
    pointer-events: none;
}

.pricing-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 10px;
    margin-bottom: 40px;
}

.pricing-card {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}
.pricing-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}
.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(212,175,55,0.2);
}

.featured-card { grid-column: span 5; position: relative; }
.featured-card .gradient-overlay {
    position: absolute;
    top: -50px; left: 50%;
    transform: translateX(-50%);
    width: 100%; height: 100%;
    pointer-events: none;
    opacity: 0.3;
}
.featured-card .gradient-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(farthest-side at top, rgba(212,175,55,0.3), transparent);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.badge-secondary { background: #1a1a1a; color: #D4AF37; }
.badge-outline {
    border: 1px solid #D4AF37;
    color: #D4AF37;
    background: transparent;
    gap: 6px;
}
.badge-outline svg { width: 12px; height: 12px; }
.card-header .btn { margin-left: auto; }

.price-section { padding: 0 20px 20px; }
.featured-card .price-section { display: flex; gap: 40px; padding: 20px; }
.price-section .price-left { min-width: 30%; }

.price-display {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    margin-bottom: 20px;
}
.price-amount {
    font-family: 'Courier New', monospace;
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.price-suffix { color: #999; font-size: 0.9rem; padding-bottom: 6px; }

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
    font-size: 0.88rem;
}
.check-icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    background: #D4AF37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.check-icon svg { width: 10px; height: 10px; stroke: #000; stroke-width: 3; }

.btn {
    display: inline-block;
    padding: 12px 24px;
    background: #D4AF37;
    color: #000;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}
.btn:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212,175,55,0.4);
}
.btn-outline {
    background: #111;
    color: #fff;
    border: 1px solid #1a1a1a;
}
.btn-outline:hover {
    border-color: #D4AF37;
    background: #1a1a1a;
    transform: translateY(-2px);
}

.standard-card { grid-column: span 3; }
.card-4-col { grid-column: span 4; }

/* =========================================================
   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;
  }
}
* {
    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;
    }
}
