/* ============================================================
   numermak.com — kurumsal tanıtım sitesi
   Palet logodan ölçüldü: teal #138085, zemin #000000.
   Tek yazı ailesi Inter (variable, kendi sunucumuzdan).
   Hiyerarşi punto ile değil ağırlıkla: gövde 400, başlık 800–900.
   ============================================================ */

/* ---------- Font: Inter variable, latin + latin-ext ----------
   Türkçe: ç ö ü ı -> latin; ğ Ğ ş Ş İ ₺ -> latin-ext. unicode-range
   sayesinde tarayıcı yalnız gereken dosyayı indirir. */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/inter-latin-ext-wght-normal.woff2") format("woff2-variations"),
       url("../fonts/inter-latin-ext-wght-normal.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/inter-latin-wght-normal.woff2") format("woff2-variations"),
       url("../fonts/inter-latin-wght-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- Değişkenler ---------- */
:root {
  /* Ölçülen marka renkleri */
  --teal: #138085;        /* logo teal'i; beyaz metinle 4.71:1 (AA) */
  --black: #000000;       /* logo zemini */
  /* Türetilmiş tonlar (kontrast için) */
  --teal-ink: #0f6a6e;    /* açık zeminde teal metin: beyazda 6.35:1 */
  --teal-deep: #0c5c5f;   /* koyu teal yüzey */
  --teal-light: #3fb5ba;  /* koyu zeminde teal metin: siyahta 8.53:1 */
  --teal-tint: #e6f2f3;   /* açık teal yüzey */
  /* Nötr metin ve yüzeyler */
  --text: #1a1f21;        /* beyazda 16.6:1 */
  --muted: #4a5558;       /* beyazda 7.7:1 */
  --bg: #ffffff;
  --bg-alt: #f4f6f6;
  --border: #dfe5e6;
  --on-dark: #e8ecec;     /* siyahta 17.6:1 */
  --on-dark-muted: #9aa7aa; /* siyahta 8.5:1 */
  --dark-surface: #0c1213;
  --dark-border: rgba(255, 255, 255, .1);
  --whatsapp: #25d366;

  --container: 1440px;
  --gutter: 1.25rem;
  --section: 48px;
  --radius: 2px;

  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --fs-body: 1rem;        /* 16px, mobilde de değişmez */
  --fs-small: .875rem;    /* 14px */
  --fs-h1: 1.75rem;       /* 28px mobil */
  --fs-h2: 1.25rem;       /* 20px mobil */
  --fs-h3: 1.125rem;      /* 18px mobil */
  --track: .06em;         /* başlıklarda ~1.3px @ 22px */
}
@media (min-width: 768px) {
  :root {
    --fs-h1: 2rem;        /* 32px */
    --fs-h2: 1.375rem;    /* 22px */
    --fs-h3: 1.25rem;     /* 20px */
    --gutter: 1.5rem;
  }
}
@media (min-width: 1200px) {
  :root { --fs-h1: 2.25rem; /* 36px: yalnız hero h1 için istisna */ }
}

/* ---------- Temel ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: var(--fs-body);
  line-height: 1.5;
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal-ink); }
a:hover { color: var(--teal-deep); }
:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; }

h1, h2, h3 {
  line-height: 1.2;
  letter-spacing: var(--track);
  color: inherit;
}
h1 { font-size: var(--fs-h1); font-weight: 900; line-height: 1.15; }
h2 { font-size: var(--fs-h2); font-weight: 900; }
h3 { font-size: var(--fs-h3); font-weight: 800; }
p + p { margin-top: .9em; }
strong { font-weight: 700; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--section); }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--black); color: var(--on-dark); }

.section-head { max-width: 62ch; margin-bottom: 1.75rem; }
.section-head h2 { margin-bottom: .5rem; }
.section-head p { color: var(--muted); }
.section-dark .section-head p { color: var(--on-dark-muted); }
.kicker {
  display: inline-block;
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: var(--track);
  color: var(--teal-ink);
  margin-bottom: .5rem;
}
.section-dark .kicker { color: var(--teal-light); }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { background: var(--teal-ink); color: #fff; }
.btn-outline-light { background: transparent; color: var(--on-dark); border-color: rgba(255, 255, 255, .35); }
.btn-outline-light:hover { border-color: #fff; color: #fff; }
.btn-outline { background: transparent; color: var(--teal-ink); border-color: var(--teal); }
.btn-outline:hover { background: var(--teal); color: #fff; }
.btn-whatsapp { background: var(--whatsapp); color: #062b16; }
.btn-whatsapp:hover { background: #1fbf5a; color: #062b16; }
.btn-sm { padding: 8px 14px; font-size: var(--fs-small); }
.btn-block { width: 100%; }

/* ---------- Üst iletişim şeridi ---------- */
.topbar {
  background: var(--black);
  color: var(--on-dark-muted);
  font-size: var(--fs-small);
  border-bottom: 1px solid var(--dark-border);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 40px;
  padding-block: .35rem;
}
.topbar-list {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem 1.5rem;
  list-style: none;
}
.topbar-list a { color: var(--on-dark-muted); text-decoration: none; font-weight: 500; display: inline-flex; align-items: center; gap: .4rem; }
.topbar-list a:hover { color: #fff; }
.topbar-list svg { width: 14px; height: 14px; flex: none; }
.topbar-place { display: none; }
@media (min-width: 600px) { .topbar-place { display: inline-flex; } }
.topbar .lang-switch { margin-left: auto; }

/* Dil anahtarı. Bayrak yok: dil ülke değildir. */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--on-dark-muted);
  text-decoration: none;
  white-space: nowrap;
}
.lang-switch span { color: #fff; }
.lang-switch a { color: var(--on-dark-muted); text-decoration: none; }
.lang-switch a:hover { color: #fff; }
.lang-switch .sep { color: rgba(255, 255, 255, .25); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  color: var(--on-dark);
  border-bottom: 1px solid var(--dark-border);
  transition: box-shadow .25s ease;
}
.site-header.scrolled { box-shadow: 0 1px 0 var(--teal), 0 8px 24px rgba(0, 0, 0, .35); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 68px;
}
.brand { display: inline-flex; align-items: center; }
.brand-logo { height: 34px; width: auto; }
@media (min-width: 768px) { .brand-logo { height: 38px; } }

.main-nav { display: none; gap: 1.75rem; }
.main-nav a {
  color: var(--on-dark-muted);
  text-decoration: none;
  font-size: .9375rem;
  font-weight: 600;
  padding-block: .25rem;
  border-bottom: 2px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.main-nav a:hover { color: #fff; border-color: var(--teal); }
.header-cta { display: none; }

.nav-toggle {
  background: none;
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  width: 44px; height: 44px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: var(--on-dark);
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 960px) {
  .main-nav { display: flex; }
  .header-cta { display: inline-flex; }
  .nav-toggle { display: none; }
}
@media (max-width: 959px) {
  .main-nav {
    position: fixed;
    top: 69px; left: 0; right: 0;
    bottom: 0;
    background: var(--black);
    flex-direction: column;
    gap: 0;
    padding: .5rem var(--gutter) 2rem;
    transform: translateY(-6px);
    opacity: 0;
    pointer-events: none;
    transition: transform .25s ease, opacity .25s ease;
    overflow-y: auto;
  }
  .main-nav.open { display: flex; transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-nav a { padding: .9rem 0; border-bottom: 1px solid var(--dark-border); font-size: 1.0625rem; }
  .main-nav a:hover { border-color: var(--teal); }
}

/* ---------- Açılış ---------- */
.hero {
  position: relative;
  background: var(--black);
  color: var(--on-dark);
  overflow: hidden;
  isolation: isolate;
}
/* İnce teknik ızgara; sağa doğru görünür, sola doğru silinir */
.hero-grid {
  position: absolute; inset: 0; z-index: -2;
  background-image:
    linear-gradient(rgba(19, 128, 133, .22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 128, 133, .22) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(ellipse 70% 90% at 85% 50%, #000 20%, transparent 75%);
  mask-image: radial-gradient(ellipse 70% 90% at 85% 50%, #000 20%, transparent 75%);
  pointer-events: none;
}
/* Açılı teal levha */
.hero-slab {
  position: absolute; z-index: -1;
  top: 0; bottom: 0; right: -6%;
  width: 46%;
  background: linear-gradient(160deg, rgba(19, 128, 133, .55) 0%, rgba(19, 128, 133, .12) 60%, rgba(19, 128, 133, 0) 100%);
  clip-path: polygon(34% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}
.hero-slab::after {
  content: "";
  position: absolute; inset: 0;
  clip-path: polygon(34% 0, calc(34% + 2px) 0, 2px 100%, 0 100%);
  background: var(--teal);
}
@media (max-width: 767px) { .hero-slab { width: 60%; right: -25%; opacity: .8; } }

.hero-inner { padding-block: 64px 56px; }
@media (min-width: 960px) { .hero-inner { padding-block: 96px 80px; } }
.hero-content { max-width: 40rem; }
.hero h1 { margin-bottom: .75rem; color: #fff; }
.hero-lead {
  font-size: 1.125rem;    /* 18px mobil */
  font-weight: 600;
  line-height: 1.3;
  color: var(--teal-light);
  max-width: 36rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) { .hero-lead { font-size: 1.25rem; /* 20px */ } }
.hero-sub { color: var(--on-dark-muted); max-width: 36rem; margin-bottom: 1.75rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; }

/* Hero altı özet şerit */
.hero-facts {
  position: relative;
  border-top: 1px solid var(--dark-border);
  background: rgba(0, 0, 0, .45);
  backdrop-filter: blur(2px);
}
.hero-facts ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
}
.hero-facts li {
  padding: .9rem 0 .9rem 1rem;
  border-left: 2px solid var(--teal);
  font-size: var(--fs-small);
  color: var(--on-dark-muted);
}
.hero-facts li strong { display: block; color: #fff; font-weight: 700; margin-bottom: .1rem; }
@media (min-width: 640px) {
  .hero-facts ul { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  .hero-facts li { padding-block: 1.1rem; }
}

/* ---------- Kartlar (hizmetler, ürün grupları) ---------- */
.grid { display: grid; gap: 1rem; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 600px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } .grid-4 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-top: 3px solid var(--teal);
  padding: 1.5rem 1.35rem 1.6rem;
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(19, 128, 133, .12); }
.card-index {
  display: block;
  font-size: var(--fs-small);
  font-weight: 800;
  letter-spacing: var(--track);
  color: var(--teal-ink);
  margin-bottom: .75rem;
  font-variant-numeric: tabular-nums;
}
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--muted); }
.card-sm { padding: 1.25rem 1.15rem 1.35rem; border-top-width: 2px; }
.card-sm .card-index { margin-bottom: .5rem; }
/* Ürün fotoğrafı: kare, çerçeve CSS ile (kenarlık + zemin), görsele gömülü değil */
.card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

/* ---------- Hakkımızda ---------- */
.about-grid { display: grid; gap: 2rem; align-items: start; }
@media (min-width: 960px) { .about-grid { grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: 4rem; } }
.about-text p { color: var(--muted); max-width: 64ch; }
.about-text p strong { color: var(--text); }
/* Yan alan: yalnız logo, doğrudan açık zeminde (teal/#f4f6f6 = 4.35:1, grafik için AA 3:1 eşiğini geçer) */
.about-side {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}
.about-side .about-logo { width: 100%; max-width: 240px; height: auto; }
@media (min-width: 960px) {
  .about-side { margin-top: 0; align-self: stretch; }
  .about-side .about-logo { max-width: 360px; }
}

/* ---------- Çalışma prensipleri şeridi ---------- */
.principles { background: var(--teal-ink); color: #fff; }
.principles ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: .75rem;
  padding-block: 1.5rem;
}
.principles li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-weight: 700;
  letter-spacing: .02em;
}
.principles li::before {
  content: "";
  width: 10px; height: 10px; flex: none;
  background: #fff;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
@media (min-width: 720px) {
  .principles ul { grid-template-columns: repeat(3, auto); justify-content: space-between; gap: 2rem; }
}

/* ---------- Marka ızgarası (yalnız metin) ---------- */
/* 27 marka: flex-wrap ile son satır ortalanır (2 sütunda 1, 4 ve 6 sütunda 3 yetim; 3 sütunda tam).
   Hairline: hücre kenarlığı sağ+alt, kap kenarlığı üst+sol. */
.brand-grid {
  --cols: 2;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
@media (min-width: 640px) { .brand-grid { --cols: 3; } }
@media (min-width: 900px) { .brand-grid { --cols: 4; } }
@media (min-width: 1200px) { .brand-grid { --cols: 6; } }
.brand-grid li {
  flex: 0 0 calc(100% / var(--cols));
  box-sizing: border-box;
  background: var(--bg);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: .9rem .6rem;
  font-size: .9375rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--text);
  transition: background-color .2s ease, color .2s ease;
}
.brand-grid li:hover { background: var(--teal-tint); color: var(--teal-ink); }

/* ---------- İletişim ---------- */
.contact-grid { display: grid; gap: 1.5rem; }
@media (min-width: 960px) { .contact-grid { grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: 3rem; } }
.contact-list { list-style: none; display: grid; gap: 1rem; }
.contact-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: .9rem;
  align-items: start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-list li:last-child { border-bottom: 0; }
.contact-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--teal-tint);
  color: var(--teal-ink);
  border-radius: var(--radius);
}
.contact-icon svg { width: 22px; height: 22px; }
.contact-list h3 { font-size: var(--fs-small); font-weight: 700; letter-spacing: var(--track); color: var(--muted); margin-bottom: .25rem; }
.contact-list a { color: var(--text); text-decoration: none; font-weight: 600; }
.contact-list a:hover { color: var(--teal-ink); }
.contact-list p { color: var(--text); }
.contact-list .sub { display: block; font-size: var(--fs-small); color: var(--muted); font-weight: 400; margin-top: .15rem; }
.contact-map-link { display: inline-flex; align-items: center; gap: .35rem; margin-top: .4rem; font-size: var(--fs-small); color: var(--teal-ink) !important; font-weight: 600 !important; }
.contact-map-link:hover { text-decoration: underline; }

.contact-card {
  background: var(--black);
  color: var(--on-dark);
  padding: 1.75rem 1.5rem;
  border-top: 3px solid var(--teal);
  position: relative;
  overflow: hidden;
}
.contact-card::after {
  content: "";
  position: absolute; right: -40px; top: -40px;
  width: 180px; height: 180px;
  background-image:
    linear-gradient(rgba(19, 128, 133, .35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 128, 133, .35) 1px, transparent 1px);
  background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(circle at 70% 30%, #000 20%, transparent 70%);
  mask-image: radial-gradient(circle at 70% 30%, #000 20%, transparent 70%);
  pointer-events: none;
}
.contact-card > * { position: relative; }
.contact-card h3 { color: #fff; margin-bottom: .6rem; }
.contact-card p { color: var(--on-dark-muted); margin-bottom: 1.25rem; }
.contact-card ul { list-style: none; color: var(--on-dark-muted); font-size: var(--fs-small); margin-bottom: 1.25rem; display: grid; gap: .35rem; }
.contact-card li { padding-left: 1rem; position: relative; }
.contact-card li::before { content: ""; position: absolute; left: 0; top: .6em; width: 6px; height: 6px; background: var(--teal-light); }
.contact-card .btn + .btn { margin-top: .6rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black);
  color: var(--on-dark-muted);
  border-top: 3px solid var(--teal);
  font-size: var(--fs-small);
}
.footer-inner {
  display: grid;
  gap: 2rem;
  padding-block: 48px 32px;
}
@media (min-width: 768px) { .footer-inner { grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) minmax(0, 1fr); gap: 3rem; } }
.footer-logo { height: 34px; width: auto; margin-bottom: 1rem; }
.footer-legal-name { color: var(--on-dark); font-weight: 600; margin-bottom: .5rem; max-width: 46ch; }
.footer-brand p { max-width: 52ch; }
.footer-brand address { font-style: normal; }
.footer h3 { font-size: var(--fs-small); font-weight: 700; letter-spacing: var(--track); color: #fff; margin-bottom: .75rem; }
.footer-nav, .footer-contact { list-style: none; display: grid; gap: .45rem; }
.footer-nav a, .footer-contact a { color: var(--on-dark-muted); text-decoration: none; }
.footer-nav a:hover, .footer-contact a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid var(--dark-border);
  padding-block: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  justify-content: space-between;
  align-items: center;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 1.25rem; list-style: none; }
.footer-links a { color: var(--on-dark-muted); text-decoration: none; }
.footer-links a:hover { color: #fff; }

/* ---------- Alt sayfalar (hukuki, 404) ---------- */
.page-hero {
  position: relative;
  background: var(--black);
  color: var(--on-dark);
  overflow: hidden;
  isolation: isolate;
}
.page-hero .container { padding-block: 48px; }
.page-hero h1 { color: #fff; margin-bottom: .6rem; max-width: 40rem; }
.page-hero p { color: var(--on-dark-muted); max-width: 40rem; }

.legal { max-width: 76ch; }
.legal-updated { font-size: var(--fs-small); color: var(--muted); margin-bottom: 1.5rem; }
.legal h2 { margin: 2rem 0 .6rem; }
.legal h2:first-of-type { margin-top: 0; }
.legal h3 { margin: 1.5rem 0 .4rem; }
.legal p, .legal li { color: var(--muted); }
.legal p strong, .legal li strong { color: var(--text); }
.legal ul, .legal ol { padding-left: 1.25rem; margin: .5rem 0 .9rem; }
.legal li { margin-bottom: .35rem; }
.legal table { border-collapse: collapse; width: 100%; margin: .75rem 0 1rem; font-size: var(--fs-small); }
.legal th, .legal td { text-align: left; vertical-align: top; padding: .6rem .5rem; border-bottom: 1px solid var(--border); color: var(--muted); }
.legal th { color: var(--text); font-weight: 700; }
.table-wrap { overflow-x: auto; }
.legal dl { display: grid; grid-template-columns: max-content 1fr; gap: .4rem 1.25rem; margin: .5rem 0 1rem; }
.legal dt { font-weight: 700; color: var(--text); }
.legal dd { color: var(--muted); }
@media (max-width: 520px) { .legal dl { grid-template-columns: 1fr; gap: .1rem; } .legal dd { margin-bottom: .6rem; } }

.notfound-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.25rem; }

/* ---------- Scroll animasyonu ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-group .reveal:nth-child(2) { transition-delay: .08s; }
.reveal-group .reveal:nth-child(3) { transition-delay: .16s; }
.reveal-group .reveal:nth-child(4) { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .card, .card:hover { transform: none; transition: none; }
}

/* Yazdırma */
@media print {
  .topbar, .site-header, .hero-grid, .hero-slab, .nav-toggle { display: none !important; }
  .hero, .section-dark, .site-footer, .contact-card, .about-side { background: #fff !important; color: #000 !important; }
}
