/* ==========================================================================
   EKİP YANGIN — Kurumsal Tasarım Sistemi
   Stil: Swiss Modernism 2.0 (grid tabanlı, rasyonel, kurumsal)
   Renk: Endüstriyel slate + yangın kırmızısı + güvenlik amber
   Tipografi: Poppins (başlık) / Open Sans (metin)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Renk — mürekkep / kurumsal */
  --ink-900: #0a1020;
  --ink-800: #101a2e;
  --ink-700: #1a2740;
  --ink-600: #2c3c58;

  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;

  /* Renk — marka */
  --brand: #d7261e;          /* 5.02:1 beyaz üzerinde — AA */
  --brand-700: #b01812;
  --brand-800: #8c120e;
  --brand-050: #fef3f2;
  --brand-100: #fee2e0;

  /* Renk — güvenlik / durum */
  --amber: #f59e0b;          /* yalnızca dolgu/ikon — metin için kullanma */
  --amber-050: #fffbeb;
  --success: #15803d;
  --success-050: #f0fdf4;

  /* Yüzey */
  --bg: #ffffff;
  --bg-soft: #f6f8fb;
  --bg-softer: #eef2f7;
  --line: #e2e8f0;
  --line-strong: #cbd5e1;

  /* Tipografi */
  --font-head: "Poppins", "Segoe UI", system-ui, sans-serif;
  --font-body: "Open Sans", "Segoe UI", system-ui, sans-serif;

  /* Boşluk ölçeği (standart yoğunluk) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;

  /* Yarıçap & gölge */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;
  --r-xl: 22px;
  --shadow-sm: 0 1px 2px rgba(10, 16, 32, .06), 0 1px 3px rgba(10, 16, 32, .05);
  --shadow-md: 0 4px 6px -1px rgba(10, 16, 32, .07), 0 2px 4px -2px rgba(10, 16, 32, .05);
  --shadow-lg: 0 12px 28px -8px rgba(10, 16, 32, .18), 0 4px 10px -4px rgba(10, 16, 32, .08);
  --shadow-xl: 0 28px 60px -18px rgba(10, 16, 32, .32);

  /* Düzen */
  --container: 1200px;
  --container-pad: 24px;
  --header-h: 76px;

  --ease: cubic-bezier(.4, 0, .2, 1);
  --dur: 220ms;
}

/* --------------------------------------------------------------------------
   2. RESET & TABAN
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--slate-700);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; }
ul, ol { list-style: none; padding: 0; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--ink-800);
  line-height: 1.18;
  letter-spacing: -.02em;
  font-weight: 600;
  text-wrap: balance;
}
h1 { font-size: clamp(2rem, 1.35rem + 2.7vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 1.2rem + 1.7vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 1.02rem + .5vw, 1.4rem); }
h4 { font-size: 1.0625rem; }
p { text-wrap: pretty; }

::selection { background: var(--brand); color: #fff; }

/* Odak halkası — her yerde görünür */
:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

.skip-link {
  position: absolute; left: 8px; top: -60px; z-index: 999;
  background: var(--ink-900); color: #fff;
  padding: 10px 18px; border-radius: var(--r-md);
  transition: top var(--dur) var(--ease);
}
.skip-link:focus { top: 8px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* --------------------------------------------------------------------------
   3. DÜZEN YARDIMCILARI
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section { padding-block: clamp(var(--space-8), 6vw, var(--space-9)); }
.section--tight { padding-block: clamp(var(--space-7), 4.5vw, var(--space-8)); }
.section--soft { background: var(--bg-soft); }
.section--dark { background: var(--ink-900); color: var(--slate-300); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
/* Koyu bölüm içindeki açık renkli paneller beyaz başlık rengini devralmamalı */
.section--dark .form-panel h2, .section--dark .form-panel h3, .section--dark .form-panel h4,
.section--dark .quote-card h2, .section--dark .quote-card h3,
.section--dark .card h3, .section--dark .post h3 { color: var(--ink-800); }

.grid { display: grid; gap: var(--space-5); }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }

.sec-head { max-width: 760px; margin-bottom: var(--space-7); }
.sec-head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-family: var(--font-head);
  font-size: .78rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--brand);
  margin-bottom: var(--space-3);
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--brand); flex: none;
}
.sec-head--center .eyebrow::after {
  content: ""; width: 26px; height: 2px; background: var(--brand); flex: none;
}
.section--dark .eyebrow { color: #ff6b60; }
.section--dark .eyebrow::before, .section--dark .eyebrow::after { background: #ff6b60; }

.lead {
  font-size: 1.0625rem;
  color: var(--slate-600);
  margin-top: var(--space-4);
}
.section--dark .lead { color: var(--slate-400); }

/* --------------------------------------------------------------------------
   4. İKONLAR
   -------------------------------------------------------------------------- */
.ico { width: 24px; height: 24px; flex: none; stroke-width: 1.75; }
.ico--sm { width: 18px; height: 18px; }
.ico--lg { width: 32px; height: 32px; }

.icon-box {
  width: 56px; height: 56px; border-radius: var(--r-md);
  display: grid; place-items: center;
  background: var(--brand-050); color: var(--brand);
  border: 1px solid var(--brand-100);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.icon-box--ink { background: var(--bg-softer); color: var(--ink-700); border-color: var(--line); }

/* --------------------------------------------------------------------------
   5. BUTONLAR
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--space-2);
  min-height: 48px;
  padding: 12px 24px;
  border-radius: var(--r-md);
  font-family: var(--font-head);
  font-size: .95rem; font-weight: 600;
  letter-spacing: .01em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
              border-color var(--dur) var(--ease), transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--brand); color: #fff; box-shadow: var(--shadow-md); }
.btn--primary:hover { background: var(--brand-700); box-shadow: var(--shadow-lg); }

.btn--ink { background: var(--ink-800); color: #fff; }
.btn--ink:hover { background: var(--ink-700); }

.btn--outline { border-color: var(--line-strong); color: var(--ink-800); background: #fff; }
.btn--outline:hover { border-color: var(--ink-800); background: var(--bg-soft); }

.btn--ghost-light { border-color: rgba(255, 255, 255, .28); color: #fff; }
.btn--ghost-light:hover { border-color: #fff; background: rgba(255, 255, 255, .08); }

.btn--wa { background: #1eab52; color: #fff; }
.btn--wa:hover { background: #17903f; }

.btn--lg { min-height: 56px; padding: 16px 32px; font-size: 1rem; }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  min-height: 32px; /* rahat dokunma hedefi */
  font-family: var(--font-head); font-weight: 600; font-size: .9rem;
  color: var(--brand);
}
.link-arrow .ico { transition: transform var(--dur) var(--ease); }
.link-arrow:hover .ico { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   6. ÜST BAR
   -------------------------------------------------------------------------- */
.topbar {
  background: var(--ink-900);
  color: var(--slate-400);
  font-size: .82rem;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}
.topbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-5); min-height: 44px; flex-wrap: wrap;
}
.topbar__list { display: flex; align-items: center; gap: var(--space-5); flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: var(--space-2); }
.topbar__item .ico { width: 15px; height: 15px; color: var(--brand); }
.topbar a:hover { color: #fff; }
.topbar__badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--brand); color: #fff;
  padding: 3px 12px; border-radius: 100px;
  font-weight: 600; font-size: .76rem; letter-spacing: .03em;
}
.pulse-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #fff;
  animation: pulse 2s var(--ease) infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .25; } }

/* --------------------------------------------------------------------------
   7. HEADER / NAVİGASYON
   -------------------------------------------------------------------------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--dur) var(--ease);
}
.header.is-stuck { box-shadow: var(--shadow-md); }
.header__inner {
  display: flex; align-items: center; gap: var(--space-5);
  min-height: var(--header-h);
}

.logo { display: inline-flex; align-items: center; gap: 10px; flex: none; }
.logo__mark {
  width: 42px; height: 42px; border-radius: 10px;
  background: linear-gradient(150deg, var(--brand) 0%, var(--brand-800) 100%);
  display: grid; place-items: center; color: #fff;
  box-shadow: 0 6px 14px -6px rgba(215, 38, 30, .7);
}
.logo__mark .ico { width: 24px; height: 24px; }
.logo__text { font-family: var(--font-head); line-height: 1.1; }
.logo__name { display: block; font-weight: 700; font-size: 1.16rem; color: var(--ink-900); letter-spacing: -.02em; }
.logo__sub { display: block; font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; color: var(--slate-600); font-weight: 600; }

.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: 2px; }
.nav__link {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 10px 14px; border-radius: var(--r-sm);
  font-family: var(--font-head); font-weight: 500; font-size: .93rem;
  color: var(--ink-700); white-space: nowrap;
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.nav__link:hover, .nav__item.is-open > .nav__link { color: var(--brand); background: var(--brand-050); }
.nav__link[aria-current="page"] { color: var(--brand); }
.nav__link .ico { width: 15px; height: 15px; transition: transform var(--dur) var(--ease); }
.nav__item.is-open > .nav__link .ico { transform: rotate(180deg); }

.nav__item { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 10px); left: 0;
  min-width: 290px; padding: var(--space-3);
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur);
}
.nav__item.is-open .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown--wide { min-width: 640px; display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.dropdown__link {
  display: flex; gap: var(--space-3); align-items: flex-start;
  padding: 10px 12px; border-radius: var(--r-md);
  transition: background var(--dur) var(--ease);
}
.dropdown__link:hover { background: var(--bg-soft); }
.dropdown__link .ico { color: var(--brand); margin-top: 2px; }
.dropdown__title { display: block; font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--ink-800); }
.dropdown__desc { display: block; font-size: .78rem; color: var(--slate-500); line-height: 1.45; }
.dropdown__foot {
  grid-column: 1 / -1; margin-top: var(--space-2); padding: var(--space-4);
  border-radius: var(--r-md); background: var(--bg-soft);
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
  font-size: .86rem;
}

.header__cta { display: flex; align-items: center; gap: var(--space-3); flex: none; }
.header__phone {
  display: inline-flex; align-items: center; gap: var(--space-3);
  padding-right: var(--space-3);
}
.header__phone .icon-box { width: 40px; height: 40px; border-radius: 50%; }
.header__phone-label { font-size: .7rem; color: var(--slate-500); letter-spacing: .06em; text-transform: uppercase; font-weight: 600; }
.header__phone-num { font-family: var(--font-head); font-weight: 700; font-size: .98rem; color: var(--ink-900); }

.burger {
  display: none; width: 48px; height: 48px; border-radius: var(--r-md);
  border: 1px solid var(--line); place-items: center; color: var(--ink-800);
}

/* Mobil çekmece */
.drawer {
  position: fixed; inset: 0; z-index: 200;
  visibility: hidden; pointer-events: none;
  overflow: hidden; /* kapalıyken panel yatay taşma yaratmasın */
}
.drawer.is-open { visibility: visible; pointer-events: auto; }
.drawer__scrim {
  position: absolute; inset: 0; background: rgba(10, 16, 32, .55);
  opacity: 0; transition: opacity var(--dur) var(--ease);
}
.drawer.is-open .drawer__scrim { opacity: 1; }
.drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(400px, 88vw); background: #fff;
  padding: var(--space-5);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 280ms var(--ease);
  display: flex; flex-direction: column; gap: var(--space-4);
}
.drawer.is-open .drawer__panel { transform: translateX(0); }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding-bottom: var(--space-4); border-bottom: 1px solid var(--line); }
.drawer__close { width: 44px; height: 44px; border-radius: var(--r-md); border: 1px solid var(--line); display: grid; place-items: center; }
.drawer__nav a, .drawer__acc-btn {
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-3);
  width: 100%; padding: 14px 4px; border-bottom: 1px solid var(--line);
  font-family: var(--font-head); font-weight: 500; color: var(--ink-800);
}
.drawer__sub { display: none; padding: var(--space-2) 0 var(--space-3) var(--space-4); }
.drawer__sub.is-open { display: block; }
.drawer__sub a { font-size: .9rem; font-weight: 400; color: var(--slate-600); border-bottom: 0; padding: 9px 0; }

/* --------------------------------------------------------------------------
   8. HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--ink-900);
  color: var(--slate-300);
  overflow: hidden;
  padding-block: clamp(var(--space-8), 6vw, 88px);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(120% 90% at 75% 15%, #000 20%, transparent 78%);
}
.hero::after {
  content: ""; position: absolute; top: -22%; right: -12%;
  width: 720px; height: 720px; border-radius: 50%;
  background: radial-gradient(circle, rgba(215, 38, 30, .38) 0%, rgba(215, 38, 30, 0) 62%);
  pointer-events: none;
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: var(--space-8); align-items: center;
}
.hero h1 { color: #fff; }
.hero h1 em { font-style: normal; color: #ff6b60; }
.hero__lead { font-size: clamp(1rem, .95rem + .3vw, 1.15rem); color: var(--slate-400); margin-top: var(--space-5); max-width: 56ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-6); }

.hero__badge {
  display: inline-flex; align-items: center; gap: var(--space-2);
  padding: 7px 16px 7px 8px; border-radius: 100px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .13);
  font-size: .82rem; color: #fff; font-weight: 500;
  margin-bottom: var(--space-5);
}
.hero__badge .icon-box { width: 26px; height: 26px; border-radius: 50%; background: var(--brand); color: #fff; border: 0; }
.hero__badge .ico { width: 15px; height: 15px; }

.hero__usps { display: flex; flex-wrap: wrap; gap: var(--space-3) var(--space-6); margin-top: var(--space-6); }
.hero__usp { display: inline-flex; align-items: center; gap: var(--space-2); font-size: .9rem; color: var(--slate-300); }
.hero__usp .ico { width: 19px; height: 19px; color: #4ade80; }

/* Hero teklif kartı */
.quote-card {
  background: #fff; border-radius: var(--r-xl);
  padding: var(--space-6); box-shadow: var(--shadow-xl);
  border-top: 5px solid var(--brand);
}
.quote-card__head { margin-bottom: var(--space-5); }
.quote-card__head h2 { font-size: 1.4rem; }
.quote-card__head p { font-size: .88rem; color: var(--slate-500); margin-top: 6px; }
.quote-card__note {
  display: flex; gap: var(--space-2); align-items: flex-start;
  margin-top: var(--space-4); padding-top: var(--space-4);
  border-top: 1px dashed var(--line);
  font-size: .78rem; color: var(--slate-500); line-height: 1.5;
}
.quote-card__note .ico { width: 16px; height: 16px; color: var(--success); margin-top: 2px; }

/* --------------------------------------------------------------------------
   9. FORM
   -------------------------------------------------------------------------- */
.field { margin-bottom: var(--space-4); }
.field__label {
  display: block; font-family: var(--font-head); font-weight: 600;
  font-size: .82rem; color: var(--ink-800); margin-bottom: 6px;
}
.field__req { color: var(--brand); }
.field__hint { font-size: .76rem; color: var(--slate-500); margin-top: 5px; }
.input, .select, .textarea {
  width: 100%; min-height: 48px;
  padding: 12px 14px;
  background: var(--bg-soft);
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  font-size: .93rem;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.input::placeholder, .textarea::placeholder { color: var(--slate-500); }
.input:hover, .select:hover, .textarea:hover { border-color: var(--line-strong); }
.input:focus, .select:focus, .textarea:focus {
  outline: none; background: #fff;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px var(--brand-100);
}
.textarea { min-height: 110px; resize: vertical; }
.select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
  padding-right: 40px;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); }

.check {
  display: flex; gap: var(--space-3); align-items: flex-start;
  font-size: .8rem; color: var(--slate-600); line-height: 1.5;
  cursor: pointer;
}
.check input { width: 20px; height: 20px; margin-top: 1px; flex: none; accent-color: var(--brand); cursor: pointer; }
.check a { color: var(--brand); text-decoration: underline; }

/* --------------------------------------------------------------------------
   10. GÜVEN ŞERİDİ / BELGELER
   -------------------------------------------------------------------------- */
.trustbar { border-bottom: 1px solid var(--line); background: var(--bg-soft); }
.trustbar__inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5); padding-block: var(--space-6);
}
.trustbar__item { display: flex; gap: var(--space-4); align-items: flex-start; }
.trustbar__item .icon-box { width: 46px; height: 46px; }
.trustbar__item strong { display: block; font-family: var(--font-head); font-size: .95rem; color: var(--ink-800); }
.trustbar__item span { font-size: .82rem; color: var(--slate-600); line-height: 1.5; }

.cert-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-4); }
.cert {
  border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: var(--space-5); background: #fff;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.cert:hover { border-color: var(--brand); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.cert__code {
  font-family: var(--font-head); font-weight: 700; font-size: 1.05rem;
  color: var(--brand); letter-spacing: -.01em;
}
.cert__name { font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--ink-800); margin-top: 4px; }
.cert__desc { font-size: .8rem; color: var(--slate-500); margin-top: 6px; line-height: 1.5; }

/* --------------------------------------------------------------------------
   11. KARTLAR (hizmet / genel)
   -------------------------------------------------------------------------- */
.card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: var(--space-6);
  display: flex; flex-direction: column; gap: var(--space-4);
  position: relative; overflow: hidden;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.card::after {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: var(--brand); transform: scaleX(0); transform-origin: left;
  transition: transform 300ms var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--line-strong); }
.card:hover::after { transform: scaleX(1); }
.card:hover .icon-box { background: var(--brand); color: #fff; border-color: var(--brand); }
.card h3 { font-size: 1.12rem; }
.card p { font-size: .9rem; color: var(--slate-600); }
.card__list { display: flex; flex-direction: column; gap: 7px; margin-top: auto; padding-top: var(--space-2); }
.card__list li { display: flex; gap: var(--space-2); align-items: flex-start; font-size: .84rem; color: var(--slate-600); }
.card__list .ico { width: 16px; height: 16px; color: var(--success); margin-top: 4px; }
.card__foot { padding-top: var(--space-4); border-top: 1px solid var(--line); margin-top: auto; }

.card__tag {
  position: absolute; top: var(--space-4); right: var(--space-4);
  font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  background: var(--amber-050); color: #92400e; border: 1px solid #fde68a;
  padding: 3px 9px; border-radius: 100px;
}

/* --------------------------------------------------------------------------
   12. SEKTÖREL ÇÖZÜMLER (tab)
   -------------------------------------------------------------------------- */
.tabs { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-bottom: var(--space-6); }
.tab {
  display: inline-flex; align-items: center; gap: var(--space-2);
  min-height: 46px; padding: 10px 18px;
  border: 1.5px solid var(--line); border-radius: 100px;
  background: #fff; font-family: var(--font-head); font-weight: 500; font-size: .88rem;
  color: var(--slate-600);
  transition: all var(--dur) var(--ease);
}
.tab .ico { width: 18px; height: 18px; }
.tab:hover { border-color: var(--line-strong); color: var(--ink-800); }
.tab[aria-selected="true"] { background: var(--ink-900); border-color: var(--ink-900); color: #fff; }

.tabpanel { display: none; }
.tabpanel.is-active { display: block; animation: fadeUp 320ms var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.solution {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-7);
  align-items: center;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-xl); padding: var(--space-7); box-shadow: var(--shadow-sm);
}
.solution__risks { display: grid; gap: var(--space-3); margin-top: var(--space-5); }
.solution__risk {
  display: flex; gap: var(--space-3); align-items: flex-start;
  padding: var(--space-4); border-radius: var(--r-md);
  background: var(--bg-soft); border-left: 3px solid var(--brand);
}
.solution__risk .ico { width: 20px; height: 20px; color: var(--brand); margin-top: 2px; }
.solution__risk strong { display: block; font-family: var(--font-head); font-size: .9rem; color: var(--ink-800); }
.solution__risk span { font-size: .84rem; color: var(--slate-600); }
.solution__chips { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-top: var(--space-5); }
.chip {
  font-size: .8rem; padding: 6px 14px; border-radius: 100px;
  background: var(--brand-050); color: var(--brand-800);
  border: 1px solid var(--brand-100); font-weight: 600;
}

/* --------------------------------------------------------------------------
   13. SÜREÇ
   -------------------------------------------------------------------------- */
.process { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--space-5); position: relative; }
.process::before {
  content: ""; position: absolute; top: 27px; left: 8%; right: 8%;
  height: 2px; background: repeating-linear-gradient(90deg, var(--line-strong) 0 8px, transparent 8px 16px);
}
.step { position: relative; text-align: center; }
.step__num {
  width: 56px; height: 56px; margin: 0 auto var(--space-4);
  border-radius: 50%; display: grid; place-items: center;
  background: #fff; border: 2px solid var(--line-strong);
  font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; color: var(--ink-800);
  position: relative; z-index: 1;
  transition: all var(--dur) var(--ease);
}
.step:hover .step__num { background: var(--brand); border-color: var(--brand); color: #fff; }
.step h3 { font-size: 1rem; margin-bottom: 6px; }
.step p { font-size: .85rem; color: var(--slate-600); }
.section--soft .step__num { background: var(--bg-soft); }

/* --------------------------------------------------------------------------
   14. İSTATİSTİK
   -------------------------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5); }
.stat { padding: var(--space-5) var(--space-4); border-left: 2px solid rgba(255, 255, 255, .14); }
.stat__num {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(2.2rem, 1.6rem + 2vw, 3.1rem);
  color: #fff; line-height: 1; letter-spacing: -.03em;
}
.stat__num span { color: var(--brand); }
.stat__label { font-size: .88rem; color: var(--slate-400); margin-top: var(--space-3); }

/* --------------------------------------------------------------------------
   15. REFERANSLAR & YORUMLAR
   -------------------------------------------------------------------------- */
.ref-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.ref {
  background: #fff; min-height: 108px;
  display: grid; place-items: center; text-align: center; padding: var(--space-4);
  transition: background var(--dur) var(--ease);
}
.ref:hover { background: var(--bg-soft); }
.ref__name { font-family: var(--font-head); font-weight: 700; font-size: .84rem; color: var(--ink-700); letter-spacing: -.01em; }
.ref__meta { font-size: .72rem; color: var(--slate-500); margin-top: 3px; } /* AA kontrast için slate-500 */

.quote-item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: var(--space-6); display: flex; flex-direction: column; gap: var(--space-4);
}
.quote-item__mark { color: var(--brand-100); }
.quote-item__mark .ico { width: 38px; height: 38px; }
.quote-item blockquote { font-size: .95rem; color: var(--slate-700); line-height: 1.7; }
.quote-item__author { display: flex; align-items: center; gap: var(--space-3); padding-top: var(--space-4); border-top: 1px solid var(--line); margin-top: auto; }
.avatar {
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  background: var(--ink-800); color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: .9rem;
}
.quote-item__author strong { display: block; font-family: var(--font-head); font-size: .88rem; color: var(--ink-800); }
.quote-item__author span { font-size: .78rem; color: var(--slate-500); }
.stars { display: flex; gap: 2px; color: var(--amber); }
.stars .ico { width: 16px; height: 16px; fill: currentColor; stroke: none; }

/* --------------------------------------------------------------------------
   16. CTA BANDI
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative; overflow: hidden;
  background: linear-gradient(115deg, var(--ink-900) 0%, var(--ink-700) 100%);
  border-radius: var(--r-xl); padding: clamp(var(--space-6), 4vw, var(--space-8));
  color: var(--slate-300);
}
.cta-band::before {
  content: ""; position: absolute; top: -50%; right: -6%;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(215, 38, 30, .4) 0%, transparent 65%);
}
.cta-band__inner { position: relative; display: grid; grid-template-columns: 1.4fr auto; gap: var(--space-6); align-items: center; }
.cta-band h2 { color: #fff; font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.1rem); }
.cta-band p { margin-top: var(--space-3); color: var(--slate-400); }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: var(--space-3); }

/* --------------------------------------------------------------------------
   17. SSS
   -------------------------------------------------------------------------- */
.faq { display: grid; gap: var(--space-3); }
.faq__item { border: 1px solid var(--line); border-radius: var(--r-lg); background: #fff; overflow: hidden; transition: border-color var(--dur) var(--ease); }
.faq__item.is-open { border-color: var(--brand); box-shadow: var(--shadow-sm); }
.faq__btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
  padding: var(--space-5); text-align: left;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem; color: var(--ink-800);
  min-height: 60px;
}
.faq__btn:hover { color: var(--brand); }
.faq__icon {
  width: 32px; height: 32px; border-radius: 50%; flex: none;
  display: grid; place-items: center; background: var(--bg-soft); color: var(--ink-700);
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.faq__item.is-open .faq__icon { transform: rotate(180deg); background: var(--brand); color: #fff; }
.faq__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 280ms var(--ease); }
.faq__item.is-open .faq__panel { grid-template-rows: 1fr; }
.faq__panel > div { overflow: hidden; }
.faq__panel p { padding: 0 var(--space-5) var(--space-5); font-size: .93rem; color: var(--slate-600); }
.faq__panel p + p { padding-top: 0; }

/* --------------------------------------------------------------------------
   18. HİZMET BÖLGELERİ
   -------------------------------------------------------------------------- */
.regions { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.region {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: var(--r-md);
  background: #fff; border: 1px solid var(--line);
  font-size: .86rem; color: var(--slate-600);
  transition: all var(--dur) var(--ease);
}
.region:hover { border-color: var(--brand); color: var(--brand); background: var(--brand-050); }
.region .ico { width: 14px; height: 14px; color: var(--slate-400); }
.region:hover .ico { color: var(--brand); }

/* --------------------------------------------------------------------------
   19. BLOG
   -------------------------------------------------------------------------- */
.post { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; transition: all var(--dur) var(--ease); }
.post:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.post__thumb {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--ink-800), var(--ink-600));
  display: grid; place-items: center; color: rgba(255, 255, 255, .22);
  position: relative;
}
.post__thumb .ico { width: 52px; height: 52px; }
.post__cat {
  position: absolute; left: var(--space-4); bottom: var(--space-4);
  background: var(--brand); color: #fff;
  font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 11px; border-radius: var(--r-sm);
}
.post__body { padding: var(--space-5); display: flex; flex-direction: column; gap: var(--space-3); flex: 1; }
.post__meta { display: flex; gap: var(--space-4); font-size: .76rem; color: var(--slate-500); }
.post__meta span { display: inline-flex; align-items: center; gap: 5px; }
.post__meta .ico { width: 14px; height: 14px; }
.post h3 { font-size: 1.05rem; }
.post p { font-size: .87rem; color: var(--slate-600); }
.post .link-arrow { margin-top: auto; padding-top: var(--space-3); }

/* --------------------------------------------------------------------------
   20. İLETİŞİM
   -------------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: var(--space-8); align-items: start; }
.contact-list { display: grid; gap: var(--space-4); margin-top: var(--space-6); }
.contact-item {
  display: flex; gap: var(--space-4); align-items: flex-start;
  padding: var(--space-5); border-radius: var(--r-lg);
  background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .09);
}
.contact-item .icon-box { background: rgba(215, 38, 30, .16); border-color: rgba(215, 38, 30, .3); color: #ff6b60; }
.contact-item strong { display: block; font-family: var(--font-head); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--slate-400); margin-bottom: 4px; }
.contact-item a, .contact-item p { color: #fff; font-size: 1rem; font-family: var(--font-head); font-weight: 500; }
.contact-item small { display: block; color: var(--slate-400); font-size: .8rem; font-family: var(--font-body); font-weight: 400; margin-top: 3px; }
.form-panel { background: #fff; border-radius: var(--r-xl); padding: clamp(var(--space-6), 3vw, var(--space-7)); box-shadow: var(--shadow-xl); }

/* --------------------------------------------------------------------------
   21. FOOTER
   -------------------------------------------------------------------------- */
.footer { background: var(--ink-900); color: var(--slate-400); font-size: .88rem; }
.footer__top { padding-block: var(--space-8); border-bottom: 1px solid rgba(255, 255, 255, .08); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: var(--space-7); }
.footer .logo__name { color: #fff; }
.footer .logo__sub { color: var(--slate-500); }
.footer__about { margin-top: var(--space-5); line-height: 1.7; max-width: 42ch; }
.footer__title {
  font-family: var(--font-head); font-weight: 600; font-size: .95rem; color: #fff;
  margin-bottom: var(--space-5); display: flex; align-items: center; gap: var(--space-2);
}
.footer__title::before { content: ""; width: 16px; height: 2px; background: var(--brand); }
.footer__links { display: grid; gap: 6px; }
.footer__links a {
  display: inline-flex; align-items: center; min-height: 30px;
  transition: color var(--dur) var(--ease), padding-left var(--dur) var(--ease);
}
.footer__links a:hover { color: #fff; padding-left: 5px; }
.footer__contact { display: grid; gap: var(--space-4); }
.footer__contact li { display: flex; gap: var(--space-3); align-items: flex-start; }
.footer__contact .ico { width: 17px; height: 17px; color: var(--brand); margin-top: 3px; }
.footer__contact a:hover { color: #fff; }
.socials { display: flex; gap: var(--space-2); margin-top: var(--space-5); }
.social {
  width: 40px; height: 40px; border-radius: var(--r-md);
  display: grid; place-items: center;
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .1);
  color: var(--slate-400);
  transition: all var(--dur) var(--ease);
}
.social:hover { background: var(--brand); border-color: var(--brand); color: #fff; }
.footer__bottom { padding-block: var(--space-5); }
.footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--space-5); flex-wrap: wrap; font-size: .82rem; }
.footer__legal { display: flex; gap: var(--space-5); flex-wrap: wrap; }
.footer__legal a:hover { color: #fff; }

/* --------------------------------------------------------------------------
   22. MOBİL AKSİYON ÇUBUĞU + WHATSAPP
   -------------------------------------------------------------------------- */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none; grid-template-columns: repeat(3, 1fr);
  background: #fff; border-top: 1px solid var(--line);
  box-shadow: 0 -6px 20px -8px rgba(10, 16, 32, .18);
  padding-bottom: env(safe-area-inset-bottom);
}
.mobile-bar a {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  min-height: 62px; font-size: .72rem; font-weight: 600; font-family: var(--font-head);
  color: var(--ink-800); border-right: 1px solid var(--line);
}
.mobile-bar a:last-child { border-right: 0; }
.mobile-bar a .ico { width: 21px; height: 21px; color: var(--brand); }
.mobile-bar a.is-accent { background: var(--brand); color: #fff; }
.mobile-bar a.is-accent .ico { color: #fff; }

.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 89;
  width: 56px; height: 56px; border-radius: 50%;
  background: #1eab52; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 26px -8px rgba(30, 171, 82, .8);
  transition: transform var(--dur) var(--ease);
}
.wa-float:hover { transform: scale(1.07); }
.wa-float .ico { width: 30px; height: 30px; }

/* --------------------------------------------------------------------------
   23. SAYFA İÇİ (hizmet detay)
   -------------------------------------------------------------------------- */
.pagehead { background: var(--ink-900); color: var(--slate-400); padding-block: var(--space-8); position: relative; overflow: hidden; }
.pagehead::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(100% 100% at 80% 0%, #000 10%, transparent 75%);
}
.pagehead__inner { position: relative; }
.pagehead h1 { color: #fff; margin-top: var(--space-3); font-size: clamp(1.8rem, 1.3rem + 2vw, 2.9rem); }
.crumbs { display: flex; gap: var(--space-2); align-items: center; font-size: .82rem; color: var(--slate-400); flex-wrap: wrap; }
.crumbs a:hover { color: #fff; }
.crumbs .ico { width: 14px; height: 14px; }

.article-layout { display: grid; grid-template-columns: 1fr 340px; gap: var(--space-8); align-items: start; }
.prose > * + * { margin-top: var(--space-5); }
.prose h2 { font-size: 1.65rem; margin-top: var(--space-7); padding-top: var(--space-2); }
.prose h3 { font-size: 1.2rem; margin-top: var(--space-6); }
.prose p { font-size: 1rem; color: var(--slate-600); }
.prose ul { display: grid; gap: var(--space-3); }
.prose ul li { display: flex; gap: var(--space-3); align-items: flex-start; font-size: .95rem; color: var(--slate-600); }
.prose ul li .ico { width: 19px; height: 19px; color: var(--success); margin-top: 3px; flex: none; }
.prose table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.prose th, .prose td { padding: 13px 16px; border: 1px solid var(--line); text-align: left; }
.prose th { background: var(--bg-soft); font-family: var(--font-head); font-weight: 600; color: var(--ink-800); }
.callout {
  display: flex; gap: var(--space-4); align-items: flex-start;
  padding: var(--space-5); border-radius: var(--r-lg);
  background: var(--amber-050); border: 1px solid #fde68a;
}
.callout .ico { width: 22px; height: 22px; color: #b45309; margin-top: 2px; flex: none; }
.callout strong { display: block; font-family: var(--font-head); color: #78350f; margin-bottom: 4px; }
.callout p { font-size: .88rem; color: #92400e; }

.sidebar { position: sticky; top: calc(var(--header-h) + 20px); display: grid; gap: var(--space-5); }
.side-card { border: 1px solid var(--line); border-radius: var(--r-lg); padding: var(--space-5); background: #fff; }
.side-card--dark { background: var(--ink-900); border-color: var(--ink-700); color: var(--slate-400); }
.side-card--dark h3 { color: #fff; }
.side-card h3 { font-size: 1.02rem; margin-bottom: var(--space-4); }
.side-nav { display: grid; gap: 2px; }
.side-nav a {
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-3);
  padding: 11px 13px; border-radius: var(--r-md); font-size: .88rem; color: var(--slate-600);
  transition: all var(--dur) var(--ease);
}
.side-nav a:hover { background: var(--bg-soft); color: var(--brand); }
.side-nav a.is-active { background: var(--brand-050); color: var(--brand); font-weight: 600; }
.side-nav .ico { width: 15px; height: 15px; opacity: .6; }

/* --------------------------------------------------------------------------
   24. GİRİŞ ANİMASYONU
   -------------------------------------------------------------------------- */
/* Gizleme YALNIZCA (a) JS animasyonu devredeyken ve (b) masaüstünde uygulanır.
   Mobilde giriş animasyonu YOK — içerik her koşulda görünür.
   Gerekçe: mobilde bloklar ekran yüksekliğinin katları kadar uzuyor; herhangi bir
   gözlemci hatası tüm bölümü kalıcı olarak görünmez bırakabiliyor. Uzun bir sayfada
   bu riski almaya değmez. */
@media (min-width: 1025px) {
  .js-anim .reveal { opacity: 0; transform: translateY(18px); }
  .js-anim .reveal-stagger > * { opacity: 0; transform: translateY(16px); }
}

.reveal.is-in { opacity: 1; transform: none; transition: opacity 480ms var(--ease), transform 480ms var(--ease); }
.reveal-stagger.is-in > * { opacity: 1; transform: none; transition: opacity 420ms var(--ease), transform 420ms var(--ease); }
.reveal-stagger.is-in > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.is-in > *:nth-child(2) { transition-delay: 70ms; }
.reveal-stagger.is-in > *:nth-child(3) { transition-delay: 140ms; }
.reveal-stagger.is-in > *:nth-child(4) { transition-delay: 210ms; }
.reveal-stagger.is-in > *:nth-child(5) { transition-delay: 280ms; }
.reveal-stagger.is-in > *:nth-child(6) { transition-delay: 350ms; }
.reveal-stagger.is-in > *:nth-child(n+7) { transition-delay: 400ms; }

/* --------------------------------------------------------------------------
   25. DUYARLI DÜZEN
   -------------------------------------------------------------------------- */
/* Header'da menü + telefon + CTA aynı satıra sığmadığı genişlikler */
@media (max-width: 1540px) {
  .header__phone { display: none; }
}
@media (max-width: 1240px) {
  .nav__link { padding-inline: 10px; font-size: .89rem; }
  .header__inner { gap: var(--space-4); }
}

@media (max-width: 1120px) {
  .hero__inner { grid-template-columns: 1fr; gap: var(--space-7); }
  .quote-card { max-width: 560px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--space-6); }
  .ref-grid { grid-template-columns: repeat(3, 1fr); }
  .article-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .nav, .header__phone { display: none; }
  .burger { display: grid; }
  .header__cta { margin-left: auto; }
  .trustbar__inner { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }
  .process::before { display: none; }
  .step { text-align: left; }
  .step__num { margin-inline: 0; }
  .g-4, .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .solution, .contact-grid { grid-template-columns: 1fr; gap: var(--space-6); }
  .cta-band__inner { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  :root { --header-h: 68px; }
  .topbar__inner { justify-content: center; min-height: 40px; }
  .topbar__list--sec { display: none; }
  .g-3, .g-2, .g-4, .cert-grid { grid-template-columns: 1fr; }
  .ref-grid { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: 1fr; gap: var(--space-5); }
  .field-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .sidebar { grid-template-columns: 1fr; }
  .mobile-bar { display: grid; }
  .wa-float { display: none; }
  body { padding-bottom: calc(64px + env(safe-area-inset-bottom)); }
  .header__cta .btn span { display: none; }
  .header__cta .btn { padding-inline: 16px; }
  .solution, .form-panel { padding: var(--space-5); }
}

/* Dar ekranda header'da yalnızca logo + menü kalsın;
   "Teklif Al" aksiyonu zaten alt sabit çubukta yer alıyor. */
@media (max-width: 560px) {
  .header__cta > .btn { display: none; }
}

@media (max-width: 420px) {
  :root { --container-pad: 16px; }
  .stats { grid-template-columns: 1fr; }
  .hero__actions .btn { width: 100%; }
  .logo__sub { display: none; }
  .logo__name { font-size: 1.05rem; }
  .topbar { font-size: .76rem; }
}

/* --------------------------------------------------------------------------
   26. HAREKET TERCİHİ & YAZDIRMA
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; }
}

@media print {
  .topbar, .header, .mobile-bar, .wa-float, .cta-band, .hero::after { display: none !important; }
  body { color: #000; }
}

/* ==========================================================================
   27. GÖRSEL BLOKLAR (media)
   Not: Her .media bloğu gerçek fotoğrafla değiştirilmeye hazırdır —
   içine <img> koymanız yeterli, kutu ve oranlar korunur.
   ========================================================================== */
.media {
  position: relative; overflow: hidden;
  border-radius: var(--r-md);
  background: var(--ink-800);
  display: grid; place-items: center;
  isolation: isolate;
}
.media > img { width: 100%; height: 100%; object-fit: cover; }
.media--16x10 { aspect-ratio: 16 / 10; }
.media--16x9  { aspect-ratio: 16 / 9; }
.media--4x3   { aspect-ratio: 4 / 3; }
.media--1x1   { aspect-ratio: 1 / 1; }
.media--tall  { aspect-ratio: 3 / 4; }
.media--wide  { aspect-ratio: 21 / 9; }

/* Doku katmanı */
.media::before {
  content: ""; position: absolute; inset: 0; z-index: 0; opacity: .5;
}
/* Kırmızı ışık katmanı */
.media::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(90% 80% at 78% 12%, rgba(215, 38, 30, .5) 0%, rgba(215, 38, 30, 0) 62%);
}
.media__icon {
  position: relative; z-index: 2;
  width: 30%; max-width: 92px; height: auto; aspect-ratio: 1;
  color: rgba(255, 255, 255, .92);
  stroke-width: 1.1;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, .45));
  transition: transform 420ms var(--ease);
}
.media__label {
  position: absolute; z-index: 3; left: 14px; bottom: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: 100px;
  background: rgba(10, 16, 32, .62);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, .16);
  font-family: var(--font-head); font-weight: 600;
  font-size: .7rem; letter-spacing: .05em; text-transform: uppercase;
  color: #fff;
}
.media__label--accent { background: var(--brand); border-color: var(--brand); }

/* Doku çeşitleri — her kart farklı görünsün */
.media--v1 { background: linear-gradient(145deg, #0f1b30, #0a1020); }
.media--v1::before { background-image: linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px); background-size: 26px 26px; }

.media--v2 { background: linear-gradient(145deg, #2a1010, #0a1020); }
.media--v2::before { background-image: repeating-linear-gradient(45deg, rgba(255,255,255,.08) 0 2px, transparent 2px 12px); }

.media--v3 { background: linear-gradient(145deg, #16233a, #0a1020); }
.media--v3::before { background-image: radial-gradient(rgba(255,255,255,.16) 1.2px, transparent 1.2px); background-size: 18px 18px; }

.media--v4 { background: linear-gradient(145deg, #0d1a2e, #0a1020); }
.media--v4::before { background-image: repeating-radial-gradient(circle at 50% 46%, rgba(255,255,255,.11) 0 1px, transparent 1px 22px); }

.media--v5 { background: linear-gradient(145deg, #2b1c08, #0a1020); }
.media--v5::before { background-image: repeating-linear-gradient(-45deg, rgba(255,255,255,.07) 0 2px, transparent 2px 14px); }

.media--v6 { background: linear-gradient(145deg, #101c33, #0a1020); }
.media--v6::before { background-image: repeating-linear-gradient(0deg, rgba(255,255,255,.09) 0 1px, transparent 1px 9px); }

.media--v7 { background: linear-gradient(145deg, #1d1226, #0a1020); }
.media--v7::before { background-image: linear-gradient(45deg, rgba(255,255,255,.07) 25%, transparent 25%, transparent 75%, rgba(255,255,255,.07) 75%), linear-gradient(45deg, rgba(255,255,255,.07) 25%, transparent 25%, transparent 75%, rgba(255,255,255,.07) 75%); background-size: 22px 22px; background-position: 0 0, 11px 11px; }

.media--v8 { background: linear-gradient(145deg, #0a2029, #0a1020); }
.media--v8::before { background-image: repeating-linear-gradient(90deg, rgba(255,255,255,.09) 0 1px, transparent 1px 16px); }

.media--v9 { background: linear-gradient(145deg, #221523, #0a1020); }
.media--v9::before { background-image: radial-gradient(rgba(255,255,255,.13) 1px, transparent 1px), radial-gradient(rgba(255,255,255,.13) 1px, transparent 1px); background-size: 24px 24px; background-position: 0 0, 12px 12px; }

/* Görselli kart */
.card--media { padding: 0; overflow: hidden; }
.card--media > .media { border-radius: 0; }
.card--media .card__body {
  padding: var(--space-5) var(--space-5) var(--space-6);
  display: flex; flex-direction: column; gap: var(--space-3); flex: 1;
}
.card--media:hover .media__icon { transform: scale(1.08) translateY(-3px); }
.card--media .card__foot { margin-inline: var(--space-5); }

/* ==========================================================================
   28. SİSTEM AKIŞ ŞEMASI
   ========================================================================== */
.flow {
  position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5);
}
.flow__line {
  position: absolute; left: 12%; right: 12%; top: 54px; height: 2px; z-index: 0;
  background: rgba(255, 255, 255, .13);
  overflow: hidden;
}
.flow__line::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
  animation: flowRun 3.2s linear infinite;
}
@keyframes flowRun { from { transform: translateX(-100%); } to { transform: translateX(100%); } }

.flow__step { position: relative; z-index: 1; text-align: center; }
.flow__dot {
  width: 108px; height: 108px; margin: 0 auto var(--space-4);
  border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(150deg, #16233a, #0a1020);
  border: 2px solid rgba(255, 255, 255, .14);
  color: #fff; position: relative;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.flow__dot .ico { width: 40px; height: 40px; stroke-width: 1.4; }
.flow__step:hover .flow__dot { border-color: var(--brand); transform: translateY(-4px); }
.flow__num {
  position: absolute; top: -6px; right: -6px;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--brand); color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: .82rem;
  border: 3px solid var(--ink-900);
}
.flow__step h3 { font-size: 1rem; margin-bottom: 6px; }
.flow__step p { font-size: .85rem; color: var(--slate-400); }
.flow__time {
  display: inline-block; margin-top: 10px;
  font-family: var(--font-head); font-size: .72rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  color: #ff6b60;
}

/* ==========================================================================
   29. PROJE GALERİSİ (bento)
   ========================================================================== */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: var(--space-4);
}
.gallery__item {
  position: relative; overflow: hidden; border-radius: var(--r-lg);
  display: block;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.gallery__item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.gallery__item .media { height: 100%; aspect-ratio: auto; border-radius: 0; }
.gallery__item--w2 { grid-column: span 2; }
.gallery__item--h2 { grid-row: span 2; }
.gallery__cap {
  position: absolute; z-index: 3; left: 0; right: 0; bottom: 0;
  padding: var(--space-6) var(--space-4) var(--space-4);
  background: linear-gradient(transparent, rgba(10, 16, 32, .9));
}
.gallery__cap strong {
  display: block; font-family: var(--font-head); font-weight: 600;
  font-size: .95rem; color: #fff; line-height: 1.3;
}
.gallery__cap span { font-size: .76rem; color: var(--slate-400); }

/* ==========================================================================
   30. BELGE ROZETLERİ
   ========================================================================== */
.seal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-4); }
.seal {
  position: relative; text-align: center;
  padding: var(--space-6) var(--space-4) var(--space-5);
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.seal:hover { border-color: var(--brand); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.seal__badge {
  width: 84px; height: 84px; margin: 0 auto var(--space-4);
  position: relative; display: grid; place-items: center;
}
.seal__ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px dashed var(--line-strong);
  transition: transform 600ms var(--ease), border-color var(--dur) var(--ease);
}
.seal:hover .seal__ring { transform: rotate(180deg); border-color: var(--brand); }
.seal__core {
  width: 62px; height: 62px; border-radius: 50%;
  background: var(--bg-soft); border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--ink-700);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.seal:hover .seal__core { background: var(--brand); color: #fff; border-color: var(--brand); }
.seal__core .ico { width: 28px; height: 28px; }
.seal__code { font-family: var(--font-head); font-weight: 700; font-size: 1rem; color: var(--brand); }
.seal__name { font-family: var(--font-head); font-weight: 600; font-size: .86rem; color: var(--ink-800); margin-top: 3px; line-height: 1.35; }
.seal__desc { font-size: .78rem; color: var(--slate-600); margin-top: 8px; line-height: 1.5; }

/* ==========================================================================
   31. SEKTÖR GÖRSEL PANELİ
   ========================================================================== */
.solution { grid-template-columns: 1fr 1fr; }
.solution__media { position: relative; }
.solution__media .media { aspect-ratio: 4 / 3; border-radius: var(--r-lg); }
.solution__stat {
  position: absolute; z-index: 4; right: -14px; bottom: -14px;
  background: #fff; border-radius: var(--r-lg);
  padding: var(--space-4) var(--space-5);
  box-shadow: var(--shadow-lg); border: 1px solid var(--line);
  min-width: 168px;
}
.solution__stat b {
  display: block; font-family: var(--font-head); font-weight: 700;
  font-size: 1.65rem; color: var(--brand); line-height: 1;
}
.solution__stat span { font-size: .76rem; color: var(--slate-600); display: block; margin-top: 5px; line-height: 1.4; }
.solution__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-7); align-items: center; }

/* ==========================================================================
   32. EKİP / SAHA ŞERİDİ
   ========================================================================== */
.strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-4); }
.strip .media { aspect-ratio: 1 / 1; }

/* ==========================================================================
   33. GÖRSEL BLOKLAR — DUYARLI
   ========================================================================== */
@media (max-width: 1024px) {
  .flow { grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }
  .flow__line { display: none; }
  .seal-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .solution__grid { grid-template-columns: 1fr; }
  .solution__stat { right: 12px; bottom: -14px; }
  .strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .flow { grid-template-columns: 1fr; }
  .seal-grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 140px; }
  .gallery__item--w2 { grid-column: span 2; }
  .gallery__item--h2 { grid-row: span 1; }
  .media__icon { max-width: 60px; }
}
@media (max-width: 420px) {
  .seal-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .gallery__item--w2 { grid-column: span 1; }
}

/* 34. Görselli kart ve sektör paneli ince ayarları */
.card--media { padding: 0; gap: 0; }
.card--media .card__body > h3 { margin-bottom: 2px; }
.card--media .card__foot { border-top: 1px solid var(--line); padding-top: var(--space-4); }
.solution > .solution__risks {
  grid-template-columns: repeat(3, 1fr);
  margin-top: var(--space-6);
}
@media (max-width: 1024px) { .solution > .solution__risks { grid-template-columns: 1fr; } }

/* 35. Sektör paneli artık üstte görsel+metin, altta riskler olarak akıyor */
.solution { display: block; }
.solution__grid { align-items: center; }

/* Blog kartındaki görsel bloğu */
.post .media { border-radius: 0; }
.post__cat { z-index: 3; }

/* ==========================================================================
   36. MOBİL DÜZELTMELERİ
   ========================================================================== */

/* --- Üst bar: mobilde tek satır, yalnızca acil rozeti + telefon --- */
@media (max-width: 760px) {
  .topbar__inner { justify-content: center; gap: var(--space-4); min-height: 38px; }
  .topbar__list--sec { display: none; }
  .topbar__item--mail { display: none; }
  .topbar__badge { font-size: .72rem; padding: 3px 10px; }
  .topbar { font-size: .8rem; }
}

/* --- Sektör sekmeleri: mobilde kaydırmalı şerit (alt alta liste değil) --- */
@media (max-width: 1024px) {
  .tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    /* şerit ekran kenarına kadar uzansın */
    margin-inline: calc(var(--container-pad) * -1);
    padding: 2px var(--container-pad) 10px;
  }
  .tabs::-webkit-scrollbar { display: none; }
  .tab { flex: 0 0 auto; scroll-snap-align: start; }
}

/* --- Galeri: tek kolonda daha dolgun kutular --- */
@media (max-width: 420px) {
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .gallery__item--w2, .gallery__item--h2 { grid-column: span 1; grid-row: span 1; }
}

/* --- Belge rozetleri: 375px'te de iki kolon kalsın --- */
@media (max-width: 420px) {
  .seal-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-3); }
  .seal { padding: var(--space-5) var(--space-3) var(--space-4); }
  .seal__badge { width: 64px; height: 64px; margin-bottom: var(--space-3); }
  .seal__core { width: 48px; height: 48px; }
  .seal__core .ico { width: 22px; height: 22px; }
  .seal__code { font-size: .92rem; }
  .seal__name { font-size: .8rem; }
  .seal__desc { font-size: .74rem; }
}

/* --- Hero formu: mobilde isteğe bağlı alanlar gizlenir, form kısalır --- */
@media (max-width: 560px) {
  .quote-card .field--optional { display: none; }
  .quote-card { padding: var(--space-5); }
  .quote-card__head h2 { font-size: 1.25rem; }
}

/* --- Dokunma hedefleri: üst bar ve yasal linkler --- */
@media (max-width: 760px) {
  .topbar a { display: inline-flex; align-items: center; min-height: 32px; }
  .footer__legal a { display: inline-flex; align-items: center; min-height: 32px; }
  .check a { display: inline; }
}

/* --- Akış şeması: mobilde numara solda, metin sağda ---
   Alt öğeler açıkça konumlandırılır; aksi halde paragraflar dar ikon sütununa düşer. */
@media (max-width: 760px) {
  .flow__step {
    display: grid;
    grid-template-columns: 78px 1fr;
    column-gap: var(--space-4);
    text-align: left; align-items: start;
  }
  .flow__dot { grid-column: 1; grid-row: 1 / span 3; width: 78px; height: 78px; margin: 0; }
  .flow__dot .ico { width: 30px; height: 30px; }
  .flow__num { width: 26px; height: 26px; font-size: .74rem; }
  .flow__step h3 { grid-column: 2; grid-row: 1; }
  .flow__step p  { grid-column: 2; grid-row: 2; }
  .flow__time { grid-column: 2; grid-row: 3; justify-self: start; margin-top: 6px; }
}

/* --- Süreç adımları: mobilde numara solda --- */
@media (max-width: 760px) {
  .step {
    display: grid;
    grid-template-columns: 56px 1fr;
    column-gap: var(--space-4);
    align-items: start;
  }
  .step__num { grid-column: 1; grid-row: 1 / span 2; margin: 0; }
  .step h3 { grid-column: 2; grid-row: 1; }
  .step p  { grid-column: 2; grid-row: 2; }
}

/* --- Kaydırılabilir sekme şeridine görsel ipucu (sağ kenar solması) --- */
@media (max-width: 1024px) {
  .tabs-wrap { position: relative; }
  .tabs-wrap::after {
    content: ""; position: absolute; z-index: 2;
    top: 0; bottom: 10px; right: calc(var(--container-pad) * -1);
    width: 40px; pointer-events: none;
    background: linear-gradient(90deg, transparent, var(--bg-soft));
    opacity: 1; transition: opacity var(--dur) var(--ease);
  }
  .tabs-wrap.is-end::after { opacity: 0; }
}

/* --- Mobilde satır sonu ve uzun rozet metni --- */
@media (max-width: 620px) {
  .br-lg { display: none; }
  .hide-sm { display: none; }
  .hero__badge { white-space: nowrap; }
}

/* --- Sektör veri kartı: mobilde görselin üstünü kapatmasın, altına insin --- */
@media (max-width: 760px) {
  .solution__stat {
    position: static;
    width: 100%;
    margin-top: var(--space-3);
    box-shadow: var(--shadow-sm);
  }
  .solution__media .media { aspect-ratio: 16 / 10; }
}

/* --- Güven şeridi: dar ekranda tek kolon (iki kolonda içerik sığmıyor) --- */
@media (max-width: 620px) {
  .trustbar__inner { grid-template-columns: 1fr; gap: var(--space-4); }
}

/* --- Izgara öğeleri içeriklerinden şişmesin (geniş tablo sütunu taşırıyordu) --- */
.article-layout > * { min-width: 0; }
.prose { min-width: 0; }
.prose .table-scroll {
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--r-md);
}
.prose .table-scroll table { min-width: 480px; }
@media (max-width: 760px) {
  .prose .table-scroll { margin-inline: calc(var(--container-pad) * -1); padding-inline: var(--container-pad); }
}

/* --- Footer iletişim linkleri: mobilde rahat dokunma hedefi --- */
@media (max-width: 760px) {
  .footer__contact a { display: inline-flex; align-items: center; min-height: 32px; }
}
@media (max-width: 760px) {
  .contact-item a { display: inline-flex; align-items: center; min-height: 32px; }
}

/* ==========================================================================
   37. ALT SAYFA YAZI AKIŞI
   İçerik artık .prose > section > (h2/p/ul) yapısında; boşluklar buna göre.
   ========================================================================== */
.prose > section + section { margin-top: var(--space-7); }
.prose section > * + * { margin-top: var(--space-5); }
.prose section > h2 { margin-top: 0; }
.prose section > h3 + ul,
.prose section > h3 + p { margin-top: var(--space-3); }
.prose section > p + h3 { margin-top: var(--space-6); }
.prose .faq__panel p { margin-top: 0; }
.prose .callout p { margin-top: 4px; }
.prose .grid .card p { margin-top: 0; }
.prose .grid .card h3 { margin-top: 0; }

/* ==========================================================================
   38. WEB TASARIM KREDİSİ (Vevona)
   Marka kılavuzu: koyu zeminde lockup-dark, min. 80px genişlik,
   logo yüksekliği kadar boşluk. Renk/gölge/kontur değiştirilmez.
   ========================================================================== */
.footer__credit {
  background: var(--ink-900);
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding-block: var(--space-6);   /* logo yüksekliğinden (25px) fazla boşluk */
}
.footer__credit .container {
  display: flex;
  justify-content: center;
}
.vevona {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 4px;               /* dokunma hedefi + logo çevresi boşluk */
}
.vevona__label {
  font-family: var(--font-head);
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--slate-500);
  transition: color var(--dur) var(--ease);
}
.vevona:hover .vevona__label,
.vevona:focus-visible .vevona__label { color: var(--slate-300); }
/* Logo hiçbir koşulda değiştirilmez: filtre, gölge, kontur veya renk uygulanmaz. */
.vevona__logo {
  width: 104px;
  height: auto;
  flex: none;
}
@media (max-width: 480px) {
  .footer__credit .container { flex-direction: column; align-items: center; gap: 4px; }
  .vevona { flex-direction: column; gap: 10px; }
}

/* --- İki kolonlu risk/faktör ızgarası (yalnızca geniş ekranda) --- */
.solution__risks--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 760px) {
  .solution__risks--2 { grid-template-columns: 1fr; }
}

/* --- Form gönderim sonucu --- */
.form-sonuc {
  margin-top: 16px; padding: 14px 16px; border-radius: var(--r-md);
  background: var(--success-050); border: 1px solid #bbf7d0; color: #166534;
  font-size: .9rem; line-height: 1.5;
}
.form-sonuc.is-error {
  background: var(--brand-050); border-color: var(--brand-100); color: var(--brand-800);
}

/* Ana sayfa: kart olarak gösterilmeyen diğer hizmetler */
.svc-extra {
  margin-top: var(--space-8);
  padding: var(--space-6);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--bg-soft);
}
.svc-extra__title {
  font-size: 1.05rem; margin: 0 0 var(--space-4);
  color: var(--ink-800);
}
.svc-extra__list {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: var(--space-2);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.svc-extra__list a {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px; min-height: 44px;
  border-radius: var(--r-md); background: #fff;
  border: 1px solid var(--line);
  color: var(--ink-800); text-decoration: none;
  font-weight: 600; font-size: .92rem;
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.svc-extra__list a:hover,
.svc-extra__list a:focus-visible { border-color: var(--brand); color: var(--brand-800); }
.svc-extra__list .ico { width: 20px; height: 20px; color: var(--brand); flex: none; }
.svc-extra__foot { margin-top: var(--space-5); text-align: center; }

@media (max-width: 560px) {
  .svc-extra { padding: var(--space-5) var(--space-4); }
  .svc-extra__list { grid-template-columns: 1fr; }
}
