/* ==========================================================================
   Uğur Su Pompaları – Kurumsal Site
   Saf CSS, harici bağımlılık yok. Mobil öncelikli.
   ========================================================================== */

:root {
  /* Renk paleti — Grundfos mavisi esinli, güvenilir ve ferah */
  --navy: #0b2545;
  --blue-900: #0a2f5e;
  --blue-800: #0d4a8f;
  --blue-700: #0f5aab;
  --blue-600: #1268c4;
  --blue-500: #2a82e0;
  --blue-100: #e6f0fb;
  --blue-50: #f2f7fd;

  --ink: #14202e;
  --text: #33424f;
  --muted: #6a7886;
  --line: #e6eaef;
  --bg: #ffffff;
  --bg-soft: #f6f8fb;

  --white: #ffffff;
  --green: #25d366;

  --maxw: 1160px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(11, 37, 69, .05), 0 6px 18px rgba(11, 37, 69, .06);
  --shadow-md: 0 10px 30px rgba(11, 37, 69, .12);

  --font: "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Reset --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.2; font-weight: 700; }
::selection { background: var(--blue-700); color: #fff; }

/* Yardımcılar --------------------------------------------------------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.section { padding: 72px 0; }
.section--soft { background: var(--bg-soft); }
.section-head { max-width: 680px; margin: 0 auto 44px; text-align: center; }
.eyebrow {
  display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--blue-700); margin-bottom: 10px;
}
.section-head h2 { font-size: clamp(26px, 4vw, 34px); }
.section-head p { margin-top: 12px; color: var(--muted); font-size: 17px; }
.text-center { text-align: center; }

/* Butonlar ------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 15px; padding: 13px 22px; border-radius: 12px;
  border: 1px solid transparent; cursor: pointer; transition: .18s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--blue-700); color: #fff; }
.btn--primary:hover { background: var(--blue-800); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn--ghost:hover { background: rgba(255,255,255,.12); }
.btn--light { background: #fff; color: var(--blue-800); }
.btn--light:hover { background: var(--blue-50); }
.btn--wa { background: var(--green); color: #fff; }
.btn--wa:hover { filter: brightness(1.05); }
.btn--outline { background: #fff; color: var(--blue-700); border-color: var(--blue-100); }
.btn--outline:hover { background: var(--blue-50); }

/* Üst şerit ----------------------------------------------------------- */
.topbar { background: var(--navy); color: #cfe0f3; font-size: 13.5px; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; min-height: 38px; }
.topbar a { color: #fff; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.topbar a:hover { color: var(--blue-100); }
.topbar__right { display: flex; align-items: center; gap: 20px; }
.topbar__right svg { width: 15px; height: 15px; }
@media (max-width: 720px) { .topbar { display: none; } }

/* Header / Navigasyon ------------------------------------------------- */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(10px); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 68px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand__mark { width: 40px; height: 40px; border-radius: 11px; background: var(--blue-700);
  display: grid; place-items: center; flex: none; }
.brand__mark svg { width: 22px; height: 22px; color: #fff; }
/* Yüklenen logo görseli kullanıldığında marka işareti */
.brand__mark--img { background: #fff; padding: 3px; }
.brand__mark--img img { width: 100%; height: 100%; object-fit: contain; display: block; }
.brand__name { display: block; font-size: 16px; font-weight: 800; color: var(--ink); line-height: 1.15; letter-spacing: -.01em; white-space: nowrap; }
.brand__sub { display: block; font-size: 11.5px; font-weight: 600; color: var(--blue-700); line-height: 1.2; }

.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a { padding: 9px 14px; border-radius: 9px; font-size: 15px; font-weight: 500;
  color: var(--text); transition: .15s; }
.nav__links a:hover { background: var(--blue-50); color: var(--blue-800); }
.nav__links a.is-active { background: var(--blue-50); color: var(--blue-800); font-weight: 600; }
/* Menü içindeki "Hemen Ara" butonu yalnızca mobil açılır menüde görünür */
.nav__links .btn--primary { display: none; }

.nav__cta { display: flex; align-items: center; gap: 10px; }
.nav__toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line);
  background: #fff; border-radius: 11px; cursor: pointer; }
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  display: block; position: relative; width: 20px; height: 2px; background: var(--ink);
  margin: 0 auto; transition: .2s; }
.nav__toggle span::before, .nav__toggle span::after { content: ""; position: absolute; left: 0; }
.nav__toggle span::before { top: -6px; }
.nav__toggle span::after { top: 6px; }
.nav.is-open .nav__toggle span { background: transparent; }
.nav.is-open .nav__toggle span::before { top: 0; transform: rotate(45deg); }
.nav.is-open .nav__toggle span::after { top: 0; transform: rotate(-45deg); }

/* Mobil menü "Hemen Ara" butonu beyaz kalsın (link rengi ezmesin) */
.nav__links a.btn--primary,
.nav__links a.btn--primary:hover { color: #fff; background: var(--blue-700); }

@media (max-width: 940px) {
  .nav__links, .nav__cta .btn { display: none; }
  .nav__toggle { display: grid; place-items: center; }
  .nav__links {
    position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch;
    gap: 4px; background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
    padding: 14px 16px 20px; box-shadow: var(--shadow-md); display: none;
  }
  .nav.is-open .nav__links { display: flex; }
  .nav__links a {
    padding: 14px 16px; font-size: 16px; font-weight: 600; border-radius: 11px;
    color: var(--ink); display: flex; align-items: center; justify-content: space-between;
  }
  .nav__links a:not(.btn) { border: 1px solid var(--line); }
  .nav__links a.is-active { border-color: transparent; }
  .nav__links .btn--primary { display: inline-flex; justify-content: center; margin-top: 6px; padding: 15px; }
}

/* Hero ---------------------------------------------------------------- */
.hero { position: relative; color: #eaf2fb; overflow: hidden;
  background: linear-gradient(160deg, var(--blue-900) 0%, var(--navy) 55%, #071a33 100%); }
.hero::before { content: ""; position: absolute; inset: 0;
  background: radial-gradient(55% 60% at 82% 8%, rgba(42,130,224,.30), transparent 60%); }
.hero__inner { position: relative; display: grid; grid-template-columns: 1.15fr .85fr;
  gap: 48px; align-items: center; padding: 84px 0 96px; }
.hero__badge { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 600;
  color: #d7e6f8; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16);
  padding: 7px 15px; border-radius: 999px; }
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #34d27b; }
.hero h1 { color: #fff; font-size: clamp(32px, 5vw, 50px); font-weight: 800; letter-spacing: -.02em; margin: 20px 0 0; }
.hero h1 .accent { background: linear-gradient(90deg, #6db6ff, #2a82e0); -webkit-background-clip: text;
  background-clip: text; color: transparent; }
.hero p { margin-top: 18px; font-size: 18px; max-width: 560px; color: #c8d8ea; }
.hero__actions { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero__card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg); padding: 14px; }
.hero__inner { min-width: 0; }
.hero__inner > * { min-width: 0; }
.hero__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; min-width: 0; }
.hero__stat { background: rgba(255,255,255,.05); border-radius: 16px; padding: 22px 18px; text-align: center; min-width: 0; }
/* Hero arka planında fotoğraf varken: istatistik paneli net koyu cam (fotoğraf sızıp dağıtmasın) */
.hero--photo .hero__card { background: rgba(8,22,46,.55); border-color: rgba(255,255,255,.14); backdrop-filter: blur(3px); }
.hero--photo .hero__stat { background: rgba(255,255,255,.08); }
.hero--photo .hero__badge { background: rgba(8,22,46,.5); }
.hero__stat b { display: block; font-size: 32px; color: #fff; font-weight: 800; }
.hero__stat span { font-size: 13.5px; color: #aac3de; }
.hero__wave { display: block; width: 100%; height: auto; margin-bottom: -1px; }
@media (max-width: 600px) { .hero__wave { height: 38px; } }
@media (max-width: 880px) {
  .hero__inner { grid-template-columns: 1fr; gap: 34px; padding: 56px 0 70px; }
  .hero__card { max-width: 420px; }
}

/* Kartlar / Izgaralar ------------------------------------------------- */
.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 940px) { .grid--4 { grid-template-columns: repeat(2, 1fr); } .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm); transition: .2s ease; height: 100%; }
.card:hover { transform: translateY(-3px); border-color: #cfe0f5; box-shadow: var(--shadow-md); }
.card__icon { width: 52px; height: 52px; border-radius: 14px; background: var(--blue-50);
  color: var(--blue-700); display: grid; place-items: center; margin-bottom: 18px; }
.card__icon svg { width: 26px; height: 26px; }
.card:hover .card__icon { background: var(--blue-700); color: #fff; }
.card h3 { font-size: 18.5px; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 15px; }
.card__tag { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px;
  font-size: 14px; font-weight: 600; color: var(--blue-700); }
.card__tag svg { width: 16px; height: 16px; }

/* Neden biz ----------------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: 34px; } }
.checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 26px; }
@media (max-width: 520px) { .checklist { grid-template-columns: 1fr; } }
.checklist li { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; color: var(--ink); }
.checklist .tick { flex: none; width: 22px; height: 22px; border-radius: 50%; background: var(--blue-700);
  color: #fff; display: grid; place-items: center; margin-top: 2px; }
.checklist .tick svg { width: 13px; height: 13px; }
.quote-card { background: linear-gradient(150deg, var(--blue-800), var(--blue-900)); color: #fff;
  border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-md); }
.quote-card .q { font-size: 21px; font-weight: 600; margin-top: 18px; line-height: 1.45; }
.quote-card .meta { margin-top: 26px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.16);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; text-align: center; }
.quote-card .meta b { display: block; font-size: 24px; }
.quote-card .meta span { font-size: 12.5px; color: #aac3de; }

/* CTA bandı ----------------------------------------------------------- */
.cta { position: relative; overflow: hidden; border-radius: var(--radius-lg); text-align: center;
  background: linear-gradient(150deg, var(--blue-800), var(--blue-900)); color: #fff; padding: 56px 28px; }
.cta::before { content: ""; position: absolute; right: -60px; top: -60px; width: 260px; height: 260px;
  border-radius: 50%; background: rgba(42,130,224,.25); filter: blur(20px); }
.cta h2 { color: #fff; font-size: clamp(24px, 4vw, 32px); position: relative; }
.cta p { color: #c8d8ea; max-width: 540px; margin: 12px auto 0; position: relative; }
.cta__actions { position: relative; margin-top: 28px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Pill / referans kartı ---------------------------------------------- */
.ref { display: flex; align-items: center; gap: 14px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); }
.ref__icon { flex: none; width: 46px; height: 46px; border-radius: 12px; background: var(--blue-700);
  color: #fff; display: grid; place-items: center; }
.ref__icon svg { width: 22px; height: 22px; }
.ref b { color: var(--ink); font-size: 15.5px; }
.ref span { display: block; font-size: 13px; color: var(--muted); }

/* Sayfa başlığı (alt sayfalar) --------------------------------------- */
.page-hero { background: linear-gradient(160deg, var(--blue-900), var(--navy)); color: #eaf2fb; }
.page-hero__inner { padding: 56px 0 60px; }
.crumbs { font-size: 14px; color: #9fbdde; }
.crumbs a:hover { color: #fff; }
.crumbs .sep { margin: 0 8px; color: #5d80a8; }
.page-hero h1 { color: #fff; font-size: clamp(28px, 4.5vw, 40px); margin-top: 10px; }
.page-hero p { margin-top: 12px; color: #c8d8ea; max-width: 640px; font-size: 17px; }

/* Süreç adımları ------------------------------------------------------ */
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px;
  box-shadow: var(--shadow-sm); }
.step b.num { font-size: 30px; font-weight: 800; color: #c9ddf5; }
.step h3 { margin: 8px 0 6px; font-size: 17px; }
.step p { font-size: 14.5px; color: var(--muted); }

/* İletişim ------------------------------------------------------------ */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: start; }
.contact-grid > * { min-width: 0; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 30px; } }
.info-item { display: flex; gap: 15px; align-items: center; background: var(--bg-soft);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; margin-bottom: 12px; }
.info-item:hover { border-color: #cfe0f5; }
.info-item__icon { flex: none; width: 44px; height: 44px; border-radius: 11px; background: var(--blue-700);
  color: #fff; display: grid; place-items: center; }
.info-item__icon svg { width: 20px; height: 20px; }
.info-item { min-width: 0; }
.info-item > span:last-child { min-width: 0; }
.info-item .lbl { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); margin-bottom: 2px; }
.info-item .val { display: block; font-weight: 700; color: var(--ink); line-height: 1.35; overflow-wrap: anywhere; }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.field input, .field textarea {
  width: 100%; font: inherit; font-size: 15px; color: var(--ink); padding: 12px 14px;
  border: 1px solid var(--line); border-radius: 11px; background: #fff; transition: .15s; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--blue-500);
  box-shadow: 0 0 0 3px var(--blue-50); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; } }
.form-note { font-size: 12.5px; color: var(--muted); text-align: center; margin-top: 6px; }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); }
.map-embed iframe { display: block; width: 100%; height: 380px; border: 0; }

/* İletişim: harita + ofis fotoğrafı yan yana (eşit yükseklik) */
.contact-media { display: grid; grid-template-columns: 1fr; gap: 22px; align-items: stretch; }
.contact-media.has-photo { grid-template-columns: 1fr 1fr; }
.office-photo { margin: 0; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); background: var(--bg-soft); }
.office-photo img { display: block; width: 100%; height: 100%; min-height: 380px; object-fit: cover; }
/* Foto varken ikisi de aynı sabit yükseklik -> harita boşluğu/kayıklığı olmaz */
.contact-media.has-photo .map-embed,
.contact-media.has-photo .office-photo { height: 420px; }
.contact-media.has-photo .map-embed iframe,
.contact-media.has-photo .office-photo img { height: 100%; min-height: 0; }
@media (max-width: 880px) {
  .contact-media.has-photo { grid-template-columns: 1fr; }
  .contact-media.has-photo .map-embed,
  .contact-media.has-photo .office-photo { height: auto; }
  .contact-media.has-photo .map-embed iframe { height: 320px; }
  .contact-media.has-photo .office-photo img { min-height: 240px; }
}

/* Footer -------------------------------------------------------------- */
.site-footer { background: var(--navy); color: #b9cce0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; padding: 60px 0 40px; }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { color: #fff; font-size: 15px; margin-bottom: 16px; }
.footer-grid a:hover { color: #fff; }
.footer-grid li { margin-bottom: 9px; font-size: 14.5px; }
.footer-brand .brand__name, .footer-brand .brand__sub { color: #fff; }
.footer-brand p { margin-top: 14px; font-size: 14px; color: #9fb4cb; max-width: 320px; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; overflow-wrap: anywhere; min-width: 0; }
.footer-contact svg { width: 17px; height: 17px; margin-top: 2px; flex: none; color: #6f92ba; }
.socials { display: flex; gap: 10px; margin-top: 16px; }
.socials a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.08);
  display: grid; place-items: center; transition: .15s; }
.socials a:hover { background: var(--blue-700); }
.socials svg { width: 18px; height: 18px; color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 18px 0; font-size: 13px; color: #8aa3bf; }
.footer-bottom .container { display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.footer-bottom a { text-decoration: underline; text-underline-offset: 2px; transition: color .15s; }
.footer-bottom a:hover { color: #fff; }

/* Yüzen WhatsApp ------------------------------------------------------ */
.wa-float { position: fixed; right: 18px; bottom: 30px; z-index: 90; display: flex; align-items: center;
  justify-content: center; background: var(--green); color: #fff;
  padding: 14px; border-radius: 999px; box-shadow: 0 8px 24px rgba(37,211,102,.4); transition: .18s; }
.wa-float:hover { transform: translateY(-2px) scale(1.02); }
.wa-float svg { width: 24px; height: 24px; }

/* Resmi WhatsApp logosu (images/whatsapp.svg) */
.wa-ico { display: inline-block; vertical-align: middle; width: 20px; height: 20px; }
.btn .wa-ico { width: 18px; height: 18px; }
.wa-float .wa-ico { width: 26px; height: 26px; }
.info-item__icon .wa-ico { width: 22px; height: 22px; }

/* Erişilebilirlik / hareket azaltma ---------------------------------- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* Taslak önizleme göstergesi — küçük, kapatılabilir pill (yalnızca admin taslağı olan tarayıcıda) */
.usp-preview-bar { position: fixed; left: 14px; bottom: 14px; z-index: 95;
  display: inline-flex; align-items: center; gap: 8px; background: rgba(11,37,69,.92);
  color: #e7eef7; border: 1px solid rgba(255,255,255,.14); border-radius: 999px;
  padding: 7px 9px 7px 12px; font-size: 12.5px; font-weight: 600; backdrop-filter: blur(6px);
  box-shadow: var(--shadow-md); }
.usp-preview-bar__dot { width: 8px; height: 8px; border-radius: 50%; background: #f4b740; flex: none; }
.usp-preview-bar a { color: #fff; font-weight: 700; text-decoration: none; background: var(--blue-600);
  padding: 4px 10px; border-radius: 999px; }
.usp-preview-bar a:hover { background: var(--blue-500); }
.usp-preview-bar__x { flex: none; width: 22px; height: 22px; display: grid; place-items: center;
  font-size: 16px; line-height: 1; cursor: pointer; background: transparent; color: #9fb6d2;
  border: 0; border-radius: 50%; }
.usp-preview-bar__x:hover { background: rgba(255,255,255,.12); color: #fff; }
@media (max-width: 560px) { .usp-preview-bar { bottom: 84px; } }

/* ====== Görselli hizmet kartları (HİZMET ALANLARIMIZ) ====== */
.svc { display: flex; flex-direction: column; height: 100%; background: #fff; border: 1px solid var(--line);
  border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm); transition: .22s ease; }
.svc:hover { transform: translateY(-4px); border-color: #cfe0f5; box-shadow: var(--shadow-md); }
.svc__media { position: relative; height: 116px; display: grid; place-items: center;
  background: linear-gradient(140deg, var(--blue-700), var(--blue-900)); }
.svc__media::after { content: ""; position: absolute; inset: 0;
  background: radial-gradient(80% 120% at 82% 0, rgba(255,255,255,.18), transparent 60%); }
.svc__media svg { position: relative; width: 44px; height: 44px; color: #fff; }
.svc__badge { position: absolute; top: 12px; left: 12px; font-size: 11px; font-weight: 700; letter-spacing: .03em;
  text-transform: uppercase; color: #fff; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.22);
  padding: 4px 9px; border-radius: 999px; }
.svc__body { display: flex; flex-direction: column; flex: 1; padding: 22px; }
.svc__body h3 { font-size: 18px; margin-bottom: 8px; }
.svc__body p { color: var(--muted); font-size: 14.5px; flex: 1; }
.svc__link { margin-top: 16px; display: inline-flex; align-items: center; gap: 7px; font-weight: 600;
  font-size: 14px; color: var(--blue-700); }
.svc__link svg { width: 16px; height: 16px; transition: transform .2s; }
.svc:hover .svc__link svg { transform: translateX(4px); }

/* ====== Kayan logo şeridi (Referanslarımız) ====== */
.marquee { position: relative; overflow: hidden; padding: 6px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.marquee__track { display: flex; gap: 18px; width: max-content; padding: 0 9px;
  animation: scroll-x 34s linear infinite;
  will-change: transform; transform: translateZ(0); backface-visibility: hidden; }
@keyframes scroll-x { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.logo-tile { flex: none; width: 224px; height: 124px; background: #fff; border: 1px solid var(--line);
  border-radius: 14px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 7px; text-align: center; padding: 14px; }
.logo-tile__icon { width: 38px; height: 38px; border-radius: 10px; background: var(--blue-50); color: var(--blue-700);
  display: grid; place-items: center; }
.logo-tile__icon svg { width: 20px; height: 20px; }
.logo-tile b { font-size: 14px; color: var(--ink); font-weight: 700; line-height: 1.2; }
.logo-tile span { font-size: 11.5px; color: var(--muted); }
.logo-tile__logo { height: 48px; display: flex; align-items: center; justify-content: center; }
.logo-tile__logo img { max-height: 48px; max-width: 160px; object-fit: contain; }
.logo-mono { width: 48px; height: 48px; border-radius: 11px; background: var(--blue-50); color: var(--blue-700);
  display: grid; place-items: center; font-weight: 800; font-size: 18px; }
.logo-mono--icon svg { width: 22px; height: 22px; }
/* Sadece-logo kutucukları (isim yok) — logo dikeyde ortalanır ve biraz büyür */
.logo-tile--logo { justify-content: center; }
.logo-tile--logo .logo-tile__logo { height: 84px; }
.logo-tile--logo .logo-tile__logo img { max-height: 84px; max-width: min(192px, 100%); }
.logo-tile--logo .logo-mono { width: 64px; height: 64px; font-size: 24px; }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; flex-wrap: wrap; justify-content: center; } }

/* Referans logo gridi (referanslar sayfası) */
.logo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 860px) { .logo-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .logo-grid { grid-template-columns: repeat(2, 1fr); } }
.logo-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 22px 18px;
  text-align: center; box-shadow: var(--shadow-sm); transition: .2s; margin: 0; }
.logo-card:hover { transform: translateY(-3px); border-color: #cfe0f5; box-shadow: var(--shadow-md); }
/* Tüm logolar aynı ölçekte görünsün diye ortak sınır kutusu (max yükseklik + max genişlik).
   Kare/yuvarlak logolar net görünsün diye yükseklik biraz büyük; geniş logolar genişlikle sınırlı. */
.logo-card__logo { height: 96px; display: flex; align-items: center; justify-content: center; }
.logo-card__logo img { max-height: 88px; max-width: min(188px, 100%); width: auto; object-fit: contain; }
.logo-card__logo .logo-mono { width: 68px; height: 68px; font-size: 26px; border-radius: 14px; }
.logo-card figcaption { font-size: 15px; font-weight: 700; color: var(--ink); }

/* ====== Büyük ekranlar (27"+ / yüksek çözünürlük) ======
   İçerik genişler, yazılar büyür — geniş ekranlarda site küçük/dağınık kalmaz. */
@media (min-width: 1600px) {
  :root { --maxw: 1360px; }
  body { font-size: 17.5px; }
  .nav__links a { font-size: 16px; }
  .section { padding: 92px 0; }
  .hero__inner { padding: 100px 0 112px; }
  .hero h1 { font-size: 56px; }
  .hero p { font-size: 20px; }
  .hero__badge { font-size: 15px; }
  .hero__stat b { font-size: 38px; }
  .hero__stat span { font-size: 15px; }
  .section-head h2 { font-size: 40px; }
  .section-head p { font-size: 19px; }
  .card h3, .svc__body h3 { font-size: 20px; }
  .card p, .svc__body p { font-size: 16px; }
  .logo-card figcaption { font-size: 16.5px; }
  .btn { font-size: 16px; padding: 14px 24px; }
}
@media (min-width: 2000px) {
  :root { --maxw: 1500px; }
  body { font-size: 18.5px; }
  .hero__inner { padding: 120px 0 130px; }
  .hero h1 { font-size: 64px; }
  .hero p { font-size: 22px; }
  .section-head h2 { font-size: 46px; }
  .section-head p { font-size: 20px; }
  .card p, .svc__body p { font-size: 17px; }
}
