/* ============================================================
   Vip PsikoKoç — Landing Page
   Modern tasarım sistemi. CSP-güvenli (self-hosted, dış kaynak yok).
   ============================================================ */

:root {
    /* Renk paleti */
    --ink: #0c0a1e;
    --ink-soft: #1a1730;
    --bg: #fbfbfe;
    --bg-alt: #f4f3fb;
    --surface: #ffffff;
    --border: #e7e6f2;

    --text: #1c1a2e;
    --muted: #5e5b7a;
    --muted-2: #8b88a8;

    --brand: #026eb3;
    --brand-2: #1ba3db;
    --brand-ink: #234898;
    --accent: #14d3c4;
    --accent-2: #34d399;
    --warn: #ffb020;
    --pink: #ff6ba6;

    --grad-brand: linear-gradient(120deg, #234898 0%, #026eb3 50%, #1ba3db 100%);
    --grad-hero: radial-gradient(1200px 600px at 75% -10%, rgba(27, 163, 219, .35), transparent 60%),
                 radial-gradient(900px 500px at 10% 10%, rgba(20, 211, 196, .22), transparent 55%),
                 radial-gradient(800px 500px at 50% 110%, rgba(2, 110, 179, .18), transparent 60%);

    /* Yarıçap & gölge */
    --r-sm: 12px;
    --r-md: 18px;
    --r-lg: 26px;
    --r-xl: 34px;
    --shadow-sm: 0 2px 8px rgba(20, 16, 50, .06);
    --shadow-md: 0 12px 30px -12px rgba(38, 28, 90, .22);
    --shadow-lg: 0 30px 70px -28px rgba(45, 30, 110, .45);
    --ring: 0 0 0 1px var(--border);

    --container: 1180px;
    --font: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

h1, h2, h3, h4 {
    margin: 0;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: var(--ink);
    font-weight: 800;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 22px;
}

.grad-text {
    background: var(--grad-brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ---------- Butonlar ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .55em;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 650;
    line-height: 1;
    padding: 14px 24px;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .25s ease, background .25s ease, color .2s ease;
    white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
    color: #fff;
    background: var(--grad-brand);
    box-shadow: 0 12px 26px -10px rgba(2, 110, 179, .7);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 34px -10px rgba(2, 110, 179, .8); }
.btn-ghost {
    color: var(--ink);
    background: var(--surface);
    border-color: var(--border);
    box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { transform: translateY(-2px); border-color: #bcdcf2; }
.btn-light {
    color: var(--brand-ink);
    background: #fff;
}
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-lg { padding: 17px 30px; font-size: 1.06rem; }

/* ---------- Navbar ---------- */
.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
    border-bottom: 1px solid transparent;
}
.nav.scrolled {
    background: rgba(251, 251, 254, .72);
    backdrop-filter: saturate(180%) blur(16px);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-sm);
}
.nav__inner {
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.28rem;
    color: var(--ink);
    letter-spacing: -.02em;
}
.brand__mark {
    width: 38px; height: 38px;
    border-radius: 11px;
    background: var(--grad-brand);
    display: grid;
    place-items: center;
    box-shadow: 0 8px 18px -6px rgba(2, 110, 179, .7);
}
.brand__mark svg { width: 22px; height: 22px; color: #fff; }
.brand__logo { width: 38px; height: 38px; object-fit: contain; display: block; }
.brand picture { display: flex; }
.nav__links {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin: 0; padding: 0;
}
.nav__links a {
    padding: 9px 14px;
    border-radius: 10px;
    color: var(--muted);
    font-weight: 550;
    font-size: .96rem;
    transition: color .2s, background .2s;
}
.nav__links a:hover { color: var(--ink); background: var(--bg-alt); }
.nav__cta { display: flex; align-items: center; gap: 10px; }
.nav__toggle {
    display: none;
    width: 44px; height: 44px;
    border: 1px solid var(--border);
    background: var(--surface);
    border-radius: 12px;
    cursor: pointer;
    align-items: center; justify-content: center;
    color: var(--ink);
}
.nav__toggle svg { width: 22px; height: 22px; }

/* ---------- Sections ---------- */
section { position: relative; }
.section { padding: clamp(70px, 9vw, 130px) 0; }
.section--alt { background: var(--bg-alt); }
.section--dark {
    background: var(--ink);
    color: #cfcce6;
}
.section--dark h2, .section--dark h3 { color: #fff; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--brand-ink);
    background: rgba(2, 110, 179, .1);
    padding: 7px 14px;
    border-radius: 999px;
}
.section--dark .eyebrow { color: #a9d3ef; background: rgba(27, 163, 219, .16); }

.section__head {
    max-width: 680px;
    margin: 0 auto 56px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}
.section__head h2 { font-size: clamp(2rem, 4vw, 3rem); }
.section__head p { margin: 0; color: var(--muted); font-size: 1.12rem; }
.section--dark .section__head p { color: #b6b2d6; }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    padding: clamp(48px, 7vw, 90px) 0 clamp(60px, 8vw, 110px);
    background: var(--grad-hero), var(--bg);
    overflow: hidden;
}
.hero::after {
    /* ince grid dokusu */
    content: "";
    position: absolute; inset: 0;
    background-image: linear-gradient(var(--border) 1px, transparent 1px),
                      linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 54px 54px;
    -webkit-mask-image: radial-gradient(700px 420px at 50% 0%, #000 0%, transparent 75%);
    mask-image: radial-gradient(700px 420px at 50% 0%, #000 0%, transparent 75%);
    opacity: .5;
    pointer-events: none;
}
.hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 54px;
    align-items: center;
}
.hero__copy { max-width: 600px; }
.hero h1 {
    font-size: clamp(2.5rem, 5.2vw, 4rem);
    line-height: 1.04;
    margin: 22px 0 0;
}
.hero__sub {
    margin: 22px 0 0;
    font-size: 1.18rem;
    color: var(--muted);
    max-width: 540px;
}
.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}
.hero__trust {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--muted);
    font-size: .94rem;
}
.avatars { display: flex; }
.avatars span {
    width: 34px; height: 34px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -10px;
    display: grid; place-items: center;
    font-size: .8rem; font-weight: 700; color: #fff;
}
.avatars span:first-child { margin-left: 0; }
.stars { color: var(--warn); letter-spacing: 1px; }

/* Hero görsel — cam panel mockup */
.hero__visual { position: relative; }
.mock {
    position: relative;
    background: rgba(255, 255, 255, .65);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-lg);
    padding: 20px;
    overflow: hidden;
}
.mock__bar { display: flex; gap: 7px; margin-bottom: 16px; }
.mock__bar i { width: 11px; height: 11px; border-radius: 50%; background: #d8d6ea; }
.mock__bar i:nth-child(1) { background: #ff6b6b; }
.mock__bar i:nth-child(2) { background: #ffce54; }
.mock__bar i:nth-child(3) { background: #2ecc71; }
.mock__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.mock__card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 16px;
    box-shadow: var(--shadow-sm);
}
.mock__label { font-size: .78rem; color: var(--muted-2); font-weight: 600; }
.mock__val { font-size: 1.6rem; font-weight: 800; color: var(--ink); margin-top: 4px; }
.mock__val small { font-size: .9rem; color: var(--accent-2); font-weight: 700; }
.mock__wide { grid-column: 1 / -1; }
/* mini bar chart */
.bars { display: flex; align-items: flex-end; gap: 9px; height: 86px; margin-top: 12px; }
.bars i {
    flex: 1;
    border-radius: 6px 6px 0 0;
    background: var(--grad-brand);
    opacity: .85;
    animation: grow 1.1s cubic-bezier(.2,.7,.2,1) both;
}
.bars i:nth-child(even) { background: linear-gradient(180deg, var(--accent), var(--accent-2)); }
@keyframes grow { from { height: 0; opacity: 0; } }
/* yüzen rozetler */
.float-badge {
    position: absolute;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 11px 14px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 650;
    font-size: .9rem;
    animation: floaty 4s ease-in-out infinite;
}
.float-badge .dot { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; color: #fff; }
.float-badge.b1 { top: -22px; right: 16px; }
.float-badge.b2 { bottom: -20px; left: -22px; animation-delay: 1.2s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* ---------- Stat band ---------- */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.stat__num { font-size: clamp(2rem, 3.4vw, 2.8rem); font-weight: 850; color: var(--ink); letter-spacing: -.03em; }
.section--dark .stat__num { color: #fff; }
.stat__num .grad-text { display: inline; }
.stat__label { color: var(--muted); margin-top: 4px; font-size: .98rem; }
.section--dark .stat__label { color: #aaa6cf; }

/* ---------- Bento / Features ---------- */
.bento {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}
.feature {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    position: relative;
    overflow: hidden;
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: #d4e6f5; }
.feature.span-3 { grid-column: span 3; }
.feature.span-2 { grid-column: span 2; }
.feature.span-6 { grid-column: span 6; }
.feature.feature--brand {
    background: var(--grad-brand);
    border: none;
    color: #fff;
}
.feature.feature--brand h3 { color: #fff; }
.feature.feature--brand .feature__icon { background: rgba(255,255,255,.18); color: #fff; }
.feature__icon {
    width: 52px; height: 52px;
    border-radius: 15px;
    display: grid; place-items: center;
    background: rgba(2, 110, 179, .1);
    color: var(--brand-ink);
    margin-bottom: 18px;
}
.feature__icon svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.28rem; margin-bottom: 9px; }
.feature p { margin: 0; color: var(--muted); font-size: 1.02rem; }
.feature.feature--brand p { color: rgba(255,255,255,.9); }
.feature--brand .mini-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.feature--brand .mini-list span {
    background: rgba(255,255,255,.16);
    padding: 7px 13px; border-radius: 999px; font-size: .88rem; font-weight: 600;
}

/* ---------- Tests grid ---------- */
.tests {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
    gap: 18px;
}
.test-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 22px;
    box-shadow: var(--shadow-sm);
    transition: transform .22s ease, box-shadow .22s ease;
}
.test-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.test-card__icon {
    flex: none;
    width: 46px; height: 46px;
    border-radius: 13px;
    display: grid; place-items: center;
    color: #fff;
}
.test-card__icon svg { width: 24px; height: 24px; }
.test-card h4 { font-size: 1.08rem; margin: 0 0 4px; }
.test-card p { margin: 0; font-size: .94rem; color: var(--muted); }

/* ---------- Steps ---------- */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    counter-reset: step;
}
.step {
    position: relative;
    padding: 30px 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-sm);
}
.step__num {
    width: 48px; height: 48px;
    border-radius: 14px;
    background: var(--grad-brand);
    color: #fff;
    display: grid; place-items: center;
    font-weight: 800; font-size: 1.3rem;
    box-shadow: 0 10px 22px -8px rgba(2, 110, 179, .7);
    margin-bottom: 18px;
}
.step h3 { font-size: 1.2rem; margin-bottom: 8px; }
.step p { margin: 0; color: var(--muted); }
.step__arrow {
    position: absolute;
    top: 50px; right: -22px;
    color: #bcdcf2;
    z-index: 2;
}
.step__arrow svg { width: 26px; height: 26px; }

/* ---------- Pricing ---------- */
.pricing-wrap { display: flex; justify-content: center; }
.price-card {
    position: relative;
    width: 100%;
    max-width: 560px;
    background: var(--surface);
    border-radius: var(--r-xl);
    padding: 3px;
    background: var(--grad-brand);
    box-shadow: var(--shadow-lg);
}
.price-card__inner {
    background: var(--surface);
    border-radius: calc(var(--r-xl) - 3px);
    padding: 44px;
}
.price-card__badge {
    position: absolute;
    top: 22px; right: 22px;
    background: var(--ink);
    color: #fff;
    font-size: .8rem; font-weight: 700;
    padding: 7px 14px; border-radius: 999px;
    z-index: 2;
}
.price-card h3 { font-size: 1.5rem; }
.price-card__desc { color: var(--muted); margin: 8px 0 22px; }
.price-amount { display: flex; align-items: baseline; gap: 8px; }
.price-amount .num { font-size: clamp(3rem, 6vw, 3.8rem); font-weight: 850; letter-spacing: -.03em; color: var(--ink); }
.price-amount .cur { font-size: 2rem; font-weight: 800; color: var(--ink); }
.price-amount .per { color: var(--muted-2); font-weight: 600; }
.price-note { color: var(--muted); font-size: .94rem; margin: 6px 0 26px; }
.price-card .btn { width: 100%; justify-content: center; }

/* ---------- Pricing: Bireysel / Kurumsal kademeler ---------- */
.plans {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
    align-items: stretch;
    max-width: 940px;
    margin-inline: auto;
}
.plans--single {
    grid-template-columns: 1fr;
    max-width: 560px;
}
.plan {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 34px 30px;
    box-shadow: var(--shadow-lg);
}
.plan--featured {
    border: 2px solid var(--brand);
    box-shadow: 0 24px 48px -18px rgba(2, 110, 179, .5);
}
.plan__badge {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: var(--ink);
    color: #fff;
    font-size: .8rem; font-weight: 700;
    padding: 7px 16px; border-radius: 999px;
    white-space: nowrap;
    z-index: 3;
}
.plan__head { margin-bottom: 22px; }
.plan__head h3 { font-size: 1.5rem; display: flex; align-items: center; gap: 10px; }
.plan__off {
    font-size: .82rem; font-weight: 800;
    color: #fff; background: var(--brand);
    padding: 4px 10px; border-radius: 999px;
}
.plan__sub { color: var(--muted); font-size: .96rem; margin-top: 6px; }
.tier-list {
    list-style: none; padding: 0; margin: 0 0 26px;
    display: grid; gap: 14px;
    flex: 1;
}
.tier {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 16px 18px;
    background: var(--bg-alt);
    border-radius: var(--r-lg, 16px);
}
.tier__name { display: flex; flex-direction: column; gap: 9px; color: var(--text); font-weight: 600; line-height: 1.35; font-size: .98rem; }
.tier__feat { display: flex; align-items: flex-start; gap: 9px; }
.tier__check { flex: none; width: 18px; height: 18px; margin-top: 1px; color: var(--brand); }
.tier__name small { color: var(--muted); font-weight: 500; font-size: .84rem; }
.tier__price {
    flex: none;
    display: flex; flex-direction: column; align-items: flex-end; gap: 2px;
    font-size: 1.5rem; font-weight: 850; letter-spacing: -.02em;
    color: rgb(36, 99, 235); white-space: nowrap;
}
.tier__price .cur { font-size: 1rem; font-weight: 800; margin-left: 2px; }
.tier__price-now { white-space: nowrap; }
.tier__price-old {
    font-size: .92rem; font-weight: 700; letter-spacing: 0;
    color: var(--muted); text-decoration: line-through; text-decoration-color: rgb(36, 99, 235);
}
.tier__price-old .cur { font-size: .78rem; font-weight: 700; }
.tier__off {
    display: inline-block;
    margin-left: 5px;
    font-size: .62rem; font-weight: 800; line-height: 1.4;
    color: #fff; background: rgb(36, 99, 235);
    padding: 2px 6px; border-radius: 999px;
    text-decoration: none; vertical-align: middle;
    letter-spacing: 0;
}
.plan .btn { width: 100%; justify-content: center; }
.plans__note { text-align: center; color: var(--muted); font-size: .92rem; margin-top: 20px; }
.divider { height: 1px; background: var(--border); margin: 26px 0; }
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--text); font-size: 1.02rem; }
.check-list .ic {
    flex: none;
    width: 24px; height: 24px;
    border-radius: 50%;
    background: rgba(20, 211, 196, .14);
    color: #0f9e92;
    display: grid; place-items: center;
}
.check-list .ic svg { width: 15px; height: 15px; }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin: 0 auto; display: grid; gap: 14px; }
.faq details {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 4px 22px;
    box-shadow: var(--shadow-sm);
    transition: border-color .2s;
}
.faq details[open] { border-color: #bcdcf2; }
.faq summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 0;
    font-weight: 650;
    font-size: 1.08rem;
    color: var(--ink);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev { flex: none; transition: transform .25s ease; color: var(--brand); }
.faq details[open] summary .chev { transform: rotate(45deg); }
.faq details p { margin: 0 0 20px; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; }
.cta-box {
    position: relative;
    background: var(--ink);
    border-radius: var(--r-xl);
    padding: clamp(40px, 6vw, 70px);
    text-align: center;
    color: #fff;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.cta-box::before {
    content: "";
    position: absolute; inset: 0;
    background: radial-gradient(700px 360px at 20% -20%, rgba(27, 163, 219, .55), transparent 60%),
               radial-gradient(600px 320px at 90% 120%, rgba(20, 211, 196, .4), transparent 60%);
}
.cta-box > * { position: relative; z-index: 1; }
.cta-box h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.8rem); }
.cta-box p { color: rgba(255,255,255,.82); font-size: 1.14rem; margin: 16px auto 30px; max-width: 540px; }
.cta-box .btn-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer {
    background: var(--ink);
    color: #a8a4cc;
    padding: 70px 0 34px;
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 44px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer .brand { color: #fff; }
.footer__about { margin: 16px 0 18px; max-width: 320px; font-size: .98rem; line-height: 1.7; }
.footer h5 { color: #fff; font-size: .95rem; letter-spacing: .03em; text-transform: uppercase; margin: 0 0 16px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.footer ul a { color: #a8a4cc; transition: color .2s; font-size: .98rem; }
.footer ul a:hover { color: #fff; }
.socials { display: flex; gap: 10px; }
.socials a {
    width: 40px; height: 40px;
    border-radius: 11px;
    background: rgba(255,255,255,.06);
    display: grid; place-items: center;
    color: #cfcce6;
    transition: background .2s, transform .2s;
}
.socials a:hover { background: var(--brand); color: #fff; transform: translateY(-3px); }
.socials svg { width: 19px; height: 19px; }
.footer__bottom {
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 12px;
    padding-top: 26px;
    font-size: .9rem; color: #837fa6;
}

/* ---------- Yasal / İçerik sayfaları ---------- */
.legal-hero {
    position: relative;
    background: var(--grad-hero), var(--bg);
    padding: clamp(48px, 7vw, 88px) 0 clamp(36px, 5vw, 56px);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}
.legal-hero__inner { max-width: 820px; display: flex; flex-direction: column; gap: 18px; }
.legal-hero h1 { font-size: clamp(2rem, 4.4vw, 3rem); }
.legal-hero p { margin: 0; color: var(--muted); font-size: 1.08rem; max-width: 640px; }
.legal-meta {
    display: flex; flex-wrap: wrap; gap: 8px 20px;
    color: var(--muted-2); font-size: .92rem; font-weight: 600;
}

.legal {
    padding: clamp(44px, 6vw, 72px) 0 clamp(60px, 8vw, 100px);
}
.legal__layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 56px;
    align-items: start;
}
.legal__toc {
    position: sticky;
    top: 94px;
    border: 1px solid var(--border);
    background: var(--surface);
    border-radius: var(--r-md);
    padding: 20px 18px;
    box-shadow: var(--shadow-sm);
}
.legal__toc h4 {
    font-size: .8rem; letter-spacing: .05em; text-transform: uppercase;
    color: var(--muted-2); margin: 0 0 12px;
}
.legal__toc ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.legal__toc a {
    display: block; padding: 8px 11px; border-radius: 9px;
    color: var(--muted); font-size: .92rem; font-weight: 550;
    transition: color .2s, background .2s;
}
.legal__toc a:hover { color: var(--ink); background: var(--bg-alt); }

.legal__body { max-width: 760px; }
.legal__body section { scroll-margin-top: 94px; }
.legal__body section + section { margin-top: 40px; }
.legal__body h2 {
    font-size: 1.5rem; margin: 0 0 14px;
    display: flex; align-items: baseline; gap: 12px;
}
.legal__body h2 .num {
    font-size: 1rem; font-weight: 800; color: var(--brand-ink);
    background: rgba(2, 110, 179, .1);
    border-radius: 8px; padding: 3px 10px; flex: none;
}
.legal__body h3 { font-size: 1.08rem; margin: 22px 0 8px; }
.legal__body p { margin: 0 0 14px; color: var(--muted); }
.legal__body ul, .legal__body ol { margin: 0 0 14px; padding-left: 22px; color: var(--muted); }
.legal__body li { margin-bottom: 8px; }
.legal__body strong { color: var(--text); font-weight: 650; }
.legal__body a { color: var(--brand-ink); font-weight: 600; }
.legal__body a:hover { text-decoration: underline; }

.legal-card {
    border: 1px solid var(--border);
    background: var(--bg-alt);
    border-radius: var(--r-md);
    padding: 22px 24px;
    margin: 18px 0;
}
.legal-card p:last-child { margin-bottom: 0; }

.legal-table { width: 100%; border-collapse: collapse; margin: 6px 0 18px; font-size: .96rem; }
.legal-table th, .legal-table td {
    text-align: left; padding: 12px 14px;
    border-bottom: 1px solid var(--border); vertical-align: top;
}
.legal-table th { color: var(--ink); font-weight: 700; width: 38%; }
.legal-table td { color: var(--muted); }

@media (max-width: 880px) {
    .legal__layout { grid-template-columns: 1fr; gap: 28px; }
    .legal__toc { position: static; top: auto; }
}

/* ---------- Hakkımızda / tanıtım içeriği ---------- */
.about { max-width: 880px; margin-inline: auto; }
.about > section + section { margin-top: clamp(40px, 6vw, 64px); }
.about h2 { font-size: clamp(1.6rem, 3.2vw, 2.2rem); margin-bottom: 16px; }
.about p { margin: 0 0 16px; color: var(--muted); font-size: 1.05rem; }
.about p:last-child { margin-bottom: 0; }
.about strong { color: var(--text); font-weight: 650; }

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.about-card {
    border: 1px solid var(--border);
    background: var(--surface);
    border-radius: var(--r-md);
    padding: 28px 26px;
    box-shadow: var(--shadow-sm);
}
.about-card .ic {
    width: 46px; height: 46px;
    border-radius: 13px;
    background: var(--grad-brand);
    display: grid; place-items: center;
    margin-bottom: 16px;
    box-shadow: 0 8px 18px -6px rgba(2, 110, 179, .6);
}
.about-card .ic svg { width: 24px; height: 24px; color: #fff; }
.about-card h3 { font-size: 1.18rem; margin: 0 0 8px; }
.about-card p { margin: 0; font-size: 1rem; }

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: center;
    border: 1px solid var(--border);
    background: var(--bg-alt);
    border-radius: var(--r-lg);
    padding: 36px 28px;
}
.about-stat .num { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; color: var(--brand-ink); line-height: 1; letter-spacing: -.02em; }
.about-stat .label { margin-top: 8px; color: var(--muted); font-size: .98rem; }

/* ---------- Şirket bilgileri ---------- */
.company-info {
    border: 1px solid var(--border);
    background: var(--surface);
    border-radius: var(--r-md);
    padding: 28px 26px;
    box-shadow: var(--shadow-sm);
}
.company-info .company-name { font-size: 1.18rem; font-weight: 700; color: var(--text); margin-bottom: 20px; }
.company-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
.company-list li { display: flex; align-items: flex-start; gap: 14px; }
.company-list .ic {
    flex: 0 0 auto;
    width: 42px; height: 42px;
    border-radius: 12px;
    background: var(--grad-brand);
    display: grid; place-items: center;
    box-shadow: 0 8px 18px -6px rgba(2, 110, 179, .6);
}
.company-list .ic svg { width: 22px; height: 22px; color: #fff; }
.company-list .lbl { display: block; font-size: .85rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 2px; }
.company-list .val { display: block; font-size: 1.05rem; color: var(--text); }
.company-list a.val { color: var(--brand-ink); font-weight: 600; text-decoration: none; }
.company-list a.val:hover { text-decoration: underline; }

@media (max-width: 680px) {
    .about-grid { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: 1fr; gap: 28px; }

    /* Mobilde fiyat üstte (ortalı), özellikler altta */
    .tier { flex-direction: column-reverse; align-items: flex-start; gap: 12px; }
    .tier__price { align-self: center; align-items: center; }
}

/* ---------- Scroll reveal ---------- */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
    will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

/* ---------- Mobil menü ---------- */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 74px 0 auto 0;
    background: rgba(251,251,254,.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    padding: 16px 22px 24px;
    z-index: 49;
    flex-direction: column;
    gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 13px 12px; border-radius: 12px; color: var(--ink); font-weight: 600; }
.mobile-menu a:hover { background: var(--bg-alt); }
.mobile-menu .btn { margin-top: 10px; justify-content: center; }

/* "Hemen Başla" butonu mobil cihazlarda gizlenir */
@media (max-width: 768px) {
    .mobile-menu__cta { display: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
    .hero__inner { grid-template-columns: 1fr; gap: 46px; }
    .hero__visual { max-width: 520px; margin-inline: auto; width: 100%; }
    .bento { grid-template-columns: repeat(2, 1fr); }
    .feature.span-3, .feature.span-2, .feature.span-6 { grid-column: span 2; }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .step__arrow { display: none; }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
    .nav__links, .nav__cta .btn-ghost { display: none; }
    .nav__toggle { display: inline-flex; }
    .stats { grid-template-columns: repeat(2, 1fr); gap: 30px 16px; }
    .plans { grid-template-columns: 1fr; max-width: 480px; }
}
@media (max-width: 560px) {
    .bento { grid-template-columns: 1fr; }
    .feature.span-3, .feature.span-2, .feature.span-6 { grid-column: span 1; }
    .steps { grid-template-columns: 1fr; }
    .price-card__inner { padding: 30px 22px; }
    .footer__grid { grid-template-columns: 1fr; }
    .hero__trust { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; scroll-behavior: auto !important; }
    .reveal { opacity: 1; transform: none; transition: none; }
}
