/* ============================================================
   Öğrenme Pusulası — tek dosya stil sistemi
   Zemin: saf beyaz · Marka: indigo · CTA: mercan · Grotesk tipografi
   (Gelişim Pusulası sisteminin kardeşi; kimlik rengi farklılaşır.)
   ============================================================ */

@font-face {
    font-family: "Montserrat";
    src: url("/assets/fonts/montserrat-latin-ext.woff2") format("woff2");
    font-weight: 500 800;
    font-display: swap;
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
    font-family: "Montserrat";
    src: url("/assets/fonts/montserrat-latin.woff2") format("woff2");
    font-weight: 500 800;
    font-display: swap;
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    --ink: #0B1533;
    --ink-2: #3A4568;
    --line: #E0E3F0;
    --bg: #FFFFFF;
    --tint: #EEF0FE;

    --brand: #4F46E5;
    --brand-bright: #6366F1;
    --brand-deep: #3A32B8;
    --coral: #FF5A4D;
    --coral-deep: #E63E2E;
    --blue: #1E6DF0;
    --teal: #0EA5A0;
    --pink: #D9316E;
    --violet: #7A45F5;
    --amber: #E8850A;

    --c-yolunda: #0B8F5F;
    --c-izlemede: #C9760A;
    --c-uzman: #DE3B22;

    --font-head: "Montserrat", "Segoe UI", system-ui, -apple-system, sans-serif;
    --font-body: "Helvetica Neue", Helvetica, Arial, "Segoe UI", system-ui, sans-serif;

    --r: 18px;
    --r-sm: 12px;
    --shadow: 0 12px 34px rgba(11, 21, 51, .10), 0 2px 8px rgba(11, 21, 51, .06);
    --shadow-sm: 0 4px 14px rgba(11, 21, 51, .08);
    --shadow-lift: 0 18px 44px rgba(11, 21, 51, .14), 0 4px 12px rgba(11, 21, 51, .07);
    --wrap: 1200px;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--bg);
    -webkit-tap-highlight-color: transparent;
    -webkit-text-size-adjust: 100%;
}
img, svg { display: inline-block; vertical-align: middle; }
a { color: var(--brand-deep); }

h1, h2, h3 {
    font-family: var(--font-head);
    line-height: 1.13;
    letter-spacing: -0.02em;
    color: var(--ink);
    text-wrap: balance;
}
h1 { font-size: clamp(2rem, 4.8vw, 3.05rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; letter-spacing: -0.025em; }
h3 { font-size: 1.1rem; font-weight: 700; letter-spacing: -0.01em; }

.lead { font-size: 1.08rem; color: var(--ink-2); max-width: 62ch; margin-top: .85rem; font-weight: 400; }
.mono { font-family: ui-monospace, "Cascadia Mono", Consolas, monospace; letter-spacing: .06em; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding-left: max(20px, env(safe-area-inset-left)); padding-right: max(20px, env(safe-area-inset-right)); }
.wrap-narrow { max-width: 860px; }
.wrap-form { max-width: 720px; }
.wrap-report { max-width: 880px; }

.icon { width: 1.15em; height: 1.15em; flex: none; }

.skip-link {
    position: absolute; left: -999px; top: 0; z-index: 100;
    background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 0 0 12px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Header / Footer ---------- */
.site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255, 255, 255, .92);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
    padding-top: env(safe-area-inset-top, 0);
}
.header-in { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.brand-name { font-family: var(--font-head); font-weight: 700; font-size: 1.06rem; letter-spacing: -0.01em; }
.site-nav { display: flex; align-items: center; gap: 16px; }
.nav-link { display: inline-flex; align-items: center; min-height: 44px; text-decoration: none; color: var(--ink-2); font-weight: 550; font-size: .95rem; padding: 9px 4px; transition: color .18s var(--ease-out); }
.nav-link:hover { color: var(--ink); }

.site-footer { border-top: 1px solid var(--line); background: var(--tint); margin-top: 56px; padding: 40px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 32px; }
.footer-note { color: var(--ink-2); font-size: .92rem; margin-top: 12px; max-width: 54ch; }
.footer-links { display: grid; gap: 8px; align-content: start; }
.footer-links a { color: var(--ink-2); text-decoration: none; font-size: .95rem; }
.footer-links a:hover { color: var(--brand-deep); text-decoration: underline; }
.footer-line { margin-top: 28px; padding-top: 16px; border-top: 1px solid var(--line); color: var(--ink-2); font-size: .85rem; }

/* ---------- Buttons / Chips ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 22px; border-radius: 14px; border: 1.5px solid transparent;
    font: 600 1rem var(--font-body); text-decoration: none; cursor: pointer;
    white-space: nowrap;
    transition: background-color .2s, color .2s, border-color .2s, box-shadow .2s, transform .18s var(--ease-out);
}
.btn-lg { padding: 15px 26px; font-size: 1.05rem; }
.btn-sm { padding: 10px 15px; font-size: .9rem; border-radius: 11px; }
.btn-block { width: 100%; }
.btn-coral { background: var(--coral); color: #fff; box-shadow: 0 6px 18px rgba(255, 90, 77, .34); }
.btn-coral:hover { background: var(--coral-deep); box-shadow: 0 6px 20px rgba(230, 62, 46, .4); }
.btn-brand { background: var(--brand); color: #fff; box-shadow: 0 6px 18px rgba(79, 70, 229, .3); }
.btn-brand:hover { background: var(--brand-deep); }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink-2); }
.btn-light { background: #fff; color: var(--brand-deep); }
.btn-light:hover { background: var(--tint); }
.btn[disabled] { opacity: .6; cursor: wait; }

.chip {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 13px; border-radius: 999px;
    font-weight: 700; font-size: .88rem; border: 1.5px solid;
}
.chip-lg { font-size: 1rem; padding: 7px 17px; }
.chip-sm { font-size: .78rem; padding: 3px 10px; }
.chip-yolunda  { color: var(--c-yolunda);  border-color: rgba(11,143,95,.35);  background: rgba(11,143,95,.09); }
.chip-izlemede { color: var(--c-izlemede); border-color: rgba(201,118,10,.35);  background: rgba(232,133,10,.10); }
.chip-uzman    { color: var(--c-uzman);    border-color: rgba(222,59,34,.35);   background: rgba(222,59,34,.08); }
.chip-brand    { color: var(--brand-deep); border-color: rgba(79,70,229,.3);    background: rgba(79,70,229,.08); }

/* ---------- Cards / Sections ---------- */
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 22px; }
.section { padding: 72px 0 8px; }
.section-tint { background: var(--tint); padding: 64px 0 72px; margin-top: 56px; }
.section-tint + .section { padding-top: 64px; }
.section-lead { color: var(--ink-2); max-width: 62ch; margin: 10px 0 26px; }
.block-title { margin: 34px 0 14px; }

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

/* ---------- Hero ---------- */
.hero { padding: 64px 0 20px; }
.hero-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 44px; align-items: center; }
.hero h1 { font-family: var(--font-body); font-weight: 600; letter-spacing: -0.022em; }
.hero h1 em { font-style: normal; color: var(--brand); font-weight: 600; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.hero-trust { display: flex; align-items: center; gap: 8px; margin-top: 22px; color: var(--ink-2); font-size: .92rem; }
.hero-trust .icon { color: var(--brand); }

.mock-card {
    background: #fff; border: 1px solid var(--line); border-radius: 22px;
    box-shadow: var(--shadow); padding: 22px; max-width: 430px; margin-left: auto;
    rotate: 1.1deg;
}
.mock-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.mock-title { font-family: var(--font-head); font-weight: 700; }
.mock-row { display: grid; grid-template-columns: 128px 1fr; align-items: center; gap: 12px; font-size: .86rem; color: var(--ink-2); padding: 5px 0; }
.mock-track, .bar-track { display: block; height: 10px; border-radius: 999px; background: #EDEFF7; overflow: hidden; }
.mock-track.thin, .bar-track.thin { height: 7px; }
.mock-track i, .bar-track i { display: block; height: 100%; border-radius: inherit; }
.fill-yolunda { background: var(--c-yolunda); }
.fill-izlemede { background: var(--amber); }
.fill-uzman { background: var(--c-uzman); }
.mock-foot { display: flex; gap: 8px; align-items: center; margin-top: 16px; padding-top: 14px; border-top: 1px dashed var(--line); color: var(--ink-2); font-size: .84rem; }
.mock-foot .icon { color: var(--brand); }
.mock-src { display: flex; gap: 7px; align-items: center; font-size: .82rem; color: var(--ink-2); margin-bottom: 8px; }
.mock-src .who-p { color: var(--brand); font-weight: 700; }
.mock-src .who-t { color: var(--violet); font-weight: 700; }

/* ---------- Step / Domain / Tier cards ---------- */
.step-card { position: relative; padding-top: 26px; }
.step-no {
    display: inline-flex; align-items: center; justify-content: center;
    width: 34px; height: 34px; border-radius: 12px;
    background: var(--brand); color: #fff; font: 700 1rem var(--font-head);
    margin-bottom: 12px;
}
.step-card h3 { margin-bottom: 8px; }
.step-card p { color: var(--ink-2); font-size: .95rem; }

.domain-card { text-align: left; padding: 18px 16px; }
.domain-card p { color: var(--ink-2); font-size: .88rem; margin-top: 6px; }
.domain-ic {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border-radius: 14px; margin-bottom: 10px; flex: none;
}
.domain-ic .icon { width: 22px; height: 22px; }
.ic-indigo { background: rgba(79,70,229,.11);  color: var(--brand); }
.ic-violet { background: rgba(122,69,245,.11); color: var(--violet); }
.ic-blue   { background: rgba(30,109,240,.11); color: var(--blue); }
.ic-teal   { background: rgba(14,165,160,.13); color: var(--teal); }
.ic-coral  { background: rgba(255,90,77,.12);  color: var(--coral-deep); }
.ic-pink   { background: rgba(217,49,110,.11); color: var(--pink); }
.ic-amber  { background: rgba(232,133,10,.14); color: var(--c-izlemede); }

.tier-card { border-top: 4px solid; }
.tier-card-yolunda { border-top-color: var(--c-yolunda); }
.tier-card-izlemede { border-top-color: var(--amber); }
.tier-card-uzman { border-top-color: var(--c-uzman); }
.tier-card p { color: var(--ink-2); font-size: .95rem; margin-top: 12px; }

/* ---------- Trust / FAQ / CTA band ---------- */
.trust-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 36px; align-items: start; }
.trust-grid p { color: var(--ink-2); margin-top: 12px; max-width: 62ch; }
.trust-box h3 { display: flex; align-items: center; gap: 8px; }
.trust-box .icon { color: var(--brand); }
.trust-box p { font-size: .95rem; margin: 10px 0 14px; }
.text-link { font-weight: 650; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; color: var(--brand-deep); }
.text-link:hover { text-decoration: underline; }

.faq { border: 1px solid var(--line); border-radius: var(--r-sm); background: #fff; margin-bottom: 10px; overflow: hidden; }
.faq summary {
    padding: 16px 18px; cursor: pointer; font-weight: 650; list-style: none;
    display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font: 500 1.3rem var(--font-head); color: var(--brand); }
.faq[open] summary::after { content: "–"; }
.faq p { padding: 0 18px 16px; color: var(--ink-2); }

.cta-band { background: linear-gradient(120deg, var(--brand) 0%, var(--brand-deep) 100%); margin-top: 72px; }
.cta-band-in { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 44px 20px; flex-wrap: wrap; }
.cta-band h2, .cta-band p { color: #fff; }
.cta-band p { opacity: .92; margin-top: 6px; }

/* ---------- Forms ---------- */
.form-card { margin-top: 26px; padding: 26px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 650; margin-bottom: 7px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.label-note { color: var(--ink-2); font-weight: 500; font-size: .85rem; }
.label-req { color: var(--coral-deep); font-weight: 600; font-size: .85rem; }
.field input[type="text"], .field select, .field textarea {
    width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--r-sm);
    font: 500 1rem var(--font-body); color: var(--ink); background: #fff;
    transition: border-color .2s, box-shadow .2s;
}
.field textarea { min-height: 80px; resize: vertical; line-height: 1.5; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(79,70,229,.16); }
.field-hint { color: var(--ink-2); font-size: .86rem; margin-top: 6px; }
.consent-field { background: var(--tint); border-radius: var(--r-sm); padding: 14px; }
.check-row { display: flex; gap: 10px; align-items: flex-start; font-size: .95rem; cursor: pointer; }
.check-row input { width: 19px; height: 19px; margin-top: 2px; accent-color: var(--brand); flex: none; cursor: pointer; }
.form-note { display: flex; align-items: center; gap: 8px; justify-content: center; color: var(--ink-2); font-size: .88rem; margin-top: 14px; }
.form-note .icon { color: var(--brand); }

.alert {
    background: rgba(230,62,46,.07); border: 1.5px solid rgba(230,62,46,.3);
    color: var(--c-uzman); border-radius: var(--r-sm); padding: 13px 16px; margin: 18px 0; font-weight: 550;
}
.note-box {
    display: flex; gap: 10px; align-items: flex-start;
    background: rgba(79,70,229,.06); border: 1px solid rgba(79,70,229,.22);
    border-radius: var(--r-sm); padding: 13px 15px; margin: 16px 0;
    color: var(--ink-2); font-size: .92rem;
}
.note-box .icon { color: var(--brand); margin-top: 2px; flex: none; }

/* ---------- Tarama ekranı ---------- */
.section-screen { padding-top: 40px; }
.screen-top { margin-bottom: 26px; }
.screen-meta { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; gap: 12px; }
.screen-child { font-weight: 650; }
.screen-step { color: var(--ink-2); font-size: .9rem; font-weight: 600; white-space: nowrap; }
.progress { height: 8px; border-radius: 999px; background: #EDEFF7; overflow: hidden; }
.progress i { display: block; height: 100%; background: linear-gradient(90deg, var(--brand-bright), var(--brand-deep)); border-radius: inherit; transition: width .3s ease; }

.domain-head { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; }
.domain-head .domain-ic { margin-bottom: 0; }
.domain-head h1 { font-size: clamp(1.5rem, 3.4vw, 2rem); }
.domain-intro { color: var(--ink-2); font-size: .95rem; margin-top: 4px; }

.item-card {
    border: 1px solid var(--line); border-radius: var(--r); background: #fff;
    padding: 18px; margin-bottom: 14px; box-shadow: var(--shadow-sm);
    min-inline-size: 0;
}
.item-text { display: block; font-weight: 650; font-size: 1.02rem; line-height: 1.45; }
.item-hint { color: var(--ink-2); font-size: .88rem; margin-top: 5px; }

/* Frekans segment kontrolü (0-3) */
.opts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 14px; }
.opts-3 { grid-template-columns: repeat(3, 1fr); }
.opt { position: relative; display: block; cursor: pointer; }
.opt input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.opt span {
    display: flex; align-items: center; justify-content: center; gap: 6px;
    min-height: 46px; padding: 8px 6px; border-radius: 11px;
    border: 1.5px solid var(--line); background: #fff;
    font-weight: 600; font-size: .9rem; color: var(--ink-2); text-align: center;
    transition: background-color .16s, border-color .16s, color .16s;
}
.opt:hover span { border-color: var(--brand-bright); }
.opt input:focus-visible + span { outline: 3px solid rgba(79,70,229,.4); outline-offset: 2px; }
.opt input:checked + span { background: rgba(79,70,229,.1); border-color: var(--brand); color: var(--brand-deep); }

/* Güçlü yönler — çoklu seçim rozetleri */
.strength-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 6px; }
.strength-chip { position: relative; display: block; cursor: pointer; }
.strength-chip input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.strength-chip span {
    display: flex; align-items: center; gap: 9px; padding: 12px 14px;
    border: 1.5px solid var(--line); border-radius: 12px; background: #fff;
    font-weight: 600; font-size: .94rem; color: var(--ink-2); transition: all .16s;
}
.strength-chip span::before {
    content: ""; width: 18px; height: 18px; border-radius: 6px; border: 1.5px solid var(--line); flex: none;
    background-position: center; background-repeat: no-repeat;
}
.strength-chip:hover span { border-color: var(--amber); }
.strength-chip input:checked + span { background: rgba(232,133,10,.1); border-color: var(--amber); color: var(--c-izlemede); }
.strength-chip input:checked + span::before { background: var(--amber); border-color: var(--amber);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.8l4.6 4.4L19 7'/%3E%3C/svg%3E"); }
.strength-chip input:focus-visible + span { outline: 3px solid rgba(232,133,10,.4); outline-offset: 2px; }

/* Bağlam soruları (select) */
.ctx-field { margin-bottom: 18px; }
.ctx-field .ctx-q { display: block; font-weight: 650; margin-bottom: 8px; }

.screen-actions { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 24px; }
.screen-code-note { text-align: center; color: var(--ink-2); font-size: .88rem; margin-top: 22px; }

/* ---------- Sonuç ---------- */
.result-hero { border-radius: 22px; padding: 30px; border: 1px solid var(--line); box-shadow: var(--shadow); }
.result-yolunda  { background: linear-gradient(160deg, rgba(11,143,95,.09), #fff 55%); }
.result-izlemede { background: linear-gradient(160deg, rgba(232,133,10,.11), #fff 55%); }
.result-uzman    { background: linear-gradient(160deg, rgba(222,59,34,.09), #fff 55%); }
.result-hero h1 { margin: 14px 0 10px; }
.result-hero p { color: var(--ink-2); max-width: 62ch; }
.result-meta { font-size: .87rem; margin-top: 12px; color: var(--ink-2); }

.strength-hero { margin-top: 18px; border: 1.5px solid rgba(232,133,10,.3); background: linear-gradient(160deg, rgba(232,133,10,.08), #fff 60%); }
.strength-hero h2 { display: flex; align-items: center; gap: 8px; font-size: 1.25rem; }
.strength-hero h2 .icon { color: var(--amber); }
.strength-hero p { color: var(--ink-2); margin-top: 8px; }
.strength-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.strength-tag { display: inline-flex; align-items: center; gap: 6px; padding: 6px 13px; border-radius: 999px;
    background: rgba(232,133,10,.1); color: var(--c-izlemede); font-weight: 650; font-size: .9rem; border: 1.5px solid rgba(232,133,10,.28); }

.code-box { display: flex; justify-content: space-between; gap: 18px; align-items: center; margin-top: 18px; flex-wrap: wrap; border-style: dashed; border-width: 1.5px; }
.code-title { display: flex; gap: 8px; align-items: center; font-size: 1.05rem; }
.code-title .icon { color: var(--brand); }
.code-box p { color: var(--ink-2); font-size: .9rem; margin-top: 4px; max-width: 46ch; }
.code-row { display: flex; align-items: center; gap: 10px; }
.code-value { font-size: 1.25rem; font-weight: 700; background: var(--tint); border-radius: 10px; padding: 8px 14px; }

/* Alan çubukları + çift kaynak */
.bars .bar-row { padding: 12px 0; border-bottom: 1px solid var(--line); }
.bars .bar-row:last-child { border-bottom: 0; }
.bar-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; gap: 10px; }
.bar-label { font-weight: 650; display: flex; align-items: center; gap: 8px; }
.bar-label .domain-ic { width: 30px; height: 30px; margin: 0; border-radius: 9px; }
.bar-label .domain-ic .icon { width: 17px; height: 17px; }
.dual { display: grid; gap: 6px; }
.dual-row { display: grid; grid-template-columns: 62px 1fr; align-items: center; gap: 10px; }
.dual-who { font-size: .78rem; font-weight: 700; letter-spacing: .02em; }
.dual-who.p { color: var(--brand); }
.dual-who.t { color: var(--violet); }
.dual-row .bar-track i.fill-p { background: var(--brand); }
.dual-row .bar-track i.fill-t { background: var(--violet); }
.bars-legend { display: flex; gap: 16px; margin-top: 4px; font-size: .82rem; color: var(--ink-2); flex-wrap: wrap; }
.bars-legend span { display: inline-flex; align-items: center; gap: 6px; }
.dot { width: 10px; height: 10px; border-radius: 3px; }
.dot-p { background: var(--brand); }
.dot-t { background: var(--violet); }
.bars-note { color: var(--ink-2); font-size: .86rem; margin-top: 14px; padding-top: 12px; border-top: 1px dashed var(--line); }

/* Öğretmen davet kutusu */
.invite-box { margin-top: 18px; border: 1.5px solid rgba(79,70,229,.28); background: linear-gradient(160deg, rgba(79,70,229,.06), #fff 60%); }
.invite-box h2 { display: flex; align-items: center; gap: 9px; font-size: 1.2rem; }
.invite-box h2 .icon { color: var(--brand); }
.invite-box p { color: var(--ink-2); margin-top: 8px; font-size: .95rem; }
.invite-link-row { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.invite-link { flex: 1; min-width: 220px; padding: 11px 14px; border: 1.5px solid var(--line); border-radius: 11px; background: var(--tint); font-size: .86rem; color: var(--ink-2); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.invite-done { display: flex; align-items: center; gap: 8px; color: var(--c-yolunda); font-weight: 650; margin-top: 10px; }

.next-card { display: flex; gap: 16px; align-items: flex-start; margin-top: 18px; }
.next-card .domain-ic { margin-bottom: 0; }
.next-card p { color: var(--ink-2); font-size: .95rem; margin: 6px 0 12px; }
.result-actions { display: grid; gap: 10px; margin-top: 26px; }
.tiny-links { text-align: center; color: var(--ink-2); font-size: .85rem; margin-top: 20px; }

/* ---------- Rapor ---------- */
.report-tools { display: flex; justify-content: space-between; margin-bottom: 20px; gap: 10px; flex-wrap: wrap; }
.report-head { border-bottom: 2px solid var(--ink); padding-bottom: 18px; margin-bottom: 22px; }
.report-brand { display: flex; align-items: center; gap: 9px; margin-bottom: 12px; }
.report-meta { display: flex; flex-wrap: wrap; gap: 8px 20px; color: var(--ink-2); font-size: .92rem; margin-top: 10px; }
.report-overall { margin: 18px 0 8px; }
.report-overall p { color: var(--ink-2); margin-top: 12px; max-width: 70ch; }

.report-section-title { margin: 32px 0 6px; font-size: 1.35rem; }
.report-domain { border-top: 1px solid var(--line); margin-top: 26px; padding-top: 24px; }
.report-domain-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.report-domain-head .domain-ic { width: 38px; height: 38px; margin-bottom: 0; }
.report-domain-head h3 { flex: 1; font-size: 1.2rem; }
.report-reason { color: var(--ink-2); font-size: .96rem; margin: 12px 0; }
.agree-note { display: inline-flex; align-items: center; gap: 7px; font-size: .84rem; font-weight: 650; padding: 4px 11px; border-radius: 999px; margin-top: 4px; }
.agree-uyumlu { background: rgba(11,143,95,.09); color: var(--c-yolunda); }
.agree-farkli { background: rgba(30,109,240,.09); color: var(--blue); }
.agree-tek_kaynak { background: var(--tint); color: var(--brand-deep); }

.report-items h4 { margin: 14px 0 8px; font-size: .98rem; }
.report-items ul { padding-left: 20px; color: var(--ink-2); display: grid; gap: 6px; }
.report-items .flagged strong { color: var(--ink); }

.plan-box { background: var(--tint); border-radius: var(--r); padding: 18px; margin-top: 16px; }
.plan-box h4 { display: flex; align-items: center; gap: 8px; font-size: 1rem; }
.plan-box h4 .icon { color: var(--amber); }
.plan-note { color: var(--ink-2); font-size: .9rem; margin: 8px 0 14px; }
.plan-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.plan-item { background: #fff; border: 1px solid var(--line); border-radius: var(--r-sm); padding: 13px 14px; }
.plan-item strong { display: block; margin-bottom: 5px; font-size: .95rem; }
.plan-item p { color: var(--ink-2); font-size: .87rem; }
.plan-class { background: rgba(30,109,240,.05); }
.plan-class h4 .icon { color: var(--blue); }

.lock-box { background: var(--tint); border: 1.5px dashed var(--line); border-radius: var(--r-sm); padding: 16px; margin-top: 14px; }
.lock-box h4 { display: flex; align-items: center; gap: 8px; font-size: 1rem; }
.lock-box p { color: var(--ink-2); font-size: .9rem; margin-top: 6px; }

/* İlk adımlar */
.steps-flow { display: grid; gap: 14px; margin-top: 16px; }
.flow-step { display: flex; gap: 16px; align-items: flex-start; padding: 18px; border: 1px solid var(--line); border-radius: var(--r); background: #fff; }
.flow-step .domain-ic { margin: 0; }
.flow-step h4 { font-size: 1.05rem; margin-bottom: 5px; }
.flow-step p { color: var(--ink-2); font-size: .93rem; }
.flow-step .btn { margin-top: 12px; }

.report-teacher-notes { background: rgba(122,69,245,.05); border: 1px solid rgba(122,69,245,.2); border-radius: var(--r); padding: 18px; margin-top: 18px; }
.report-teacher-notes h4 { display: flex; align-items: center; gap: 8px; color: var(--violet); }
.report-teacher-notes dl { margin-top: 10px; display: grid; gap: 10px; }
.report-teacher-notes dt { font-weight: 650; font-size: .9rem; }
.report-teacher-notes dd { color: var(--ink-2); font-size: .93rem; }

.report-next, .report-sources { border-top: 1px solid var(--line); margin-top: 30px; padding-top: 24px; }
.report-next p, .report-sources p { color: var(--ink-2); margin-top: 10px; max-width: 72ch; }
.report-fineprint { color: var(--ink-2); font-size: .84rem; margin-top: 12px; }

/* ---------- Uzman rehberi ---------- */
.expert-step { display: flex; gap: 16px; margin-top: 16px; }
.expert-step .step-no { flex: none; margin-bottom: 0; }
.expert-step h2 { font-size: 1.15rem; margin-bottom: 6px; }
.expert-step p { color: var(--ink-2); font-size: .96rem; }
.expert-local { display: flex; gap: 16px; margin-top: 26px; border: 1.5px solid rgba(79,70,229,.32); background: linear-gradient(160deg, rgba(79,70,229,.07), #fff 60%); }
.expert-local .domain-ic { margin-bottom: 0; }
.expert-local h2 { font-size: 1.15rem; margin-bottom: 6px; }
.expert-local p { color: var(--ink-2); font-size: .96rem; margin-bottom: 14px; }

/* Öğretmen giriş / teşekkür */
.teacher-hero { text-align: center; max-width: 620px; margin: 0 auto; }
.teacher-hero .domain-ic { width: 62px; height: 62px; margin: 0 auto 18px; border-radius: 20px; }
.teacher-hero .domain-ic .icon { width: 30px; height: 30px; }
.teacher-facts { display: grid; gap: 12px; margin: 24px 0; text-align: left; }
.teacher-fact { display: flex; gap: 12px; align-items: flex-start; }
.teacher-fact .icon { color: var(--brand); margin-top: 2px; flex: none; }
.teacher-fact strong { display: block; }
.teacher-fact p { color: var(--ink-2); font-size: .92rem; }
.done-hero { text-align: center; max-width: 560px; margin: 0 auto; }
.done-hero .big-check { width: 76px; height: 76px; border-radius: 50%; background: rgba(11,143,95,.12); color: var(--c-yolunda); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.done-hero .big-check .icon { width: 40px; height: 40px; }

/* ---------- Legal / hata ---------- */
.legal h2 { margin: 26px 0 8px; font-size: 1.2rem; }
.legal p { color: var(--ink-2); }
.legal ul { margin: 10px 0 10px 20px; color: var(--ink-2); display: grid; gap: 6px; }
.error-page { text-align: center; padding: 40px 0 80px; }
.error-code { font: 800 4.6rem var(--font-head); color: var(--brand); line-height: 1; }
.error-page .hero-cta { justify-content: center; }

/* ---------- Animasyon / scroll reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .68s var(--ease-out), transform .68s var(--ease-out); }
.js .reveal.in { opacity: 1; transform: none; }
.js .reveal-cards > * { opacity: 0; transform: translateY(26px); transition: opacity .6s var(--ease-out), transform .6s var(--ease-out); }
.js .reveal-cards.in > * { opacity: 1; transform: none; }
.reveal-cards.in > *:nth-child(2) { transition-delay: .07s; }
.reveal-cards.in > *:nth-child(3) { transition-delay: .14s; }
.reveal-cards.in > *:nth-child(4) { transition-delay: .21s; }
.reveal-cards.in > *:nth-child(5) { transition-delay: .28s; }
.js .hero-copy > *, .js .hero-card { opacity: 0; animation: rise .8s var(--ease-out) forwards; }
.hero-copy > *:nth-child(1) { animation-delay: .05s; }
.hero-copy > *:nth-child(2) { animation-delay: .13s; }
.hero-copy > *:nth-child(3) { animation-delay: .21s; }
.hero-copy > *:nth-child(4) { animation-delay: .29s; }
.hero-card { animation-delay: .24s; }
@keyframes rise { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }

.step-card, .domain-card, .tier-card, .trust-box, .expert-step, .plan-item, .faq, .flow-step {
    transition: transform .22s var(--ease-out), box-shadow .22s var(--ease-out), border-color .22s var(--ease-out);
}
.step-card:hover, .domain-card:hover, .tier-card:hover, .trust-box:hover, .expert-step:hover, .plan-item:hover, .flow-step:hover {
    transform: translateY(-4px); box-shadow: var(--shadow-lift);
}
.faq:hover { border-color: #C6CAE6; }
.btn-coral:hover, .btn-brand:hover, .btn-light:hover, .btn-ghost:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0) scale(.985); }
.btn .icon { transition: transform .22s var(--ease-out); }
.btn:hover .icon { transform: translateX(3px); }

/* ---------- Erişilebilirlik ---------- */
:focus-visible { outline: 3px solid rgba(79,70,229,.45); outline-offset: 2px; border-radius: 4px; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-delay: 0ms !important; }
    .reveal, .reveal-cards > *, .hero-copy > *, .hero-card { opacity: 1 !important; transform: none !important; }
    .btn:hover, .step-card:hover, .domain-card:hover, .tier-card:hover, .trust-box:hover, .expert-step:hover, .plan-item:hover, .flow-step:hover { transform: none !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
    .grid-5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
    .section { padding: 52px 0 6px; }
    .hero { padding: 40px 0 10px; }
    .hero-grid { grid-template-columns: 1fr; gap: 30px; }
    .mock-card { margin: 0 auto; rotate: 0deg; }
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .plan-grid { grid-template-columns: 1fr; }
    .nav-link-hide-sm { display: none; }
}
@media (max-width: 560px) {
    /* iOS Safari input odaklanınca zoom yapmasın: metin kontrolleri ≥16px garanti */
    input[type="text"], select, textarea { font-size: 16px; }
    .grid-5 { grid-template-columns: 1fr 1fr; }
    .opts { grid-template-columns: 1fr 1fr; }
    .strength-grid { grid-template-columns: 1fr; }
    .field-row { grid-template-columns: 1fr; }
    .screen-actions { flex-direction: column-reverse; align-items: stretch; }
    .screen-actions .btn { width: 100%; }
    .code-box { flex-direction: column; align-items: flex-start; }
    .code-row { width: 100%; }
    .report-tools { flex-wrap: wrap; gap: 10px; }
    .site-nav { gap: 12px; }
    .btn-sm { padding: 8px 13px; }
    h1 { font-size: clamp(1.85rem, 8vw, 2.3rem); }
    .hero-cta .btn { width: 100%; }
    .cta-band-in { flex-direction: column; align-items: flex-start; }
    .cta-band-in .btn { width: 100%; }
    .dual-row { grid-template-columns: 54px 1fr; }
}
@media (max-width: 470px) {
    .nav-link-hide-xs { display: none; }
    .brand-name { font-size: .95rem; }
    .wrap { padding: 0 16px; }
    .card { padding: 18px; }
    .result-hero, .mock-card { padding: 22px; }
}
@media (max-width: 360px) {
    .brand-name { display: none; }
}

/* ---------- Yazdırma (rapor → PDF) ---------- */
@media print {
    .site-header, .site-footer, .no-print, .skip-link { display: none !important; }
    body { font-size: 12px; color: #000; }
    .section { padding: 0; }
    .wrap-report { max-width: none; padding: 0; }
    .report-domain, .flow-step { break-inside: avoid; }
    .plan-box, .item-card { break-inside: avoid; }
    .bar-track { border: 1px solid #999; }
    .bar-track i, .chip, .strength-tag { print-color-adjust: exact; -webkit-print-color-adjust: exact; }
    a { color: #000; text-decoration: none; }
    .consent-banner { display: none !important; }
}

/* ---------- Onay bandı (KVKK/çerez) ---------- */
.consent-banner {
    position: fixed; left: 16px; right: 16px; bottom: calc(16px + env(safe-area-inset-bottom, 0px)); z-index: 80;
    max-width: 760px; margin: 0 auto;
    background: #fff; border: 1px solid var(--line); border-radius: var(--r);
    box-shadow: var(--shadow); padding: 15px 18px;
    display: flex; gap: 16px; align-items: center; justify-content: space-between; flex-wrap: wrap;
    animation: rise .4s var(--ease-out);
}
.consent-banner[hidden] { display: none; }
.consent-banner p { color: var(--ink-2); font-size: .9rem; margin: 0; flex: 1; min-width: 220px; }
.consent-banner .btn { flex: none; }
@media (max-width: 560px) {
    .consent-banner { flex-direction: column; align-items: stretch; left: 10px; right: 10px; bottom: calc(10px + env(safe-area-inset-bottom, 0px)); }
    .consent-banner .btn { width: 100%; }
}
