/* ============================================================
   Ideal Consulting — Ana stil dosyası
   Palet orijinal siteden korunmuştur:
   #171927 / #212331 (koyu lacivert) · #4973b6 (mavi)
   #db264c (kırmızı) · #f2f2f0 (açık gri) · #828282 (gri)
   ============================================================ */

/* ---------- 1. Değişkenler ---------- */
:root {
  --ink-900: #101220;
  --ink-800: #171927;
  --ink-700: #212331;
  --ink-600: #2c2f42;

  --blue: #4973b6;
  --blue-400: #6b93d4;
  --blue-700: #3a5c93;

  --red: #db264c;
  --red-600: #c11f42;

  --paper: #f2f2f0;
  --white: #ffffff;
  --gray: #828282;
  --gray-300: #d7d7d5;

  --wa: #25d366;
  --wa-dark: #1da851;

  /* ---- Anlamsal renkler: AÇIK TEMA (varsayılan) ---- */
  --bg:           #ffffff;   /* sayfa zemini            */
  --bg-soft:      #f5f5f3;   /* dönüşümlü bölüm zemini  */
  --surface:      #ffffff;   /* kart zemini             */
  --surface-2:    #fbfbfa;   /* kart içi vurgusu        */
  --border:       #e6e6e3;
  --text:         #212331;
  --text-soft:    #5c6072;
  --head:         #171927;

  --header-bg:    #ffffff;
  --header-blur:  rgba(255, 255, 255, .9);
  --header-text:  #4a4f63;
  --header-strong:#171927;
  --header-chip:  rgba(23, 25, 39, .06);
  --header-line:  #e6e6e3;

  --feature-bg:   #eef2f9;   /* istatistik / vurgu bandı */
  --feature-text: #212331;
  --feature-soft: #5c6072;
  --feature-card: rgba(255, 255, 255, .8);
  --feature-line: rgba(23, 25, 39, .09);
  --feature-glow: rgba(73, 115, 182, .16);

  --footer-bg:    #171927;   /* footer her iki temada koyu */
  --footer-text:  #9aa0b4;

  --sh-sm: 0 2px 8px rgba(23, 25, 39, .06);
  --sh-md: 0 10px 30px rgba(23, 25, 39, .09);
  --sh-lg: 0 24px 60px rgba(23, 25, 39, .16);

  --font-body: 'PT Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-head: 'Roboto Condensed', 'PT Sans', -apple-system, 'Segoe UI', sans-serif;

  --wrap: 1200px;
  --gut: clamp(20px, 5vw, 48px);

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;

  --head-h: 74px;
  --ease: cubic-bezier(.22, .68, .36, 1);
}

/* ---- KOYU TEMA ----
   Site HER ZAMAN açık tema ile başlar; sistem tercihi dikkate alınmaz.
   Koyu tema yalnızca kullanıcı tema düğmesine basarsa devreye girer.
   Tonlar bilerek "gece siyahı" değil, yumuşak lacivert tutuldu.        */
:root[data-theme="dark"] {
  --bg:           #1c1f2c;
  --bg-soft:      #232637;
  --surface:      #262a3b;
  --surface-2:    #2c3143;
  --border:       rgba(255, 255, 255, .12);
  --text:         #d4d7e2;
  --text-soft:    #a7abbc;
  --head:         #ffffff;

  --header-bg:    #1f2231;
  --header-blur:  rgba(31, 34, 49, .95);
  --header-text:  #c8ccda;
  --header-strong:#ffffff;
  --header-chip:  rgba(255, 255, 255, .08);
  --header-line:  rgba(255, 255, 255, .09);

  --feature-bg:   #232637;
  --feature-text: #ffffff;
  --feature-soft: #adb1c2;
  --feature-card: rgba(255, 255, 255, .06);
  --feature-line: rgba(255, 255, 255, .10);
  --feature-glow: rgba(73, 115, 182, .26);

  --footer-bg:    #191c28;
  --footer-text:  #a7abbc;

  --sh-sm: 0 2px 8px rgba(0, 0, 0, .25);
  --sh-md: 0 10px 30px rgba(0, 0, 0, .32);
  --sh-lg: 0 24px 60px rgba(0, 0, 0, .45);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  transition: background-color .3s var(--ease), color .3s var(--ease);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
  color: var(--head);
}

:focus-visible { outline: 3px solid var(--blue-400); outline-offset: 3px; border-radius: 4px; }

/* Çeviri yüklenene kadar içeriği gizle (yanıp sönmeyi önler) */
body:not(.i18n-ready) .page { opacity: 0; }
.page { opacity: 1; transition: opacity .35s ease; }

/* ---------- 3. Yardımcılar ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.kicker {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.kicker::before {
  content: ''; display: inline-block; vertical-align: middle;
  width: 26px; height: 2px; background: var(--red);
  margin-right: 10px; margin-bottom: 3px;
}

.section { padding: clamp(52px, 6.5vw, 84px) 0; }
.section--tight { padding: clamp(38px, 4.5vw, 60px) 0; }
.section--paper { background: var(--bg-soft); }
.section--dark { background: var(--feature-bg); color: var(--feature-soft); }
.section--dark h2, .section--dark h3 { color: var(--feature-text); }

.section-head { max-width: 720px; margin-bottom: clamp(30px, 3.6vw, 46px); }
.section-head.is-center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(30px, 4.2vw, 46px); text-transform: uppercase; }
.section-head h2 span { color: var(--blue); }
.section--dark .section-head h2 span { color: var(--blue-400); }
.section-head .lead { margin: 16px 0 0; font-size: clamp(17px, 1.6vw, 19px); color: var(--text-soft); }
.section--dark .section-head .lead { color: var(--feature-soft); }

/* ---------- 4. Butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  font-family: var(--font-head);
  font-size: 15px; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase;
  border-radius: var(--r-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; flex: none; }
.btn:hover { transform: translateY(-2px); }

.btn--wa { background: var(--wa); color: #08301a; box-shadow: 0 6px 18px rgba(37, 211, 102, .3); }
.btn--wa:hover { background: #2bea74; box-shadow: 0 10px 26px rgba(37, 211, 102, .42); }

.btn--red { background: var(--red); color: var(--white); box-shadow: 0 6px 18px rgba(219, 38, 76, .28); }
.btn--red:hover { background: var(--red-600); box-shadow: 0 10px 26px rgba(219, 38, 76, .4); }

.btn--blue { background: var(--blue); color: var(--white); box-shadow: 0 6px 18px rgba(73, 115, 182, .3); }
.btn--blue:hover { background: var(--blue-700); }

.btn--ghost { border: 2px solid rgba(255, 255, 255, .38); color: var(--white); }
.btn--ghost:hover { border-color: var(--white); background: rgba(255, 255, 255, .1); }

.btn--outline { border: 2px solid var(--border); color: var(--text); }
.btn--outline:hover { border-color: var(--blue); color: var(--blue); }

/* ============================================================
   5. ÜST BAR + HEADER  (eski sitenin en zayıf yeri — yenilendi)
   ============================================================ */
.header {
  position: sticky; top: 0; z-index: 90;
  background: var(--header-bg);
  border-bottom: 1px solid var(--header-line);
  transition: box-shadow .3s var(--ease), background-color .3s var(--ease);
}
.header.is-stuck { box-shadow: var(--sh-md); background: var(--header-blur); backdrop-filter: blur(10px); }

.header__in { display: flex; align-items: center; gap: 22px; height: var(--head-h); }

.brand { display: flex; align-items: center; flex: none; }
.brand img { height: 38px; width: auto; transition: transform .3s var(--ease); }
.brand:hover img { transform: scale(1.04); }

/* Logo: açık temada koyu logo, koyu temada açık logo */
.logo--dark { display: none; }
.logo--light { display: block; }
:root[data-theme="dark"] .logo--dark { display: block; }
:root[data-theme="dark"] .logo--light { display: none; }
/* Çekmece ve footer her zaman koyu zeminde -> hep açık logo */
.drawer .logo--dark, .footer .logo--dark { display: block !important; }
.drawer .logo--light, .footer .logo--light { display: none !important; }

.nav { display: flex; align-items: center; gap: 4px; margin-left: 14px; }
.nav a {
  position: relative;
  padding: 10px 14px;
  font-family: var(--font-head);
  font-size: 15px; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
  color: var(--header-text);
  border-radius: var(--r-sm);
  transition: color .25s var(--ease);
}
.nav a::after {
  content: ''; position: absolute; left: 14px; right: 14px; bottom: 4px;
  height: 2px; background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav a:hover { color: var(--header-strong); }
.nav a:hover::after, .nav a.is-current::after { transform: scaleX(1); }
.nav a.is-current { color: var(--header-strong); }

.header__right { display: flex; align-items: center; gap: 12px; margin-left: auto; }

/* Telefon — eski üst şeridin yerine, header'ın içinde */
.header__phone {
  display: inline-flex; align-items: center; gap: 9px;
  height: 40px; padding: 0 14px 0 11px;
  border-radius: var(--r-sm);
  color: var(--header-text);
  font-size: 15px; font-weight: 700; white-space: nowrap;
  transition: background-color .22s var(--ease), color .22s var(--ease);
}
.header__phone svg { width: 18px; height: 18px; flex: none; color: var(--blue); }
.header__phone:hover { background: var(--header-chip); color: var(--header-strong); }

/* Dil seçici — sabit genişlik, dil değişince kaymaz */
.lang { position: relative; flex: none; }

.lang__btn {
  display: flex; align-items: center; gap: 7px;
  width: 92px;                 /* sabit: dil ne olursa olsun aynı */
  height: 40px; padding: 0 10px;
  background: var(--header-chip); border-radius: var(--r-sm);
  color: var(--header-text);
  transition: background-color .22s var(--ease), color .22s var(--ease);
}
.lang__btn:hover { color: var(--header-strong); }
.lang__btn > svg:first-child { width: 18px; height: 18px; flex: none; }
.lang__code {
  font-family: var(--font-head); font-size: 13.5px; font-weight: 700;
  letter-spacing: .07em; margin-right: auto;
}
.lang__chev { width: 14px; height: 14px; flex: none; transition: transform .28s var(--ease); }
.lang.is-open .lang__chev { transform: rotate(180deg); }
.lang.is-open .lang__btn { color: var(--header-strong); }

.lang__menu {
  position: absolute; top: calc(100% + 8px); right: 0; z-index: 20;
  min-width: 190px; padding: 6px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-md); box-shadow: var(--sh-lg);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s var(--ease);
}
.lang.is-open .lang__menu { opacity: 1; visibility: visible; transform: none; }

.lang__item {
  display: flex; align-items: center; gap: 12px; width: 100%;
  padding: 10px 12px; border-radius: var(--r-sm);
  color: var(--text); font-size: 15.5px; text-align: left;
  transition: background-color .18s var(--ease), color .18s var(--ease);
}
.lang__item:hover { background: var(--bg-soft); color: var(--head); }
.lang__name { flex: 1; }
.lang__tag {
  font-family: var(--font-head); font-size: 12px; font-weight: 700;
  letter-spacing: .08em; color: var(--text-soft);
  padding: 3px 8px; border-radius: 4px; background: var(--bg-soft);
}
.lang__item.is-active { background: var(--blue); color: var(--white); }
.lang__item.is-active .lang__tag { background: rgba(255, 255, 255, .22); color: var(--white); }

/* Çekmecede menü aşağı doğru ve sola hizalı açılsın */
.drawer .lang { width: 100%; }
.drawer .lang__btn { width: 100%; }
.drawer .lang__menu { right: auto; left: 0; width: 100%; }

/* Tema düğmesi */
.theme-btn {
  width: 40px; height: 40px; display: grid; place-items: center;
  border-radius: var(--r-sm); background: var(--header-chip);
  color: var(--header-text);
  transition: background-color .22s var(--ease), color .22s var(--ease), transform .3s var(--ease);
}
.theme-btn:hover { color: var(--header-strong); transform: rotate(-18deg); }
.theme-btn svg { width: 20px; height: 20px; }
.theme-btn .icon-moon { display: none; }
.theme-btn .icon-sun { display: block; }
:root[data-theme="dark"] .theme-btn .icon-moon { display: block; }
:root[data-theme="dark"] .theme-btn .icon-sun { display: none; }
.drawer .theme-btn { width: auto; padding: 0 16px; height: 44px; gap: 10px; font-size: 15px; }

/* Header'daki WhatsApp düğmesi her dilde sabit "WhatsApp" yazar;
   böylece genişliği hiç değişmez ve dil seçicisi yerinden oynamaz.
   Tam çeviri metni hero, CTA, çekmece ve iletişim kartlarında duruyor. */
.header .btn--wa { padding: 11px 20px; font-size: 14px; white-space: nowrap; }

/* Hamburger */
.burger { display: none; width: 44px; height: 44px; position: relative; border-radius: var(--r-sm); }
.burger span {
  position: absolute; left: 11px; width: 22px; height: 2px;
  background: var(--header-strong); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease), top .3s var(--ease);
}
.burger span:nth-child(1) { top: 15px; }
.burger span:nth-child(2) { top: 21px; }
.burger span:nth-child(3) { top: 27px; }
.burger.is-open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* Mobil çekmece */
.drawer {
  /* Çekmece her iki temada da koyu kalır: kendi token'larını sabitler */
  --header-chip: rgba(255, 255, 255, .07);
  --header-text: #c3c7d6;
  --header-strong: #ffffff;

  position: fixed; inset: 0 0 0 auto; z-index: 100;
  width: min(340px, 86vw);
  background: var(--ink-800);
  padding: 26px 26px 40px;
  transform: translateX(100%);
  transition: transform .38s var(--ease);
  overflow-y: auto;
  display: flex; flex-direction: column; gap: 26px;
}
.drawer.is-open { transform: translateX(0); }
.drawer__head { display: flex; align-items: center; justify-content: space-between; }
.drawer__close { width: 40px; height: 40px; color: #9aa0b4; display: grid; place-items: center; border-radius: var(--r-sm); }
.drawer__close:hover { color: var(--white); background: rgba(255, 255, 255, .07); }
.drawer__close svg { width: 22px; height: 22px; }
.drawer nav { display: flex; flex-direction: column; gap: 2px; }
.drawer nav a {
  padding: 14px 12px;
  font-family: var(--font-head); font-size: 18px; font-weight: 700; text-transform: uppercase;
  color: #c3c7d6; border-radius: var(--r-sm);
  border-left: 3px solid transparent;
  transition: background-color .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease);
}
.drawer nav a:hover, .drawer nav a.is-current { background: rgba(255, 255, 255, .06); color: var(--white); border-left-color: var(--red); }
.drawer .lang { align-self: flex-start; }
.drawer__contact { font-size: 15px; color: #9aa0b4; display: flex; flex-direction: column; gap: 12px; margin-top: auto; }
.drawer__contact a:hover { color: var(--white); }

.scrim {
  position: fixed; inset: 0; z-index: 95;
  background: rgba(16, 18, 32, .6);
  opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s var(--ease);
  backdrop-filter: blur(2px);
}
.scrim.is-open { opacity: 1; visibility: visible; }
body.no-scroll { overflow: hidden; }

/* ============================================================
   6. HERO — slider
   ============================================================ */
.hero { position: relative; height: clamp(520px, 82vh, 780px); overflow: hidden; background: var(--ink-800); }

.hero__slide {
  position: absolute; inset: 0;
  opacity: 0; visibility: hidden;
  transition: opacity 1s var(--ease), visibility 1s var(--ease);
}
.hero__slide.is-active { opacity: 1; visibility: visible; }

.hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.06);
  transition: transform 8s linear;
}
.hero__slide.is-active .hero__bg { transform: scale(1.16); }

.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 18, 32, .93) 0%, rgba(16, 18, 32, .72) 45%, rgba(16, 18, 32, .35) 100%),
    linear-gradient(0deg, rgba(16, 18, 32, .6) 0%, transparent 55%);
}

.hero__in { position: relative; z-index: 2; height: 100%; display: flex; align-items: center; }
.hero__body { max-width: 760px; color: var(--white); }

.hero h1 {
  font-size: clamp(34px, 6.4vw, 68px);
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: -.01em;
}
.hero h1 span { color: var(--blue-400); }
.hero__sub { margin: 20px 0 0; font-size: clamp(17px, 2vw, 22px); color: #d3d6e2; max-width: 620px; }

.hero__badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero__badge {
  display: flex; align-items: center; gap: 11px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--r-md);
  backdrop-filter: blur(8px);
  font-size: 14.5px; color: #dfe1ea; max-width: 330px;
}
.hero__badge strong { color: var(--white); }
.hero__badge svg { width: 20px; height: 20px; color: var(--blue-400); flex: none; }

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.hero__dots { position: absolute; z-index: 3; left: 50%; transform: translateX(-50%); bottom: 30px; display: flex; gap: 10px; }
.hero__dots button {
  width: 30px; height: 4px; border-radius: 4px;
  background: rgba(255, 255, 255, .3);
  transition: background-color .3s var(--ease), width .3s var(--ease);
}
.hero__dots button.is-active { background: var(--red); width: 46px; }

.hero__arrow {
  position: absolute; z-index: 3; top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px; display: grid; place-items: center;
  border-radius: 50%; color: var(--white);
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(6px);
  transition: background-color .25s var(--ease);
}
.hero__arrow:hover { background: var(--blue); border-color: var(--blue); }
.hero__arrow svg { width: 22px; height: 22px; }
.hero__arrow--prev { left: max(16px, calc((100vw - var(--wrap)) / 2 - 62px)); }
.hero__arrow--next { right: max(16px, calc((100vw - var(--wrap)) / 2 - 62px)); }

/* Sayfa başlığı (iç sayfalar) */
.pagehero {
  position: relative;
  padding: clamp(64px, 10vw, 118px) 0 clamp(56px, 8vw, 96px);
  background: var(--ink-800);
  color: var(--white);
  overflow: hidden;
}
.pagehero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(900px 460px at 12% 0%, rgba(73, 115, 182, .38), transparent 65%),
              radial-gradient(700px 400px at 88% 100%, rgba(219, 38, 76, .22), transparent 62%);
}
.pagehero__in { position: relative; z-index: 2; max-width: 780px; }
.pagehero h1 { font-size: clamp(34px, 5.6vw, 58px); text-transform: uppercase; color: var(--white); }
.pagehero .lead { margin: 18px 0 0; font-size: clamp(17px, 1.8vw, 20px); color: #c2c6d6; }
.crumbs { font-size: 14px; color: #8b90a5; margin-bottom: 18px; }
.crumbs a:hover { color: var(--white); }
.crumbs span { margin: 0 8px; opacity: .5; }

/* ============================================================
   7. İSTATİSTİKLER
   ============================================================ */
.stats { background: var(--feature-bg); position: relative; overflow: hidden; }
.stats::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(800px 420px at 50% -10%, var(--feature-glow), transparent 70%);
}
.stats__in { position: relative; z-index: 2; }
.stats .section-head { text-align: center; margin-inline: auto; }
.stats .section-head h2 { color: var(--feature-text); }
.stats .section-head h2 span { color: var(--blue); }

.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat {
  padding: 34px 24px;
  background: var(--feature-card);
  border: 1px solid var(--feature-line);
  border-radius: var(--r-lg);
  text-align: center;
  transition: transform .35s var(--ease), background-color .35s var(--ease), border-color .35s var(--ease);
}
.stat:hover { transform: translateY(-6px); border-color: rgba(73, 115, 182, .5); }
.stat img { width: 54px; margin: 0 auto 18px; }
.stat__num {
  font-family: var(--font-head); font-size: clamp(38px, 5vw, 54px); font-weight: 700;
  color: var(--feature-text); line-height: 1;
}
.stat__num em { font-style: normal; color: var(--red); }
.stat p { margin: 12px 0 0; font-size: 15px; color: var(--feature-soft); }

/* ============================================================
   8. KARTLAR (değerler / hizmet önizleme)
   ============================================================ */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }

.card {
  padding: 38px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  position: relative; overflow: hidden;
}
.card::after {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--blue), var(--red));
  transform: scaleY(0); transform-origin: top;
  transition: transform .4s var(--ease);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--sh-md); border-color: transparent; }
.card:hover::after { transform: scaleY(1); }
.card__icon {
  width: 62px; height: 62px; margin-bottom: 22px;
  display: grid; place-items: center;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(73, 115, 182, .14), rgba(73, 115, 182, .04));
}
.card__icon img { width: 34px; }
.card__icon svg { width: 30px; height: 30px; color: var(--blue); }
.card h3 { font-size: 21px; text-transform: uppercase; margin-bottom: 12px; }
.card p { margin: 0; color: var(--text-soft); font-size: 16px; }

/* ============================================================
   9. HİZMET BLOKLARI (services sayfası)
   ============================================================ */
.svc { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.svc + .svc { margin-top: clamp(56px, 8vw, 104px); }
.svc:nth-child(even) .svc__media { order: -1; }

.svc__media { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-md); }
.svc__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .7s var(--ease); }
.svc__media:hover img { transform: scale(1.05); }

/* Sıra numarası: resmin üstünde değil, başlığın üstünde tipografik bir öğe */
.svc__step { display: flex; align-items: center; gap: 18px; margin-bottom: 14px; }
.svc__num {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(40px, 5vw, 60px); line-height: .9;
  color: var(--blue); opacity: .3;
  letter-spacing: -.02em;
  transition: opacity .35s var(--ease), color .35s var(--ease);
}
/* Destekleyen tarayıcılarda içi boş, konturlu rakam */
@supports (-webkit-text-stroke: 2px red) {
  .svc__num {
    color: transparent; opacity: 1;
    -webkit-text-stroke: 2px var(--blue);
  }
}
.svc__rule {
  flex: 1; max-width: 130px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--red), transparent);
  transform-origin: left; transform: scaleX(.55);
  transition: transform .5s var(--ease);
}
.svc:hover .svc__rule { transform: scaleX(1); }

.svc h2 { font-size: clamp(26px, 3.4vw, 38px); text-transform: uppercase; }
.svc__desc { margin: 14px 0 24px; color: var(--text-soft); font-size: 17px; }
.svc__list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; }
.svc__list li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; }
.svc__list svg { width: 20px; height: 20px; color: var(--blue); flex: none; margin-top: 3px; }

/* ============================================================
   10. MİSYON / İADE BANTLARI
   ============================================================ */
.band { position: relative; overflow: hidden; text-align: center; }
.band--mission { background: var(--bg-soft); }
.band--mission blockquote {
  margin: 0 auto; max-width: 900px;
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(23px, 3.4vw, 38px); line-height: 1.3;
  color: var(--head);
}
.band--mission blockquote span { color: var(--blue); }
.band--mission .quote-mark {
  font-family: var(--font-head); font-size: 90px; line-height: .6;
  color: var(--red); opacity: .18; display: block; margin-bottom: 8px;
}

.band--refund { background: var(--feature-bg); color: var(--feature-soft); }
.band--refund::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(760px 380px at 50% 50%, rgba(219, 38, 76, .18), transparent 68%);
}
.band--refund .wrap { position: relative; z-index: 2; }
.band--refund h2 { font-size: clamp(32px, 5.2vw, 58px); color: var(--feature-text); text-transform: uppercase; }
.band--refund p { margin: 16px auto 0; max-width: 640px; font-size: clamp(17px, 1.8vw, 20px); color: var(--feature-soft); }
.band--refund p span { color: var(--red); font-weight: 700; }

/* ============================================================
   11. MÜŞTERİLER
   ============================================================ */
/* Referans logo şeridi */
.clients__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.client {
  display: grid; place-items: center;
  min-height: 130px; padding: 28px 32px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); box-shadow: var(--sh-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.client:hover { transform: translateY(-5px); box-shadow: var(--sh-md); border-color: rgba(73, 115, 182, .4); }
.client img {
  max-height: 56px; max-width: 100%; width: auto; object-fit: contain;
  filter: grayscale(1); opacity: .72;
  transition: filter .35s var(--ease), opacity .35s var(--ease);
}
.client:hover img { filter: none; opacity: 1; }
/* Koyu temada logolar beyaz zeminli olduğu için hafif bir taban veriyoruz */
:root[data-theme="dark"] .client img { background: rgba(255, 255, 255, .92); border-radius: 6px; padding: 6px 10px; }

/* ============================================================
   12. İLETİŞİM  — panel + WhatsApp yan kutusu
   ============================================================ */
.cpanel {
  display: grid; grid-template-columns: 1.55fr 1fr; gap: 0;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); box-shadow: var(--sh-md); overflow: hidden;
}

.cinfo { padding: clamp(26px, 3.4vw, 42px); display: grid; gap: 4px; }
.cinfo li {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 18px 4px;
}
.cinfo li + li { border-top: 1px solid var(--border); }
.cinfo__ico {
  flex: none; width: 46px; height: 46px; display: grid; place-items: center;
  border-radius: var(--r-md); background: rgba(73, 115, 182, .11); color: var(--blue);
  transition: background-color .28s var(--ease), color .28s var(--ease);
}
.cinfo li:hover .cinfo__ico { background: var(--blue); color: var(--white); }
.cinfo__ico svg { width: 22px; height: 22px; }
.cinfo h3 {
  font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gray); margin-bottom: 6px; font-family: var(--font-head);
}
.cinfo p { margin: 0; font-size: 17px; line-height: 1.5; }
.cinfo a { transition: color .22s var(--ease); }
.cinfo a:hover { color: var(--blue); }

/* Sosyal medya butonları */
.csocial { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.csocial a {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 16px 9px 12px; border-radius: 999px;
  font-size: 14.5px; font-weight: 700;
  color: var(--white);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), filter .25s var(--ease);
}
.csocial a:hover { transform: translateY(-2px); filter: brightness(1.07); color: var(--white); }
.csocial svg { width: 18px; height: 18px; }
.csocial--ig { background: linear-gradient(45deg, #f9ce34, #ee2a7b 45%, #6228d7); box-shadow: 0 6px 16px rgba(238, 42, 123, .3); }
.csocial--fb { background: #1877f2; box-shadow: 0 6px 16px rgba(24, 119, 242, .3); }

/* WhatsApp yan kutusu */
.cwa {
  padding: clamp(26px, 3.4vw, 42px);
  background: linear-gradient(160deg, rgba(37, 211, 102, .13), rgba(37, 211, 102, .03));
  border-left: 1px solid var(--border);
  display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
}
.cwa__ico {
  width: 56px; height: 56px; display: grid; place-items: center; margin-bottom: 14px;
  border-radius: var(--r-md); background: var(--wa); color: #fff;
  box-shadow: 0 8px 20px rgba(37, 211, 102, .35);
}
.cwa__ico svg { width: 28px; height: 28px; }
.cwa h3 { font-size: 20px; text-transform: uppercase; }
.cwa__num { margin: 6px 0 0; font-size: 21px; font-weight: 700; color: var(--head); }
.cwa__note { margin: 10px 0 20px; font-size: 15px; color: var(--text-soft); }
.cwa .btn { width: 100%; justify-content: center; }
.cwa .btn + .btn { margin-top: 10px; }
.btn--onlight { border-color: var(--border); background: var(--surface-2); color: var(--text); }

/* Harita */
.map-wrap {
  position: relative;
  margin-top: 24px; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-md); border: 1px solid var(--border);
  line-height: 0; background: var(--bg-soft);
}
.map-wrap iframe { width: 100%; height: clamp(300px, 40vh, 420px); border: 0; display: block; }
.map-link {
  position: absolute; left: 16px; top: 16px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px; border-radius: 999px;
  background: var(--surface); color: var(--head);
  font-family: var(--font-head); font-size: 14px; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase; line-height: 1;
  box-shadow: var(--sh-md);
  transition: transform .25s var(--ease), color .25s var(--ease);
}
.map-link:hover { transform: translateY(-2px); color: var(--blue); }
.map-link svg { width: 17px; height: 17px; color: var(--blue); }

/* ============================================================
   13. CTA BANDI
   ============================================================ */
/* CTA bandı her iki temada da koyu marka bloğu olarak kalır (vurgu için) */
.cta {
  position: relative; overflow: hidden;
  background: linear-gradient(125deg, var(--ink-800), var(--ink-600));
  color: #c9cbd8; text-align: center;
}
.cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(700px 380px at 20% 0%, rgba(73, 115, 182, .4), transparent 65%),
              radial-gradient(620px 340px at 82% 100%, rgba(219, 38, 76, .26), transparent 62%);
}
.cta .wrap { position: relative; z-index: 2; }
.cta h2 { font-size: clamp(30px, 4.6vw, 50px); color: var(--white); text-transform: uppercase; }
.cta p { margin: 16px auto 0; max-width: 620px; font-size: clamp(17px, 1.8vw, 20px); color: #c9cbd8; }
.cta p span { color: var(--white); font-weight: 700; border-bottom: 2px solid var(--red); }
.cta__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 32px; }
.cta__note { margin-top: 20px; font-size: 14.5px; color: #9aa0b4; }

/* ============================================================
   14. FOOTER
   ============================================================ */
.footer { background: var(--footer-bg); color: var(--footer-text); font-size: 15.5px; padding-top: clamp(52px, 7vw, 78px); }
.footer__grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1.3fr; gap: clamp(28px, 5vw, 60px);
  padding-bottom: 46px;
}
.footer__logo { height: 40px; width: auto; margin-bottom: 18px; }
.footer__tagline { margin: 0 0 20px; max-width: 340px; }
.footer h3 {
  font-size: 14px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--white); margin-bottom: 18px;
}
.footer nav { display: flex; flex-direction: column; gap: 11px; }
.footer nav a, .footer__contact a { transition: color .22s var(--ease); }
.footer nav a:hover, .footer__contact a:hover { color: var(--white); }
.footer__contact { display: flex; flex-direction: column; gap: 14px; }
.footer__contact div { display: flex; gap: 11px; align-items: flex-start; }
.footer__contact svg { width: 17px; height: 17px; color: var(--blue-400); flex: none; margin-top: 5px; }
.footer__socials { display: flex; gap: 10px; margin-top: 4px; }
.footer__socials a {
  width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  transition: background-color .25s var(--ease), transform .25s var(--ease);
}
.footer__socials a:hover { background: var(--blue); color: var(--white); transform: translateY(-3px); }
.footer__socials svg { width: 17px; height: 17px; }

.footer__bar {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 22px 0;
  display: flex; flex-wrap: wrap; gap: 6px 10px; align-items: center;
  font-size: 14px; color: #767b8f;
}
.footer__bar a { transition: color .22s var(--ease); }
.footer__bar a:hover { color: var(--white); }
.footer__bar .sep { opacity: .35; user-select: none; }

/* ============================================================
   15. YÜZEN WHATSAPP BUTONU
   ============================================================ */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 80;
  width: 58px; height: 58px; display: grid; place-items: center;
  border-radius: 50%; background: var(--wa); color: #fff;
  box-shadow: 0 10px 30px rgba(37, 211, 102, .45);
  transition: transform .3s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }
.wa-float::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid var(--wa); animation: pulse 2.6s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: .8; }
  70% { transform: scale(1.55); opacity: 0; }
  100% { opacity: 0; }
}

/* ============================================================
   16. SCROLL ANİMASYONLARI
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .09s; }
.reveal.d2 { transition-delay: .18s; }
.reveal.d3 { transition-delay: .27s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__bg, .hero__slide.is-active .hero__bg { transform: none; transition: none; }
  .wa-float::before { animation: none; }
  .btn:hover, .card:hover, .stat:hover { transform: none; }
}

/* ============================================================
   17. DUYARLI (RESPONSIVE)
   ============================================================ */
@media (max-width: 1080px) {
  .nav { display: none; }
  .burger { display: block; }
  .header .btn--wa span { display: none; }
  .header .btn--wa { padding: 11px 13px; }
  /* Telefon numarası gizlenir, dokunmatik arama için ikon kalır */
  .header__phone span { display: none; }
  .header__phone { padding: 0; width: 40px; justify-content: center; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .cards, .clients__grid { grid-template-columns: 1fr; }
  .cpanel { grid-template-columns: 1fr; }
  .cwa { border-left: 0; border-top: 1px solid #e6e6e3; }
  .cwa .btn { width: auto; }
  .svc { grid-template-columns: 1fr; }
  .svc:nth-child(even) .svc__media { order: 0; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .header .lang { display: none; }
  .hero { height: auto; min-height: 82vh; padding: 96px 0 84px; }
  .hero__in { min-height: 0; }
  .hero__arrow { display: none; }
  .hero__badge { max-width: none; width: 100%; }
  .hero__actions .btn { flex: 1 1 100%; justify-content: center; }
  .stats__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bar { flex-direction: column; align-items: flex-start; }
  .footer__bar .right { margin-left: 0; }
  .wa-float { right: 16px; bottom: 16px; width: 54px; height: 54px; }
  .cta__actions .btn { flex: 1 1 100%; justify-content: center; }
}

/* ---------- 18. Yazdırma ---------- */
@media print {
  .header, .wa-float, .hero__dots, .hero__arrow, .cta, .drawer, .scrim { display: none !important; }
  body { color: #000; }
}
