/* Pusula Akademi — LMS demo. Outfit display + Hanken body. İndigo/mor + amber aksan. */

:root {
  --ink: #1a1832;
  --ink-soft: #4b4a63;
  --ink-faint: #6f6e88;
  --bg: #f3f4fb;
  --bg-2: #eceefa;
  --surface: #ffffff;
  --surface-2: #f7f7fd;
  --line: #e2e2f0;
  --line-strong: #d2d2e6;
  --indigo: #5b4ee0;
  --indigo-deep: #3d34a8;
  --indigo-soft: #ece9fc;
  --violet: #7c5cf0;
  --amber: #e89324;
  --amber-soft: #fbecd4;
  --on-accent: #ffffff;
  --done: #2f9e6e;
  --shadow-sm: 0 2px 8px rgba(36, 30, 90, 0.06);
  --shadow-md: 0 14px 38px -14px rgba(36, 30, 90, 0.22);
  --shadow-lg: 0 30px 70px -24px rgba(36, 30, 90, 0.32);
  --r-card: 20px;
  --r-pill: 999px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1240px;
  --sans: "Outfit", system-ui, sans-serif;
  --body: "Hanken", system-ui, sans-serif;
}

[data-theme="dark"] {
  --ink: #f0effa;
  --ink-soft: #b7b5d4;
  --ink-faint: #8e8cb0;
  --bg: #12101f;
  --bg-2: #16142a;
  --surface: #1b1934;
  --surface-2: #211f3d;
  --line: #2c2a4d;
  --line-strong: #38355f;
  --indigo: #8a7cf5;
  --indigo-deep: #b3a8ff;
  --indigo-soft: #251f4a;
  --violet: #a78bff;
  --amber: #f0a948;
  --amber-soft: #3a2c16;
  --on-accent: #14112b;
  --done: #54c79a;
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 16px 42px -16px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 34px 80px -24px rgba(0, 0, 0, 0.7);
}

[hidden] { display: none !important; }

html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  transition: background-color 0.4s var(--ease), color 0.4s var(--ease);
}

h1, h2, h3, .brand, .hero-title, .sec-title { font-family: var(--sans); }
.hide { display: none !important; }

::selection { background: color-mix(in srgb, var(--indigo) 28%, transparent); }

a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--indigo);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ── Duyuru şeridi ── */
.ann { background: var(--ink); color: #e9e8fa; overflow: hidden; border-bottom: 1px solid rgba(255,255,255,0.06); }
[data-theme="dark"] .ann { background: #0c0a18; }
.ann-track { display: inline-flex; align-items: center; gap: 1.4rem; white-space: nowrap; padding: 7px 0; font-size: 0.78rem; letter-spacing: 0.04em; animation: ann-scroll 34s linear infinite; }
.ann-track i { width: 5px; height: 5px; border-radius: 50%; background: var(--amber); flex: none; }
@keyframes ann-scroll { from { transform: translateX(0); } to { transform: translateX(-25%); } }

/* ── Nav ── */
.nav {
  position: sticky; top: 0; z-index: 150;
  display: flex; align-items: center; gap: 1.2rem;
  padding: 0.7rem clamp(1rem, 4vw, 2.4rem);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.nav.is-stuck { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.brand { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 1.32rem; font-weight: 800; letter-spacing: -0.02em; color: var(--ink); order: -1; }
.brand-mk { display: inline-grid; place-items: center; width: 30px; height: 30px; border-radius: 9px; color: var(--on-accent); background: linear-gradient(150deg, var(--violet), var(--indigo-deep)); box-shadow: var(--shadow-sm); }
[data-theme="dark"] .brand-mk { color: #fff; }

.nav-links { display: flex; align-items: center; gap: 0.3rem; margin: 0 auto 0 1.4rem; }
.nav-item { position: relative; }
.nav-item > a { display: inline-flex; align-items: center; padding: 0.55rem 0.85rem; font-family: var(--sans); font-weight: 600; font-size: 0.92rem; color: var(--ink-soft); border-radius: var(--r-pill); transition: color 0.2s, background-color 0.2s; }
.nav-item:hover > a, .nav-item.open > a { color: var(--ink); background: var(--indigo-soft); }

.mega { position: absolute; top: calc(100% + 10px); left: 50%; transform: translate(-50%, 8px); min-width: 440px; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.22s var(--ease), transform 0.22s var(--ease-out); z-index: 30; }
.nav-item.open .mega { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0); }
.mega::before { content: ""; position: absolute; top: -10px; left: 0; right: 0; height: 12px; }
.mega-in { display: flex; gap: 1.2rem; padding: 1.2rem; background: var(--surface); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-lg); }
.mega-cols { display: grid; grid-template-columns: repeat(2, minmax(118px, 1fr)); gap: 1.4rem; }
.mega-cols-3 { grid-template-columns: repeat(3, minmax(108px, 1fr)); }
.mega-col { display: flex; flex-direction: column; gap: 0.15rem; }
.mega-h { font-family: var(--sans); font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-faint); margin-bottom: 0.45rem; }
.mega-col a { font-size: 0.88rem; color: var(--ink-soft); padding: 0.28rem 0; border-radius: 6px; transition: color 0.18s, padding-left 0.18s; }
.mega-col a:hover { color: var(--indigo); padding-left: 0.3rem; }
.mega-promo { display: flex; align-items: center; gap: 0.7rem; min-width: 168px; padding: 0.9rem; border-radius: 14px; background: linear-gradient(145deg, var(--indigo-soft), var(--surface-2)); border: 1px solid var(--line); }
.mega-promo:hover { border-color: var(--indigo); }
.mega-promo-art { width: 46px; height: 46px; flex: none; border-radius: 12px; background: linear-gradient(150deg, var(--violet), var(--indigo-deep)); position: relative; overflow: hidden; }
.mega-promo-art::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.45), transparent 55%); }
.promo-cur .mega-promo-art { background: linear-gradient(150deg, var(--amber), #c4711a); }
.promo-team .mega-promo-art { background: linear-gradient(150deg, #3aa0c4, var(--indigo-deep)); }
.promo-enroll .mega-promo-art { background: linear-gradient(150deg, var(--done), #1f7a55); }
.mega-promo-tx { display: flex; flex-direction: column; }
.mega-promo-tx b { font-family: var(--sans); font-size: 0.92rem; color: var(--ink); }
.mega-promo-tx i { font-style: normal; font-size: 0.78rem; color: var(--ink-faint); }

.nav-right { display: flex; align-items: center; gap: 0.5rem; }
.icon-btn { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; color: var(--ink-soft); transition: color 0.2s, background-color 0.2s; }
.icon-btn:hover { color: var(--ink); background: var(--indigo-soft); }
.nav-enroll, .nav-toggle { font-family: var(--sans); }
.nav-enroll { display: inline-flex; align-items: center; padding: 0.55rem 1.1rem; font-weight: 700; font-size: 0.9rem; color: var(--on-accent); background: linear-gradient(135deg, var(--violet), var(--indigo-deep)); border-radius: var(--r-pill); box-shadow: var(--shadow-sm); transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease); }
[data-theme="dark"] .nav-enroll { color: #fff; }
.nav-enroll:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }

.nav-toggle { display: none; flex-direction: column; gap: 4px; width: 40px; height: 40px; align-items: center; justify-content: center; border-radius: 10px; order: -2; }
.nav-toggle span { width: 19px; height: 2px; border-radius: 2px; background: var(--ink); transition: transform 0.3s var(--ease), opacity 0.2s; }
body.drawer-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.drawer-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.drawer-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-drawer { position: fixed; top: 0; left: 0; right: 0; z-index: 140; display: flex; flex-direction: column; gap: 0.2rem; padding: 5.2rem 1.4rem 1.6rem; background: var(--surface); border-bottom: 1px solid var(--line); box-shadow: var(--shadow-lg); }
.nav-drawer a { font-family: var(--sans); font-weight: 600; font-size: 1.05rem; padding: 0.85rem 0.4rem; border-bottom: 1px solid var(--line); color: var(--ink); }
.nav-drawer a:last-child { border-bottom: 0; }

/* ── Arama paneli ── */
.search-overlay { position: fixed; inset: 0; z-index: 175; background: rgba(20, 16, 44, 0.5); backdrop-filter: blur(3px); opacity: 0; transition: opacity 0.3s var(--ease); }
.search-overlay.is-open { opacity: 1; }
.search-panel { position: fixed; top: 0; left: 0; right: 0; z-index: 180; background: var(--surface); border-bottom: 1px solid var(--line); box-shadow: var(--shadow-lg); transform: translateY(-100%); transition: transform 0.34s var(--ease-out); }
.search-panel.is-open { transform: translateY(0); }
.search-inner { max-width: 720px; margin: 0 auto; padding: 1.4rem clamp(1rem, 4vw, 2rem) 1.6rem; }
.search-field { display: flex; align-items: center; gap: 0.7rem; padding: 0.85rem 1rem; background: var(--surface-2); border: 1px solid var(--line-strong); border-radius: 14px; color: var(--ink-faint); }
.search-field:focus-within { border-color: var(--indigo); }
.search-field input { flex: 1; border: 0; background: none; color: var(--ink); font-size: 1.05rem; }
.search-field input::placeholder { color: var(--ink-faint); }
.search-x { font-size: 1.5rem; line-height: 1; color: var(--ink-faint); padding: 0 0.3rem; }
.search-x:hover { color: var(--ink); }
.search-suggest { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; margin-top: 0.9rem; font-size: 0.85rem; color: var(--ink-faint); }
.search-suggest button { padding: 0.3rem 0.8rem; background: var(--indigo-soft); color: var(--indigo); border-radius: var(--r-pill); font-size: 0.82rem; font-weight: 600; transition: background-color 0.18s; }
[data-theme="dark"] .search-suggest button { color: var(--indigo-deep); }
.search-suggest button:hover { background: color-mix(in srgb, var(--indigo) 22%, transparent); }
.search-results { list-style: none; padding: 0; margin: 1rem 0 0; }
.sr-item { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 0.75rem 0.6rem; border-radius: 10px; cursor: pointer; transition: background-color 0.16s; }
.sr-item:hover { background: var(--surface-2); }
.sr-name { font-family: var(--sans); font-weight: 600; }
.sr-lvl { font-size: 0.78rem; color: var(--ink-faint); }
.sr-empty { padding: 1rem 0.6rem; color: var(--ink-faint); }

/* ── Layout ── */
main { display: block; }
section { padding: clamp(3.2rem, 8vw, 6rem) clamp(1rem, 5vw, 3rem); max-width: var(--max); margin: 0 auto; }

.kicker { display: inline-block; font-family: var(--sans); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em; color: var(--indigo); margin-bottom: 0.6rem; }
[data-theme="dark"] .kicker { color: var(--indigo-deep); }
.sec-title { font-size: clamp(1.8rem, 4.6vw, 2.9rem); font-weight: 800; letter-spacing: -0.025em; line-height: 1.08; }
.sec-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1.2rem; margin-bottom: 2.4rem; }
.sec-note { max-width: 30ch; color: var(--ink-faint); font-size: 0.95rem; }

.btn-primary { display: inline-flex; align-items: center; gap: 0.55rem; padding: 0.85rem 1.5rem; font-family: var(--sans); font-weight: 700; color: var(--on-accent); background: linear-gradient(135deg, var(--violet), var(--indigo-deep)); border-radius: var(--r-pill); box-shadow: var(--shadow-md); transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease); }
[data-theme="dark"] .btn-primary { color: #fff; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-primary svg { transition: transform 0.25s var(--ease); }
.btn-primary:hover svg { transform: translateX(3px); }
.btn-ghost { display: inline-flex; align-items: center; padding: 0.85rem 1.4rem; font-family: var(--sans); font-weight: 600; color: var(--ink); border: 1px solid var(--line-strong); border-radius: var(--r-pill); transition: border-color 0.2s, background-color 0.2s, transform 0.2s; }
.btn-ghost:hover { border-color: var(--indigo); background: var(--indigo-soft); transform: translateY(-1px); }

/* ── Hero ── */
.hero { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; max-width: var(--max); margin: 0 auto; padding: clamp(2.6rem, 6vw, 5rem) clamp(1rem, 5vw, 3rem) clamp(2rem, 5vw, 3.6rem); position: relative; }
.hero::before { content: ""; position: absolute; top: -8%; right: -6%; width: 46vw; max-width: 560px; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, color-mix(in srgb, var(--violet) 22%, transparent), transparent 62%); filter: blur(8px); z-index: -1; pointer-events: none; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--sans); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em; color: var(--ink-soft); padding: 0.35rem 0.85rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-pill); box-shadow: var(--shadow-sm); }
.eb-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--done); box-shadow: 0 0 0 3px color-mix(in srgb, var(--done) 24%, transparent); }
.hero-title { font-size: clamp(2.7rem, 8vw, 5rem); font-weight: 800; letter-spacing: -0.035em; line-height: 0.98; margin: 1.1rem 0 1.3rem; }
.hero-title .accentline { background: linear-gradient(105deg, var(--violet), var(--amber)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-lede { max-width: 44ch; color: var(--ink-soft); font-size: clamp(1.02rem, 2vw, 1.18rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin: 1.7rem 0; }
.hero-stats { display: flex; flex-wrap: wrap; gap: clamp(1.4rem, 4vw, 2.6rem); list-style: none; padding: 1.4rem 0 0; margin: 0; border-top: 1px solid var(--line); }
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats b { font-family: var(--sans); font-size: clamp(1.5rem, 3.4vw, 2.1rem); font-weight: 800; letter-spacing: -0.02em; color: var(--ink); line-height: 1; }
.hero-stats span { font-size: 0.82rem; color: var(--ink-faint); margin-top: 0.25rem; }

.hero-stage { position: relative; display: grid; place-items: center; }
.hero-card { position: relative; width: min(100%, 380px); background: var(--surface); border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow-lg); padding: 1.5rem; }
.hero-card::before { content: ""; position: absolute; inset: 0; border-radius: 24px; padding: 1px; background: linear-gradient(150deg, color-mix(in srgb, var(--violet) 50%, transparent), transparent 50%); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.hc-top { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1rem; }
.hc-ic { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 13px; color: var(--on-accent); background: linear-gradient(150deg, var(--violet), var(--indigo-deep)); }
[data-theme="dark"] .hc-ic { color: #fff; }
.hc-meta { display: flex; flex-direction: column; gap: 0.2rem; }
.hc-lvl { font-family: var(--sans); font-size: 0.78rem; font-weight: 700; color: var(--amber); }
.hc-tp { font-size: 0.78rem; color: var(--ink-faint); }
.hc-name { font-size: 1.22rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 1.1rem; }
.hc-prog-row { display: flex; justify-content: space-between; align-items: baseline; font-size: 0.82rem; color: var(--ink-faint); margin-bottom: 0.4rem; }
.hc-prog-row b { font-family: var(--sans); font-size: 1rem; color: var(--indigo); }
[data-theme="dark"] .hc-prog-row b { color: var(--indigo-deep); }
.hc-bar { height: 8px; border-radius: var(--r-pill); background: var(--surface-2); border: 1px solid var(--line); overflow: hidden; }
.hc-bar i { display: block; height: 100%; width: var(--p); border-radius: var(--r-pill); background: linear-gradient(90deg, var(--violet), var(--indigo)); position: relative; overflow: hidden; }
.hc-bar i::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.55), transparent); transform: translateX(-100%); animation: hc-shine 2.6s var(--ease) infinite; }
@keyframes hc-shine { to { transform: translateX(220%); } }
.hc-mods { list-style: none; padding: 0; margin: 1.2rem 0; display: flex; flex-direction: column; gap: 0.55rem; }
.hc-mods li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.92rem; color: var(--ink-faint); }
.hc-tick { display: inline-grid; place-items: center; width: 19px; height: 19px; flex: none; border-radius: 50%; border: 1.6px solid var(--line-strong); position: relative; }
.hc-mods li.done { color: var(--ink-soft); }
.hc-mods li.done .hc-tick { border-color: var(--done); background: var(--done); }
.hc-mods li.done .hc-tick::after { content: ""; position: absolute; width: 9px; height: 5px; border-left: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(-45deg) translate(0, -1px); }
.hc-mods li.now { color: var(--ink); font-weight: 600; }
.hc-mods li.now .hc-tick { border-color: var(--indigo); }
.hc-mods li.now .hc-tick::after { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--indigo); }
.hc-resume { display: flex; align-items: center; justify-content: center; gap: 0.5rem; width: 100%; padding: 0.75rem; font-family: var(--sans); font-weight: 700; color: var(--ink); background: var(--indigo-soft); border-radius: 13px; transition: background-color 0.2s, transform 0.2s; }
.hc-resume:hover { background: color-mix(in srgb, var(--indigo) 20%, transparent); transform: translateY(-1px); }
.hero-orbit { position: absolute; bottom: -0.6rem; left: 50%; transform: translateX(-50%); white-space: nowrap; font-family: var(--sans); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.05em; color: var(--ink-faint); background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-pill); padding: 0.35rem 0.95rem; box-shadow: var(--shadow-sm); }

/* ── Katalog ── */
.shop { display: grid; grid-template-columns: 230px 1fr; gap: clamp(1.4rem, 3vw, 2.4rem); align-items: start; }
.cats { position: sticky; top: 86px; display: flex; flex-direction: column; gap: 1.6rem; padding: 1.4rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card); box-shadow: var(--shadow-sm); }
.facet-h { display: block; font-family: var(--sans); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-faint); margin-bottom: 0.7rem; }
.facet-chips { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.fchip { padding: 0.4rem 0.85rem; font-size: 0.85rem; font-weight: 600; color: var(--ink-soft); background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r-pill); transition: all 0.18s var(--ease); }
.fchip:hover { border-color: var(--indigo); color: var(--ink); }
.fchip.is-on { color: var(--on-accent); background: linear-gradient(135deg, var(--violet), var(--indigo-deep)); border-color: transparent; }
[data-theme="dark"] .fchip.is-on { color: #fff; }
.cats-help { padding-top: 1.3rem; border-top: 1px solid var(--line); }
.cats-help p { font-size: 0.86rem; color: var(--ink-faint); margin-bottom: 0.4rem; }
.cats-help a { font-family: var(--sans); font-weight: 700; font-size: 0.9rem; color: var(--indigo); }
[data-theme="dark"] .cats-help a { color: var(--indigo-deep); }
.cats-help a:hover { text-decoration: underline; }

.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(248px, 1fr)); gap: 1.3rem; }
.grid-empty { grid-column: 1 / -1; text-align: center; padding: 2.5rem; color: var(--ink-faint); }

.course { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease); }
.course:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.course.flash { animation: flash 1.2s var(--ease); }
@keyframes flash { 0%, 100% { box-shadow: var(--shadow-sm); } 30% { box-shadow: 0 0 0 3px var(--indigo), var(--shadow-md); } }

.thumb { position: relative; aspect-ratio: 16 / 10; display: grid; place-items: center; background: linear-gradient(150deg, var(--indigo-soft), var(--surface-2)); color: var(--indigo); cursor: pointer; overflow: hidden; }
[data-theme="dark"] .thumb { color: var(--indigo-deep); }
.thumb::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 18%, color-mix(in srgb, var(--violet) 22%, transparent), transparent 55%); opacity: 0.8; }
.c-art { position: relative; width: 56%; max-width: 130px; transition: transform 0.4s var(--ease-out); }
.course:hover .c-art { transform: scale(1.07) translateY(-2px); }
.c-art svg { width: 100%; height: auto; }
.tag-lvl { position: absolute; top: 0.7rem; left: 0.7rem; z-index: 2; font-family: var(--sans); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; padding: 0.22rem 0.6rem; border-radius: var(--r-pill); }
.lvl-baslangic { color: #1f6e4b; background: #d5f0e2; }
.lvl-orta { color: #8a5a14; background: var(--amber-soft); }
.lvl-ileri { color: #6c2b8a; background: #f0dcf7; }
[data-theme="dark"] .lvl-baslangic { color: #8ee6bd; background: #163a2a; }
[data-theme="dark"] .lvl-orta { color: #f0bd72; background: #3a2c16; }
[data-theme="dark"] .lvl-ileri { color: #e3b6f5; background: #38214a; }
.qv-hint { position: absolute; bottom: 0.7rem; right: 0.7rem; z-index: 2; font-family: var(--sans); font-size: 0.74rem; font-weight: 600; color: var(--ink); background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-pill); padding: 0.28rem 0.7rem; box-shadow: var(--shadow-sm); opacity: 0; transform: translateY(6px); transition: opacity 0.25s var(--ease), transform 0.25s var(--ease); }
.thumb:hover .qv-hint, .thumb:focus-within .qv-hint { opacity: 1; transform: translateY(0); }

.c-rate { display: flex; align-items: center; gap: 0.4rem; padding: 1rem 1.1rem 0; font-size: 0.8rem; color: var(--ink-faint); }
.c-rate .stars, .rv-stars { color: var(--amber); letter-spacing: 0.06em; }
.c-name { padding: 0.45rem 1.1rem 0; font-size: 1.08rem; font-weight: 800; letter-spacing: -0.015em; line-height: 1.25; }
.c-by { padding: 0.3rem 1.1rem 0; font-size: 0.82rem; color: var(--ink-faint); }
.c-by b { color: var(--ink-soft); font-weight: 600; }
.c-meta { display: flex; flex-wrap: wrap; gap: 0.4rem 0.9rem; padding: 0.7rem 1.1rem 0; font-size: 0.8rem; color: var(--ink-faint); }
.c-meta span { display: inline-flex; align-items: center; gap: 0.35rem; }
.c-meta svg { color: var(--indigo); }
[data-theme="dark"] .c-meta svg { color: var(--indigo-deep); }
.c-prog { padding: 0.9rem 1.1rem 0; }
.c-prog-row { display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--ink-faint); margin-bottom: 0.35rem; }
.c-prog-row b { font-family: var(--sans); color: var(--indigo); }
[data-theme="dark"] .c-prog-row b { color: var(--indigo-deep); }
.c-prog-bar { height: 6px; border-radius: var(--r-pill); background: var(--surface-2); border: 1px solid var(--line); overflow: hidden; }
.c-prog-bar i { display: block; height: 100%; border-radius: var(--r-pill); background: linear-gradient(90deg, var(--violet), var(--indigo)); transition: width 0.6s var(--ease-out); }
.c-prog-new { font-size: 0.78rem; color: var(--ink-faint); display: inline-flex; align-items: center; gap: 0.4rem; }
.c-prog-new::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--done); }
.c-enroll { display: flex; align-items: center; justify-content: center; gap: 0.45rem; margin: 1rem 1.1rem 1.1rem; padding: 0.7rem; font-family: var(--sans); font-weight: 700; font-size: 0.92rem; color: var(--ink); background: var(--indigo-soft); border-radius: 13px; transition: background-color 0.2s, color 0.2s; }
.c-enroll:hover { color: var(--on-accent); background: linear-gradient(135deg, var(--violet), var(--indigo-deep)); }
[data-theme="dark"] .c-enroll:hover { color: #fff; }
.c-enroll svg { transition: transform 0.2s; }
.c-enroll:hover svg { transform: translateX(3px); }
.c-enroll.added { color: var(--on-accent); background: var(--done); }
[data-theme="dark"] .c-enroll.added { color: #fff; }

/* ── Marquee ── */
.marquee { padding: 0; overflow: hidden; max-width: 100%; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--ink); }
[data-theme="dark"] .marquee { background: #0c0a18; }
.marquee-row { display: inline-flex; align-items: center; gap: 1.6rem; white-space: nowrap; padding: 1.1rem 0; font-family: var(--sans); font-size: clamp(1.1rem, 2.6vw, 1.7rem); font-weight: 700; letter-spacing: -0.01em; color: #e9e8fa; animation: mq 26s linear infinite; }
.marquee-row b { color: var(--amber); }
@keyframes mq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Müfredat akordeon ── */
.cur-wrap { display: grid; grid-template-columns: 1fr 300px; gap: 1.8rem; align-items: start; }
.cur-acc { display: flex; flex-direction: column; gap: 0.8rem; }
.acc-item { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; transition: border-color 0.25s, box-shadow 0.25s; }
.acc-item.is-open { border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.acc-head { display: flex; align-items: center; gap: 1rem; width: 100%; padding: 1.1rem 1.3rem; text-align: left; }
.acc-no { font-family: var(--sans); font-weight: 800; font-size: 0.95rem; color: var(--indigo); flex: none; }
[data-theme="dark"] .acc-no { color: var(--indigo-deep); }
.acc-tx { flex: 1; display: flex; flex-direction: column; gap: 0.15rem; min-width: 0; }
.acc-tx b { font-family: var(--sans); font-size: 1.02rem; font-weight: 700; color: var(--ink); }
.acc-tx i { font-style: normal; font-size: 0.85rem; color: var(--ink-faint); }
.acc-meta { display: flex; align-items: center; gap: 0.9rem; flex: none; font-size: 0.8rem; color: var(--ink-faint); }
.acc-chev { width: 11px; height: 11px; border-right: 2px solid var(--ink-faint); border-bottom: 2px solid var(--ink-faint); transform: rotate(45deg); transition: transform 0.3s var(--ease); }
.acc-item.is-open .acc-chev { transform: rotate(225deg); }
.acc-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.34s var(--ease); }
.acc-item.is-open .acc-body { grid-template-rows: 1fr; }
.acc-body > * { overflow: hidden; }
.acc-lessons { list-style: none; padding: 0.2rem 1.3rem 1.2rem 3.4rem; margin: 0; display: flex; flex-direction: column; gap: 0.1rem; }
.acc-lessons li { display: flex; align-items: center; gap: 0.7rem; padding: 0.55rem 0; font-size: 0.9rem; color: var(--ink-soft); border-bottom: 1px solid var(--line); }
.acc-lessons li:last-child { border-bottom: 0; }
.acc-lessons li em { margin-left: auto; font-style: normal; font-size: 0.78rem; color: var(--ink-faint); font-variant-numeric: tabular-nums; }
.al-ic { display: inline-grid; place-items: center; width: 24px; height: 24px; flex: none; border-radius: 7px; background: var(--indigo-soft); color: var(--indigo); position: relative; }
[data-theme="dark"] .al-ic { color: var(--indigo-deep); }
.al-ic.play::after { content: ""; width: 0; height: 0; border-left: 7px solid currentColor; border-top: 4.5px solid transparent; border-bottom: 4.5px solid transparent; transform: translateX(1px); }
.al-ic.doc { background: var(--amber-soft); color: #8a5a14; }
[data-theme="dark"] .al-ic.doc { color: #f0bd72; }
.al-ic.doc::after { content: ""; width: 10px; height: 12px; border: 1.6px solid currentColor; border-radius: 2px; }

.cur-side { position: sticky; top: 86px; }
.cs-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card); padding: 1.5rem; box-shadow: var(--shadow-md); }
.cs-lvl { display: inline-block; font-family: var(--sans); font-size: 0.74rem; font-weight: 700; color: var(--amber); margin-bottom: 1.1rem; }
.cs-stat { display: flex; align-items: baseline; gap: 0.5rem; padding: 0.55rem 0; border-bottom: 1px solid var(--line); }
.cs-stat b { font-family: var(--sans); font-size: 1.15rem; font-weight: 800; color: var(--ink); }
.cs-stat span { font-size: 0.85rem; color: var(--ink-faint); }
.cs-incl { list-style: none; padding: 0; margin: 1.1rem 0; display: flex; flex-direction: column; gap: 0.6rem; }
.cs-incl li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.88rem; color: var(--ink-soft); }
.cs-ic { display: inline-grid; place-items: center; width: 18px; height: 18px; flex: none; border-radius: 50%; background: var(--done); position: relative; }
.cs-ic::after { content: ""; position: absolute; width: 8px; height: 4px; border-left: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(-45deg) translate(0, -1px); }
.cs-cta { display: block; text-align: center; padding: 0.8rem; font-family: var(--sans); font-weight: 700; color: var(--on-accent); background: linear-gradient(135deg, var(--violet), var(--indigo-deep)); border-radius: 13px; box-shadow: var(--shadow-sm); transition: transform 0.2s, box-shadow 0.2s; }
[data-theme="dark"] .cs-cta { color: #fff; }
.cs-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }

/* ── Eğitmenler ── */
.men-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(248px, 1fr)); gap: 1.3rem; }
.men { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card); padding: 1.6rem; box-shadow: var(--shadow-sm); transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.men:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.men-top { position: relative; width: fit-content; margin-bottom: 1rem; }
.men-av { display: inline-grid; place-items: center; width: 58px; height: 58px; border-radius: 18px; font-family: var(--sans); font-weight: 800; font-size: 1.2rem; color: #fff; background: linear-gradient(150deg, color-mix(in srgb, var(--av) 75%, #fff), var(--av)); box-shadow: var(--shadow-sm); }
.men-on { position: absolute; bottom: -2px; right: -2px; width: 15px; height: 15px; border-radius: 50%; background: var(--done); border: 3px solid var(--surface); }
.men-name { font-size: 1.2rem; font-weight: 800; letter-spacing: -0.015em; }
.men-role { font-family: var(--sans); font-size: 0.85rem; font-weight: 600; color: var(--indigo); margin-bottom: 0.6rem; }
[data-theme="dark"] .men-role { color: var(--indigo-deep); }
.men-bio { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 1rem; }
.men-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.men-tags span { font-size: 0.76rem; font-weight: 600; color: var(--ink-soft); background: var(--surface-2); border: 1px solid var(--line); padding: 0.2rem 0.65rem; border-radius: var(--r-pill); }

/* ── Yorumlar ── */
.rv-head { text-align: center; max-width: 36ch; margin: 0 auto 2.4rem; }
.rv-head .kicker { display: block; }
.rv-desc { color: var(--ink-faint); margin-top: 0.7rem; }
.rv-wrap { position: relative; }
.rv-grid { columns: 3 280px; column-gap: 1.3rem; }
.rv-grid.is-collapsed { max-height: 480px; overflow: hidden; }
.rv-card { break-inside: avoid; margin-bottom: 1.3rem; background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: 1.3rem; box-shadow: var(--shadow-sm); }
.rv-top { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 0.7rem; }
.rv-av { display: inline-grid; place-items: center; width: 40px; height: 40px; flex: none; border-radius: 12px; font-family: var(--sans); font-weight: 800; font-size: 0.92rem; color: #fff; background: linear-gradient(150deg, color-mix(in srgb, var(--av) 78%, #fff), var(--av)); }
.rv-id { display: flex; flex-direction: column; min-width: 0; }
.rv-id b { font-family: var(--sans); font-size: 0.95rem; font-weight: 700; }
.rv-id span { font-size: 0.76rem; color: var(--ink-faint); }
.rv-stars { font-size: 0.92rem; margin-bottom: 0.5rem; }
.rv-text { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.6; }
.rv-fade { position: absolute; left: 0; right: 0; bottom: 52px; height: 130px; background: linear-gradient(to bottom, transparent, var(--bg) 88%); pointer-events: none; transition: opacity 0.3s; }
.rv-wrap.open .rv-fade { opacity: 0; }
.rv-more { display: block; margin: 1.4rem auto 0; padding: 0.7rem 1.6rem; font-family: var(--sans); font-weight: 700; color: var(--ink); background: var(--surface); border: 1px solid var(--line-strong); border-radius: var(--r-pill); box-shadow: var(--shadow-sm); transition: border-color 0.2s, background-color 0.2s, transform 0.2s; }
.rv-more:hover { border-color: var(--indigo); background: var(--indigo-soft); transform: translateY(-1px); }
.rv-wrap.open .rv-more { display: none; }

/* ── Kayıt ── */
.enroll { background: var(--surface); border: 1px solid var(--line); border-radius: clamp(20px, 4vw, 32px); box-shadow: var(--shadow-md); margin-top: clamp(2rem, 5vw, 4rem); margin-bottom: clamp(2rem, 5vw, 4rem); position: relative; overflow: hidden; }
.enroll::before { content: ""; position: absolute; top: -40%; left: -10%; width: 40%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, color-mix(in srgb, var(--violet) 18%, transparent), transparent 65%); pointer-events: none; }
.enroll-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; position: relative; }
.enroll-copy p { color: var(--ink-soft); max-width: 42ch; margin-bottom: 1.5rem; }
.enroll-meta { list-style: none; padding: 0; margin: 0 0 1.4rem; display: flex; flex-direction: column; gap: 1rem; }
.enroll-meta li { display: flex; align-items: center; gap: 0.9rem; }
.em-ic { display: inline-grid; place-items: center; width: 40px; height: 40px; flex: none; border-radius: 13px; color: var(--indigo); background: var(--indigo-soft); }
[data-theme="dark"] .em-ic { color: var(--indigo-deep); }
.em-lbl { display: block; font-family: var(--sans); font-weight: 700; color: var(--ink); }
.enroll-meta li div span:last-child { font-size: 0.85rem; color: var(--ink-faint); }
.enroll-resp { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: var(--ink-soft); }
.er-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--done); box-shadow: 0 0 0 4px color-mix(in srgb, var(--done) 22%, transparent); }

.enroll-form { display: flex; flex-direction: column; gap: 1rem; background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-card); padding: clamp(1.3rem, 3vw, 1.9rem); }
.ef-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.ff { position: relative; }
.ff input, .ff textarea { width: 100%; padding: 1.1rem 0.95rem 0.5rem; background: var(--surface); border: 1px solid var(--line-strong); border-radius: 12px; color: var(--ink); transition: border-color 0.2s; resize: vertical; }
.ff textarea { min-height: 88px; }
.ff input:focus, .ff textarea:focus { border-color: var(--indigo); }
.ff label { position: absolute; left: 0.95rem; top: 0.85rem; font-size: 0.95rem; color: var(--ink-faint); pointer-events: none; transition: transform 0.2s var(--ease), font-size 0.2s var(--ease), color 0.2s; }
.ff input:focus + label, .ff input:not(:placeholder-shown) + label,
.ff textarea:focus + label, .ff textarea:not(:placeholder-shown) + label { transform: translateY(-0.55rem); font-size: 0.7rem; color: var(--indigo); }
[data-theme="dark"] .ff input:focus + label, [data-theme="dark"] .ff textarea:focus + label { color: var(--indigo-deep); }
.ff-area { display: flex; flex-direction: column; }
.ff-count { align-self: flex-end; margin-top: 0.3rem; font-size: 0.74rem; color: var(--ink-faint); }
.ef-topics-lbl { display: block; font-family: var(--sans); font-size: 0.78rem; font-weight: 700; color: var(--ink-soft); margin-bottom: 0.55rem; }
.ef-pills { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.ef-pill { padding: 0.4rem 0.9rem; font-size: 0.84rem; font-weight: 600; color: var(--ink-soft); background: var(--surface); border: 1px solid var(--line-strong); border-radius: var(--r-pill); transition: all 0.18s; }
.ef-pill:hover { border-color: var(--indigo); }
.ef-pill.is-on { color: var(--on-accent); background: linear-gradient(135deg, var(--violet), var(--indigo-deep)); border-color: transparent; }
[data-theme="dark"] .ef-pill.is-on { color: #fff; }
.ef-trap { position: absolute; left: -9999px; opacity: 0; }
.ef-submit { display: flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.9rem; font-family: var(--sans); font-weight: 700; color: var(--on-accent); background: linear-gradient(135deg, var(--violet), var(--indigo-deep)); border-radius: 13px; box-shadow: var(--shadow-md); transition: transform 0.2s, box-shadow 0.2s; }
[data-theme="dark"] .ef-submit { color: #fff; }
.ef-submit:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.ef-submit svg { transition: transform 0.2s; }
.ef-submit:hover svg { transform: translateX(3px); }
.ef-ok { display: flex; align-items: center; gap: 0.6rem; padding: 0.85rem 1rem; font-size: 0.9rem; color: var(--done); background: color-mix(in srgb, var(--done) 12%, transparent); border: 1px solid color-mix(in srgb, var(--done) 30%, transparent); border-radius: 12px; }
.ef-ok-tick { display: inline-grid; place-items: center; width: 28px; height: 28px; flex: none; border-radius: 50%; color: #fff; background: var(--done); }

/* ── SSS ── */
.faq-list { display: flex; flex-direction: column; gap: 0.7rem; max-width: 780px; }
.faq-it { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.faq-it.is-open { border-color: var(--line-strong); }
.faq-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; width: 100%; padding: 1.1rem 1.3rem; text-align: left; font-family: var(--sans); font-weight: 700; font-size: 1.02rem; color: var(--ink); }
.faq-head .acc-chev { flex: none; }
.faq-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.32s var(--ease); }
.faq-it.is-open .faq-body { grid-template-rows: 1fr; }
.faq-body > * { overflow: hidden; }
.faq-body p { padding: 0 1.3rem 1.2rem; color: var(--ink-soft); font-size: 0.94rem; max-width: 62ch; }

/* ── Güven şeridi ── */
.trust { padding-top: 0; }
.trust-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; padding: 1.6rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card); box-shadow: var(--shadow-sm); }
.trust-it { display: flex; align-items: center; gap: 0.8rem; }
.trust-ic { display: inline-grid; place-items: center; width: 44px; height: 44px; flex: none; border-radius: 13px; color: var(--indigo); background: var(--indigo-soft); }
[data-theme="dark"] .trust-ic { color: var(--indigo-deep); }
.trust-it b { display: block; font-family: var(--sans); font-weight: 700; font-size: 0.98rem; }
.trust-it i { font-style: normal; font-size: 0.82rem; color: var(--ink-faint); }

/* ── Footer ── */
.footer { background: var(--ink); color: #d9d8ee; margin-top: clamp(2rem, 6vw, 4rem); border-radius: clamp(24px, 4vw, 40px) clamp(24px, 4vw, 40px) 0 0; }
[data-theme="dark"] .footer { background: #0c0a18; }
.news { text-align: center; max-width: 640px; margin: 0 auto; padding: clamp(2.6rem, 6vw, 4rem) 1.5rem 2rem; }
.news .kicker { color: var(--amber); }
.news-title { font-size: clamp(1.4rem, 3.6vw, 2.1rem); font-weight: 800; letter-spacing: -0.02em; color: #fff; margin-bottom: 1.4rem; }
.news-form { display: flex; gap: 0.6rem; max-width: 440px; margin: 0 auto; }
.news-form input { flex: 1; padding: 0.85rem 1.1rem; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--r-pill); color: #fff; }
.news-form input::placeholder { color: rgba(255,255,255,0.5); }
.news-form input:focus { border-color: var(--violet); outline-offset: 3px; }
.news-form button { display: inline-flex; align-items: center; gap: 0.45rem; padding: 0.85rem 1.5rem; font-family: var(--sans); font-weight: 700; white-space: nowrap; color: var(--ink); background: linear-gradient(135deg, #fff, #d7d4f5); border-radius: var(--r-pill); transition: transform 0.2s; }
.news-form button:hover { transform: translateY(-1px); }
.news-ok { margin-top: 0.9rem; font-size: 0.88rem; color: #8ee6bd; }

.foot-cols { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 2rem; max-width: var(--max); margin: 0 auto; padding: 2.4rem clamp(1.4rem, 5vw, 3rem); border-top: 1px solid rgba(255,255,255,0.08); }
.foot-brand .brand { display: inline-flex; align-items: center; gap: 0.5rem; color: #fff; font-size: 1.32rem; margin-bottom: 0.8rem; }
.foot-brand .brand-mk { background: linear-gradient(150deg, var(--violet), var(--indigo)); color: #fff; }
.foot-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.6); max-width: 34ch; margin-bottom: 1.1rem; }
.foot-social { display: flex; gap: 0.5rem; }
.foot-social a { display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 11px; color: #d9d8ee; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); transition: color 0.2s, background-color 0.2s, transform 0.2s; }
.foot-social a:hover { color: #fff; background: var(--indigo); transform: translateY(-2px); }
.foot-col { display: flex; flex-direction: column; gap: 0.5rem; }
.foot-col span { font-family: var(--sans); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.45); margin-bottom: 0.4rem; }
.foot-col a { font-size: 0.9rem; color: rgba(255,255,255,0.72); transition: color 0.18s; }
.foot-col a:hover { color: #fff; }
.foot-base { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; max-width: var(--max); margin: 0 auto; padding: 1.2rem clamp(1.4rem, 5vw, 3rem); border-top: 1px solid rgba(255,255,255,0.08); font-size: 0.82rem; color: rgba(255,255,255,0.55); }
.foot-legal { display: flex; gap: 1.2rem; }
.foot-legal a:hover { color: #fff; }

/* ── Quick-view (kurs detay) ── */
.qv-overlay { position: fixed; inset: 0; z-index: 195; background: rgba(20, 16, 44, 0.55); backdrop-filter: blur(4px); opacity: 0; transition: opacity 0.34s var(--ease); }
.qv-overlay.is-open { opacity: 1; }
.qv { position: fixed; z-index: 200; top: 50%; left: 50%; width: min(880px, 94vw); max-height: 90vh; transform: translate(-50%, -46%); opacity: 0; pointer-events: none; display: grid; grid-template-columns: 0.85fr 1.15fr; background: var(--surface); border: 1px solid var(--line); border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg); transition: opacity 0.34s var(--ease), transform 0.34s var(--ease-out); }
.qv.is-open { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%); }
.qv-x { position: absolute; top: 0.8rem; right: 0.9rem; z-index: 3; width: 38px; height: 38px; border-radius: 50%; font-size: 1.6rem; line-height: 1; color: var(--ink-soft); background: var(--surface); border: 1px solid var(--line); transition: background-color 0.2s, color 0.2s; }
.qv-x:hover { color: var(--ink); background: var(--surface-2); }
.qv-media { position: relative; display: grid; place-items: center; padding: 2rem; background: linear-gradient(160deg, var(--indigo-soft), var(--surface-2)); color: var(--indigo); }
[data-theme="dark"] .qv-media { color: var(--indigo-deep); }
.qv-art svg { width: min(64%, 170px); height: auto; margin: 0 auto; }
.qv-badges { position: absolute; bottom: 1.2rem; left: 1.2rem; display: flex; gap: 0.45rem; flex-wrap: wrap; }
.qv-badges .tag-lvl { position: static; }
.qv-info { padding: clamp(1.4rem, 3vw, 2.1rem); overflow-y: auto; }
.qv-info .c-rate { padding: 0; }
.qv-name { font-size: clamp(1.4rem, 3vw, 1.8rem); font-weight: 800; letter-spacing: -0.02em; margin: 0.5rem 0 0.3rem; line-height: 1.15; }
.qv-by { font-size: 0.88rem; color: var(--ink-faint); margin-bottom: 0.9rem; }
.qv-by b { color: var(--ink-soft); font-weight: 600; }
.qv-desc { color: var(--ink-soft); margin-bottom: 1rem; }
.qv-meta { display: flex; flex-wrap: wrap; gap: 0.5rem 1.2rem; margin-bottom: 0.9rem; font-size: 0.85rem; color: var(--ink-faint); }
.qv-meta span { display: inline-flex; align-items: center; gap: 0.4rem; }
.qv-meta svg { color: var(--indigo); }
[data-theme="dark"] .qv-meta svg { color: var(--indigo-deep); }
.qv-prog { margin-bottom: 1.2rem; }
.qv-lbl { display: block; font-family: var(--sans); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-faint); margin-bottom: 0.6rem; }
.qv-mods { list-style: none; counter-reset: m; padding: 0; margin: 0 0 1.4rem; display: flex; flex-direction: column; gap: 0.5rem; }
.qv-mods li { counter-increment: m; display: flex; gap: 0.7rem; align-items: flex-start; padding: 0.7rem 0.85rem; background: var(--surface-2); border: 1px solid var(--line); border-radius: 11px; }
.qv-mods li::before { content: counter(m, decimal-leading-zero); font-family: var(--sans); font-weight: 800; font-size: 0.82rem; color: var(--indigo); flex: none; line-height: 1.5; }
[data-theme="dark"] .qv-mods li::before { color: var(--indigo-deep); }
.qv-mods b { display: block; font-family: var(--sans); font-size: 0.92rem; font-weight: 700; color: var(--ink); }
.qv-mods i { font-style: normal; font-size: 0.82rem; color: var(--ink-faint); }
.qv-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.qv-enroll { display: inline-flex; align-items: center; padding: 0.85rem 1.6rem; font-family: var(--sans); font-weight: 700; color: var(--on-accent); background: linear-gradient(135deg, var(--violet), var(--indigo-deep)); border-radius: 13px; box-shadow: var(--shadow-md); transition: transform 0.2s, box-shadow 0.2s; }
[data-theme="dark"] .qv-enroll { color: #fff; }
.qv-enroll:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.qv-guar { font-size: 0.82rem; color: var(--ink-faint); }

/* ── Responsive ── */
@media (max-width: 1040px) {
  .hero { grid-template-columns: 1fr; }
  .hero-stage { order: -1; max-width: 400px; margin: 0 auto; }
  .cur-wrap { grid-template-columns: 1fr; }
  .cur-side { position: static; }
  .qv { grid-template-columns: 1fr; max-height: 92vh; overflow-y: auto; }
  .qv-media { padding: 1.6rem; }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .brand { margin: 0 auto 0 0.4rem; }
  .nav-links { margin: 0; }
  .shop { grid-template-columns: 1fr; }
  .cats { position: static; flex-direction: row; flex-wrap: wrap; gap: 1.2rem 1.8rem; }
  .cats .facet { flex: 1 1 200px; }
  .cats-help { flex-basis: 100%; padding-top: 1rem; }
  .enroll-inner { grid-template-columns: 1fr; }
  .foot-cols { grid-template-columns: 1fr 1fr; }
  .trust-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .ef-row { grid-template-columns: 1fr; }
  .news-form { flex-direction: column; }
  .foot-cols { grid-template-columns: 1fr; }
  .rv-grid { columns: 1; }
  .sec-head { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 390px) {
  .trust-row { grid-template-columns: 1fr; }
  .grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.1rem; }
  .acc-lessons { padding-left: 1.3rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ann-track, .marquee-row, .hc-bar i::after { animation: none; }
  .ann-track { transform: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
