/* ============================================================
   EDG — Yurtdışı Təhsil
   Qara + gümüş/platin + antik qızıl (logo palitrası) · işıqlı/qaranlıq tema
   ============================================================ */

:root {
    /* Brend — logodan alınmıştır: qara · gümüş/platin · antik qızıl */
    --ink-900: #050505;   /* tam qara (logo fonu) */
    --ink-800: #0e0e0e;
    --ink-700: #1a1a1a;
    --ink-600: #2a2a2a;

    --silver:     #aeadac; /* metal gümüş (logo qalxan/lent) */
    --silver-100: #eaeaea;
    --silver-600: #8c8c8c;

    --gold:     #c9a24b;   /* antik qızıl (logo dəfnə) */
    --gold-300: #e0c689;   /* açıq şampan qızıl */
    --gold-700: #a1804a;   /* tünd qızıl (işıqlı fonda mətn) */

    /* Metal gradientlər — logonun dəfnə (qızıl) və lent (gümüş) hissi */
    --grad-gold:   linear-gradient(135deg, #e6cf95 0%, #c9a24b 48%, #a1804a 100%);
    --grad-silver: linear-gradient(180deg, #f2f2f2 0%, #c2c2c2 50%, #9a9a9a 100%);

    /* İşıqlı tema (default) — inci/platin */
    --bg:        #f5f5f3;
    --bg-alt:    #ecece9;
    --surface:   #ffffff;
    --glass:     rgba(255, 255, 255, 0.65);
    --glass-brd: rgba(0, 0, 0, 0.10);
    --text:      #121212;
    --muted:     #5c5c59;
    --line:      rgba(0, 0, 0, 0.12);
    --header-bg: rgba(255, 255, 255, 0.85);
    --shadow:    0 18px 40px -24px rgba(0, 0, 0, 0.40);

    --radius: 16px;
    --container: 1140px;
    --ease: cubic-bezier(.2, .7, .2, 1);

    --font-display: "Fraunces", Georgia, serif;
    --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

[data-theme="dark"] {
    /* Tünd tema — logonun öz görünüşü: tam qara + gümüş + qızıl */
    --bg:        #000000;
    --bg-alt:    #0c0c0c;
    --surface:   #141414;
    --glass:     rgba(20, 20, 20, 0.55);
    --glass-brd: rgba(255, 255, 255, 0.08);
    --text:      #ededed;
    --muted:     #9a9a98;
    --line:      rgba(255, 255, 255, 0.12);
    --header-bg: rgba(0, 0, 0, 0.82);
    --shadow:    0 22px 50px -26px rgba(0, 0, 0, 0.85);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    transition: background .35s var(--ease), color .35s var(--ease);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 22px;
}

/* ---------- Topbar ---------- */
.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--header-bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}
.topbar__inner {
    display: flex;
    align-items: center;
    gap: 18px;
    height: 70px;
}

.brand { display: flex; align-items: center; gap: 11px; }
.brand__mark { border-radius: 9px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__text strong {
    font-family: var(--font-display);
    font-size: 1.32rem;
    letter-spacing: .5px;
    color: var(--text);
}
.brand__text small { font-size: .68rem; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }

.nav { margin-left: auto; display: flex; gap: 26px; }
.nav a {
    font-size: .94rem;
    font-weight: 500;
    color: var(--muted);
    position: relative;
    padding: 6px 0;
    transition: color .2s var(--ease);
}
.nav a::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width .25s var(--ease);
}
.nav a:hover { color: var(--text); }
.nav a:hover::after { width: 100%; }

.topbar__actions { display: flex; align-items: center; gap: 10px; }

.langswitch { display: flex; gap: 2px; border: 1px solid var(--line); border-radius: 999px; padding: 3px; }
.langswitch a {
    font-size: .74rem;
    font-weight: 600;
    letter-spacing: .5px;
    color: var(--muted);
    padding: 4px 9px;
    border-radius: 999px;
    transition: all .2s var(--ease);
}
.langswitch a.is-active { background: var(--ink-800); color: #fff; }
[data-theme="dark"] .langswitch a.is-active { background: var(--gold); color: var(--ink-900); }

.iconbtn {
    display: inline-grid;
    place-items: center;
    width: 40px; height: 40px;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: transparent;
    color: var(--text);
    cursor: pointer;
    transition: background .2s var(--ease), border-color .2s var(--ease);
}
.iconbtn:hover { background: var(--bg-alt); }

#themeToggle .icon-moon { display: none; }
[data-theme="dark"] #themeToggle .icon-sun { display: none; }
[data-theme="dark"] #themeToggle .icon-moon { display: inline-flex; }

.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    overflow: hidden;
    color: #ededed;
    background: linear-gradient(135deg, var(--ink-900) 0%, var(--ink-700) 55%, var(--ink-600) 100%);
}
.hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(640px 320px at 82% -8%, rgba(200, 162, 75, 0.20), transparent 70%),
        radial-gradient(720px 420px at 8% 120%, rgba(174, 173, 172, 0.18), transparent 70%);
}
.hero__inner {
    position: relative;
    padding: 84px 22px 96px;
    display: flex;
    align-items: center;
    gap: 48px;
}
.hero__copy { flex: 1 1 540px; max-width: 640px; }
.hero__crest { flex: 0 1 380px; text-align: center; }
.hero__crest img {
    width: 100%;
    max-width: 360px;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 20px 44px rgba(0, 0, 0, .6));
}
@media (max-width: 880px) {
    .hero__inner { flex-direction: column-reverse; text-align: center; gap: 16px; padding: 36px 22px 68px; }
    .hero__copy { max-width: 100%; }
    .hero__crest img { max-width: 200px; }
    .hero__cta, .hero__copy .eyebrow { justify-content: center; }
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .76rem;
    font-weight: 600;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 18px;
}
.hero__title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(2.4rem, 6vw, 4rem);
    line-height: 1.08;
    margin: 0 0 18px;
    letter-spacing: -.5px;
}
.hero__title em { color: var(--gold-300); font-style: italic; }
.hero__lead {
    font-size: clamp(1.02rem, 2vw, 1.18rem);
    color: #cfcfca;
    max-width: 600px;
    margin: 0 0 32px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-weight: 600;
    font-size: .96rem;
    padding: 13px 24px;
    border-radius: 12px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .18s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn--gold { background: var(--grad-gold); color: #141414; box-shadow: 0 12px 26px -12px rgba(201, 162, 75, .55); }
.btn--gold:hover { background: linear-gradient(135deg, #efdca8 0%, #d3ad57 48%, #ad8a50 100%); }
.btn--ghost { background: rgba(255, 255, 255, .08); color: #fff; border-color: rgba(255, 255, 255, .28); }
.btn--ghost:hover { background: rgba(255, 255, 255, .16); }

/* ---------- Sections ---------- */
.section { padding: 88px 0; }
.section--alt { background: var(--bg-alt); }
.section__head { max-width: 640px; margin: 0 0 44px; }
.section__title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    line-height: 1.12;
    margin: 0 0 12px;
    letter-spacing: -.4px;
}
.section__sub { color: var(--muted); font-size: 1.04rem; margin: 0; }

/* ---------- Country cards ---------- */
.country-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: 22px;
}
.country-card {
    background: var(--glass);
    border: 1px solid var(--glass-brd);
    border-radius: var(--radius);
    padding: 26px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.country-card:hover { transform: translateY(-5px); border-color: var(--gold); }
.country-card__top { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.country-card__flag {
    width: 56px; height: 38px;
    border-radius: 6px;
    object-fit: cover;
    box-shadow: 0 4px 12px -6px rgba(0, 0, 0, .5);
}
.country-card__name {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.4rem;
    margin: 0;
}
.country-card__summary { color: var(--muted); font-size: .96rem; margin: 0 0 16px; }
.country-card__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.country-card__list li {
    position: relative;
    padding-left: 22px;
    font-size: .92rem;
}
.country-card__list li::before {
    content: "";
    position: absolute;
    left: 0; top: .55em;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--gold);
}
.country-card__stats { display: flex; gap: 18px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.country-card__stats strong { font-family: var(--font-display); font-size: 1.3rem; color: var(--gold); }

/* ---------- Services ---------- */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}
.service-card {
    background: var(--surface);
    padding: 30px 26px;
    transition: background .25s var(--ease);
}
.service-card:hover { background: var(--bg-alt); }
.service-card__num {
    font-family: var(--font-display);
    font-size: .9rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 1px;
}
.service-card h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.22rem; margin: 10px 0 8px; }
.service-card p { color: var(--muted); font-size: .94rem; margin: 0; }

/* ---------- CTA band ---------- */
.cta-band {
    background: linear-gradient(120deg, var(--ink-800), var(--ink-600));
    color: #ededed;
    border-top: 2px solid transparent;
    border-image: var(--grad-gold) 1;
}
.cta-band__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 56px 22px;
}
.cta-band h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin: 0 0 6px; }
.cta-band p { color: #cfcfca; margin: 0; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Footer ---------- */
.footer { background: var(--ink-900); color: #cfcfca; }
.footer__crest { display: block; width: 200px; max-width: 60%; height: auto; margin: 0 0 18px; filter: drop-shadow(0 10px 24px rgba(0, 0, 0, .5)); }
.footer__grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.3fr 1fr;
    gap: 40px;
    padding: 64px 22px 48px;
}
.brand--footer .brand__text strong,
.footer h4 { color: #fff; }
.footer__tagline { margin: 16px 0 6px; color: #9fb0cb; }
.footer__founder { font-size: .82rem; color: #6f819e; margin: 0; }
.footer h4 { font-family: var(--font-display); font-weight: 500; font-size: 1.05rem; margin: 0 0 16px; }
.footer__links, .footer__contact { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer__links a { color: #9fb0cb; font-size: .92rem; transition: color .2s var(--ease); }
.footer__links a:hover { color: var(--gold); }
.footer__contact li { display: flex; align-items: flex-start; gap: 10px; font-size: .9rem; color: #9fb0cb; }
.footer__contact a { color: #9fb0cb; transition: color .2s var(--ease); }
.footer__contact a:hover { color: #fff; }
.footer__ic { color: var(--gold); flex-shrink: 0; margin-top: 1px; }

.social { display: flex; gap: 10px; flex-wrap: wrap; }
.social__link {
    display: inline-grid;
    place-items: center;
    width: 42px; height: 42px;
    border-radius: 11px;
    border: 1px solid rgba(255, 255, 255, .12);
    color: #cfcfca;
    transition: all .2s var(--ease);
}
.social__link:hover { background: var(--gold); color: var(--ink-900); border-color: var(--gold); transform: translateY(-2px); }

.footer__bottom { border-top: 1px solid rgba(255, 255, 255, .08); }
.footer__bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 22px;
    font-size: .84rem;
    color: #6f819e;
}
.footer__top { color: #9fb0cb; transition: color .2s var(--ease); }
.footer__top:hover { color: var(--gold); }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
    .nav-toggle { display: inline-grid; }
    .topbar__actions { margin-left: auto; }
    .nav {
        position: absolute;
        top: 70px; left: 0; right: 0;
        flex-direction: column;
        gap: 0;
        background: var(--header-bg);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border-bottom: 1px solid var(--line);
        padding: 8px 22px 16px;
        margin: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height .3s var(--ease);
    }
    .nav.is-open { max-height: 240px; }
    .nav a { padding: 12px 0; border-bottom: 1px solid var(--line); }
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 540px) {
    .langswitch { display: none; }
    .footer__grid { grid-template-columns: 1fr; }
    .hero__inner { padding: 72px 22px 80px; }
    .cta-band__inner { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
    * { transition: none !important; scroll-behavior: auto; }
}

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* ============================================================
   Ölkə detal səhifəsi + kart linki
   ============================================================ */

/* Kart artıq <a> — kolon düzülüş + "Ətraflı" */
.country-card { display: flex; flex-direction: column; }
.country-card__more {
    margin-top: auto;
    padding-top: 18px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-weight: 600;
    font-size: .9rem;
    color: var(--gold-700);
    transition: gap .2s var(--ease);
}
[data-theme="dark"] .country-card__more { color: var(--gold); }
.country-card:hover .country-card__more { gap: 12px; }

/* Country hero banner */
.chero {
    position: relative;
    overflow: hidden;
    color: #ededed;
    background: linear-gradient(135deg, var(--ink-900) 0%, var(--ink-700) 60%, var(--ink-600) 100%);
}
.chero__bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(560px 280px at 88% -10%, rgba(200,162,75,.18), transparent 70%),
        radial-gradient(620px 360px at 4% 130%, rgba(174,173,172,.16), transparent 70%);
}
.chero__inner { position: relative; padding: 40px 22px 56px; }
.crumbs { display: flex; align-items: center; gap: 9px; font-size: .84rem; color: #9fb0cb; margin-bottom: 30px; }
.crumbs a { color: #9fb0cb; transition: color .2s var(--ease); }
.crumbs a:hover { color: var(--gold); }
.crumbs__current { color: #ededed; }
.chero__head { display: flex; align-items: center; gap: 22px; margin-bottom: 28px; }
.chero__flag {
    width: 92px; height: 62px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 10px 26px -10px rgba(0,0,0,.6);
    flex-shrink: 0;
}
.chero__title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.1;
    margin: 0 0 8px;
    letter-spacing: -.4px;
}
.chero__sub { color: #cfcfca; font-size: 1.05rem; max-width: 620px; margin: 0; }

/* Detail layout */
.cdetail { display: grid; grid-template-columns: 1.7fr 1fr; gap: 44px; align-items: start; }
.cdetail__intro { color: var(--muted); font-size: 1.06rem; margin: 0 0 28px; }
.cdetail__checks { list-style: none; margin: 0 0 32px; padding: 0; display: grid; gap: 14px; }
.cdetail__checks li { display: flex; align-items: flex-start; gap: 12px; font-size: 1rem; }
.cdetail__check { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.cdetail__h3, .aside-card h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.3rem; margin: 0 0 16px; }

.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
    font-size: .9rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 999px;
    background: var(--bg-alt);
    border: 1px solid var(--line);
    color: var(--text);
}

.cdetail__stats { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--line); }
.cdetail__stats strong { display: block; font-family: var(--font-display); font-size: 2rem; color: var(--gold); }
.cdetail__stats span { color: var(--muted); font-size: .9rem; }

/* Aside card (qəbul mərhələləri) */
.aside-card {
    background: var(--glass);
    border: 1px solid var(--glass-brd);
    border-radius: var(--radius);
    padding: 28px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    position: sticky;
    top: 90px;
}
.steps { list-style: none; counter-reset: s; margin: 0 0 22px; padding: 0; display: grid; gap: 14px; }
.steps li { display: flex; align-items: center; gap: 13px; font-size: .96rem; }
.steps li span {
    flex-shrink: 0;
    display: inline-grid;
    place-items: center;
    width: 28px; height: 28px;
    border-radius: 8px;
    background: var(--ink-800);
    color: #fff;
    font-family: var(--font-display);
    font-size: .85rem;
    font-weight: 600;
}
[data-theme="dark"] .steps li span { background: var(--gold); color: var(--ink-900); }
.btn--block { width: 100%; justify-content: center; }

/* Other countries strip */
.other-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; }
.other-card {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 16px 18px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
    font-weight: 500;
    transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.other-card img { border-radius: 4px; box-shadow: 0 3px 8px -4px rgba(0,0,0,.4); }
.other-card span { flex: 1; }
.other-card svg { color: var(--muted); transition: transform .2s var(--ease); }
.other-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.other-card:hover svg { transform: translateX(3px); color: var(--gold); }

@media (max-width: 860px) {
    .cdetail { grid-template-columns: 1fr; gap: 32px; }
    .aside-card { position: static; }
    .chero__head { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ============================================================
   Əlaqə formu
   ============================================================ */
.chero--slim .chero__inner { padding-bottom: 44px; }

.contact-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 48px; align-items: start; }

.contact-info .section__title { margin-top: 8px; }
.contact-info__list { list-style: none; margin: 26px 0 24px; padding: 0; display: grid; gap: 14px; }
.contact-info__list li { display: flex; align-items: flex-start; gap: 11px; font-size: .98rem; color: var(--muted); }
.contact-info__list a { color: var(--text); }
.contact-info__list a:hover { color: var(--gold-700); }
[data-theme="dark"] .contact-info__list a:hover { color: var(--gold); }
.btn--ghost-dark { background: var(--bg-alt); color: var(--text); border-color: var(--line); }
.btn--ghost-dark:hover { background: var(--surface); }

.contact-form-wrap {
    background: var(--glass);
    border: 1px solid var(--glass-brd);
    border-radius: var(--radius);
    padding: 32px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
}

.lead-form { display: grid; gap: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; }
.field label { font-size: .86rem; font-weight: 600; color: var(--text); }
.field input, .field select, .field textarea {
    width: 100%;
    font: inherit;
    font-size: .96rem;
    color: var(--text);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 12px 14px;
    transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200,162,75,.18);
}
.field.has-error input, .field.has-error select { border-color: #d64545; }
.field .err { color: #d64545; font-size: .8rem; }

.lead-form .btn { justify-content: center; }
.lead-form__note { font-size: .8rem; color: var(--muted); margin: 0; }

/* Honeypot — gizli */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Təşəkkür ekranı */
.thankyou { text-align: center; padding: 18px 8px; }
.thankyou__badge {
    display: inline-grid; place-items: center;
    width: 64px; height: 64px;
    border-radius: 50%;
    background: rgba(200,162,75,.15);
    color: var(--gold-700);
    margin-bottom: 18px;
}
[data-theme="dark"] .thankyou__badge { color: var(--gold); }
.thankyou h2 { font-family: var(--font-display); font-weight: 500; font-size: 1.6rem; margin: 0 0 8px; }
.thankyou p { color: var(--muted); margin: 0 0 22px; }

@media (max-width: 860px) {
    .contact-layout { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 540px) {
    .field-row { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 22px; }
}

/* ============================================================
   Universitet cədvəli
   ============================================================ */
.uni-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); -webkit-overflow-scrolling: touch; }
.uni-table { width: 100%; border-collapse: collapse; font-size: .92rem; min-width: 640px; }
.uni-table thead th {
    text-align: left;
    font-size: .72rem;
    letter-spacing: .6px;
    text-transform: uppercase;
    color: #fff;
    background: var(--ink-800);
    padding: 13px 14px;
    white-space: nowrap;
    position: sticky; top: 0;
}
.uni-table tbody td { padding: 13px 14px; border-top: 1px solid var(--line); vertical-align: top; }
.uni-table tbody tr:nth-child(even) { background: var(--bg-alt); }
.uni-table tbody tr:hover { background: rgba(200,162,75,.08); }
.uni-table .num { width: 42px; color: var(--muted); font-variant-numeric: tabular-nums; }
.uni-table .rk, .uni-table .tu { text-align: center; font-variant-numeric: tabular-nums; white-space: nowrap; }
.uni-table .tu { font-weight: 600; color: var(--gold-700); }
[data-theme="dark"] .uni-table .tu { color: var(--gold); }
.uni-table .tu small { font-weight: 400; color: var(--muted); }
.uni-name { font-weight: 600; }
.uni-fac { display: block; font-weight: 400; font-size: .82rem; color: var(--muted); margin-top: 3px; }
.dash { color: var(--muted); opacity: .5; }
.uni-legend { margin: 16px 2px 0; font-size: .82rem; color: var(--muted); line-height: 1.7; }
.uni-legend strong { color: var(--text); font-weight: 600; }

/* Təhsil haqqı qeydi */
.uni-note {
    display: flex;
    gap: 13px;
    align-items: flex-start;
    background: rgba(200,162,75,.10);
    border: 1px solid rgba(200,162,75,.30);
    border-radius: 12px;
    padding: 16px 18px;
    margin-bottom: 20px;
}
.uni-note__ic { color: var(--gold-700); flex-shrink: 0; margin-top: 1px; }
[data-theme="dark"] .uni-note__ic { color: var(--gold); }
.uni-note p { margin: 0; font-size: .92rem; color: var(--text); line-height: 1.6; }

/* Tıklanabilir üniversite adı */
.uni-link { color: var(--gold-700); font-weight: 600; transition: color .15s var(--ease); }
[data-theme="dark"] .uni-link { color: var(--gold); }
.uni-link:hover { text-decoration: underline; }

/* Üniversite künye satırı */
.uni-meta {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 32px;
}
.uni-meta__item { background: var(--surface); padding: 16px 18px; display: flex; flex-direction: column; gap: 4px; }
.uni-meta__label { font-size: .74rem; letter-spacing: .5px; text-transform: uppercase; color: var(--muted); }
.uni-meta__value { font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; color: var(--text); }

/* Üniversite yıllık ücret bloku (detay sayfası) */
.uni-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 18px;
    background: linear-gradient(135deg, var(--ink-800), var(--ink-600));
    border: 1px solid rgba(200, 162, 75, .35);
    border-radius: var(--radius);
    padding: 22px 26px;
    margin-bottom: 28px;
    box-shadow: var(--shadow);
}
.uni-price__main { display: flex; flex-direction: column; gap: 6px; }
.uni-price__label {
    font-size: .76rem; letter-spacing: .6px; text-transform: uppercase;
    color: var(--gold); font-weight: 600;
}
.uni-price__amount {
    font-family: var(--font-display);
    font-size: 2.2rem; font-weight: 600; line-height: 1; color: #fff;
}
.uni-price__amount small { font-size: .9rem; color: rgba(255, 255, 255, .6); font-weight: 400; }
@media (max-width: 560px) {
    .uni-price { flex-direction: column; align-items: stretch; }
    .uni-price .btn { justify-content: center; }
}

/* Fakülteler + tahminî yıllık ücret listesi */
.uni-faclist {
    list-style: none;
    margin: 0 0 8px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}
.uni-faclist li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 18px;
    background: var(--surface);
    border-top: 1px solid var(--line);
}
.uni-faclist li:first-child { border-top: 0; }
.uni-faclist__name { font-weight: 500; color: var(--text); }
.uni-faclist__price {
    font-family: var(--font-display);
    font-size: 1.05rem; font-weight: 500; color: var(--gold-700);
    white-space: nowrap;
}
[data-theme="dark"] .uni-faclist__price { color: var(--gold); }
.uni-faclist__price small { font-size: .78rem; color: var(--muted); font-weight: 400; }

/* ============================================================
   Öğrenci yorumları
   ============================================================ */
.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 22px;
}
.review-card {
    display: flex;
    flex-direction: column;
    background: var(--glass);
    border: 1px solid var(--glass-brd);
    border-radius: var(--radius);
    padding: 26px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
}
.review-card__stars { color: var(--gold); display: flex; gap: 2px; margin-bottom: 14px; }
.review-card__text {
    font-size: 1rem;
    color: var(--text);
    margin: 0 0 22px;
    position: relative;
    flex: 1;
}
.review-card__text::before {
    content: "\201C";
    font-family: var(--font-display);
    font-size: 2.4rem;
    line-height: 0;
    color: var(--gold);
    opacity: .35;
    margin-right: 4px;
    vertical-align: -0.4em;
}
.review-card__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 16px; border-top: 1px solid var(--line); }
.review-card__who { display: flex; flex-direction: column; line-height: 1.3; }
.review-card__who strong { font-family: var(--font-display); font-weight: 500; font-size: 1.02rem; color: var(--text); }
.review-card__who span { font-size: .84rem; color: var(--muted); }
.review-lang {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .4px;
    padding: 5px 11px;
    border-radius: 999px;
    background: var(--bg-alt);
    border: 1px solid var(--line);
    color: var(--muted);
    white-space: nowrap;
}

/* Telefon altı WhatsApp butonu */
.phone-stack { display: flex; flex-direction: column; gap: 7px; }
.wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    font-size: .8rem;
    font-weight: 600;
    color: #fff;
    background: #25D366;
    padding: 6px 13px;
    border-radius: 999px;
    box-shadow: 0 6px 14px -8px rgba(37, 211, 102, .9);
    transition: background .18s var(--ease), transform .18s var(--ease);
}
.wa-btn:hover { background: #1ebe5b; transform: translateY(-1px); color: #fff; }
.footer__contact .wa-btn { box-shadow: none; }

/* ============================================================
   Hero — kayan bayrak şeridi
   ============================================================ */
.hero__inner { padding-bottom: 60px; }

.flag-marquee {
    position: relative;
    overflow: hidden;
    padding: 6px 0 34px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.flag-track {
    display: flex;
    gap: 14px;
    width: max-content;
    padding-inline: 14px;
    animation: flag-scroll 34s linear infinite;
}
.flag-marquee:hover .flag-track { animation-play-state: paused; }
@keyframes flag-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-33.333%); }
}
.flag-item {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .14);
    color: #ededed;
    white-space: nowrap;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: background .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.flag-item img { border-radius: 4px; box-shadow: 0 4px 10px -5px rgba(0, 0, 0, .6); }
.flag-item span { font-weight: 600; font-size: 1rem; }
.flag-item svg { color: var(--gold); opacity: .85; transition: transform .2s var(--ease); }
.flag-item:hover { background: rgba(200, 162, 75, .20); border-color: var(--gold); transform: translateY(-3px); color: #fff; }
.flag-item:hover svg { transform: translateX(4px); opacity: 1; }

@media (prefers-reduced-motion: reduce) {
    .flag-track { animation: none; }
    .flag-marquee { overflow-x: auto; -webkit-overflow-scrolling: touch; }
}