﻿:root {
    /* Glottical brand: blue #0B3D91 + yellow #F5B800 (from designs/public-pages structure) */
    --p: #0B3D91;
    --p-dark: #072A66;
    --p-deep: #051F4D;
    --p-light: #3D6BC4;
    --p-glow: #6B8FD4;
    --gold: #F5B800;
    --gold-dark: #D99E00;
    --bg: #F4F7FC;
    --text: #0B1220;
    --muted: #64748b;
    --radius: 24px;
    --font: 'Tajawal', 'Cairo', sans-serif;
    --font-display: 'Cairo', 'Tajawal', sans-serif;
    --shadow: 0 24px 60px -24px rgba(11, 61, 145, 0.35);
}
    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    html[dir="rtl"] body.sana-home {
        direction: rtl;
        text-align: right;
        font-family: var(--font) !important;
    }
    html[dir="ltr"] body.sana-home {
        direction: ltr;
        text-align: left;
        font-family: var(--font) !important;
    }
    body.sana-home {
        background: var(--bg);
        color: var(--text);
        overflow-x: hidden;
        margin: 0;
        font-family: var(--font);
        font-weight: 500;
        -webkit-font-smoothing: antialiased;
    }
    body.sana-home h1, body.sana-home h2, body.sana-home h3, body.sana-home h4,
    body.sana-home .sana-head__title, body.sana-home .sana-hero__title {
        font-family: var(--font-display);
        font-weight: 900;
    }
    main { display: block; margin: 0; padding: 0; }
.sana-container { max-width: 1200px; margin-inline: auto; padding-inline: clamp(16px, 4vw, 32px); }
.sana-section { padding: clamp(48px, 7vw, 80px) 0; }
.sana-section--white { background: #fff; }
.sana-section--soft { background: var(--bg); }

/* Audience paths (homepage + shared) */
.sana-audience__grid {
    display: grid;
    gap: 18px;
}
@media (min-width: 768px) {
    .sana-audience__grid { grid-template-columns: 1fr 1fr; gap: 22px; }
}
.sana-audience__grid--single {
    max-width: 520px;
    margin-inline: auto;
}
@media (min-width: 768px) {
    .sana-audience__grid--single { grid-template-columns: 1fr; }
}

/* Paths band â€” wide horizontal homepage CTA */
.sana-section--paths {
    padding-top: clamp(36px, 5vw, 56px);
    padding-bottom: clamp(36px, 5vw, 56px);
    background: var(--bg);
}
.sana-container--wide { max-width: 1200px; }

.sana-paths-band {
    position: relative;
    overflow: hidden;
    border-radius: clamp(18px, 2.5vw, 26px);
    padding: clamp(28px, 4vw, 40px) clamp(24px, 4vw, 44px);
    background: linear-gradient(145deg, #051F4D 0%, #0B3D91 48%, #1A56B0 100%);
    box-shadow:
        0 28px 64px -20px rgba(11,61,145,0.45),
        0 0 0 1px rgba(255,255,255,0.08) inset;
}
.sana-paths-band__dots {
    position: absolute;
    inset: 0;
    opacity: 0.28;
    background-image: radial-gradient(rgba(255,255,255,0.35) 1px, transparent 1px);
    background-size: 22px 22px;
    pointer-events: none;
}
.sana-paths-band__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}
.sana-paths-band__glow--1 {
    width: 320px;
    height: 320px;
    top: -80px;
    inset-inline-start: -60px;
    background: rgba(245,184,0,0.22);
}
.sana-paths-band__glow--2 {
    width: 280px;
    height: 280px;
    bottom: -60px;
    inset-inline-end: -40px;
    background: rgba(107,143,212,0.35);
}
.sana-paths-band__shell {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: clamp(28px, 4vw, 36px);
}
.sana-paths-band__row-top {
    display: grid;
    gap: clamp(24px, 4vw, 32px);
    align-items: start;
}
@media (min-width: 992px) {
    .sana-paths-band__row-top {
        grid-template-columns: minmax(0, 1fr) minmax(240px, 280px);
        gap: 40px 48px;
        align-items: center;
    }
}
.sana-paths-band__main {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.sana-paths-band__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    margin-bottom: 14px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    font-size: 0.72rem;
    font-weight: 800;
    color: #FFE9A8;
}
.sana-paths-band__title {
    margin: 0 0 10px;
    font-size: clamp(1.35rem, 2.8vw, 1.85rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.25;
    letter-spacing: -0.02em;
}
.sana-paths-band__sub {
    margin: 0 0 16px;
    font-size: clamp(0.82rem, 1.6vw, 0.92rem);
    line-height: 1.75;
    color: rgba(255,255,255,0.8);
    font-weight: 600;
}
.sana-paths-band__meta {
    margin-top: 4px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.12);
}
.sana-paths-band__meta h3 {
    margin: 0 0 8px;
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
    font-weight: 900;
    color: #fff;
}
.sana-paths-band__meta p {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.72);
    font-weight: 600;
}

.sana-paths-band__steps {
    display: grid;
    gap: 12px;
    margin: 0;
    padding-top: clamp(16px, 2.5vw, 22px);
    border-top: 1px solid rgba(255,255,255,0.14);
}
@media (min-width: 640px) {
    .sana-paths-band__steps {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
    }
}
.sana-paths-band__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 16px 14px;
    border-radius: 16px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.16);
    backdrop-filter: blur(8px);
    min-height: 0;
    transition: background 0.2s, transform 0.2s;
}
.sana-paths-band__step:hover {
    background: rgba(255,255,255,0.14);
    transform: translateY(-2px);
}
.sana-paths-band__step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    color: #FFE9A8;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.14);
    line-height: 1.2;
}
.sana-paths-band__step-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    margin: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--gold), #D99E00);
    color: var(--p-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    box-shadow: 0 6px 16px rgba(245,184,0,0.28);
}
.sana-paths-band__step-text {
    margin: 0;
    font-size: clamp(0.76rem, 1.4vw, 0.84rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.55;
    max-width: 18ch;
}

.sana-paths-band__actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    width: 100%;
}
@media (min-width: 992px) {
    .sana-paths-band__actions {
        padding-inline-start: 24px;
        border-inline-start: 1px solid rgba(255,255,255,0.14);
    }
}
.sana-paths-band__cta.sana-site-cta {
    flex-direction: column;
    width: 100%;
    gap: 12px !important;
}
.sana-paths-band__cta.sana-site-cta .sana-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 0.86rem;
    white-space: nowrap;
}
@media (min-width: 1100px) {
    .sana-paths-band__cta.sana-site-cta {
        flex-direction: column;
    }
    .sana-paths-band__cta.sana-site-cta .sana-btn {
        width: 100%;
        flex: none;
    }
}
.sana-paths-band__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.8rem;
    margin-top: 4px;
    font-weight: 800;
    color: #FFE9A8 !important;
    text-decoration: none !important;
    transition: opacity 0.2s;
}
@media (min-width: 992px) {
    .sana-paths-band__link { justify-content: flex-start; }
}
.sana-paths-band__link:hover { opacity: 0.88; text-decoration: underline !important; }

.sana-audience__card {
    background: #fff;
    border-radius: 22px;
    padding: 24px 22px;
    border: 1px solid rgba(11,61,145,0.12);
    box-shadow: 0 14px 40px -18px rgba(11,61,145,0.14);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
}
.sana-audience__card--student { border-top: 4px solid var(--gold); }
.sana-audience__card--teacher { border-top: 4px solid var(--p); }
.sana-audience__card-head {
    margin-bottom: 4px;
}
.sana-audience__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 900;
    color: var(--p);
    margin-bottom: 10px;
}
.sana-audience__card h3 {
    margin: 0 0 8px;
    font-size: 1.15rem;
    font-weight: 900;
    color: var(--text);
}
.sana-audience__card p {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.75;
    color: var(--muted);
    font-weight: 600;
}
.sana-audience__card-foot {
    margin-top: auto;
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}
.sana-audience__foot-link {
    margin: 0;
    text-align: center;
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1.4;
}
.sana-audience__foot-link a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--p);
    text-decoration: none !important;
    transition: color 0.2s;
}
.sana-audience__foot-link a:hover { color: var(--p-dark); text-decoration: underline !important; }
.sana-audience__cta { width: 100%; justify-content: center; margin-top: 0; }
.sana-audience--compact .sana-audience__card { padding: 20px 18px; }
.sana-audience--compact .sana-audience__card h3 { font-size: 1.02rem; }
.sana-head--center { text-align: center; }
.sana-head--center .sana-head__line { margin-inline: auto; }
.sana-head__sub {
    margin: 12px auto 0;
    max-width: 52ch;
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--muted);
    font-weight: 600;
}

/* NAV */
.sana-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background 0.3s, box-shadow 0.3s;
}
.sana-nav .sana-container { position: relative; }
.sana-nav--hero { background: transparent; border: none; }
.sana-nav--hero .sana-nav__logo-text,
.sana-nav--hero .sana-nav__links a,
.sana-nav--hero .sana-nav__login { color: #fff; }
.sana-nav--hero .sana-nav__login { border-color: rgba(255,255,255,0.45); background: transparent; }
.sana-nav--hero .sana-nav__burger { color: #fff; border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.1); }
.sana-nav.is-solid { background: rgba(255,255,255,0.97); backdrop-filter: blur(16px); box-shadow: 0 4px 24px rgba(11,61,145,0.1); }
.sana-nav.is-solid .sana-nav__logo-text { color: var(--p-dark); }
.sana-nav.is-solid .sana-nav__links a { color: var(--muted); }
.sana-nav.is-solid .sana-nav__links a:hover { color: var(--p); }
.sana-nav.is-solid .sana-nav__login { color: var(--p); border-color: rgba(11,61,145,0.25); background: #fff; }
.sana-nav.is-solid .sana-nav__burger { color: var(--p-dark); border-color: #E8EEF8; background: #fff; }
.sana-nav.is-menu-open {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(16px);
    box-shadow: 0 4px 24px rgba(11,61,145,0.12);
}
.sana-nav.is-menu-open .sana-nav__logo-text { color: var(--p-dark) !important; }
.sana-nav.is-menu-open .sana-nav__burger {
    color: var(--p-dark) !important;
    border-color: #E8EEF8 !important;
    background: #fff !important;
}
.sana-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    position: relative;
    gap: 12px;
}
.sana-nav__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
    flex-shrink: 0;
    z-index: 2;
}
.sana-nav__logo-img { width: 40px; height: 40px; border-radius: 12px; object-fit: cover; }
.sana-nav__logo-text { font-family: var(--font-display); font-size: 1.35rem; font-weight: 900; letter-spacing: 0.06em; color: var(--p-dark); white-space: nowrap; }
.sana-nav__links {
    display: none !important;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
.sana-nav__links a {
    padding: 8px 12px;
    font-family: var(--font);
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--muted);
    text-decoration: none !important;
    border-radius: 10px;
    transition: color 0.15s, background 0.15s;
    position: relative;
}
.sana-nav--hero .sana-nav__links a.is-active { color: #fff; font-weight: 800; }
.sana-nav--hero .sana-nav__links a.is-active:not(.sana-nav__path)::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 12px;
    right: 12px;
    height: 3px;
    background: var(--gold);
    border-radius: 999px;
}
.sana-nav.is-solid .sana-nav__links a.is-active { color: var(--p-dark); }
.sana-nav.is-solid .sana-nav__links a.is-active:not(.sana-nav__path)::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 12px;
    right: 12px;
    height: 3px;
    background: var(--gold);
    border-radius: 999px;
}
.sana-nav__links a:hover { color: var(--p); background: rgba(11,61,145,0.06); }
.sana-nav__path {
    font-weight: 800;
    font-size: 0.8rem;
    border-radius: 999px;
    padding: 7px 11px !important;
}
.sana-nav__path::after { display: none !important; }
.sana-nav__path--family.is-active,
.sana-nav__path--family:hover {
    background: rgba(245,184,0,0.18);
    color: var(--p-dark) !important;
}
.sana-nav__path--teacher.is-active,
.sana-nav__path--teacher:hover {
    background: rgba(11,61,145,0.12);
    color: var(--p) !important;
}
.sana-nav--hero .sana-nav__path--family.is-active,
.sana-nav--hero .sana-nav__path--family:hover {
    background: rgba(245,184,0,0.22);
    color: #fff !important;
}
.sana-nav--hero .sana-nav__path--teacher.is-active,
.sana-nav--hero .sana-nav__path--teacher:hover {
    background: rgba(255,255,255,0.14);
    color: #fff !important;
}
.sana-nav__actions {
    display: none !important;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    flex-wrap: nowrap;
}
.sana-nav__end {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    z-index: 2;
    margin-inline-start: auto;
    min-width: 0;
}
.sana-nav__lang-dd {
    position: relative;
    flex-shrink: 0;
    z-index: 1105;
}
.sana-nav__lang-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1.5px solid rgba(11, 61, 145, 0.25);
    background: #fff;
    color: var(--p);
    font: 700 0.82rem/1 Tajawal, Cairo, sans-serif;
    cursor: pointer;
    white-space: nowrap;
    transition: border-color 0.15s, background 0.15s, color 0.15s, box-shadow 0.15s;
}
.sana-nav__lang-btn .fa-globe { font-size: 0.78rem; opacity: 0.9; }
.sana-nav__lang-btn-code { display: none; font-weight: 800; letter-spacing: 0.02em; }
.sana-nav__lang-chevron {
    font-size: 0.62rem;
    opacity: 0.75;
    transition: transform 0.2s ease;
}
.sana-nav__lang-dd.is-open .sana-nav__lang-chevron { transform: rotate(180deg); }
.sana-nav__lang-menu {
    position: absolute;
    top: calc(100% + 8px);
    inset-inline-end: 0;
    min-width: 168px;
    padding: 6px;
    border-radius: 14px;
    border: 1px solid #E8EEF8;
    background: #fff;
    box-shadow: 0 16px 40px -12px rgba(11, 61, 145, 0.28);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
    z-index: 1100;
    pointer-events: none;
}
.sana-nav__lang-dd.is-open .sana-nav__lang-menu { pointer-events: auto; }
.sana-nav__lang-dd.is-open .sana-nav__lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.sana-nav__lang-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    text-decoration: none !important;
    font: 700 0.84rem/1.2 Tajawal, Cairo, sans-serif;
    color: #5B6577;
    transition: background 0.15s, color 0.15s;
}
.sana-nav__lang-option:hover {
    background: #F4F7FC;
    color: var(--p-dark);
}
.sana-nav__lang-option.is-active {
    background: #E8EEF8;
    color: var(--p-dark);
}
.sana-nav__lang-option .fa-check {
    font-size: 0.72rem;
    color: var(--p);
}
.sana-nav--hero .sana-nav__lang-btn {
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}
.sana-nav--hero .sana-nav__lang-btn:hover,
.sana-nav--hero .sana-nav__lang-dd.is-open .sana-nav__lang-btn {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.55);
}
.sana-nav.is-solid .sana-nav__lang-btn,
.sana-nav.is-menu-open .sana-nav__lang-btn {
    border-color: rgba(11, 61, 145, 0.25);
    background: #fff;
    color: var(--p);
}
.sana-nav__login {
    padding: 9px 16px;
    min-height: 40px;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--p);
    border: 1.5px solid rgba(11,61,145,0.25);
    text-decoration: none !important;
    background: #fff;
    white-space: nowrap;
}
.sana-nav__signup {
    padding: 10px 18px;
    min-height: 40px;
    box-sizing: border-box;
    border-radius: 999px;
    border: 0;
    font-family: inherit;
    font-weight: 800;
    font-size: 0.82rem;
    line-height: 1.2;
    background: linear-gradient(180deg, #FFD24D 0%, var(--gold) 55%, #E5AB00 100%);
    color: var(--p-dark) !important;
    text-decoration: none !important;
    box-shadow:
        0 8px 24px rgba(245,184,0,0.42),
        0 0 0 1px rgba(255,255,255,0.35) inset;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.sana-nav__signup:hover {
    transform: translateY(-2px);
    filter: brightness(1.03);
    box-shadow:
        0 12px 28px rgba(245,184,0,0.5),
        0 0 0 1px rgba(255,255,255,0.4) inset;
}
button.sana-nav__signup { appearance: none; -webkit-appearance: none; }
.sana-nav__signup--block { display: block; text-align: center; margin-top: 8px; }
.sana-nav__signup--wa { background: #25D366 !important; color: #fff !important; box-shadow: 0 6px 20px rgba(37,211,102,0.35); }
.sana-nav__burger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid #E8EEF8;
    background: #fff;
    cursor: pointer;
    flex-shrink: 0;
    z-index: 2;
}
.sana-nav__mobile {
    display: none !important;
    flex-direction: column;
    gap: 4px;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    background: #fff;
    border-top: 0 solid #E8EEF8;
    box-shadow: none;
    position: absolute;
    top: calc(100% - 1px);
    left: clamp(16px, 4vw, 32px);
    right: clamp(16px, 4vw, 32px);
    border-radius: 0 0 18px 18px;
    transition: max-height 0.25s ease, opacity 0.2s, padding 0.25s;
    z-index: 5;
}
.sana-nav__mobile.is-open {
    display: flex !important;
    max-height: 480px;
    opacity: 1;
    pointer-events: auto;
    padding: 12px 16px 16px;
    border-top-width: 1px;
    box-shadow: 0 12px 32px rgba(11,61,145,0.12);
}
.sana-nav__mobile a {
    padding: 12px 14px;
    font-weight: 700;
    color: var(--text);
    text-decoration: none !important;
    border-radius: 12px;
}
.sana-nav__mobile a:hover { background: #EEF3FB; }
.sana-nav__mobile a.is-active { color: var(--p); background: #EEF3FB; }
.sana-nav__backdrop {
    display: none;
    position: fixed;
    inset: 0;
    top: 0;
    background: rgba(30, 27, 75, 0.45);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}
.sana-nav__backdrop.is-visible {
    display: block;
    opacity: 1;
    pointer-events: auto;
}
body.sana-menu-open { overflow: hidden; }
@media (min-width: 992px) {
    .sana-nav__inner {
        display: grid;
        grid-template-columns: minmax(max-content, 1fr) auto minmax(max-content, 1fr);
        align-items: center;
        gap: 12px 20px;
    }
    .sana-nav__brand {
        justify-self: start;
        min-width: max-content;
    }
    .sana-nav__links {
        display: flex !important;
        position: static;
        left: auto;
        transform: none;
        justify-self: center;
        max-width: 100%;
        flex-shrink: 1;
    }
    .sana-nav__end {
        justify-self: stretch;
        margin-inline-start: 0;
        min-width: max-content;
        width: 100%;
        display: flex;
        justify-content: flex-end;
    }
    .sana-nav__actions { display: flex !important; }
    .sana-nav__burger { display: none !important; }
    .sana-nav__mobile,
    .sana-nav__mobile.is-open { display: none !important; max-height: 0; opacity: 0; pointer-events: none; }
    .sana-nav__backdrop,
    .sana-nav__backdrop.is-visible { display: none !important; opacity: 0; pointer-events: none; }
}
@media (min-width: 992px) and (max-width: 1280px) {
    .sana-nav__inner { gap: 10px 14px; }
    .sana-nav__links { gap: 4px; }
    .sana-nav__links a { padding: 8px 9px; font-size: 0.79rem; }
    .sana-nav__path { padding: 7px 8px !important; font-size: 0.75rem; }
    .sana-nav__lang-btn { padding: 0 10px; font-size: 0.76rem; }
    .sana-nav__login { padding: 9px 11px; font-size: 0.76rem; }
    .sana-nav__signup { padding: 10px 12px; font-size: 0.76rem; }
    html[dir="rtl"] .sana-nav__lang-btn-label { max-width: 3.2rem; overflow: hidden; text-overflow: ellipsis; }
}
html[dir="rtl"] .sana-nav__links a { letter-spacing: 0; }

/* BUTTONS */
.sana-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 15px 28px; border-radius: 999px; font-family: var(--font); font-weight: 800; font-size: 0.95rem; text-decoration: none !important; border: none; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; }
.sana-btn--yellow {
    background: linear-gradient(180deg, #FFD24D 0%, var(--gold) 55%, #E5AB00 100%);
    color: var(--p-dark);
    border: 0;
    font-family: inherit;
    cursor: pointer;
    box-shadow:
        0 12px 32px rgba(245,184,0,0.5),
        0 0 0 1px rgba(255,255,255,0.35) inset;
}
.sana-btn--yellow:hover { transform: translateY(-2px); filter: brightness(1.03); }
button.sana-btn--yellow { appearance: none; -webkit-appearance: none; }
.sana-btn--purple { background: var(--p); color: #fff; box-shadow: 0 10px 32px rgba(11,61,145,0.35); }
.sana-btn--purple:hover { transform: translateY(-2px); background: var(--p-dark); }
.sana-btn--white-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.5); }
.sana-btn--white-outline:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }
.sana-btn--wa { background: #25D366; color: #fff !important; box-shadow: 0 10px 32px rgba(37,211,102,0.4); }
.sana-btn--wa:hover { transform: translateY(-2px); background: #20BD5A; }
.sana-btn--lg { padding: 16px 30px; font-size: 1rem; }
.sana-site-cta { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.sana-site-cta--stack { flex-direction: column; width: 100%; }
.sana-site-cta--stack .sana-btn { width: 100%; }
.sana-site-cta--hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
    max-width: 520px;
}
.sana-site-cta--hero .sana-site-cta__primary {
    width: 100%;
    justify-content: center;
    min-height: 56px;
    padding: 16px 28px;
    font-size: 1.02rem;
    font-weight: 800;
    border-radius: 14px;
    box-shadow: 0 12px 36px rgba(245,184,0,0.38);
}
.sana-site-cta--hero .sana-site-cta__row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
}
.sana-site-cta--hero .sana-site-cta__row .sana-btn {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
    min-height: 50px;
    padding: 13px 18px;
    font-size: 0.92rem;
    border-radius: 14px;
    white-space: nowrap;
}
.sana-site-cta--hero .sana-btn--wa { box-shadow: 0 10px 32px rgba(37,211,102,0.45); }
.sana-audience__steps {
    list-style: none;
    margin: 16px 0 0;
    padding: 14px 14px;
    display: grid;
    gap: 10px;
    background: #FAFAFF;
    border: 1px solid #F3F0FF;
    border-radius: 14px;
    flex: 1;
}
.sana-audience__steps li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.55;
}
.sana-audience__steps li i {
    color: #059669;
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 0.75rem;
}
.sana-audience__card--teacher .sana-audience__steps {
    background: #FDFCFF;
    border-color: rgba(11,61,145,0.1);
}

/* HEADINGS */
.sana-head { text-align: center; margin-bottom: 40px; }
.sana-head-row { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 36px; }
.sana-head-row .sana-head { margin-bottom: 0; text-align: start; }
.sana-head__title { font-size: clamp(1.55rem, 3.5vw, 2.25rem); font-weight: 900; margin: 0 0 10px; line-height: 1.3; letter-spacing: -0.01em; }
.sana-head__title .hl { color: var(--p); }
.sana-head__line { display: block; width: 48px; height: 4px; background: var(--gold); border-radius: 999px; margin: 0 auto; }
.sana-head-row .sana-head__line { margin-inline: 0; }
.sana-link-more { font-weight: 800; font-size: 0.88rem; color: var(--p); text-decoration: none !important; display: inline-flex; align-items: center; gap: 6px; }

/* HERO */
.sana-hero-wrap { position: relative; margin: 0 0 40px; padding: 0; }
.sana-hero {
    position: relative;
    min-height: auto;
    padding-top: 100px;
    padding-bottom: clamp(64px, 10vw, 112px);
    background:
        radial-gradient(ellipse 70% 55% at 20% 85%, rgba(107,143,212,0.28) 0%, transparent 60%),
        radial-gradient(circle at 90% 20%, rgba(245,184,0,0.06) 0%, transparent 35%),
        linear-gradient(175deg, var(--p-deep) 0%, var(--p-dark) 42%, var(--p) 100%);
    overflow: hidden;
}
.sana-hero__bg-deco { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.sana-hero__glow { position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none; }
.sana-hero__glow--1 { width: 420px; height: 420px; top: -8%; left: -6%; background: rgba(107,143,212,0.22); }
.sana-hero__glow--2 { width: 300px; height: 300px; bottom: 5%; right: -4%; background: rgba(245,184,0,0.07); }
.sana-hero__glow--3 { width: 240px; height: 240px; top: 35%; left: 38%; background: rgba(255,255,255,0.04); }
.sana-hero__glow--4 { width: 180px; height: 180px; top: 12%; right: 28%; background: rgba(139,92,246,0.15); animation: sanaIllusPulse 8s ease-in-out infinite; }

.sana-hero__dotgrid {
    position: absolute;
    inset: 0;
    opacity: 0.35;
    background-image: radial-gradient(rgba(255,255,255,0.18) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: radial-gradient(ellipse 80% 70% at 30% 50%, #000 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 30% 50%, #000 20%, transparent 75%);
}

.sana-hero__bokeh {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(2px);
    animation: sanaIllusFloat 7s ease-in-out infinite;
}
.sana-hero__bokeh--1 { width: 80px; height: 80px; top: 18%; left: 8%; animation-delay: 0s; }
.sana-hero__bokeh--2 { width: 48px; height: 48px; top: 42%; left: 22%; animation-delay: 1.2s; background: rgba(245,184,0,0.06); border-color: rgba(245,184,0,0.15); }
.sana-hero__bokeh--3 { width: 64px; height: 64px; bottom: 22%; left: 12%; animation-delay: 0.6s; }
.sana-hero__bokeh--4 { width: 36px; height: 36px; top: 28%; right: 32%; animation-delay: 1.8s; }

.sana-hero__geo {
    position: absolute;
    border-radius: 16px;
    border: 1.5px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.04);
    animation: sanaIllusFloat 6s ease-in-out infinite;
}
.sana-hero__geo--1 { width: 44px; height: 44px; top: 24%; left: 16%; transform: rotate(18deg); animation-delay: 0.4s; }
.sana-hero__geo--2 { width: 28px; height: 28px; bottom: 30%; left: 6%; border-radius: 50%; animation-delay: 1s; }
.sana-hero__geo--3 { width: 52px; height: 52px; top: 55%; right: 18%; transform: rotate(-12deg); border-color: rgba(245,184,0,0.18); animation-delay: 1.6s; }

.sana-hero__cross {
    position: absolute;
    width: 14px; height: 14px;
    opacity: 0.4;
    animation: sanaIllusFloat 5s ease-in-out infinite;
}
.sana-hero__cross::before,
.sana-hero__cross::after {
    content: '';
    position: absolute;
    background: rgba(255,255,255,0.5);
    border-radius: 2px;
}
.sana-hero__cross::before { width: 2px; height: 14px; left: 6px; top: 0; }
.sana-hero__cross::after { width: 14px; height: 2px; left: 0; top: 6px; }
.sana-hero__cross--1 { top: 20%; left: 32%; animation-delay: 0.3s; }
.sana-hero__cross--2 { bottom: 35%; right: 22%; animation-delay: 1.1s; opacity: 0.3; }

.sana-hero__wave {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 100px;
    opacity: 0.9;
}
.sana-hero__arc {
    position: absolute;
    animation: sanaSpin 30s linear infinite;
}
.sana-hero__arc--1 { width: 200px; height: 200px; top: 8%; left: 5%; opacity: 0.7; }
.sana-hero__arc--2 { width: 120px; height: 120px; bottom: 18%; right: 12%; animation-direction: reverse; animation-duration: 22s; }
.sana-hero__container { position: relative; z-index: 2; }
.sana-hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(40px, 8vw, 72px);
    align-items: center;
}
html[dir="rtl"] .sana-hero__grid { direction: rtl; }
html[dir="ltr"] .sana-hero__grid { direction: ltr; }
@media (min-width: 992px) {
    .sana-hero__grid {
        grid-template-columns: 0.92fr 1.08fr;
        gap: clamp(40px, 5vw, 72px);
        min-height: 560px;
    }
}

/* Hero content */
.sana-hero__content {
    color: #fff;
    z-index: 3;
    max-width: 560px;
    display: flex;
    flex-direction: column;
    gap: 0;
}
html[dir="rtl"] .sana-hero__content {
    direction: rtl;
    text-align: right;
    margin-inline-start: auto;
}
html[dir="ltr"] .sana-hero__content {
    direction: ltr;
    text-align: left;
    margin-inline-end: auto;
}
.sana-hero__intro {
    margin: 0 0 16px;
}
.sana-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px;
    padding: 7px 14px 7px 12px;
    border-radius: 999px;
    background: rgba(7, 24, 58, 0.55);
    border: 1px solid rgba(255,255,255,0.14);
    backdrop-filter: blur(10px);
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255,255,255,0.95);
    letter-spacing: 0.01em;
}
.sana-hero__eyebrow-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 10px rgba(245,184,0,0.7);
    flex-shrink: 0;
}
.sana-hero__brand {
    margin: 0 0 10px;
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 3.6vw, 2.55rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1.05;
}
.sana-hero__title {
    font-family: var(--font-display);
    font-size: clamp(1.55rem, 3.2vw, 2.2rem);
    font-weight: 900;
    line-height: 1.32;
    margin: 0;
    letter-spacing: -0.02em;
    max-width: 16em;
    color: #fff;
}
.sana-hero__title .hl {
    display: block;
    color: var(--gold);
}
.sana-hero__title .hl-sub {
    display: block;
    margin-top: 0.06em;
    color: #fff;
}
.sana-hero__desc {
    font-family: var(--font);
    font-size: clamp(0.94rem, 1.5vw, 1.05rem);
    font-weight: 500;
    line-height: 1.85;
    color: rgba(255,255,255,0.9);
    margin: 0 0 22px;
    max-width: 44ch;
}
.sana-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0 0 22px;
}
.sana-btn--lg { padding: 16px 30px; font-size: 1rem; }

/* Unified feature meta — one grid like the mockup */
.sana-hero__meta {
    list-style: none;
    margin: 0;
    padding: 16px 0 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px 20px;
    border-top: 1px solid rgba(255,255,255,0.12);
}
@media (min-width: 520px) {
    .sana-hero__meta {
        grid-template-columns: 1fr 1fr;
    }
    .sana-hero__meta li:nth-child(3) {
        grid-column: 1 / -1;
    }
}
.sana-hero__meta li {
    display: inline-flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 0.84rem;
    font-weight: 700;
    color: rgba(255,255,255,0.86);
    line-height: 1.4;
}
.sana-hero__meta li i {
    color: var(--gold);
    font-size: 0.9rem;
    width: 1.15em;
    text-align: center;
    margin-top: 0.18em;
    flex-shrink: 0;
}

/* legacy aliases (if used elsewhere) */
.sana-hero__trust,
.sana-hero__badges { display: none; }

/* â”€â”€ Illustration â€” 3D character + deco â”€â”€ */
.sana-hero__visual {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    z-index: 2;
    min-height: 360px;
    padding: 0;
    overflow: visible;
}
@media (min-width: 992px) {
    .sana-hero__visual {
        justify-content: flex-start;
        align-items: flex-end;
        min-height: 520px;
    }
}

.sana-hero-illus {
    position: relative;
    width: 100%;
    max-width: 720px;
    min-height: clamp(380px, 62vw, 580px);
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
@media (min-width: 992px) {
    .sana-hero-illus {
        max-width: 780px;
        min-height: 560px;
        margin-inline-end: auto;
        margin-inline-start: -6%;
    }
}

.sana-hero-illus__deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: visible;
}

.sana-hero-illus__glow {
    position: absolute;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
    height: 45%;
    background: radial-gradient(ellipse, rgba(107,143,212,0.45) 0%, rgba(11,61,145,0.12) 55%, transparent 75%);
    filter: blur(8px);
    z-index: 0;
}

.sana-hero-illus__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
}
.sana-hero-illus__blob--1 {
    width: 160px; height: 160px;
    top: 8%; left: 10%;
    background: rgba(139,92,246,0.2);
    animation: sanaIllusPulse 7s ease-in-out infinite;
}
.sana-hero-illus__blob--2 {
    width: 100px; height: 100px;
    top: 18%; right: 6%;
    background: rgba(245,184,0,0.1);
    animation: sanaIllusPulse 6s ease-in-out infinite 1s;
}

.sana-hero-illus__ring {
    position: absolute;
    border-radius: 50%;
    border: 2px dashed rgba(255,255,255,0.14);
}
.sana-hero-illus__ring--1 {
    width: 90px; height: 90px;
    top: 12%; left: 38%;
    animation: sanaSpin 22s linear infinite;
}
.sana-hero-illus__ring--2 {
    width: 56px; height: 56px;
    bottom: 28%; right: 8%;
    border-color: rgba(245,184,0,0.22);
    animation: sanaSpin 16s linear infinite reverse;
}

.sana-hero-illus__cloud {
    position: absolute;
    border-radius: 999px;
    background: rgba(196, 181, 253, 0.22);
    box-shadow:
        -22px 0 0 -5px rgba(196, 181, 253, 0.16),
        22px 0 0 -5px rgba(196, 181, 253, 0.16),
        -44px 6px 0 -10px rgba(167, 139, 250, 0.12);
}
.sana-hero-illus__cloud--1 { width: 120px; height: 42px; bottom: 6%; left: 4%; }
.sana-hero-illus__cloud--2 { width: 90px; height: 34px; bottom: 12%; left: 22%; opacity: 0.75; }
.sana-hero-illus__cloud--3 { width: 140px; height: 48px; bottom: 4%; right: 2%; opacity: 0.85; }
.sana-hero-illus__cloud--4 { width: 70px; height: 28px; bottom: 16%; right: 18%; opacity: 0.6; }

.sana-hero-illus__spark,
.sana-hero-illus__star {
    position: absolute;
    line-height: 1;
    animation: sanaIllusFloat 5s ease-in-out infinite;
    text-shadow: 0 0 12px rgba(255,255,255,0.35);
}
.sana-hero-illus__spark { color: rgba(255,255,255,0.55); font-size: 0.9rem; }
.sana-hero-illus__spark--1 { top: 10%; left: 14%; animation-delay: 0.2s; }
.sana-hero-illus__spark--2 { top: 22%; right: 12%; animation-delay: 0.9s; font-size: 1.1rem; }
.sana-hero-illus__spark--3 { bottom: 32%; left: 8%; animation-delay: 1.4s; font-size: 0.75rem; }
.sana-hero-illus__star { font-size: 1.15rem; }
.sana-hero-illus__star--1 { top: 6%; right: 22%; animation-delay: 0.5s; opacity: 0.8; }
.sana-hero-illus__star--2 { top: 38%; left: 6%; animation-delay: 1.2s; font-size: 0.9rem; opacity: 0.65; }

.sana-hero-illus__shoot {
    position: absolute;
    width: 56px; height: 56px;
    top: 14%; left: 6%;
    opacity: 0.55;
    animation: sanaIllusFloat 6s ease-in-out infinite 0.6s;
}

.sana-hero-illus__float {
    position: absolute;
    font-size: 2rem;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.2));
    animation: sanaIllusFloat 5.5s ease-in-out infinite;
}
.sana-hero-illus__float--bulb { top: 8%; left: 28%; font-size: 1.75rem; animation-delay: 0.3s; }
.sana-hero-illus__float--planet { top: 12%; right: 4%; font-size: 2.25rem; animation-delay: 1s; }

.sana-hero-illus__dot {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
}
.sana-hero-illus__dot--1 { width: 7px; height: 7px; top: 30%; left: 48%; }
.sana-hero-illus__dot--2 { width: 5px; height: 5px; top: 52%; right: 14%; background: rgba(245,184,0,0.75); }
.sana-hero-illus__dot--3 { width: 4px; height: 4px; bottom: 38%; left: 32%; opacity: 0.6; }

.sana-hero-illus__bokeh {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    animation: sanaIllusFloat 6.5s ease-in-out infinite;
}
.sana-hero-illus__bokeh--1 { width: 56px; height: 56px; top: 18%; right: 10%; animation-delay: 0.2s; }
.sana-hero-illus__bokeh--2 { width: 32px; height: 32px; bottom: 42%; left: 18%; background: rgba(245,184,0,0.08); border-color: rgba(245,184,0,0.2); animation-delay: 0.9s; }
.sana-hero-illus__bokeh--3 { width: 44px; height: 44px; top: 48%; right: 22%; animation-delay: 1.5s; opacity: 0.75; }

.sana-hero-illus__shape {
    position: absolute;
    border: 1.5px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.05);
    animation: sanaIllusFloat 5.8s ease-in-out infinite;
}
.sana-hero-illus__shape--sq {
    width: 36px; height: 36px; border-radius: 10px;
    top: 28%; left: 4%; transform: rotate(22deg); animation-delay: 0.5s;
}
.sana-hero-illus__shape--ci {
    width: 24px; height: 24px; border-radius: 50%;
    bottom: 48%; right: 6%; border-color: rgba(245,184,0,0.25); animation-delay: 1.2s;
}
.sana-hero-illus__cross {
    position: absolute;
    width: 12px; height: 12px;
    top: 14%; right: 32%;
    opacity: 0.45;
    animation: sanaIllusFloat 4.5s ease-in-out infinite 0.7s;
}
.sana-hero-illus__cross::before,
.sana-hero-illus__cross::after {
    content: '';
    position: absolute;
    background: rgba(255,255,255,0.55);
    border-radius: 1px;
}
.sana-hero-illus__cross::before { width: 2px; height: 12px; left: 5px; top: 0; }
.sana-hero-illus__cross::after { width: 12px; height: 2px; left: 0; top: 5px; }

.sana-hero-illus__icon {
    position: absolute;
    width: 40px; height: 40px;
    animation: sanaIllusFloat 6s ease-in-out infinite;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
}
.sana-hero-illus__icon--book { top: 42%; left: 2%; animation-delay: 0.4s; opacity: 0.85; }
.sana-hero-illus__icon--cap { top: 5%; right: 8%; width: 44px; height: 44px; animation-delay: 1s; }
.sana-hero-illus__icon--pencil { bottom: 36%; right: 4%; width: 34px; height: 34px; animation-delay: 1.6s; opacity: 0.8; }

.sana-hero-illus__orbit {
    position: absolute;
    width: 88%; height: auto;
    top: 50%; left: 50%;
    transform: translate(-50%, -52%);
    opacity: 0.55;
    animation: sanaSpin 28s linear infinite;
}

.sana-hero-illus__char-wrap {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    line-height: 0;
}
.sana-hero-illus__char-wrap::before {
    content: '';
    position: absolute;
    bottom: 2%;
    left: 50%;
    transform: translateX(-50%);
    width: 62%;
    height: 28px;
    background: radial-gradient(ellipse, rgba(0,0,0,0.35) 0%, transparent 72%);
    filter: blur(10px);
    z-index: 0;
}

.sana-hero-illus__char {
    position: relative;
    z-index: 1;
    width: min(132%, 760px);
    max-width: none;
    height: auto;
    max-height: clamp(400px, 62vw, 620px);
    object-fit: contain;
    object-position: bottom center;
    display: block;
    mix-blend-mode: normal;
    filter:
        drop-shadow(0 28px 48px rgba(0, 0, 0, 0.38))
        drop-shadow(0 10px 28px rgba(11, 61, 145, 0.28));
    animation: sanaCharEnter 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
    transform-origin: bottom center;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease;
}
.sana-hero-illus:hover .sana-hero-illus__char {
    transform: translateY(-6px) scale(1.02);
    filter:
        drop-shadow(0 40px 72px rgba(0, 0, 0, 0.36))
        drop-shadow(0 12px 32px rgba(251, 191, 36, 0.15));
}
@media (min-width: 992px) {
    .sana-hero-illus__char {
        width: 145%;
        max-height: 680px;
        margin-bottom: -28px;
        object-position: bottom left;
    }
}

@keyframes sanaCharEnter {
    from { opacity: 0; transform: translateY(24px) scale(0.96); }
    to { opacity: 1; transform: none; }
}
@keyframes sanaSpin { to { transform: rotate(360deg); } }
@keyframes sanaIllusFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
@keyframes sanaIllusPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.06); opacity: 0.85; }
}

@media (prefers-reduced-motion: reduce) {
    .sana-hero-illus__spark, .sana-hero-illus__star, .sana-hero-illus__float,
    .sana-hero-illus__shoot, .sana-hero-illus__blob, .sana-hero-illus__ring,
    .sana-hero-illus__bokeh, .sana-hero-illus__shape, .sana-hero-illus__cross,
    .sana-hero-illus__icon, .sana-hero-illus__orbit,
    .sana-hero__bokeh, .sana-hero__geo, .sana-hero__cross, .sana-hero__arc,
    .sana-hero__glow--4, .sana-hero-illus__char { animation: none; }
}

/* STATS BAR */
.sana-hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 8px;
    background: #fff;
    border-radius: 22px;
    padding: 14px 12px;
    margin-top: -32px;
    position: relative;
    z-index: 10;
    box-shadow: 0 20px 56px -16px rgba(11,61,145,0.22);
    border: 1px solid rgba(237,233,254,0.9);
}
@media (min-width: 992px) {
    .sana-hero-stats {
        grid-template-columns: repeat(4, 1fr);
        padding: 28px 36px;
        margin-top: -56px;
        gap: 20px;
        border-radius: 40px;
    }
}
.sana-hero-stats__item {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    padding: 8px 4px;
}
@media (max-width: 991px) {
    .sana-hero-stats__item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
        padding: 10px 6px;
        background: #FAFAFF;
        border-radius: 14px;
        border: 1px solid #F3F0FF;
    }
    .sana-hero-stats__icon {
        align-self: center;
    }
}
.sana-hero-stats__item > div {
    min-width: 0;
}
@media (max-width: 991px) {
    .sana-hero-stats__item > div {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2px;
    }
}
.sana-hero-stats__icon {
    flex: 0 0 auto;
    align-self: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    max-width: 44px;
    max-height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 1rem;
    line-height: 1;
    background: #E8EEF8 !important;
    color: var(--p) !important;
    overflow: hidden;
}
.sana-hero-stats__icon i {
    display: block;
    line-height: 1;
    font-size: 1.1rem;
    text-align: center;
}
@media (min-width: 992px) {
    .sana-hero-stats__icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        max-width: 48px;
        max-height: 48px;
        border-radius: 14px;
        font-size: 1.1rem;
    }
    .sana-hero-stats__icon i { font-size: 1.15rem; }
    .sana-hero-stats__item { gap: 14px; padding: 0; }
}
.sana-hero-stats__item strong {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 4.2vw, 1.35rem);
    font-weight: 900;
    color: var(--p-dark);
    line-height: 1.1;
}
@media (min-width: 992px) {
    .sana-hero-stats__item strong { font-size: 1.35rem; }
}
.sana-hero-stats__item > div > span {
    display: block;
    font-size: clamp(0.62rem, 2.8vw, 0.75rem);
    font-weight: 700;
    color: var(--muted);
    line-height: 1.35;
}
@media (min-width: 992px) {
    .sana-hero-stats__item > div > span { font-size: 0.75rem; }
}
.sana-hero-stats--trust .sana-hero-stats__item strong {
    font-size: clamp(0.88rem, 3.5vw, 1rem);
    color: var(--text);
    letter-spacing: 0;
}
@media (min-width: 992px) {
    .sana-hero-stats--trust .sana-hero-stats__item strong { font-size: 1.02rem; }
}
.sana-hero-stats--trust .sana-hero-stats__item > div > span {
    margin-top: 4px;
    line-height: 1.55;
    max-width: 24ch;
}
@media (min-width: 992px) {
    .sana-hero-stats--trust {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        padding: 24px 32px;
        gap: 16px 24px;
    }
    .sana-hero-stats--trust .sana-hero-stats__item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }
    .sana-hero-stats--trust .sana-hero-stats__item > div {
        text-align: center;
    }
    .sana-hero-stats--trust .sana-hero-stats__item > div > span {
        max-width: none;
        margin-top: 4px;
    }
    .sana-hero-stats--trust .sana-hero-stats__icon {
        align-self: center;
        margin-top: 0;
        width: 52px;
        height: 52px;
        min-width: 52px;
        max-width: 52px;
        max-height: 52px;
    }
    .sana-hero-stats--trust .sana-hero-stats__icon i {
        font-size: 1.25rem;
    }
}
@media (min-width: 576px) and (max-width: 991px) {
    .sana-hero-stats--trust {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px 8px;
        padding: 18px 14px;
    }
    .sana-hero-stats--trust .sana-hero-stats__item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        background: transparent;
        border: none;
        padding: 6px 2px;
    }
    .sana-hero-stats--trust .sana-hero-stats__item > div {
        align-items: center;
        text-align: center;
    }
    .sana-hero-stats--trust .sana-hero-stats__item strong {
        font-size: 0.8rem;
    }
    .sana-hero-stats--trust .sana-hero-stats__item > div > span {
        font-size: 0.65rem;
        line-height: 1.45;
    }
    .sana-hero-stats--trust .sana-hero-stats__icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        max-width: 40px;
        max-height: 40px;
    }
}
@media (max-width: 575px) {
    .sana-hero-stats--trust {
        grid-template-columns: 1fr;
        padding: 16px 14px;
    }
    .sana-hero-stats--trust .sana-hero-stats__item {
        flex-direction: row;
        align-items: center;
        text-align: start;
        padding: 12px 14px;
    }
    .sana-hero-stats--trust .sana-hero-stats__item > div {
        align-items: flex-start;
        text-align: start;
    }
}

/* FEATURES 3x2 */
.sana-features-m { display: grid; gap: 20px; }
@media (min-width: 640px) { .sana-features-m { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .sana-features-m { grid-template-columns: repeat(3, 1fr); } }
.sana-feature-m { background: #fff; border-radius: 20px; padding: 28px 22px; border: 1px solid #E8EEF8; box-shadow: 0 8px 32px -12px rgba(11,61,145,0.1); transition: transform 0.25s, box-shadow 0.25s; }
.sana-feature-m:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.sana-feature-m__icon { width: 64px; height: 64px; border-radius: 18px; display: flex; align-items: center; justify-content: center; font-size: 1.75rem; margin-bottom: 16px; }
.sana-feature-m h3 { font-size: 1.05rem; font-weight: 900; margin: 0 0 8px; }
.sana-feature-m p { font-size: 0.85rem; color: var(--muted); line-height: 1.75; margin: 0; }

/* CATEGORIES ROW */
.sana-cats-row { display: flex; gap: 14px; overflow-x: auto; padding-bottom: 8px; scrollbar-width: none; }
.sana-cats-row::-webkit-scrollbar { display: none; }
.sana-cat-m { flex: 0 0 120px; min-height: 130px; border-radius: 18px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; text-decoration: none !important; color: var(--text); transition: transform 0.2s; box-shadow: 0 6px 20px -8px rgba(0,0,0,0.12); }
.sana-cat-m:hover { transform: translateY(-4px) scale(1.03); }
.sana-cat-m__emoji { font-size: 2.25rem; line-height: 1; color: var(--cat-accent, var(--p, #0B3D91)); }
.sana-cat-m__emoji i { font-size: 1.85rem; }
.sana-cat-m__name { font-size: 0.78rem; font-weight: 800; text-align: center; line-height: 1.3; }

/* COURSES 5-col */
/* COURSES GRID on homepage â€” see premium course card section below */

/* PREMIUM COURSE CARD */
.sana-course-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border-radius: 26px;
    border: 1px solid rgba(237, 233, 254, 0.95);
    box-shadow:
        0 4px 6px -2px rgba(11, 61, 145, 0.04),
        0 16px 40px -12px rgba(11, 61, 145, 0.14);
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                border-color 0.35s ease;
}
.sana-course-card:hover {
    transform: translateY(-7px);
    border-color: rgba(167, 139, 250, 0.45);
    box-shadow:
        0 8px 16px -4px rgba(11, 61, 145, 0.08),
        0 28px 56px -16px rgba(11, 61, 145, 0.26);
}
.sana-course-card--featured {
    border-color: rgba(251, 191, 36, 0.35);
    box-shadow:
        0 4px 6px -2px rgba(11, 61, 145, 0.06),
        0 20px 48px -12px rgba(11, 61, 145, 0.2);
}
.sana-course-card--featured:hover {
    border-color: rgba(251, 191, 36, 0.55);
    box-shadow:
        0 12px 24px -8px rgba(251, 191, 36, 0.15),
        0 32px 64px -16px rgba(11, 61, 145, 0.28);
}

/* Media / cover */
.sana-course-card__media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(145deg, #E8EEF8, #C4B5FD);
}
.sana-course-card__img-link {
    display: block;
    width: 100%;
    height: 100%;
}
.sana-course-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.sana-course-card:hover .sana-course-card__media img {
    transform: scale(1.07);
}
.sana-course-card__shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 40%,
        rgba(30, 27, 75, 0.35) 100%
    );
    pointer-events: none;
    opacity: 0.7;
    transition: opacity 0.35s;
}
.sana-course-card:hover .sana-course-card__shine { opacity: 0.85; }

/* Glass badges */
.sana-course-card__badges {
    position: absolute;
    top: 14px;
    right: 14px;
    left: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    z-index: 2;
    pointer-events: none;
}
.sana-course-card__badge {
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 800;
    line-height: 1.2;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.sana-course-card__badge--subject {
    background: rgba(255, 255, 255, 0.88);
    color: var(--p-dark);
}
.sana-course-card__badge--level {
    background: rgba(11, 61, 145, 0.75);
    color: #fff;
    margin-inline-start: auto;
}
.sana-course-card__badge--featured {
    background: rgba(251, 191, 36, 0.92);
    color: var(--p-dark);
}

.sana-course-card__fav {
    position: absolute;
    bottom: 14px;
    left: 14px;
    z-index: 3;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(8px);
    color: var(--muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: transform 0.2s, color 0.2s, background 0.2s;
}
.sana-course-card__fav:hover { transform: scale(1.08); background: #fff; }
.sana-course-card__fav.is-saved { color: #EF4444; background: #fff; }

/* Body */
.sana-course-card__body {
    padding: 20px 20px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.sana-course-card__title {
    font-size: 1.02rem;
    font-weight: 900;
    line-height: 1.45;
    margin: 0 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.sana-course-card__title a {
    color: var(--text);
    text-decoration: none !important;
    transition: color 0.2s;
}
.sana-course-card:hover .sana-course-card__title a { color: var(--p); }
.sana-course-card__desc {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.7;
    margin: 0 0 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Instructor */
.sana-course-card__instructor {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding: 10px 12px;
    border-radius: 16px;
    background: linear-gradient(135deg, #FAFAFF 0%, #EEF3FB 100%);
    border: 1px solid #E8EEF8;
}
.sana-course-card__avatar {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 4px 10px rgba(11, 61, 145, 0.12);
}
.sana-course-card__avatar--initial {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--p-dark), var(--p-light));
    color: #fff;
    font-size: 0.85rem;
    font-weight: 900;
}
.sana-course-card__instructor-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--muted);
    margin-bottom: 2px;
}
.sana-course-card__instructor-name {
    display: block;
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--text);
}

/* Stats row â€” glass strip */
.sana-course-card__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(245, 243, 255, 0.65);
    border: 1px solid rgba(237, 233, 254, 0.9);
    backdrop-filter: blur(6px);
}
.sana-course-card__stat {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--muted);
    white-space: nowrap;
}
.sana-course-card__stat i { font-size: 0.68rem; opacity: 0.85; }
.sana-course-card__stat--rating { color: #B45309; }
.sana-course-card__stat--rating i { color: #D99E00; }
.sana-course-card__stat strong { font-weight: 900; }

/* Footer */
.sana-course-card__footer {
    padding: 0 20px 20px;
    margin-top: auto;
}
.sana-course-card__progress {
    margin-bottom: 14px;
    padding: 12px 14px;
    border-radius: 14px;
    background: linear-gradient(135deg, #EEF3FB, #E8EEF8);
    border: 1px solid #C5D4F0;
}
.sana-course-card__progress-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--p);
    margin-bottom: 8px;
}
.sana-course-card__progress-track {
    height: 7px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    overflow: hidden;
}
.sana-course-card__progress-track span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--p-dark), var(--p-light));
    transition: width 0.6s ease;
}
.sana-course-card__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid #F1F5F9;
}
.sana-course-card__price {
    font-size: 1.05rem;
    font-weight: 900;
    color: var(--p-dark);
    line-height: 1.2;
}
.sana-course-card__price--free {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    color: #059669;
    padding: 6px 12px;
    border-radius: 999px;
    background: #D1FAE5;
}
.sana-course-card__price--contact {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: #059669;
}
.sana-course-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--p-dark), var(--p));
    color: #fff !important;
    font-size: 0.82rem;
    font-weight: 800;
    text-decoration: none !important;
    box-shadow: 0 8px 20px -6px rgba(11, 61, 145, 0.45);
    transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
    white-space: nowrap;
    min-height: 44px;
}
.sana-course-card:hover .sana-course-card__cta {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -6px rgba(11, 61, 145, 0.55);
    background: linear-gradient(135deg, var(--p-deep), var(--p-dark));
}
.sana-course-card__cta i { font-size: 0.72rem; transition: transform 0.25s; }
.sana-course-card:hover .sana-course-card__cta i { transform: translateX(-3px); }

/* Course grids */
.sana-courses-m { display: grid; gap: 22px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .sana-courses-m { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .sana-courses-m { grid-template-columns: repeat(3, 1fr); } }

@media (max-width: 480px) {
    .sana-course-card__body { padding: 16px 16px 12px; }
    .sana-course-card__footer { padding: 0 16px 16px; }
    .sana-course-card__title { font-size: 0.95rem; }
    .sana-course-card__actions { flex-wrap: wrap; }
    .sana-course-card__cta { flex: 1; justify-content: center; min-width: 120px; }
}
@media (prefers-reduced-motion: reduce) {
    .sana-course-card,
    .sana-course-card__media img,
    .sana-course-card__cta { transition: none; }
    .sana-course-card:hover { transform: none; }
    .sana-course-card:hover .sana-course-card__media img { transform: none; }
}

/* TEACHERS 5-col */
.sana-teachers-m { display: grid; gap: 18px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) { .sana-teachers-m { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .sana-teachers-m { grid-template-columns: repeat(5, 1fr); } }
.sana-teacher-m { background: #fff; border-radius: 20px; padding: 24px 16px; text-align: center; border: 1px solid #E8EEF8; transition: transform 0.25s; }
.sana-teacher-m:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.sana-teacher-m__ring { width: 88px; height: 88px; margin: 0 auto 12px; border-radius: 50%; padding: 4px; background: linear-gradient(135deg, var(--p-light), var(--gold)); }
.sana-teacher-m__ring img, .sana-teacher-m__ring.av { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; border: 3px solid #fff; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 900; color: #fff; background: linear-gradient(135deg, var(--p), var(--p-light)); }
.sana-teacher-m h3 { font-size: 0.92rem; font-weight: 900; margin: 0 0 4px; }
.sana-teacher-m .role { font-size: 0.72rem; color: var(--p); font-weight: 700; margin: 0 0 8px; }
.sana-teacher-m__tags { font-size: 0.68rem; color: var(--muted); font-weight: 700; margin: 0 0 8px; line-height: 1.5; }
.sana-teacher-m__book {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.68rem; font-weight: 800; color: var(--p-dark);
    background: #EEF3FB; padding: 6px 10px; border-radius: 999px;
}
.sana-teacher-m .stars { color: var(--gold); font-size: 0.65rem; margin-bottom: 10px; }
.sana-teacher-m .social { display: flex; justify-content: center; gap: 6px; }
.sana-teacher-m .social a { width: 28px; height: 28px; border-radius: 8px; background: #EEF3FB; color: var(--p); display: flex; align-items: center; justify-content: center; font-size: 0.72rem; text-decoration: none; }

/* JOURNEY HORIZONTAL */
.sana-journey-m { display: flex; justify-content: space-between; gap: 8px; position: relative; padding: 20px 0 10px; overflow-x: auto; scrollbar-width: none; }
.sana-journey-m::-webkit-scrollbar { display: none; }
.sana-journey-m__line { position: absolute; top: 44px; left: 5%; right: 5%; height: 2px; border-top: 2px dashed rgba(11,61,145,0.25); z-index: 0; }
.sana-journey-m__step { flex: 1; min-width: 90px; text-align: center; position: relative; z-index: 1; }
.sana-journey-m__icon { width: 52px; height: 52px; margin: 0 auto 10px; border-radius: 50%; background: linear-gradient(135deg, var(--p-dark), var(--p-light)); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.05rem; box-shadow: 0 8px 20px -6px rgba(11,61,145,0.45); }
.sana-journey-m__step span { font-size: 0.72rem; font-weight: 800; color: var(--text); line-height: 1.35; display: block; }

/* TESTIMONIALS */
.sana-test-m { display: grid; gap: 20px; }
@media (min-width: 768px) { .sana-test-m { grid-template-columns: repeat(3, 1fr); } }
.sana-test-m__card { background: #fff; border-radius: 20px; padding: 26px 22px; border: 1px solid #E8EEF8; box-shadow: 0 8px 28px -12px rgba(11,61,145,0.1); }
.sana-test-m__card .quote { color: var(--p-light); opacity: 0.5; font-size: 1.5rem; margin-bottom: 12px; }
.sana-test-m__card p { font-size: 0.88rem; color: var(--muted); line-height: 1.8; margin: 0 0 14px; }
.sana-test-m__card .stars { color: var(--gold); font-size: 0.7rem; margin-bottom: 14px; }
.sana-test-m__card .author { display: flex; align-items: center; gap: 10px; padding-top: 14px; border-top: 1px solid #F1F5F9; }
.sana-test-m__card .author img, .sana-test-m__card .author .av { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; background: var(--p); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; }
.sana-test-m__card .author strong { display: block; font-size: 0.85rem; }
.sana-test-m__card .author small { font-size: 0.72rem; color: var(--muted); }

/* Promotional videos â€” homepage horizontal strip */
.sana-promo-videos { padding-bottom: clamp(56px, 8vw, 88px); }
.sana-promo-videos__shell {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}
.sana-promo-videos__viewport {
    flex: 1;
    min-width: 0;
    position: relative;
    mask-image: linear-gradient(to left, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
    -webkit-mask-image: linear-gradient(to left, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
}
.sana-promo-videos__track {
    display: flex;
    gap: clamp(14px, 2.5vw, 22px);
    overflow-x: auto;
    padding: 8px 4px 18px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    direction: ltr;
}
.sana-promo-videos__track::-webkit-scrollbar { display: none; }
.sana-promo-videos__track--single { justify-content: center; }
.sana-promo-videos__track--single .sana-promo-videos__card { flex-basis: min(100%, 720px); }
.sana-promo-videos__card {
    flex: 0 0 min(88vw, 420px);
    scroll-snap-align: start;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #E8EEF8;
    box-shadow: 0 16px 40px -20px rgba(11, 61, 145, 0.28);
    overflow: hidden;
}
.sana-promo-videos__frame {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #0f172a;
}
.sana-promo-videos__frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.sana-promo-videos__meta {
    padding: 16px 18px 18px;
    direction: rtl;
    text-align: right;
}
.sana-promo-videos__title {
    margin: 0 0 6px;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.4;
    color: var(--text);
}
.sana-promo-videos__desc {
    margin: 0;
    font-size: 0.84rem;
    line-height: 1.7;
    color: var(--muted);
}
.sana-promo-videos__nav {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border: 1px solid #C5D4F0;
    border-radius: 14px;
    background: #fff;
    color: var(--p-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 24px -12px rgba(11, 61, 145, 0.35);
    transition: transform 0.2s, background 0.2s, border-color 0.2s;
}
.sana-promo-videos__nav:hover {
    background: #EEF3FB;
    border-color: var(--p-light);
    transform: translateY(-1px);
}
.sana-promo-videos__hint {
    margin: 14px 0 0;
    text-align: center;
    font-size: 0.82rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
@media (max-width: 767px) {
    .sana-promo-videos__nav { display: none; }
    .sana-promo-videos__viewport {
        mask-image: none;
        -webkit-mask-image: none;
    }
    .sana-promo-videos__card { flex-basis: min(92vw, 360px); }
}
@media (min-width: 992px) {
    .sana-promo-videos__card { flex-basis: 440px; }
}

/* ACHIEVEMENTS BANNER */
.sana-achieve-box {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(135deg, #051F4D 0%, #0B3D91 55%, #1A56B0 100%);
    box-shadow: 0 28px 64px -20px rgba(11, 61, 145, 0.55);
}
.sana-achieve-box__glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(60px);
}
.sana-achieve-box__glow--1 { width: 280px; height: 280px; top: -80px; right: -60px; background: rgba(251, 191, 36, 0.25); }
.sana-achieve-box__glow--2 { width: 220px; height: 220px; bottom: -60px; left: -40px; background: rgba(167, 139, 250, 0.35); }
.sana-achieve-box__inner {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 36px;
    align-items: center;
    padding: clamp(28px, 5vw, 48px);
}
@media (min-width: 992px) {
    .sana-achieve-box__inner { grid-template-columns: 1fr 1fr; gap: 48px; }
}
.sana-achieve-box__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    max-width: 100%;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.22);
    color: #FFE9A8;
    font-size: 0.78rem;
    font-weight: 800;
    margin-bottom: 16px;
}
.sana-achieve-box__title {
    font-size: clamp(1.5rem, 4vw, 2.1rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.35;
    margin: 0 0 14px;
}
.sana-achieve-box__title .hl { color: var(--gold); }
.sana-achieve-box__desc {
    color: rgba(255,255,255,0.82);
    font-size: 0.92rem;
    line-height: 1.8;
    margin: 0 0 28px;
    max-width: 440px;
}
.sana-achieve-box__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.sana-achieve-box__stat {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.16);
    backdrop-filter: blur(8px);
}
.sana-achieve-box__stat-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}
.sana-achieve-box__stat-icon--gold { background: rgba(245,184,0,0.22); color: #FFE9A8; }
.sana-achieve-box__stat-icon--green { background: rgba(52,211,153,0.2); color: #6EE7B7; }
.sana-achieve-box__stat strong {
    display: block;
    font-size: 1.45rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
}
.sana-achieve-box__stat span {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255,255,255,0.65);
}
.sana-achieve-box__highlights {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
    max-width: 420px;
}
.sana-achieve-box__highlights li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    line-height: 1.65;
}
.sana-achieve-box__highlights li i {
    color: #FFE9A8;
    margin-top: 3px;
    flex-shrink: 0;
}
.sana-achieve-box__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}
.sana-cert-mock {
    position: relative;
    width: min(100%, 320px);
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px 22px;
    text-align: center;
    box-shadow: 0 24px 48px rgba(0,0,0,0.28);
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
}
.sana-achieve-box:hover .sana-cert-mock { transform: rotate(0deg) translateY(-4px); }
.sana-cert-mock__corner {
    position: absolute;
    width: 18px;
    height: 18px;
    border: 2px solid #C4B5FD;
}
.sana-cert-mock__corner--tl { top: 10px; left: 10px; border-right: 0; border-bottom: 0; }
.sana-cert-mock__corner--tr { top: 10px; right: 10px; border-left: 0; border-bottom: 0; }
.sana-cert-mock__corner--bl { bottom: 10px; left: 10px; border-right: 0; border-top: 0; }
.sana-cert-mock__corner--br { bottom: 10px; right: 10px; border-left: 0; border-top: 0; }
.sana-cert-mock__seal {
    width: 52px;
    height: 52px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), #D99E00);
    color: var(--p-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 6px 16px rgba(245,184,0,0.45);
}
.sana-cert-mock__label {
    font-size: 0.68rem;
    font-weight: 800;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 4px;
}
.sana-cert-mock__brand {
    font-size: 1.05rem;
    font-weight: 900;
    color: var(--p-dark);
    margin: 0 0 12px;
}
.sana-cert-mock__line {
    height: 2px;
    width: 60px;
    margin: 0 auto 12px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.sana-cert-mock__to { font-size: 0.72rem; color: var(--muted); margin: 0 0 4px; }
.sana-cert-mock__name {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--p);
    margin: 0 0 6px;
}
.sana-cert-mock__course { font-size: 0.75rem; color: var(--muted); font-weight: 700; margin: 0 0 16px; }
.sana-cert-mock__footer {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding-top: 14px;
    border-top: 1px dashed #E8EEF8;
    font-size: 0.68rem;
    font-weight: 800;
    color: var(--p-light);
}
.sana-cert-mock__footer i { margin-inline-end: 4px; color: var(--gold-dark); }

/* APP BANNER */
.sana-app-m {
    background: linear-gradient(135deg, #072A66, #1A56B0); border-radius: var(--radius);
    padding: clamp(32px, 5vw, 48px); color: #fff; display: grid; gap: 32px; align-items: center; overflow: hidden;
}
@media (min-width: 992px) { .sana-app-m { grid-template-columns: 1fr 1fr; } }
.sana-app-m h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 900; line-height: 1.3; margin: 0 0 12px; }
.sana-app-m h2 .hl { color: var(--gold); }
.sana-app-m p { opacity: 0.88; line-height: 1.75; margin: 0 0 20px; max-width: 400px; }
.sana-app-m__stores { display: flex; flex-wrap: wrap; gap: 10px; }
.sana-app-m__stores .store { display: inline-flex; align-items: center; gap: 8px; padding: 11px 18px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25); border-radius: 14px; font-weight: 700; font-size: 0.85rem; }
.sana-app-m__phone { position: relative; display: flex; justify-content: center; align-items: flex-end; min-height: 280px; }
.sana-app-m__device { width: 160px; background: #0B1220; border-radius: 28px; padding: 8px; box-shadow: 0 24px 48px rgba(0,0,0,0.35); position: relative; z-index: 2; }
.sana-app-m__device img { border-radius: 22px; width: 100%; aspect-ratio: 9/16; object-fit: cover; display: block; }
.sana-app-m__char { position: absolute; bottom: 0; left: 0; max-height: 260px; width: auto; z-index: 1; filter: drop-shadow(0 16px 32px rgba(0,0,0,0.3)); }

/* FAQ SPLIT */
.sana-faq-m { display: grid; gap: 32px; align-items: center; }
@media (min-width: 992px) { .sana-faq-m { grid-template-columns: 0.9fr 1.1fr; } }
.sana-faq-m__visual { position: relative; display: flex; justify-content: center; min-height: 280px; }
.sana-faq-m__visual img { max-height: 320px; width: auto; object-fit: contain; filter: drop-shadow(0 16px 32px rgba(11,61,145,0.15)); }
.sana-faq-m__visual .bubble { position: absolute; font-size: 1.75rem; animation: sanaFloat 4s ease-in-out infinite; }
.sana-faq-m__visual .bubble--1 { top: 10%; right: 15%; }
.sana-faq-m__visual .bubble--2 { bottom: 20%; left: 10%; animation-delay: 1s; }
.sana-faq-item { background: #fff; border-radius: 16px; margin-bottom: 10px; border: 1px solid #E8EEF8; overflow: hidden; }
.sana-faq-q { width: 100%; padding: 16px 18px; text-align: start; font-weight: 800; font-size: 0.9rem; background: none; border: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 12px; color: var(--text); font-family: inherit; }
.sana-faq-q i { color: var(--p); font-size: 0.75rem; transition: transform 0.2s; }
.sana-faq-item.is-open .sana-faq-q i { transform: rotate(180deg); }
.sana-faq-a { display: none; padding: 0 18px 16px; font-size: 0.85rem; color: var(--muted); line-height: 1.75; }
.sana-faq-item.is-open .sana-faq-a { display: block; }

/* FOOTER */
.sana-foot-m { background: linear-gradient(180deg, #0B1220, #312e81); color: rgba(255,255,255,0.85); padding: 56px 0 24px; }
.sana-foot-m__grid { display: grid; gap: 32px; margin-bottom: 32px; }
@media (min-width: 768px) { .sana-foot-m__grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }
.sana-foot-m__logo { display: flex; align-items: center; gap: 10px; font-weight: 900; font-size: 1.2rem; color: #fff !important; text-decoration: none !important; margin-bottom: 12px; }
.sana-foot-m__logo img { width: 36px; height: 36px; border-radius: 10px; }
.sana-foot-m__brand p { font-size: 0.85rem; line-height: 1.75; opacity: 0.75; max-width: 280px; margin: 0 0 16px; }
.sana-foot-m h4 { color: #fff; font-weight: 900; font-size: 0.95rem; margin: 0 0 14px; }
.sana-foot-m ul { list-style: none; padding: 0; margin: 0; }
.sana-foot-m ul li { margin-bottom: 8px; }
.sana-foot-m ul a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.85rem; }
.sana-foot-m ul a:hover { color: var(--gold); }
.sana-foot-m .sub { font-size: 0.78rem; opacity: 0.65; margin: 0 0 10px; }
.sana-foot-m__form { display: flex; flex-direction: column; gap: 8px; }
.sana-foot-m__form input { padding: 12px 14px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.08); color: #fff; font-family: inherit; }
.sana-foot-m__form input::placeholder { color: rgba(255,255,255,0.4); }
.sana-foot-m__social { display: flex; gap: 8px; }
.sana-foot-m__social a { width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,0.1); color: #fff !important; display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 0.85rem; }
.sana-foot-m__copy { text-align: center; font-size: 0.75rem; opacity: 0.45; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); margin: 0; }

/* REVEAL */
.sana-reveal { opacity: 1; transform: none; }
html.js .sana-reveal:not(.is-visible) {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s, transform 0.55s;
}
html.js .sana-reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    html.js .sana-reveal:not(.is-visible),
    html.js .sana-reveal.is-visible {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
#sana-scroll-progress { position: fixed; top: 0; left: 0; height: 3px; z-index: 9999; background: linear-gradient(90deg, var(--gold), var(--p-light)); width: 0; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   MOBILE & TABLET â€” responsive landing
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 991px) {
    .sana-nav {
        padding-top: env(safe-area-inset-top, 0);
        overflow: visible;
    }
    .sana-nav .sana-container { overflow: visible; }
    .sana-nav.is-menu-open { z-index: 1001; }
    .sana-nav__inner {
        height: 64px;
        gap: 6px;
        overflow: visible;
    }
    .sana-nav__brand {
        min-width: 0;
        max-width: calc(100% - 112px);
    }
    .sana-nav__logo-text {
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .sana-nav__end {
        gap: 6px;
        flex-shrink: 0;
    }
    .sana-nav__lang-btn {
        width: 44px;
        min-width: 44px;
        min-height: 44px;
        padding: 0;
        gap: 0;
        border-radius: 14px;
    }
    .sana-nav__lang-btn-label,
    .sana-nav__lang-chevron { display: none !important; }
    .sana-nav__lang-btn-code { display: none; }
    .sana-nav__lang-btn .fa-globe { font-size: 1rem; opacity: 1; }
    .sana-nav__lang-menu {
        min-width: 180px;
        z-index: 1200;
    }
    .sana-nav__logo-img { width: 36px; height: 36px; }
    .sana-nav__logo-text { font-size: 1.12rem; }
    .sana-nav__burger {
        display: inline-flex !important;
        width: 48px;
        height: 48px;
        min-width: 48px;
        border-radius: 14px;
    }
    .sana-nav__mobile {
        position: fixed;
        top: calc(64px + env(safe-area-inset-top, 0));
        left: 0 !important;
        right: 0 !important;
        width: 100%;
        z-index: 1002;
        max-height: calc(100dvh - 64px - env(safe-area-inset-top, 0));
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 0 0 22px 22px;
        padding: 8px 12px calc(20px + env(safe-area-inset-bottom, 0));
        border-top: 1px solid #E8EEF8;
        box-shadow: 0 20px 48px rgba(11, 61, 145, 0.18);
    }
    .sana-nav__mobile.is-open {
        max-height: calc(100dvh - 64px - env(safe-area-inset-top, 0));
    }
    .sana-nav__mobile-lang {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin: 4px 0 12px;
        padding: 14px;
        border-radius: 16px;
        background: #F4F7FC;
        border: 1px solid #E8EEF8;
    }
    .sana-nav__mobile-lang-label {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font: 800 0.82rem/1 Tajawal, Cairo, sans-serif;
        color: var(--p-dark);
    }
    .sana-nav__mobile-lang-switch {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .sana-nav__mobile-lang-opt {
        display: flex !important;
        align-items: center;
        justify-content: center;
        min-height: 48px;
        padding: 12px 10px !important;
        border-radius: 12px !important;
        border: 1.5px solid #E8EEF8;
        background: #fff !important;
        color: #5B6577 !important;
        font: 800 0.9rem/1 Tajawal, Cairo, sans-serif !important;
        text-decoration: none !important;
    }
    .sana-nav__mobile-lang-opt.is-active {
        border-color: var(--p) !important;
        background: #EEF3FB !important;
        color: var(--p-dark) !important;
        box-shadow: 0 0 0 1px rgba(11, 61, 145, 0.12);
    }
    .sana-nav__mobile a {
        padding: 14px 16px;
        min-height: 48px;
        display: flex;
        align-items: center;
        font-size: 0.95rem;
        border-radius: 14px;
    }
    .sana-nav__signup--block {
        min-height: 48px;
        display: flex !important;
        align-items: center;
        justify-content: center;
        margin-top: 10px;
        font-size: 0.95rem;
        padding: 14px 18px;
    }

    .sana-hero {
        padding-top: calc(72px + env(safe-area-inset-top, 0));
        padding-bottom: 40px;
    }
    .sana-hero__grid {
        gap: 32px;
        min-height: auto;
    }
    .sana-hero__content {
        order: 1;
        text-align: center;
        margin-inline: auto;
        max-width: 100%;
        padding-inline: 4px;
    }
    .sana-hero__eyebrow {
        font-size: 0.74rem;
        padding: 6px 12px;
        margin-bottom: 12px;
    }
    .sana-hero__intro {
        margin-bottom: 14px;
    }
    .sana-hero__brand {
        font-size: clamp(1.7rem, 6.5vw, 2.2rem);
        margin-bottom: 8px;
    }
    .sana-hero__title {
        font-size: clamp(1.35rem, 5.2vw, 1.75rem);
        line-height: 1.35;
        margin: 0;
        max-width: none;
    }
    .sana-hero__desc {
        font-size: 0.92rem;
        margin-inline: auto;
        margin-bottom: 20px;
        line-height: 1.8;
        max-width: 38ch;
    }
    .sana-hero__actions {
        justify-content: center;
        margin-bottom: 18px;
        gap: 10px;
        width: 100%;
    }
    .sana-site-cta--hero {
        max-width: 100%;
        margin-inline: auto;
    }
    .sana-site-cta--hero .sana-site-cta__primary {
        min-height: 52px;
        font-size: 0.95rem;
        padding: 14px 20px;
    }
    .sana-site-cta--hero .sana-site-cta__row .sana-btn {
        min-height: 48px;
        font-size: 0.88rem;
        padding: 12px 14px;
        white-space: normal;
    }
    .sana-btn--lg {
        padding: 14px 22px;
        font-size: 0.92rem;
        min-height: 48px;
    }
    .sana-hero__meta {
        justify-items: center;
        text-align: start;
        max-width: 420px;
        margin-inline: auto;
        width: 100%;
    }
    .sana-hero__meta li {
        justify-content: flex-start;
        width: 100%;
    }
    .sana-hero__visual {
        order: 2;
        min-height: auto;
        padding-bottom: 8px;
    }
    .sana-hero-illus {
        max-width: min(100%, 400px);
        min-height: 280px;
        margin-inline: auto;
    }
    .sana-hero-illus__char {
        width: 112%;
        max-height: min(72vw, 380px);
        object-position: bottom center;
    }
    .sana-hero-illus__icon,
    .sana-hero-illus__orbit,
    .sana-hero-illus__shape--sq { display: none; }
    .sana-hero__arc,
    .sana-hero__geo,
    .sana-hero__cross { display: none; }
    .sana-hero__dotgrid { opacity: 0.2; }

    .sana-hero-stats {
        margin-top: -28px;
        padding: 12px 10px;
        gap: 8px 6px;
        border-radius: 20px;
    }

    .sana-section { padding: 44px 0; }
    .sana-head { margin-bottom: 28px; }
    .sana-head-row {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin-bottom: 28px;
    }
    .sana-head-row .sana-head {
        text-align: center;
        margin-bottom: 0;
    }
    .sana-head-row .sana-head__line { margin-inline: auto; }
    .sana-link-more {
        justify-content: center;
        min-height: 44px;
        padding: 8px 0;
    }

    .sana-feature-m { padding: 22px 18px; }
    .sana-cat-m { flex: 0 0 108px; min-height: 118px; }
    .sana-courses-m { gap: 14px; }
    .sana-teachers-m { grid-template-columns: 1fr; max-width: 360px; margin-inline: auto; }
    .sana-journey-m {
        scroll-snap-type: x mandatory;
        gap: 12px;
        padding-bottom: 16px;
        -webkit-overflow-scrolling: touch;
    }
    .sana-journey-m__step {
        min-width: 104px;
        scroll-snap-align: start;
        flex-shrink: 0;
    }
    .sana-faq-m { gap: 24px; }
    .sana-faq-m__visual { min-height: 200px; }
    .sana-faq-m__visual img { max-height: 220px; }
    .sana-faq-q {
        padding: 16px;
        font-size: 0.88rem;
        min-height: 48px;
    }

    .sana-foot-m { padding: 40px 0 calc(20px + env(safe-area-inset-bottom, 0)); }
    .sana-foot-m__grid { gap: 28px; text-align: center; }
    .sana-foot-m__brand p { margin-inline: auto; }
    .sana-foot-m__logo { justify-content: center; }
    .sana-foot-m__social { justify-content: center; }
    .sana-foot-m__form { max-width: 360px; margin-inline: auto; }
    .sana-achieve-box__desc { max-width: none; text-align: center; margin-inline: auto; }
    .sana-achieve-box__content { text-align: center; }
    .sana-achieve-box__stats { max-width: 400px; margin-inline: auto; }
    .sana-cert-mock { transform: none; width: min(100%, 280px); }
    .sana-head__title { font-size: clamp(1.35rem, 5.5vw, 1.75rem); }
    .sana-head__sub { font-size: 0.88rem; }
}

@media (max-width: 480px) {
    .sana-container { padding-inline: 16px; }
    .sana-hero__title { font-size: clamp(1.28rem, 5.8vw, 1.55rem); line-height: 1.38; }
    .sana-hero__brand { font-size: clamp(1.55rem, 7vw, 1.95rem); }
    .sana-hero__actions {
        flex-direction: column;
        width: 100%;
    }
    .sana-site-cta--hero .sana-site-cta__row {
        flex-direction: column;
    }
    .sana-site-cta--hero .sana-site-cta__row .sana-btn {
        width: 100%;
        white-space: normal;
    }
    .sana-hero__actions .sana-btn {
        width: 100%;
        justify-content: center;
    }
    .sana-hero__meta {
        grid-template-columns: 1fr;
    }
    .sana-hero__meta li:nth-child(3) {
        grid-column: auto;
    }
    .sana-hero-illus { min-height: 240px; }
    .sana-hero-illus__char { max-height: min(68vw, 320px); }
    .sana-hero-illus__float--planet,
    .sana-hero-illus__float--bulb { font-size: 1.5rem; }

    .sana-hero-stats {
        margin-top: -22px;
        padding: 10px 8px;
        gap: 6px 4px;
        border-radius: 18px;
    }
    .sana-hero-stats__icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        max-width: 40px;
        max-height: 40px;
        font-size: 0.92rem;
        border-radius: 12px;
    }
    .sana-hero-stats__icon i { font-size: 0.95rem; }
    .sana-hero-stats__item { padding: 8px 4px; gap: 6px; }

    .sana-courses-m { grid-template-columns: 1fr; }
    .sana-test-m__card { padding: 20px 18px; }
    .sana-faq-m__visual { display: none; }
    .sana-achieve-box__stats { grid-template-columns: 1fr; max-width: 280px; }
    .sana-achieve-box__stat { padding: 14px 16px; }
}

@media (max-width: 380px) {
    .sana-nav__logo-text { font-size: 1rem; max-width: 120px; overflow: hidden; text-overflow: ellipsis; }
    .sana-hero__meta li { font-size: 0.8rem; }
}

/* ===== Glottical start journey (homepage) ===== */
.gl-start {
    background:
        radial-gradient(circle at 12% 0%, rgba(245,184,0,0.10), transparent 42%),
        radial-gradient(circle at 88% 20%, rgba(11,61,145,0.08), transparent 40%),
        #F4F7FC;
}
.gl-start__head {
    text-align: center;
    max-width: 40rem;
    margin: 0 auto clamp(28px, 4vw, 40px);
}
.gl-start__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #E8EEF8;
    border: 1px solid #C5D4F0;
    color: #0B3D91;
    font-size: 0.78rem;
    font-weight: 800;
    margin-bottom: 14px;
}
.gl-start__title {
    margin: 0 0 10px;
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 3vw, 2rem);
    font-weight: 900;
    color: #0B1220;
    line-height: 1.3;
}
.gl-start__sub {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.75;
    font-weight: 600;
}
.gl-start__tracks {
    display: grid;
    gap: 14px;
    margin-bottom: clamp(22px, 3.5vw, 32px);
}
@media (min-width: 768px) {
    .gl-start__tracks { grid-template-columns: 1fr 1fr; gap: 16px; }
}
.gl-start__track {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 18px;
    border-radius: 18px;
    background: #fff;
    border: 1.5px solid #D7DDE6;
    text-decoration: none !important;
    color: inherit;
    box-shadow: 0 10px 28px -18px rgba(11,61,145,0.35);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.gl-start__track:hover {
    transform: translateY(-3px);
    border-color: rgba(11,61,145,0.35);
    box-shadow: 0 16px 36px -16px rgba(11,61,145,0.4);
}
.gl-start__track--ar { border-top: 3px solid var(--track-accent, #0B3D91); }
.gl-start__track--en { border-top: 3px solid var(--track-accent, #F5B800); }
.gl-start__track-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    background: #E8EEF8;
    color: var(--track-accent, #0B3D91);
    font-size: 1.15rem;
    box-sizing: border-box;
}
.gl-start__track-icon svg {
    display: block;
    width: 22px;
    height: 22px;
}
.gl-start__track--en .gl-start__track-icon {
    background: #FFF6D6;
    color: var(--track-accent, #9A7200);
}
.gl-start__track-copy {
    min-width: 0;
    flex: 1;
}
.gl-start__track-copy strong {
    display: block;
    font-size: 0.98rem;
    font-weight: 900;
    color: #0B1220;
    margin-bottom: 4px;
}
.gl-start__track-copy span {
    display: block;
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.55;
    font-weight: 600;
}
.gl-start__track-arrow {
    margin-inline-start: auto;
    color: #0B3D91;
    opacity: .55;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
}
.gl-start__track-arrow svg {
    display: block;
    width: 18px;
    height: 18px;
}
.gl-start__steps {
    display: grid;
    gap: 14px;
    margin-bottom: clamp(24px, 4vw, 36px);
}
@media (min-width: 768px) {
    .gl-start__steps { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
}
.gl-start__step {
    position: relative;
    background: #fff;
    border: 1.5px solid #D7DDE6;
    border-radius: 20px;
    padding: 22px 18px 20px;
    text-align: center;
    box-shadow: 0 12px 32px -22px rgba(11,61,145,0.4);
    transition: transform .2s ease, border-color .2s ease;
}
.gl-start__step:hover {
    transform: translateY(-4px);
    border-color: rgba(11,61,145,0.28);
}
.gl-start__step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.4rem;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: .04em;
    color: #0B3D91;
    background: #E8EEF8;
    margin-bottom: 12px;
}
.gl-start__step-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #FFD24D, #F5B800);
    color: #0B1220;
    font-size: 1.05rem;
    box-shadow: 0 10px 22px rgba(245,184,0,0.35);
}
.gl-start__step h3 {
    margin: 0 0 8px;
    font-size: 0.95rem;
    font-weight: 900;
    color: #0B1220;
    line-height: 1.45;
}
.gl-start__step p {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.7;
    color: var(--muted);
    font-weight: 600;
}
.gl-start__cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
.gl-start__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0B3D91;
    font-weight: 800;
    font-size: 0.88rem;
    text-decoration: none !important;
}
.gl-start__link:hover { color: #072A66; text-decoration: underline !important; }

/* ===== Homepage groups (priority section) ===== */
.gl-home-groups {
    background:
        radial-gradient(circle at 88% 0%, rgba(245,184,0,0.08), transparent 38%),
        #fff;
}
.gl-home-groups__head {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto clamp(24px, 4vw, 36px);
}
.gl-home-groups__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #E8EEF8;
    border: 1px solid #C5D4F0;
    color: #0B3D91;
    font-size: 0.78rem;
    font-weight: 800;
    margin-bottom: 12px;
}
.gl-home-groups__title {
    margin: 0 0 10px;
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 3vw, 2rem);
    font-weight: 900;
    color: var(--text);
    line-height: 1.25;
}
.gl-home-groups__sub {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--muted);
    font-weight: 600;
}
.gl-home-groups__years {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: clamp(8px, 2vw, 16px);
}
@media (min-width: 640px) {
    .gl-home-groups__years { grid-template-columns: repeat(3, 1fr); gap: 12px; }
}
@media (min-width: 992px) {
    .gl-home-groups__years { grid-template-columns: repeat(6, 1fr); }
}
.gl-home-groups__year {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 14px 12px;
    border-radius: 14px;
    background: #F4F7FC;
    border: 1.5px solid #D7DDE6;
    text-decoration: none !important;
    color: inherit;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 8px 22px -20px rgba(11,61,145,0.25);
}
.gl-home-groups__year:hover {
    transform: translateY(-2px);
    border-color: rgba(11,61,145,0.28);
    box-shadow: 0 14px 28px -18px rgba(11,61,145,0.35);
}
.gl-home-groups__year-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: #E8EEF8;
    color: #0B3D91;
    font-size: 0.75rem;
    font-weight: 900;
}
.gl-home-groups__year strong {
    font-size: 0.78rem;
    font-weight: 900;
    color: #0B1220;
    line-height: 1.35;
}
.gl-home-groups__band {
    margin-top: clamp(28px, 4vw, 40px);
    border-radius: 18px;
    padding: clamp(1.25rem, 3vw, 1.75rem);
    background:
        radial-gradient(circle at 90% 0%, rgba(245,184,0,0.18), transparent 42%),
        linear-gradient(145deg, #051F4D 0%, #0B3D91 55%, #1A56B0 100%);
    color: #fff;
    box-shadow: 0 18px 44px -18px rgba(11,61,145,0.45);
}
.gl-home-groups__band-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.35rem;
    align-items: center;
    justify-content: space-between;
}
.gl-home-groups__band h3 {
    margin: 0 0 0.3rem;
    font-family: Cairo, Tajawal, sans-serif;
    font-size: clamp(1.1rem, 2.2vw, 1.35rem);
    font-weight: 900;
}
.gl-home-groups__band p {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.6;
    font-weight: 600;
    color: rgba(255,255,255,0.82);
    max-width: 34rem;
}
.gl-home-groups__band-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}
.gl-home-groups__band-actions .sana-btn {
    padding: 0.65rem 1.05rem;
    font-size: 0.82rem;
}
