/* ═══════════════════════════════════════════
   CSS VARIABLE THEMING — single source of truth
═══════════════════════════════════════════ */
:root {
    --blue: #1f5f8b;
    --blue-d: #133d5a;
    --blue-l: #3a8ec7;
    --blue-xl: #6ab8e8;
    --red: #b83027;
    --red-l: #d44438;

    /* Light theme (default) */
    --bg: #f8fafc;
    --bg2: #f1f5f9;
    --bg3: #ffffff;
    --surface: #ffffff;
    --border: rgba(0, 0, 0, 0.09);
    --border2: rgba(0, 0, 0, 0.06);
    --text: #334155;
    --text-2: #64748b;
    --text-3: #94a3b8;
    --text-4: #94a3b8;
    --heading: #0f172a;
    --card-bg: #ffffff;
    --card-sh: 0 4px 24px rgba(0, 0, 0, 0.07);
    --nav-bg: rgba(248, 250, 252, 0.94);
    --chip-bg: #f1f5f9;
    --chip-txt: #64748b;
    --stat-bg: rgba(31, 95, 139, 0.08);
    --stat-bd: rgba(31, 95, 139, 0.18);
    --hero-gr:
        radial-gradient(
            ellipse 70% 60% at 85% 40%,
            rgba(31, 95, 139, 0.1) 0%,
            transparent 65%
        ),
        radial-gradient(
            ellipse 45% 45% at 10% 75%,
            rgba(184, 48, 39, 0.06) 0%,
            transparent 60%
        ),
        linear-gradient(160deg, #f0f4f8 0%, #e8f0f7 100%);
    --input-bg: #ffffff;
    --sel-bg: #ffffff;
    --why-bg: #ffffff;
    --info-bg: #f8fafc;
    --badge-bg: rgba(31, 95, 139, 0.08);
    --badge-bd: rgba(31, 95, 139, 0.18);
    --badge-tx: #1f5f8b;
}

.light {
    --bg: #f8fafc;
    --bg2: #f1f5f9;
    --bg3: #ffffff;
    --surface: #ffffff;
    --border: rgba(0, 0, 0, 0.09);
    --border2: rgba(0, 0, 0, 0.06);
    --text: #334155;
    --text-2: #64748b;
    --text-3: #94a3b8;
    --text-4: #94a3b8;
    --heading: #0f172a;
    --card-bg: #ffffff;
    --card-sh: 0 4px 24px rgba(0, 0, 0, 0.07);
    --nav-bg: rgba(248, 250, 252, 0.94);
    --chip-bg: #f1f5f9;
    --chip-txt: #64748b;
    --stat-bg: rgba(31, 95, 139, 0.08);
    --stat-bd: rgba(31, 95, 139, 0.18);
    --hero-gr:
        radial-gradient(
            ellipse 70% 60% at 85% 40%,
            rgba(31, 95, 139, 0.1) 0%,
            transparent 65%
        ),
        radial-gradient(
            ellipse 45% 45% at 10% 75%,
            rgba(184, 48, 39, 0.06) 0%,
            transparent 60%
        ),
        linear-gradient(160deg, #f0f4f8 0%, #e8f0f7 100%);
    --input-bg: #ffffff;
    --sel-bg: #ffffff;
    --why-bg: #ffffff;
    --info-bg: #f8fafc;
    --badge-bg: rgba(31, 95, 139, 0.08);
    --badge-bd: rgba(31, 95, 139, 0.18);
    --badge-tx: #1f5f8b;
}

.dark {
    --bg: #07080c;
    --bg2: #0b0f14;
    --bg3: #0d1117;
    --surface: #111827;
    --border: rgba(255, 255, 255, 0.08);
    --border2: rgba(255, 255, 255, 0.05);
    --text: #e2e8f0;
    --text-2: #94a3b8;
    --text-3: #64748b;
    --text-4: #475569;
    --heading: #f8fafc;
    --card-bg: #111827;
    --card-sh: 0 4px 24px rgba(31, 95, 139, 0.18);
    --nav-bg: rgba(7, 8, 12, 0.92);
    --chip-bg: rgba(255, 255, 255, 0.06);
    --chip-txt: #64748b;
    --stat-bg: rgba(31, 95, 139, 0.14);
    --stat-bd: rgba(31, 95, 139, 0.22);
    --hero-gr:
        radial-gradient(
            ellipse 70% 60% at 85% 40%,
            rgba(31, 95, 139, 0.22) 0%,
            transparent 65%
        ),
        radial-gradient(
            ellipse 45% 45% at 10% 75%,
            rgba(184, 48, 39, 0.1) 0%,
            transparent 60%
        ),
        linear-gradient(160deg, #07080c 0%, #0c1218 100%);
    --input-bg: rgba(255, 255, 255, 0.04);
    --sel-bg: #111827;
    --why-bg: rgba(255, 255, 255, 0.02);
    --info-bg: rgba(255, 255, 255, 0.02);
    --badge-bg: rgba(31, 95, 139, 0.14);
    --badge-bd: rgba(31, 95, 139, 0.3);
    --badge-tx: #6ab8e8;
}

/* ═══ RESET & BASE ═══ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: "Bricolage Grotesque", sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    transition:
        background 0.35s ease,
        color 0.35s ease;
    line-height: 1.6;
}

/* scrollbar */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--blue);
    border-radius: 4px;
}

/* noise overlay */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.022;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ═══ TYPOGRAPHY ═══ */
h1,
h2,
h3,
h4,
h5 {
    color: var(--heading);
    font-weight: 700;
}

p {
    color: var(--text-2);
}

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

/* gradient text */
.tg-blue {
    background: linear-gradient(135deg, #3a8ec7, #6ab8e8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tg-red {
    background: linear-gradient(135deg, #b83027, #e05c52);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ═══ LAYOUT ═══ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
}

/* ═══ NAV ═══ */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--nav-bg);
    border-bottom: 1px solid var(--border2);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition:
        background 0.35s,
        border-color 0.35s,
        box-shadow 0.3s;
}

#navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    padding: 0 24px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.nav-logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-brand {
    line-height: 1.1;
}

.nav-brand .name {
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 0.05em;
    color: var(--heading);
}

.nav-brand .sub {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blue);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links a {
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-2);
    transition:
        color 0.2s,
        background 0.2s;
}

.nav-links a:hover {
    color: var(--heading);
    background: var(--border);
}

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

/* Theme toggle */
.theme-toggle {
    position: relative;
    width: 52px;
    height: 28px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: var(--stat-bg);
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
    outline: none;
}

.theme-knob {
    position: absolute;
    top: 2px;
    left: 3px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: transform 0.3s;
    background: #f59e0b;
}

.dark .theme-knob {
    transform: translateX(24px);
    background: var(--blue);
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--red), var(--red-l));
    box-shadow: 0 4px 14px rgba(184, 48, 39, 0.3);
    transition:
        transform 0.2s,
        box-shadow 0.2s;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(184, 48, 39, 0.4);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
    border-radius: 8px;
    background: transparent;
    border: none;
    transition: background 0.2s;
}

.hamburger:hover {
    background: var(--border);
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-2);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu — KEY FIX: height:0 collapse, not display:none */
#mob-menu {
    overflow: hidden;
    max-height: 0;
    transition:
        max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        padding 0.35s;
    background: var(--nav-bg);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

#mob-menu.open {
    max-height: 400px;
    border-bottom-color: var(--border2);
    padding: 4px 0 12px;
}

.mob-links {
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mob-links a {
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
    transition:
        color 0.2s,
        background 0.2s;
}

.mob-links a:hover {
    color: var(--heading);
    background: var(--border);
}

.mob-links .mob-cta {
    margin-top: 6px;
    padding: 13px 16px;
    background: linear-gradient(135deg, var(--red), var(--red-l));
    color: #fff !important;
    border-radius: 10px;
    font-weight: 700;
    justify-content: center;
}

.mob-links .mob-cta:hover {
    background: linear-gradient(135deg, var(--red-l), var(--red));
}

@media (max-width: 1023px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .btn-cta.desktop-only {
        display: none;
    }
}

@media (min-width: 1024px) {
    #mob-menu {
        display: none !important;
    }
}

/* ═══ HERO ═══ */
#hero {
    min-height: 100svh;
    padding-top: 64px;
    display: flex;
    align-items: center;
    background: var(--hero-gr);
    position: relative;
    overflow: hidden;
}

.grid-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(var(--border2) 1px, transparent 1px),
        linear-gradient(90deg, var(--border2) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: radial-gradient(
        ellipse 80% 80% at 50% 50%,
        black 20%,
        transparent 100%
    );
}

.orb1 {
    position: absolute;
    top: 20%;
    right: 20%;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    opacity: 0.12;
    pointer-events: none;
    background: radial-gradient(circle, var(--blue), transparent);
    filter: blur(60px);
    animation: float 7s ease-in-out infinite;
}

.orb2 {
    position: absolute;
    bottom: 25%;
    left: 8%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    opacity: 0.09;
    pointer-events: none;
    background: radial-gradient(circle, var(--red), transparent);
    filter: blur(50px);
    animation: float 9s ease-in-out infinite reverse;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-16px);
    }
}

@keyframes spin-slow {
    to {
        transform: rotate(360deg);
    }
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px;
}

@media (min-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr 1fr;
        padding: 60px 24px;
    }
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: var(--badge-bg);
    border: 1px solid var(--badge-bd);
    color: var(--badge-tx);
    margin-bottom: 20px;
}

.live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--blue-l);
    flex-shrink: 0;
    animation: livep 2s infinite;
}

@keyframes livep {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(58, 142, 199, 0.5);
    }

    50% {
        box-shadow: 0 0 0 5px rgba(58, 142, 199, 0);
    }
}

h1.hero-title {
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.07;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: var(--heading);
}

.hero-sub {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-2);
    max-width: 520px;
    margin-bottom: 28px;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 36px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--blue-l));
    box-shadow: 0 4px 20px rgba(31, 95, 139, 0.35);
    transition:
        transform 0.2s,
        box-shadow 0.2s;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(31, 95, 139, 0.45);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    background: transparent;
    border: 1px solid var(--border);
    transition:
        transform 0.2s,
        background 0.2s,
        border-color 0.2s;
}

.btn-ghost:hover {
    transform: translateY(-2px);
    background: var(--border);
    border-color: var(--text-3);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

@media (min-width: 480px) {
    .stats-row {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card {
    background: var(--stat-bg);
    border: 1px solid var(--stat-bd);
    border-radius: 14px;
    padding: 14px 10px;
    text-align: center;
}

.stat-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--heading);
    line-height: 1;
}

.stat-lbl {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-3);
    margin-top: 4px;
}

/* Hero card (desktop) */
.hero-card-wrap {
    display: none;
}

@media (min-width: 1024px) {
    .hero-card-wrap {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }
}

.hero-ring1 {
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    border: 1px solid rgba(31, 95, 139, 0.18);
    animation: spin-slow 28s linear infinite;
}

.hero-ring2 {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 1px solid rgba(184, 48, 39, 0.12);
    animation: spin-slow 20s linear infinite reverse;
}

.hero-card {
    position: relative;
    width: 260px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 22px;
    box-shadow: var(--card-sh);
    backdrop-filter: blur(20px);
    animation: float 6s ease-in-out infinite;
}

.hero-card img {
    height: 44px;
    width: auto;
    display: block;
    margin: 0 auto 14px;
}

.hero-card-title {
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 3px;
}

.hero-card-sub {
    text-align: center;
    font-size: 11px;
    color: var(--text-3);
    margin-bottom: 14px;
}

.course-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 10px;
    background: var(--border2);
    margin-bottom: 6px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text);
}

.course-pill-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ═══ MARQUEE ═══ */
.marquee-wrap {
    overflow: hidden;
    padding: 12px 0;
    background: var(--bg2);
    border-top: 1px solid var(--border2);
    border-bottom: 1px solid var(--border2);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 32s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    to {
        transform: translateX(-50%);
    }
}

.mq-item {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-4);
    white-space: nowrap;
    padding: 0 22px;
}

.mq-dot {
    font-size: 6px;
    color: var(--blue);
    opacity: 0.5;
    padding: 5px 0;
}

/* ═══ SECTION HEADER ═══ */
.sec-header {
    text-align: center;
    margin-bottom: 48px;
}

.sec-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    background: var(--badge-bg);
    border: 1px solid var(--badge-bd);
    color: var(--badge-tx);
    margin-bottom: 14px;
}

.sec-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 12px;
    color: var(--heading);
}

.sec-desc {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-2);
    max-width: 540px;
    margin: 0 auto;
}

/* ═══ DIVIDER ═══ */
.divider {
    height: 1px;
    margin: 0 24px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* ═══ WHY US ═══ */
#about {
    background: var(--bg);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.why-card {
    background: var(--why-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 22px;
    transition:
        transform 0.3s,
        box-shadow 0.3s,
        border-color 0.3s;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--red));
    opacity: 0;
    transition: opacity 0.3s;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-sh);
    border-color: rgba(31, 95, 139, 0.3);
}

.why-card:hover::before {
    opacity: 1;
}

.why-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(31, 95, 139, 0.14);
    margin-bottom: 14px;
    color: var(--blue-xl);
}

.why-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 6px;
}

.why-desc {
    font-size: 0.85rem;
    line-height: 1.65;
    color: var(--text-2);
}

/* ═══ COURSES ═══ */
#courses {
    background: var(--bg2);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 18px;
}

.course-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition:
        transform 0.3s,
        box-shadow 0.3s;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-sh);
}

.cc-header {
    padding: 20px 20px 14px;
    border-bottom: 1px solid var(--border2);
}

.cc-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.cc-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
    margin-bottom: 8px;
}

.cc-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--heading);
    line-height: 1.3;
    margin-bottom: 4px;
}

.cc-sub {
    font-size: 0.82rem;
    font-style: italic;
    color: var(--text-3);
    font-family: "Lora", serif;
    margin-bottom: 10px;
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.chip {
    font-size: 11px;
    padding: 3px 9px;
    border-radius: 100px;
    background: var(--chip-bg);
    color: var(--chip-txt);
    font-weight: 500;
}

.cc-body {
    padding: 16px 20px;
    flex: 1;
}

.cc-body p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--text-2);
}

.cc-foot {
    padding: 12px 20px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cc-meta {
    display: flex;
    gap: 12px;
}

.cc-meta span {
    font-size: 11px;
    color: var(--text-3);
    display: flex;
    align-items: center;
    gap: 4px;
}

.cc-enroll {
    font-size: 12px;
    font-weight: 700;
    padding: 7px 14px;
    border-radius: 8px;
    transition: all 0.2s;
    cursor: pointer;
    border: 1px solid;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: inherit;
    text-decoration: none;
}

/* WIDE CARD (AI) */
.cc-wide {
    grid-column: 1/-1;
}

.cc-wide-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

@media (max-width: 700px) {
    .cc-wide-inner {
        grid-template-columns: 1fr;
    }
}

.cc-wide-l {
    padding: 22px;
    border-right: 1px solid var(--border2);
}

@media (max-width: 700px) {
    .cc-wide-l {
        border-right: none;
        border-bottom: 1px solid var(--border2);
    }
}

.cc-wide-r {
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* ═══ PROCESS ═══ */
#process {
    background: var(--bg);
}

.process-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 24px;
    position: relative;
}

.process-step {
    text-align: center;
    padding: 8px;
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--blue-d), var(--blue));
    margin: 0 auto 12px;
    position: relative;
    color: #fff;
    box-shadow: 0 4px 14px rgba(31, 95, 139, 0.35);
}

.step-num {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 5px;
}

.step-desc {
    font-size: 0.8rem;
    line-height: 1.6;
    color: var(--text-2);
}

/* ═══ TESTIMONIALS ═══ */
#testimonials {
    background: var(--bg2);
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 18px 22px;
    border-radius: 16px;
    background: var(--stat-bg);
    border: 1px solid var(--stat-bd);
    margin-bottom: 36px;
}

.rating-big {
    font-size: 3rem;
    font-weight: 800;
    color: var(--heading);
    line-height: 1;
}

.rating-stars {
    color: #f59e0b;
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.rating-sub {
    font-size: 0.8rem;
    color: var(--text-3);
}

.rating-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-left: auto;
}

.rbadge {
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 8px;
    white-space: nowrap;
}

.swiper-slide {
    height: auto;
}

.tcard {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition:
        transform 0.3s,
        box-shadow 0.3s;
}

.tcard:hover {
    transform: translateY(-3px);
    box-shadow: var(--card-sh);
}

.tcard-stars {
    color: #f59e0b;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.tcard-quote {
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--text-2);
    font-style: italic;
    font-family: "Lora", serif;
    flex: 1;
    margin-bottom: 14px;
}

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

.tcard-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--blue), var(--red));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    color: #fff;
}

.tcard-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--heading);
}

.tcard-role {
    font-size: 0.75rem;
    color: var(--text-3);
    margin-top: 1px;
}

.swiper-pagination-bullet {
    background: var(--blue) !important;
    opacity: 0.35;
}

.swiper-pagination-bullet-active {
    opacity: 1 !important;
}

/* ═══ CONTACT ═══ */
#contact {
    background: var(--bg);
}

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

@media (min-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr 1.4fr;
    }
}

.cinfo-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--info-bg);
    margin-bottom: 10px;
}

.cinfo-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(31, 95, 139, 0.12);
    border: 1px solid rgba(31, 95, 139, 0.2);
    color: var(--blue-l);
}

.cinfo-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-3);
    margin-bottom: 2px;
}

.cinfo-val {
    font-size: 0.85rem;
    color: var(--text);
}

.form-box {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--card-sh);
}

.form-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--heading);
    margin-bottom: 3px;
}

.form-sub {
    font-size: 0.82rem;
    color: var(--text-3);
    margin-bottom: 22px;
}

.form-row {
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr;
    margin-bottom: 12px;
}

@media (min-width: 480px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-3);
}

.form-input,
.form-select,
.form-textarea {
    padding: 11px 14px;
    border-radius: 10px;
    font-size: 0.875rem;
    background: var(--input-bg);
    border: 1px solid var(--border);
    color: var(--text);
    font-family: inherit;
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
    outline: none;
    width: 100%;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-4);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--blue) !important;
    box-shadow: 0 0 0 3px rgba(31, 95, 139, 0.15) !important;
}

.form-select {
    appearance: none;
    cursor: pointer;
    background-color: var(--sel-bg);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394a3b8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
}

.form-select option {
    background: var(--sel-bg);
    color: var(--text);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, var(--red), var(--red-l));
    border: none;
    cursor: pointer;
    font-family: inherit;
    letter-spacing: 0.03em;
    box-shadow: 0 6px 24px rgba(184, 48, 39, 0.35);
    transition:
        transform 0.2s,
        box-shadow 0.2s;
    margin-top: 6px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(184, 48, 39, 0.45);
}

.form-note {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-3);
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* ═══ FOOTER ═══ */
footer {
    background: var(--bg2);
    border-top: 1px solid var(--border2);
    padding: 56px 0 28px;
}

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

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.6fr 1fr 1fr 1fr;
    }
}

.footer-brand img {
    height: 40px;
    width: auto;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 0.85rem;
    line-height: 1.75;
    color: var(--text-2);
    margin-bottom: 14px;
}

.footer-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.fbadge {
    font-size: 10px;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 6px;
    color: #fff;
}

.footer-col h5 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-3);
    margin-bottom: 14px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col ul li a {
    font-size: 0.85rem;
    color: var(--text-2);
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--heading);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border2);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--text-3);
}

.footer-theme-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 8px;
    border: 1px solid var(--border);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-2);
    background: transparent;
    cursor: pointer;
    font-family: inherit;
    transition:
        background 0.2s,
        border-color 0.2s;
}

.footer-theme-btn:hover {
    background: var(--border);
    border-color: var(--text-3);
}

/* ═══ TOAST ═══ */
#toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9998;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 14px;
    background: #0f291a;
    border: 1px solid rgba(80, 200, 80, 0.25);
    color: #6ee7a0;
    max-width: 320px;
    font-size: 0.875rem;
    transform: translateY(80px);
    opacity: 0;
    transition: all 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
}

#toast.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.toast-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* ═══ SCROLL ANIMATION ═══ */
.anim {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim.in {
    opacity: 1;
    transform: translateY(0);
}

.anim-d1 {
    transition-delay: 0.07s;
}

.anim-d2 {
    transition-delay: 0.14s;
}

.anim-d3 {
    transition-delay: 0.21s;
}

.anim-d4 {
    transition-delay: 0.28s;
}

.anim-d5 {
    transition-delay: 0.35s;
}

.anim-d6 {
    transition-delay: 0.42s;
}

/* ═══ SHINE EFFECT ═══ */
.shine {
    position: relative;
    overflow: hidden;
}

.shine::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -75%;
    width: 50%;
    height: 200%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.16),
        transparent
    );
    transform: skewX(-20deg);
    transition: left 0.55s;
}

.shine:hover::after {
    left: 125%;
}

/* ═══ MOBILE UTILITY ═══ */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-inner {
        padding: 30px 16px;
    }

    .form-box {
        padding: 20px 16px;
    }

    .hero-btns .btn-ghost {
        display: none;
    }
}

/* NEW BADGE */
.new-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
}

.new-badge span {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--blue-d), var(--blue));
    color: #fff;
}

/* ═══ SCROLL PROGRESS ═══ */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    z-index: 2000;
    width: 0%;
    background: linear-gradient(90deg, var(--blue), var(--red));
    transition: width 0.1s linear;
}
