/* ============================================= */
/* CSS VARIABLES & RESET                           */
/* ============================================= */
:root {
    --primary: #2f80ed;
    --primary-hover: #1d66d1;
    --primary-dark: #164ea3;
    --primary-soft: rgba(47,128,237,.14);
    --primary-lighter: rgba(47,128,237,.08);

    --blue: #38bdf8;
    --orange: #22d3ee;
    --green: #22c55e;
    --purple: #a78bfa;
    --red: #ef4444;
    --yellow: #f59e0b;
    --gold: #7dd3fc;

    --black: #0a0a0a;
    --dark: #111827;
    --gray-900: #1a1a1a;
    --gray-800: #262626;
    --gray-700: #404040;
    --gray-600: #525252;
    --gray-500: #737373;
    --gray-400: #a3a3a3;
    --gray-300: #d4d4d4;
    --gray-200: #e5e5e5;
    --gray-100: #f5f5f5;
    --gray-50: #fafafa;
    --white: #ffffff;

    --shadow-xs: 0 1px 2px rgba(0,0,0,0.3);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.4),0 1px 2px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.4),0 2px 4px rgba(0,0,0,0.3);
    --shadow-lg: 0 12px 28px rgba(0,0,0,0.5),0 4px 8px rgba(0,0,0,0.3);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.6),0 8px 16px rgba(0,0,0,0.4);
    --shadow-blue: 0 14px 34px rgba(47,128,237,0.28);
    --shadow-blue-lg: 0 24px 54px rgba(47,128,237,0.38);

    --font-display: 'Manrope','Inter',system-ui,sans-serif;
    --font-body: 'Inter',system-ui,-apple-system,sans-serif;

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 18px;
    --radius-2xl: 24px;
    --radius-3xl: 32px;
    --radius-full: 999px;

    --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
    --transition-slow: 0.4s cubic-bezier(0.4,0,0.2,1);
    --section-py: 82px;
}

/* ============================================= */
/* REUSABLE UTILITIES                              */
/* ============================================= */
.text-highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}
.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 0.08em;
    left: -0.05em;
    right: -0.05em;
    height: 0.18em;
    background: rgba(47,128,237,0.22);
    z-index: -1;
    border-radius: 4px;
}
.text-blue { color: var(--blue); }
.text-orange { color: var(--orange); }
.text-green { color: var(--green); }
.text-purple { color: var(--purple); }

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    padding: 6px 14px;
    background: var(--primary-soft);
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}
.eyebrow-light { color: #fbbf24; background: rgba(251,191,36,0.15); }

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.85rem,4vw,3rem);
    font-weight: 800;
    color: var(--ink, #eff1f6);
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}
.title-light { color: var(--white); }

.section-text {
    font-size: 1.05rem;
    color: var(--ink2, #b3b3b3);
    line-height: 1.65;
    max-width: 720px;
}
.text-light { color: rgba(255,255,255,0.75) !important; }

.section-header { max-width: 760px; margin-bottom: 36px; }

.landing-section { padding: var(--section-py) 0; position: relative; }

/* ============================================= */
/* BUTTONS                                          */
/* ============================================= */
.btn-primary-solid,
.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
}
.btn-primary-solid {
    background: var(--primary);
    color: #000 !important;
    box-shadow: var(--shadow-blue);
    overflow: hidden;
}
.btn-primary-solid::after,
.nav-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg,transparent 0%,rgba(255,255,255,.28) 48%,transparent 64%);
    transform: translateX(-120%);
    transition: transform .65s ease;
}
.btn-primary-solid:hover::after,
.nav-cta:hover::after { transform: translateX(120%); }
.btn-primary-solid:hover {
    background: var(--primary-hover);
    color: #000 !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-blue-lg);
}
.btn-ghost {
    background: transparent;
    color: var(--ink, #eff1f6) !important;
    border: 2px solid var(--border, rgba(255,255,255,.08));
}
.btn-ghost:hover {
    color: var(--primary) !important;
    border-color: var(--primary);
    transform: translateY(-2px);
}
.btn-lg-solid { padding: 16px 32px; font-size: 1rem; }
.btn-nav { padding: 10px 22px; font-size: 0.9rem; }

/* ============================================= */
/* HERO SECTION                                     */
/* ============================================= */
.hero-section {
    padding: 58px 0 76px;
    background:
        radial-gradient(circle at 15% 18%, rgba(56,189,248,.18), transparent 28%),
        radial-gradient(circle at 82% 10%, rgba(47,128,237,.24), transparent 30%),
        linear-gradient(135deg,#06111f 0%,#0a1a2f 45%,#07111f 100%);
    position: relative;
    overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(148,197,255,0.075) 1px,transparent 1px),
        linear-gradient(90deg,rgba(148,197,255,0.075) 1px,transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at top right,black 0%,transparent 60%);
    -webkit-mask-image: radial-gradient(ellipse at top right,black 0%,transparent 60%);
}
.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}
.hero-glow-1 {
    width: 500px; height: 500px;
    background: #38bdf8;
    opacity: 0.16;
    top: -200px; right: -100px;
}
.hero-glow-2 {
    width: 350px; height: 350px;
    background: #2f80ed;
    opacity: 0.14;
    bottom: -100px; left: 30%;
}
.hero-container { position: relative; z-index: 2; }
.hero-section::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 140px;
    background: linear-gradient(to top,var(--c0, #07111f),transparent);
    pointer-events: none;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 24px;
}
.hero-eyebrow i { color: var(--gold); font-size: 0.95rem; }

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem,5.5vw,4rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 20px;
    letter-spacing: -0.04em;
    color: var(--ink, #eff1f6);
}
.hero-subtitle {
    font-size: 1.03rem;
    color: var(--ink2, #b3b3b3);
    line-height: 1.6;
    margin-bottom: 26px;
    max-width: 560px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 34px;
}
.hero-stats {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}
.hero-stat-num {
    font-family: var(--font-display);
    font-size: clamp(1.5rem,2.8vw,2.25rem);
    font-weight: 900;
    color: var(--ink, #eff1f6);
    line-height: 1;
    letter-spacing: -0.04em;
}
.hero-stat-label {
    font-size: 0.85rem;
    color: var(--muted, #6e6e6e);
    margin-top: 4px;
    font-weight: 500;
}
.hero-stat-divider {
    width: 1px; height: 36px;
    background: var(--border, rgba(255,255,255,.08));
}
.hero-image-wrap { position: relative; padding: 14px; }
.hero-image {
    width: 100%;
    height: min(500px, 56vw);
    min-height: 360px;
    object-fit: cover;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

/* Float cards */
.float-card {
    position: absolute;
    background: rgba(12,34,58,.9);
    backdrop-filter: blur(18px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border2, rgba(255,255,255,.16));
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    z-index: 3;
}
.float-card-score { top: 30px; left: -20px; animation-delay: 0s; }
.float-card-trust { bottom: 100px; right: -10px; animation-delay: 1s; }
.float-card-trust i { font-size: 1.6rem; color: var(--gold); }
.float-card-trust strong { display: block; font-weight: 700; color: var(--ink, #eff1f6); font-size: 0.9rem; }
.float-card-trust span { font-size: 0.78rem; color: var(--muted, #6e6e6e); }
.float-card-new { bottom: 30px; left: 30px; animation-delay: 2s; }
.float-card-new strong { display: block; font-weight: 700; color: var(--ink, #eff1f6); font-size: 0.85rem; }
.float-card-new span { font-size: 0.75rem; color: var(--muted, #6e6e6e); }

.pulse-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--green);
    position: relative;
    flex-shrink: 0;
}
.pulse-dot::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: var(--green);
    opacity: 0.4;
    animation: ld-pulse 1.8s infinite;
}
@keyframes ld-pulse {
    0% { transform: scale(0.7); opacity: 0.5; }
    100% { transform: scale(2.2); opacity: 0; }
}

.float-score-badge {
    background: var(--primary);
    color: #000;
    border-radius: var(--radius-md);
    padding: 8px 14px;
    text-align: center;
    min-width: 60px;
}
.float-score-num {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1;
}
.float-score-text {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 2px;
    opacity: 0.9;
}
.float-score-name {
    font-weight: 700;
    color: var(--ink, #eff1f6);
    font-size: 0.9rem;
    line-height: 1.2;
}
.float-score-sub { font-size: 0.78rem; color: var(--muted, #6e6e6e); margin-top: 2px; }

/* ============================================= */
/* PARTNERS BAR                                     */
/* ============================================= */
.partners-bar {
    padding: 40px 0;
    background: var(--c1, #262626);
    border-top: 1px solid var(--border, rgba(255,255,255,.08));
    border-bottom: 1px solid var(--border, rgba(255,255,255,.08));
}
.partners-label {
    text-align: center;
    color: var(--muted, #6e6e6e);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}
.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
}
.partner-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted, #6e6e6e);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    filter: grayscale(1);
    opacity: 0.7;
}
.partner-item:hover { color: var(--ink, #eff1f6); filter: grayscale(0); opacity: 1; }
.partner-item i { font-size: 1.5rem; }

/* ============================================= */
/* WHY US SECTION                                   */
/* ============================================= */
.why-section { background: linear-gradient(180deg,#07111f,#081827); }
.why-card {
    background: var(--c1, #262626);
    padding: 26px 24px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border, rgba(255,255,255,.08));
    height: 100%;
    transition: var(--transition);
    position: relative;
}
.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-soft);
}
.why-card-icon {
    width: 56px; height: 56px;
    border-radius: var(--radius-md);
    background: var(--primary-soft);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: var(--transition);
}
.why-card:hover .why-card-icon { background: var(--primary); color: #000; transform: scale(1.05); }
.why-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; color: var(--ink, #eff1f6); font-family: var(--font-display); }
.why-card p { color: var(--ink2, #b3b3b3); font-size: 0.95rem; line-height: 1.6; }
.why-card-large { padding: 0; overflow: hidden; }
.why-card-img { height: 200px; overflow: hidden; }
.why-card-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-slow); }
.why-card-large:hover .why-card-img img { transform: scale(1.05); }
.why-card-body { padding: 24px 28px 32px; }
.why-card-large h3 { margin-top: 0; }

/* ============================================= */
/* COURSES SECTION                                  */
/* ============================================= */
.courses-section { background: #081827; }
.course-card {
    background: var(--c2, #333333);
    padding: 26px;
    border-radius: var(--radius-2xl);
    border: 1px solid var(--border, rgba(255,255,255,.08));
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.course-card::after,
.why-card::after,
.teacher-card::after,
.branch-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(135deg,rgba(255,255,255,.12),transparent 28%,transparent 72%,rgba(56,189,248,.1));
    opacity: 0;
    transition: opacity .25s ease;
}
.course-card:hover::after,
.why-card:hover::after,
.teacher-card:hover::after,
.branch-card:hover::after { opacity: 1; }
.course-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.course-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
}
.course-blue::before { background: var(--blue); }
.course-orange::before { background: var(--orange); }
.course-green::before { background: var(--green); }
.course-dark::before { background: var(--primary); }
.course-purple::before { background: var(--purple); }

.course-blue .course-icon { background: rgba(56,189,248,0.1); color: var(--blue); }
.course-orange .course-icon { background: rgba(47,128,237,0.1); color: var(--orange); }
.course-green .course-icon { background: rgba(34,197,94,0.1); color: var(--green); }
.course-dark .course-icon { background: rgba(47,128,237,0.1); color: var(--primary); }
.course-purple .course-icon { background: rgba(167,139,250,0.1); color: var(--purple); }

.course-blue .course-list li i { color: var(--blue); }
.course-orange .course-list li i { color: var(--orange); }
.course-green .course-list li i { color: var(--green); }
.course-dark .course-list li i { color: var(--primary); }
.course-purple .course-list li i { color: var(--purple); }

.course-flag {
    position: absolute;
    top: 20px; right: 20px;
    background: var(--primary);
    color: #000;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 5px 12px;
    border-radius: var(--radius-full);
}
.course-head {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}
.course-icon {
    width: 56px; height: 56px;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}
.course-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--ink, #eff1f6);
    margin-bottom: 4px;
}
.course-level { font-size: 0.85rem; color: var(--muted, #6e6e6e); font-weight: 500; }
.course-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}
.course-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    color: var(--ink2, #b3b3b3);
    font-size: 0.93rem;
    line-height: 1.5;
}
.course-list li i { margin-top: 3px; font-size: 1.1rem; flex-shrink: 0; }
.course-price {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--ink, #eff1f6);
    margin-bottom: 16px;
}
.course-price span { font-size: 0.85rem; color: var(--muted, #6e6e6e); font-weight: 500; }
.course-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: var(--c0, #1a1a1a);
    color: var(--ink, #eff1f6) !important;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    text-decoration: none;
    border: 1px solid var(--border, rgba(255,255,255,.08));
}
.course-btn:hover { background: var(--primary); color: #000 !important; gap: 10px; border-color: var(--primary); }

/* Extra small courses */
.extra-courses { margin-top: 40px; }
.extra-courses-title {
    text-align: center;
    font-size: 1rem;
    color: var(--muted, #6e6e6e);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 24px;
}
.extra-course-card {
    background: var(--c1, #262626);
    padding: 20px 18px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border, rgba(255,255,255,.08));
    text-align: center;
    transition: var(--transition);
    display: block;
    height: 100%;
    color: inherit !important;
    text-decoration: none;
}
.extra-course-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-soft);
    color: inherit !important;
}
.extra-course-card i { font-size: 2.25rem; margin-bottom: 12px; display: block; }
.extra-course-card h4 { font-size: 1rem; font-weight: 700; color: var(--ink, #eff1f6); margin-bottom: 4px; font-family: var(--font-display); }
.extra-course-card span { font-size: 0.83rem; color: var(--muted, #6e6e6e); }

/* ============================================= */
/* CERTIFICATE SECTION                              */
/* ============================================= */
.certificate-section { background: linear-gradient(180deg,#07111f,#0a1a2f); }
.cert-stats { display: flex; gap: 32px; margin: 28px 0 12px; }
.cert-stat-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}
.cert-stat-label { color: var(--muted, #6e6e6e); font-size: 0.9rem; margin-top: 4px; }
.cert-visual {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 4/3;
}
.cert-visual img { width: 100%; height: 100%; object-fit: cover; }
.cert-overlay {
    position: absolute;
    bottom: 20px; left: 20px; right: 20px;
    background: rgba(26,26,26,0.95);
    backdrop-filter: blur(20px);
    padding: 16px 20px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid var(--border2, rgba(255,255,255,.16));
}
.cert-overlay i { font-size: 2rem; color: var(--green); flex-shrink: 0; }
.cert-overlay strong { display: block; color: var(--ink, #eff1f6); font-weight: 700; }
.cert-overlay span { color: var(--muted, #6e6e6e); font-size: 0.85rem; }

/* ============================================= */
/* STUDENTS RESULTS SECTION                         */
/* ============================================= */
.students-section { background: linear-gradient(180deg,#081827,#07111f); }
.results-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.res-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 9px 18px;
    min-height: 40px;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--border2, rgba(255,255,255,.16));
    background: transparent;
    color: var(--ink2, #b3b3b3);
    font-family: inherit;
    font-size: .88rem;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
}
.res-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.res-tab.is-active {
    background: var(--primary);
    border-color: var(--primary);
    color: #000;
}
.student-card {
    background: rgba(15,39,67,.76);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    border: 1px solid rgba(148,197,255,.18);
    height: 100%;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: 0 18px 46px rgba(0,0,0,.22);
    animation: galleryIn .65s ease both;
}
.students-section .reveal:nth-child(2n) .student-card { animation-delay: .06s; }
.students-section .reveal:nth-child(3n) .student-card { animation-delay: .12s; }
@keyframes galleryIn {
    from { opacity: 0; transform: translateY(18px) scale(.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.student-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(47,128,237,.22); border-color: rgba(56,189,248,.42); }
.student-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: linear-gradient(135deg,rgba(47,128,237,.16),var(--c1, #0b1b30));
}
.student-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,transparent 20%,rgba(255,255,255,.16) 45%,transparent 70%);
    transform: translateX(-130%);
    transition: transform .7s ease;
}
.student-card:hover .student-image::after { transform: translateX(130%); }
.student-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease, filter .5s ease; }
.student-card:hover .student-image img { transform: scale(1.045); filter: saturate(1.08) contrast(1.04); }
/* ============================================= */
/* TEACHERS SECTION                                 */
/* ============================================= */
.teachers-section { background: var(--c0, #1a1a1a); }
.teacher-card {
    background: var(--c1, #262626);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border, rgba(255,255,255,.08));
    transition: var(--transition);
    height: 100%;
    position: relative;
}
.teacher-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.teacher-image { position: relative; aspect-ratio: 1/1; overflow: hidden; }
.teacher-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-slow); }
.teacher-card:hover .teacher-image img { transform: scale(1.08); }
.teacher-score {
    position: absolute;
    top: 14px; left: 14px;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}
.teacher-info { padding: 20px; }
.teacher-info h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--ink, #eff1f6);
    margin-bottom: 4px;
}
.teacher-role {
    display: inline-block;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    margin-bottom: 10px;
}
.teacher-exp { font-size: 0.85rem; color: var(--muted, #6e6e6e); display: flex; align-items: center; gap: 6px; margin: 0; }
.teacher-exp i { color: var(--primary); }
.teachers-cta {
    margin-top: 40px;
    background: var(--c1, #262626);
    border: 1px solid var(--border, rgba(255,255,255,.08));
    border-radius: var(--radius-2xl);
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.teachers-cta-content h3 { font-family: var(--font-display); font-size: 1.25rem; color: var(--ink, #eff1f6); margin-bottom: 4px; }
.teachers-cta-content p { color: var(--ink2, #b3b3b3); margin: 0; }

/* ============================================= */
/* BRANCHES SECTION                                 */
/* ============================================= */
.branches-section { background: var(--c1, #262626); }
.branch-card {
    background: var(--c2, #333333);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border, rgba(255,255,255,.08));
    transition: var(--transition);
    height: 100%;
    position: relative;
}
.branch-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.branch-image { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.branch-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-slow); }
.branch-card:hover .branch-image img { transform: scale(1.05); }
.branch-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,rgba(47,128,237,.1),var(--c1, #262626));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary);
}
.branch-badge {
    position: absolute;
    top: 14px; left: 14px;
    background: rgba(26,26,26,0.9);
    backdrop-filter: blur(10px);
    color: var(--ink, #eff1f6);
    padding: 5px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border: 1px solid var(--border2, rgba(255,255,255,.16));
}
.branch-badge i { color: var(--primary); }
.branch-badge-region i { color: var(--orange); }
.branch-body { padding: 22px; }
.branch-body h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--ink, #eff1f6);
    margin-bottom: 8px;
}
.branch-body p { color: var(--ink2, #b3b3b3); font-size: 0.9rem; line-height: 1.5; margin-bottom: 16px; }
.branch-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.branch-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border: 1px solid var(--border, rgba(255,255,255,.08));
    border-radius: var(--radius-full);
    color: var(--ink2, #b3b3b3) !important;
    font-size: 0.82rem;
    font-weight: 500;
    transition: var(--transition);
    text-decoration: none;
}
.branch-link:hover { border-color: var(--primary); color: var(--primary) !important; }
.branches-footer {
    margin-top: 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.branches-footer p { color: var(--muted, #6e6e6e); display: inline-flex; align-items: center; gap: 6px; }
.branches-footer p i { color: var(--primary); }

/* ============================================= */
/* APP / HYBRID SECTION                             */
/* ============================================= */
.app-section {
    background: #0f0f0f;
    color: var(--white);
    overflow: hidden;
    position: relative;
    padding: var(--section-py) 0;
}
.app-section::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: var(--primary);
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.15;
}
.app-section .container { position: relative; z-index: 2; }
.app-features { margin: 32px 0; }
.app-feature {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.app-feature:last-child { border-bottom: none; }
.app-feature > i {
    width: 44px; height: 44px;
    background: rgba(47,128,237,0.15);
    color: var(--primary);
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}
.app-feature strong { display: block; font-weight: 700; color: var(--white); font-size: 1rem; margin-bottom: 4px; }
.app-feature p { color: rgba(255,255,255,0.65); font-size: 0.88rem; line-height: 1.5; }
.app-stores { display: flex; gap: 12px; flex-wrap: wrap; }
.app-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: var(--c2, #333333);
    color: var(--ink, #eff1f6) !important;
    border-radius: var(--radius-md);
    transition: var(--transition);
    text-decoration: none;
    border: 1px solid var(--border2, rgba(255,255,255,.16));
}
.app-store-btn:hover { color: var(--ink, #eff1f6) !important; transform: translateY(-3px); box-shadow: 0 12px 24px rgba(47,128,237,0.15); }
.app-store-btn i { font-size: 1.8rem; }
.app-store-btn > div { display: flex; flex-direction: column; line-height: 1.1; }
.app-store-small { font-size: 0.7rem; color: var(--muted, #6e6e6e); text-transform: uppercase; letter-spacing: 0.05em; }
.app-store-big { font-size: 1rem; font-weight: 700; color: var(--ink, #eff1f6); }

.app-mockup { position: relative; display: flex; justify-content: center; padding: 40px 20px; }
.app-phone {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 9/19;
    background: #0a0a0a;
    border-radius: 36px;
    padding: 8px;
    border: 6px solid #1a1a1a;
    box-shadow: 0 30px 60px rgba(47,128,237,0.2),0 0 0 1px rgba(255,255,255,0.05);
}
.app-phone-screen {
    background: linear-gradient(180deg,#1a1a1a,#0a0a0a);
    width: 100%; height: 100%;
    border-radius: 28px;
    padding: 28px 20px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.app-mock-header { display: flex; justify-content: space-between; align-items: center; }
.app-mock-name { font-weight: 800; font-size: 0.95rem; color: var(--white); }
.app-mock-bell {
    width: 32px; height: 32px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem;
    position: relative;
}
.app-mock-bell::after {
    content: '';
    width: 8px; height: 8px;
    background: var(--red);
    border-radius: 50%;
    position: absolute;
    top: 4px; right: 6px;
    border: 2px solid #1a1a1a;
}
.app-mock-greeting span { font-size: 1.15rem; font-weight: 700; color: var(--white); display: block; }
.app-mock-greeting p { color: rgba(255,255,255,0.6); font-size: 0.8rem; margin: 4px 0 0; }
.app-mock-progress { background: rgba(255,255,255,0.05); padding: 14px; border-radius: var(--radius-md); }
.app-progress-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; font-size: 0.85rem; }
.app-progress-row span { color: rgba(255,255,255,0.8); }
.app-progress-row strong { color: var(--primary); font-weight: 800; }
.app-progress-bar { height: 5px; background: rgba(255,255,255,0.1); border-radius: var(--radius-full); overflow: hidden; }
.app-progress-fill { height: 100%; background: var(--primary); border-radius: var(--radius-full); }
.app-mock-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; flex-grow: 1; }
.app-mock-card {
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-md);
    padding: 12px;
    display: flex; flex-direction: column; gap: 4px;
    border: 1px solid rgba(255,255,255,0.05);
}
.app-mock-card i { font-size: 1.2rem; color: var(--primary); }
.app-mock-card span { font-size: 0.85rem; font-weight: 600; color: var(--white); }
.app-mock-card small { font-size: 0.7rem; color: rgba(255,255,255,0.5); }
.app-mock-card-active { background: var(--primary); border-color: var(--primary); }
.app-mock-card-active i { color: #000; }
.app-mock-card-active span { color: #000; }
.app-mock-card-active small { color: rgba(0,0,0,0.7); }
.app-bubble {
    position: absolute;
    background: var(--c2, #333333);
    color: var(--ink, #eff1f6);
    padding: 10px 14px;
    border-radius: var(--radius-md);
    font-size: 0.82rem;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--border2, rgba(255,255,255,.16));
}
.app-bubble i { color: var(--primary); }
.app-bubble-1 { top: 60px; left: -10px; }
.app-bubble-2 { bottom: 100px; right: -10px; }

/* ============================================= */
/* FAQ SECTION                                      */
/* ============================================= */
.faq-section { background: var(--c0, #1a1a1a); }
.faq-accordion { max-width: 800px; margin: 0 auto; }
.faq-accordion .accordion-item {
    background: var(--c1, #262626);
    border: 1px solid var(--border, rgba(255,255,255,.08)) !important;
    border-radius: var(--radius-lg) !important;
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}
.faq-accordion .accordion-item:hover { border-color: var(--primary-soft) !important; }
.faq-accordion .accordion-button {
    background: var(--c1, #262626);
    color: var(--ink, #eff1f6);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    padding: 20px 24px;
    border: none;
    box-shadow: none !important;
}
.faq-accordion .accordion-button:not(.collapsed) { background: rgba(47,128,237,.08); color: var(--primary); }
.faq-accordion .accordion-button::after {
    background-image: none;
    content: '\F4FE';
    font-family: 'bootstrap-icons';
    font-size: 1.3rem;
    transition: var(--transition);
    transform: none;
    color: var(--muted, #6e6e6e);
    filter: none;
}
.faq-accordion .accordion-button:not(.collapsed)::after { transform: rotate(45deg); color: var(--primary); }
.faq-accordion .accordion-body { padding: 0 24px 22px; color: var(--ink2, #b3b3b3); font-size: 0.95rem; line-height: 1.7; }

/* ============================================= */
/* REGISTRATION CTA                                 */
/* ============================================= */
.register-section { background: var(--c1, #262626); padding: var(--section-py) 0; }
.register-wrap {
    background: var(--c2, #333333);
    border-radius: var(--radius-3xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border, rgba(255,255,255,.08));
}
.register-left {
    background: #0f0f0f;
    color: var(--white);
    padding: 56px 40px;
    position: relative;
    overflow: hidden;
}
.register-left::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 300px; height: 300px;
    background: var(--primary);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}
.register-left::after {
    content: '';
    position: absolute;
    bottom: -50px; left: -50px;
    width: 200px; height: 200px;
    background: var(--orange);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
}
.register-left > * { position: relative; z-index: 2; }
.register-perks { list-style: none; padding: 0; margin: 32px 0 0; }
.register-perks li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    font-size: 0.95rem;
}
.register-perks li i { color: var(--green); font-size: 1.2rem; }
.register-right { padding: 56px 40px; position: relative; background: var(--c2, #333333); }
.form-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--ink, #eff1f6);
    margin-bottom: 6px;
}
.form-subtitle { color: var(--muted, #6e6e6e); font-size: 0.95rem; margin-bottom: 28px; }
.form-label { font-weight: 600; font-size: 0.88rem; color: var(--ink2, #b3b3b3); margin-bottom: 6px; display: block; }
.form-input {
    padding: 12px 16px;
    background: var(--c1, #262626);
    border: 1.5px solid var(--border, rgba(255,255,255,.08));
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    color: var(--ink, #eff1f6);
    transition: var(--transition);
    width: 100%;
    font-family: var(--font-body);
    outline: none;
}
.form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(47,128,237,.12);
}
select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23737373'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 14px;
    padding-right: 38px;
    cursor: pointer;
}
.form-policy { text-align: center; color: var(--muted, #6e6e6e); font-size: 0.8rem; margin-top: 14px; margin-bottom: 0; }
.form-policy a { color: var(--primary); text-decoration: underline; }

/* ============================================= */
/* SCROLL REVEAL                                    */
/* ============================================= */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.active { opacity: 1; transform: translateY(0); }

/* ============================================= */
/* LIGHT THEME OVERRIDES                            */
/* ============================================= */
[data-theme="light"] .hero-section { background: #ffffff; }
[data-theme="light"] .section-title { color: #0f0f0f; }
[data-theme="light"] .section-text { color: #3c3c3c; }
[data-theme="light"] .hero-title { color: #0f0f0f; }
[data-theme="light"] .hero-subtitle { color: #3c3c3c; }
[data-theme="light"] .hero-stat-num { color: #0f0f0f; }
[data-theme="light"] .why-section { background: #ffffff; }
[data-theme="light"] .why-card { background: #ffffff; border-color: #e5e5e5; }
[data-theme="light"] .why-card h3 { color: #0f0f0f; }
[data-theme="light"] .why-card p { color: #3c3c3c; }
[data-theme="light"] .courses-section { background: #fafafa; }
[data-theme="light"] .course-card { background: #ffffff; border-color: #e5e5e5; }
[data-theme="light"] .course-title { color: #0f0f0f; }
[data-theme="light"] .course-list li { color: #525252; }
[data-theme="light"] .course-price { color: #0f0f0f; }
[data-theme="light"] .course-btn { background: #f5f5f5; color: #0f0f0f !important; border-color: #e5e5e5; }
[data-theme="light"] .certificate-section { background: #ffffff; }
[data-theme="light"] .cert-overlay { background: rgba(255,255,255,.95); border-color: #e5e5e5; }
[data-theme="light"] .cert-overlay strong { color: #0f0f0f; }
[data-theme="light"] .students-section { background: #fafafa; }
[data-theme="light"] .student-card { background: #ffffff; border-color: #e5e5e5; }
[data-theme="light"] .student-name { color: #0f0f0f; }
[data-theme="light"] .teachers-section { background: #ffffff; }
[data-theme="light"] .teacher-card { background: #ffffff; border-color: #e5e5e5; }
[data-theme="light"] .teacher-info h3 { color: #0f0f0f; }
[data-theme="light"] .teachers-cta { background: #fafafa; border-color: #e5e5e5; }
[data-theme="light"] .teachers-cta-content h3 { color: #0f0f0f; }
[data-theme="light"] .branches-section { background: #fafafa; }
[data-theme="light"] .branch-card { background: #ffffff; border-color: #e5e5e5; }
[data-theme="light"] .branch-body h3 { color: #0f0f0f; }
[data-theme="light"] .branch-badge { background: rgba(255,255,255,.95); color: #0f0f0f; border-color: #e5e5e5; }
[data-theme="light"] .float-card { background: #ffffff; border-color: #e5e5e5; }
[data-theme="light"] .float-score-name { color: #0f0f0f; }
[data-theme="light"] .faq-section { background: #ffffff; }
[data-theme="light"] .faq-accordion .accordion-item { background: #ffffff; border-color: #e5e5e5 !important; }
[data-theme="light"] .faq-accordion .accordion-button { background: #ffffff; color: #0f0f0f; }
[data-theme="light"] .register-section { background: #fafafa; }
[data-theme="light"] .register-wrap { background: #ffffff; }
[data-theme="light"] .register-right { background: #ffffff; }
[data-theme="light"] .form-title { color: #0f0f0f; }
[data-theme="light"] .form-input { background: #ffffff; border-color: #e5e5e5; color: #0f0f0f; }
[data-theme="light"] .partners-bar { background: #fafafa; border-color: #e5e5e5; }
[data-theme="light"] .extra-course-card { background: #ffffff; border-color: #e5e5e5; }
[data-theme="light"] .extra-course-card h4 { color: #0f0f0f; }
[data-theme="light"] .btn-ghost { color: #0f0f0f !important; border-color: #e5e5e5; }
[data-theme="light"] .app-store-btn { background: #f5f5f5; color: #0f0f0f !important; border-color: #e5e5e5; }
[data-theme="light"] .app-bubble { background: #ffffff; color: #0f0f0f; border-color: #e5e5e5; }

/* ============================================= */
/* RESPONSIVE                                       */
/* ============================================= */
@media (max-width: 1199.98px) {
    .hero-stats { gap: 18px; }
    .hero-stat-divider { display: none; }
}
@media (max-width: 991.98px) {
    :root { --section-py: 62px; }
    .hero-section { padding: 42px 0 64px; }
    .hero-image { height: 390px; min-height: 0; }
    .hero-image-wrap { margin-top: 26px; padding: 8px; }
    .float-card-score { top: 20px; left: -10px; }
    .float-card-trust { bottom: 80px; right: 0; }
    .float-card-new { bottom: 20px; left: 20px; }
    .register-left, .register-right { padding: 40px 28px; }
    .teachers-cta { text-align: center; flex-direction: column; }
}
@media (max-width: 767.98px) {
    :root { --section-py: 48px; }
    .landing-section { padding: var(--section-py) 0; }
    .section-header { margin-bottom: 26px; }
    .section-eyebrow { font-size: .72rem; padding: 5px 11px; margin-bottom: 12px; }
    .hero-section { padding: 34px 0 50px; }
    .hero-eyebrow { font-size: .76rem; padding: 7px 12px; margin-bottom: 16px; }
    .hero-subtitle { font-size: .95rem; margin-bottom: 20px; }
    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions a { width: 100%; }
    .hero-stats { gap: 10px; justify-content: initial; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); }
    .hero-stat { padding: 12px; border: 1px solid var(--border, rgba(255,255,255,.08)); border-radius: var(--radius-md); background: var(--c1, #262626); }
    .hero-stat-num { font-size: 1.5rem; }
    .hero-stat-label { font-size: 0.78rem; }
    .hero-image { height: 320px; border-radius: var(--radius-lg); }
    .float-card { padding: 10px 14px; gap: 10px; }
    .float-card-score { top: 10px; left: -10px; }
    .float-card-trust { bottom: 60px; right: -5px; padding: 10px 12px; }
    .float-card-new { bottom: 10px; left: 10px; padding: 10px 12px; }
    .partners-grid { gap: 24px; }
    .partners-bar { padding: 28px 0; }
    .partners-grid { justify-content: flex-start; gap: 14px; }
    .partner-item { font-size: .84rem; }
    .why-card { padding: 22px 20px; }
    .course-card { padding: 22px 20px; }
    .course-head { gap: 12px; margin-bottom: 14px; }
    .course-icon { width: 46px; height: 46px; font-size: 1.25rem; }
    .course-title { font-size: 1.08rem; }
    .register-wrap { border-radius: var(--radius-2xl); }
    .register-left, .register-right { padding: 32px 24px; }
    .app-bubble-1 { top: 40px; left: 0; }
    .app-bubble-2 { bottom: 60px; right: 0; }
}
@media (max-width: 575.98px) {
    .section-title { font-size: 1.5rem; }
    .hero-title { font-size: 1.85rem; }
    .btn-lg-solid { padding: 13px 18px; font-size: .92rem; }
    .results-tabs { display: grid; grid-template-columns: 1fr; gap: 8px; }
    .res-tab { width: 100%; }
    .float-card-trust { display: none; }
    .float-card-new { max-width: calc(100% - 20px); }
    .app-stores { width: 100%; }
    .app-store-btn { flex: 1; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1 !important; transform: none !important; }
    .float-card, .app-bubble { animation: none !important; }
    .pulse-dot::after, .float-pulse { animation: none !important; }
}
