@charset "utf-8";
/* ==========================================================================
   YSF Makina — Tasarım Sistemi
   Ümraniye / İstanbul · Manitou · JCB Kepçe · Forklift
   Tema: beyaz zemin + kırmızı vurgu (koyu mod isteğe bağlı)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tipografi kaynakları (yerel barındırma — harici istek yok)
   -------------------------------------------------------------------------- */
@font-face {
  font-family: "Inter var";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/inter-latin-ext.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 var";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/inter-latin.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;
}

/* --------------------------------------------------------------------------
   2. Tasarım jetonları
   -------------------------------------------------------------------------- */
:root {
  /* Varsayılan beyaz tema. Sistem koyu modda olsa bile site açık başlar;
     kullanıcı isterse başlıktaki düğmeyle koyuya geçer. */
  color-scheme: light;

  /* Marka renkleri — ysfmakina-logo.png'den örneklendi (#C7202A) */
  --brand-500: #c7202a;
  --brand-600: #a81922;
  --brand-700: #86131b;
  --brand-on: #ffffff;
  --whatsapp: #1faa54;

  /* Yüzeyler */
  --bg: light-dark(#ffffff, #0e1013);
  --surface: light-dark(#ffffff, #16191e);
  --surface-2: light-dark(#f6f7f9, #1b1f26);
  --surface-3: light-dark(#eceef2, #232830);
  --tint: light-dark(#fff5f5, #21171a);

  /* Metin */
  --text: light-dark(#14171c, #eef1f4);
  --text-muted: light-dark(#556071, #a3aeba);
  --text-faint: light-dark(#78828f, #7d8894);
  --accent-text: light-dark(#b01c25, #ff8a94);

  /* Çizgiler & gölgeler */
  --line: light-dark(rgb(15 20 26 / 0.11), rgb(255 255 255 / 0.1));
  --line-strong: light-dark(rgb(15 20 26 / 0.2), rgb(255 255 255 / 0.2));
  --shadow-sm: 0 1px 2px light-dark(rgb(9 12 16 / 0.06), rgb(0 0 0 / 0.4));
  --shadow-md: 0 8px 24px -8px light-dark(rgb(9 12 16 / 0.16), rgb(0 0 0 / 0.6));
  --shadow-lg: 0 28px 64px -24px light-dark(rgb(9 12 16 / 0.26), rgb(0 0 0 / 0.75));
  --ring: 0 0 0 3px light-dark(rgb(199 32 42 / 0.28), rgb(199 32 42 / 0.45));

  /* Ölçek */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --step--1: clamp(0.82rem, 0.79rem + 0.14vw, 0.9rem);
  --step-0: clamp(0.97rem, 0.94rem + 0.16vw, 1.06rem);
  --step-1: clamp(1.14rem, 1.07rem + 0.34vw, 1.33rem);
  --step-2: clamp(1.36rem, 1.22rem + 0.66vw, 1.75rem);
  --step-3: clamp(1.66rem, 1.4rem + 1.2vw, 2.4rem);
  --step-4: clamp(2rem, 1.55rem + 2.1vw, 3.2rem);
  --step-5: clamp(2.3rem, 1.6rem + 3.2vw, 4.1rem);

  --gutter: clamp(1.1rem, 0.7rem + 2vw, 2.5rem);
  --section-y: clamp(3.5rem, 2.2rem + 5.5vw, 7rem);
  --measure: 68ch;
  --max: 1240px;

  --font: "Inter var", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

:root[data-theme="light"] { color-scheme: light; }
:root[data-theme="dark"] { color-scheme: dark; }

/* --------------------------------------------------------------------------
   3. Sıfırlama & temel
   -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-block-start: 6rem;
  hanging-punctuation: first last;
}

body {
  min-block-size: 100svh;
  font-family: var(--font);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-synthesis-weight: none;
  overflow-x: hidden;
}

img,
picture,
svg,
video {
  display: block;
  max-inline-size: 100%;
  block-size: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

h1, h2, h3, h4 {
  line-height: 1.1;
  font-weight: 750;
  letter-spacing: -0.022em;
  text-wrap: balance;
}

p, li { text-wrap: pretty; }

a {
  color: inherit;
  text-decoration-color: color-mix(in srgb, currentColor 35%, transparent);
  text-underline-offset: 0.22em;
}

:where(a, button, input, textarea, select, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--brand-500);
  outline-offset: 3px;
  border-radius: var(--radius-xs);
}

::selection {
  background: var(--brand-500);
  color: var(--brand-on);
}

hr {
  border: 0;
  border-block-start: 1px solid var(--line);
  margin-block: 2rem;
}

/* --------------------------------------------------------------------------
   4. Yerleşim ilkelleri
   -------------------------------------------------------------------------- */
.container {
  inline-size: min(100% - (var(--gutter) * 2), var(--max));
  margin-inline: auto;
}
.container--narrow { --max: 880px; }
.container--wide { --max: 1440px; }

.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(2.5rem, 1.8rem + 3vw, 4.5rem); }
.section--alt { background: var(--surface-2); }
.section--tint { background: var(--tint); }

.skip-link {
  position: absolute;
  inset-inline-start: 1rem;
  inset-block-start: -100%;
  z-index: 200;
  padding: 0.7rem 1.1rem;
  border-radius: var(--radius-sm);
  background: var(--brand-500);
  color: var(--brand-on);
  font-weight: 700;
  text-decoration: none;
  transition: inset-block-start 0.2s var(--ease-out);
}
.skip-link:focus { inset-block-start: 1rem; }

/* --------------------------------------------------------------------------
   5. Tipografik yardımcılar
   -------------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: var(--step--1);
  font-weight: 650;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent-text);
}
.eyebrow::before {
  content: "";
  inline-size: 1.9rem;
  block-size: 2px;
  border-radius: 2px;
  background: currentColor;
  opacity: 0.7;
}
.eyebrow--plain::before { display: none; }

.section-title {
  font-size: var(--step-3);
  margin-block-start: 0.7rem;
}
.section-lede {
  margin-block-start: 1rem;
  max-inline-size: var(--measure);
  font-size: var(--step-1);
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 420;
}
.section-head { margin-block-end: clamp(2rem, 1.4rem + 2vw, 3.4rem); }
.section-head--center {
  text-align: center;
  display: grid;
  justify-items: center;
}
.section-head--center .section-lede { margin-inline: auto; }

.prose {
  max-inline-size: var(--measure);
  font-size: var(--step-0);
  color: var(--text-muted);
}
.prose h2 {
  font-size: var(--step-2);
  color: var(--text);
  margin-block: 2.6rem 0.9rem;
}
.prose h3 {
  font-size: var(--step-1);
  color: var(--text);
  margin-block: 2rem 0.7rem;
}
.prose p + p { margin-block-start: 1rem; }
.prose ul,
.prose ol {
  margin-block: 1rem;
  padding-inline-start: 1.3rem;
  display: grid;
  gap: 0.55rem;
}
.prose li::marker { color: var(--brand-500); font-weight: 700; }
.prose strong { color: var(--text); font-weight: 650; }
.prose a { color: var(--accent-text); font-weight: 600; }

.text-muted { color: var(--text-muted); }
.nowrap { white-space: nowrap; }
.visually-hidden {
  position: absolute !important;
  inline-size: 1px;
  block-size: 1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   6. Butonlar
   -------------------------------------------------------------------------- */
.btn {
  --btn-bg: var(--surface-3);
  --btn-fg: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.45rem;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: var(--step-0);
  font-weight: 650;
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.18s var(--ease-out), box-shadow 0.18s var(--ease-out),
    background-color 0.18s var(--ease-out), border-color 0.18s var(--ease-out);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn svg { inline-size: 1.15em; block-size: 1.15em; flex: none; }

.btn--primary {
  --btn-bg: var(--brand-500);
  --btn-fg: var(--brand-on);
  box-shadow: 0 10px 26px -12px color-mix(in srgb, var(--brand-500) 85%, transparent);
}
.btn--primary:hover { --btn-bg: var(--brand-600); }

.btn--whatsapp {
  --btn-bg: var(--whatsapp);
  --btn-fg: #fff;
}
.btn--whatsapp:hover { --btn-bg: #189347; }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--text);
  border-color: var(--line-strong);
}
.btn--ghost:hover { --btn-bg: color-mix(in srgb, var(--text) 7%, transparent); }

.btn--outline {
  --btn-bg: transparent;
  --btn-fg: var(--accent-text);
  border-color: color-mix(in srgb, var(--brand-500) 45%, transparent);
}
.btn--outline:hover { --btn-bg: var(--tint); border-color: var(--brand-500); }

.btn--on-dark {
  --btn-fg: #fff;
  border-color: rgb(255 255 255 / 0.4);
}
.btn--on-dark:hover { --btn-bg: rgb(255 255 255 / 0.14); }

.btn--lg { padding: 1.05rem 1.9rem; font-size: var(--step-1); }
.btn--sm { padding: 0.55rem 1rem; font-size: var(--step--1); }
.btn--block { inline-size: 100%; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 650;
  color: var(--accent-text);
  text-decoration: none;
}
.link-arrow svg {
  inline-size: 1em;
  block-size: 1em;
  transition: transform 0.2s var(--ease-out);
}
.link-arrow:hover svg { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   7. Üst bilgi & navigasyon
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  inset-block-start: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  backdrop-filter: blur(16px) saturate(1.6);
  border-block-end: 1px solid var(--line);
  transition: box-shadow 0.3s var(--ease-out);
}
.site-header.is-stuck { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-block-size: var(--header-h, 74px);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex: none;
}
/* Logo arka plan görseli olarak veriliyor: display edilmeyen varyantın dosyası
   hiç indirilmez, böylece koyu mod logosu açık temada boşuna yüklenmez. */
.brand__logo {
  display: block;
  inline-size: clamp(6.6rem, 5.5rem + 3vw, 8.4rem);
  aspect-ratio: 600 / 249;
  background: url("../img/logo-ysf-makina-300.png") no-repeat center / contain;
  background-image: image-set(
    url("../img/logo-ysf-makina-300.webp") type("image/webp"),
    url("../img/logo-ysf-makina-300.png") type("image/png"));
}
:root[data-theme="dark"] .brand__logo {
  background-image: url("../img/logo-ysf-makina-koyu-300.png");
  background-image: image-set(
    url("../img/logo-ysf-makina-koyu-300.webp") type("image/webp"),
    url("../img/logo-ysf-makina-koyu-300.png") type("image/png"));
}
.site-footer .brand__logo { inline-size: 9.5rem; }

.nav { margin-inline-start: auto; }
.nav__list {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav__link {
  display: block;
  padding: 0.55rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 550;
  text-decoration: none;
  opacity: 0.88;
  transition: background-color 0.16s, opacity 0.16s, color 0.16s;
}
.nav__link:hover { opacity: 1; background: color-mix(in srgb, currentColor 8%, transparent); }
.nav__link[aria-current="page"] {
  opacity: 1;
  font-weight: 700;
  color: var(--accent-text);
  background: var(--tint);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: none;
}

.theme-toggle {
  display: grid;
  place-items: center;
  inline-size: 2.5rem;
  block-size: 2.5rem;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  background: transparent;
  cursor: pointer;
  transition: background-color 0.18s;
}
.theme-toggle:hover { background: color-mix(in srgb, currentColor 8%, transparent); }
.theme-toggle svg { inline-size: 1.15rem; block-size: 1.15rem; }
.theme-toggle .icon-sun { display: none; }
:root[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
:root[data-theme="dark"] .theme-toggle .icon-moon { display: none; }

.nav-toggle {
  display: none;
  place-items: center;
  inline-size: 2.6rem;
  block-size: 2.6rem;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: transparent;
  cursor: pointer;
}
.nav-toggle__bars {
  position: relative;
  inline-size: 1.1rem;
  block-size: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: background-color 0.2s;
}
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  block-size: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.28s var(--ease-out);
}
.nav-toggle__bars::before { inset-block-start: -6px; }
.nav-toggle__bars::after { inset-block-start: 6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars { background-color: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after { transform: translateY(-6px) rotate(-45deg); }

@media (width < 62rem) {
  .nav-toggle { display: grid; }
  .header-actions .btn--header { display: none; }
  .nav {
    position: fixed;
    inset: var(--header-h, 74px) 0 auto 0;
    background: var(--surface);
    color: var(--text);
    border-block-end: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    padding: 1rem var(--gutter) 1.6rem;
    display: grid;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s var(--ease-out), transform 0.22s var(--ease-out),
      visibility 0.22s;
    max-block-size: calc(100svh - var(--header-h, 74px));
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .nav.is-open { opacity: 1; transform: none; visibility: visible; }
  .nav__list { display: grid; gap: 0.1rem; }
  .nav__link {
    padding: 0.85rem 0.9rem;
    font-size: 1.05rem;
    border-radius: var(--radius-sm);
  }
  .nav__cta { margin-block-start: 1rem; display: grid; gap: 0.6rem; }
}
@media (width >= 62rem) {
  .nav__cta { display: none; }
}

/* --------------------------------------------------------------------------
   8. Hero — beyaz zeminde metin + fotoğraf
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  isolation: isolate;
  padding-block: clamp(2.5rem, 1.8rem + 3vw, 4.5rem) clamp(3rem, 2rem + 4vw, 5.5rem);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset-block-start: -34%;
  inset-inline-end: -14%;
  inline-size: 46rem;
  block-size: 46rem;
  border-radius: 50%;
  background: radial-gradient(circle,
    color-mix(in srgb, var(--brand-500) 14%, transparent), transparent 62%);
  z-index: -1;
  pointer-events: none;
}

.hero__inner {
  display: grid;
  gap: clamp(2.5rem, 1.5rem + 4vw, 4rem);
  align-items: center;
}
@media (width >= 60rem) {
  .hero__inner { grid-template-columns: 1.02fr 0.98fr; }
}

.hero__text { display: grid; gap: 1.35rem; justify-items: start; }
.hero h1 {
  font-size: var(--step-5);
  letter-spacing: -0.035em;
  font-weight: 800;
}
.hero h1 em {
  font-style: normal;
  color: var(--brand-600);
}
.hero__lede {
  font-size: var(--step-1);
  color: var(--text-muted);
  max-inline-size: 38rem;
  font-weight: 420;
}
.hero .btn-row { margin-block-start: 0.4rem; }

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  list-style: none;
  padding: 0;
  margin-block-start: 0.6rem;
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--text-muted);
}
.hero__meta li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.hero__meta svg {
  inline-size: 1.05rem;
  block-size: 1.05rem;
  color: var(--brand-500);
  flex: none;
}

.hero__media { position: relative; }
.hero__media > picture > img {
  inline-size: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
@media (width >= 60rem) {
  .hero__media > picture > img { aspect-ratio: 5 / 6; }
}
.hero__inset {
  position: absolute;
  inset-block-end: -1.4rem;
  inset-inline-start: -1.4rem;
  inline-size: min(44%, 14rem);
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 5px solid var(--bg);
  box-shadow: var(--shadow-md);
}
.hero__inset img { inline-size: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
@media (width < 40rem) {
  .hero__inset { display: none; }
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.42rem 0.9rem 0.42rem 0.62rem;
  border: 1px solid color-mix(in srgb, var(--brand-500) 28%, transparent);
  border-radius: var(--radius-pill);
  background: var(--tint);
  color: var(--accent-text);
  font-size: var(--step--1);
  font-weight: 650;
  letter-spacing: 0.01em;
  inline-size: fit-content;
}
.chip__dot {
  inline-size: 0.5rem;
  block-size: 0.5rem;
  border-radius: 50%;
  background: #15a34a;
  box-shadow: 0 0 0 0 rgb(21 163 74 / 0.7);
  animation: pulse 2.4s var(--ease-out) infinite;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 9px rgb(21 163 74 / 0); }
  100% { box-shadow: 0 0 0 0 rgb(21 163 74 / 0); }
}

/* Hero altı güven şeridi */
.trust-bar {
  border-block: 1px solid var(--line);
  background: var(--surface-2);
}
.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr));
}
.trust-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1.5rem clamp(0.8rem, 2vw, 1.6rem);
  border-inline-end: 1px solid var(--line);
}
.trust-item:last-child { border-inline-end: 0; }
.trust-item__icon {
  flex: none;
  inline-size: 1.55rem;
  block-size: 1.55rem;
  color: var(--brand-500);
  margin-block-start: 0.1rem;
}
.trust-item__title {
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
}
.trust-item__text {
  font-size: var(--step--1);
  color: var(--text-muted);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   9. Sayfa başlığı (iç sayfalar) — açık şerit
   -------------------------------------------------------------------------- */
.page-hero {
  position: relative;
  isolation: isolate;
  background: var(--surface-2);
  border-block-end: 1px solid var(--line);
  padding-block: clamp(2rem, 1.6rem + 2.5vw, 3.4rem) clamp(2.4rem, 2rem + 3vw, 4rem);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset-block-start: -60%;
  inset-inline-end: -10%;
  inline-size: 32rem;
  block-size: 32rem;
  border-radius: 50%;
  background: radial-gradient(circle,
    color-mix(in srgb, var(--brand-500) 13%, transparent), transparent 64%);
  z-index: -1;
  pointer-events: none;
}
.page-hero h1 {
  font-size: var(--step-4);
  margin-block-start: 0.8rem;
  max-inline-size: 22ch;
}
.page-hero__lede {
  margin-block-start: 1rem;
  font-size: var(--step-1);
  color: var(--text-muted);
  max-inline-size: 60ch;
  font-weight: 420;
}
.page-hero .btn-row { margin-block-start: 1.8rem; }

.breadcrumb { font-size: var(--step--1); }
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--text-faint);
}
.breadcrumb li + li::before { content: "/"; margin-inline-end: 0.4rem; opacity: 0.6; }
.breadcrumb a { text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb [aria-current="page"] { color: var(--accent-text); font-weight: 650; }

/* Sayfa başlığının altına giren geniş fotoğraf şeridi */
.media-band {
  position: relative;
  block-size: clamp(14rem, 10rem + 22vw, 26rem);
  overflow: hidden;
}
.media-band img {
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
}

/* --------------------------------------------------------------------------
   10. Kartlar / hizmet ızgarası
   -------------------------------------------------------------------------- */
.grid {
  display: grid;
  gap: clamp(1rem, 0.6rem + 1.5vw, 1.8rem);
}
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 14.5rem), 1fr)); }

.card {
  position: relative;
  display: grid;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out),
    border-color 0.28s var(--ease-out);
}
.card:has(a:hover),
.card:has(a:focus-visible) {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: color-mix(in srgb, var(--brand-500) 45%, var(--line));
}

.card__media {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--surface-3);
}
.card__media img {
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.card:has(a:hover) .card__media img { transform: scale(1.05); }

.card__badge {
  position: absolute;
  inset-block-start: 0.85rem;
  inset-inline-start: 0.85rem;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
  background: var(--brand-500);
  color: var(--brand-on);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.card__body {
  display: grid;
  gap: 0.7rem;
  padding: clamp(1.15rem, 0.9rem + 0.8vw, 1.6rem);
  align-content: start;
}
.card__title { font-size: var(--step-2); letter-spacing: -0.025em; }
.card__title a { text-decoration: none; }
.card__title a::after { content: ""; position: absolute; inset: 0; }
.card__text { color: var(--text-muted); font-size: var(--step-0); }

.card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-block-start: 0.2rem;
}
.tag {
  padding: 0.25rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--surface-2);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
}
.card__foot {
  margin-block-start: 0.5rem;
  padding-block-start: 0.9rem;
  border-block-start: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

/* Özellik kartı (görselsiz) */
.feature {
  display: grid;
  gap: 0.75rem;
  padding: clamp(1.3rem, 1rem + 1vw, 1.9rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  align-content: start;
}
.feature__icon {
  inline-size: 2.6rem;
  block-size: 2.6rem;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  background: var(--tint);
  color: var(--accent-text);
}
.feature__icon svg { inline-size: 1.35rem; block-size: 1.35rem; }
.feature h3 { font-size: var(--step-1); }
.feature p { color: var(--text-muted); font-size: 0.97rem; }

/* Kırmızı vurgulu bilgi kutusu */
.callout {
  display: grid;
  gap: 0.5rem;
  padding: clamp(1.1rem, 0.9rem + 0.8vw, 1.6rem);
  background: var(--tint);
  border: 1px solid color-mix(in srgb, var(--brand-500) 24%, transparent);
  border-inline-start: 4px solid var(--brand-500);
  border-radius: var(--radius);
}
.callout h3 { font-size: var(--step-1); }
.callout p { color: var(--text-muted); font-size: 0.97rem; }

/* --------------------------------------------------------------------------
   11. İstatistikler
   -------------------------------------------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 11rem), 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat {
  background: var(--surface);
  padding: clamp(1.2rem, 1rem + 1vw, 1.9rem);
  display: grid;
  gap: 0.25rem;
}
.stat__value {
  font-size: var(--step-3);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--accent-text);
  font-variant-numeric: tabular-nums;
}
.stat__label { font-size: var(--step--1); color: var(--text-muted); font-weight: 550; }

/* --------------------------------------------------------------------------
   12. Bölünmüş içerik (metin + görsel)
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  gap: clamp(1.8rem, 1rem + 4vw, 4rem);
  align-items: center;
}
@media (width >= 56rem) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--reverse > *:first-child { order: 2; }
}
.split--top { align-items: start; }
.split__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3 / 2;
}
.split__media img { inline-size: 100%; block-size: 100%; object-fit: cover; }
.split__media--tall { aspect-ratio: 4 / 5; }

.checklist {
  display: grid;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin-block-start: 1.4rem;
}
.checklist li {
  display: grid;
  grid-template-columns: 1.4rem 1fr;
  gap: 0.7rem;
  align-items: start;
  color: var(--text-muted);
}
.checklist li::before {
  content: "";
  inline-size: 1.4rem;
  block-size: 1.4rem;
  margin-block-start: 0.15rem;
  border-radius: 50%;
  background: var(--tint) no-repeat center / 0.75rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23c7202a'%3E%3Cpath fill-rule='evenodd' d='M16.7 5.3a1 1 0 0 1 0 1.4l-7.5 7.5a1 1 0 0 1-1.4 0L3.3 9.7a1 1 0 1 1 1.4-1.4l3.8 3.8 6.8-6.8a1 1 0 0 1 1.4 0Z' clip-rule='evenodd'/%3E%3C/svg%3E");
}
.checklist strong { color: var(--text); font-weight: 650; }

/* --------------------------------------------------------------------------
   13. Adımlar
   -------------------------------------------------------------------------- */
.steps {
  display: grid;
  gap: clamp(1rem, 0.6rem + 1.5vw, 1.6rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
  counter-reset: step;
}
.step {
  position: relative;
  display: grid;
  gap: 0.6rem;
  align-content: start;
  padding: clamp(1.3rem, 1rem + 1vw, 1.8rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  counter-increment: step;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  font-size: var(--step-2);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--accent-text);
  font-variant-numeric: tabular-nums;
}
.step h3 { font-size: var(--step-1); }
.step p { color: var(--text-muted); font-size: 0.97rem; }

/* --------------------------------------------------------------------------
   14. Teknik özellik tablosu
   -------------------------------------------------------------------------- */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  -webkit-overflow-scrolling: touch;
}
table.specs {
  inline-size: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  min-inline-size: 34rem;
}
table.specs caption {
  text-align: start;
  padding: 1rem 1.2rem;
  font-weight: 700;
  font-size: var(--step-0);
  border-block-end: 1px solid var(--line);
}
table.specs th,
table.specs td {
  padding: 0.85rem 1.2rem;
  text-align: start;
  border-block-end: 1px solid var(--line);
}
table.specs thead th {
  background: var(--surface-2);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-muted);
  white-space: nowrap;
}
table.specs tbody th { font-weight: 650; }
table.specs td { color: var(--text-muted); font-variant-numeric: tabular-nums; }
table.specs tbody tr:last-child :is(th, td) { border-block-end: 0; }
table.specs tbody tr:hover { background: var(--surface-2); }

/* --------------------------------------------------------------------------
   15. Hizmet bölgeleri
   -------------------------------------------------------------------------- */
.district-groups { display: grid; gap: 1.6rem; }
.district-group h3 {
  font-size: var(--step-0);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-block-end: 0.8rem;
  font-weight: 700;
}
.district-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.district-list a,
.district-list span {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  padding: 0.42rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--surface);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.18s, background-color 0.18s, transform 0.18s;
}
.district-list a:hover {
  border-color: var(--brand-500);
  background: var(--tint);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   16. SSS akordiyon
   -------------------------------------------------------------------------- */
.faq { display: grid; gap: 0.7rem; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq details[open] { border-color: color-mix(in srgb, var(--brand-500) 40%, var(--line)); }
.faq summary {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem clamp(1rem, 0.8rem + 0.6vw, 1.4rem);
  font-weight: 650;
  font-size: var(--step-0);
  cursor: pointer;
  list-style: none;
  transition: background-color 0.18s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { background: var(--surface-2); }
.faq summary::after {
  content: "";
  flex: none;
  margin-inline-start: auto;
  inline-size: 1.4rem;
  block-size: 1.4rem;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: no-repeat center / 0.7rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%23c7202a' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M10 4v12M4 10h12'/%3E%3C/svg%3E");
  transition: transform 0.28s var(--ease-out);
}
.faq details[open] summary::after {
  transform: rotate(135deg);
  background-color: var(--tint);
}
.faq__answer {
  padding: 0 clamp(1rem, 0.8rem + 0.6vw, 1.4rem) 1.3rem;
  color: var(--text-muted);
  max-inline-size: var(--measure);
}
.faq__answer p + p { margin-block-start: 0.8rem; }

/* --------------------------------------------------------------------------
   17. CTA bandı — kırmızı
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  isolation: isolate;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-700) 78%);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 1.4rem + 3vw, 3.6rem);
  overflow: hidden;
  display: grid;
  gap: 1.6rem;
  align-items: center;
  box-shadow: 0 24px 60px -28px color-mix(in srgb, var(--brand-500) 80%, transparent);
}
.cta-band::before {
  content: "";
  position: absolute;
  inset-block-start: -45%;
  inset-inline-end: -8%;
  inline-size: 32rem;
  block-size: 32rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(255 255 255 / 0.18), transparent 62%);
  z-index: -1;
}
@media (width >= 52rem) {
  .cta-band { grid-template-columns: 1fr auto; gap: 2.5rem; }
}
.cta-band h2 { font-size: var(--step-3); }
.cta-band p {
  margin-block-start: 0.7rem;
  color: rgb(255 255 255 / 0.88);
  max-inline-size: 52ch;
}
.cta-band .btn--primary {
  --btn-bg: #fff;
  --btn-fg: var(--brand-700);
  box-shadow: none;
}
.cta-band .btn--primary:hover { --btn-bg: #fff5f5; }

/* --------------------------------------------------------------------------
   18. İletişim
   -------------------------------------------------------------------------- */
.contact-grid { display: grid; gap: clamp(1.6rem, 1rem + 3vw, 3rem); }
@media (width >= 58rem) {
  .contact-grid { grid-template-columns: 0.95fr 1.05fr; align-items: start; }
}

.info-list { display: grid; gap: 0.4rem; list-style: none; padding: 0; margin: 0; }
.info-item {
  display: grid;
  grid-template-columns: 2.6rem 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  text-decoration: none;
  transition: border-color 0.18s, transform 0.18s;
}
a.info-item:hover { border-color: var(--brand-500); transform: translateY(-2px); }
.info-item__icon {
  inline-size: 2.6rem;
  block-size: 2.6rem;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  background: var(--tint);
  color: var(--accent-text);
}
.info-item__icon svg { inline-size: 1.3rem; block-size: 1.3rem; }
.info-item__label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-faint);
  font-weight: 650;
}
.info-item__value { font-weight: 650; font-size: 1.02rem; letter-spacing: -0.01em; }
.info-item__note { font-size: var(--step--1); color: var(--text-muted); }

.form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.3rem, 1rem + 1.4vw, 2.1rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.form__row { display: grid; gap: 1rem; }
@media (width >= 34rem) {
  .form__row--2 { grid-template-columns: 1fr 1fr; }
}
.field { display: grid; gap: 0.4rem; }
.field > label {
  font-size: var(--step--1);
  font-weight: 650;
  color: var(--text-muted);
}
.field :is(input, select, textarea) {
  inline-size: 100%;
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  color: var(--text);
  font-size: 1rem;
  transition: border-color 0.18s, box-shadow 0.18s, background-color 0.18s;
}
.field :is(input, select, textarea)::placeholder { color: var(--text-faint); }
.field :is(input, select, textarea):focus {
  outline: none;
  border-color: var(--brand-500);
  box-shadow: var(--ring);
  background: var(--surface);
}
.field textarea { min-block-size: 7rem; resize: vertical; }
.field select { appearance: none; padding-inline-end: 2.4rem; cursor: pointer; }
.field:has(select) { position: relative; }
.field:has(select)::after {
  content: "";
  position: absolute;
  inset-inline-end: 1rem;
  inset-block-end: 1.15rem;
  inline-size: 0.7rem;
  block-size: 0.7rem;
  pointer-events: none;
  background: no-repeat center / contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%23888' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 7 5 6 5-6'/%3E%3C/svg%3E");
}
.field__error {
  font-size: var(--step--1);
  color: #b01c25;
  font-weight: 600;
  display: none;
}
.field:has(:user-invalid) .field__error { display: block; }
.field:has(:user-invalid) :is(input, select, textarea) { border-color: #b01c25; }

.form__consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: start;
  font-size: var(--step--1);
  color: var(--text-muted);
}
.form__consent input {
  inline-size: 1.15rem;
  block-size: 1.15rem;
  margin-block-start: 0.15rem;
  accent-color: var(--brand-500);
}
.form__note {
  font-size: var(--step--1);
  color: var(--text-faint);
  text-align: center;
}
.form__status {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--tint);
  border: 1px solid color-mix(in srgb, var(--brand-500) 26%, transparent);
  font-size: var(--step--1);
  font-weight: 600;
}

/* Harita — tıklayınca yükle (KVKK dostu) */
.map-embed {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface-2);
}
.map-embed iframe { inline-size: 100%; block-size: 100%; border: 0; display: block; }
.map-embed__placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 0.9rem;
  text-align: center;
  padding: 1.5rem;
  background:
    linear-gradient(color-mix(in srgb, var(--surface) 78%, transparent), color-mix(in srgb, var(--surface) 78%, transparent)),
    repeating-linear-gradient(45deg, var(--surface-2) 0 12px, var(--surface-3) 12px 24px);
  cursor: pointer;
  border: 0;
  inline-size: 100%;
  color: var(--text);
}
.map-embed__placeholder p { font-size: var(--step--1); color: var(--text-muted); max-inline-size: 34ch; }

/* --------------------------------------------------------------------------
   19. Galeri & video
   -------------------------------------------------------------------------- */
.gallery {
  display: grid;
  gap: 0.9rem;
  /* 20rem taban masaüstünde 3 sütun verir: 6 fotoğraf tam iki sıra olur. */
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
}
.gallery figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
}
.gallery img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  inline-size: 100%;
  transition: transform 0.5s var(--ease-out);
}
.gallery figure:hover img { transform: scale(1.04); }
.gallery figcaption {
  padding: 0.75rem 1rem;
  font-size: var(--step--1);
  color: var(--text-muted);
}

.video-frame {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface-3);
  box-shadow: var(--shadow-lg);
  max-inline-size: 22rem;
}
.video-frame video {
  inline-size: 100%;
  aspect-ratio: 464 / 832;
  object-fit: cover;
  background: var(--surface-3);
}
.video-frame figcaption {
  padding: 0.8rem 1rem;
  font-size: var(--step--1);
  color: var(--text-muted);
  background: var(--surface);
}

/* --------------------------------------------------------------------------
   20. Alt bilgi
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--surface-2);
  border-block-start: 1px solid var(--line);
  padding-block: clamp(2.5rem, 2rem + 3vw, 4.5rem) 1.5rem;
  margin-block-end: var(--mobile-bar-h, 0px);
}
.footer-grid {
  display: grid;
  gap: clamp(1.8rem, 1.2rem + 2.5vw, 3rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr));
}
.footer-brand { max-inline-size: 26rem; }
.footer-brand p {
  margin-block-start: 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.footer-col h3 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--text-faint);
  margin-block-end: 0.9rem;
  font-weight: 700;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.55rem; }
.footer-col a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: color 0.16s;
}
.footer-col a:hover { color: var(--accent-text); }

.footer-bottom {
  margin-block-start: clamp(2rem, 1.5rem + 2vw, 3rem);
  padding-block-start: 1.4rem;
  border-block-start: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.6rem;
  align-items: center;
  justify-content: space-between;
  font-size: var(--step--1);
  color: var(--text-faint);
}
.footer-bottom a { color: inherit; }

.social {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin-block-start: 1.2rem;
}
.social a {
  display: grid;
  place-items: center;
  inline-size: 2.4rem;
  block-size: 2.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--surface);
  color: var(--text-muted);
  transition: border-color 0.18s, color 0.18s, transform 0.18s;
}
.social a:hover { border-color: var(--brand-500); color: var(--accent-text); transform: translateY(-2px); }
.social svg { inline-size: 1.15rem; block-size: 1.15rem; }

/* --------------------------------------------------------------------------
   21. Mobil aksiyon çubuğu (ara / whatsapp)
   -------------------------------------------------------------------------- */
.mobile-bar {
  position: fixed;
  inset-inline: 0;
  inset-block-end: 0;
  z-index: 90;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border-block-start: 1px solid var(--line);
  padding-block-end: env(safe-area-inset-bottom, 0);
  backdrop-filter: blur(12px);
}
.mobile-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 0.5rem;
  background: var(--surface);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
}
.mobile-bar a:first-child { background: var(--brand-500); color: var(--brand-on); }
.mobile-bar a:last-child { background: var(--whatsapp); color: #fff; }
.mobile-bar svg { inline-size: 1.2rem; block-size: 1.2rem; }

@media (width < 48rem) {
  .mobile-bar { display: grid; }
  body { --mobile-bar-h: 4rem; }
}

/* Masaüstü kayan whatsapp butonu */
.float-wa {
  position: fixed;
  inset-inline-end: 1.5rem;
  inset-block-end: 1.5rem;
  z-index: 90;
  inline-size: 3.5rem;
  block-size: 3.5rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 14px 34px -10px rgb(31 170 84 / 0.6);
  transition: transform 0.22s var(--ease-out);
}
.float-wa:hover { transform: scale(1.08); }
.float-wa svg { inline-size: 1.7rem; block-size: 1.7rem; }
@media (width < 48rem) { .float-wa { display: none; } }

/* --------------------------------------------------------------------------
   22. Hareket / görünürlük animasyonu
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: 70ms; }
.reveal:nth-child(3) { transition-delay: 140ms; }
.reveal:nth-child(4) { transition-delay: 210ms; }

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

/* Sayfalar arası yumuşak geçiş — hareket azaltma tercihine saygılı */
@media not (prefers-reduced-motion: reduce) {
  @view-transition { navigation: auto; }
}

/* --------------------------------------------------------------------------
   23. Yazdırma
   -------------------------------------------------------------------------- */
@media print {
  .site-header,
  .mobile-bar,
  .float-wa,
  .cta-band,
  .nav-toggle,
  .theme-toggle { display: none !important; }
  body { color: #000; background: #fff; }
  .hero, .page-hero { padding-block: 1rem; }
  .hero::before, .page-hero::before, .media-band { display: none; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 0.8em; }
}
