/* MRT Danışmanlık — ana stil */

:root {
	--ink: #0b2239;
	--ink-2: #33475e;
	--muted: #62748a;
	--line: #e2e9f0;
	--line-2: #d3dde7;
	--bg: #ffffff;
	--soft: #f3f7fa;
	--brand: #0d7fbc;
	--brand-600: #0a6697;
	--brand-300: #5cc0ee;
	--brand-50: #e9f5fb;
	--wa: #1c9d52;
	--wa-600: #16813f;
	--warn: #b76e00;
	--warn-50: #fff4e0;
	--ok: #177a45;
	--ok-50: #e6f5ec;
	--radius: 14px;
	--radius-sm: 10px;
	--shadow: 0 1px 2px rgba(11, 34, 57, .05), 0 8px 24px -12px rgba(11, 34, 57, .12);
	--shadow-lg: 0 24px 60px -24px rgba(11, 34, 57, .28);
	--gold: #c9a25c;
	--gold-300: #e6cb94;
	--display: "Fraunces", Georgia, "Times New Roman", serif;
	--font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	--wrap: 1200px;
	--gutter: 16px;
	--header-h: 68px;
	--mbar-h: 0px;
}
@media (min-width: 768px) { :root { --gutter: 28px; --header-h: 80px; } }

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
	margin: 0;
	font: 400 16px/1.65 var(--font);
	color: var(--ink-2);
	background: var(--bg);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
	padding-bottom: var(--mbar-h);
}
img, svg, iframe { max-width: 100%; display: block; }
img { height: auto; }
a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-600); }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.2; margin: 0 0 .5em; letter-spacing: -.02em; font-weight: 700; }
h1, h2 { font-family: var(--display); font-weight: 500; letter-spacing: -.02em; line-height: 1.12; font-variation-settings: "SOFT" 30; }
h1 { font-size: clamp(2.2rem, 1.4rem + 3.4vw, 3.9rem); }
h2 { font-size: clamp(1.75rem, 1.3rem + 1.7vw, 2.6rem); }
h1 em, h2 em { font-style: italic; color: var(--brand); }
h3, .h3 { font-size: 1.15rem; }
p { margin: 0 0 1em; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--brand-300); outline-offset: 2px; border-radius: 6px; }
.sr, .hp { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: 8px; top: -60px; z-index: 200; background: var(--ink); color: #fff; padding: 10px 14px; border-radius: 8px; }
.skip:focus { top: 8px; color: #fff; }
.ico { flex: none; }

.wrap { width: 100%; max-width: calc(var(--wrap) + var(--gutter) * 2); margin: 0 auto; padding: 0 var(--gutter); }
.narrow { max-width: calc(780px + var(--gutter) * 2); }
.narrow-block { max-width: 780px; margin: 56px auto 0; }

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	min-height: 46px; padding: 0 20px; border-radius: 999px; border: 1.5px solid transparent;
	font-weight: 600; font-size: .95rem; line-height: 1; white-space: nowrap;
	transition: background .2s, color .2s, border-color .2s, transform .2s, box-shadow .2s;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--brand); color: #fff; box-shadow: 0 6px 16px -8px rgba(13, 127, 188, .7); }
.btn--primary:hover { background: var(--brand-600); color: #fff; }
.btn--ghost { background: #fff; color: var(--ink); border-color: var(--line-2); }
.btn--ghost:hover { border-color: var(--ink); color: var(--ink); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: var(--brand-50); color: var(--ink); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .45); }
.btn--outline-light:hover { border-color: #fff; color: #fff; }
.btn--wa { background: var(--wa); color: #fff; }
.btn--wa:hover { background: var(--wa-600); color: #fff; }
.btn--lg { min-height: 54px; padding: 0 26px; font-size: 1rem; }
.btn--sm { min-height: 36px; padding: 0 14px; font-size: .85rem; }
.btn--block { width: 100%; }
.icon-btn {
	display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 12px;
	border: 1px solid var(--line); background: #fff; color: var(--ink);
}
.icon-btn:hover { border-color: var(--line-2); color: var(--brand); }

/* ---------- Top bar & header ---------- */
.topbar { display: none; background: var(--ink); color: #b9c8d7; font-size: .83rem; }
.topbar__in { display: flex; justify-content: space-between; align-items: center; min-height: 40px; gap: 16px; }
.topbar__tag { margin: 0; }
.topbar__links { display: flex; gap: 22px; list-style: none; margin: 0; padding: 0; }
.topbar__links li, .topbar__links a { display: inline-flex; align-items: center; gap: 6px; color: #d8e3ee; }
.topbar__links a:hover { color: #fff; }
@media (min-width: 1024px) { .topbar { display: block; } }

/* Bulanık arka plan sözde öğede: header'da backdrop-filter olursa mobil menü (fixed) header'ın içine hapsolur. */
.header {
	position: sticky; top: 0; z-index: 50;
	border-bottom: 1px solid transparent; transition: border-color .2s, box-shadow .2s;
}
.header::before {
	content: ""; position: absolute; inset: 0; z-index: -1;
	background: rgba(255, 255, 255, .92); backdrop-filter: saturate(1.4) blur(12px); -webkit-backdrop-filter: saturate(1.4) blur(12px);
}
body.nav-open .header { z-index: 95; }
.header.is-stuck { border-color: var(--line); box-shadow: 0 6px 20px -16px rgba(11, 34, 57, .4); }
.header__in { display: flex; align-items: center; gap: 16px; height: var(--header-h); }
.brand { display: block; flex: none; margin-right: auto; }
.brand__logo { height: 40px; width: auto; }
@media (min-width: 768px) { .brand__logo { height: 48px; } }
.header__actions { display: flex; align-items: center; gap: 8px; }
.header__cta { display: none; }
@media (min-width: 1024px) {
	.header__cta { display: inline-flex; }
	.header__call, .header__burger { display: none; }
}

/* Navigation — mobile drawer first */
.nav {
	position: fixed; inset: 0 0 0 auto; z-index: 90; width: min(88vw, 380px);
	display: flex; flex-direction: column; background: #fff; box-shadow: var(--shadow-lg);
	transform: translateX(102%); transition: transform .3s cubic-bezier(.2, .8, .2, 1);
	padding: 12px 20px calc(20px + env(safe-area-inset-bottom)); overflow-y: auto; visibility: hidden;
}
.nav.is-open { transform: none; visibility: visible; }
.nav__head { display: flex; align-items: center; justify-content: space-between; height: 56px; margin-bottom: 8px; }
.nav__title { font-weight: 700; color: var(--ink); }
.nav .menu { list-style: none; margin: 0; padding: 0; }
.nav .menu > li > a {
	display: flex; align-items: center; min-height: 52px; padding: 0 4px; border-bottom: 1px solid var(--line);
	color: var(--ink); font-weight: 600; font-size: 1.05rem;
}
.nav .menu a[aria-current="page"], .nav .current-menu-item > a, .nav .current-menu-ancestor > a { color: var(--brand); }
.nav .sub-menu { list-style: none; margin: 0; padding: 4px 0 8px 12px; border-bottom: 1px solid var(--line); }
.nav .sub-menu a { display: block; padding: 8px 4px; color: var(--ink-2); font-size: .95rem; }
.nav .menu-item-has-children > a { border-bottom: 0; }
.nav__foot { margin-top: auto; padding-top: 24px; display: grid; gap: 10px; }
.nav__addr { display: flex; gap: 8px; margin: 6px 0 0; font-size: .88rem; color: var(--muted); }
.scrim { position: fixed; inset: 0; z-index: 80; background: rgba(11, 34, 57, .45); }
body.nav-open { overflow: hidden; }

@media (min-width: 1024px) {
	.nav { position: static; transform: none; visibility: visible; width: auto; background: none; box-shadow: none; padding: 0; overflow: visible; flex-direction: row; }
	.nav__head, .nav__foot { display: none; }
	.nav .menu { display: flex; gap: 4px; }
	.nav .menu > li { position: relative; }
	.nav .menu > li > a { min-height: 40px; padding: 0 14px; border: 0; border-radius: 999px; font-size: .95rem; font-weight: 600; color: var(--ink-2); }
	.nav .menu > li > a:hover { color: var(--ink); background: var(--soft); }
	.nav .menu > .current-menu-item > a, .nav .menu > .current-menu-ancestor > a, .nav .menu > li > a[aria-current="page"] { color: var(--brand); background: var(--brand-50); }
	.nav .sub-menu {
		position: absolute; top: calc(100% + 8px); left: 0; min-width: 260px; padding: 8px; background: #fff;
		border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-lg);
		opacity: 0; visibility: hidden; transform: translateY(6px); transition: .18s;
	}
	.nav .sub-menu::before { content: ""; position: absolute; left: 0; right: 0; top: -10px; height: 10px; }
	.nav li:hover > .sub-menu, .nav li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: none; }
	.nav .sub-menu a { padding: 10px 12px; border-radius: 8px; color: var(--ink-2); }
	.nav .sub-menu a:hover { background: var(--soft); color: var(--ink); }
	.scrim { display: none !important; }
}

/* ---------- Common sections ---------- */
.section { padding: 64px 0; }
.section--tight { padding: 40px 0 72px; }
.section--soft { background: var(--soft); }
@media (min-width: 768px) { .section { padding: 96px 0; } .section--tight { padding: 56px 0 96px; } }
.section__head { max-width: 680px; margin-bottom: 36px; }
.section__head p:last-child { margin: 0; color: var(--muted); font-size: 1.05rem; }
.section__head--row { max-width: none; display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 16px; }
.section__head--row h2 { margin: 0; }
.kicker::before { content: ""; display: inline-block; width: 24px; height: 2px; margin-right: 10px; vertical-align: middle; background: var(--gold); }
.kicker { margin: 0 0 14px; font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--brand); }
.lead { font-size: clamp(1.02rem, .95rem + .35vw, 1.18rem); color: var(--ink-2); }
.eyebrow {
	display: inline-flex; align-items: center; gap: 8px; margin: 0 0 20px; padding: 6px 14px 6px 10px;
	background: #fff; border: 1px solid var(--line); border-radius: 999px; font-size: .85rem; font-weight: 600; color: var(--ink-2);
}
.dot { width: 8px; height: 8px; border-radius: 50%; background: #22b573; box-shadow: 0 0 0 4px rgba(34, 181, 115, .15); }
.meta { font-size: .85rem; color: var(--muted); margin: 0 0 8px; }
.code {
	display: inline-flex; align-items: center; height: 26px; padding: 0 9px; border-radius: 7px;
	background: var(--brand-50); color: var(--brand-600); font-weight: 700; font-size: .82rem; letter-spacing: .02em;
}
.pill { display: inline-flex; align-items: center; height: 24px; padding: 0 10px; border-radius: 999px; font-size: .75rem; font-weight: 700; }
.pill--live { background: var(--ok-50); color: var(--ok); }
.pill--opsiyon { background: var(--warn-50); color: var(--warn); }
.pill--satildi { background: #eef1f4; color: var(--muted); }

/* ---------- Hero ---------- */
.hero {
	position: relative; overflow: hidden; padding: 40px 0 64px;
	background:
		radial-gradient(900px 480px at 85% -10%, rgba(92, 192, 238, .22), transparent 60%),
		radial-gradient(700px 400px at -10% 110%, rgba(13, 127, 188, .08), transparent 60%),
		linear-gradient(#f7fafc, #fff);
}
.hero::before {
	content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
	background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
	background-size: 48px 48px;
	mask-image: radial-gradient(ellipse at 70% 20%, #000 10%, transparent 65%);
	-webkit-mask-image: radial-gradient(ellipse at 70% 20%, #000 10%, transparent 65%);
}
.hero__in { position: relative; display: grid; gap: 40px; }
.hero h1 em { font-style: normal; color: var(--brand); }
.hero .lead { max-width: 580px; margin-bottom: 28px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__actions .btn { flex: 1 1 auto; }
.hero__points { display: flex; flex-wrap: wrap; gap: 10px 20px; list-style: none; margin: 28px 0 0; padding: 0; font-size: .92rem; font-weight: 600; color: var(--ink-2); }
.hero__points li { display: inline-flex; align-items: center; gap: 6px; }
.hero__points .ico { color: var(--ok); }
.hero__card { position: relative; }
@media (min-width: 560px) { .hero__actions .btn { flex: 0 0 auto; } }
@media (min-width: 1024px) {
	.hero { padding: 72px 0 104px; }
	.hero__in { grid-template-columns: 1.15fr .85fr; align-items: center; gap: 64px; }
}

.hcard { background: #fff; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow-lg); padding: 8px; }
.hcard__head { display: flex; align-items: center; justify-content: space-between; padding: 12px 12px 10px; }
.hcard__title { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--ink); }
.hcard__title .ico { color: var(--brand); }
.hcard__list { list-style: none; margin: 0; padding: 0; }
.hcard__list li {
	display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px;
	padding: 14px 12px; border-top: 1px solid var(--line);
}
.hcard__amt { display: grid; min-width: 0; }
.hcard__amt strong { color: var(--ink); font-size: .98rem; font-variant-numeric: tabular-nums; }
.hcard__amt small { color: var(--muted); font-size: .78rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.hcard__time { font-size: .78rem; font-weight: 700; color: var(--ink-2); background: var(--soft); padding: 4px 8px; border-radius: 6px; }
.hcard__more { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 4px; padding: 14px; border-radius: 14px; background: var(--soft); font-weight: 700; font-size: .92rem; }
.hcard__more:hover { background: var(--brand-50); }
.hero__badge {
	position: absolute; left: -12px; bottom: -22px; display: flex; align-items: center; gap: 10px;
	padding: 12px 18px; border-radius: 16px; background: var(--ink); color: #cfe0ee; box-shadow: var(--shadow-lg); font-size: .8rem; line-height: 1.2;
}
.hero__badge strong { font-size: 1.8rem; color: #fff; letter-spacing: -.03em; }
@media (max-width: 559px) { .hero__badge { left: 12px; right: auto; top: -24px; bottom: auto; padding: 8px 14px; } .hero__badge strong { font-size: 1.4rem; } .hcard__head { padding-top: 26px; } }

/* ---------- Cards ---------- */
.cards { display: grid; gap: 16px; }
@media (min-width: 640px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cards { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
.card {
	position: relative; display: flex; flex-direction: column; padding: 26px; border-radius: var(--radius);
	background: #fff; border: 1px solid var(--line); color: var(--ink-2); transition: border-color .2s, box-shadow .2s, transform .2s;
}
.card:hover { border-color: var(--brand-300); box-shadow: var(--shadow); transform: translateY(-2px); color: var(--ink-2); }
.card__icon { display: grid; place-items: center; width: 52px; height: 52px; margin-bottom: 18px; border-radius: 14px; background: var(--brand-50); color: var(--brand); }
.card h3, .card .h3 { margin-bottom: 8px; }
.card p { margin: 0 0 18px; font-size: .95rem; color: var(--muted); }
.card__link { display: inline-flex; align-items: center; gap: 6px; margin-top: auto; font-weight: 700; font-size: .9rem; color: var(--brand); }
.card:hover .card__link .ico { transform: translateX(3px); }
.card__link .ico { transition: transform .2s; }

/* ---------- Split / steps ---------- */
.split { display: grid; gap: 40px; }
@media (min-width: 1024px) { .split { grid-template-columns: .9fr 1.1fr; gap: 72px; align-items: start; } .split__text { position: sticky; top: calc(var(--header-h) + 32px); } }
.split__text > p:not(.kicker) { color: var(--muted); font-size: 1.05rem; margin-bottom: 24px; }
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.steps li { display: flex; gap: 18px; padding: 22px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.steps__n { flex: none; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: var(--ink); color: #fff; font-weight: 700; font-size: .9rem; }
.steps h3 { margin-bottom: 4px; }
.steps p { margin: 0; color: var(--muted); font-size: .95rem; }

/* ---------- Belge table ---------- */
.belge__tools { display: grid; gap: 14px; margin-bottom: 20px; }
@media (min-width: 900px) { .belge__tools { grid-template-columns: 340px 1fr; align-items: center; } }
.belge__search {
	display: flex; align-items: center; gap: 10px; height: 48px; padding: 0 16px; border-radius: 999px;
	background: #fff; border: 1.5px solid var(--line-2); color: var(--muted);
}
.belge__search:focus-within { border-color: var(--brand); box-shadow: 0 0 0 4px rgba(13, 127, 188, .1); }
.belge__search input { flex: 1; min-width: 0; height: 100%; border: 0; outline: 0; background: none; font: inherit; font-size: 16px; color: var(--ink); }
.chips { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; margin: 0 calc(var(--gutter) * -1); padding-left: var(--gutter); padding-right: var(--gutter); }
@media (min-width: 900px) { .chips { margin: 0; padding-left: 0; padding-right: 0; flex-wrap: wrap; } }
.chips::-webkit-scrollbar { display: none; }
.chip { flex: none; height: 38px; padding: 0 16px; border-radius: 999px; border: 1.5px solid var(--line-2); background: #fff; color: var(--ink-2); font-weight: 600; font-size: .88rem; transition: .15s; }
.chip:hover { border-color: var(--ink-2); }
.chip.is-active { background: var(--ink); border-color: var(--ink); color: #fff; }

.belge__table { display: grid; gap: 10px; }
.belge__row {
	position: relative; display: grid; grid-template-columns: 1fr 1fr auto; gap: 10px 14px; padding: 16px;
	background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
}
.belge__row.belge__row--head { display: none; }
.belge__row [role="cell"] { display: grid; align-content: start; gap: 1px; font-size: .92rem; color: var(--ink); font-variant-numeric: tabular-nums; min-width: 0; }
.belge__row [role="cell"]::before { content: attr(data-label); font-size: .68rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }
.belge__grup { grid-column: 1 / 3; display: flex !important; flex-wrap: wrap; gap: 6px; align-items: center; }
.belge__grup::before, .belge__act::before { display: none; }
.belge__tutar { grid-column: 1 / 2; font-weight: 700; }
.belge__tutar, .belge__row [data-label="Kullanım değeri"] { white-space: nowrap; font-size: .9rem !important; }
.belge__row [data-label="Kullanım değeri"] { grid-column: 2 / -1; }
.belge__row [data-label="Süre"] { grid-column: 3; grid-row: 1; justify-items: end; }
.belge__row [data-label="Süre"]::before { display: none; }
.belge__row [data-label="Süre"] { font-size: .75rem !important; font-weight: 700; align-self: start; background: var(--soft); padding: 4px 8px; border-radius: 6px; }
.belge__not { grid-column: 1 / -1; color: var(--ink-2) !important; font-size: .85rem !important; }
.belge__not::before { display: none; }
.belge__not.is-empty { display: none !important; }
.belge__not .pill { justify-self: start; margin-bottom: 4px; }
.belge__act { grid-column: 1 / -1; }
.belge__act .btn { width: 100%; min-height: 42px; }
.belge__row.is-sold { opacity: .6; }
.belge__empty { padding: 28px; text-align: center; background: var(--soft); border-radius: var(--radius); margin: 0; }
@media (min-width: 900px) {
	.belge__table { gap: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; box-shadow: var(--shadow); }
	.belge__row, .belge__row.belge__row--head {
		display: grid; grid-template-columns: 1.1fr 1.3fr 1.3fr .6fr 1.4fr 130px; gap: 16px; align-items: center;
		padding: 16px 22px; border: 0; border-radius: 0; border-top: 1px solid var(--line);
	}
	.belge__row.belge__row--head { border-top: 0; background: var(--soft); padding-top: 12px; padding-bottom: 12px; }
	.belge__row--head span { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
	.belge__row:not(.belge__row--head):hover { background: #f7fbfe; }
	.belge__row [role="cell"]::before { display: none; }
	.belge__grup, .belge__tutar, .belge__not, .belge__act, .belge__row [data-label="Süre"], .belge__row [data-label="Kullanım değeri"] { grid-column: auto; grid-row: auto; }
	.belge__tutar, .belge__row [data-label="Kullanım değeri"] { font-size: .95rem !important; }
	.belge__row [data-label="Süre"] { justify-items: start; background: none; padding: 0; font-size: .92rem !important; font-weight: 500; align-self: center; }
	.belge__not.is-empty { display: grid !important; }
	.belge__not { font-size: .86rem !important; }
	.belge__act .btn { width: auto; min-height: 36px; }
	.belge__empty { border-radius: 0; }
}
.info-note { display: flex; gap: 14px; margin-top: 24px; padding: 18px 20px; border-radius: var(--radius); background: var(--brand-50); color: var(--ink-2); font-size: .93rem; }
.info-note .ico { color: var(--brand); }
.info-note p { margin: 0; }

/* ---------- Posts ---------- */
.posts { display: grid; gap: 20px; }
@media (min-width: 640px) { .posts { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .posts { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.post-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: box-shadow .2s, transform .2s; }
.post-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.post-card__media { display: block; aspect-ratio: 16 / 9; background: linear-gradient(135deg, var(--brand-50), #dbeef8); }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; }
.post-card__ph { display: grid; place-items: center; height: 100%; color: var(--brand-300); }
.post-card__body { display: flex; flex-direction: column; flex: 1; padding: 22px; }
.post-card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.post-card h3 a { color: var(--ink); }
.post-card h3 a:hover { color: var(--brand); }
.post-card__body > p:not(.meta) { color: var(--muted); font-size: .94rem; }
.post-card .card__link { margin-top: auto; }
.pagination { margin-top: 40px; }
.nav-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.page-numbers { display: inline-grid; place-items: center; min-width: 44px; height: 44px; padding: 0 12px; border-radius: 12px; border: 1px solid var(--line); color: var(--ink); font-weight: 600; }
.page-numbers.current { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 10px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); transition: border-color .2s; }
.faq details[open] { border-color: var(--line-2); box-shadow: var(--shadow); }
.faq summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 20px; list-style: none; font-weight: 700; color: var(--ink); cursor: pointer; }
.faq summary::-webkit-details-marker { display: none; }
.faq__plus { flex: none; display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; background: var(--soft); color: var(--ink); transition: transform .2s, background .2s; }
.faq details[open] .faq__plus { transform: rotate(45deg); background: var(--brand); color: #fff; }
.faq__a { padding: 0 20px 18px; color: var(--ink-2); }
.faq__a p { margin: 0; }

/* ---------- Contact ---------- */
.section--contact { background: linear-gradient(180deg, #fff, var(--soft)); }
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.contact-list li { display: flex; align-items: center; gap: 14px; }
.contact-list small { display: block; color: var(--muted); font-size: .8rem; }
.contact-list a, .contact-list span { color: var(--ink); font-weight: 600; }
.contact-list__ico { flex: none; display: grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; background: #fff; border: 1px solid var(--line); color: var(--brand); }
.contact-list__ico--wa { color: var(--wa); }

.form { padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); }
@media (min-width: 768px) { .form { padding: 36px; } }
.form__title { font-size: 1.35rem; margin-bottom: 20px; }
.form__grid { display: grid; gap: 14px; margin-bottom: 20px; }
@media (min-width: 560px) { .form__grid { grid-template-columns: 1fr 1fr; } .field--full { grid-column: 1 / -1; } }
.field { display: grid; gap: 6px; }
.field span { font-size: .85rem; font-weight: 600; color: var(--ink); }
.field input, .field select, .field textarea {
	width: 100%; min-height: 50px; padding: 12px 14px; border-radius: 12px; border: 1.5px solid var(--line-2);
	background: #fff; color: var(--ink); font: inherit; font-size: 16px; transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(13, 127, 188, .12); }
.form__note { margin: 12px 0 0; font-size: .8rem; color: var(--muted); text-align: center; }
.notice { padding: 12px 16px; border-radius: 12px; margin-bottom: 16px; font-size: .92rem; font-weight: 600; }
.notice--ok { background: var(--ok-50); color: var(--ok); }
.notice--err { background: #fdecec; color: #a82727; }

.split--contact { grid-template-columns: 1fr; }
@media (min-width: 1024px) { .split--contact { grid-template-columns: 1.05fr .95fr; } }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.ccard { display: grid; gap: 4px; padding: 18px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); color: var(--ink); min-width: 0; }
a.ccard:hover { border-color: var(--brand-300); color: var(--ink); }
.ccard .contact-list__ico { width: 40px; height: 40px; margin-bottom: 8px; background: var(--soft); border: 0; }
.ccard small { color: var(--muted); font-size: .78rem; }
.ccard strong { font-size: .95rem; overflow-wrap: anywhere; }
.map { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); margin-bottom: 24px; }
.map iframe { width: 100%; height: 280px; border: 0; }
.map__addr { display: flex; gap: 8px; align-items: center; padding: 14px 16px; background: #fff; font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--line); font-size: .92rem; }
.map__addr .ico { color: var(--brand); }

/* ---------- Page hero & prose ---------- */
.phero { padding: 28px 0 36px; background: linear-gradient(180deg, #f3f8fb, #fff); border-bottom: 1px solid var(--line); }
@media (min-width: 768px) { .phero { padding: 44px 0 56px; } }
.phero h1 { font-size: clamp(1.8rem, 1.3rem + 2.2vw, 2.8rem); max-width: 880px; margin-bottom: 12px; }
.phero .lead { max-width: 720px; color: var(--muted); margin: 0; }
.crumbs ol { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; margin: 0 0 16px; padding: 0; font-size: .85rem; color: var(--muted); }
.crumbs li + li::before { content: "/"; margin-right: 6px; color: var(--line-2); }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--brand); }

.with-aside { display: grid; gap: 40px; }
@media (min-width: 1024px) { .with-aside { grid-template-columns: minmax(0, 1fr) 340px; gap: 64px; align-items: start; } .with-aside .aside { position: sticky; top: calc(var(--header-h) + 24px); } }

.prose { font-size: 1.05rem; line-height: 1.8; color: var(--ink-2); max-width: 760px; min-width: 0; }
.prose--intro { margin-bottom: 28px; }
.prose > :first-child { margin-top: 0; }
.prose h2 { font-size: clamp(1.35rem, 1.15rem + .8vw, 1.7rem); margin: 1.8em 0 .6em; }
.prose h3 { font-size: 1.2rem; margin: 1.6em 0 .5em; }
.prose p, .prose ul, .prose ol { margin: 0 0 1.2em; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li { margin-bottom: .4em; }
.prose li::marker { color: var(--brand); }
.prose a { text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.prose strong { color: var(--ink); }
.prose blockquote, .prose .wp-block-quote { margin: 1.6em 0; padding: 18px 22px; border-left: 4px solid var(--brand); background: var(--brand-50); border-radius: 0 12px 12px 0; color: var(--ink); }
.prose blockquote p:last-child { margin: 0; }
.prose img, .prose figure { border-radius: 12px; margin: 1.6em 0; }
.prose__cover { margin-top: 0 !important; }
.prose table { width: 100%; border-collapse: collapse; font-size: .95rem; display: block; overflow-x: auto; }
.prose th, .prose td { padding: 10px 12px; border: 1px solid var(--line); text-align: left; }
.prose th { background: var(--soft); color: var(--ink); }
.prose .wp-block-button__link { display: inline-flex; padding: 12px 22px; border-radius: 999px; background: var(--brand); color: #fff; text-decoration: none; font-weight: 600; }
.prose .has-text-align-center { text-align: center; }
.share { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--line); font-size: .9rem; }
.share span { font-weight: 600; color: var(--ink); margin-right: 4px; }
.share a { padding: 6px 14px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink-2); text-decoration: none; }
.share a:hover { border-color: var(--ink); color: var(--ink); }

.aside { display: grid; gap: 16px; }
.aside__box { padding: 24px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); }
.aside__box h2 { font-size: 1.1rem; margin-bottom: 12px; }
.aside__box--brand { background: var(--ink); border-color: var(--ink); color: #c4d4e3; display: grid; gap: 10px; }
.aside__box--brand h2 { color: #fff; margin: 0; }
.aside__box--brand p { margin: 0 0 6px; font-size: .95rem; }
.aside__list { list-style: none; margin: 0; padding: 0; }
.aside__list a { display: flex; align-items: center; gap: 10px; padding: 11px 0; border-top: 1px solid var(--line); color: var(--ink-2); font-weight: 600; font-size: .94rem; }
.aside__list li:first-child a { border-top: 0; }
.aside__list a .ico { color: var(--brand); }
.aside__list a:hover, .aside__list a[aria-current] { color: var(--brand); }

.empty { text-align: center; padding: 40px 0; }
.searchform { display: flex; gap: 10px; max-width: 520px; margin: 0 auto; }
.searchform .belge__search { flex: 1; }
.notfound { text-align: center; }
.notfound .hero__actions { justify-content: center; }
.notfound__code { font-size: 5rem; font-weight: 800; letter-spacing: -.05em; color: var(--brand-50); -webkit-text-stroke: 2px var(--brand-300); margin: 0; line-height: 1; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #9fb3c6; padding: 0 0 24px; margin-top: 0; font-size: .94rem; }
.footer a { color: #d6e2ed; }
.footer a:hover { color: #fff; }
.footer__cta {
	position: relative; top: -40px; display: grid; gap: 20px; padding: 28px; border-radius: 20px;
	background: linear-gradient(120deg, var(--brand) 0%, #0b5f8f 100%); color: #e3f2fb; box-shadow: var(--shadow-lg);
}
.footer__cta h2 { color: #fff; font-size: clamp(1.35rem, 1.1rem + 1vw, 1.9rem); margin-bottom: 6px; }
.footer__cta p { margin: 0; }
.footer__cta-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.footer__cta-actions .btn { flex: 1 1 auto; }
@media (min-width: 900px) { .footer__cta { grid-template-columns: 1fr auto; align-items: center; padding: 40px 48px; } .footer__cta-actions .btn { flex: 0 0 auto; } }
.footer__grid { display: grid; gap: 32px; padding: 12px 0 40px; }
@media (min-width: 640px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 48px; } }
.footer__brand { font-size: 1.5rem; font-weight: 800; color: #fff; letter-spacing: -.03em; margin-bottom: 12px; }
.footer__brand span { color: var(--brand-300); font-weight: 600; }
.footer__h { font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; color: #fff; margin-bottom: 16px; }
.footer__list, .footer .menu { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer__contact { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.footer__contact li { display: flex; gap: 10px; }
.footer__contact .ico { color: var(--brand-300); margin-top: 3px; }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .1); font-size: .85rem; }
.footer__bottom p { margin: 0; }

/* ---------- Mobile action bar ---------- */
.mbar {
	position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: grid; grid-template-columns: repeat(4, 1fr);
	background: #fff; border-top: 1px solid var(--line); box-shadow: 0 -8px 24px -16px rgba(11, 34, 57, .35);
	padding-bottom: env(safe-area-inset-bottom);
}
.mbar a, .mbar button {
	display: grid; justify-items: center; gap: 2px; padding: 9px 4px 8px; min-height: 60px;
	background: none; border: 0; color: var(--ink-2); font-size: .72rem; font-weight: 600;
}
.mbar a:active, .mbar button:active { background: var(--soft); }
.mbar .ico { color: var(--brand); }
.mbar__wa .ico { color: var(--wa); }
@media (max-width: 1023px) { :root { --mbar-h: calc(60px + env(safe-area-inset-bottom)); } }
@media (min-width: 1024px) { .mbar { display: none; } }

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
}

/* ---------- Stats band ---------- */
.stats { position: relative; margin-top: -1px; background: var(--ink); color: #9fb3c6; overflow: hidden; }
.stats::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 200px at 20% 0%, rgba(92, 192, 238, .18), transparent 70%), radial-gradient(500px 200px at 90% 100%, rgba(13, 127, 188, .25), transparent 70%); }
.stats__in { position: relative; display: grid; grid-template-columns: repeat(2, 1fr); }
.stat { display: grid; gap: 2px; padding: 26px 8px; text-align: center; }
.stat strong { color: #fff; font-size: clamp(1.9rem, 1.4rem + 2vw, 2.8rem); font-weight: 800; letter-spacing: -.04em; line-height: 1.05; font-variant-numeric: tabular-nums; }
.stat strong small { font-size: .7em; color: var(--brand-300); margin: 0 1px; }
.stat > span { font-size: .88rem; }
.stat + .stat { border-left: 1px solid rgba(255, 255, 255, .08); }
.stat:nth-child(3) { border-left: 0; border-top: 1px solid rgba(255, 255, 255, .08); }
.stat:nth-child(4) { border-top: 1px solid rgba(255, 255, 255, .08); }
@media (min-width: 768px) {
	.stats__in { grid-template-columns: repeat(4, 1fr); }
	.stat { padding: 36px 16px; }
	.stat:nth-child(3) { border-left: 1px solid rgba(255, 255, 255, .08); }
	.stat:nth-child(3), .stat:nth-child(4) { border-top: 0; }
}

/* ---------- Post cover ---------- */
.post-card__media { position: relative; overflow: hidden; }
.post-card__cover {
	position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: space-between; padding: 20px 22px;
	background:
		linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px) 0 0 / 28px 28px,
		linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px) 0 0 / 28px 28px,
		radial-gradient(420px 220px at 100% 0%, rgba(92, 192, 238, .45), transparent 70%),
		linear-gradient(140deg, #0b2239 0%, #0d4a73 100%);
	color: #fff; transition: transform .5s cubic-bezier(.2, .8, .2, 1);
}
.post-card:hover .post-card__cover { transform: scale(1.04); }
.post-card__tag { align-self: flex-start; padding: 4px 10px; border-radius: 999px; background: rgba(255, 255, 255, .12); font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.post-card__big { font-size: 1.3rem; font-weight: 800; line-height: 1.15; letter-spacing: -.02em; max-width: 90%; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.post-card__logo { position: absolute; right: 20px; bottom: 16px; font-weight: 800; font-size: .8rem; letter-spacing: .1em; color: rgba(255, 255, 255, .4); }
.post-card__big { margin-bottom: 18px; }

/* ---------- Motion ---------- */
.hcard { animation: mrt-float 7s ease-in-out infinite; }
@keyframes mrt-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.hero__text > * { animation: mrt-up .7s cubic-bezier(.2, .8, .2, 1) both; }
.hero__text > :nth-child(2) { animation-delay: .06s; }
.hero__text > :nth-child(3) { animation-delay: .12s; }
.hero__text > :nth-child(4) { animation-delay: .18s; }
.hero__text > :nth-child(5) { animation-delay: .24s; }
.hero__card { animation: mrt-up .9s .2s cubic-bezier(.2, .8, .2, 1) both; }
@keyframes mrt-up { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
.hero h1 em { background: linear-gradient(90deg, var(--brand) 0%, #22a7e0 50%, var(--brand) 100%); background-size: 200% auto; -webkit-background-clip: text; background-clip: text; color: transparent; animation: mrt-shine 6s linear infinite; }
@keyframes mrt-shine { to { background-position: 200% center; } }
.hcard__list li { transition: background .2s; }
.hcard__list li:hover { background: var(--soft); border-radius: 10px; }
.pill--live::before { content: ""; width: 6px; height: 6px; margin-right: 6px; border-radius: 50%; background: currentColor; animation: mrt-pulse 1.6s infinite; }
@keyframes mrt-pulse { 0% { box-shadow: 0 0 0 0 rgba(23, 122, 69, .5); } 100% { box-shadow: 0 0 0 7px rgba(23, 122, 69, 0); } }
.js [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.2, .8, .2, 1) var(--d, 0ms), transform .7s cubic-bezier(.2, .8, .2, 1) var(--d, 0ms); }
.js [data-reveal].is-in { opacity: 1; transform: none; }
.card.is-in:hover { transform: translateY(-3px); }
.steps li { transition: border-color .2s, box-shadow .2s, opacity .7s, transform .7s; }
.steps li:hover { border-color: var(--brand-300); box-shadow: var(--shadow); }
.steps li:hover .steps__n { background: var(--brand); }
.steps__n { transition: background .2s; }
@media (prefers-reduced-motion: reduce) { .js [data-reveal] { opacity: 1; transform: none; } }
.hcard__codes { display: flex; flex-direction: column; gap: 4px; min-width: 52px; }

/* =========================================================
   v1.1 — görsel iyileştirmeler
   ========================================================= */

/* Hero: koyu lacivert zemin */
.hero {
	padding: 48px 0 128px; color: #b9cadb;
	background:
		radial-gradient(760px 460px at 88% 0%, rgba(92, 192, 238, .22), transparent 62%),
		radial-gradient(620px 420px at 0% 100%, rgba(201, 162, 92, .14), transparent 60%),
		linear-gradient(160deg, #0b2239 0%, #0a1a2c 100%);
}
.hero::before {
	opacity: 1;
	background-image: linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
	background-size: 56px 56px;
}
.hero h1 { color: #fff; }
.hero h1 em { font-style: italic; background: linear-gradient(90deg, var(--gold-300) 0%, #fff3d6 50%, var(--gold-300) 100%); background-size: 200% auto; -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .lead { color: #b9cadb; }
.hero .eyebrow { background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .14); color: #dde7f0; }
.hero__points { color: #d3dee8; }
.hero__points .ico { color: var(--gold); }
.hero .btn--primary { box-shadow: 0 10px 30px -10px rgba(13, 127, 188, .9); }
.hcard { border-color: rgba(255, 255, 255, .6); box-shadow: 0 40px 90px -30px rgba(0, 0, 0, .6), 0 0 0 8px rgba(255, 255, 255, .05); }
.hero__badge { background: linear-gradient(135deg, var(--gold-300), var(--gold)); color: #3a2a0e; }
.hero__badge strong { color: #0b2239; font-family: var(--display); font-weight: 600; }
@media (min-width: 1024px) { .hero { padding: 80px 0 176px; } }

/* İstatistikler: hero'ya binen beyaz kart */
.stats { margin-top: -72px; z-index: 2; background: none; color: var(--muted); overflow: visible; }
.stats::before { display: none; }
.stats__in { background: #fff; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow-lg); }
.stat strong { color: var(--ink); font-family: var(--display); font-weight: 500; letter-spacing: -.02em; }
.stat strong small { color: var(--gold); }
.stat + .stat, .stat:nth-child(3), .stat:nth-child(4) { border-color: var(--line) !important; }
.stats + .section { padding-top: 72px; }
@media (min-width: 768px) { .stats { margin-top: -96px; } .stats + .section { padding-top: 112px; } }

/* Hizmet kartları: numara, üst çizgi, ikon */
.cards { counter-reset: svc; }
.card { overflow: hidden; padding: 30px 28px 26px; }
.card::before { content: ""; position: absolute; inset: 0 0 auto; height: 3px; background: linear-gradient(90deg, var(--brand), var(--gold)); transform: scaleX(0); transform-origin: left; transition: transform .45s cubic-bezier(.2, .8, .2, 1); }
.card::after { counter-increment: svc; content: "0" counter(svc); position: absolute; top: 22px; right: 26px; font-family: var(--display); font-size: 2rem; font-style: italic; line-height: 1; color: #e3eaf1; transition: color .3s; }
.card:hover::before { transform: none; }
.card:hover::after { color: var(--gold-300); }
.card:hover { border-color: var(--line-2); box-shadow: var(--shadow-lg); }
.card__icon { background: linear-gradient(145deg, var(--brand-50), #fff); border: 1px solid #d6ebf6; transition: background .3s, color .3s, border-color .3s; }
.card:hover .card__icon { background: var(--ink); border-color: var(--ink); color: var(--gold-300); }
.card h3, .card .h3 { font-size: 1.2rem; }

/* Adımlar: zaman çizgisi */
.steps { position: relative; }
.steps::before { content: ""; position: absolute; left: 44px; top: 24px; bottom: 24px; width: 2px; background: repeating-linear-gradient(var(--gold) 0 6px, transparent 6px 12px); opacity: .6; }
.steps li { position: relative; }
.steps__n { background: var(--ink); color: var(--gold-300); font-family: var(--display); font-style: italic; font-size: 1.05rem; font-weight: 500; border-radius: 50%; }

/* Bölüm zeminleri */
.section--soft { background: radial-gradient(800px 300px at 100% 0%, rgba(201, 162, 92, .07), transparent 70%), var(--soft); }
.belge__table { box-shadow: var(--shadow-lg); }
.belge__row--head { background: var(--ink) !important; }
.belge__row--head span { color: #c9d6e2 !important; }

/* SSS */
.faq details { transition: border-color .2s, box-shadow .2s; }
.faq details[open] { border-color: var(--line-2); box-shadow: var(--shadow-lg); }
.faq details[open] summary { color: var(--brand-600); }
.faq details[open] .faq__plus { background: var(--ink); color: var(--gold-300); }

/* Form: üstte renkli şerit */
.form { position: relative; overflow: hidden; box-shadow: var(--shadow-lg); }
.form::before { content: ""; position: absolute; inset: 0 0 auto; height: 4px; background: linear-gradient(90deg, var(--brand), var(--gold)); }
.form__title { font-family: var(--display); font-weight: 500; font-size: 1.6rem; }
.contact-list__ico { box-shadow: var(--shadow); }

/* İç sayfa başlığı: koyu */
.phero {
	position: relative; overflow: hidden; padding: 36px 0 48px; border-bottom: 0; color: #b9cadb;
	background: radial-gradient(700px 360px at 90% 0%, rgba(92, 192, 238, .2), transparent 62%), radial-gradient(520px 300px at 0% 120%, rgba(201, 162, 92, .14), transparent 60%), linear-gradient(160deg, #0b2239, #0a1a2c);
}
.phero::before { content: ""; position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px); background-size: 56px 56px; mask-image: radial-gradient(ellipse at 80% 0%, #000 10%, transparent 70%); -webkit-mask-image: radial-gradient(ellipse at 80% 0%, #000 10%, transparent 70%); }
.phero .wrap { position: relative; }
.phero h1 { color: #fff; }
.phero .lead, .phero .meta { color: #b9cadb; }
.phero .crumbs ol, .phero .crumbs a { color: #8fa6bb; }
.phero .crumbs a:hover { color: var(--gold-300); }
.phero .crumbs li + li::before { color: #4c6379; }
@media (min-width: 768px) { .phero { padding: 56px 0 72px; } }

/* Alt bilgi */
.footer__cta { background: radial-gradient(500px 240px at 100% 0%, rgba(201, 162, 92, .35), transparent 70%), linear-gradient(120deg, var(--brand) 0%, #0b4f78 100%); }
.footer__cta h2 { font-weight: 500; }
.footer__brand { font-family: var(--display); font-weight: 600; letter-spacing: -.01em; }
.footer__brand span { color: var(--gold-300); font-style: italic; font-weight: 500; }
.footer__h { color: var(--gold-300); }
.aside__box--brand { background: linear-gradient(160deg, #0b2239, #0d3a5c); }
.aside__box--brand h2 { font-family: var(--display); font-weight: 500; font-size: 1.4rem; }
.footer .btn--light, .footer .btn--light:hover { color: var(--ink); }
