/* =========================================================
   turkiyedetehsil.com — əsas üslub
   Brend: qırmızı #C8102E · mürəkkəb #1A1A2E · qum #F5EFE6
   Ton: kataloq və bələdçi, rəqəmlə danışan
   ========================================================= */

/* ---------- tokenlər ---------- */
:root {
  --red: #C8102E;
  --red-600: #B00D27;
  --red-700: #91091F;
  --red-50: #FDF1F3;
  --ink: #1A1A2E;
  --ink-600: #3B3B55;
  --ink-400: #5C5C75;
  --muted: #6E6E84;
  --sand: #F5EFE6;
  --sand-2: #FAF7F2;
  --paper: #FFFFFF;
  --gold: #B8860B;
  --line: rgba(26, 26, 46, .11);
  --line-2: rgba(26, 26, 46, .06);

  --shadow-sm: 0 1px 3px rgba(26, 26, 46, .06), 0 1px 2px rgba(26, 26, 46, .04);
  --shadow-md: 0 10px 30px rgba(26, 26, 46, .08);
  --shadow-lg: 0 24px 60px rgba(26, 26, 46, .12);

  --r-xs: 8px;
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;

  --wrap: 1180px;
  --font-head: "Archivo", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "IBM Plex Sans", "Segoe UI", system-ui, -apple-system, sans-serif;

  --head-h: 74px;
}

/* ---------- əsas ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  /* sticky başlıq lövbərli keçidləri örtməsin */
  scroll-padding-top: calc(var(--head-h) + 18px);
  /* ⛔ Mobil menyu `position: fixed` olduğu üçün onu SƏNƏDİN eni deyil,
     EKRANIN eni saxlayır: `body`-yə clip vermək kifayət etmir, qayda
     məhz `html`-də olmalıdır. `hidden` YOX — o, sürüşmə konteyneri
     yaradır və sticky başlıq/mündəricat ölür. */
  overflow-x: clip;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.68;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* ⛔ `hidden` YOX, `clip` — mobil menyu ekrandan kənarda dayandığı üçün
     sənədin eni şişir. `overflow-x: hidden` bunu düzəldər, amma sürüşmə
     konteyneri yaradır və `position: sticky` (başlıq, mündəricat) ölür.
     `clip` konteyner yaratmır, sticky sağ qalır. */
  overflow-x: clip;
}

img, svg, video { max-width: 100%; display: block; }
img { height: auto; }
a { color: inherit; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -.021em;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
h1 { font-size: clamp(2.05rem, 4.6vw, 3.3rem); letter-spacing: -.03em; }
h2 { font-size: clamp(1.6rem, 3.1vw, 2.35rem); letter-spacing: -.025em; }
h3 { font-size: 1.1rem; }
p { margin: 0; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }
.wrap-narrow { max-width: 780px; }

/* Keçid linki şaquli gizlədilir. ⛔ `left: -9999px` işlətmə:
   sənədin scrollWidth-ini şişirdir və audit alətləri bunu
   üfüqi daşma kimi göstərir. */
.skip-link {
  position: absolute; left: 16px; top: -70px; z-index: 999;
  background: var(--red); color: #fff; padding: 10px 18px; border-radius: var(--r-xs);
  font-weight: 600; text-decoration: none;
  transition: top .2s ease;
}
.skip-link:focus { top: 10px; }

:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; border-radius: 5px; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- düymələr ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-head); font-weight: 600; font-size: .95rem;
  padding: 13px 24px; border-radius: 999px; border: 1.5px solid transparent;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease,
              color .18s ease, border-color .18s ease;
}
.btn svg { width: 17px; height: 17px; flex: none; }

.btn-primary {
  background: var(--red); color: #fff;
  box-shadow: 0 8px 20px rgba(200, 16, 46, .26);
}
.btn-primary:hover { background: var(--red-600); transform: translateY(-2px); box-shadow: 0 14px 28px rgba(200, 16, 46, .32); }

.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #101020; transform: translateY(-2px); }

.btn-outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--ink); background: var(--sand-2); }

.btn-ghost-light { background: rgba(255, 255, 255, .1); color: #fff; border-color: rgba(255, 255, 255, .3); }
.btn-ghost-light:hover { background: rgba(255, 255, 255, .2); border-color: rgba(255, 255, 255, .55); }

.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-sm { padding: 9px 17px; font-size: .87rem; }
.btn-block { width: 100%; }

/* ---------- başlıq ---------- */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255, 255, 255, .88);
  border-bottom: 1px solid var(--line-2);
  transition: box-shadow .25s ease, background .25s ease;
}
@supports (backdrop-filter: blur(10px)) {
  .site-header { backdrop-filter: saturate(180%) blur(14px); }
}
.site-header.scrolled { box-shadow: var(--shadow-sm); background: rgba(255, 255, 255, .96); }

.header-inner {
  display: flex; align-items: center; gap: 18px;
  height: var(--head-h);
}

/* loqo: nişan SVG, ad isə real mətndir (axtarış üçün oxunaqlı) */
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; flex: none; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 11px; flex: none;
  background: var(--red); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
}
.brand-mark svg { width: 22px; height: 22px; }
.brand-name {
  font-family: var(--font-head); font-weight: 700; font-size: 1.06rem;
  line-height: 1.1; letter-spacing: -.03em; color: var(--ink);
}
.brand-name b { font-weight: 700; color: var(--red); }
/* Alt sətir uzun bir addır: uppercase + geniş hərf aralığı onu loqonun
   özündən enli edirdi, ona görə normal registrdə və dar aralıqla yazılır */
.brand-name span {
  display: block; font-family: var(--font-body); font-size: .7rem;
  font-weight: 500; letter-spacing: .005em; text-transform: none;
  color: var(--muted); white-space: nowrap;
}

.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-head); font-weight: 500; font-size: .92rem;
  color: var(--ink-600); text-decoration: none; white-space: nowrap;
  padding: 9px 12px; border-radius: var(--r-xs); background: none; border: 0; cursor: pointer;
  transition: color .18s ease, background .18s ease;
}
.nav-link svg { width: 10px; height: 7px; transition: transform .2s ease; }
.nav-link:hover { color: var(--red); background: var(--red-50); }
.nav-link[aria-current="page"] { color: var(--red); font-weight: 600; }

.has-sub { position: relative; }
.has-sub.open > .nav-link svg { transform: rotate(180deg); }
.sub {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 268px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-sm);
  box-shadow: var(--shadow-lg); padding: 7px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.has-sub.open .sub, .has-sub:hover .sub { opacity: 1; visibility: visible; transform: translateY(0); }
.sub a {
  display: block; padding: 9px 12px; border-radius: var(--r-xs); text-decoration: none;
  font-size: .91rem; color: var(--ink-600);
}
.sub a b { display: block; font-family: var(--font-head); font-weight: 600; font-size: .93rem; color: var(--ink); }
.sub a:hover { background: var(--sand-2); }
.sub a:hover b { color: var(--red); }

/* nömrə başlıqda: istifadəçi ilk baxışda görsün */
.hdr-phone {
  display: inline-flex; align-items: center; gap: 8px; flex: none;
  padding: 8px 15px; border-radius: 999px; text-decoration: none;
  border: 1.5px solid var(--line); background: #fff; color: var(--ink);
  transition: border-color .18s ease, color .18s ease, background .18s ease;
}
.hdr-phone svg { width: 16px; height: 16px; flex: none; color: var(--red); }
.hdr-phone b { font-family: var(--font-head); font-weight: 600; font-size: .9rem; white-space: nowrap; }
.hdr-phone:hover { border-color: var(--red); background: var(--red-50); color: var(--red); }

.burger {
  display: none; background: none; border: 1.5px solid var(--line); border-radius: var(--r-xs);
  padding: 9px; cursor: pointer; margin-left: auto;
}
.burger span { display: block; width: 20px; height: 2px; border-radius: 2px; background: var(--ink); transition: transform .25s ease, opacity .2s ease; }
.burger span + span { margin-top: 5px; }
body.nav-open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .burger span:nth-child(2) { opacity: 0; }
body.nav-open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================= HERO ================= */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(165deg, #1A1A2E 0%, #24243F 52%, #171728 100%);
  color: #fff;
  padding: 74px 0 82px;
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(720px 420px at 88% 4%, rgba(200, 16, 46, .34), transparent 62%),
    radial-gradient(560px 400px at 4% 92%, rgba(184, 134, 11, .16), transparent 66%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(circle at 50% 30%, #000 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(circle at 50% 30%, #000 30%, transparent 78%);
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.06fr .94fr; gap: 54px; align-items: center;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-size: .8rem; font-weight: 600;
  letter-spacing: .04em;
  padding: 7px 15px 7px 9px; border-radius: 999px;
  background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .17);
  color: rgba(255, 255, 255, .92); margin-bottom: 22px;
}
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%; background: #35D07F; flex: none;
  box-shadow: 0 0 0 4px rgba(53, 208, 127, .2);
}
.hero h1 { color: #fff; }
.hero h1 em { font-style: normal; color: #FF6B7F; }
.hero .lead {
  margin-top: 20px; font-size: 1.07rem; line-height: 1.62;
  color: rgba(255, 255, 255, .76); max-width: 52ch;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.hero-call {
  display: inline-flex; align-items: center; gap: 13px; margin-top: 22px;
  padding: 10px 22px 10px 11px; border-radius: 999px; text-decoration: none;
  background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .18);
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.hero-call:hover { background: rgba(255, 255, 255, .14); border-color: rgba(255, 255, 255, .38); transform: translateY(-2px); }
.hero-call-ico {
  width: 38px; height: 38px; border-radius: 50%; flex: none;
  background: var(--red); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
}
.hero-call-ico svg { width: 19px; height: 19px; }
.hero-call-txt { display: flex; flex-direction: column; line-height: 1.28; }
.hero-call-txt b { font-family: var(--font-head); font-size: 1.16rem; font-weight: 700; color: #fff; white-space: nowrap; }
.hero-call-txt span { font-size: .8rem; color: rgba(255, 255, 255, .6); }

.hero-stats {
  display: flex; flex-wrap: wrap; gap: 30px; list-style: none; margin: 34px 0 0; padding: 0;
}
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats b { font-family: var(--font-head); font-size: 1.7rem; font-weight: 700; color: #fff; line-height: 1.1; letter-spacing: -.03em; }
.hero-stats span { font-size: .81rem; color: rgba(255, 255, 255, .55); margin-top: 2px; }

/* hero-dakı axtarış kartı: kataloq tonunu ilk ekranda verir */
.finder {
  background: #fff; color: var(--ink);
  border-radius: var(--r-lg); padding: 26px;
  box-shadow: var(--shadow-lg);
}
.finder h2 { font-size: 1.22rem; letter-spacing: -.02em; }
.finder p.finder-sub { font-size: .89rem; color: var(--muted); margin-top: 6px; }
.finder-form { display: grid; gap: 13px; margin-top: 20px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-family: var(--font-head); font-size: .81rem; font-weight: 600; color: var(--ink-600); }
.field select, .field input {
  font-family: var(--font-body); font-size: .95rem; color: var(--ink);
  padding: 12px 14px; border-radius: var(--r-sm);
  border: 1.5px solid var(--line); background: var(--sand-2);
  appearance: none; width: 100%;
  transition: border-color .18s ease, background .18s ease;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5l5-5' fill='none' stroke='%236E6E84' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 12px;
  padding-right: 38px;
}
.field textarea {
  font-family: var(--font-body); font-size: .95rem; color: var(--ink);
  padding: 12px 14px; border-radius: var(--r-sm);
  border: 1.5px solid var(--line); background: var(--sand-2);
  width: 100%; resize: vertical; min-height: 62px;
  transition: border-color .18s ease, background .18s ease;
}
.field select:focus, .field input:focus, .field textarea:focus {
  border-color: var(--red); background: #fff; outline: none;
}
.field label .opt { font-weight: 400; color: var(--muted); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.finder-note { font-size: .79rem; color: var(--muted); margin-top: 13px; text-align: center; }

/* Bot tələsi. ⛔ `display:none` İŞLƏTMƏ — bəzi botlar məhz gizli sahələri
   axtarıb keçir, üstəlik ekran oxuyucular üçün də fərqli davranır.
   Ekrandan kənara çıxarırıq və fokusdan çıxarırıq. */
.hp {
  position: absolute; left: -9999px; top: auto;
  width: 1px; height: 1px; overflow: hidden;
}

/* Forma cavabı */
.form-msg {
  margin-top: 14px; padding: 12px 15px; border-radius: var(--r-sm);
  font-size: .9rem; line-height: 1.5;
}
.form-msg.ok { background: #F1FBF5; border: 1px solid rgba(22, 145, 78, .28); color: #12643A; }
.form-msg.err { background: var(--red-50); border: 1px solid rgba(200, 16, 46, .28); color: var(--red-700); }
.form-msg b { display: block; font-family: var(--font-head); margin-bottom: 2px; }

/* ================= BÖLMƏLƏR ================= */
.section { padding: 78px 0; }
.section-sand { background: var(--sand-2); }
.section-tight { padding: 56px 0; }

.section-head { max-width: 660px; margin: 0 auto 42px; text-align: center; }
.section-head.left { text-align: left; margin-left: 0; margin-right: 0; }
.kicker {
  display: inline-block; font-family: var(--font-head); font-size: .77rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .13em; color: var(--red); margin-bottom: 11px;
}
.section-sub { margin-top: 13px; color: var(--muted); font-size: 1.01rem; }
.section-sub a { color: var(--red); font-weight: 600; }

/* açılma animasiyası */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s cubic-bezier(.22, 1, .36, 1); }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- etibar zolağı ---------- */
.trust { border-block: 1px solid var(--line-2); background: #fff; padding: 26px 0; }
.trust-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 22px; }
.trust-label { font-family: var(--font-head); font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.trust-list { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; margin: 0; padding: 0; }
.trust-list li {
  font-family: var(--font-head); font-size: .85rem; font-weight: 500; color: var(--ink-600);
  padding: 7px 14px; border-radius: 999px; background: var(--sand); border: 1px solid var(--line-2);
}

/* ---------- giriş bloku ---------- */
.intro { max-width: 940px; margin: 0 auto; }
.intro h2 { font-size: clamp(1.4rem, 2.6vw, 1.95rem); margin-bottom: 20px; }
.intro-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.intro-cols p { color: var(--ink-600); font-size: .99rem; }
.intro-note {
  margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line);
  color: var(--muted); font-size: .93rem;
}

/* ---------- yollar (SEO pillar linkləri) ---------- */
.routes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.route {
  position: relative; display: flex; flex-direction: column; gap: 9px;
  padding: 26px; border-radius: var(--r-md); text-decoration: none;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform .24s cubic-bezier(.22, 1, .36, 1), box-shadow .24s ease, border-color .24s ease;
}
.route:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(200, 16, 46, .32); }
.route-ico {
  width: 44px; height: 44px; border-radius: 13px; margin-bottom: 5px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--red-50); color: var(--red);
}
.route-ico svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.route h3 { font-size: 1.08rem; }
.route p { font-size: .91rem; color: var(--muted); }
.route .tag {
  align-self: flex-start; margin-top: auto; padding-top: 12px;
  font-family: var(--font-head); font-weight: 600; font-size: .85rem; color: var(--red);
  display: inline-flex; align-items: center; gap: 6px;
}
.route .tag::after { content: "→"; transition: transform .2s ease; }
.route:hover .tag::after { transform: translateX(4px); }

/* ---------- addımlar ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; list-style: none; margin: 0; padding: 0; }
.steps li {
  position: relative; padding: 28px 24px 24px;
  border-radius: var(--r-md); background: #fff; border: 1px solid var(--line);
}
.steps .num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--ink); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: .92rem;
  margin-bottom: 15px;
}
.steps li:first-child .num { background: var(--red); }
.steps h3 { font-size: 1.04rem; margin-bottom: 7px; }
.steps p { font-size: .9rem; color: var(--muted); }

/* ---------- universitet kartları ---------- */
.uni-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.uni {
  display: flex; flex-direction: column; gap: 11px;
  padding: 22px; border-radius: var(--r-md); text-decoration: none;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
/* Hover yalnız LİNK olan kartlarda: kataloq hazır olana qədər universitet
   və şəhər kartları <div>-dir, onlarda hover klikləniləcək təəssüratı yaradır */
a.uni:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(200, 16, 46, .3); }
.uni-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.uni-badge {
  font-family: var(--font-head); font-size: .72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .06em;
  padding: 4px 10px; border-radius: 999px; white-space: nowrap;
}
.uni-badge.state { background: rgba(26, 26, 46, .07); color: var(--ink-600); }
.uni-badge.private { background: var(--red-50); color: var(--red); }
.uni h3 { font-size: 1.05rem; }
.uni-city { font-size: .86rem; color: var(--muted); display: flex; align-items: center; gap: 5px; }
.uni-city svg { width: 14px; height: 14px; flex: none; color: var(--red); }
.uni-meta { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 2px; }
.uni-meta span {
  font-size: .78rem; color: var(--ink-600);
  padding: 4px 10px; border-radius: 999px; background: var(--sand); border: 1px solid var(--line-2);
}
.uni-fee {
  margin-top: auto; padding-top: 13px; border-top: 1px solid var(--line-2);
  display: flex; align-items: baseline; justify-content: space-between; gap: 10px;
}
.uni-fee b { font-family: var(--font-head); font-size: 1.06rem; font-weight: 700; color: var(--ink); }
.uni-fee span { font-size: .78rem; color: var(--muted); }

/* ---------- şəhərlər ---------- */
.city-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.city {
  display: flex; flex-direction: column; gap: 4px;
  padding: 20px; border-radius: var(--r-md); text-decoration: none;
  background: var(--sand); border: 1px solid var(--line-2);
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
a.city:hover { background: #fff; border-color: var(--red); transform: translateY(-3px); }
.city b { font-family: var(--font-head); font-size: 1.02rem; font-weight: 700; }
.city span { font-size: .83rem; color: var(--muted); }

/* ---------- xərc cədvəli ---------- */
.tbl-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-md); background: #fff; }
.tbl { width: 100%; border-collapse: collapse; min-width: 560px; font-size: .93rem; }
.tbl caption { caption-side: bottom; padding: 13px 18px; font-size: .82rem; color: var(--muted); text-align: left; }
.tbl th, .tbl td { padding: 13px 18px; text-align: left; border-bottom: 1px solid var(--line-2); }
.tbl thead th {
  font-family: var(--font-head); font-size: .81rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .06em; color: var(--muted);
  background: var(--sand-2); border-bottom: 1px solid var(--line);
}
.tbl tbody tr:last-child td { border-bottom: 0; }
.tbl tbody tr:hover { background: var(--sand-2); }
.tbl td b { font-family: var(--font-head); font-weight: 600; }

/* ---------- rəylər ---------- */
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.rev {
  display: flex; flex-direction: column; gap: 13px; margin: 0;
  padding: 24px; border-radius: var(--r-md); background: #fff; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.stars { color: var(--gold); font-size: .95rem; letter-spacing: .12em; }
.rev blockquote { margin: 0; font-size: .95rem; color: var(--ink-600); line-height: 1.62; }
.rev figcaption { display: flex; flex-direction: column; margin-top: auto; padding-top: 6px; }
.rev figcaption b { font-family: var(--font-head); font-weight: 600; }
.rev figcaption span { font-size: .83rem; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 10px; }
.faq details {
  border: 1px solid var(--line); border-radius: var(--r-sm); background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq details[open] { border-color: rgba(200, 16, 46, .35); box-shadow: var(--shadow-sm); }
.faq summary {
  cursor: pointer; list-style: none; padding: 17px 50px 17px 20px; position: relative;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 20px; top: 50%; width: 11px; height: 11px;
  margin-top: -6px; border-right: 2px solid var(--red); border-bottom: 2px solid var(--red);
  transform: rotate(45deg); transition: transform .22s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }
.faq details p { padding: 0 20px 18px; color: var(--ink-600); font-size: .95rem; }

/* ---------- CTA zolağı ---------- */
.band {
  background: linear-gradient(140deg, #1A1A2E 0%, #2A2A46 100%);
  color: #fff; border-radius: var(--r-lg); overflow: hidden;
  position: relative;
}
.band::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(560px 300px at 92% 8%, rgba(200, 16, 46, .38), transparent 64%);
}
.band-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.25fr .75fr; gap: 40px; align-items: center;
  padding: 46px 46px;
}
.band h2 { color: #fff; }
.band p { color: rgba(255, 255, 255, .74); margin-top: 12px; }
.band-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 22px; }
.band-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.band-stats div { display: flex; flex-direction: column; }
.band-stats b { font-family: var(--font-head); font-size: 1.6rem; font-weight: 700; color: #fff; letter-spacing: -.03em; }
.band-stats span { font-size: .8rem; color: rgba(255, 255, 255, .55); }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: rgba(255, 255, 255, .68); padding: 58px 0 26px; margin-top: 0; }
.foot-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 34px; }
.site-footer .brand-name { color: #fff; }
.site-footer .brand-name span { color: rgba(255, 255, 255, .45); }
.foot-about { font-size: .92rem; margin-top: 15px; max-width: 34ch; }
.foot-col h3 {
  font-size: .8rem; text-transform: uppercase; letter-spacing: .1em;
  color: rgba(255, 255, 255, .45); margin-bottom: 14px; font-weight: 600;
}
.foot-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.foot-col a { text-decoration: none; font-size: .92rem; transition: color .18s ease; }
.foot-col a:hover { color: #fff; }
.foot-contact { display: grid; gap: 9px; font-size: .92rem; }
.foot-contact a { text-decoration: none; }
.foot-contact a:hover { color: #fff; }
.foot-bottom {
  margin-top: 42px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between;
  font-size: .85rem; color: rgba(255, 255, 255, .45);
}
.foot-bottom a { text-decoration: none; }
.foot-bottom a:hover { color: #fff; }
.credit { letter-spacing: .02em; }
.credit a {
  font-family: var(--font-head); font-weight: 600;
  color: rgba(255, 255, 255, .78); letter-spacing: .06em;
}
.credit a:hover { color: var(--red-50); }
.foot-social { display: flex; gap: 9px; }
.foot-social a {
  width: 34px; height: 34px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, .08); transition: background .18s ease;
}
.foot-social a:hover { background: var(--red); }
.foot-social svg { width: 16px; height: 16px; }

/* ---------- üzən WhatsApp ---------- */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 180;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(37, 211, 102, .38);
  transition: transform .2s ease;
}
.wa-float:hover { transform: scale(1.07); }
.wa-float svg { width: 28px; height: 28px; }

/* ================= UYĞUNLAŞMA ================= */
@media (max-width: 1080px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .routes { grid-template-columns: repeat(2, 1fr); }
  .uni-grid { grid-template-columns: repeat(2, 1fr); }
  .city-grid { grid-template-columns: repeat(3, 1fr); }
  .rev-grid { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr 1fr; }
  .band-inner { grid-template-columns: 1fr; gap: 30px; padding: 38px 32px; }
}

@media (max-width: 900px) {
  /* ⛔⛔ `backdrop-filter` `position: fixed` uşaqları üçün «containing block»
     yaradır: mobil menyu paneli başlığın 74 px-lik qutusuna sıxılır və
     ekranda yalnız yuxarı zolağı görünür. Mobildə blur SÖNDÜRÜLÜR. */
  .site-header,
  .site-header.scrolled {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(255, 255, 255, .97);
  }

  /* ⛔ `z-index` olmasa burger panelin ALTINDA qalır: menyu açılanda
     «X» düyməsi görünmür və istifadəçinin bağlamaq üçün yolu qalmır
     (panel z-index: 190). Ona görə burger ondan yuxarı qaldırılır. */
  .burger { display: block; position: relative; z-index: 195; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(86vw, 330px);
    flex-direction: column; align-items: stretch; gap: 3px;
    background: #fff; padding: 90px 20px 26px; margin: 0;
    transform: translateX(100%);
    /* ⛔ `visibility` olmasa bağlı menyu hələ də TAB sırasındadır:
       istifadəçi ekranda görünməyən linklərin içində itir. */
    visibility: hidden;
    transition: transform .28s cubic-bezier(.22, 1, .36, 1), visibility .28s;
    box-shadow: -20px 0 50px rgba(0, 0, 0, .16); overflow-y: auto; z-index: 190;
  }
  body.nav-open .nav { transform: translateX(0); visibility: visible; }
  body.nav-open { overflow: hidden; }
  .nav-link { justify-content: space-between; font-size: 1rem; padding: 12px 10px; }
  /* Mobildə alt menyu həmişə açıqdır: bir toxunuşla hər şey görünür */
  .sub, .has-sub.open .sub, .has-sub:hover .sub {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; border-left: 2px solid var(--line); border-radius: 0;
    padding: 0 0 0 10px; margin: 2px 0 10px 10px; display: block;
  }
  .has-sub > .nav-link {
    pointer-events: none; font-size: .73rem; letter-spacing: .11em; text-transform: uppercase;
    color: var(--muted); font-weight: 600; padding-bottom: 3px; margin-top: 7px;
  }
  .has-sub > .nav-link svg { display: none; }
  .nav .btn { margin-top: 12px; }
  .hdr-phone { margin-left: auto; }
  body.nav-open .hdr-phone { opacity: 0; pointer-events: none; }

  .hero { padding: 52px 0 60px; }
  .steps { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
}

@media (max-width: 620px) {
  .header-inner { gap: 10px; }
  .brand-name { font-size: .98rem; }
  .brand-name span { display: none; }
  .hdr-phone { padding: 9px; }
  .hdr-phone b { display: none; }

  .hero h1 { font-size: 1.95rem; }
  .hero-actions .btn { flex: 1 1 100%; }
  .hero-call { display: flex; width: 100%; justify-content: center; }
  .hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .hero-stats b { font-size: 1.3rem; }
  .hero-stats span { font-size: .74rem; line-height: 1.3; }
  .finder { padding: 20px; }
  .field-row { grid-template-columns: 1fr; }

  .intro-cols { grid-template-columns: 1fr; gap: 16px; }
  .routes, .uni-grid { grid-template-columns: 1fr; }
  .city-grid { grid-template-columns: repeat(2, 1fr); }
  .foot-top { grid-template-columns: 1fr; gap: 26px; }
  .band-inner { padding: 30px 22px; }
  .band-stats { grid-template-columns: 1fr 1fr; }
  .trust-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
}
