/* ============================================================
   KIRŞEHİR OSGB — Kurumsal Tasarım Sistemi (site.css)
   Marka: Petrol yeşili + güvenlik amberi + logo kırmızısı (ölçülü)
   Parlak Bootstrap mavisi KULLANILMAZ.
   ============================================================ */

/* ---------- 1. Tasarım Token'ları ---------- */
:root {
  /* Marka - petrol/teal */
  --petrol-900: #0c1f1f;
  --petrol-800: #102b2b;
  --petrol-700: #163a3a;
  --petrol-600: #1c4d4d;
  --petrol-500: #24625f;
  --petrol-400: #2f807b;

  /* İkincil - güvenlik amberi (hi-vis) */
  --amber-600: #e0900d;
  --amber-500: #f5a623;
  --amber-400: #ffbf47;

  /* Vurgu - logo kırmızısı (ölçülü, CTA/uyarı) */
  --red-600: #c00711;
  --red-500: #e11020;

  /* Nötrler */
  --ink-900: #0b1616;
  --ink-800: #1a2b2a;
  --ink-700: #33413f;
  --ink-500: #5c6b69;
  --muted:   #6f7d7b;
  --line:    #e2e9e8;
  --line-2:  #d3dedc;
  --paper:   #f5f8f7;
  --paper-2: #eef3f2;
  --surface: #ffffff;
  --white:   #ffffff;

  /* Tipografi */
  --font-body: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-display: 'Space Grotesk', var(--font-body);

  /* Ritim */
  --container: 1240px;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Gölgeler */
  --shadow-sm: 0 2px 8px rgba(12, 31, 31, .06);
  --shadow: 0 12px 34px rgba(12, 31, 31, .10);
  --shadow-lg: 0 30px 70px rgba(12, 31, 31, .16);
  --shadow-amber: 0 16px 40px rgba(245, 166, 35, .28);
  --shadow-red: 0 16px 38px rgba(225, 16, 32, .28);

  /* Degradeler */
  --grad-petrol: linear-gradient(135deg, var(--petrol-800), var(--petrol-600));
  --grad-hero: radial-gradient(1200px 700px at 78% -10%, #26605c 0%, transparent 55%),
               radial-gradient(900px 600px at 5% 110%, #123232 0%, transparent 55%),
               linear-gradient(160deg, #0c1f1f 0%, #123030 55%, #0e2626 100%);
  --grad-amber: linear-gradient(120deg, var(--amber-500), var(--amber-400));

  --ease: cubic-bezier(.2, .7, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

/* Blazor "yeniden bağlanıyor" mesajı hiç gösterilmez (mobil sekme değişiminde sessiz toparlanma) */
#components-reconnect-modal { display: none !important; }

/* Blazor <FocusOnNavigate Selector="h1"> her gezinmede h1'i (tabindex=-1) odaklar → tarayıcı
   başlığın etrafına istenmeyen beyaz odak halkası çizer. Yalnızca PROGRAMATİK odaklanan
   (tabindex=-1) öğelerde halkayı kapat; klavye ile gezenlerin gerçek odak halkası (buton/link/input) korunur. */
[tabindex="-1"]:focus, [tabindex="-1"]:focus-visible { outline: none !important; box-shadow: none !important; }

/* ---------- 2. Temel ---------- */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-700);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--petrol-500); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--petrol-700); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--ink-900);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.02em;
  margin: 0 0 .5em;
}

::selection { background: var(--amber-400); color: var(--petrol-900); }

/* ---------- 3. Yerleşim ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }
.section { position: relative; padding: clamp(64px, 8vw, 120px) 0; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.section--paper { background: var(--paper); }
.section--paper-2 { background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%); }
.section--dark { background: var(--grad-hero); color: #cfe0de; }
.section--dark h2, .section--dark h3 { color: #fff; }

.grid { display: grid; gap: 26px; }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 992px) { .g-3, .g-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .g-2, .g-3, .g-4 { grid-template-columns: 1fr; } }

/* Bölüm başlığı */
.section-head { max-width: 760px; margin: 0 auto clamp(38px, 5vw, 62px); text-align: center; }
.section-head--left { margin-inline: 0; text-align: left; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display);
  font-size: 13px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--petrol-500);
  padding: 7px 15px; border-radius: 100px;
  background: rgba(36, 98, 95, .09);
  border: 1px solid rgba(36, 98, 95, .16);
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--amber-500); box-shadow: 0 0 0 4px rgba(245,166,35,.22); }
.section--dark .eyebrow { color: var(--amber-400); background: rgba(245,166,35,.12); border-color: rgba(245,166,35,.24); }
.section-title { font-size: clamp(28px, 4vw, 46px); }
.section-desc { color: var(--muted); font-size: clamp(16px, 1.6vw, 19px); margin-top: 14px; }
.section--dark .section-desc { color: #a9c2bf; }
.text-grad { background: linear-gradient(120deg, var(--petrol-500), var(--amber-500)); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- 4. Butonlar ---------- */
.btn {
  --btn-bg: var(--petrol-700); --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 15.5px; letter-spacing: .01em;
  padding: 15px 30px; border-radius: 100px; border: 0; cursor: pointer;
  background: var(--btn-bg); color: var(--btn-fg);
  position: relative; overflow: hidden; isolation: isolate;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), background .3s;
  text-align: center;
}
.btn i, .btn svg { transition: transform .3s var(--ease-out); }
.btn::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.28), transparent);
  transform: translateX(-120%); transition: transform .6s var(--ease-out);
}
.btn:hover { transform: translateY(-3px); color: #fff; }
.btn:hover::after { transform: translateX(120%); }
.btn:hover i.bi-arrow-right, .btn:hover .arr { transform: translateX(5px); }
.btn--primary { --btn-bg: var(--red-500); box-shadow: var(--shadow-red); }
.btn--primary:hover { --btn-bg: var(--red-600); box-shadow: 0 22px 46px rgba(225,16,32,.34); }
.btn--amber { --btn-bg: var(--amber-500); --btn-fg: var(--petrol-900); box-shadow: var(--shadow-amber); }
.btn--amber:hover { --btn-fg: var(--petrol-900); color: var(--petrol-900); }
.btn--petrol { --btn-bg: var(--petrol-700); box-shadow: 0 14px 34px rgba(22,58,58,.28); }
.btn--ghost { --btn-bg: transparent; --btn-fg: #fff; border: 1.5px solid rgba(255,255,255,.4); backdrop-filter: blur(4px); }
.btn--ghost:hover { background: rgba(255,255,255,.12); }
.btn--outline { --btn-bg: transparent; --btn-fg: var(--petrol-700); border: 1.5px solid var(--line-2); }
.btn--outline:hover { --btn-fg: var(--petrol-700); border-color: var(--petrol-500); background: rgba(36,98,95,.05); }
.btn--sm { padding: 11px 22px; font-size: 14px; }
.btn--lg { padding: 17px 38px; font-size: 16.5px; }

/* ---------- 5. Başlık / Menü ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease), border-color .35s;
  padding: 16px 0; border-bottom: 1px solid transparent;
}
body.scrolled .site-header {
  background: rgba(255, 255, 255, .97); /* fallback: buzlu-cam desteklenmezse opak (arkadaki içerik geçmesin) */
  box-shadow: 0 6px 24px rgba(12, 31, 31, .08);
  border-bottom-color: var(--line);
  padding: 9px 0;
}
@supports ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  body.scrolled .site-header {
    background: rgba(255, 255, 255, .93);
    backdrop-filter: saturate(160%) blur(18px);
    -webkit-backdrop-filter: saturate(160%) blur(18px);
  }
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 13px; flex-shrink: 0; }
.brand img { height: 52px; width: auto; transition: height .35s var(--ease); }
.scrolled .brand img { height: 44px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text b { font-family: var(--font-display); font-size: 19px; color: var(--petrol-700); letter-spacing: -.01em; }
.brand-text span { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--amber-600); font-weight: 600; }
/* Sayfa üstü (scroll edilmemiş) koyu hero için beyaz marka */
body:not(.scrolled) .site-header:not(.scrolled) .brand img { filter: brightness(0) invert(1); }
body:not(.scrolled) .site-header:not(.scrolled) .brand-text b { color: #fff; }
body:not(.scrolled) .site-header:not(.scrolled) .nav__link { color: rgba(255,255,255,.9); }
body:not(.scrolled) .site-header:not(.scrolled) .nav__link:hover { color: #fff; }
body:not(.scrolled) .site-header:not(.scrolled) .nav-toggle span { background: #fff; }

.nav { display: flex; align-items: center; gap: 6px; }
.nav__list { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav__item { position: relative; }
.nav__link {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-display); font-weight: 600; font-size: 14.5px; letter-spacing: .01em;
  color: var(--ink-700); padding: 11px 15px; border-radius: 100px;
  transition: color .25s, background .25s; white-space: nowrap;
}
.nav__link:hover, .nav__link.active { color: var(--petrol-700); background: rgba(36,98,95,.08); }
.nav__link .bi-chevron-down { font-size: 11px; transition: transform .3s; }
.nav__item:hover .bi-chevron-down { transform: rotate(180deg); }
.nav__dd {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 220px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 8px; list-style: none; margin: 0;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .28s var(--ease), transform .28s var(--ease), visibility .28s;
}
.nav__item:hover .nav__dd { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__dd a { display: flex; align-items: center; gap: 10px; padding: 11px 14px; border-radius: 10px; color: var(--ink-700); font-weight: 600; font-size: 14px; font-family: var(--font-display); }
.nav__dd a:hover { background: var(--paper); color: var(--petrol-700); }
.nav__dd a i { color: var(--amber-500); }
.header-cta { flex-shrink: 0; }
@media (max-width: 1100px) { .header-cta .btn span.hide-md { display: none; } }

/* Mobil menü toggle */
.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; background: none; border: 0; cursor: pointer; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink-800); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s; }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 992px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(360px, 86vw); max-width: 100vw;
    background: #fff; flex-direction: column; align-items: stretch; justify-content: flex-start;
    padding: 92px 22px 30px; gap: 4px; box-shadow: var(--shadow-lg);
    transform: translateX(100%); visibility: hidden;
    transition: transform .4s var(--ease-out), visibility .4s var(--ease-out); overflow-y: auto;
  }
  body.nav-open .nav { transform: translateX(0); visibility: visible; }
  /* Mobil açık menü beyaz zeminli → metin/ikon her zaman KOYU (kontrast; hero'nun beyaz-metin kuralını ezer) */
  body.nav-open .nav__link { color: var(--ink-700) !important; }
  body.nav-open .nav__link:hover, body.nav-open .nav__link.active { color: var(--petrol-700) !important; }
  body.nav-open .nav__link .bi-chevron-down { color: var(--muted) !important; }
  body.nav-open .nav-toggle span { background: var(--ink-900) !important; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 2px; width: 100%; }
  .nav__link { font-size: 16px; padding: 14px 16px; }
  .nav__dd { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 0 0 6px 14px; }
  .header-cta { display: none; }
  .nav-scrim { position: fixed; inset: 0; background: rgba(11,22,22,.5); opacity: 0; visibility: hidden; transition: opacity .4s, visibility .4s; z-index: 999; }
  body.nav-open .nav-scrim { opacity: 1; visibility: visible; }
}

/* ---------- 6. Hero (Ana sayfa) ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; color: #fff; background: var(--grad-hero); padding: 130px 0 90px; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .22; mix-blend-mode: luminosity; transform: scale(1.1); }
.hero__grid-overlay { position: absolute; inset: 0; z-index: 1; opacity: .5;
  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: 54px 54px; mask-image: radial-gradient(circle at 70% 30%, #000 0%, transparent 70%); }
.hero__blob { position: absolute; border-radius: 50%; filter: blur(70px); z-index: 1; }
.hero__blob--a { width: 460px; height: 460px; background: rgba(36,98,95,.5); top: -120px; right: -80px; }
.hero__blob--b { width: 380px; height: 380px; background: rgba(245,166,35,.22); bottom: -140px; left: -60px; }
.hero__inner { position: relative; z-index: 3; width: 100%; }
.hero__content { max-width: 760px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px; padding: 9px 18px; border-radius: 100px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); backdrop-filter: blur(6px);
  font-size: 13.5px; font-weight: 600; letter-spacing: .04em; margin-bottom: 26px; color: #dcecea;
}
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--amber-400); box-shadow: 0 0 0 4px rgba(245,166,35,.25); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{ box-shadow: 0 0 0 4px rgba(245,166,35,.25);} 50%{ box-shadow: 0 0 0 9px rgba(245,166,35,0);} }
.hero h1 { font-size: clamp(38px, 6.4vw, 82px); color: #fff; letter-spacing: -.03em; line-height: 1.02; margin-bottom: 22px; }
.hero h1 .hl { color: var(--amber-400); position: relative; white-space: nowrap; }
.hero h1 .hl::after { content: ""; position: absolute; left: 0; right: 0; bottom: .06em; height: .18em; background: rgba(245,166,35,.28); border-radius: 4px; z-index: -1; }
.hero__lead { font-size: clamp(17px, 2vw, 21px); color: #b9d0cd; max-width: 600px; margin-bottom: 36px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 15px; align-items: center; }
.hero__stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 52px; }
@media (max-width: 680px) { .hero__stats { grid-template-columns: 1fr 1fr; } }
.hero__stat {
  position: relative; overflow: hidden;
  background: linear-gradient(158deg, rgba(255,255,255,.10), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.14); border-radius: 18px;
  padding: 20px 20px 18px; backdrop-filter: blur(12px);
  transition: transform .45s var(--ease-out), border-color .45s, background .45s;
}
.hero__stat::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 2px; background: linear-gradient(90deg, transparent, var(--amber-400), transparent); opacity: .55; }
.hero__stat::after { content: ""; position: absolute; width: 130px; height: 130px; right: -55px; top: -55px; border-radius: 50%; background: radial-gradient(circle, rgba(245,166,35,.2), transparent 70%); opacity: 0; transition: opacity .45s; pointer-events: none; }
.hero__stat:hover { transform: translateY(-6px); border-color: rgba(245,166,35,.38); background: linear-gradient(158deg, rgba(255,255,255,.16), rgba(255,255,255,.05)); }
.hero__stat:hover::after { opacity: 1; }
.hero__stat__ic { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; font-size: 18px; color: var(--amber-400); background: rgba(245,166,35,.14); border: 1px solid rgba(245,166,35,.22); margin-bottom: 16px; }
.hero__stat b { display: flex; align-items: baseline; font-family: var(--font-display); font-size: clamp(30px, 3.2vw, 40px); line-height: 1; letter-spacing: -.02em; color: #fff; font-weight: 700; }
.hero__stat b .plus { color: var(--amber-400); font-size: .62em; margin-left: 3px; font-weight: 700; }
.hero__stat span { display: block; margin-top: 9px; font-size: 13.5px; color: #a9c2bf; letter-spacing: .01em; line-height: 1.4; }
.hero__scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3; color: #9fbbb8; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.hero__scroll .mouse { width: 24px; height: 38px; border: 2px solid rgba(255,255,255,.35); border-radius: 14px; position: relative; }
.hero__scroll .mouse::after { content: ""; position: absolute; top: 7px; left: 50%; transform: translateX(-50%); width: 4px; height: 7px; background: var(--amber-400); border-radius: 3px; animation: wheel 1.6s infinite; }
@keyframes wheel { 0%{opacity:1;top:7px;} 70%{opacity:0;top:18px;} 100%{opacity:0;} }
@media (max-width: 992px) { .hero__scroll { display: none; } }

/* ---------- 7. Sayfa üstü (İç sayfalar) ---------- */
.page-hero { position: relative; padding: 150px 0 72px; background: var(--grad-hero); color: #fff; overflow: hidden; }
.page-hero__bg { position: absolute; inset: 0; z-index: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .18; mix-blend-mode: luminosity; }
.page-hero::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, transparent, rgba(12,31,31,.35)); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; font-size: clamp(32px, 5vw, 56px); margin-bottom: 12px; }
.page-hero p { color: #b9d0cd; max-width: 640px; font-size: 18px; }
.breadcrumbs { margin-top: 20px; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; list-style: none; margin: 0; padding: 0; font-size: 14px; }
.breadcrumbs a { color: #9fbbb8; font-weight: 600; }
.breadcrumbs a:hover { color: var(--amber-400); }
.breadcrumbs li:not(:first-child)::before { content: "\F285"; font-family: "bootstrap-icons"; color: #5e7b78; margin-right: 10px; font-size: 12px; }
.breadcrumbs .current { color: #fff; font-weight: 600; }

/* ---------- 8. Reveal animasyonları ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
.reveal[data-d="5"] { transition-delay: .40s; }
.reveal--left { transform: translateX(-40px); }
.reveal--right { transform: translateX(40px); }
.reveal--scale { transform: scale(.92); }
.reveal--left.in, .reveal--right.in, .reveal--scale.in { transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; } }
/* JavaScript kapalıysa / gelmeden içerik görünür kalsın (SEO + erişilebilirlik) */
html:not(.js) .reveal { opacity: 1 !important; transform: none !important; }

/* ---------- 9. Kartlar ---------- */
.card-soft { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .4s; }
.card-soft:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }

/* Hizmet kartı */
.svc-card { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px 30px 30px; overflow: hidden; transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out); height: 100%; }
.svc-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--grad-amber); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease-out); }
.svc-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-card__icon { width: 64px; height: 64px; border-radius: 18px; display: grid; place-items: center; font-size: 26px; color: var(--petrol-700); background: linear-gradient(140deg, rgba(36,98,95,.13), rgba(245,166,35,.14)); margin-bottom: 22px; transition: transform .45s var(--ease-out); }
.svc-card:hover .svc-card__icon { transform: rotate(-6deg) scale(1.08); color: var(--red-500); }
.svc-card h3 { font-size: 21px; margin-bottom: 10px; }
.svc-card p { color: var(--muted); font-size: 15.5px; margin: 0 0 18px; }
.svc-card__link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 600; font-size: 14.5px; color: var(--petrol-700); }
.svc-card__link i { transition: transform .3s var(--ease-out); }
.svc-card:hover .svc-card__link i { transform: translateX(5px); }
.svc-card__link.stretched::after { content: ""; position: absolute; inset: 0; }

/* Değer kartı (küçük ikonlu) */
.value-card { display: flex; gap: 16px; padding: 22px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); transition: transform .4s var(--ease-out), box-shadow .4s; }
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.value-card i { flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; font-size: 20px; color: var(--petrol-700); background: rgba(36,98,95,.1); }
.value-card h4 { font-size: 17px; margin-bottom: 4px; }
.value-card p { margin: 0; font-size: 14.5px; color: var(--muted); }

/* Geniş hizmet kartı (görselli) */
.feature-card { display: grid; grid-template-columns: 190px 1fr; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out); height: 100%; }
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.feature-card__img { position: relative; overflow: hidden; }
.feature-card__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-out); }
.feature-card:hover .feature-card__img img { transform: scale(1.08); }
.feature-card__body { padding: 26px 26px; display: flex; flex-direction: column; justify-content: center; }
.feature-card__body h4 { font-size: 19px; margin-bottom: 8px; }
.feature-card__body p { margin: 0; font-size: 15px; color: var(--muted); }
@media (max-width: 560px) { .feature-card { grid-template-columns: 1fr; } .feature-card__img { height: 170px; } .feature-card__img img { position: static; } }

/* İkonlu liste */
.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15.5px; color: var(--ink-700); }
.check-list li i { color: var(--petrol-500); font-size: 19px; margin-top: 2px; flex-shrink: 0; }
.check-list--2 { grid-template-columns: 1fr 1fr; }
@media (max-width: 640px) { .check-list--2 { grid-template-columns: 1fr; } }

/* ---------- 10. Sayaç istatistikleri ---------- */
.stat { text-align: center; padding: 20px; }
.stat b { display: block; font-family: var(--font-display); font-size: clamp(34px, 5vw, 54px); color: var(--petrol-700); line-height: 1; letter-spacing: -.02em; }
.stat b .suf { color: var(--amber-500); }
.stat span { display: block; margin-top: 8px; font-size: 15px; color: var(--muted); font-weight: 500; }
.section--dark .stat b { color: #fff; }
.section--dark .stat span { color: #a9c2bf; }

/* ---------- 11. Marquee (referans logolar) ---------- */
.marquee { position: relative; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; gap: 56px; width: max-content; animation: marquee 40s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track img { height: 46px; width: auto; object-fit: contain; filter: grayscale(1); opacity: .6; transition: filter .3s, opacity .3s; }
.marquee__track img:hover { filter: none; opacity: 1; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- 12. Formlar ---------- */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 42px); box-shadow: var(--shadow); }
.section--dark .form-card { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.12); backdrop-filter: blur(8px); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 13.5px; font-weight: 600; font-family: var(--font-display); color: var(--ink-700); }
.section--dark .field label { color: #cfe0de; }
.field input, .field textarea, .field select {
  width: 100%; font-family: var(--font-body); font-size: 15.5px; color: var(--ink-900);
  background: var(--paper); border: 1.5px solid var(--line-2); border-radius: 12px; padding: 14px 16px;
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input::placeholder, .field textarea::placeholder { color: #9aa7a5; }
.field input:focus, .field textarea:focus, .field select:focus { outline: 0; border-color: var(--petrol-500); background: #fff; box-shadow: 0 0 0 4px rgba(36,98,95,.12); }
.section--dark .field input, .section--dark .field textarea { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.16); color: #fff; }
.section--dark .field input:focus, .section--dark .field textarea:focus { background: rgba(255,255,255,.1); border-color: var(--amber-400); box-shadow: 0 0 0 4px rgba(245,166,35,.16); }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-msg { border-radius: 12px; padding: 13px 16px; font-size: 14.5px; font-weight: 500; display: flex; align-items: center; gap: 10px; }
.form-msg--ok { background: rgba(36,98,95,.1); color: var(--petrol-700); border: 1px solid rgba(36,98,95,.2); }
.form-msg--err { background: rgba(225,16,32,.08); color: var(--red-600); border: 1px solid rgba(225,16,32,.2); }
.section--dark .form-msg--ok { background: rgba(245,166,35,.14); color: var(--amber-400); border-color: rgba(245,166,35,.3); }

/* ---------- 13. İletişim bilgi kartları ---------- */
.info-card { text-align: center; padding: 34px 26px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); transition: transform .4s var(--ease-out), box-shadow .4s; height: 100%; }
.info-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.info-card__ic { width: 60px; height: 60px; margin: 0 auto 18px; border-radius: 16px; display: grid; place-items: center; font-size: 25px; color: #fff; background: var(--grad-petrol); }
.info-card h3 { font-size: 18px; margin-bottom: 8px; }
.info-card p, .info-card a { color: var(--muted); font-size: 15px; margin: 2px 0; }
.info-card a:hover { color: var(--petrol-700); }

/* ---------- 14. Ekip / testimonial swiper ---------- */
.member { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out); height: 100%; }
.member:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.member__img { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--petrol-800); }
.member__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
.member:hover .member__img img { transform: scale(1.06); }
.member__badge { position: absolute; top: 14px; left: 14px; z-index: 2; padding: 6px 13px; border-radius: 100px; font-size: 12px; font-weight: 700; font-family: var(--font-display); background: rgba(255,255,255,.92); color: var(--petrol-700); backdrop-filter: blur(4px); }
.member__body { padding: 20px 22px 24px; }
.member__body h4 { font-size: 18px; margin-bottom: 3px; }
.member__role { color: var(--amber-600); font-size: 13.5px; font-weight: 600; font-family: var(--font-display); }
.member__body p { color: var(--muted); font-size: 14px; margin: 12px 0 0; }

/* Referans kartı */
.ref-card { display: grid; place-items: center; gap: 16px; padding: 28px 20px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); transition: transform .4s var(--ease-out), box-shadow .4s, border-color .4s; height: 100%; text-align: center; }
.ref-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.ref-card__logo { height: 90px; display: grid; place-items: center; width: 100%; }
.ref-card__logo img { max-height: 90px; width: auto; object-fit: contain; filter: grayscale(.4); transition: filter .35s, transform .35s; }
.ref-card:hover .ref-card__logo img { filter: none; transform: scale(1.05); }
.ref-card h5 { font-size: 14.5px; margin: 0; color: var(--ink-700); }

/* ---------- 15. CTA şeridi ---------- */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-xl); padding: clamp(40px, 6vw, 72px); background: var(--grad-hero); color: #fff; }
.cta-band__blob { position: absolute; width: 380px; height: 380px; border-radius: 50%; filter: blur(80px); background: rgba(245,166,35,.28); top: -140px; right: -80px; z-index: 0; }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; font-size: clamp(26px, 3.5vw, 42px); }
.cta-band p { color: #b9d0cd; max-width: 560px; }

/* ---------- 16. Footer ---------- */
.footer { background: var(--petrol-900); color: #9fbbb8; padding: 72px 0 0; position: relative; overflow: hidden; }
.footer::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: linear-gradient(90deg, var(--petrol-500), var(--amber-500), var(--red-500)); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 54px; }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 540px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__brand img { height: 54px; margin-bottom: 18px; }
.footer__brand p { font-size: 14.5px; line-height: 1.7; max-width: 320px; }
.footer h4 { color: #fff; font-size: 16px; margin-bottom: 20px; font-family: var(--font-display); }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer ul a, .footer__contact p { color: #9fbbb8; font-size: 14.5px; }
.footer ul a { display: inline-flex; align-items: center; gap: 8px; transition: color .25s, transform .25s; }
.footer ul a:hover { color: var(--amber-400); transform: translateX(4px); }
.footer__contact p { display: flex; gap: 10px; margin: 0 0 11px; align-items: flex-start; }
.footer__contact i { color: var(--amber-500); margin-top: 3px; }
.footer__contact a { color: #cfe0de; }
.footer__contact a:hover { color: var(--amber-400); }
.footer__social { display: flex; gap: 10px; margin-top: 20px; }
.footer__social a { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; background: rgba(255,255,255,.06); color: #cfe0de; font-size: 17px; transition: background .3s, transform .3s, color .3s; }
.footer__social a:hover { background: var(--amber-500); color: var(--petrol-900); transform: translateY(-3px); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; font-size: 13.5px; }
.footer__bottom a { color: #cfe0de; }
.footer__bottom a:hover { color: var(--amber-400); }

/* ---------- 17. Yüzen ögeler ---------- */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 100%; transform: scaleX(0); transform-origin: left; background: linear-gradient(90deg, var(--amber-500), var(--red-500)); z-index: 1001; }
.to-top { position: fixed; right: 22px; bottom: 22px; width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; background: var(--petrol-700); color: #fff; font-size: 20px; box-shadow: var(--shadow); z-index: 900; opacity: 0; visibility: hidden; transform: translateY(14px); transition: opacity .35s, transform .35s, background .3s; }
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--petrol-900); color: #fff; }
.wa-float { position: fixed; right: 22px; bottom: 82px; width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; background: #25d366; color: #fff; font-size: 28px; box-shadow: 0 12px 30px rgba(37,211,102,.4); z-index: 900; transition: transform .3s var(--ease-out); }
.wa-float::after { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid #25d366; animation: waRing 2.2s infinite; }
@keyframes waRing { 0%{ transform: scale(1); opacity: .7;} 100%{ transform: scale(1.7); opacity: 0;} }
.wa-float:hover { transform: scale(1.08); color: #fff; }

/* ---------- 18. Sayfa-içi araçlar (hesaplama / tablo / mevzuat) ---------- */
/* Hesaplama */
.calc-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
@media (max-width: 860px) { .calc-wrap { grid-template-columns: 1fr; } }
.calc-panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm); }
.calc-panel h3 { font-size: 20px; margin-bottom: 22px; display: flex; align-items: center; gap: 10px; }
.calc-panel h3 i { color: var(--amber-500); }
.seg { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; background: var(--paper); padding: 6px; border-radius: 14px; }
.seg button { font-family: var(--font-display); font-weight: 600; font-size: 14px; padding: 11px 8px; border: 0; border-radius: 10px; background: transparent; color: var(--ink-700); cursor: pointer; transition: background .3s, color .3s, box-shadow .3s; }
.seg button.active { background: #fff; color: var(--petrol-700); box-shadow: var(--shadow-sm); }
.calc-num { display: flex; align-items: center; gap: 12px; }
.calc-num input { flex: 1; font-size: 17px; }
.calc-result { display: grid; gap: 14px; }
.calc-result__row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; border-radius: var(--radius); background: linear-gradient(135deg, var(--petrol-800), var(--petrol-600)); color: #fff; }
.calc-result__row .lbl { font-size: 14.5px; color: #cfe0de; display: flex; align-items: center; gap: 10px; }
.calc-result__row .lbl i { color: var(--amber-400); font-size: 20px; }
.calc-result__row .val { font-family: var(--font-display); font-weight: 700; font-size: 26px; }
.calc-result__row .val small { font-size: 13px; color: #9fbbb8; font-weight: 500; }

/* Yasal metin bloğu */
.legal-prose { max-width: 900px; margin: 0 auto; }
.legal-prose h3 { font-size: 22px; margin: 34px 0 14px; padding-bottom: 12px; border-bottom: 2px solid var(--line); color: var(--petrol-700); }
.legal-prose h3:first-child { margin-top: 0; }
.legal-prose p { color: var(--ink-700); margin: 0 0 14px; font-size: 15.5px; }
.legal-prose strong { color: var(--ink-900); }

/* NACE tablo */
.tehlike-tools { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between; margin-bottom: 22px; }
table.dataTable { border-collapse: separate !important; border-spacing: 0; width: 100% !important; }
table.dataTable thead th { background: var(--petrol-700); color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 14px; padding: 15px 16px; border: 0; }
table.dataTable thead th:first-child { border-radius: 12px 0 0 0; }
table.dataTable thead th:last-child { border-radius: 0 12px 0 0; }
table.dataTable tbody td { padding: 13px 16px; font-size: 14.5px; border-bottom: 1px solid var(--line); color: var(--ink-700); }
table.dataTable tbody tr:hover td { background: var(--paper); }
.dataTables_wrapper .dataTables_filter input { border: 1.5px solid var(--line-2); border-radius: 10px; padding: 10px 14px; margin-left: 8px; font-family: var(--font-body); }
.dataTables_wrapper .dataTables_filter input:focus { outline: 0; border-color: var(--petrol-500); box-shadow: 0 0 0 4px rgba(36,98,95,.1); }
.dataTables_wrapper .dataTables_length select { border: 1.5px solid var(--line-2); border-radius: 8px; padding: 6px 8px; }
.dataTables_wrapper .dataTables_paginate .paginate_button.current { background: var(--petrol-700) !important; color: #fff !important; border-radius: 8px; border: 0 !important; }
.dataTables_wrapper .dataTables_paginate .paginate_button { border-radius: 8px !important; }
.badge-risk { display: inline-block; padding: 5px 12px; border-radius: 100px; font-size: 12.5px; font-weight: 700; font-family: var(--font-display); }
.badge-risk.az { background: rgba(36,98,95,.12); color: var(--petrol-700); }
.badge-risk.orta { background: rgba(245,166,35,.16); color: var(--amber-600); }
.badge-risk.cok { background: rgba(225,16,32,.1); color: var(--red-600); }

/* NACE mobil kart */
.nace-mcard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; margin-bottom: 12px; }
.nace-mcard .code { font-family: var(--font-display); font-weight: 700; color: var(--petrol-700); font-size: 15px; }
.nace-mcard p { margin: 8px 0 0; font-size: 14px; color: var(--ink-700); }

/* Mevzuat sekmeleri */
.mev-layout { display: grid; grid-template-columns: 260px 1fr; gap: 34px; align-items: start; }
@media (max-width: 820px) { .mev-layout { grid-template-columns: 1fr; } }
.mev-tabs { display: flex; flex-direction: column; gap: 8px; position: sticky; top: 100px; }
@media (max-width: 820px) { .mev-tabs { flex-direction: row; flex-wrap: wrap; position: static; } }
.mev-tab { display: flex; align-items: center; gap: 12px; padding: 15px 18px; border-radius: 14px; background: #fff; border: 1px solid var(--line); font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--ink-700); cursor: pointer; transition: all .3s; text-align: left; }
.mev-tab i { color: var(--amber-500); font-size: 19px; }
.mev-tab:hover { border-color: var(--petrol-400); }
.mev-tab.active { background: var(--grad-petrol); color: #fff; border-color: transparent; box-shadow: var(--shadow); }
.mev-tab.active i { color: var(--amber-400); }
.mev-panel { display: none; }
.mev-panel.active { display: block; animation: fadeUp .5s var(--ease-out); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px);} to { opacity: 1; transform: none;} }
.mev-list { display: grid; gap: 4px; }
.mev-list a { display: flex; align-items: flex-start; gap: 12px; padding: 14px 16px; border-radius: 12px; color: var(--ink-700); font-size: 15px; transition: background .25s, color .25s, transform .25s; border: 1px solid transparent; }
.mev-list a i { color: var(--petrol-500); margin-top: 3px; flex-shrink: 0; transition: transform .25s; }
.mev-list a:hover { background: var(--paper); color: var(--petrol-700); border-color: var(--line); }
.mev-list a:hover i { transform: translateX(3px); }

/* Split görsel bölüm */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.split--reverse .split__media { order: 2; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split--reverse .split__media { order: 0; } }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; }
.split__media .float-chip { position: absolute; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 16px 20px; display: flex; align-items: center; gap: 14px; }
.split__media .float-chip i { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--grad-amber); color: var(--petrol-900); font-size: 20px; }
.split__media .float-chip b { display: block; font-family: var(--font-display); font-size: 17px; color: var(--ink-900); line-height: 1; }
.split__media .float-chip span { font-size: 13px; color: var(--muted); }
.split__media .chip-br { right: -18px; bottom: 26px; }
.split__media .chip-tl { left: -18px; top: 26px; }
@media (max-width: 560px) { .split__media .float-chip { position: static; margin-top: 14px; } }

/* ---------- 19. Yardımcılar ---------- */
.map-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.map-frame iframe { display: block; width: 100%; border: 0; }
.mt-0{margin-top:0}.mb-0{margin-bottom:0}
.text-center{text-align:center}
.divider { height: 1px; background: var(--line); border: 0; margin: 0; }
.badge-pill { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 100px; font-size: 13px; font-weight: 600; font-family: var(--font-display); background: rgba(36,98,95,.09); color: var(--petrol-700); }

/* Uyarı modal */
.modal-scrim { position: fixed; inset: 0; z-index: 2000; background: rgba(11,22,22,.6); backdrop-filter: blur(4px); display: grid; place-items: center; padding: 20px; animation: fadeIn .3s; }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
.modal-box { background: #fff; border-radius: var(--radius-lg); max-width: 620px; width: 100%; max-height: 88vh; overflow-y: auto; box-shadow: var(--shadow-lg); position: relative; animation: modalIn .45s var(--ease-out); }
@keyframes modalIn { from{opacity:0; transform: translateY(24px) scale(.96);} to{opacity:1; transform:none;} }
.modal-box__head { padding: 28px 32px 20px; background: linear-gradient(135deg, var(--red-500), var(--red-600)); color: #fff; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.modal-box__head .ic { font-size: 34px; margin-bottom: 8px; }
.modal-box__head h2 { color: #fff; font-size: 21px; margin: 0; }
.modal-box__body { padding: 26px 32px 30px; }
.modal-box__body p { font-size: 15px; margin: 0 0 14px; }
.modal-box__body .hl { font-weight: 700; color: var(--red-600); }
.modal-close { position: absolute; top: 16px; right: 16px; width: 38px; height: 38px; border-radius: 50%; border: 0; background: rgba(255,255,255,.2); color: #fff; font-size: 20px; cursor: pointer; display: grid; place-items: center; transition: background .25s; }
.modal-close:hover { background: rgba(255,255,255,.35); }
