/* ==========================================================================
   aracyonlendir.com — tasarim sistemi
   ========================================================================== */

/* ---------------------------------------------------------------- tokens */
:root {
  /* yuzeyler */
  --bg:            #0a0b0d;
  --bg-2:          #101216;
  --surface:       #14171c;
  --surface-2:     #1a1e25;
  --line:          #262b33;
  --line-strong:   #343b45;

  /* metin */
  --text:          #e9ecf1;
  --text-muted:    #9aa3b0;
  --text-dim:      #6f7885;

  /* marka */
  --gold:          #d9b45b;
  --gold-bright:   #f0d089;
  --gold-deep:     #a8842f;
  --gold-soft:     rgba(217,180,91,.12);

  /* aksiyon */
  --wa:            #22c55e;
  --wa-hover:      #16a34a;

  /* olcek (8pt) */
  --s-1: .25rem;  --s-2: .5rem;   --s-3: .75rem;  --s-4: 1rem;
  --s-5: 1.5rem;  --s-6: 2rem;    --s-7: 3rem;    --s-8: 4rem;
  --s-9: 6rem;

  --r-sm: 8px;  --r: 14px;  --r-lg: 20px;  --r-full: 999px;

  --container: 1180px;
  --header-h: 68px;

  --shadow:    0 1px 2px rgba(0,0,0,.4), 0 8px 24px -12px rgba(0,0,0,.6);
  --shadow-lg: 0 2px 4px rgba(0,0,0,.3), 0 24px 48px -20px rgba(0,0,0,.75);

  --ease: cubic-bezier(.16,.84,.44,1);

  --font: "Inter", "Segoe UI Variable Text", "Segoe UI", system-ui, -apple-system,
          "Helvetica Neue", Arial, "Noto Sans", sans-serif;

  color-scheme: dark;
}

/* ------------------------------------------------------------- reset */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + var(--s-4));
}

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

img, svg, video { display: block; max-width: 100%; height: auto; }
img { background: var(--surface); }
.ico { width: 1.125em; height: 1.125em; flex: none; }

h1, h2, h3, h4 {
  margin: 0 0 var(--s-4);
  line-height: 1.18;
  letter-spacing: -.022em;
  font-weight: 700;
  text-wrap: balance;
}
h1 { font-size: clamp(2rem, 1.25rem + 3.2vw, 3.5rem); font-weight: 800; letter-spacing: -.03em; }
h2 { font-size: clamp(1.5rem, 1.15rem + 1.5vw, 2.25rem); }
h3 { font-size: clamp(1.125rem, 1rem + .5vw, 1.375rem); }
h4 { font-size: 1.0625rem; }

p  { margin: 0 0 var(--s-4); text-wrap: pretty; }
p:last-child, ul:last-child, ol:last-child { margin-bottom: 0; }

a { color: var(--gold); text-decoration-color: rgba(217,180,91,.4); text-underline-offset: 3px; }
a:hover { color: var(--gold-bright); text-decoration-color: currentColor; }

strong { color: #fff; font-weight: 650; }
em { color: var(--text); }
hr { border: 0; border-top: 1px solid var(--line); margin: var(--s-7) 0; }

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--gold); color: #17130a; }

/* ------------------------------------------------------------ layout */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--s-5); }
.container--narrow { max-width: 760px; }

.section { padding-block: clamp(3rem, 1.5rem + 6vw, 6rem); }
.section--tight { padding-block: clamp(2.5rem, 1.5rem + 4vw, 4rem); }
.section--alt { background: var(--bg-2); border-block: 1px solid var(--line); }

.section-head { max-width: 720px; margin-bottom: var(--s-6); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--text-muted); font-size: 1.0625rem; margin: 0; }

.eyebrow {
  display: inline-block;
  margin-bottom: var(--s-3);
  font-size: .75rem;
  font-weight: 650;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}

.skip-link {
  position: absolute; left: var(--s-4); top: -100px; z-index: 2000;
  background: var(--gold); color: #17130a; font-weight: 700;
  padding: var(--s-3) var(--s-5); border-radius: var(--r-sm);
  transition: top .2s var(--ease);
}
.skip-link:focus { top: var(--s-3); color: #17130a; }

/* ------------------------------------------------------------ butonlar */
.btn {
  --btn-bg: var(--surface-2);
  --btn-fg: var(--text);
  --btn-bd: var(--line-strong);
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s-2);
  padding: .8rem 1.5rem;
  min-height: 48px;
  border: 1px solid var(--btn-bd);
  border-radius: var(--r-full);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font: inherit; font-weight: 650; font-size: .9375rem;
  text-decoration: none; cursor: pointer;
  transition: transform .18s var(--ease), background-color .18s var(--ease),
              border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.btn:hover { transform: translateY(-1px); color: var(--btn-fg); }
.btn:active { transform: translateY(0); }
.btn svg { flex: none; width: 18px; height: 18px; }

.btn--wa      { --btn-bg: var(--wa); --btn-fg: #04140a; --btn-bd: transparent; box-shadow: 0 6px 20px -8px rgba(34,197,94,.7); }
.btn--wa:hover{ --btn-bg: var(--wa-hover); box-shadow: 0 10px 28px -10px rgba(34,197,94,.8); }
.btn--gold    { --btn-bg: var(--gold); --btn-fg: #17130a; --btn-bd: transparent; }
.btn--gold:hover { --btn-bg: var(--gold-bright); }
.btn--ghost   { --btn-bg: transparent; --btn-fg: var(--text); --btn-bd: var(--line-strong); }
.btn--ghost:hover { --btn-bd: var(--gold); --btn-fg: var(--gold-bright); }
.btn--lg      { padding: 1rem 1.9rem; min-height: 56px; font-size: 1rem; }
.btn--block   { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--s-3); }

/* -------------------------------------------------------------- header */
/* Blur, .header'in kendisinde degil ::before'da uygulanir.
   backdrop-filter uygulanan bir oge, icindeki position:fixed elemanlar icin
   containing block yaratir; bu da mobil menu panelini header'a hapsederdi. */
.header {
  position: sticky; top: 0; z-index: 900;
  background: transparent;
  border-bottom: 1px solid var(--line);
}
.header::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(10,11,13,.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
}
.header__inner {
  display: flex; align-items: center; gap: var(--s-5);
  height: var(--header-h);
}

.brand {
  display: inline-flex; align-items: center; gap: .625rem;
  font-weight: 800; font-size: 1.0625rem; letter-spacing: -.02em;
  color: var(--text); text-decoration: none; white-space: nowrap; flex: none;
}
.brand:hover { color: var(--text); }
.brand__mark {
  display: grid; place-items: center;
  width: 34px; height: 34px; flex: none;
  border-radius: 10px;
  background: linear-gradient(145deg, var(--gold-bright), var(--gold-deep));
  color: #17130a;
}
.brand__mark svg { width: 20px; height: 20px; }
.brand__text b { color: var(--gold); font-weight: 800; }

.nav { margin-left: auto; display: flex; align-items: center; }
.nav__top, .nav__foot { display: none; }
.nav__list { display: flex; align-items: center; gap: var(--s-1); list-style: none; margin: 0; padding: 0; }
.nav__link {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .55rem .7rem;
  border-radius: var(--r-sm);
  color: var(--text-muted); font-size: .9375rem; font-weight: 600;
  text-decoration: none; white-space: nowrap;
  background: none; border: 0; font-family: inherit; cursor: pointer;
  transition: color .16s var(--ease), background-color .16s var(--ease);
}
.nav__link:hover, .nav__link[aria-expanded="true"] { color: var(--text); background: var(--surface); }
.nav__link[aria-current="page"] { color: var(--gold); }
.nav__link .chev { width: 12px; height: 12px; transition: transform .2s var(--ease); }
.nav__link[aria-expanded="true"] .chev { transform: rotate(180deg); }

/* mega menu */
.has-mega { position: relative; }
.mega {
  position: absolute; top: calc(100% + 10px); left: 50%; translate: -50% 0;
  width: min(720px, calc(100vw - 3rem));
  padding: var(--s-5);
  background: var(--surface); border: 1px solid var(--line-strong);
  border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
}
.has-mega:hover > .mega,
.has-mega:focus-within > .mega,
.mega[data-open="true"] { opacity: 1; visibility: visible; transform: translateY(0); }

.mega__head {
  display: flex; align-items: baseline; justify-content: space-between; gap: var(--s-4);
  padding-bottom: var(--s-3); margin-bottom: var(--s-4);
  border-bottom: 1px solid var(--line);
}
.mega__head strong { font-size: 1.0625rem; }
.mega__head a { font-size: .875rem; font-weight: 650; }
.mega__grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 2px; list-style: none; margin: 0; padding: 0;
}
.mega__grid a {
  display: block; padding: .45rem .6rem; border-radius: 6px;
  color: var(--text-muted); font-size: .875rem; text-decoration: none;
  transition: color .14s, background-color .14s;
}
.mega__grid a:hover { color: var(--gold-bright); background: var(--gold-soft); }

/* hamburger */
.burger {
  display: none; margin-left: auto;
  width: 44px; height: 44px; padding: 0;
  align-items: center; justify-content: center;
  background: var(--surface); border: 1px solid var(--line-strong);
  border-radius: var(--r-sm); color: var(--text); cursor: pointer;
}
.burger svg { width: 20px; height: 20px; }

.nav__close {
  width: 40px; height: 40px; display: grid; place-items: center;
  background: var(--surface); border: 1px solid var(--line-strong);
  border-radius: var(--r-sm); color: var(--text); cursor: pointer;
}

.scrim {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(4,5,7,.7);
  backdrop-filter: blur(2px);
  opacity: 0; visibility: hidden; transition: opacity .25s var(--ease), visibility .25s;
}
.scrim[data-open="true"] { opacity: 1; visibility: visible; }

body.is-locked { overflow: hidden; }

/* ---------------------------------------------------------- breadcrumb */
.crumbs { border-bottom: 1px solid var(--line); background: var(--bg-2); }
.crumbs ol {
  display: flex; flex-wrap: wrap; align-items: center; gap: .4rem;
  list-style: none; margin: 0; padding: var(--s-3) 0;
  font-size: .8125rem; color: var(--text-dim);
}
.crumbs a { color: var(--text-muted); text-decoration: none; }
.crumbs a:hover { color: var(--gold); }
.crumbs li + li::before { content: "/"; margin-right: .4rem; color: var(--line-strong); }
.crumbs [aria-current="page"] { color: var(--text); }

/* --------------------------------------------------------------- hero */
.hero { position: relative; isolation: isolate; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to right, rgba(8,9,11,.94) 0%, rgba(8,9,11,.78) 42%, rgba(8,9,11,.35) 75%, rgba(8,9,11,.55) 100%),
    linear-gradient(to top, var(--bg) 2%, transparent 45%);
}
.hero__inner {
  display: flex; flex-direction: column; align-items: flex-start;
  min-height: clamp(460px, 62vh, 640px);
  padding-block: clamp(3rem, 1.5rem + 6vw, 6rem);
  justify-content: center;
}
.hero--compact .hero__inner { min-height: clamp(320px, 40vh, 420px); }
.hero__inner > * { max-width: 42rem; }
.hero h1 { margin-bottom: var(--s-4); }
.hero__lead { font-size: clamp(1.0625rem, 1rem + .35vw, 1.25rem); color: #d5dae2; margin-bottom: var(--s-5); }

.pill-row { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-bottom: var(--s-5); }
.pill {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .375rem .75rem;
  border: 1px solid rgba(217,180,91,.32); border-radius: var(--r-full);
  background: rgba(217,180,91,.08);
  color: var(--gold-bright); font-size: .8125rem; font-weight: 600;
}
.pill svg { width: 14px; height: 14px; }

.hero__note { margin-top: var(--s-5); font-size: .875rem; color: var(--text-muted); }
.hero__note a { font-weight: 650; }

/* -------------------------------------------------------------- stats */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: var(--surface); overflow: hidden;
}
.stats > div { padding: var(--s-5) var(--s-4); text-align: center; border-right: 1px solid var(--line); }
.stats > div:last-child { border-right: 0; }
.stats dt { font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.125rem); font-weight: 800; color: var(--gold); letter-spacing: -.02em; }
.stats dd { margin: .25rem 0 0; font-size: .8125rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; }

/* -------------------------------------------------------------- cards */
.grid { display: grid; gap: var(--s-5); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }

.card {
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden;
  transition: border-color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}
.card:hover { border-color: var(--line-strong); transform: translateY(-3px); box-shadow: var(--shadow); }
.card__media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--surface-2); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: scale .4s var(--ease); }
.card:hover .card__media img { scale: 1.04; }
.card__body { padding: var(--s-5); display: flex; flex-direction: column; flex: 1; gap: var(--s-3); }
.card__body h3 { margin: 0; font-size: 1.125rem; }
.card__body h3 a { color: var(--text); text-decoration: none; }
.card__body h3 a::after { content: ""; position: absolute; inset: 0; }
.card__body p { margin: 0; color: var(--text-muted); font-size: .9375rem; flex: 1; }
.card { position: relative; }
.card__more {
  display: inline-flex; align-items: center; gap: .35rem;
  color: var(--gold); font-size: .875rem; font-weight: 650; text-decoration: none;
}
.card__more svg { width: 14px; height: 14px; transition: translate .2s var(--ease); }
.card:hover .card__more svg { translate: 3px 0; }

.card__icon {
  display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--gold-soft); border: 1px solid rgba(217,180,91,.22);
  color: var(--gold);
}
.card__icon svg { width: 22px; height: 22px; }

.card ul { margin: 0; padding-left: 1.15rem; color: var(--text-muted); font-size: .9375rem; }
.card ul li { margin-bottom: .35rem; }

/* -------------------------------------------------------- guven listesi */
.trust { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: var(--s-5); }
.trust__item { padding-left: var(--s-5); border-left: 2px solid var(--gold); }
.trust__item h3 { font-size: 1.0625rem; margin-bottom: var(--s-2); }
.trust__item p { color: var(--text-muted); font-size: .9375rem; margin: 0; }

/* ------------------------------------------------------------- surec */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: var(--s-5); }
.steps__item { position: relative; padding-top: var(--s-6); }
.steps__item::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; top: 0; left: 0;
  font-size: .875rem; font-weight: 800; letter-spacing: .1em; color: var(--gold);
}
.steps__item::after {
  content: ""; position: absolute; top: .35rem; left: 2.4rem; right: 0; height: 1px; background: var(--line);
}
.steps__item:last-child::after { display: none; }
.steps__item h3 { font-size: 1.0625rem; margin-bottom: var(--s-2); }
.steps__item p { color: var(--text-muted); font-size: .9375rem; margin: 0; }

/* -------------------------------------------------------------- tablo */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--surface); }
table.price { width: 100%; border-collapse: collapse; font-size: .9375rem; min-width: 480px; }
table.price caption { padding: var(--s-4) var(--s-5); text-align: left; color: var(--text-muted); font-size: .875rem; border-bottom: 1px solid var(--line); }
table.price th, table.price td { padding: .85rem var(--s-5); text-align: left; border-bottom: 1px solid var(--line); }
table.price thead th { background: var(--surface-2); color: var(--text-muted); font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 650; }
table.price tbody tr:last-child th, table.price tbody tr:last-child td { border-bottom: 0; }
table.price tbody tr:hover { background: var(--surface-2); }
table.price td.price-val { text-align: right; font-variant-numeric: tabular-nums; font-weight: 700; color: var(--gold); white-space: nowrap; }
.table-note { margin-top: var(--s-3); font-size: .8125rem; color: var(--text-dim); }

/* ---------------------------------------------------------------- sss */
.faq { display: grid; gap: var(--s-3); }
.faq details {
  border: 1px solid var(--line); border-radius: var(--r);
  background: var(--surface); overflow: hidden;
  transition: border-color .2s var(--ease);
}
.faq details[open] { border-color: var(--line-strong); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-4);
  padding: var(--s-4) var(--s-5);
  font-weight: 650; cursor: pointer; list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: none; width: 10px; height: 10px;
  border-right: 2px solid var(--gold); border-bottom: 2px solid var(--gold);
  rotate: 45deg; translate: 0 -2px; transition: rotate .2s var(--ease);
}
.faq details[open] summary::after { rotate: -135deg; translate: 0 2px; }
.faq summary:hover { color: var(--gold-bright); }
.faq .faq__a { padding: 0 var(--s-5) var(--s-5); color: var(--text-muted); }
.faq .faq__a p:last-child { margin-bottom: 0; }

/* ----------------------------------------------------------- yorumlar */
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--s-5); }
.quote {
  padding: var(--s-5); background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--r-lg);
}
.quote blockquote { margin: 0 0 var(--s-4); color: var(--text); font-size: 1rem; }
.quote figcaption { color: var(--text-dim); font-size: .8125rem; font-weight: 600; }
.quote__stars { display: flex; gap: 2px; margin-bottom: var(--s-3); color: var(--gold); }
.quote__stars svg { width: 15px; height: 15px; }

/* --------------------------------------------------------------- prose */
.prose { max-width: 72ch; }
.prose h2 { margin-top: var(--s-7); }
.prose h3 { margin-top: var(--s-6); color: var(--text); }
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.prose p, .prose li { color: #c6ccd6; }
.prose ul, .prose ol { margin: 0 0 var(--s-4); padding-left: 1.3rem; }
.prose li { margin-bottom: .5rem; }
.prose li::marker { color: var(--gold-deep); }
.prose--wide { max-width: none; }

/* ---------------------------------------------------------- link listesi */
.linklist { columns: 4 160px; column-gap: var(--s-5); list-style: none; margin: 0; padding: 0; }
.linklist li { break-inside: avoid; }
.linklist a {
  display: block; padding: .45rem 0;
  color: var(--text-muted); font-size: .9375rem; text-decoration: none;
  border-bottom: 1px solid transparent;
}
.linklist a:hover { color: var(--gold-bright); }

.chips { display: flex; flex-wrap: wrap; gap: var(--s-2); list-style: none; margin: 0; padding: 0; }
.chips a {
  display: inline-block; padding: .45rem .85rem;
  border: 1px solid var(--line-strong); border-radius: var(--r-full);
  background: var(--surface); color: var(--text-muted);
  font-size: .875rem; text-decoration: none;
  transition: color .16s, border-color .16s, background-color .16s;
}
.chips a:hover { color: var(--gold-bright); border-color: var(--gold-deep); background: var(--gold-soft); }

/* ----------------------------------------------------------------- cta */
.cta-band {
  padding: clamp(2rem, 1rem + 4vw, 3.5rem);
  border: 1px solid var(--line-strong); border-radius: var(--r-lg);
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(217,180,91,.14), transparent 60%),
    var(--surface);
  text-align: center;
}
.cta-band h2 { margin-bottom: var(--s-3); }
.cta-band p { max-width: 52ch; margin-inline: auto; color: var(--text-muted); margin-bottom: var(--s-5); }
.cta-band .btn-row { justify-content: center; }

/* -------------------------------------------------------------- footer */
/* alt bosluk, sag alttaki yuzen WhatsApp butonunun icerigi ortmemesi icin */
.footer { border-top: 1px solid var(--line); background: var(--bg-2); padding-block: var(--s-7) 5.5rem; }
.footer__grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--s-6); margin-bottom: var(--s-6);
}
.footer h3 { font-size: .8125rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text-dim); margin-bottom: var(--s-4); }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: .6rem; }
.footer a { color: var(--text-muted); font-size: .9375rem; text-decoration: none; }
.footer a:hover { color: var(--gold-bright); }
.footer__about p { color: var(--text-muted); font-size: .9375rem; max-width: 38ch; }
.footer__contact { margin-top: var(--s-4); display: grid; gap: var(--s-2); }
.footer__contact a { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; color: var(--text); }
.footer__contact svg { width: 16px; height: 16px; color: var(--gold); flex: none; }
.footer__social { display: flex; gap: var(--s-3); margin-top: var(--s-5); }
.footer__social a {
  display: grid; place-items: center; width: 40px; height: 40px;
  border: 1px solid var(--line-strong); border-radius: 50%;
  transition: border-color .18s var(--ease), background-color .18s var(--ease);
}
.footer__social a:hover { border-color: var(--gold); background: var(--gold-soft); }
.footer__social img { width: 20px; height: 20px; background: none; opacity: .85; }
.footer__social a:hover img { opacity: 1; }
.footer__bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--s-4);
  padding-top: var(--s-5); border-top: 1px solid var(--line);
  color: var(--text-dim); font-size: .8125rem;
}
.footer__legal { display: flex; flex-wrap: wrap; gap: var(--s-4); }
.footer__legal a { font-size: .8125rem; }
.footer__disclaimer {
  margin-top: var(--s-4); padding-top: var(--s-4); border-top: 1px solid var(--line);
  color: var(--text-dim); font-size: .75rem; line-height: 1.6; max-width: 80ch;
}

/* --------------------------------------------------------- mobil aksiyon */
.actionbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 800;
  display: none; gap: var(--s-3);
  padding: var(--s-3) var(--s-4) calc(var(--s-3) + env(safe-area-inset-bottom));
  background: rgba(10,11,13,.94);
  border-top: 1px solid var(--line-strong);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.actionbar .btn { flex: 1; min-height: 50px; }

.wa-float {
  position: fixed; right: var(--s-5); bottom: var(--s-5); z-index: 800;
  display: inline-flex; align-items: center; gap: var(--s-2);
  padding: .8rem 1.25rem;
  background: var(--wa); color: #04140a;
  border-radius: var(--r-full); font-weight: 700; font-size: .9375rem;
  text-decoration: none; box-shadow: 0 8px 28px -8px rgba(34,197,94,.8);
  transition: transform .2s var(--ease), background-color .2s var(--ease);
}
.wa-float:hover { transform: translateY(-2px); background: var(--wa-hover); color: #04140a; }
.wa-float svg { width: 20px; height: 20px; }

/* -------------------------------------------------------------- yardimci */
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.text-muted { color: var(--text-muted); }
.mt-6 { margin-top: var(--s-6); }
.mt-7 { margin-top: var(--s-7); }

/* --------------------------------------------------------------- 404 */
.err { display: grid; place-items: center; text-align: center; min-height: 60vh; padding-block: var(--s-8); }
.err__code { font-size: clamp(4rem, 2rem + 12vw, 9rem); font-weight: 800; line-height: 1; color: var(--gold); letter-spacing: -.05em; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .footer__grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer__about { grid-column: 1 / -1; }
}

@media (max-width: 940px) {
  .burger { display: inline-flex; }

  /* ayni <nav> isaretlemesi mobilde off-canvas panele donusur */
  .nav {
    position: fixed; inset: 0 0 0 auto; z-index: 1000;
    width: min(400px, 90vw);
    flex-direction: column; align-items: stretch;
    background: var(--bg-2); border-left: 1px solid var(--line-strong);
    transform: translateX(100%); transition: transform .28s var(--ease);
    overscroll-behavior: contain;
  }
  .nav[data-open="true"] { transform: translateX(0); }

  .nav__top {
    display: flex; align-items: center; justify-content: space-between;
    padding: var(--s-4) var(--s-5); border-bottom: 1px solid var(--line); flex: none;
  }
  .nav__foot { display: block; padding: var(--s-4) var(--s-5); border-top: 1px solid var(--line); flex: none; }

  .nav__list {
    flex-direction: column; align-items: stretch; gap: 0;
    flex: 1; overflow-y: auto;
    padding: var(--s-2) var(--s-5) var(--s-6);
  }
  .nav__list > li { border-bottom: 1px solid var(--line); }
  .nav__link {
    width: 100%; justify-content: space-between;
    padding: var(--s-4) 0; border-radius: 0;
    font-size: 1rem; color: var(--text);
  }
  .nav__link:hover, .nav__link[aria-expanded="true"] { background: none; color: var(--gold); }
  .nav__link .chev { width: 15px; height: 15px; color: var(--text-dim); }

  /* mega menu → akordiyon paneli */
  .mega {
    position: static; width: auto; translate: none; transform: none;
    padding: 0 0 var(--s-4); margin: 0;
    background: none; border: 0; border-radius: 0; box-shadow: none;
    opacity: 1; visibility: visible;
    display: none; transition: none;
  }
  .has-mega:hover > .mega, .has-mega:focus-within > .mega { display: none; }
  .mega[data-open="true"] { display: block; }
  .mega__head { flex-wrap: wrap; gap: var(--s-2); padding-bottom: var(--s-3); margin-bottom: var(--s-3); }
  .mega__grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .mega__grid a { padding: .45rem .25rem; }

  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats > div:nth-child(2n) { border-right: 0; }
  .stats > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .steps__item::after { display: none; }
}

@media (max-width: 720px) {
  :root { --header-h: 60px; }
  body { padding-bottom: 76px; }
  .actionbar { display: flex; }
  .wa-float { display: none; }
  .container { padding-inline: var(--s-4); }
  .hero__inner { min-height: clamp(400px, 56vh, 520px); }
  .hero::after {
    background:
      linear-gradient(to bottom, rgba(8,9,11,.72) 0%, rgba(8,9,11,.86) 55%, var(--bg) 100%);
  }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .linklist { columns: 2 130px; }
  .btn-row .btn { width: 100%; }
}

@media (max-width: 420px) {
  .acc__panel ul { columns: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important; scroll-behavior: auto !important;
  }
}

@media print {
  .header, .footer, .actionbar, .wa-float, .drawer, .scrim, .crumbs { display: none !important; }
  body { background: #fff; color: #000; }
  a { color: #000; }
}
