/* =====================================================
   EKOM ELEKTRONIK — RAFİNE EDİLMİŞ KURUMSAL KİMLİK
   Renk paleti: Mavi ekseninde, cyan aksanlı, uyumlu
===================================================== */

:root {
  /* ---- PRIMARY (Korunan Mavi Tonları) ---- */
  --primary: #1E40AF;
  --primary-dark: #1E3A8A;
  --primary-darker: #172554;
  --primary-light: #3B82F6;
  --primary-50: #EFF6FF;
  --primary-100: #DBEAFE;
  --primary-200: #BFDBFE;

  /* ---- ACCENT (Cyan — turuncu yerine tutarlı aksan) ---- */
  --accent: #0EA5E9;
  --accent-dark: #0284C7;
  --accent-light: #38BDF8;
  --accent-50: #F0F9FF;

  /* ---- URGENT (Acil/CTA için sınırlı kullanım) ---- */
  --urgent: #F59E0B;
  --urgent-dark: #D97706;

  /* ---- NEUTRAL (Rafine Edilmiş Slate Skalası) ---- */
  --ink-900: #0F172A;
  --ink-800: #1E293B;
  --ink-700: #334155;
  --ink-600: #475569;
  --ink-500: #64748B;
  --ink-400: #94A3B8;
  --ink-300: #CBD5E1;
  --ink-200: #E2E8F0;
  --ink-100: #F1F5F9;
  --ink-50: #F8FAFC;

  --bg: #FFFFFF;
  --bg-soft: #F8FAFC;
  --success: #10B981;

  /* ---- SHADOWS (Daha Yumuşak/Premium) ---- */
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 48px rgba(15, 23, 42, 0.12);
  --shadow-blue: 0 10px 30px rgba(30, 64, 175, 0.25);

  /* ---- RADIUS ---- */
  --radius-xs: 6px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --container: 1240px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============ ICONS (Lucide) ============ */
.service-icon svg,
.info-card-icon svg,
.contact-icon svg,
.hero-card-icon svg {
  stroke-width: 1.75;
  display: block;
}
.service-icon svg { width: 28px; height: 28px; }
.info-card-icon svg { width: 26px; height: 26px; }
.contact-icon svg { width: 22px; height: 22px; }
.hero-card-icon svg { width: 22px; height: 22px; }

/* Topbar & footer inline icons */
.topbar-info svg,
.footer-col li svg {
  width: 14px; height: 14px;
  display: inline-block;
  vertical-align: -2px;
  stroke-width: 2;
  margin-right: 4px;
  flex-shrink: 0;
}
.footer-col li svg { width: 15px; height: 15px; vertical-align: -2px; }
.footer-col li { display: flex; gap: 6px; align-items: flex-start; }

/* Float CTA buttons */
.float-btn svg {
  width: 24px; height: 24px;
  stroke-width: 2;
  color: white;
}

/* Phone CTA inline icon */
.phone-cta-icon svg { width: 18px; height: 18px; stroke-width: 2; }

/* Hide lucide icon visually until it's rendered (avoid flash of empty content) */
[data-lucide]:not(svg) {
  display: inline-block; width: 1em; height: 1em;
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink-900);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip; /* off-canvas mobil menünün sayfayı yatayda taşırmasını önler; clip = sticky'yi kırmaz */
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  font-weight: 600; font-size: 15px;
  transition: all var(--transition);
  cursor: pointer; white-space: nowrap;
  letter-spacing: -0.01em;
}
.btn-primary { background: var(--primary); color: white; box-shadow: var(--shadow-blue); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 14px 36px rgba(30, 64, 175, 0.35); }
.btn-accent { background: var(--accent); color: white; box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3); }
.btn-accent:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 14px 36px rgba(14, 165, 233, 0.4); }
.btn-urgent { background: var(--urgent); color: white; }
.btn-urgent:hover { background: var(--urgent-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: white; }
.btn-ghost { color: var(--ink-700); padding: 10px 16px; }
.btn-ghost:hover { color: var(--primary); }
.btn-white { background: white; color: var(--primary); }
.btn-white:hover { background: var(--ink-100); transform: translateY(-2px); }

/* ============ TOPBAR ============ */
.topbar {
  background: var(--primary-darker); color: rgba(255,255,255,0.85);
  font-size: 13px; padding: 10px 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.topbar-info { display: flex; gap: 24px; flex-wrap: wrap; }
.topbar-info span, .topbar-info a { display: inline-flex; align-items: center; gap: 6px; }
.topbar-info a:hover { color: var(--accent-light); }
.topbar-social a {
  margin-left: 8px; width: 26px; height: 26px;
  display: inline-grid; place-items: center;
  background: rgba(255,255,255,0.1); border-radius: 50%;
  font-size: 11px; font-weight: 700;
  transition: all var(--transition);
}
.topbar-social a:hover { background: var(--accent); color: white; }

/* ============ HEADER / NAV ============ */
.header {
  background: #ffffff;
  border-bottom: 1px solid var(--ink-200);
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.08);
  position: sticky; top: 0; z-index: 500;
  transition: background-color .3s ease, box-shadow .3s ease, border-color .3s ease;
}
/* Düzen kuralı (platinum-web'den): logo solda · menü MUTLAK ortalı · aksiyon sağda.
   Menü mutlak ortalandığı için yan blokların genişliğinden bağımsız — hep tam ortada. */
.nav { position: relative; display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 24px; }
.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-img {
  height: 52px;
  width: auto;
  max-height: 52px;
  display: block;
  object-fit: contain;
}
.logo-mark {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 12px;
  display: grid; place-items: center;
  color: white; font-weight: 800; font-size: 20px;
  box-shadow: var(--shadow-blue);
  position: relative;
  overflow: hidden;
}
.logo-mark::after {
  content: ''; position: absolute; inset: 2px;
  border: 1.5px solid rgba(255,255,255,0.25); border-radius: 10px;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text strong { font-size: 19px; font-weight: 800; color: var(--ink-900); letter-spacing: -0.02em; }
.logo-text small { font-size: 10.5px; color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; margin-top: 2px; }

/* Footer logo — koyu zeminde */
.footer .logo-img { height: 50px; }
.menu { position: absolute; left: 50%; top: 0; transform: translateX(-50%); display: flex; gap: 2px; align-items: stretch; height: 100%; }
.menu a, .menu-dropdown > span {
  height: 100%; padding: 0 13px;
  color: var(--ink-700); font-weight: 500; font-size: 14px;
  display: inline-flex; align-items: center; gap: 5px;
  border-bottom: 2px solid transparent;
  cursor: pointer; white-space: nowrap;
  transition: color .2s ease, border-color .2s ease;
}
.menu a:hover, .menu-dropdown:hover > span { color: var(--primary); border-bottom-color: var(--accent); }
.menu a.active { color: var(--primary); border-bottom-color: var(--accent); }
.menu-dropdown { position: relative; }
.menu-dropdown > span::after {
  content: '▾'; font-size: 10px; margin-left: 2px; opacity: 0.6;
}
.dropdown {
  position: absolute; top: 100%; left: 0;
  min-width: 240px;
  background: white; border: 1px solid var(--ink-100);
  border-radius: var(--radius-md); padding: 8px;
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all var(--transition);
  z-index: 10;
}
.menu-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block; padding: 10px 14px; border-radius: 6px;
  font-size: 14px; color: var(--ink-700);
}
.dropdown a:hover { background: var(--primary-50); color: var(--primary); }

.nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.phone-cta {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 14px; border-radius: var(--radius-sm);
  background: var(--primary-50);
  transition: all var(--transition);
}
.phone-cta:hover { background: var(--primary-100); }
.phone-cta-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--primary); color: white;
  display: grid; place-items: center;
}
.phone-cta-text { display: flex; flex-direction: column; line-height: 1.2; }
.phone-cta-text small { font-size: 11px; color: var(--ink-500); }
.phone-cta-text strong { font-size: 14px; color: var(--ink-900); }
.menu-toggle { display: none; }

/* Orta genişlikli masaüstünde ortalı menüye yer açmak için telefon-CTA'yı kompakt (yalnız ikon) yap */
@media (max-width: 1250px) {
  .phone-cta-text { display: none; }
  .phone-cta { padding: 8px; }
}

/* ============ HERO'LU SAYFADA ŞEFFAF NAVBAR (platinum-web seamless) ============ */
/* Yalnız masaüstünde: navbar hero'nun üstüne şeffaf akar, hero görseli arkasından geçer.
   Yazı/logo koyu (hero'nun üst kısmı açık olduğu için okunur). Scroll edilince katı beyaz olur. */
@media (min-width: 1025px) {
  .header--over-hero {
    background: transparent;
    border-bottom-color: transparent;
    box-shadow: none;
  }
  /* Hero'yu navbar yüksekliği kadar yukarı çek: görsel navbar'ın ARKASINI da doldurur.
     İçerik navbar'ın altına insin diye üst padding telafi eder. */
  .header--over-hero + .hero { margin-top: -69px; padding-top: 85px; }
  /* Şeffaf navbar'daki yazının okunması için hero'nun en üstünde çok hafif beyaz geçiş */
  .header--over-hero + .hero::before {
    content: ''; position: absolute; inset: 0 0 auto 0; height: 170px; z-index: 1; pointer-events: none;
    background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(255,255,255,0));
  }
  /* Alt sayfa banner'ı (.page-hero) da aynı: navbar arkasına çek + içerik navbar altına insin */
  .header--over-hero + .page-hero { margin-top: -69px; padding-top: 133px; min-height: 389px; }
  /* Üst-ışık şeridi (tam genişlik): şeffaf navbar'ın yan panellerdeki logo/menü okunur kalır.
     + görselin temiz orta alanı için merkez radyal scrim. */
  .header--over-hero + .page-hero::before {
    background:
      linear-gradient(180deg, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0.55) 60px, rgba(255,255,255,0) 150px),
      radial-gradient(ellipse 60% 88% at 50% 50%, rgba(255,255,255,0.80) 0%, rgba(255,255,255,0.38) 46%, rgba(255,255,255,0) 72%);
  }
  /* Scroll edilince buzlu cam (platinum-web) — hafif saydam + blur, her zemin üstünde okunur */
  .header--over-hero.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(14px) saturate(1.4);
    -webkit-backdrop-filter: blur(14px) saturate(1.4);
    border-bottom-color: var(--ink-200);
    box-shadow: 0 6px 22px rgba(15, 23, 42, 0.08);
  }
}

/* ============ HERO ============ */
.hero {
  background: white;
  padding: 8px 0 0;
  position: relative; overflow: hidden;
}
/* Tam-kanama hero görseli (kompozisyon sağda; sol alan metin için boş) */
.hero-image {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
}
.hero-image img {
  width: 100%; height: 100%;
  /* Alta hizala: kompozisyonun boş üst kısmını kırpar, paneller + etiketler görünür kalır */
  object-fit: cover; object-position: right bottom;
}
/* Metin okunabilirliği için soldan sağa beyaz geçiş */
.hero-scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(
    90deg,
    #ffffff 0%, #ffffff 30%,
    rgba(255,255,255,0.92) 42%,
    rgba(255,255,255,0.45) 55%,
    rgba(255,255,255,0) 68%
  );
}
.hero .container { position: relative; z-index: 2; display: flex; align-items: center; min-height: 460px; }
.hero-content { max-width: 560px; }
/* Hero içeriği her koşulda görünür kalsın — giriş animasyonu yalnız enhancement.
   (heroRise'ın opacity keyframe'ini !important geçersiz kılar; transform "yükselme" korunur.) */
.hero-badge, .hero h1, .hero-sub, .hero-ctas, .hero-trust { opacity: 1 !important; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; padding: 8px 16px; border-radius: 100px;
  font-size: 13px; font-weight: 600; color: var(--primary);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
  border: 1px solid var(--primary-100);
}
.hero-badge .dot { width: 8px; height: 8px; background: var(--success); border-radius: 50%; animation: pulse 2s infinite; box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2); }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
.hero h1 {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800; line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 24px; color: var(--ink-900);
}
.hero h1 span {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: 18px; color: var(--ink-600);
  margin-bottom: 36px; max-width: 540px; line-height: 1.65;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust {
  display: flex; gap: 32px; flex-wrap: wrap;
  padding-top: 32px; border-top: 1px solid var(--ink-200);
}
.trust-item { display: flex; flex-direction: column; }
.trust-item strong {
  font-size: 30px; font-weight: 800;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}
.trust-item span { font-size: 13px; color: var(--ink-500); font-weight: 500; }

.hero-visual {
  position: relative;
  background: white;
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--ink-100);
}
.hero-card-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hero-card {
  padding: 22px; border-radius: var(--radius-md);
  background: var(--bg-soft); border: 1px solid var(--ink-100);
  transition: all var(--transition);
}
.hero-card:hover { transform: translateY(-4px); border-color: var(--primary-200); }
.hero-card-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--primary-100); color: var(--primary);
  display: grid; place-items: center; margin-bottom: 14px;
  font-size: 20px;
}
.hero-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; color: var(--ink-900); }
.hero-card p { font-size: 12.5px; color: var(--ink-500); line-height: 1.5; }
.hero-card.featured {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white; border-color: var(--primary-dark);
  grid-column: span 2;
  box-shadow: var(--shadow-blue);
}
.hero-card.featured .hero-card-icon { background: rgba(255,255,255,0.18); color: white; }
.hero-card.featured h4 { color: white; }
.hero-card.featured p { color: rgba(255,255,255,0.85); }

/* ============ PAGE HEADER (Subpages) ============ */
.page-hero {
  background-color: #eaf1fa;
  background-image: url('images/hero-genel.jpg');
  background-image: image-set(url('images/hero-genel.webp') type('image/webp'), url('images/hero-genel.jpg') type('image/jpeg'));
  background-size: cover; background-position: center; background-repeat: no-repeat;
  color: var(--ink-900); padding: 64px 0;
  min-height: 320px;                 /* tüm sayfalarda tek düzen yükseklik */
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
/* Merkezde başlık okunsun diye hafif beyaz radyal scrim (görselin temiz orta alanını güçlendirir) */
.page-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 88% at 50% 50%, rgba(255,255,255,0.80) 0%, rgba(255,255,255,0.38) 46%, rgba(255,255,255,0) 72%);
}
.page-hero::after { display: none; }
@keyframes circuitFloat {
  from { transform: translateY(-8px); }
  to   { transform: translateY(8px); }
}
@media (max-width: 768px) {
  .page-hero::after { opacity: 0.4; }
}
.page-hero .container {
  position: relative; z-index: 1;
  width: 100%; text-align: center;   /* merkez-simetrik hizalama */
}
.breadcrumb {
  display: flex; gap: 8px; align-items: center; justify-content: center;
  flex-wrap: wrap;
  font-size: 13px; color: var(--ink-500);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--ink-600); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { opacity: 0.4; }
.page-hero h1 {
  font-size: clamp(32px, 4.5vw, 48px); font-weight: 800;
  letter-spacing: -0.025em; line-height: 1.1;
  margin: 0 auto 16px; max-width: 900px;
}
.page-hero p {
  font-size: 18px; color: var(--ink-600);
  max-width: 640px; margin: 0 auto; line-height: 1.6;
}

/* Hero giriş mikro-etkileşimi — motion tercihine saygılı, CLS'siz (yalnız opacity/transform) */
@keyframes heroRise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: no-preference) {
  .page-hero .breadcrumb { animation: heroRise .55s ease both; }
  .page-hero h1          { animation: heroRise .55s ease .08s both; }
  .page-hero p           { animation: heroRise .55s ease .16s both; }
  /* Anasayfa hero'su: aynı hareket dili (yapı değişmeden) */
  .hero-badge            { animation: heroRise .55s ease both; }
  .hero h1               { animation: heroRise .55s ease .08s both; }
  .hero-sub              { animation: heroRise .55s ease .16s both; }
  .hero-ctas             { animation: heroRise .55s ease .24s both; }
  .hero-trust            { animation: heroRise .55s ease .32s both; }
  .hero-visual           { animation: heroRise .60s ease .20s both; }
}
@media (prefers-reduced-motion: reduce) {
  .page-hero::after, .hero-badge .dot { animation: none; }
}

/* ============ SECTIONS ============ */
section { padding: 90px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-eyebrow {
  display: inline-block; font-size: 12.5px; font-weight: 700;
  color: var(--accent); text-transform: uppercase; letter-spacing: 0.18em;
  margin-bottom: 14px;
}
.section-head h2 {
  font-size: clamp(28px, 3.5vw, 42px); font-weight: 800;
  letter-spacing: -0.025em; line-height: 1.15;
  margin-bottom: 16px;
}
.section-head p { font-size: 17px; color: var(--ink-500); line-height: 1.65; }

/* ============ SERVICES ============ */
.services { background: var(--bg-soft); }
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.service-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--ink-100);
  transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease;
  cursor: pointer; position: relative; overflow: hidden;
}
/* Üstte açılan ince accent çizgi (modern) */
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 44px rgba(15, 23, 42, 0.11); border-color: var(--primary-100); }
.service-card:hover::before { transform: scaleX(1); }
.service-card > * { position: relative; z-index: 1; }
.service-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: linear-gradient(135deg, var(--primary-50) 0%, var(--accent-50) 100%);
  color: var(--primary);
  display: grid; place-items: center;
  margin-bottom: 22px;
  transition: transform .32s ease, background .32s ease, color .32s ease, box-shadow .32s ease;
  font-size: 26px;
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #fff; transform: translateY(-2px) rotate(-4deg);
  box-shadow: var(--shadow-blue);
}
.service-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.01em; }
.service-card p { font-size: 14px; color: var(--ink-500); margin-bottom: 18px; line-height: 1.65; }
.service-link { font-size: 14px; font-weight: 600; color: var(--primary); display: inline-flex; align-items: center; gap: 5px; }

/* ============ PROCESS ============ */
.process-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px;
  position: relative;
}
.process-grid::before {
  content: ''; position: absolute; top: 36px; left: 10%; right: 10%; height: 2px;
  background: repeating-linear-gradient(to right, var(--ink-300) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.process-num {
  width: 72px; height: 72px; border-radius: 50%;
  background: white; border: 3px solid var(--primary);
  color: var(--primary); font-weight: 800; font-size: 24px;
  display: grid; place-items: center;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
}
.process-step:hover .process-num {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: white; transform: scale(1.05);
  border-color: var(--accent);
}
.process-step h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.process-step p { font-size: 13px; color: var(--ink-500); line-height: 1.5; }

/* ============ TAGS / REPAIRED ============ */
.repaired { background: var(--primary-darker); color: white; position: relative; overflow: hidden; }
.repaired::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(14, 165, 233, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.15) 0%, transparent 50%);
}
.repaired > .container { position: relative; z-index: 1; }
.repaired .section-head h2 { color: white; }
.repaired .section-head p { color: rgba(255,255,255,0.7); }
.repaired .section-eyebrow { color: var(--accent-light); }
.tags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; max-width: 960px; margin: 0 auto; }
.tag {
  padding: 11px 20px; border-radius: 100px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 14px; font-weight: 500;
  transition: all var(--transition);
  cursor: pointer;
}
.tag:hover {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}
/* Açık zeminde kullanılan etiket varyantı */
.tag--light { background: #fff; border-color: var(--ink-200); color: var(--ink-700); }
.tag--light:hover { color: #fff; border-color: transparent; }

/* ============ REFERENCES ============ */
.refs-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 1px;
  background: var(--ink-100);
  border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid var(--ink-100);
}
.ref-cell {
  background: white;
  padding: 32px 20px;
  display: grid; place-items: center;
  color: var(--ink-500); font-weight: 700; font-size: 16px;
  transition: all var(--transition);
  min-height: 130px;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  cursor: default;
  position: relative;
}
.ref-cell::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(30, 64, 175, 0.02) 100%);
  pointer-events: none;
}
.ref-cell:hover {
  background: linear-gradient(135deg, var(--primary-50) 0%, var(--accent-50) 100%);
  color: var(--primary);
  transform: translateY(-2px);
  z-index: 1;
  box-shadow: var(--shadow-md);
}
.ref-cell.has-image { padding: 20px; min-height: 130px; }
.ref-cell.has-image:hover { background: white; }

/* ============ BRAND-MODEL CARDS ============ */
.brand-card {
  background: white;
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--ink-100);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.brand-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.brand-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-200);
}
.brand-card:hover::before { transform: scaleX(1); }
.brand-card h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--primary);
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--ink-100);
}
.brand-card .brand-cat {
  font-size: 13.5px;
  color: var(--ink-600);
  margin-bottom: 10px;
  line-height: 1.65;
}
.brand-card .brand-cat strong {
  color: var(--ink-900);
  font-weight: 700;
  display: inline-block;
  min-width: 78px;
}

/* ============ ABOUT ============ */
.about { background: var(--bg-soft); }
.about .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
/* Fotoğrafsız modern istatistik paneli (About görselinin yerine) */
.about-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  background: linear-gradient(150deg, var(--primary-darker) 0%, var(--primary) 55%, var(--accent-dark) 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.about-stats::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 85% 12%, rgba(14,165,233,0.35) 0%, transparent 48%),
    radial-gradient(circle at 8% 92%, rgba(255,255,255,0.10) 0%, transparent 42%);
}
.about-stat {
  position: relative; z-index: 1;
  padding: 44px 28px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.about-stat:nth-child(2n) { border-right: none; }
.about-stat:nth-child(n+3) { border-bottom: none; }
.about-stat strong {
  display: block; font-size: clamp(32px, 4vw, 44px); font-weight: 800;
  color: #fff; letter-spacing: -0.02em; line-height: 1; margin-bottom: 8px;
}
.about-stat span { font-size: 13.5px; color: rgba(255,255,255,0.82); font-weight: 500; }
.about-content .section-head { text-align: left; margin: 0 0 24px; }
.about-content p { color: var(--ink-600); margin-bottom: 16px; line-height: 1.7; }
.about-list { display: grid; gap: 14px; margin: 28px 0; }
.about-list li { display: flex; gap: 14px; align-items: flex-start; list-style: none; }
.about-list .check {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 8px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: white; display: grid; place-items: center;
  margin-top: 2px; font-size: 14px;
  box-shadow: var(--shadow-sm);
}
.about-list strong { display: block; font-size: 15px; margin-bottom: 2px; }
.about-list span { font-size: 14px; color: var(--ink-500); }

/* ============ CTA BANNER ============ */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary) 50%, var(--accent-dark) 100%);
  color: white; text-align: center;
  padding: 70px 0;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255,255,255,0.08) 0%, transparent 50%);
}
.cta-banner > .container { position: relative; z-index: 1; }
.cta-banner h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; margin-bottom: 12px; letter-spacing: -0.025em; line-height: 1.15; }
.cta-banner p { font-size: 17px; opacity: 0.92; margin-bottom: 28px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-banner-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-banner .btn-outline { color: white; border-color: rgba(255,255,255,0.5); }
.cta-banner .btn-outline:hover { background: white; color: var(--primary); border-color: white; }

/* ============ FAQ ============ */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item {
  background: white; border: 1px solid var(--ink-100);
  border-radius: var(--radius-md); padding: 0;
  transition: all var(--transition);
}
.faq-item[open] { box-shadow: var(--shadow-md); border-color: var(--primary-light); }
.faq-item summary {
  padding: 22px 24px;
  font-weight: 600; font-size: 16px;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 26px; color: var(--primary); font-weight: 300;
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 24px 22px; color: var(--ink-500); font-size: 15px; line-height: 1.7; }

/* ============ CONTACT ============ */
.contact { background: var(--bg-soft); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info { display: grid; gap: 16px; align-content: start; }
.contact-card {
  background: white; border-radius: var(--radius-md);
  padding: 24px; border: 1px solid var(--ink-100);
  display: flex; gap: 16px; align-items: flex-start;
  transition: all var(--transition);
}
.contact-card:hover { border-color: var(--primary-200); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.contact-icon {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 12px;
  background: var(--primary-50); color: var(--primary);
  display: grid; place-items: center; font-size: 20px;
}
.contact-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.contact-card p, .contact-card a { color: var(--ink-500); font-size: 14px; line-height: 1.65; }
.contact-card a:hover { color: var(--primary); }
.contact-form {
  background: white; padding: 36px; border-radius: var(--radius-lg);
  border: 1px solid var(--ink-100); box-shadow: var(--shadow-sm);
}
.contact-form h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.015em; }
.contact-form .sub { color: var(--ink-500); margin-bottom: 24px; font-size: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; display: flex; flex-direction: column; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--ink-700); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
  padding: 12px 14px;
  border: 1.5px solid var(--ink-200); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 14px;
  background: var(--bg-soft);
  transition: all var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--primary); background: white;
  box-shadow: 0 0 0 4px var(--primary-100);
}
.form-group textarea { resize: vertical; min-height: 110px; }

/* ============ FOOTER ============ */
.footer {
  background: var(--primary-darker); color: rgba(255,255,255,0.7);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col h5 {
  color: white; font-size: 14px; font-weight: 700;
  margin-bottom: 22px; text-transform: uppercase; letter-spacing: 0.08em;
}
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col a { font-size: 14px; }
.footer-col a:hover { color: var(--accent-light); }
.footer-about p { font-size: 14px; margin: 16px 0 20px; line-height: 1.7; max-width: 360px; }
.footer-about .logo-text strong { color: white; }
.footer-about .logo-text small { color: var(--accent-light); }
.footer-bottom {
  padding: 24px 0; text-align: center;
  font-size: 13px; color: rgba(255,255,255,0.5);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}

/* ============ FLOATING CTA ============ */
.float-cta {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  display: flex; flex-direction: column; gap: 10px;
}
.float-btn {
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  color: white; font-size: 24px;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition);
}
.float-btn.whatsapp { background: #25D366; }
.float-btn.phone { background: var(--primary); }
.float-btn:hover { transform: scale(1.1); }
/* WhatsApp gerçek logosu (dolu SVG) — biraz daha belirgin */
.float-btn.whatsapp svg { width: 30px; height: 30px; fill: #fff; }

/* ============ CARDS GRID (multi-purpose) ============ */
.cards-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.info-card {
  background: #fff; padding: 26px; border-radius: var(--radius-md);
  border: 1px solid var(--ink-100);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative; overflow: hidden;
}
.info-card:hover { transform: translateY(-5px); box-shadow: 0 16px 34px rgba(15, 23, 42, 0.09); border-color: var(--primary-100); }
.info-card-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, var(--primary-50) 0%, var(--accent-50) 100%);
  color: var(--primary);
  display: grid; place-items: center; font-size: 22px;
  margin-bottom: 16px;
  transition: transform .3s ease, background .3s ease, color .3s ease, box-shadow .3s ease;
}
.info-card:hover .info-card-icon {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #fff; transform: translateY(-2px) rotate(-4deg);
  box-shadow: var(--shadow-blue);
}
.info-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.info-card p { font-size: 14px; color: var(--ink-500); line-height: 1.65; }

/* ============ GALLERY ============ */
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.gallery-item {
  aspect-ratio: 4/3; border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--primary-100) 0%, var(--accent-50) 100%);
  position: relative; overflow: hidden;
  display: grid; place-items: center;
  color: var(--primary); font-size: 48px;
  cursor: pointer;
  transition: all var(--transition);
  border: 1px solid var(--ink-100);
}
.gallery-item::after {
  content: attr(data-label); position: absolute; bottom: 12px; left: 14px;
  color: var(--ink-700); font-size: 13px; font-weight: 600;
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-md); }

/* ============ SHOP / PRODUCT GRID ============ */
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-card {
  background: white; border-radius: var(--radius-md);
  border: 1px solid var(--ink-100); overflow: hidden;
  transition: all var(--transition);
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--primary-200); }
.product-image {
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, var(--primary-50) 0%, var(--accent-50) 100%);
  display: grid; place-items: center;
  font-size: 56px; color: var(--primary);
}
.product-body { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; }
.product-cat { font-size: 11px; color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 6px; }
.product-name { font-size: 15px; font-weight: 700; margin-bottom: 10px; line-height: 1.35; }
.product-price { font-size: 18px; font-weight: 800; color: var(--primary); margin-bottom: 14px; margin-top: auto; }
.product-actions { display: flex; gap: 8px; }
.product-actions .btn { padding: 10px 14px; font-size: 13px; flex: 1; justify-content: center; }

/* ============ CART ============ */
.cart-grid { display: grid; grid-template-columns: 1.8fr 1fr; gap: 32px; align-items: start; }
.cart-list { background: white; border-radius: var(--radius-md); border: 1px solid var(--ink-100); overflow: hidden; }
.cart-item {
  display: grid; grid-template-columns: 80px 1fr auto auto auto; gap: 18px;
  padding: 18px 22px; align-items: center;
  border-bottom: 1px solid var(--ink-100);
}
.cart-item:last-child { border-bottom: none; }
.cart-img {
  width: 80px; height: 80px; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--primary-50) 0%, var(--accent-50) 100%);
  display: grid; place-items: center;
  font-size: 32px; color: var(--primary);
}
.cart-name { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.cart-meta { font-size: 12px; color: var(--ink-500); }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--ink-200); border-radius: var(--radius-sm); overflow: hidden; }
.qty button { width: 32px; height: 32px; background: var(--bg-soft); font-size: 16px; color: var(--ink-700); transition: all var(--transition); }
.qty button:hover { background: var(--primary-50); color: var(--primary); }
.qty span { width: 40px; text-align: center; font-weight: 600; font-size: 14px; }
.cart-line-price { font-weight: 700; color: var(--primary); font-size: 16px; min-width: 90px; text-align: right; }
.cart-remove { color: var(--ink-400); padding: 8px; }
.cart-remove:hover { color: #DC2626; }
.cart-summary {
  background: white; padding: 28px; border-radius: var(--radius-md);
  border: 1px solid var(--ink-100); position: sticky; top: 90px;
}
.cart-summary h3 { font-size: 18px; font-weight: 700; margin-bottom: 18px; padding-bottom: 16px; border-bottom: 1px solid var(--ink-100); }
.cart-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14px; color: var(--ink-600); }
.cart-row.total { font-size: 18px; font-weight: 800; color: var(--ink-900); padding-top: 16px; margin-top: 8px; border-top: 1px solid var(--ink-100); }

/* ============ TWO-COL CONTENT ============ */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.two-col-img {
  aspect-ratio: 5/4; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--primary-100), var(--accent-50));
  position: relative; overflow: hidden;
  display: grid; place-items: center;
  color: var(--primary); font-size: 80px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--ink-100);
}
.two-col-content h2 {
  font-size: clamp(28px, 3vw, 38px); font-weight: 800;
  letter-spacing: -0.025em; line-height: 1.15; margin-bottom: 18px;
}
.two-col-content p { color: var(--ink-600); margin-bottom: 14px; line-height: 1.7; }

/* Fotoğrafsız içerik-odaklı intro: .two-col içinde görsel yoksa tek, okunur kolon */
.two-col:not(:has(.two-col-img)) { display: block; max-width: 820px; margin: 0 auto; }
.two-col:not(:has(.two-col-img)) .section-eyebrow::after {
  content: ''; display: block; width: 46px; height: 3px; border-radius: 2px;
  margin-top: 10px; background: linear-gradient(90deg, var(--primary), var(--accent));
}
.two-col:not(:has(.two-col-img)) .two-col-content h2 { font-size: clamp(30px, 3.4vw, 42px); }
.two-col:not(:has(.two-col-img)) .two-col-content > p:first-of-type {
  font-size: 18px; color: var(--ink-700);
}
.feat-list { display: grid; gap: 12px; margin: 20px 0 28px; }
.feat-list li { display: flex; gap: 12px; align-items: flex-start; list-style: none; font-size: 15px; color: var(--ink-700); }
.feat-list li::before { content: '✓'; flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; background: var(--primary); color: white; display: grid; place-items: center; font-size: 12px; font-weight: 700; }

/* ============ MAP ============ */
.map-wrap {
  border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid var(--ink-100);
  aspect-ratio: 16/9; min-height: 360px;
  background: linear-gradient(135deg, var(--primary-50), var(--accent-50));
  display: grid; place-items: center;
  color: var(--primary); position: relative;
}
.map-wrap::after {
  content: '📍 İvedikköy, Yenimahalle / Ankara';
  position: absolute; bottom: 16px; left: 16px;
  background: white; padding: 8px 16px;
  border-radius: var(--radius-sm); box-shadow: var(--shadow-md);
  font-size: 13px; font-weight: 600; color: var(--ink-900);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .services-grid, .products-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(5, 1fr); gap: 12px; }
  .process-grid::before { display: none; }
  .refs-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .about .container, .two-col, .cart-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  /* Hero: görsel absolute konumdan çıkıp metnin altına diziliyor.
     Mobilde cover + sağa hizalı → boş sol beyaz alan kırpılır, üç panel net görünür. */
  .hero { padding: 40px 0 0; }
  .hero .container { display: block; min-height: 0; }
  .hero-scrim { display: none; }
  .hero-content { max-width: none; }
  .hero-image { position: static; display: block; margin-top: 30px; height: 300px; }
  .hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: right center; }
}
@media (max-width: 1024px) {
  /* backdrop-filter, fixed konumlu off-canvas menü için containing block
     oluşturur ve menüyü header kutusuna hapseder; mobilde kapatıyoruz. */
  .header { backdrop-filter: none; -webkit-backdrop-filter: none; }
  .menu-toggle {
    display: grid; place-items: center;
    width: 42px; height: 42px; border-radius: 8px;
    background: var(--primary-50); color: var(--primary);
    font-size: 22px;
    transition: all var(--transition);
  }
  .menu-toggle:hover { background: var(--primary-100); }
  .menu-toggle.open { background: var(--primary); color: white; }

  /* Mobile slide-in menu */
  .menu {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 320px; max-width: 85vw;
    background: white;
    flex-direction: column;
    align-items: stretch;
    padding: 80px 20px 40px;
    gap: 4px;
    box-shadow: -20px 0 40px rgba(15,23,42,0.15);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 200;
    overflow-y: auto;
  }
  .menu.open { transform: translateX(0); display: flex; }
  .menu a, .menu-dropdown > span {
    height: auto;
    padding: 14px 16px;
    font-size: 15px;
    border-radius: var(--radius-sm);
    width: 100%;
    border-bottom: 1px solid var(--ink-100);
    border-radius: 0;
    /* Mobil panel beyaz zemin: koyu yazı */
    color: var(--ink-700);
  }
  .menu a:hover, .menu-dropdown:hover > span { color: var(--primary); background: var(--primary-50); }
  .menu a.active { color: var(--primary); background: var(--primary-50); }
  .menu a:last-child { border-bottom: none; }
  .menu-dropdown {
    width: 100%;
    border-bottom: 1px solid var(--ink-100);
  }
  .menu-dropdown > span {
    width: 100%; border-bottom: none;
    background: var(--bg-soft);
    margin-bottom: 4px;
  }
  .dropdown {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    box-shadow: none;
    border: none; border-radius: 0;
    padding: 0 0 0 16px;
    background: transparent;
    min-width: auto;
  }
  .dropdown a {
    padding: 10px 14px;
    font-size: 14px;
    border-bottom: 1px dashed var(--ink-100);
  }
  .dropdown a:last-child { border-bottom: none; }

  /* Backdrop */
  .menu-backdrop {
    position: fixed; inset: 0;
    background: rgba(15, 23, 42, 0.5);
    opacity: 0; visibility: hidden;
    transition: all 0.35s;
    z-index: 150;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }
  .menu-backdrop.show { opacity: 1; visibility: visible; }
  body.menu-open { overflow: hidden; }
}
@media (max-width: 768px) {
  .topbar-info { gap: 12px; font-size: 12px; }
  .topbar-social { display: none; }
  .phone-cta-text { display: none; }
  .hero { padding: 44px 0 0; }
  /* Mobilde CTA'lar tam-genişlik dikey (düzensiz sarma yerine temiz) */
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  /* Alt sayfa banner (mobil): üstte panelleri BÜYÜK gösteren band (boş ortası çıkarılmış özel görsel),
     altında açık zeminde başlık. Band yüksekliği görsel oranına göre (59.3vw). */
  .page-hero {
    display: block; min-height: 0;
    padding: calc(59.3vw + 12px) 0 34px;
    background-image: url('images/hero-genel-mobile.webp');
    background-size: 100% auto;
    background-position: top center;
    background-color: #eaf1fa;
  }
  .page-hero::before { display: none; }
  /* Mobilde başlık sola hizalı ve biraz küçük (banner altında editoryal görünüm) */
  .page-hero .container { text-align: left; }
  .page-hero .breadcrumb { justify-content: flex-start; }
  .page-hero h1 { font-size: 25px; }
  .page-hero p { margin-left: 0; margin-right: 0; font-size: 15px; }
  .hero-trust { gap: 20px; }
  .trust-item strong { font-size: 24px; }
  section { padding: 60px 0; }
  .services-grid, .cards-3, .cards-4, .cards-2, .products-grid, .gallery-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .refs-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  /* Footer alt satırı: dikey ortalı (space-between'in düzensiz sarması yerine) */
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  .form-row { grid-template-columns: 1fr; }
  /* Form kartı mobilde daha az iç boşluk → inputlar daha geniş */
  .contact-form { padding: 22px; }
  .cart-item { grid-template-columns: 60px 1fr; gap: 12px; }
  .cart-item > *:nth-child(n+3) { grid-column: span 2; }
}
