
    /* ═══════════════════════════════════════════════
   TOKENS
        ═══════════════════════════════════════════════ */
    :root {
        --ink: #0e0f0d;
        --ink-soft: #3b3c38;
        --muted: #7c7c78;
        --surface: #f6f5f0;
        --white: #ffffff;
        --border: rgba(0, 0, 0, 0.08);
        --border-md: rgba(0, 0, 0, 0.13);

        --green: #0f6e56;
        --green-mid: #1d9e75;
        --green-pale: #e1f5ee;
        --green-deep: #074033;

        --gold: #c8940f;
        --gold-light: #fdf2d6;
        --gold-pale: #fdf8ec;

        --sand: #f0ede4;

        --r-sm: 8px;
        --r-md: 14px;
        --r-lg: 22px;
        --r-xl: 32px;
    }

    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Jost', sans-serif;
        font-weight: 400;
        background: var(--surface);
        color: var(--ink);
        -webkit-font-smoothing: antialiased;
        overflow-x: hidden;
    }

    /* ═══════════════════════════════════════════════
   HERO
    ═══════════════════════════════════════════════ */
    .hero {
        position: relative;
        background: var(--ink);
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    /* Geometric background art */
    .hero-bg {
        position: absolute;
        inset: 0;
        pointer-events: none;
        z-index: 0;
    }

    /* Large soft glow blobs */
    .hero-bg::before {
        content: '';
        position: absolute;
        width: 700px;
        height: 700px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(29, 158, 117, 0.18) 0%, transparent 70%);
        right: -100px;
        top: -150px;
    }

    .hero-bg::after {
        content: '';
        position: absolute;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(200, 148, 15, 0.12) 0%, transparent 70%);
        left: -80px;
        bottom: -100px;
    }

    /* SVG geometric pattern overlay */
    .hero-pattern {
        position: absolute;
        inset: 0;
        background-image:
            repeating-linear-gradient(60deg,
                transparent,
                transparent 80px,
                rgba(255, 255, 255, 0.018) 80px,
                rgba(255, 255, 255, 0.018) 81px),
            repeating-linear-gradient(-60deg,
                transparent,
                transparent 80px,
                rgba(255, 255, 255, 0.018) 80px,
                rgba(255, 255, 255, 0.018) 81px);
    }

    /* Arabic calligraphy watermark */
    .hero-watermark {
        position: absolute;
        right: 4%;
        top: 50%;
        transform: translateY(-50%);
        font-family: 'Fraunces', serif;
        font-size: clamp(160px, 22vw, 320px);
        color: rgba(255, 255, 255, 0.025);
        line-height: 1;
        user-select: none;
        pointer-events: none;
        z-index: 0;
        letter-spacing: -0.04em;
    }

    /* Nav inside hero */
    .hero-nav {
        position: relative;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 28px 56px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .hero-logo {
        display: flex;
        align-items: center;
        gap: 12px;
        text-decoration: none;
    }

    .logo-mark {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        background: var(--green-mid);
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Fraunces', serif;
        font-size: 20px;
        color: var(--white);
        font-weight: 600;
    }

    .logo-text {
        font-family: 'Fraunces', serif;
        font-size: 17px;
        font-weight: 600;
        color: var(--white);
        line-height: 1.1;
    }

    .logo-text small {
        display: block;
        font-size: 10px;
        font-weight: 300;
        color: rgba(255, 255, 255, 0.45);
        letter-spacing: 0.12em;
        text-transform: uppercase;
    }

    .hero-nav-links {
        display: flex;
        align-items: center;
        gap: 36px;
        list-style: none;
    }

    .hero-nav-links a {
        font-size: 13px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.55);
        text-decoration: none;
        letter-spacing: 0.04em;
        transition: color 0.2s;
    }

    .hero-nav-links a:hover {
        color: var(--white);
    }

    .nav-cta {
        padding: 9px 22px;
        border-radius: 100px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: var(--white) !important;
        transition: background 0.2s, border-color 0.2s !important;
    }

    .nav-cta:hover {
        background: var(--green-mid) !important;
        border-color: var(--green-mid) !important;
        color: var(--white) !important;
    }

    /* Hero body */
    .hero-body {
        flex: 1;
        display: flex;
        align-items: center;
        position: relative;
        z-index: 1;
        padding: 60px 56px 80px;
        gap: 60px;
    }

    .hero-content {
        flex: 1;
        max-width: 620px;
    }

    /* Eyebrow */
    .eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 28px;
    }

    .eyebrow-line {
        display: inline-block;
        width: 28px;
        height: 1px;
        background: var(--gold);
    }

    .hero-h1 {
        font-family: 'Fraunces', serif;
        font-size: clamp(44px, 6vw, 84px);
        font-weight: 600;
        line-height: 1.02;
        letter-spacing: -0.03em;
        color: var(--white);
        margin-bottom: 28px;
    }

    .hero-h1 em {
        font-style: italic;
        font-weight: 300;
        color: var(--green-mid);
    }

    .hero-h1 .gold-word {
        color: var(--gold);
        font-style: italic;
        font-weight: 300;
    }

    .hero-sub {
        font-size: 16px;
        line-height: 1.75;
        color: rgba(255, 255, 255, 0.52);
        max-width: 480px;
        margin-bottom: 44px;
    }

    /* CTA group */
    .hero-cta {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 56px;
        flex-wrap: wrap;
    }

    .btn-hero-primary {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 15px 32px;
        background: var(--green-mid);
        color: var(--white);
        border-radius: 100px;
        font-size: 14px;
        font-weight: 500;
        text-decoration: none;
        transition: background 0.2s, transform 0.2s;
    }

    .btn-hero-primary:hover {
        background: var(--green);
        transform: translateY(-2px);
    }

    .btn-hero-primary i {
        font-size: 12px;
        transition: transform 0.2s;
    }

    .btn-hero-primary:hover i {
        transform: translateX(4px);
    }

    .btn-hero-ghost {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 14px 30px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: rgba(255, 255, 255, 0.75);
        border-radius: 100px;
        font-size: 14px;
        font-weight: 500;
        text-decoration: none;
        transition: border-color 0.2s, color 0.2s;
    }

    .btn-hero-ghost:hover {
        border-color: rgba(255, 255, 255, 0.5);
        color: var(--white);
    }

    /* Hero stats */
    .hero-stats {
        display: flex;
        gap: 40px;
        flex-wrap: wrap;
    }

    .hero-stat {
        display: flex;
        flex-direction: column;
    }

    .stat-num {
        font-family: 'Fraunces', serif;
        font-size: 36px;
        font-weight: 600;
        color: var(--white);
        line-height: 1;
    }

    .stat-lbl {
        font-size: 11px;
        color: rgba(255, 255, 255, 0.38);
        letter-spacing: 0.1em;
        text-transform: uppercase;
        margin-top: 4px;
    }

    /* Hero image panel */
    .hero-image-panel {
        flex: 0 0 460px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Decorative rings behind image */
    .ring {
        position: absolute;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.06);
    }

    .ring-1 {
        width: 480px;
        height: 480px;
    }

    .ring-2 {
        width: 380px;
        height: 380px;
        border-color: rgba(29, 158, 117, 0.15);
    }

    .ring-3 {
        width: 280px;
        height: 280px;
        border-color: rgba(200, 148, 15, 0.12);
    }

    .hero-img-wrap {
        width: 380px;
        height: 440px;
        border-radius: var(--r-xl);
        overflow: hidden;
        position: relative;
        z-index: 2;
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .hero-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.85) saturate(0.85);
        transition: transform 6s ease;
    }

    .hero-img-wrap:hover img {
        transform: scale(1.04);
    }

    /* Floating badge on image */
    .hero-float-badge {
        position: absolute;
        bottom: -20px;
        left: -28px;
        z-index: 3;
        background: var(--white);
        border-radius: var(--r-md);
        padding: 14px 20px;
        display: flex;
        align-items: center;
        gap: 12px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    }

    .badge-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        background: var(--green-pale);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--green);
        font-size: 18px;
    }

    .badge-text strong {
        display: block;
        font-size: 15px;
        font-weight: 600;
        color: var(--ink);
    }

    .badge-text span {
        font-size: 12px;
        color: var(--muted);
    }

    /* ═══════════════════════════════════════════════
   TRUST TICKER
    ═══════════════════════════════════════════════ */
    .trust-bar {
        background: var(--sand);
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        padding: 14px 0;
        overflow: hidden;
    }

    .trust-inner {
        display: flex;
        align-items: center;
        gap: 48px;
        width: max-content;
        animation: ticker 22s linear infinite;
    }

    @keyframes ticker {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(-50%);
        }
    }

    .trust-item {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 13px;
        font-weight: 500;
        color: var(--ink-soft);
        white-space: nowrap;
    }

    .trust-item i {
        color: var(--green-mid);
        font-size: 13px;
    }

    .trust-dot {
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background: var(--border-md);
    }

    /* ═══════════════════════════════════════════════
   SECTION COMMONS
    ═══════════════════════════════════════════════ */
    .section {
        padding: 96px 56px;
    }

    .section-bg-white {
        background: var(--white);
    }

    .section-bg-surface {
        background: var(--surface);
    }

    .section-bg-dark {
        background: var(--ink);
    }

    .section-bg-sand {
        background: var(--sand);
    }

    .section-tag {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--green);
        margin-bottom: 14px;
    }

    .section-tag::before {
        content: '';
        width: 20px;
        height: 1px;
        background: var(--green-mid);
    }

    .section-heading {
        font-family: 'Fraunces', serif;
        font-size: clamp(32px, 4vw, 52px);
        font-weight: 600;
        line-height: 1.08;
        letter-spacing: -0.025em;
        color: var(--ink);
        margin-bottom: 16px;
    }

    .section-heading em {
        font-style: italic;
        font-weight: 300;
        color: var(--green-mid);
    }

    .section-heading.light {
        color: var(--white);
    }

    .section-heading.light em {
        color: var(--gold);
    }

    .section-sub {
        font-size: 15px;
        line-height: 1.7;
        color: var(--muted);
        max-width: 500px;
    }

    .section-sub.light {
        color: rgba(255, 255, 255, 0.48);
    }

    .section-header {
        max-width: 1200px;
        margin: 0 auto 56px;
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 24px;
        flex-wrap: wrap;
    }

    .section-header-left {}

    .view-all-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 13px;
        font-weight: 500;
        color: var(--green-mid);
        text-decoration: none;
        padding: 9px 20px;
        border: 1px solid rgba(29, 158, 117, 0.3);
        border-radius: 100px;
        transition: all 0.2s;
        white-space: nowrap;
    }

    .view-all-link:hover {
        background: var(--green);
        color: var(--white);
        border-color: var(--green);
    }

    .view-all-link i {
        font-size: 11px;
        transition: transform 0.2s;
    }

    .view-all-link:hover i {
        transform: translateX(3px);
    }

    .grid-wrap {
        max-width: 1200px;
        margin: 0 auto;
    }

    /* ═══════════════════════════════════════════════
   COURSES SECTION
    ═══════════════════════════════════════════════ */
    .courses-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 24px;
    }

    .course-card {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: var(--r-lg);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        position: relative;
    }

    .course-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.09);
    }

    .course-img {
        position: relative;
        height: 190px;
        background: var(--ink);
        overflow: hidden;
    }

    .course-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.8;
        transition: transform 0.5s ease;
    }

    .course-card:hover .course-img img {
        transform: scale(1.05);
    }

    .course-img::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(14, 15, 13, 0.55) 0%, transparent 55%);
    }

    .lvl-badge {
        position: absolute;
        top: 12px;
        left: 12px;
        z-index: 2;
        padding: 4px 12px;
        border-radius: 100px;
        font-size: 10px;
        font-weight: 500;
        letter-spacing: 0.07em;
        text-transform: uppercase;
    }

    .lvl-beginner {
        background: rgba(225, 245, 238, 0.95);
        color: var(--green);
    }

    .lvl-intermediate {
        background: rgba(253, 242, 214, 0.95);
        color: #865211;
    }

    .lvl-advanced {
        background: rgba(238, 237, 254, 0.95);
        color: #3c3489;
    }

    .lvl-all_levels {
        background: rgba(255, 255, 255, 0.95);
        color: var(--ink-soft);
    }

    .course-body {
        padding: 20px;
        display: flex;
        flex-direction: column;
        flex: 1;
    }

    .course-name {
        font-family: 'Fraunces', serif;
        font-size: 19px;
        font-weight: 600;
        line-height: 1.2;
        color: var(--ink);
        margin-bottom: 8px;
    }

    .course-excerpt {
        font-size: 13px;
        line-height: 1.65;
        color: var(--muted);
        flex: 1;
        margin-bottom: 18px;
    }

    .course-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-top: 16px;
        border-top: 1px solid var(--border);
    }

    .btn-course {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        padding: 9px 18px;
        background: var(--ink);
        color: var(--white);
        border-radius: 100px;
        font-size: 12px;
        font-weight: 500;
        text-decoration: none;
        transition: background 0.2s;
    }

    .btn-course:hover {
        background: var(--green);
    }

    .btn-course i {
        font-size: 10px;
        transition: transform 0.2s;
    }

    .btn-course:hover i {
        transform: translateX(3px);
    }

    .free-trial-tag {
        font-size: 11px;
        color: var(--green);
        font-weight: 500;
    }

    /* ═══════════════════════════════════════════════
   WHY CHOOSE US
    ═══════════════════════════════════════════════ */
    .features-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2px;
        background: var(--border);
        border-radius: var(--r-lg);
        overflow: hidden;
    }

    .feature-item {
        background: var(--white);
        padding: 40px 32px;
        transition: background 0.3s ease;
        position: relative;
    }

    .feature-item:hover {
        background: var(--green-pale);
    }

    .feature-number {
        font-family: 'Fraunces', serif;
        font-size: 52px;
        font-weight: 600;
        color: rgba(0, 0, 0, 0.05);
        line-height: 1;
        margin-bottom: 20px;
    }

    .feature-icon-wrap {
        width: 48px;
        height: 48px;
        border-radius: var(--r-sm);
        background: var(--green-pale);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 18px;
        transition: background 0.3s;
    }

    .feature-item:hover .feature-icon-wrap {
        background: var(--green);
    }

    .feature-item:hover .feature-icon-wrap i {
        color: var(--white);
    }

    .feature-icon-wrap i {
        font-size: 20px;
        color: var(--green);
        transition: color 0.3s;
    }

    .feature-title {
        font-family: 'Fraunces', serif;
        font-size: 19px;
        font-weight: 600;
        color: var(--ink);
        margin-bottom: 10px;
    }

    .feature-desc {
        font-size: 13px;
        line-height: 1.65;
        color: var(--muted);
    }

    /* ═══════════════════════════════════════════════
   TEACHERS SECTION
    ═══════════════════════════════════════════════ */
    .teachers-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }

    .teacher-card {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: var(--r-lg);
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .teacher-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    }

    .teacher-img {
        position: relative;
        height: 240px;
        overflow: hidden;
        background: var(--sand);
    }

    .teacher-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .teacher-card:hover .teacher-img img {
        transform: scale(1.04);
    }

    /* Rating chip over image */
    .teacher-rating-chip {
        position: absolute;
        bottom: 10px;
        left: 10px;
        background: var(--white);
        border-radius: 100px;
        padding: 5px 12px;
        display: flex;
        align-items: center;
        gap: 5px;
        font-size: 12px;
        font-weight: 500;
        color: var(--ink);
    }

    .teacher-rating-chip i {
        color: var(--gold);
        font-size: 11px;
    }

    .teacher-body {
        padding: 18px 20px;
    }

    .teacher-name {
        font-family: 'Fraunces', serif;
        font-size: 17px;
        font-weight: 600;
        color: var(--ink);
        margin-bottom: 4px;
    }

    .teacher-spec {
        font-size: 12px;
        color: var(--green-mid);
        font-weight: 500;
        margin-bottom: 12px;
    }

    .teacher-meta {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .teacher-exp {
        font-size: 12px;
        color: var(--muted);
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .btn-teacher {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 7px 14px;
        border: 1px solid var(--border-md);
        border-radius: 100px;
        font-size: 11px;
        font-weight: 500;
        color: var(--ink);
        text-decoration: none;
        transition: all 0.2s;
    }

    .btn-teacher:hover {
        background: var(--ink);
        color: var(--white);
        border-color: var(--ink);
    }

    /* ═══════════════════════════════════════════════
   TESTIMONIALS
    ═══════════════════════════════════════════════ */
    .testi-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .testi-card {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.09);
        border-radius: var(--r-lg);
        padding: 32px;
        transition: background 0.3s;
    }

    .testi-card:hover {
        background: rgba(255, 255, 255, 0.08);
    }

    .quote-mark {
        font-family: 'Fraunces', serif;
        font-size: 64px;
        line-height: 0.8;
        color: var(--green-mid);
        margin-bottom: 16px;
        display: block;
        opacity: 0.7;
    }

    .testi-text {
        font-size: 15px;
        line-height: 1.75;
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 24px;
        font-style: italic;
        font-family: 'Fraunces', serif;
        font-weight: 300;
    }

    .testi-stars {
        display: flex;
        gap: 3px;
        margin-bottom: 16px;
    }

    .testi-stars i {
        font-size: 12px;
        color: var(--gold);
    }

    .testi-stars i.empty {
        color: rgba(255, 255, 255, 0.2);
    }

    .testi-author {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .author-avatar {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: var(--green-mid);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        font-weight: 600;
        color: var(--white);
        font-family: 'Fraunces', serif;
        flex-shrink: 0;
    }

    .author-name {
        font-size: 14px;
        font-weight: 500;
        color: var(--white);
    }

    .author-country {
        font-size: 11px;
        color: rgba(255, 255, 255, 0.38);
        margin-top: 2px;
    }

    /* ═══════════════════════════════════════════════
   CTA SECTION
    ═══════════════════════════════════════════════ */
    .cta-wrap {
        max-width: 1200px;
        margin: 0 auto;
        background: var(--green-deep);
        border-radius: var(--r-xl);
        padding: 72px 72px;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 40px;
        align-items: center;
        position: relative;
        overflow: hidden;
    }

    .cta-wrap::before {
        content: '';
        position: absolute;
        right: -80px;
        top: -80px;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(29, 158, 117, 0.3) 0%, transparent 70%);
        pointer-events: none;
    }

    .cta-wrap::after {
        content: 'بسم الله';
        position: absolute;
        right: 80px;
        bottom: -10px;
        font-family: 'Fraunces', serif;
        font-size: 120px;
        color: rgba(255, 255, 255, 0.03);
        pointer-events: none;
        user-select: none;
    }

    .cta-heading {
        font-family: 'Fraunces', serif;
        font-size: clamp(28px, 3.5vw, 44px);
        font-weight: 600;
        color: var(--white);
        line-height: 1.1;
        letter-spacing: -0.025em;
        margin-bottom: 14px;
    }

    .cta-heading em {
        font-style: italic;
        font-weight: 300;
        color: var(--gold);
    }

    .cta-sub {
        font-size: 15px;
        color: rgba(255, 255, 255, 0.5);
        line-height: 1.65;
        max-width: 480px;
    }

    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
        flex-shrink: 0;
    }

    .btn-cta-white {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 9px;
        padding: 14px 32px;
        background: var(--white);
        color: var(--green-deep);
        border-radius: 100px;
        font-size: 14px;
        font-weight: 500;
        text-decoration: none;
        white-space: nowrap;
        transition: opacity 0.2s, transform 0.2s;
    }

    .btn-cta-white:hover {
        opacity: 0.92;
        transform: translateY(-2px);
    }

    .btn-cta-outline {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 9px;
        padding: 13px 32px;
        border: 1px solid rgba(255, 255, 255, 0.25);
        color: rgba(255, 255, 255, 0.75);
        border-radius: 100px;
        font-size: 14px;
        font-weight: 500;
        text-decoration: none;
        white-space: nowrap;
        transition: border-color 0.2s, color 0.2s;
    }

    .btn-cta-outline:hover {
        border-color: rgba(255, 255, 255, 0.55);
        color: var(--white);
    }

    /* ═══════════════════════════════════════════════
   ENTRANCE ANIMATIONS
    ═══════════════════════════════════════════════ */
    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(28px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .hero-content>* {
        animation: fadeUp 0.65s ease both;
    }

    .eyebrow {
        animation-delay: 0.05s;
    }

    .hero-h1 {
        animation-delay: 0.15s;
    }

    .hero-sub {
        animation-delay: 0.25s;
    }

    .hero-cta {
        animation-delay: 0.35s;
    }

    .hero-stats {
        animation-delay: 0.45s;
    }

    .hero-image-panel {
        animation: fadeUp 0.7s 0.2s ease both;
    }

    .course-card:nth-child(1) {
        animation: fadeUp 0.5s 0.05s ease both;
    }

    .course-card:nth-child(2) {
        animation: fadeUp 0.5s 0.12s ease both;
    }

    .course-card:nth-child(3) {
        animation: fadeUp 0.5s 0.19s ease both;
    }

    .course-card:nth-child(4) {
        animation: fadeUp 0.5s 0.26s ease both;
    }

    .course-card:nth-child(5) {
        animation: fadeUp 0.5s 0.33s ease both;
    }

    .course-card:nth-child(6) {
        animation: fadeUp 0.5s 0.40s ease both;
    }

    /* ═══════════════════════════════════════════════
   RESPONSIVE
    ═══════════════════════════════════════════════ */
    @media (max-width: 1100px) {
        .teachers-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .features-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 900px) {
        .hero-body {
            flex-direction: column;
            padding: 40px 24px 60px;
        }

        .hero-image-panel {
            flex: 0 0 auto;
            width: 100%;
        }

        .hero-img-wrap {
            width: 100%;
            height: 300px;
        }

        .hero-float-badge {
            left: 12px;
            bottom: -16px;
        }

        .testi-grid {
            grid-template-columns: 1fr;
        }

        .cta-wrap {
            grid-template-columns: 1fr;
            padding: 48px 36px;
        }

        .cta-buttons {
            flex-direction: row;
            flex-wrap: wrap;
        }

        .section {
            padding: 72px 24px;
        }

        .hero-nav {
            padding: 20px 24px;
        }

        .hero-nav-links {
            display: none;
        }
    }

    @media (max-width: 640px) {
        .courses-grid {
            grid-template-columns: 1fr;
        }

        .teachers-grid {
            grid-template-columns: 1fr;
        }

        .features-grid {
            grid-template-columns: 1fr;
        }
    }