/* ==========================================================================
   Rasyo Denetim SMMM Ltd. Şti. — Stil Sistemi
   Saf CSS · harici kaynak yok · gömülü fontlar · köşe yarıçapı 2px
   ========================================================================== */

/* ---------- Gömülü Fontlar (self-hosted, Türkçe alt küme) ---------------- */
@font-face {
  font-family: "Inter"; font-style: normal; font-weight: 400; font-display: swap;
  src: url("/assets/fonts/inter-latin-400.woff2") format("woff2");
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
@font-face {
  font-family: "Inter"; font-style: normal; font-weight: 400; font-display: swap;
  src: url("/assets/fonts/inter-latin-ext-400.woff2") format("woff2");
  unicode-range: U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;
}
@font-face {
  font-family: "Spectral"; font-style: normal; font-weight: 700; font-display: swap;
  src: url("/assets/fonts/spectral-latin-700.woff2") format("woff2");
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
@font-face {
  font-family: "Spectral"; font-style: normal; font-weight: 700; font-display: swap;
  src: url("/assets/fonts/spectral-latin-ext-700.woff2") format("woff2");
  unicode-range: U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;
}

/* ---------- Tasarım Tokenları ------------------------------------------- */
:root {
  /* Renkler (kuralla sabit) */
  --accent:        #0B5C9E;  /* marka mavisi — tek vurgu */
  --accent-dark:   #07406F;  /* koyu mavi */
  --accent-soft:   #E9F1F8;  /* açık mavi yüzey */
  --ink-title:     #1C2630;  /* başlık */
  --section-dark:  #1B242E;  /* koyu bölüm / footer */
  --hero:          #141C25;  /* hero */
  --text:          #3D4854;  /* gövde metin */
  --muted:         #6B7885;  /* soluk */
  --line:          #E2E7EC;  /* çizgi */
  --white:         #FFFFFF;
  --surface-gray:  #F5F7F8;  /* açık gri yüzey */

  /* Tipografi */
  --font-serif: "Spectral", Georgia, "Times New Roman", serif;
  --font-sans:  "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  /* Ölçek */
  --step-h1: clamp(34px, 1.4rem + 2.6vw, 52px);
  --step-h2: clamp(26px, 1.3rem + 1.3vw, 34px);
  --step-h3: 20px;
  --step-body: 17px;

  /* Geometri */
  --radius: 2px;
  --container: 1200px;
  --gutter: clamp(20px, 4vw, 48px);
  --section-y: clamp(56px, 8vw, 104px);
}

/* ---------- Reset / Temel ----------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--step-body);
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--ink-title);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
}
h1 { font-size: var(--step-h1); }
h2 { font-size: var(--step-h2); font-weight: 600; }
h3 { font-size: var(--step-h3); font-weight: 600; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
::selection { background: var(--accent); color: #fff; }

/* ---------- Layout ------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.section--white { background: var(--white); }
.section--gray  { background: var(--surface-gray); }
.section--dark  { background: var(--section-dark); }
.section--hero  {
  background-color: var(--hero);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}
.section--dark, .section--hero { color: #C4CDD6; }
.hero-media {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; max-width: none;
  object-fit: cover; object-position: right center;
  pointer-events: none;
}
/* Hero okunabilirlik overlay'i (görselin üstünde, içeriğin altında) */
.section--hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(90deg, rgba(20,28,37,.94) 0%, rgba(20,28,37,.72) 42%, rgba(20,28,37,.20) 100%);
}
.section--hero > .container { position: relative; z-index: 2; }
.section--dark h1, .section--dark h2, .section--dark h3,
.section--hero h1, .section--hero h2, .section--hero h3 { color: #fff; }
.section--dark a:not(.btn), .section--hero a:not(.btn) { color: #9DC3E6; }
.section-head { max-width: 62ch; margin-bottom: clamp(28px, 4vw, 48px); }
.lead { font-size: clamp(18px, 1.05rem + .4vw, 21px); color: var(--muted); }
.section--dark .lead, .section--hero .lead { color: #A9B4BF; }

/* ---------- Eyebrow + Rasyo (oran) imza motifi --------------------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-sans);
  font-size: 13px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 18px;
}
.section--dark .eyebrow, .section--hero .eyebrow { color: #6FA8D6; }
/* iki tonlu ince oran çubukları — firma adına (rasyo/oran) gönderme */
.eyebrow::before {
  content: ""; width: 26px; height: 14px; flex: none;
  background:
    linear-gradient(var(--accent), var(--accent)) 0 100% / 4px 7px no-repeat,
    linear-gradient(var(--accent), var(--accent)) 7px 100% / 4px 11px no-repeat,
    linear-gradient(var(--accent-dark), var(--accent-dark)) 14px 100% / 4px 14px no-repeat,
    linear-gradient(var(--accent), var(--accent)) 21px 100% / 4px 9px no-repeat;
}

/* ---------- Butonlar ----------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-sans); font-size: 15px; font-weight: 600;
  padding: 13px 22px; border-radius: var(--radius);
  border: 1px solid transparent; cursor: pointer; text-decoration: none;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.btn:hover { text-decoration: none; }
.btn svg { width: 16px; height: 16px; }
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-dark); }
.btn--ghost { background: transparent; color: var(--accent); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--accent); background: var(--accent-soft); }
.section--dark .btn--ghost, .section--hero .btn--ghost { color: #fff; border-color: rgba(255,255,255,.28); }
.section--dark .btn--ghost:hover, .section--hero .btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

/* Metin bağlantısı (ok'lu) */
.arrow-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 15px; color: var(--accent);
}
.arrow-link svg { width: 15px; height: 15px; transition: transform .18s ease; }
.arrow-link:hover { text-decoration: none; }
.arrow-link:hover svg { transform: translateX(4px); }

/* ======================================================================== */
/*  HEADER                                                                    */
/* ======================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 72px; gap: 24px;
}
.brand { display: inline-flex; align-items: center; }
.brand svg { height: 30px; width: auto; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-family: var(--font-sans); font-size: 15px; font-weight: 500; color: var(--ink-title);
  padding: 10px 14px; border-radius: var(--radius); position: relative;
}
.nav a:hover { color: var(--accent); text-decoration: none; }
.nav a.is-active { color: var(--accent); }
.nav a.is-active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px;
  height: 2px; background: var(--accent);
}
.header-cta { display: flex; align-items: center; gap: 18px; }
.header-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 15px; color: var(--ink-title);
}
.header-phone:hover { color: var(--accent); text-decoration: none; }
.header-phone svg { width: 16px; height: 16px; color: var(--accent); }
.nav-toggle {
  display: none; width: 44px; height: 44px; align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--line); border-radius: var(--radius); cursor: pointer;
}
.nav-toggle svg { width: 22px; height: 22px; color: var(--ink-title); }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

/* ======================================================================== */
/*  HERO                                                                      */
/* ======================================================================== */
/* Hero yükseklik: kompakt, tek sütun, sola hizalı (arka plan görseli sağda) */
.section--hero { padding-block: clamp(44px, 4.2vw, 60px); }
.section--hero:not(.hero--home) {
  min-height: clamp(280px, 26vw, 380px);
  display: flex;
  align-items: center;
}
.section--hero:not(.hero--home) > .container { width: 100%; }
.hero-body { max-width: 700px; position: relative; z-index: 2; }
.hero h1 { margin-bottom: .5em; max-width: 660px; }
.hero .lead { margin-bottom: 0; max-width: 520px; }
.hero-meta {
  margin-top: 30px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.14);
  display: grid; grid-template-columns: repeat(3, auto); gap: 20px 44px; justify-content: start;
}
.hero-meta .k { font-family: var(--font-serif); font-size: 26px; color: #fff; font-weight: 600; }
.hero-meta .v { font-size: 13.5px; color: #8A96A2; letter-spacing: .02em; }
/* oran çubukları görseli */
.hero-figure { align-self: stretch; display: flex; align-items: center; justify-content: center; }
.hero-figure svg { width: 100%; max-width: 320px; height: auto; }

/* ======================================================================== */
/*  KARTLAR / IZGARALAR                                                       */
/* ======================================================================== */
.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; height: 100%; display: flex; flex-direction: column;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.section--gray .card { background: #fff; }
.card:hover { border-color: #C9D3DC; box-shadow: 0 12px 30px -18px rgba(20,28,37,.35); transform: translateY(-2px); }
.card .icon {
  width: 46px; height: 46px; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); border-radius: var(--radius); color: var(--accent);
  background: var(--accent-soft); margin-bottom: 20px;
}
.card .icon svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: .4em; }
.card p { color: var(--text); font-size: 15.5px; }
.card .card-foot { margin-top: auto; padding-top: 18px; }
/* İki sütun içerik (başlık + metin) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: start; }
.prose > * + * { margin-top: 1.1em; }
.prose h3 { margin-top: 1.6em; }
.stat-line { display: flex; flex-wrap: wrap; gap: 40px; margin-top: 8px; }
.stat-line .stat .n { font-family: var(--font-serif); font-size: 40px; color: var(--ink-title); font-weight: 600; line-height: 1; }
.section--dark .stat-line .stat .n { color: #fff; }
.stat-line .stat .l { font-size: 14px; color: var(--muted); margin-top: 8px; }

/* Not / alıntı kutusu (Bilgi Güçtür — tarihsel not) */
.note {
  border-left: 3px solid var(--accent); background: var(--accent-soft);
  padding: 22px 26px; border-radius: var(--radius); color: var(--ink-title);
}
.note .note-label { font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 8px; }
.note p { font-family: var(--font-serif); font-size: 19px; margin: 0; }

/* ======================================================================== */
/*  SÜREÇ ŞEMASI                                                             */
/* ======================================================================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); overflow: hidden; }
.step { background: var(--section-dark); padding: 30px 26px; position: relative; }
.step h3 { color: #fff; font-size: 18px; margin-bottom: .4em; }
.step p { color: #A9B4BF; font-size: 15px; margin: 0; }

/* ======================================================================== */
/*  SSS (accordion — native details, JS'siz çalışır)                         */
/* ======================================================================== */
.faq { max-width: 820px; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 22px 44px 22px 0; position: relative;
  font-family: var(--font-serif); font-size: 19px; font-weight: 600; color: var(--ink-title);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 6px; top: 27px; width: 14px; height: 14px;
  background:
    linear-gradient(var(--accent), var(--accent)) center/14px 2px no-repeat,
    linear-gradient(var(--accent), var(--accent)) center/2px 14px no-repeat;
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(90deg); opacity: .6; }
.faq details[open] summary { color: var(--accent); }
.faq .faq-body { padding: 0 44px 24px 0; color: var(--text); }
.faq .faq-body p { margin-bottom: .8em; }

/* ======================================================================== */
/*  İLETİŞİM                                                                  */
/* ======================================================================== */
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li { display: flex; gap: 16px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.contact-list li:first-child { padding-top: 0; }
.contact-list .ci {
  width: 42px; height: 42px; flex: none; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); border-radius: var(--radius); color: var(--accent); background: var(--accent-soft);
}
.contact-list .ci svg { width: 20px; height: 20px; }
.contact-list .ck { font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.contact-list .cv { color: var(--ink-title); font-weight: 500; }
.contact-list a.cv:hover { color: var(--accent); }

.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 3vw, 36px); }
.section--gray .form { background: #fff; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 14px; font-weight: 600; color: var(--ink-title); margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%; font-family: var(--font-sans); font-size: 16px; color: var(--ink-title);
  padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff;
  transition: border-color .16s ease, box-shadow .16s ease;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(11,92,158,.12);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form .hint { font-size: 13px; color: var(--muted); margin-top: 14px; }

/* ======================================================================== */
/*  FOOTER                                                                    */
/* ======================================================================== */
.site-footer { background: var(--section-dark); color: #9BA6B1; }
.site-footer a { color: #B9C4CF; }
.site-footer a:hover { color: #fff; text-decoration: none; }
.footer-top { padding-block: clamp(48px, 6vw, 72px); display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer-brand svg { height: 30px; width: auto; margin-bottom: 20px; }
.footer-brand p { max-width: 34ch; font-size: 15px; color: #8A96A2; }
.footer-col h4 { color: #fff; font-family: var(--font-sans); font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 11px; font-size: 15px; }
.footer-col .muted { color: #8A96A2; }
.kunye { border-top: 1px solid rgba(255,255,255,.1); padding-block: 26px; }
.kunye .kunye-title { font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: #6E7A86; margin-bottom: 12px; }
.kunye dl { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px 32px; margin: 0; }
.kunye .row { display: flex; flex-direction: column; gap: 2px; }
.kunye dt { font-size: 12.5px; color: #6E7A86; }
.kunye dd { margin: 0; font-size: 14px; color: #C4CDD6; }
.kunye .todo { color: #C98A2E; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-block: 20px; display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: space-between; align-items: center; font-size: 13.5px; color: #6E7A86; }

/* ======================================================================== */
/*  HİZMET BLOKLARI / YAN PANEL / LİSTELER                                    */
/* ======================================================================== */
.svc { scroll-margin-top: 96px; }
.svc + .svc { margin-top: 0; }
@media (min-width: 681px) { .split.is-reverse > *:first-child { order: 2; } }
.ticks { list-style: none; margin: 18px 0 0; padding: 0; }
.ticks li { position: relative; padding-left: 28px; margin-bottom: 12px; color: var(--text); }
.ticks li::before {
  content: ""; position: absolute; left: 4px; top: 5px; width: 6px; height: 11px;
  border: solid var(--accent); border-width: 0 2px 2px 0; transform: rotate(45deg);
}
.section--dark .ticks li, .section--hero .ticks li { color: #A9B4BF; }

.panel { background: var(--surface-gray); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; }
.section--gray .panel { background: #fff; }
.panel h4 { font-family: var(--font-sans); font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin: 0 0 16px; }
.panel .big-icon { width: 44px; height: 44px; color: var(--accent); margin-bottom: 18px; }
.panel .big-icon svg { width: 100%; height: 100%; }
.panel ol, .panel ul { margin: 0; padding-left: 18px; }
.panel li { margin-bottom: 10px; font-size: 15px; }

.kicker { font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; display: block; }

/* Basit iki-üç sütun bilgi bloğu */
.info-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.info-cols h3 { font-size: 18px; }
.info-cols p { font-size: 15.5px; color: var(--text); }
@media (max-width: 680px) { .info-cols { grid-template-columns: 1fr; gap: 28px; } }

/* ======================================================================== */
/*  BAŞA DÖN BUTONU                                                           */
/* ======================================================================== */
.to-top {
  position: fixed; right: clamp(16px, 3vw, 32px); bottom: clamp(16px, 3vw, 32px);
  width: 46px; height: 46px; z-index: 60;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent); color: #fff; border: none; border-radius: var(--radius);
  cursor: pointer; box-shadow: 0 10px 26px -10px rgba(11,92,158,.65);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .25s ease, transform .25s ease, background .18s ease, visibility .25s;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--accent-dark); }
.to-top:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
.to-top svg { width: 22px; height: 22px; }

/* ======================================================================== */
/*  YARDIMCILAR                                                               */
/* ======================================================================== */
.hidden { display: none !important; }
.mt-0 { margin-top: 0; }
.text-muted { color: var(--muted); }

/* ======================================================================== */
/*  RESPONSIVE                                                                */
/* ======================================================================== */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-figure { display: none; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .kunye dl { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .header-cta .header-phone { display: none; }
  .nav {
    position: fixed; inset: 72px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 8px var(--gutter) 20px; transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity .2s ease, transform .2s ease; box-shadow: 0 20px 30px -20px rgba(20,28,37,.4);
  }
  .nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav a { padding: 14px 4px; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav a.is-active::after { display: none; }
  .nav a:last-child { border-bottom: none; }
}
@media (max-width: 680px) {
  .split, .contact-grid { grid-template-columns: 1fr; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .kunye dl { grid-template-columns: 1fr; }
  .section--hero { padding-block: clamp(38px, 7vw, 56px); }
  .section--hero::before { background: linear-gradient(180deg, rgba(20,28,37,.78) 0%, rgba(20,28,37,.90) 100%); }
  .hero-meta { grid-template-columns: repeat(3, auto); gap: 12px 22px; margin-top: 22px; padding-top: 18px; }
  .hero-meta .k { font-size: 20px; }
}

/* ---------- Hareket azaltma --------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}
