/* SINAV CANAVARI — tasarım sistemi v3 (2026-07-16, açık tema yeniden kuruluş)
   Kurucu talebi: açık tema + özgün font + maskot odaklı kimlik.
   Font: Baloo 2 (başlık, yuvarlak-tombul = canavar kişiliği) + Figtree (gövde). Self-hosted, latin-ext (TR).
   Accent tek değişkenden döner (maskot seçimine göre): --accent* blokunu değiştir, tüm site döner. */

@font-face { font-family: 'Clash Display'; src: url('/assets/fonts/ClashDisplay-500.woff2') format('woff2'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'Clash Display'; src: url('/assets/fonts/ClashDisplay-600.woff2') format('woff2'); font-weight: 600; font-display: swap; }
@font-face { font-family: 'Clash Display'; src: url('/assets/fonts/ClashDisplay-700.woff2') format('woff2'); font-weight: 700; font-display: swap; }
@font-face { font-family: 'Switzer'; src: url('/assets/fonts/Switzer-400.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Switzer'; src: url('/assets/fonts/Switzer-500.woff2') format('woff2'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'Switzer'; src: url('/assets/fonts/Switzer-600.woff2') format('woff2'); font-weight: 600; font-display: swap; }
@font-face { font-family: 'Switzer'; src: url('/assets/fonts/Switzer-700.woff2') format('woff2'); font-weight: 700; font-display: swap; }

:root {
    --bg: #ffffff;
    --bg2: #f6f8fb;             /* bölüm/alternatif zemin */
    --panel: #ffffff;
    --panel2: #fbfcfe;
    --line: #e5eaf1;
    --text: #101828;
    --muted: #5d6b82;

    /* ── ACCENT (maskot seçimiyle değişir) ── */
    --accent: #0d3b2e;          /* buton/dolgu (beyaz metinle 5.3:1) */
    --accent-bright: #16a34a;   /* vurgu/ikon */
    --accent-text: #0d3b2e;     /* açık zeminde metin (4.6:1) */
    --accent-soft: #e9f7ee;     /* yumuşak zemin */
    --accent-line: #bfe6cc;

    --cta: #f59e0b;             /* dönüşüm rengi (amber) */
    --cta-hover: #fbbf24;
    --cta-text: #451a03;        /* amber üstünde koyu metin (7:1, beyaz 2.15:1 kalıyordu) */
    --danger: #dc2626;
    --ok: #16a34a;

    --radius: 16px;
    --shadow: 0 1px 2px rgba(16, 24, 40, .05), 0 8px 24px rgba(16, 24, 40, .06);
    --shadow-lift: 0 4px 10px rgba(16, 24, 40, .08), 0 16px 36px rgba(16, 24, 40, .10);
    --maxw: 1120px;
    --font-display: 'Clash Display', system-ui, sans-serif;
    --font-body: 'Switzer', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

img { max-width: 100%; height: auto; }
a { color: var(--accent-text); text-decoration: none; }
a:hover { text-decoration: underline; }
:focus-visible { outline: 2.5px solid var(--accent-bright); outline-offset: 2px; border-radius: 4px; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; letter-spacing: -.015em; line-height: 1.14; }
h1 { font-size: clamp(32px, 5.2vw, 56px); font-weight: 700; }
h2 { font-size: clamp(24px, 3.6vw, 36px); }
h3 { font-size: 19px; }
.lead { font-size: clamp(16px, 2.2vw, 19px); color: var(--muted); }

/* ── navbar ── */
.nav {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}
.nav-in { display: flex; align-items: center; gap: 18px; height: 64px; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--text); letter-spacing: .01em; }
.nav-logo:hover { text-decoration: none; }
.nav-logo .mark { font-size: 26px; line-height: 1; display: flex; flex-shrink: 0; }
.nav-logo .mark img { width: 34px; height: 34px; }
.nav-logo em { font-style: normal; color: var(--accent-bright); }
.nav-links { display: flex; align-items: center; gap: 22px; margin-left: auto; }
.nav-links a { color: var(--muted); font-size: 15px; font-weight: 700; }
.nav-links a:hover { color: var(--text); text-decoration: none; }
/* nav CTA: link rengi butonu ezmesin (spesifiklik) */
.nav-links a.btn-brand, .nav-links a.btn-brand:hover { color: #fff; }
.nav-cta-short { display: none; }

/* ── butonlar ── */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 24px; border-radius: 999px;
    font-family: var(--font-body); font-weight: 800; font-size: 15px; line-height: 1;
    border: 1.5px solid transparent; cursor: pointer; white-space: nowrap;
    transition: transform .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }
.btn-brand { background: var(--accent); color: #fff; }
.btn-brand:hover { background: var(--accent-bright); }
.btn-cta { background: var(--cta); color: var(--cta-text); box-shadow: 0 4px 14px rgba(245, 158, 11, .35); }
.btn-cta:hover { background: var(--cta-hover); }
.btn-ghost { background: #fff; color: var(--text); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--accent-bright); color: var(--accent-text); }
.btn-lg { padding: 15px 32px; font-size: 16px; }
.btn-block { width: 100%; }

/* ── hero ── */
.hero { padding: 68px 0 52px; text-align: center; position: relative; overflow: hidden; background: linear-gradient(180deg, var(--accent-soft) 0%, rgba(255,255,255,0) 72%); }
.hero .mascot { font-size: 64px; line-height: 1; display: block; margin-bottom: 16px; }
.hero .mascot img { width: 132px; height: 132px; margin: 0 auto; display: block; }
.hero h1 em { font-style: normal; color: var(--accent-bright); }
.hero .lead { max-width: 640px; margin: 14px auto 30px; }
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-note { margin-top: 14px; font-size: 13.5px; color: var(--muted); }

/* ── istatistik şeridi ── */
.stats { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; padding: 8px 0; }
.stat {
    background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 14px 22px; min-width: 150px; text-align: center; box-shadow: var(--shadow);
}
.stat b { display: block; font-family: var(--font-display); font-size: 25px; font-weight: 700; color: var(--accent-text); }
.stat span { font-size: 13px; color: var(--muted); }

/* ── bölümler ── */
.section { padding: 56px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 36px; }
.section-head p { color: var(--muted); margin-top: 10px; }

/* ── sınav kartları ── */
.exam-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.exam-card {
    display: flex; flex-direction: column; gap: 8px;
    background: var(--panel); border: 1px solid var(--line);
    border-left: 5px solid var(--exam-color, var(--accent-bright));
    border-radius: var(--radius); padding: 20px;
    color: var(--text); box-shadow: var(--shadow);
    transition: transform .12s ease, box-shadow .12s ease;
}
.exam-card:hover { text-decoration: none; transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.exam-card .top { display: flex; align-items: center; gap: 10px; }
.exam-card .icon { font-size: 26px; line-height: 1; }
.exam-card .name { font-family: var(--font-display); font-weight: 600; font-size: 18px; }
.exam-card .desc { font-size: 13.5px; color: var(--muted); flex: 1; }
.exam-card .meta { font-size: 13px; color: var(--exam-color, var(--accent-text)); font-weight: 800; }

/* ── özellik kartları ── */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; }
.feature {
    background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 22px; box-shadow: var(--shadow);
}
.feature .f-icon { font-size: 30px; display: block; margin-bottom: 10px; }
.feature h3 { margin-bottom: 8px; }
.feature p { font-size: 14px; color: var(--muted); }

/* ── fiyat kartları ── */
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px; align-items: stretch; max-width: 900px; margin: 0 auto; }
.price-card {
    background: var(--panel); border: 1.5px solid var(--line); border-radius: var(--radius);
    padding: 26px 24px; display: flex; flex-direction: column; gap: 14px; text-align: center;
    box-shadow: var(--shadow);
}
.price-card.hot { border-color: var(--cta); position: relative; box-shadow: var(--shadow-lift); }
.price-card.hot::before {
    content: "EN AVANTAJLI"; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--cta); color: #451a03; font-size: 11px; font-weight: 900;
    letter-spacing: .06em; padding: 4px 12px; border-radius: 999px;
}
.price-card .p-name { font-family: var(--font-display); font-weight: 600; font-size: 18px; }
.price-card .p-amount { font-family: var(--font-display); font-size: 38px; font-weight: 700; color: var(--accent-text); }
.price-card .p-amount small { font-size: 15px; color: var(--muted); font-weight: 600; font-family: var(--font-body); }
.price-card ul { list-style: none; text-align: left; font-size: 14px; color: var(--muted); display: grid; gap: 8px; flex: 1; }
.price-card ul li::before { content: "✓ "; color: var(--ok); font-weight: 900; }

/* ── formlar ── */
.form-card {
    background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 30px 26px; max-width: 420px; margin: 40px auto; box-shadow: var(--shadow-lift);
}
.form-card h1 { font-size: 27px; margin-bottom: 6px; }
.form-card .sub { color: var(--muted); font-size: 14px; margin-bottom: 20px; }
.field { margin-bottom: 15px; }
.field label { display: block; font-size: 13.5px; font-weight: 700; margin-bottom: 6px; }
.input {
    width: 100%; padding: 12px 14px; border-radius: 12px;
    background: #fff; border: 1.5px solid var(--line); color: var(--text);
    font-size: 15px; font-family: var(--font-body);
}
.input::placeholder { color: #9aa7ba; }
.input:focus { outline: none; border-color: var(--accent-bright); box-shadow: 0 0 0 3px var(--accent-soft); }
.form-alt { text-align: center; font-size: 14px; color: var(--muted); margin-top: 16px; }
.alert { border-radius: 12px; padding: 12px 14px; font-size: 14px; margin-bottom: 15px; }
.alert-err { background: #fef2f2; border: 1px solid #fecaca; color: #b91c1c; }
.alert-ok { background: #f0fdf4; border: 1px solid #bbf7d0; color: #15803d; }

/* ── CTA bandı ── */
.cta-band {
    background: var(--accent-soft);
    border: 1px solid var(--accent-line); border-radius: var(--radius);
    padding: 40px 28px; text-align: center;
}
.cta-band h2 { margin-bottom: 10px; }
.cta-band p { color: var(--muted); margin-bottom: 22px; }

/* ── footer ── */
.footer { margin-top: auto; border-top: 1px solid var(--line); background: var(--bg2); padding: 36px 0 26px; }
.footer-in { display: flex; flex-wrap: wrap; gap: 24px; justify-content: space-between; align-items: flex-start; }
.footer .f-brand { font-family: var(--font-display); font-weight: 600; font-size: 17px; }
.footer .f-brand em { font-style: normal; color: var(--accent-bright); }
.footer .f-brand p { font-family: var(--font-body); font-weight: 400; font-size: 13px; color: var(--muted); margin-top: 6px; max-width: 260px; }
.footer nav { display: flex; flex-wrap: wrap; gap: 8px 18px; font-size: 13.5px; }
.footer nav a { color: var(--muted); }
.footer nav a:hover { color: var(--text); }
.footer .f-copy { width: 100%; text-align: center; font-size: 12.5px; color: var(--muted); margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--line); }

/* ── yardımcılar ── */
.badge {
    display: inline-block; padding: 5px 12px; border-radius: 999px;
    font-size: 12px; font-weight: 800; letter-spacing: .04em;
    background: var(--accent-soft); color: var(--accent-text); border: 1px solid var(--accent-line);
}
.badge-green { background: #f0fdf4; color: #15803d; border-color: #bbf7d0; }
.center { text-align: center; }
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 28px; }

@media (max-width: 640px) {
    .hero { padding: 44px 0 38px; }
    .section { padding: 40px 0; }
    .stat { min-width: calc(50% - 6px); padding: 12px 14px; }
    .hero-ctas .btn { width: 100%; }
    .nav-links a.nav-hide-m { display: none; }
    .nav-in { gap: 10px; }
    .nav-links { gap: 12px; }
    .nav-logo { font-size: 16px; }
    .nav-logo .mark { font-size: 21px; }
    .nav-logo .mark img { width: 28px; height: 28px; }
    .nav-links .btn { padding: 8px 14px !important; font-size: 13.5px; }
    .nav-cta-full { display: none; }
    .nav-cta-short { display: inline; }
}

/* ══ v5: ürün-odaklı ana sayfa bileşenleri (AI-slop temizliği) ══ */
.ic { display: inline-flex; align-items: center; justify-content: center; flex: none; }
.icon-chip {
    width: 44px; height: 44px; border-radius: 13px; display: flex; align-items: center; justify-content: center;
    background: color-mix(in srgb, var(--c, var(--accent-bright)) 11%, #fff);
    color: var(--c, var(--accent-bright)); flex: none;
}
.icon-chip svg { width: 22px; height: 22px; }

.kicker {
    display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; border-radius: 999px;
    background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow);
    font-size: 13px; font-weight: 700; color: var(--muted);
}
.kicker b { color: var(--accent-text); }

.hero-product { padding: 56px 0 64px; overflow: hidden; background: linear-gradient(180deg, var(--accent-soft) 0%, rgba(255,255,255,0) 60%); }
.hero-split { display: grid; grid-template-columns: 1.08fr .92fr; gap: 44px; align-items: center; }
.hero-copy h1 { margin: 16px 0 14px; }
.hero-copy h1 em { font-style: normal; color: var(--accent-bright); }
.hero-copy .lead { max-width: 520px; }
.hero-copy .hero-ctas { justify-content: flex-start; margin-top: 26px; }
.hero-trust { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 22px; font-size: 13.5px; color: var(--muted); font-weight: 600; }
.hero-trust span, .hero-trust a { display: inline-flex; gap: 6px; align-items: center; }
.hero-trust a { color: var(--muted); text-decoration: none; }
.hero-trust a:hover { color: var(--accent-text); text-decoration: underline; }
.hero-trust svg { width: 15px; height: 15px; color: var(--accent-bright); }

.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-visual .mascot-img { position: absolute; left: -12px; bottom: -6px; width: 128px; z-index: 3; filter: drop-shadow(0 10px 18px rgba(16,24,40,.18)); }
.phone {
    width: min(300px, 78vw); border-radius: 38px; border: 9px solid #101828;
    box-shadow: 0 24px 60px rgba(16,24,40,.22); overflow: hidden; background: #fff; position: relative; z-index: 2;
}
.phone img { display: block; width: 100%; }
.float-chip {
    position: absolute; z-index: 4; display: flex; align-items: center; gap: 8px;
    background: #fff; border: 1px solid var(--line); border-radius: 13px; padding: 9px 13px;
    box-shadow: var(--shadow-lift); font-size: 13px; font-weight: 700;
}
.float-chip svg { width: 17px; height: 17px; }
.chip-1 { top: 9%; right: -6px; color: #b45309; }
.chip-2 { bottom: 17%; right: -18px; color: var(--accent-text); }

.steps { display: grid; gap: 0; max-width: 780px; margin: 0 auto; }
.step { display: grid; grid-template-columns: 86px 1fr; gap: 20px; padding: 26px 0; border-bottom: 1px solid var(--line); align-items: start; }
.step:last-child { border-bottom: 0; }
.step .no { font-family: var(--font-display); font-weight: 700; font-size: 44px; color: var(--accent-line); line-height: 1; }
.step h3 { margin-bottom: 6px; }
.step p { color: var(--muted); font-size: 15px; max-width: 560px; }

.shot-row { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.shot-card { border: 1px solid var(--line); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lift); background: #fff; }
.shot-card img { display: block; width: 100%; }
.check-list { list-style: none; display: grid; gap: 14px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; }
.check-list li svg { width: 20px; height: 20px; color: var(--accent-bright); flex: none; margin-top: 2px; }
.check-list li b { display: block; font-size: 16px; }
.check-list li span { color: var(--muted); font-size: 14px; }

@media (max-width: 860px) {
    .hero-split { grid-template-columns: 1fr; gap: 34px; text-align: center; }
    .hero-copy .hero-ctas { justify-content: center; }
    .hero-copy .lead { margin: 0 auto; }
    .hero-trust { justify-content: center; }
    .hero-visual { margin-top: 6px; }
    .hero-visual .mascot-img { width: 96px; left: 2vw; }
    .float-chip { display: none; }  /* dar ekranda telefon içine biniyordu (doğrulama bulgusu) */
    .shot-row { grid-template-columns: 1fr; gap: 26px; }
    .step { grid-template-columns: 56px 1fr; gap: 14px; padding: 20px 0; }
    .step .no { font-size: 32px; }
}

/* lig sıralama madalyaları (emoji yerine) */
.rank-medal { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; border-radius: 50%; font-size: 11.5px; font-weight: 800; color: #fff; margin-right: 2px; }
.rank-1 { background: #d97706; } .rank-2 { background: #94a3b8; } .rank-3 { background: #b45309; }

/* ══ v6: dönüşüm katmanı (canlı sayaç · geri sayım · AI vitrini · popup) ══ */
.live-dot { width: 9px; height: 9px; border-radius: 50%; background: #16a34a; display: inline-block; position: relative; flex: none; }
.live-dot::after { content: ""; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid rgba(22,163,74,.45); animation: scpulse 1.6s ease-out infinite; }
@keyframes scpulse { 0% { transform: scale(.6); opacity: 1; } 100% { transform: scale(1.5); opacity: 0; } }

.chip-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 18px; }
.count-chip, .days-chip {
    display: inline-flex; align-items: center; gap: 8px; padding: 8px 15px; border-radius: 999px;
    font-size: 13.5px; font-weight: 800; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow);
}
.count-chip b { color: var(--accent-text); }
.days-chip { color: #b45309; border-color: #fde68a; background: #fffbeb; }
.days-chip.urgent { color: #b91c1c; border-color: #fecaca; background: #fef2f2; }
.days-chip svg { width: 15px; height: 15px; }

.exam-card .days { font-size: 12.5px; font-weight: 800; color: #b45309; display: flex; align-items: center; gap: 5px; }
.exam-card .days.urgent { color: #b91c1c; }
.exam-card .days svg { width: 13px; height: 13px; }

/* AI Öğretmen vitrini */
.ai-hero { background: var(--bg2); }
.ai-demo-chat { background: #fff; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow-lift); padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.ai-demo-chat .hd { display: flex; align-items: center; gap: 10px; padding-bottom: 12px; border-bottom: 1px solid var(--line); font-weight: 800; font-size: 14.5px; }
.ai-demo-chat .hd img { width: 34px; height: 34px; }
.ai-demo-chat .hd .st { margin-left: auto; display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--accent-text); font-weight: 700; }
.dm { max-width: 86%; padding: 11px 14px; border-radius: 14px; font-size: 13.8px; line-height: 1.55; }
.dm.u { background: var(--accent-soft); border: 1px solid var(--accent-line); align-self: flex-end; border-bottom-right-radius: 4px; }
.dm.b { background: var(--bg2); border: 1px solid var(--line); align-self: flex-start; border-bottom-left-radius: 4px; white-space: pre-line; }
.ai-fake-input { display: flex; gap: 8px; margin-top: 4px; }
.ai-fake-input .input { pointer-events: none; background: var(--bg2); }

/* popup */
.sc-pop-ov { position: fixed; inset: 0; background: rgba(16,24,40,.45); z-index: 90; display: none; align-items: center; justify-content: center; padding: 20px; backdrop-filter: blur(3px); }
.sc-pop { background: #fff; border-radius: 22px; max-width: 400px; width: 100%; padding: 30px 26px 26px; text-align: center; box-shadow: 0 30px 80px rgba(16,24,40,.35); position: relative; }
.sc-pop img { width: 96px; margin: 0 auto 10px; display: block; }
.sc-pop h3 { font-size: 22px; margin-bottom: 8px; }
.sc-pop p { color: var(--muted); font-size: 14.5px; margin-bottom: 16px; }
.sc-pop .pop-days { display: inline-flex; margin-bottom: 14px; }
.sc-pop-x { position: absolute; top: 12px; right: 16px; background: none; border: none; font-size: 26px; color: var(--muted); cursor: pointer; line-height: 1; }

/* ══ v7: KPSS şeridi · büyük sayaç · ciddi çipler · demo · sınav satırları · toast ══ */
.ribbon {
    position: sticky; top: 0; z-index: 60;
    background: #101828; color: #e6edf7;
    font-size: 13.5px; font-weight: 700;
}
.ribbon .container { display: flex; align-items: center; justify-content: center; gap: 14px; padding: 9px 20px; flex-wrap: wrap; }
.ribbon b { color: #fbbf24; font-variant-numeric: tabular-nums; }
.ribbon .rb-cta { color: #4ade80; text-decoration: none; font-weight: 800; white-space: nowrap; }
.ribbon .rb-cta:hover { text-decoration: underline; }
.nav { top: 39px; }
@media (max-width: 640px) {
    .ribbon .container { gap: 8px; padding: 8px 12px; font-size: 12px; flex-wrap: nowrap; }
    .ribbon .nav-hide-m { display: none; }  /* sayaç span'ı gizlenmiyordu (selector scope bug'ı) → şerit 2 satıra çıkıp nav'ı eziyordu */
    .nav { top: 35px; }
}

/* ciddi sayaç bloğu */
.big-counter {
    display: inline-flex; flex-direction: column; gap: 2px;
    border: 1px solid var(--line); border-left: 4px solid var(--accent-bright);
    background: #fff; border-radius: 14px; padding: 14px 22px; box-shadow: var(--shadow);
}
.big-counter .n { font-family: var(--font-display); font-weight: 700; font-size: clamp(34px, 4.5vw, 46px); line-height: 1; color: var(--text); font-variant-numeric: tabular-nums; display: flex; align-items: center; gap: 10px; }
.big-counter .l { font-size: 12px; font-weight: 800; letter-spacing: .08em; color: var(--muted); text-transform: uppercase; }
.count-chip { font-variant-numeric: tabular-nums; color: var(--text); }
.count-chip b { font-weight: 800; }

/* demo bölümü */
.demo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: start; }
@media (max-width: 900px) { .demo-grid { grid-template-columns: 1fr; } }
.demo-card { background: #fff; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow-lift); padding: 22px; }
.demo-card .dc-hd { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 15px; padding-bottom: 12px; border-bottom: 1px solid var(--line); margin-bottom: 14px; }
.demo-card .dc-hd .icon-chip { width: 36px; height: 36px; border-radius: 10px; }
.dq-q { font-size: 15.5px; font-weight: 700; line-height: 1.55; margin-bottom: 12px; }
.dq-opt { display: flex; gap: 10px; align-items: flex-start; width: 100%; text-align: left; background: var(--bg2); border: 1.5px solid var(--line); border-radius: 10px; padding: 11px 13px; margin-bottom: 8px; color: var(--text); font-family: inherit; font-size: 14px; line-height: 1.45; cursor: pointer; }
.dq-opt:hover { border-color: var(--accent-bright); }
.dq-opt .k { flex: none; width: 22px; height: 22px; border-radius: 6px; background: #fff; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 12px; }
.dq-opt.ok { border-color: #22c55e; background: #f0fdf4; }
.dq-opt.ok .k { background: #16a34a; color: #fff; border-color: #16a34a; }
.dq-opt.no { border-color: var(--danger); background: #fef2f2; }
.dq-opt.no .k { background: var(--danger); color: #fff; border-color: var(--danger); }
.dq-acik { display: none; background: var(--accent-soft); border: 1px solid var(--accent-line); border-radius: 10px; padding: 11px 13px; font-size: 13.5px; line-height: 1.55; margin-top: 4px; }
.dq-meta { font-size: 12.5px; color: var(--muted); font-weight: 700; margin-bottom: 8px; }
.dq-next { margin-top: 10px; width: 100%; display: none; }
.dq-final { text-align: center; display: none; }
.dq-final .sc { font-family: var(--font-display); font-size: 40px; font-weight: 700; color: var(--accent-text); }
/* v15: mobil denetim, dar ekranda (#dq-mail: e-posta + Gönder, #da-form: soru + Sor) input+buton
   yan yana sıkışıp placeholder ortadan/kelime içinden kesiliyordu (verify bulgusu: 360px'te
   "Net raporun + çalışm…" gibi). Diğer CTA'lar gibi mobilde alt alta, tam genişlik. */
@media (max-width: 640px) {
    #dq-mail, #da-form { flex-direction: column; }
    #dq-mail button, #da-form button { width: 100%; }
}

/* sınav satırları */
.exam-rows { display: grid; gap: 12px; }
.exam-row { display: grid; grid-template-columns: 52px 1fr auto; gap: 16px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 16px 18px; box-shadow: var(--shadow); transition: transform .12s, box-shadow .12s; }
.exam-row:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); text-decoration: none; }
.exam-row .er-name { font-family: var(--font-display); font-weight: 600; font-size: 17px; color: var(--text); }
.exam-row .er-sub { font-size: 13px; color: var(--muted); }
.exam-row .er-meta { text-align: right; display: flex; flex-direction: column; gap: 3px; align-items: flex-end; }
.exam-row .er-price { font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--accent-text); }
.exam-row .er-days { font-size: 12px; font-weight: 800; color: #b45309; }
.exam-row .er-days.urgent { color: #b91c1c; }
.exam-row .er-cnt { font-size: 12px; color: var(--muted); font-variant-numeric: tabular-nums; }
.exam-featured { border: 2px solid var(--accent-bright); background: linear-gradient(140deg, var(--accent-soft), #fff 55%); position: relative; }
.exam-featured::before { content: "EN POPÜLER"; position: absolute; top: -11px; left: 22px; background: var(--accent); color: #fff; font-size: 10.5px; font-weight: 900; letter-spacing: .07em; padding: 3px 11px; border-radius: 999px; }
@media (max-width: 640px) { .exam-row { grid-template-columns: 44px 1fr; } .exam-row .er-meta { grid-column: 1 / -1; flex-direction: row; justify-content: space-between; width: 100%; align-items: center; } }

/* aktivite toast'ları (sol alt) */
.sc-toast {
    position: fixed; left: 16px; bottom: 16px; z-index: 70;
    display: flex; align-items: center; gap: 10px;
    background: #fff; border: 1px solid var(--line); border-radius: 14px;
    padding: 11px 16px 11px 12px; box-shadow: var(--shadow-lift);
    font-size: 13px; font-weight: 600; color: var(--text); max-width: 320px;
    transform: translateX(-120%); transition: transform .45s cubic-bezier(.2,.9,.3,1.1);
}
.sc-toast.on { transform: translateX(0); }
.sc-toast img { width: 30px; height: 30px; flex: none; }
.sc-toast .t-sub { display: block; font-size: 11.5px; color: var(--muted); font-weight: 600; }
@media (max-width: 640px) { .sc-toast { max-width: 250px; font-size: 12px; } }
/* v15: mobil denetim, .sticky-cta (yapışkan alt CTA bar, ≤860px'te görünür) toast'ın tam üstüne
   biniyordu (z-index 80 > 70), toast görünmez oluyordu (verify bulgusu). Bar aktif olmasa da
   sorun yok, sadece biraz daha yukarıda oturur. */
@media (max-width: 860px) { .sc-toast { bottom: calc(78px + env(safe-area-inset-bottom)); } }

/* maskot mikro-etkileşim */
.mascot-live { cursor: pointer; touch-action: manipulation; }
.mascot-live.boing { animation: scboing .55s cubic-bezier(.3,1.6,.4,1); }
@keyframes scboing { 0% { transform: scale(1); } 30% { transform: scale(1.12, .88) rotate(-3deg); } 60% { transform: scale(.94, 1.06) rotate(2deg); } 100% { transform: scale(1); } }
.mascot-live .pupil { transition: transform .08s linear; }

/* ══ v9: K3 inceleme fix'leri ══ */
h1 { text-wrap: balance; }
.shot-card { aspect-ratio: 19/16; background: var(--bg2); }   /* lazy img yüklenene dek kutu (CLS); gerçek dosya 760x640 = 19:16, önceki 520/480 oranı yanlıştı ve yüklenince küçük bir sıçrama oluyordu (verify bulgusu) */
.demo-card form .input { min-width: 0; }
#da-log { overscroll-behavior: contain; }
.er-price, .price-card .p-amount, .stat b { font-variant-numeric: tabular-nums; }
@media (max-width: 640px) {
    .hero-visual .mascot-img { display: none; }   /* 375px'te telefonun üstüne biniyordu (K3 bulgusu) */
    h1 { font-size: clamp(28px, 8vw, 38px); }
    .big-counter { padding: 11px 18px; }
    .big-counter .n { font-size: 30px; }
}

/* ══ v10: Kimi tasarım turu (A1 marker+canlı · B1 snap-ray · A3 yapışkan CTA · C1 çapa) ══ */
/* A1: keçeli kalem altı çizgisi */
.marker-wrap { position: relative; display: inline-block; }
.marker-wrap svg { position: absolute; left: -2%; bottom: -6px; width: 104%; height: 12px; overflow: visible; }
.marker-wrap path { stroke: var(--accent-bright); stroke-width: 5; fill: none; stroke-linecap: round; opacity: .85; }
@media (prefers-reduced-motion: no-preference) {
    .marker-wrap path { stroke-dasharray: 1; stroke-dashoffset: 1; }
    .marker-wrap.cizildi path { transition: stroke-dashoffset .6s ease-out; stroke-dashoffset: 0; }
}

/* B1: mobilde sınavlar yatay snap-rayı + renk kodlu gün çipleri */
.er-days.yesil { color: #15803d; }
@media (max-width: 640px) {
    .exam-rows { display: flex; overflow-x: auto; gap: 12px; scroll-snap-type: x mandatory; scroll-padding-inline: 16px; padding-bottom: 10px; margin: 0 -20px; padding-left: 20px; padding-right: 20px; -webkit-overflow-scrolling: touch; mask-image: linear-gradient(90deg, transparent 0, #000 14px, #000 calc(100% - 14px), transparent 100%); }
    .exam-row { flex: 0 0 78%; scroll-snap-align: start; grid-template-columns: 44px 1fr; }
    .exam-row:active { transform: scale(.98); }
    .rail-ipucu { display: block; text-align: center; font-size: 12px; color: var(--muted); margin-top: 2px; }
}
@media (min-width: 641px) { .rail-ipucu { display: none; } }

/* A3: yapışkan mobil CTA barı (hero geçilince görünür, demo/footer'da gizlenir) */
.sticky-cta {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
    display: none; align-items: center; gap: 12px;
    background: rgba(255,255,255,.96); backdrop-filter: blur(8px);
    border-top: 1px solid var(--line); padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    transform: translateY(110%); transition: transform .32s cubic-bezier(.2,.9,.3,1.15);
}
.sticky-cta.on { transform: translateY(0); }
.sticky-cta .sc-fiyat { font-size: 12.5px; color: var(--muted); line-height: 1.3; }
.sticky-cta .sc-fiyat b { display: block; color: var(--text); font-size: 14px; }
.sticky-cta .btn { flex: 1; }
@media (max-width: 860px) { .sticky-cta { display: flex; } }
@media (prefers-reduced-motion: reduce) { .sticky-cta { transition: none; } }

/* C1: fiyat count-up titremesin */
.p-amount { font-variant-numeric: tabular-nums; }

.badge-zayif { background: #fffbeb; color: #b45309; border-color: #fde68a; }

/* ══ v12: Kimi kalan 5 konsept (A2 dönen ekranlar · B2 pill+kart · B3 sparkline · C2 fiş · C3 segment) ══ */
/* A2: telefonda dönen mini-ekranlar */
.phone-screens { position: relative; width: 100%; aspect-ratio: 300/620; background: #fff; }
.pscr { position: absolute; inset: 0; padding: 18px 14px; opacity: 0; transform: translateY(8px); transition: opacity .22s ease, transform .22s ease; display: flex; flex-direction: column; gap: 8px; }
.pscr.on { opacity: 1; transform: none; transition: opacity .38s ease .14s, transform .38s ease .14s; }
@media (prefers-reduced-motion: reduce) { .pscr { transition: none; } }
.pscr .p-chip { align-self: flex-start; font-size: 10px; font-weight: 800; letter-spacing: .05em; color: var(--accent-text); background: var(--accent-soft); border-radius: 999px; padding: 3px 9px; }
.pscr .p-soru { font-size: 12.5px; font-weight: 700; line-height: 1.45; }
.pscr .p-opt { font-size: 11px; border: 1.5px solid var(--line); border-radius: 8px; padding: 7px 9px; display: flex; gap: 6px; align-items: center; }
.pscr .p-opt .k { width: 16px; height: 16px; border-radius: 5px; background: var(--bg2); display: inline-flex; align-items: center; justify-content: center; font-weight: 800; font-size: 9px; flex: none; }
.pscr .p-opt.ok { border-color: #22c55e; background: #f0fdf4; }
.pscr .p-opt.ok .k { background: #16a34a; color: #fff; }
.pscr .p-bubble { font-size: 11px; line-height: 1.5; border-radius: 11px; padding: 8px 10px; max-width: 88%; }
.pscr .p-bubble.u { background: var(--accent-soft); border: 1px solid var(--accent-line); align-self: flex-end; }
.pscr .p-bubble.b { background: var(--bg2); border: 1px solid var(--line); align-self: flex-start; white-space: pre-line; }
.pscr .p-graf { display: flex; align-items: flex-end; gap: 7px; height: 110px; padding: 8px 6px 0; }
.pscr .p-bar { flex: 1; background: linear-gradient(180deg, var(--accent-bright), var(--accent)); border-radius: 5px 5px 0 0; min-height: 8%; }
.pscr .p-not { font-size: 11px; color: var(--muted); text-align: center; }
.p-dots { position: absolute; bottom: 8px; left: 0; right: 0; display: flex; gap: 5px; justify-content: center; z-index: 5; }
.p-dots i { width: 6px; height: 6px; border-radius: 50%; background: var(--line); transition: background .2s; }
.p-dots i.on { background: var(--accent-bright); }

/* B2: sınav pill-bar + tek zengin kart (desktop) */
.pill-bar { position: relative; display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; margin-bottom: 22px; }
.pill-bar button { position: relative; z-index: 2; border: 1.5px solid var(--line); background: #fff; color: var(--muted); border-radius: 999px; padding: 9px 18px; font-family: var(--font-body); font-weight: 800; font-size: 14px; cursor: pointer; display: inline-flex; align-items: center; gap: 7px; transition: color .15s, border-color .15s; }
.pill-bar button[aria-pressed="true"] { color: #fff; background: var(--accent); border-color: var(--accent); }
.pill-bar button .pulse { width: 7px; height: 7px; border-radius: 50%; background: #dc2626; position: relative; }
.pill-bar button .pulse::after { content: ""; position: absolute; inset: -3px; border-radius: 50%; border: 2px solid rgba(220,38,38,.4); animation: scpulse 1.6s ease-out infinite; }
.exam-detail { max-width: 760px; margin: 0 auto; }
.exam-detail .ed-card { display: none; }
.exam-detail .ed-card.on { display: block; animation: edin .18s ease-out; }
@keyframes edin { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .exam-detail .ed-card.on { animation: none; } }
.sparkline { width: 130px; height: 34px; overflow: visible; }
.sparkline polyline { fill: none; stroke: var(--accent-bright); stroke-width: 2.5; stroke-linecap: round; stroke-dasharray: 1; stroke-dashoffset: 1; }
/* transition DEĞİL animation: kart display:none→block girişinde interpolasyon başlangıç karesi yok,
   transition anında sona atlıyordu (verify bulgusu). Animasyon render-tree girişinde her seferinde oynar (edin gibi). */
.ed-card.on .sparkline polyline { animation: cizgicek .5s ease-out .12s both; }
@keyframes cizgicek { from { stroke-dashoffset: 1; } to { stroke-dashoffset: 0; } }
@media (prefers-reduced-motion: reduce) { .sparkline polyline { stroke-dashoffset: 0 !important; animation: none !important; } }
@media (max-width: 640px) { .pill-bar, .exam-detail { display: none; } }
@media (min-width: 641px) { .exam-rows, .rail-ipucu { display: none !important; } }

/* C2: fiş kartı */
.fis { position: relative; padding-bottom: 34px !important; mask: conic-gradient(from 135deg at 50% calc(100% - 1px), #0000 90deg, #000 0) 50% / 18px 100%; }
.fis .fis-ayrac { border: none; border-top: 2px dashed var(--line); margin: 4px 0 10px; }
.fis ul li { border-bottom: 1px dashed var(--line); padding-bottom: 7px; }
.fis .fis-toplam { display: flex; justify-content: space-between; font-family: var(--font-display); font-weight: 700; font-size: 19px; padding: 8px 2px 2px; }
.fis .fis-maskot { position: absolute; top: -34px; right: -14px; width: 74px; transform: rotate(9deg); filter: drop-shadow(0 6px 12px rgba(16,24,40,.15)); z-index: 3; }
@media (prefers-reduced-motion: no-preference) {
    .fis.yazdir { clip-path: inset(0 0 100% 0); }
    .fis.yazdir.basildi { clip-path: inset(0 0 0% 0); transition: clip-path .7s ease-out; }
    .fis.yazdir li { opacity: 0; transform: translateY(4px); }
    .fis.yazdir.basildi li { opacity: 1; transform: none; transition: opacity .3s ease, transform .3s ease; }
    .fis.yazdir.basildi li:nth-child(1){transition-delay:.20s} .fis.yazdir.basildi li:nth-child(2){transition-delay:.26s}
    .fis.yazdir.basildi li:nth-child(3){transition-delay:.32s} .fis.yazdir.basildi li:nth-child(4){transition-delay:.38s}
    .fis.yazdir.basildi li:nth-child(5){transition-delay:.44s} .fis.yazdir.basildi li:nth-child(6){transition-delay:.50s}
    .fis.yazdir.basildi li:nth-child(7){transition-delay:.56s}
    .fis.yazdir.basildi .fis-toplam { animation: fispop .3s ease-out .62s backwards; }
    @keyframes fispop { from { transform: scale(.96); } to { transform: scale(1); } }
}

/* C3: segment toggle + tasarruf rozeti */
.seg-bar { position: relative; display: inline-flex; background: var(--bg2); border: 1px solid var(--line); border-radius: 999px; padding: 4px; margin: 0 auto 26px; }
.seg-wrap { text-align: center; }
.seg-bar button { position: relative; z-index: 2; border: none; background: none; color: var(--muted); font-family: var(--font-body); font-weight: 800; font-size: 14.5px; padding: 10px 22px; border-radius: 999px; cursor: pointer; min-height: 44px; }
.seg-bar button[aria-pressed="true"] { color: #fff; }
.seg-glider { position: absolute; z-index: 1; top: 4px; bottom: 4px; border-radius: 999px; background: var(--accent); transition: transform .22s cubic-bezier(.3,.9,.3,1), width .22s cubic-bezier(.3,.9,.3,1); }
@media (prefers-reduced-motion: reduce) { .seg-glider { transition: none; } }
.gorunum { display: none; }
.gorunum.on { display: block; animation: edin .15s ease-out; }
.tasarruf-rozet { display: inline-block; background: var(--cta); color: var(--cta-text); font-weight: 900; font-size: 13px; border-radius: 999px; padding: 6px 14px; margin-top: 8px; }
.gorunum.on .tasarruf-rozet { animation: rozetpop .45s cubic-bezier(.34,1.56,.64,1) .12s backwards; }
@keyframes rozetpop { from { transform: scale(.5); opacity: 0; } to { transform: scale(1); opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .gorunum.on .tasarruf-rozet { animation: none; } }

/* ══ v14: K3 final denetim düzeltmeleri (derinlik + mikro-etkileşim + tutarlılık) ══ */
/* telefon parallax zemini + temas gölgesi (havada süzülme hissini yere bağlar) */
.hero-visual { perspective: 1100px; }
.hero-visual::after { content: ""; position: absolute; bottom: -22px; left: 50%; transform: translateX(-50%); width: 62%; height: 34px; background: radial-gradient(ellipse at center, rgba(16,24,40,.17), transparent 68%); filter: blur(5px); z-index: 1; pointer-events: none; }
.phone { transition: transform .2s ease; will-change: transform; }
.float-chip { transition: translate .25s ease; }
@media (prefers-reduced-motion: reduce) { .phone, .float-chip { transition: none; } }
/* kart hover hiyerarşisi: tıklanabilirlik hissi */
@media (hover: hover) {
    .price-card, .ed-card { transition: transform .16s ease, box-shadow .16s ease; }
    .price-card:hover, .ed-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }
}
/* demo şıklarına basma hissi */
.dq-opt:active { transform: scale(.985); }
/* "Nasıl çalışıyor" sıralı fade-up (JS .bekliyor/.gorun) */
.steps.bekliyor .step { opacity: 0; transform: translateY(14px); }
.steps.gorun .step { opacity: 1; transform: none; transition: opacity .5s ease, transform .5s ease; }
.steps.gorun .step:nth-child(2) { transition-delay: .09s; }
.steps.gorun .step:nth-child(3) { transition-delay: .18s; }
@media (prefers-reduced-motion: reduce) { .steps.bekliyor .step { opacity: 1; transform: none; } }
/* fiş kartı rozeti: "EN AVANTAJLI" paket görünümünün; tek sınavda çelişmesin */
.fis.hot::before { content: "EN POPÜLER"; }
/* v14.1: 375px nav taşması (Fiyatlar linki mobilde açılınca satır ~12px taşıyordu — verify bulgusu) */
@media (max-width: 480px) {
    .nav-in { gap: 6px; }
    .nav-links { gap: 6px; }
    .nav-links a { font-size: 12.5px; }
    .nav-links .btn { padding: 8px 9px !important; font-size: 12.5px; }
    .nav-logo { font-size: 13px; gap: 5px; }
    .nav-logo .mark img { width: 25px; height: 25px; }
}
/* v15: mobil denetim (2026-07-20), 355-389px arası ikon (.mark) flex-shrink ile 0'a inip
   kayboluyordu (SVG'nin width/height'i yok, otomatik min-boyutu 0 kabul ediliyor); yukarıdaki
   sıkıştırma ikonu koruyacak kadar yer açar. 641-767px "ölü bölge": mobil breakpoint (640) biter
   bitmez nav-hide-m linkleri + büyük ikon geri geliyor, o dar aralıkta gerçek yatay taşma oluşuyordu
   (verify bulgusu), aynı sıkıştırmayı burada da uygula. */
@media (min-width: 641px) and (max-width: 767px) {
    .nav-links a.nav-hide-m { display: none; }
    .nav-in { gap: 10px; }
    .nav-links { gap: 12px; }
    .nav-logo { font-size: 16px; }
    .nav-logo .mark { font-size: 21px; }
    .nav-logo .mark img { width: 28px; height: 28px; }
}
/* v14.2: fiş köşe maskotu mobilde viewport'u 4px taşırıyordu (kart tam-genişlikken right:-14 dışarı sarkar) */
@media (max-width: 640px) {
    .fis .fis-maskot { right: 4px; top: -30px; width: 64px; }
}
/* yasal doküman tipografisi */
.yasal-doc h2 { font-size: 17px; margin: 22px 0 8px; color: var(--accent-text); }
.yasal-doc p, .yasal-doc li { font-size: 14.5px; color: var(--text); margin-bottom: 10px; }
.yasal-doc ul { padding-left: 20px; }
/* SSS akordeon */
.sss-item { background: var(--panel); border: 1px solid var(--line); border-radius: 12px; margin-bottom: 8px; padding: 0 16px; }
.sss-item summary { cursor: pointer; font-weight: 700; font-size: 15px; padding: 14px 0; list-style: none; position: relative; padding-right: 28px; }
.sss-item summary::after { content: "+"; position: absolute; right: 2px; top: 50%; transform: translateY(-50%); font-size: 19px; color: var(--accent-bright); font-weight: 800; transition: transform .15s; }
.sss-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.sss-item p { padding: 0 0 14px; font-size: 14.5px; color: var(--muted); }
/* rehber gövde tipografisi */
.rehber-govde h2 { font-size: 20px; margin: 24px 0 10px; }
.rehber-govde h3 { font-size: 16.5px; margin: 18px 0 8px; }
.rehber-govde p { font-size: 15px; line-height: 1.7; margin-bottom: 12px; }
.rehber-govde ul, .rehber-govde ol { padding-left: 22px; margin-bottom: 12px; }
.rehber-govde li { font-size: 15px; line-height: 1.65; margin-bottom: 6px; }
/* ana sayfa oyun köşesi */
.oyun-kart { display: flex; align-items: center; gap: 16px; max-width: 640px; margin: 0 auto; background: linear-gradient(120deg, var(--accent-soft), #fff 70%); border: 1.5px solid var(--accent-line); border-radius: var(--radius); padding: 14px 18px; color: var(--text); text-decoration: none; box-shadow: var(--shadow); }
.oyun-kart:hover { text-decoration: none; transform: translateY(-2px); box-shadow: var(--shadow-lift); transition: transform .15s, box-shadow .15s; }
.oyun-kart img { flex: none; }
.oyun-kart > span:first-of-type { flex: 1; min-width: 0; }
.oyun-kart b { display: block; font-size: 16px; }
.oyun-kart small { color: var(--muted); font-size: 13px; line-height: 1.5; }
@media (max-width: 480px) { .oyun-kart .btn { display: none; } }
/* kırıntı yolu (BreadcrumbList şemasının görünür karşılığı) */
.kirinti { margin: 0 0 14px; }
.kirinti ol { list-style: none; display: flex; flex-wrap: wrap; align-items: center; gap: 6px; padding: 0; margin: 0; font-size: 13px; }
.kirinti li { display: flex; align-items: center; gap: 6px; color: var(--muted); min-width: 0; }
.kirinti li + li::before { content: "›"; color: var(--line); font-size: 15px; line-height: 1; }
.kirinti a { color: var(--muted); text-decoration: none; }
.kirinti a:hover { color: var(--accent-text); text-decoration: underline; }
.kirinti span[aria-current] { color: var(--text); font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 60vw; }
/* takvim sayfaları */
.tk-satir { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; background: var(--panel); border: 1px solid var(--line); border-radius: 12px; padding: 12px 15px; margin-bottom: 8px; }
.tk-satir.gecti { opacity: .62; }
.tk-satir .tk-ad { flex: 1; min-width: 190px; font-weight: 650; font-size: 15px; }
.tk-satir .tk-ad small { display: block; font-weight: 400; font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.tk-satir .tk-tarih { font-size: 14px; font-variant-numeric: tabular-nums; white-space: nowrap; }
.tk-cevap { background: var(--accent-soft); border: 1.5px solid var(--accent-line); border-radius: var(--radius); padding: 15px 18px; margin-bottom: 18px; }
.tk-cevap b { font-size: 17px; display: block; margin-bottom: 4px; }
.tk-cevap p { font-size: 14.5px; color: var(--muted); margin: 0; line-height: 1.6; }
.tk-kaynak { font-size: 12.5px; color: var(--muted); margin-top: 14px; }
@media (max-width: 520px) { .tk-satir { gap: 8px; } .tk-satir .tk-ad { min-width: 100%; } }
/* v18: nav'a "Takvim" linki eklenince 768-860px bandında 5 link + Giriş + CTA sığmıyordu.
   Ölçüm (768px): logo 194 + nav 561 = 755px gereken, kullanılabilir 728px → 27px taşma.
   641-767 zaten sıkıştırılmış bantta (nav-hide-m gizli); burada link gizlemeye gerek yok,
   boşluk + punto sıkıştırması yetiyor (gereken ~690px). */
@media (min-width: 768px) and (max-width: 860px) {
    .nav-in { gap: 10px; }
    .nav-links { gap: 12px; }
    .nav-links a { font-size: 14px; }
    .nav-logo { font-size: 17px; }
}
/* çözümlü örnek soru kartları */
.soru-kart { background: var(--panel); border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px; margin-bottom: 12px; }
.soru-kart .soru-no { font-size: 12px; font-weight: 700; color: var(--accent-text); letter-spacing: .04em; text-transform: uppercase; margin: 0 0 6px; }
.soru-kart .soru-metin { font-size: 15.5px; line-height: 1.6; margin: 0 0 12px; font-weight: 600; }
.soru-siklar { list-style: none; padding: 0; margin: 0 0 12px; display: grid; gap: 6px; }
.soru-siklar li { display: flex; gap: 9px; align-items: baseline; font-size: 14.5px; line-height: 1.55; color: var(--muted); }
.sik-harf { flex: none; width: 22px; height: 22px; border-radius: 7px; background: var(--accent-soft); color: var(--accent-text); font-size: 12px; font-weight: 800; display: inline-flex; align-items: center; justify-content: center; }
.soru-cevap { margin: 0; background: transparent; border-style: dashed; }
.soru-cevap p { padding-bottom: 8px; }
.soru-cevap p:last-child { padding-bottom: 14px; }
/* şifresiz hesap hatırlatma şeridi (misafir checkout sonrası) */
.sifre-serit { background: #fef3c7; border-bottom: 1px solid #fde68a; color: #713f12; font-size: 13.5px; }
.sifre-serit .container { display: flex; align-items: center; gap: 12px; padding-top: 9px; padding-bottom: 9px; flex-wrap: wrap; }
.sifre-serit span { flex: 1; min-width: 180px; line-height: 1.45; }
.sifre-serit a { color: #713f12; font-weight: 700; text-decoration: underline; white-space: nowrap; }
.sifre-serit .ss-kapat { flex: none; background: none; border: 0; font-size: 19px; line-height: 1; color: #a16207; cursor: pointer; padding: 0 2px; }
.sifre-serit .ss-kapat:hover { color: #713f12; }
@media (max-width: 520px) { .sifre-serit { font-size: 12.5px; } }
/* giriş/kayıt masaüstü düzeni: form + değer sütunu (≥900px). Mobilde sütun gizli, form aynen. */
.auth-yan { display: none; }
@media (min-width: 900px) {
    .container:has(> .auth-duzen) { display: grid; grid-template-columns: minmax(0,420px) minmax(0,380px);
        gap: 44px; align-items: start; justify-content: center; }
    .auth-duzen { min-width: 0; }
    .auth-yan { display: block; padding-top: 30px; min-width: 0; }
    .auth-yan h2 { font-size: 19px; margin-bottom: 14px; }
    .auth-yan ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
    .auth-yan li { display: grid; gap: 2px; padding-left: 26px; position: relative; }
    .auth-yan li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 18px; height: 18px;
        border-radius: 6px; background: var(--accent-soft); color: var(--accent-text);
        font-size: 11px; font-weight: 800; display: flex; align-items: center; justify-content: center; }
    .auth-yan li b { font-size: 14.5px; }
    .auth-yan li span { font-size: 13.5px; color: var(--muted); line-height: 1.5; }
    .auth-yan-not { margin-top: 18px; padding: 11px 14px; border-radius: 10px; background: var(--accent-soft);
        border: 1px solid var(--accent-line); font-size: 13.5px; color: var(--accent-text); }
}
/* taban puanları arama + tablo */
.taban-form { display: grid; grid-template-columns: 1fr; gap: 9px; }
.taban-form .input { font-weight: 400; }
@media (min-width: 760px) { .taban-form { grid-template-columns: 2.2fr 1fr 1fr auto; align-items: center; } }

/* Dar ekranda ders tablosu yatay kayıyor ama kullanıcı bunu fark etmeyebilir; en az kritik
   sütun (beklenen pay) gizlenir, hikâyeyi ağırlık + havuzda + karşılama zaten anlatıyor. */
@media (max-width: 640px) {
  .taban-tablo table th.gizle-dar, .taban-tablo table td.gizle-dar { display: none; }
  /* min-width:640 kalırsa sütun gizlemek işe yaramaz, tablo yine kayar. Yalnız az sütunlu
     tabloda (.tablo-dar) sınır gevşetilir; /taban-puanlari gibi çok sütunlularda kaydırma doğru. */
  .taban-tablo.tablo-dar table { min-width: 0; font-size: 12.5px; }
  .taban-tablo.tablo-dar th, .taban-tablo.tablo-dar td { padding: 8px 7px; }
}
.taban-tablo { overflow-x: auto; border: 1px solid var(--line); border-radius: 12px; background: var(--panel); }
.taban-tablo table { width: 100%; border-collapse: collapse; font-size: 13.5px; min-width: 640px; }
.taban-tablo th, .taban-tablo td { padding: 9px 11px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
.taban-tablo th { font-size: 12px; text-transform: uppercase; letter-spacing: .03em; color: var(--muted); background: var(--accent-soft); position: sticky; top: 0; }
.taban-tablo tr:last-child td { border-bottom: 0; }
.taban-tablo td.r, .taban-tablo th.r { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }
.taban-tablo td small { display: block; color: var(--muted); font-size: 11.5px; margin-top: 2px; }
.taban-tablo a { font-weight: 650; }
.tur-cip { display: inline-block; padding: 2px 8px; border-radius: 999px; background: var(--accent-soft); color: var(--accent-text); font-size: 11.5px; font-weight: 700; white-space: nowrap; }
.bos-puan { font-weight: 400; color: var(--muted); font-size: 12px; }
.taban-sayfa { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 16px; font-size: 13.5px; color: var(--muted); }
/* bölüm sayfası tür sekmeleri */
.bolum-sekme { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.bolum-sekme .btn { padding: 7px 14px; font-size: 13px; }
/* bölüm bulutu (hub'dan bölüm sayfalarına iç link) */
.bolum-bulut { display: flex; flex-wrap: wrap; gap: 7px; }
.bolum-bulut a { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 999px;
    border: 1px solid var(--line); background: var(--panel); font-size: 13px; font-weight: 600; color: var(--text); text-decoration: none; }
.bolum-bulut a:hover { border-color: var(--accent-line); background: var(--accent-soft); color: var(--accent-text); text-decoration: none; }
.bolum-bulut a span { font-size: 11.5px; font-weight: 700; color: var(--muted); }
/* yıllık değişim rozeti (taban puan tabloları) */
.dg { font-size: 12.5px; font-weight: 700; padding: 1px 7px; border-radius: 999px; white-space: nowrap; }
.dg-arti { background: #fee2e2; color: #991b1b; }   /* puan yükseldi = girmek zorlaştı */
.dg-eksi { background: #dcfce7; color: #14532d; }   /* puan düştü = girmek kolaylaştı */
.dg-esit { background: var(--accent-soft); color: var(--muted); }
/* kanıt şeridi — header altı, /kapsama sayfasına bağlı */
.kanit{display:flex;align-items:center;justify-content:center;gap:26px;flex-wrap:wrap;
  padding:9px 18px;background:#f2f9f5;border-bottom:1px solid var(--accent-line);
  font-size:13.5px;color:#3f5a4a;text-decoration:none;line-height:1.35;text-align:center}
.kanit:hover{background:#e9f5ee;text-decoration:none}
.kanit b{color:#0f2a1a;font-weight:700}
.kanit-ok{color:var(--accent-text);font-weight:700;white-space:nowrap}
@media (max-width:900px){.kanit{gap:14px;font-size:12.5px;padding:8px 14px}.kanit-son{display:none}}
@media (max-width:560px){.kanit-orta{display:none}}
/* v16 (2026-07-30, kurucu 16724): .fis'teki conic mask tüm elemanı kırptığı için
   üstten taşan EN POPÜLER rozeti ve maskot dilimleniyordu. Mask kaldırıldı;
   fiş tırtığı alt kenara ::after zigzag bindirmesiyle çizilir (taşanlar artık kesilmez). */
.fis { mask: none !important; -webkit-mask: none !important; overflow: visible; }
.fis::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 10px;
    background: linear-gradient(-45deg, var(--bg, #f7f9fb) 7px, transparent 0),
                linear-gradient(45deg, var(--bg, #f7f9fb) 7px, transparent 0);
    background-size: 18px 12px; background-repeat: repeat-x; background-position: left bottom; }
/* v16.1 (kurucu 16726): mask kalktı ama .yazdir clip-path'i kart kutusu DIŞINA
   taşan rozeti (top:-12px) yine kesiyordu. Kesin çözüm: fiş kartlarında rozet
   kutunun İÇİNE alınır; clip animasyonuna dokunulmaz. */
.fis.price-card.hot { padding-top: 36px !important; }
.fis.price-card.hot::before { top: 10px; }
/* v16.2 (kurucu 16729): dışarı taşan maskot üstteki sekme çubuğuna binip kopuk
   görünüyordu; rozetle aynı ilke — kartın İÇİNE, sağ üst köşeye alındı. */
/* SVG'de preserveAspectRatio=none + oransız intrinsic: iki boyut da AÇIKÇA
   verilmezse tarayici 300x150 varsayilana esnetir (deforme canavarin koku).
   Gercek oran 1386x1234 ~ 9:8 — iki boyut birlikte, orana sadik. */
.fis .fis-maskot { top: 10px; right: 12px; width: 72px; height: 64px; transform: rotate(8deg); }
@media (max-width: 640px) { .fis .fis-maskot { top: 10px; right: 10px; width: 58px; height: 52px; } }

/* ===== ÖĞRETMEN SINAV landing v2 (GPT-5.6 3-turlu, 16968) ===== */
:root {
  --os-yesil: #0d3b2e;
  --os-sari: #f2b705;
  --os-koyu: #082a21;
  --os-metin: #17382e;
  --os-gri: #61736c;
  --os-acik: #eef3f0;
  --os-krem: #f7f4eb;
  --os-cizgi: #d8e1dd;
  --os-beyaz: #ffffff;
  --os-golge: 0 22px 60px rgba(13, 59, 46, 0.12);
  --os-serif: Georgia, "Times New Roman", serif;
  --os-sans: Inter, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--os-metin);
  background: var(--os-beyaz);
  font-family: var(--os-sans);
  line-height: 1.6;
}

.os-home {
  min-width: 0;
  overflow: hidden;
}

.os-home h1,
.os-home h2,
.os-home h3,
.os-home p,
.os-home ol {
  margin-top: 0;
}

.os-home h1,
.os-home h2 {
  font-family: var(--os-serif);
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.os-home h3 {
  line-height: 1.25;
}

.os-home a {
  color: inherit;
}

.wrap {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-p {
  color: var(--os-beyaz) !important;
  background: var(--os-yesil);
  box-shadow: 0 10px 26px rgba(13, 59, 46, 0.17);
}

.btn-p:hover {
  background: var(--os-koyu);
}

.os-btn-yellow {
  color: var(--os-koyu) !important;
  background: var(--os-sari);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.13);
}

.os-btn-yellow:hover {
  background: #ffca25;
}

.os-btn-large {
  min-height: 54px;
  padding: 15px 25px;
  font-size: 15px;
}

.os-home a:focus-visible,
.os-home summary:focus-visible {
  outline: 3px solid rgba(242, 183, 5, 0.65);
  outline-offset: 4px;
}

.os-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgba(13, 59, 46, 0.1);
  background: rgba(255, 255, 255, 0.97);
}

.os-header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  gap: 34px;
}

.os-logo {
  display: flex;
  flex-direction: column;
  color: var(--os-yesil);
  font-family: var(--os-serif);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.os-logo-main {
  position: relative;
  padding-bottom: 7px;
  font-size: 19px;
  letter-spacing: 0.025em;
}

.os-logo-main::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 4px;
  border-radius: 3px;
  background: var(--os-sari);
  content: "";
}

.os-logo-sub {
  margin-top: 4px;
  font-family: var(--os-sans);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.45em;
}

.os-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.os-nav a,
.os-login-link {
  color: #3a584f;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.os-nav a:hover,
.os-login-link:hover {
  color: var(--os-yesil);
}

.os-header-actions {
  display: flex;
  align-items: center;
  gap: 17px;
}

.os-header-actions .btn {
  min-height: 41px;
  padding: 10px 17px;
}

.os-hero {
  position: relative;
  padding-top: 88px;
  background:
    linear-gradient(90deg, rgba(13, 59, 46, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(13, 59, 46, 0.035) 1px, transparent 1px),
    #fafbf8;
  background-size: 42px 42px;
}

.os-hero::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
  background: linear-gradient(180deg, rgba(242, 183, 5, 0.12), transparent 70%);
  content: "";
  pointer-events: none;
}

.os-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(370px, 0.82fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}

.os-eyebrow,
.os-kicker {
  color: #806000;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.os-eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 23px;
}

.os-eyebrow span {
  width: 30px;
  height: 3px;
  background: var(--os-sari);
}

.os-hero h1 {
  max-width: 760px;
  margin-bottom: 27px;
  color: var(--os-yesil);
  font-size: clamp(51px, 6vw, 80px);
}

.os-hero h1 mark {
  position: relative;
  z-index: 1;
  color: inherit;
  background: transparent;
}

.os-hero h1 mark::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  z-index: -1;
  height: 11px;
  background: var(--os-sari);
  content: "";
}

.os-hero-lead {
  max-width: 710px;
  margin-bottom: 30px;
  color: #3d5b52;
  font-size: 18px;
  line-height: 1.72;
}

.os-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 23px;
}

.os-text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--os-yesil) !important;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.os-text-link:hover {
  text-decoration: underline;
}

.os-product-note {
  display: flex;
  max-width: 720px;
  align-items: flex-start;
  gap: 11px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--os-cizgi);
}

.os-product-note > span {
  display: grid;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  place-items: center;
  border-radius: 50%;
  color: var(--os-beyaz);
  background: var(--os-yesil);
  font-size: 11px;
  font-weight: 900;
}

.os-product-note p {
  margin-bottom: 0;
  color: var(--os-gri);
  font-size: 12px;
}

.os-product-note strong {
  color: var(--os-yesil);
}

.os-ekys-card {
  position: relative;
  padding: 31px;
  border: 1px solid rgba(13, 59, 46, 0.17);
  background: var(--os-beyaz);
  box-shadow: var(--os-golge);
}

.os-ekys-card::before {
  position: absolute;
  top: 12px;
  right: -12px;
  bottom: -12px;
  left: 12px;
  z-index: -1;
  background: var(--os-sari);
  content: "";
}

.os-ekys-card-head,
.os-exam-heading,
.os-exam-card header,
.os-exam-card footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.os-ekys-card-head {
  align-items: center;
  margin-bottom: 26px;
}

.os-upcoming-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #765900;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.os-upcoming-badge i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--os-sari);
  box-shadow: 0 0 0 5px rgba(242, 183, 5, 0.18);
}

.os-ekys-year {
  color: #9eaca7;
  font-family: var(--os-serif);
  font-size: 27px;
  font-weight: 700;
}

.os-ekys-name {
  margin-bottom: 8px;
  color: var(--os-gri);
  font-size: 11px;
  font-weight: 700;
}

.os-ekys-card h2 {
  margin-bottom: 26px;
  color: var(--os-yesil);
  font-size: 31px;
}

.os-ekys-dates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 17px;
  background: var(--os-acik);
}

.os-ekys-dates div {
  padding: 17px;
}

.os-ekys-dates div + div {
  border-left: 1px solid #cfdbd6;
}

.os-ekys-dates span,
.os-ekys-dates strong {
  display: block;
}

.os-ekys-dates span {
  margin-bottom: 4px;
  color: #71827b;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.os-ekys-dates strong {
  color: var(--os-yesil);
  font-size: 12px;
}

.os-ekys-disclaimer {
  margin-bottom: 17px;
  color: var(--os-gri);
  font-size: 11px;
  line-height: 1.55;
}

.os-ekys-card .btn {
  width: 100%;
}

.os-quick-links {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 82px;
}

.os-quick-links a {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 13px;
  padding: 22px 27px;
  border: 1px solid var(--os-cizgi);
  border-right: 0;
  background: rgba(255, 255, 255, 0.94);
  text-decoration: none;
}

.os-quick-links a:last-child {
  border-right: 1px solid var(--os-cizgi);
}

.os-quick-links > a > span {
  color: var(--os-sari);
  font-family: var(--os-serif);
  font-size: 21px;
  font-weight: 700;
}

.os-quick-links strong,
.os-quick-links small {
  display: block;
}

.os-quick-links strong {
  color: var(--os-yesil);
  font-size: 13px;
}

.os-quick-links small {
  color: var(--os-gri);
  font-size: 10px;
}

.os-section {
  padding: 104px 0;
}

.os-section-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 35px;
}

.os-kicker {
  display: block;
  margin-bottom: 12px;
}

.os-section-header h2,
.os-faq h2 {
  margin-bottom: 0;
  color: var(--os-yesil);
  font-size: clamp(39px, 4.5vw, 57px);
}

.os-section-header > p {
  margin-bottom: 5px;
  color: var(--os-gri);
  font-size: 14px;
}

.os-calendar-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
  padding: 16px 19px;
  border-left: 4px solid var(--os-sari);
  background: #fff9e5;
}

.os-info-icon {
  display: grid;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: var(--os-beyaz);
  background: #8a6800;
  font-family: var(--os-serif);
  font-weight: 700;
}

.os-calendar-note strong {
  color: #5f4b0d;
  font-size: 13px;
}

.os-calendar-note p {
  margin: 1px 0 0;
  color: #796b3b;
  font-size: 11px;
}

.os-active-exam {
  display: grid;
  grid-template-columns: 145px 1fr 190px;
  min-height: 200px;
  margin-bottom: 20px;
  border: 2px solid var(--os-yesil);
  background: linear-gradient(110deg, #eef6f2, var(--os-beyaz) 60%);
}

.os-active-code {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  color: var(--os-beyaz);
  background: var(--os-yesil);
}

.os-active-code small {
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.os-active-code strong {
  font-family: var(--os-serif);
  font-size: 29px;
}

.os-active-content {
  padding: 26px 30px;
}

.os-exam-heading {
  justify-content: flex-start;
  margin-bottom: 14px;
}

.os-exam-heading time,
.os-exam-card time,
.os-date-unknown {
  color: var(--os-gri);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.07em;
  line-height: 1.5;
}

.os-exam-card time b {
  color: var(--os-yesil);
  font-size: 11px;
}

.os-status {
  display: inline-flex;
  flex: 0 0 auto;
  min-height: 23px;
  align-items: center;
  padding: 5px 9px;
  border-radius: 4px;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.09em;
  line-height: 1;
}

.os-status-active {
  color: var(--os-beyaz);
  background: var(--os-yesil);
}

.os-status-soon {
  color: #604900;
  background: #ffe172;
}

.os-status-calendar {
  color: #415b52;
  background: #e3eae7;
}

.os-active-content h3 {
  margin-bottom: 9px;
  color: var(--os-yesil);
  font-family: var(--os-serif);
  font-size: 26px;
}

.os-active-content p {
  margin-bottom: 0;
  color: var(--os-gri);
  font-size: 13px;
}

.os-active-action {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 24px;
  border-left: 1px solid var(--os-cizgi);
}

.os-verified {
  color: #267058;
  font-size: 9px;
  font-weight: 800;
}

.os-active-action .os-verified {
  text-align: center;
}

.os-status-guide {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  margin-bottom: 18px;
  color: var(--os-gri);
  font-size: 10px;
}

.os-status-guide span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.os-status-guide i {
  width: 8px;
  height: 8px;
  border-radius: 2px;
}

.os-dot-yellow {
  background: var(--os-sari);
}

.os-dot-gray {
  background: #b4c2bd;
}

.os-exam-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.os-exam-card {
  display: flex;
  min-height: 286px;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--os-cizgi);
  background: var(--os-beyaz);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.os-exam-card:hover {
  transform: translateY(-3px);
  border-color: #aabcb5;
  box-shadow: 0 14px 34px rgba(13, 59, 46, 0.08);
}

.os-exam-card-muted {
  background: #f8faf9;
}

.os-exam-type {
  display: block;
  margin: 19px 0 7px;
  color: #866500;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.os-exam-card h3 {
  margin-bottom: 18px;
  color: var(--os-yesil);
  font-family: var(--os-serif);
  font-size: 21px;
}

.os-card-audience {
  margin-top: auto;
  padding-top: 13px;
  border-top: 1px solid var(--os-acik);
}

.os-card-audience span {
  display: block;
  margin-bottom: 3px;
  color: #80908a;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.os-card-audience p {
  margin-bottom: 0;
  color: #4d645c;
  font-size: 11px;
  line-height: 1.5;
}

.os-exam-card footer {
  margin: 16px -22px -22px;
  padding: 10px 22px;
  color: #8c9994;
  background: #f1f5f3;
  font-size: 9px;
  font-weight: 800;
}

.os-unverified {
  color: #986d27;
}

.os-no-exam {
  color: var(--os-yesil);
  text-transform: uppercase;
}

.os-tools {
  background: var(--os-krem);
}

.os-tool-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.os-tool-card {
  position: relative;
  min-height: 350px;
  padding: 30px;
  border: 1px solid rgba(13, 59, 46, 0.12);
  background: var(--os-beyaz);
}

.os-tool-number {
  position: absolute;
  top: 27px;
  right: 28px;
  color: #d7dedb;
  font-family: var(--os-serif);
  font-size: 25px;
  font-weight: 700;
}

.os-tool-icon {
  display: grid;
  width: 62px;
  height: 62px;
  margin-bottom: 34px;
  place-items: center;
  color: var(--os-yesil);
  background: var(--os-acik);
}

.os-tool-icon svg {
  width: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.3;
}

.os-tool-card h3 {
  margin-bottom: 12px;
  color: var(--os-yesil);
  font-family: var(--os-serif);
  font-size: 26px;
}

.os-tool-card p {
  color: var(--os-gri);
  font-size: 13px;
}

.os-tool-card small {
  display: block;
  color: #788780;
  font-size: 10px;
}

.os-tool-label {
  display: inline-block;
  margin-top: 10px;
  padding: 5px 8px;
  color: var(--os-yesil);
  background: var(--os-acik);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.09em;
}

.os-process {
  color: var(--os-beyaz);
  background: var(--os-yesil);
}

.os-process-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  align-items: center;
}

.os-process .os-kicker {
  color: var(--os-sari);
}

.os-process-copy h2 {
  margin-bottom: 20px;
  color: var(--os-beyaz);
  font-size: clamp(39px, 4.5vw, 56px);
}

.os-process-copy p {
  max-width: 460px;
  margin-bottom: 27px;
  color: #c4d4ce;
}

.os-steps {
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

.os-steps li {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 22px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.os-steps li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.os-step-number {
  color: var(--os-sari);
  font-family: var(--os-serif);
  font-size: 28px;
  font-weight: 700;
}

.os-steps small {
  display: block;
  margin-bottom: 5px;
  color: var(--os-sari);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.os-steps h3 {
  margin-bottom: 6px;
  color: var(--os-beyaz);
  font-family: var(--os-serif);
  font-size: 23px;
}

.os-steps p {
  margin-bottom: 0;
  color: #bdd0c8;
  font-size: 13px;
}

.os-faq-grid {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  gap: 90px;
  align-items: start;
}

.os-faq header {
  position: sticky;
  top: 30px;
}

.os-faq h2 {
  margin-bottom: 19px;
}

.os-faq header p {
  color: var(--os-gri);
  font-size: 14px;
}

.os-faq-list {
  border-top: 1px solid var(--os-cizgi);
}

.os-faq-list details {
  border-bottom: 1px solid var(--os-cizgi);
}

.os-faq-list summary {
  position: relative;
  padding: 23px 48px 23px 0;
  color: var(--os-yesil);
  cursor: pointer;
  font-family: var(--os-serif);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.35;
  list-style: none;
}

.os-faq-list summary::-webkit-details-marker {
  display: none;
}

.os-faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 6px;
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 50%;
  color: var(--os-yesil);
  background: var(--os-acik);
  content: "+";
  font-family: var(--os-sans);
  font-size: 19px;
  transform: translateY(-50%);
}

.os-faq-list details[open] summary::after {
  content: "−";
}

.os-faq-list details div {
  padding: 0 48px 22px 0;
}

.os-faq-list p {
  margin-bottom: 0;
  color: var(--os-gri);
  font-size: 14px;
}

.os-final {
  padding: 0 0 80px;
}

.os-final-panel {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 65px;
  align-items: center;
  padding: 54px 58px;
  color: var(--os-beyaz);
  background:
    radial-gradient(circle at 92% 15%, rgba(242, 183, 5, 0.2), transparent 24%),
    var(--os-yesil);
}

.os-final-panel > div:first-child > span {
  display: block;
  margin-bottom: 11px;
  color: var(--os-sari);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.os-final h2 {
  max-width: 720px;
  margin-bottom: 14px;
  color: var(--os-beyaz);
  font-size: clamp(35px, 4.4vw, 53px);
}

.os-final p {
  margin-bottom: 0;
  color: #c4d5ce;
}

.os-final-actions {
  display: flex;
  flex-direction: column;
  gap: 13px;
  text-align: center;
}
{
  width: 100%;
}

.os-final-actions small {
  color: #c4d5ce;
  font-size: 11px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .os-hero-grid {
    grid-template-columns: 1fr;
  }

  .os-hero-panel {
    width: 100%;
    min-width: 0;
  }

  .os-process-grid,
  .os-faq-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .os-faq header {
    position: static;
  }

  .os-final-panel {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .os-final-actions {
    width: 100%;
    max-width: 360px;
    align-items: stretch;
  }
}

@media (max-width: 700px) {
  .os-container {
    width: min(100% - 32px, var(--os-genislik));
  }

  .os-hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .os-hero-panel {
    width: 100%;
    min-width: 0;
    padding: 28px 22px;
  }

  .os-exam-grid,
  .os-exams-grid,
  .os-exam-cards,
  .os-sinav-grid {
    grid-template-columns: 1fr;
  }

  .os-steps li {
    grid-template-columns: 46px 1fr;
    gap: 15px;
  }

  .os-faq-grid {
    gap: 36px;
  }

  .os-faq-list summary {
    padding-right: 42px;
  }

  .os-faq-list details div {
    padding-right: 0;
  }

  .os-final {
    padding-bottom: 48px;
  }

  .os-final-panel {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 38px 24px;
  }

  .os-final-actions {
    width: 100%;
    max-width: none;
    flex-direction: column;
    align-items: stretch;
  }

  .os-final-actions > a {
    width: 100%;
  }
}
/* W6 mobil cila: 01-02-03 adim seridi mobilde tek sutun */
@media (max-width: 700px) { .os-quick-links { grid-template-columns: 1fr !important; display: grid; gap: 10px; } }
