/* ============================================================
   ZBK Matbaa — Site Stilleri
   Tasarım dosyalarındaki (Header.dc.html, Footer.dc.html)
   satır içi stiller ve style-hover durumları buraya taşındı.
   ============================================================ */

:root {
  --ink: #0b0b0c;
  --ink-deep: #050506;
  --paper: #fafafa;
  --accent: #9a9a9a;
  --radius: 0px;
  --sp: 120px;
  --font-body: 'Manrope', system-ui, sans-serif;
  --font-head: 'Archivo', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--ink); color: var(--paper); }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: clamp(18px, 4vw, 56px);
  padding-right: clamp(18px, 4vw, 56px);
}

/* ============ HEADER ============ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(11, 11, 12, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.site-header .header-inner {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header .logo { display: flex; align-items: center; text-decoration: none; }
.site-header .logo img { height: 42px; width: auto; display: block; }

.nav-desktop { display: flex; align-items: center; gap: 26px; }

.nav-desktop a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  color: #a9a9ac;
  border-bottom: 1px solid transparent;
  padding-bottom: 3px;
  transition: color .2s;
}

.nav-desktop a:hover { color: #ffffff; }

.nav-desktop a.active {
  color: #ffffff;
  border-bottom-color: var(--accent);
}

.btn-header-cta {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink);
  background: var(--paper);
  padding: 11px 20px;
  text-decoration: none;
  border: 1px solid var(--paper);
  transition: background .2s, color .2s;
}

.btn-header-cta:hover { background: transparent; color: var(--paper); }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--paper);
  cursor: pointer;
  font-size: 18px;
}

/* Mobil menü */

.nav-mobile {
  overflow: hidden;
  max-height: 0;
  transition: max-height .3s ease;
  background: rgba(11, 11, 12, 0.98);
  border-top: 1px solid transparent;
}

.site-header.menu-open .nav-mobile {
  max-height: 560px;
  border-top-color: rgba(255, 255, 255, 0.10);
}

.nav-mobile-inner {
  display: flex;
  flex-direction: column;
  padding: 6px clamp(18px, 4vw, 56px) 22px;
}

.nav-mobile-inner a {
  padding: 14px 0;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  color: #cfcfd1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-mobile-inner a.active { color: #ffffff; }

.nav-mobile-inner .btn-mobile-cta {
  margin-top: 16px;
  text-align: center;
  font-weight: 700;
  color: var(--ink);
  background: var(--paper);
  padding: 14px;
  border-bottom: none;
}

@media (max-width: 960px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* ============ FOOTER ============ */

.site-footer {
  background: var(--ink-deep);
  color: var(--paper);
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: clamp(40px, 5vw, 64px);
  padding-bottom: clamp(40px, 5vw, 64px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-cta h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}

.footer-cta p { font-size: 15px; color: #9b9b9e; margin: 0; }

.footer-cta-buttons { display: flex; flex-wrap: wrap; gap: 12px; }

.btn-footer-solid {
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  background: var(--paper);
  padding: 15px 26px;
  text-decoration: none;
  border: 1px solid var(--paper);
  transition: background .2s, color .2s;
}

.btn-footer-solid:hover { background: transparent; color: var(--paper); }

.btn-footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 14px;
  color: var(--paper);
  background: transparent;
  padding: 15px 26px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.28);
  transition: border-color .2s, color .2s;
}

.btn-footer-whatsapp:hover { border-color: var(--accent); color: var(--accent); }

.dot { width: 9px; height: 9px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 40px;
  padding-top: clamp(44px, 5vw, 64px);
  padding-bottom: clamp(44px, 5vw, 64px);
}

.footer-brand { min-width: 220px; }
.footer-brand img { height: 52px; width: auto; display: block; margin-bottom: 18px; }
.footer-brand p { font-size: 14px; line-height: 1.65; color: #8d8d90; margin: 0; max-width: 280px; }

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8d8d90;
  margin: 0 0 18px;
}

.footer-col .links { display: flex; flex-direction: column; gap: 12px; }

.footer-col .links a {
  font-size: 14px;
  color: #d4d4d6;
  text-decoration: none;
  transition: color .2s;
}

.footer-col .links a:hover { color: #ffffff; }

.footer-contact { display: flex; flex-direction: column; gap: 12px; font-size: 14px; color: #d4d4d6; }

.footer-contact .contact-link {
  font-size: 14px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: color .2s;
}

.footer-contact .contact-link:hover { color: #ffffff; }

.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.10); }

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding-top: 24px;
  padding-bottom: 24px;
}

.footer-bottom span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #6b6b6d;
}

.footer-bottom a { color: var(--accent); text-decoration: none; }
.footer-bottom a:hover { color: #ffffff; }

/* ============ HERO (ana sayfa geçici bölümü) ============ */

.hero {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}

.hero .grid-pattern {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.6;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  padding-top: clamp(64px, 9vw, 120px);
  padding-bottom: clamp(56px, 7vw, 96px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #a3a3a6;
  margin-bottom: 26px;
}

.eyebrow .dot { width: 7px; height: 7px; }

.hero h1 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(40px, 6.2vw, 74px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 0 0 26px;
  text-wrap: balance;
  max-width: 900px;
}

.hero p {
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.65;
  color: #b7b7ba;
  max-width: 540px;
  margin: 0 0 38px;
}

.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; }

.btn-hero-solid {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  background: var(--paper);
  padding: 16px 28px;
  text-decoration: none;
  border: 1px solid var(--paper);
  transition: background .2s, color .2s;
}

.btn-hero-solid:hover { background: transparent; color: var(--paper); }

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  font-size: 15px;
  color: var(--paper);
  background: transparent;
  padding: 16px 28px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.28);
  transition: border-color .2s;
}

.btn-hero-outline:hover { border-color: var(--paper); }

/* Marquee şeridi */

@keyframes zbk-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee { border-top: 1px solid rgba(255, 255, 255, 0.10); overflow: hidden; white-space: nowrap; }
.marquee-track { display: inline-flex; animation: zbk-marquee 34s linear infinite; }

.marquee-group {
  display: inline-flex;
  align-items: center;
  padding: 16px 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8d8d90;
}

.marquee-group span { padding: 0 28px; }
.marquee-group .sep { padding: 0; opacity: 0.4; }

/* ============ İÇ SAYFA HERO (PageHero) ============ */

.page-hero {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}

.page-hero .grid-pattern {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.6;
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  padding-top: clamp(52px, 7vw, 92px);
  padding-bottom: clamp(48px, 6vw, 76px);
}

.page-hero .eyebrow { margin-bottom: 24px; }

.page-hero h1 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(36px, 5.4vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin: 0;
  max-width: 900px;
  text-wrap: balance;
}

.page-hero p {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.65;
  color: #b7b7ba;
  max-width: 640px;
  margin: 24px 0 0;
}

/* ============ SAYFA GÖVDESİ & TİPOGRAFİ ============ */

.page-body { padding: clamp(56px, 7vw, 100px) 0; }

.page-cover {
  margin: 0 0 clamp(36px, 4vw, 52px);
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.page-cover img { display: block; width: 100%; height: auto; }

.prose { max-width: 820px; }

.prose > :first-child { margin-top: 0; }

.prose p {
  font-size: 17px;
  line-height: 1.75;
  color: #3a3a3c;
  margin: 0 0 20px;
}

.prose h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(24px, 3vw, 30px);
  letter-spacing: -0.02em;
  margin: 40px 0 16px;
}

.prose h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
  margin: 32px 0 12px;
}

.prose ul, .prose ol {
  font-size: 17px;
  line-height: 1.75;
  color: #3a3a3c;
  margin: 0 0 20px;
  padding-left: 24px;
}

.prose li { margin-bottom: 8px; }

.prose blockquote {
  border-left: 3px solid var(--ink);
  padding: 6px 0 6px 24px;
  margin: 32px 0;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.prose a { color: var(--ink); font-weight: 600; }

.prose img {
  max-width: 100%;
  height: auto;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

/* ============ CTA BANDI ============ */

.cta-band-wrap { padding: 0 0 clamp(64px, 7vw, 100px); }

.cta-band {
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: clamp(40px, 5vw, 72px) clamp(28px, 4vw, 64px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.cta-band h2 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}

.cta-band p { font-size: 16px; line-height: 1.65; color: #5a5a5c; margin: 0; max-width: 480px; }

.cta-band-buttons { display: flex; flex-wrap: wrap; gap: 12px; }

.btn-band-solid {
  font-weight: 700;
  font-size: 15px;
  color: var(--paper);
  background: var(--ink);
  padding: 17px 30px;
  text-decoration: none;
  border: 1px solid var(--ink);
  transition: background .2s, color .2s;
}

.btn-band-solid:hover { background: transparent; color: var(--ink); }

.btn-band-outline {
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  background: transparent;
  padding: 17px 30px;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.24);
  transition: border-color .2s;
}

.btn-band-outline:hover { border-color: var(--ink); }

/* ============ ORTAK BÖLÜM BAŞLIĞI ============ */

.section-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(26px, 3.6vw, 44px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0 0 clamp(32px, 4vw, 48px);
}

/* ============ HİZMETLER LİSTESİ (/hizmetler) ============ */

.services-section { padding: clamp(64px, 7vw, 100px) 0; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1px;
  background: rgba(0, 0, 0, 0.10);
  border: 1px solid rgba(0, 0, 0, 0.10);
}

.service-card {
  background: var(--paper);
  padding: 34px 30px;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  min-height: 230px;
  transition: background .25s, color .25s;
}

.service-card:hover { background: var(--ink); color: var(--paper); }

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.service-no { font-family: var(--font-mono); font-size: 12px; color: var(--accent); }

.service-arrow {
  width: 26px;
  height: 26px;
  border: 1px solid currentColor;
  opacity: 0.4;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.service-card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  line-height: 1.15;
}

.service-card p {
  font-size: 14px;
  line-height: 1.6;
  color: inherit;
  opacity: 0.66;
  margin: 0 0 auto;
}

.service-more {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid currentColor;
  opacity: 0.72;
}

/* ============ SÜREÇ ============ */

.process-section {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(72px, 8vw, 110px) 0;
}

.process-section .eyebrow { margin-bottom: 20px; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.process-step { background: var(--ink); padding: 30px 24px; }

.process-step .step-no {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 40px;
  color: rgba(255, 255, 255, 0.14);
  letter-spacing: -0.04em;
}

.process-step h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  margin: 16px 0 8px;
}

.process-step p { font-size: 13.5px; line-height: 1.55; color: #9b9b9e; margin: 0; }

.process-step-accent { background: var(--accent); color: var(--ink); }
.process-step-accent .step-no { color: rgba(0, 0, 0, 0.22); }
.process-step-accent p { color: rgba(0, 0, 0, 0.7); }

/* ============ KOYU CTA ============ */

.dark-cta-wrap { padding: 0 0 clamp(64px, 7vw, 100px); margin-top: clamp(64px, 7vw, 100px); }

.dark-cta {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
  padding: clamp(44px, 5vw, 76px) clamp(28px, 4vw, 64px);
}

.dark-cta .grid-pattern {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: 0.5;
  pointer-events: none;
}

.dark-cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.dark-cta h2 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}

.dark-cta p { font-size: 16px; line-height: 1.65; color: #b7b7ba; margin: 0; max-width: 500px; }

.dark-cta-buttons { display: flex; flex-wrap: wrap; gap: 12px; }

/* ============ HİZMET DETAY ============ */

.detail-hero {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}

.detail-hero .grid-pattern {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.6;
  pointer-events: none;
}

.detail-hero-inner {
  position: relative;
  padding-top: clamp(40px, 5vw, 64px);
  padding-bottom: clamp(52px, 6vw, 84px);
}

.breadcrumb {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: #8d8d90;
  margin-bottom: 30px;
}

.breadcrumb a { color: #8d8d90; text-decoration: none; }
.breadcrumb a:hover { color: #ffffff; }
.breadcrumb .sep { opacity: 0.5; padding: 0 6px; }
.breadcrumb .current { color: var(--paper); }

.detail-hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(32px, 4vw, 60px);
  align-items: center;
}

.detail-hero .eyebrow { margin-bottom: 22px; }

.detail-hero h1 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin: 0 0 22px;
}

.detail-hero p {
  font-size: clamp(16px, 1.5vw, 18.5px);
  line-height: 1.65;
  color: #b7b7ba;
  margin: 0 0 32px;
  max-width: 520px;
}

.detail-hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; }

.detail-hero-media {
  position: relative;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(255, 255, 255, 0.14);
  overflow: hidden;
}

.detail-hero-media img { width: 100%; height: 100%; object-fit: cover; display: block; }

.detail-hero-media.is-placeholder {
  background-image: repeating-linear-gradient(135deg, #161618 0 11px, #101012 11px 22px);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.placeholder-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: #7a7a7d;
  background: rgba(11, 11, 12, 0.7);
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.detail-body { padding: clamp(64px, 7vw, 100px) 0; }

.detail-body-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(36px, 5vw, 64px);
  align-items: start;
}

@media (min-width: 961px) {
  .detail-body-grid { grid-template-columns: 2fr 1fr; }
}

.detail-heading {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}

.detail-subheading {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  margin: 36px 0 16px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: rgba(0, 0, 0, 0.10);
  border: 1px solid rgba(0, 0, 0, 0.10);
}

.audience-cell { background: var(--paper); padding: 18px 20px; font-size: 14.5px; color: #3a3a3c; }

.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }

.chip {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink);
  border: 1px solid rgba(0, 0, 0, 0.16);
  padding: 8px 13px;
}

.spec-list { display: flex; flex-direction: column; border-top: 1px solid rgba(0, 0, 0, 0.12); }

.spec-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.spec-label { font-weight: 600; font-size: 15px; }
.spec-value { font-size: 14px; color: #5a5a5c; text-align: right; }

.detail-aside { position: sticky; top: 98px; display: flex; flex-direction: column; gap: 16px; }

.aside-card { border: 1px solid rgba(0, 0, 0, 0.12); padding: 28px 26px; }

.aside-card h3 { font-family: var(--font-head); font-weight: 800; font-size: 19px; margin: 0 0 8px; }
.aside-card p { font-size: 14px; line-height: 1.6; color: #5a5a5c; margin: 0 0 20px; }

.aside-steps { display: flex; flex-direction: column; border-top: 1px solid rgba(0, 0, 0, 0.10); }

.aside-step {
  display: flex;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 14px;
}

.aside-step:last-child { border-bottom: none; }
.aside-step .no { font-family: var(--font-mono); font-size: 11px; color: var(--accent); }

.aside-cta {
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  color: var(--paper);
  background: var(--ink);
  padding: 18px;
  text-decoration: none;
  border: 1px solid var(--ink);
  transition: background .2s, color .2s;
}

.aside-cta:hover { background: transparent; color: var(--ink); }

/* ============ SSS AKORDEONU ============ */

.faq-section {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(64px, 7vw, 100px) 0;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  padding-left: clamp(18px, 4vw, 56px);
  padding-right: clamp(18px, 4vw, 56px);
}

.faq-section .eyebrow { margin-bottom: 20px; }

.faq-list { border-top: 1px solid rgba(255, 255, 255, 0.14); }

.faq-item { border-bottom: 1px solid rgba(255, 255, 255, 0.14); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: transparent;
  border: none;
  color: var(--paper);
  cursor: pointer;
  padding: 24px 0;
  text-align: left;
  font-family: var(--font-body);
}

.faq-question > span:first-child { font-weight: 600; font-size: 17px; }

.faq-sign {
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--accent);
  flex-shrink: 0;
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height .3s ease;
}

.faq-item.open .faq-answer { max-height: 320px; }

.faq-answer p {
  font-size: 15px;
  line-height: 1.65;
  color: #a9a9ac;
  margin: 0;
  padding: 0 0 24px;
}

/* ============ ANA SAYFA HİZMETLER ============ */

.home-services {
  background: var(--ink);
  color: var(--paper);
  padding: var(--sp) 0;
}

.home-services-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.home-services-head .eyebrow { margin-bottom: 20px; }
.home-services-head .section-title { margin-bottom: 0; max-width: 640px; }

.home-services-sub { font-size: 16px; line-height: 1.6; color: #a9a9ac; max-width: 360px; margin: 0; }

.home-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.home-service-card {
  background: var(--ink);
  padding: 34px 30px;
  text-decoration: none;
  color: var(--paper);
  display: flex;
  flex-direction: column;
  transition: background .25s, color .25s;
}

.home-service-card:hover { background: var(--paper); color: var(--ink); }

.home-service-card .service-no { margin-bottom: 26px; }

.home-service-card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
}

.home-service-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: inherit;
  opacity: 0.72;
  margin: 0 0 20px;
}

.home-service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  opacity: 0.6;
  margin-bottom: 16px;
}

.home-service-card .service-more { margin-top: auto; }

.home-service-cta { background: #141416; justify-content: space-between; min-height: 180px; }
.home-service-cta:hover { background: var(--accent); color: var(--ink); }
.home-service-cta h3 { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.home-service-cta p { opacity: 0.75; margin: 0; }

/* ============ ÜRÜNLER ============ */

.products-section { padding: clamp(56px, 6vw, 90px) 0; }

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: clamp(32px, 4vw, 48px);
}

.filter-btn {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 10px 16px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: transparent;
  color: #5a5a5c;
  text-decoration: none;
  transition: all .2s;
}

.filter-btn:hover { border-color: var(--ink); color: var(--ink); }

.filter-btn.active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.products-empty { font-size: 15px; color: #5a5a5c; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 18px;
}

.product-card {
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: var(--paper);
  display: flex;
  flex-direction: column;
  transition: border-color .2s;
}

.product-card:hover { border-color: var(--ink); }

.product-media {
  position: relative;
  aspect-ratio: 4 / 3;
  display: block;
  overflow: hidden;
  background-image: repeating-linear-gradient(135deg, #ededed 0 10px, #e4e4e4 10px 20px);
}

.product-media img { width: 100%; height: 100%; object-fit: cover; display: block; }

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 4px 8px;
}

.product-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-body h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}

.product-body h3 a { color: var(--ink); text-decoration: none; }
.product-body h3 a:hover { text-decoration: underline; }

.product-body p {
  font-size: 13.5px;
  line-height: 1.55;
  color: #5a5a5c;
  margin: 0 0 auto;
}

.product-cta {
  margin-top: 20px;
  text-align: center;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--ink);
  background: transparent;
  padding: 13px;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.2);
  transition: all .2s;
}

.product-cta:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* ============ ÜRÜN DETAY GALERİSİ ============ */

.product-gallery { display: flex; flex-direction: column; gap: 12px; }

.gallery-thumbs { display: flex; flex-wrap: wrap; gap: 10px; }

.gallery-thumbs .thumb {
  width: 76px;
  height: 58px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity .2s, border-color .2s;
  overflow: hidden;
}

.gallery-thumbs .thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.gallery-thumbs .thumb:hover,
.gallery-thumbs .thumb.active { opacity: 1; border-color: var(--accent); }

/* Koyu zeminde teknik detay listesi */

.spec-list-dark { border-top-color: rgba(255, 255, 255, 0.14); margin-top: 8px; }
.spec-list-dark .spec-row { border-bottom-color: rgba(255, 255, 255, 0.12); }
.spec-list-dark .spec-label { color: var(--paper); }
.spec-list-dark .spec-value { color: #a9a9ac; }

/* ============ REFERANSLAR ============ */

/* Logo duvarı — logolar siyah-beyaz tasarıma uyum için gri tonlamalı, hover'da canlanır */

.logo-wall-section {
  border-bottom: 1px solid rgba(0, 0, 0, 0.10);
  padding: clamp(40px, 4vw, 56px) 0;
}

.logo-wall-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8a8a8d;
  text-align: center;
  margin-bottom: 28px;
}

.logo-wall {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1px;
  background: rgba(0, 0, 0, 0.10);
  border: 1px solid rgba(0, 0, 0, 0.10);
}

.logo-cell {
  background: var(--paper);
  aspect-ratio: 5 / 2;
  display: grid;
  place-items: center;
  padding: 16px;
}

.logo-cell img {
  max-width: 80%;
  max-height: 60%;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.55;
  transition: filter .25s, opacity .25s;
}

.logo-cell:hover img { filter: grayscale(0); opacity: 1; }

/* Portfolyo grid */

.portfolio-section { padding: clamp(64px, 7vw, 100px) 0; }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}

.portfolio-card {
  position: relative;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(0, 0, 0, 0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  transition: border-color .2s;
}

.portfolio-card.is-placeholder {
  background-image: repeating-linear-gradient(135deg, #ededed 0 10px, #e4e4e4 10px 20px);
}

.portfolio-card:hover { border-color: var(--ink); }

.portfolio-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}

.portfolio-card:hover .portfolio-bg { transform: scale(1.03); }

.portfolio-card .portfolio-badge,
.portfolio-card .portfolio-meta { position: relative; z-index: 1; }

.portfolio-badge {
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--ink);
  padding: 4px 8px;
}

.portfolio-card:not(.is-placeholder) .portfolio-meta {
  background: rgba(250, 250, 250, 0.92);
  padding: 10px 12px;
  align-self: flex-start;
  max-width: 100%;
}

.portfolio-title { font-family: var(--font-head); font-weight: 700; font-size: 17px; }

.portfolio-sub { font-size: 12.5px; color: #6b6b6d; margin-top: 4px; }
.portfolio-sub.mono { font-family: var(--font-mono); font-size: 10px; color: var(--accent); }

/* Sektörler */

.sectors-section {
  border-top: 1px solid rgba(0, 0, 0, 0.10);
  padding: clamp(64px, 7vw, 100px) 0;
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: rgba(0, 0, 0, 0.10);
  border: 1px solid rgba(0, 0, 0, 0.10);
}

.sector-cell {
  background: var(--paper);
  padding: 26px 24px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
}

.sector-cta {
  background: var(--ink);
  color: var(--paper);
  display: flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .2s, color .2s;
}

.sector-cta:hover { background: var(--accent); color: var(--ink); }

/* ============ ANA SAYFA REFERANSLAR ============ */

.home-references {
  background: var(--ink);
  color: var(--paper);
  padding: var(--sp) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.home-ref-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
}

.home-ref-card {
  position: relative;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(255, 255, 255, 0.14);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  transition: border-color .2s;
}

.home-ref-card.is-placeholder {
  background-image: repeating-linear-gradient(135deg, #161618 0 10px, #101012 10px 20px);
}

.home-ref-card:hover { border-color: var(--accent); }

.home-ref-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.home-ref-card .home-ref-badge,
.home-ref-card .home-ref-label { position: relative; z-index: 1; }

.home-ref-badge {
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--accent);
  padding: 4px 8px;
}

.home-ref-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: #d4d4d6;
  background: rgba(11, 11, 12, 0.7);
  padding: 6px 9px;
  align-self: flex-start;
}

/* ============ BLOG ============ */

.blog-section { padding: clamp(56px, 6vw, 90px) 0; }

.blog-meta {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a8a8d;
}

.blog-more {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
}

/* Öne çıkan yazı */

.blog-featured {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 0;
  border: 1px solid rgba(0, 0, 0, 0.12);
  text-decoration: none;
  color: var(--ink);
  margin-bottom: clamp(36px, 4vw, 52px);
  transition: border-color .2s;
}

.blog-featured:hover { border-color: var(--ink); }

.blog-featured-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.blog-featured-media.is-placeholder {
  background-image: repeating-linear-gradient(135deg, #ededed 0 10px, #e4e4e4 10px 20px);
}

.blog-featured-media img { width: 100%; height: 100%; object-fit: cover; display: block; }

.blog-featured-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--ink);
  padding: 4px 8px;
}

.blog-featured-body {
  padding: clamp(28px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-featured-body .blog-meta { margin-bottom: 16px; }

.blog-featured-body h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(22px, 2.8vw, 32px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}

.blog-featured-body p { font-size: 15.5px; line-height: 1.65; color: #5a5a5c; margin: 0 0 20px; }

/* Yazı kartları */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 18px;
}

.blog-card {
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: var(--paper);
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  transition: border-color .2s;
}

.blog-card:hover { border-color: var(--ink); }

.blog-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.blog-card-media.is-placeholder {
  background-image: repeating-linear-gradient(135deg, #ededed 0 10px, #e4e4e4 10px 20px);
}

.blog-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }

.blog-card-body {
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-body .blog-meta { margin-bottom: 12px; }

.blog-card-body h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
}

.blog-card-body p {
  font-size: 14px;
  line-height: 1.6;
  color: #5a5a5c;
  margin: 0 0 auto;
}

.blog-card-body .blog-more {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* ============ MAKALE (Blog Detay) ============ */

.article-hero {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}

.article-hero .grid-pattern {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.6;
  pointer-events: none;
}

.article-hero-inner {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(40px, 5vw, 64px) clamp(18px, 4vw, 56px) clamp(48px, 6vw, 72px);
}

.article-hero .breadcrumb { margin-bottom: 28px; }

.article-hero h1 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(30px, 4.6vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: #a3a3a6;
}

.article-meta .sep { opacity: 0.4; }

.article-cover-wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 56px);
}

.article-cover {
  margin-top: -40px;
  position: relative;
  aspect-ratio: 16 / 8;
  border: 1px solid rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.article-cover.is-placeholder {
  background-image: repeating-linear-gradient(135deg, #ededed 0 12px, #e4e4e4 12px 24px);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.article-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }

.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(48px, 5vw, 72px) clamp(18px, 4vw, 56px);
}

.article-body .prose > p:first-child {
  font-size: 19px;
  line-height: 1.7;
  color: #2a2a2c;
  font-weight: 500;
}

.related-section {
  border-top: 1px solid rgba(0, 0, 0, 0.10);
  padding: clamp(56px, 6vw, 84px) 0;
}

.related-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 56px);
}

.related-section h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(22px, 2.8vw, 32px);
  letter-spacing: -0.02em;
  margin: 0 0 clamp(28px, 3vw, 40px);
}

/* ============ FORMLAR (İletişim & Teklif) ============ */

.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }

.contact-section { padding: clamp(56px, 6vw, 90px) 0; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(36px, 5vw, 64px);
  align-items: start;
}

.info-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8a8a8d;
}

/* Koyu form kutusu (İletişim) */

.dark-form {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(28px, 3vw, 44px);
}

.dark-form form { display: flex; flex-direction: column; gap: 16px; }

.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

@media (max-width: 560px) { .form-row-2 { grid-template-columns: 1fr; } }

.dark-form input,
.dark-form select,
.dark-form textarea {
  background: #141416;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--paper);
  padding: 14px;
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  width: 100%;
}

.dark-form input:focus, .dark-form select:focus, .dark-form textarea:focus { border-color: var(--accent); }
.dark-form textarea { resize: vertical; }

.form-submit-light {
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  background: var(--paper);
  padding: 16px;
  border: 1px solid var(--paper);
  cursor: pointer;
  font-family: var(--font-body);
  transition: background .2s, color .2s;
}

.form-submit-light:hover { background: var(--accent); border-color: var(--accent); }

/* Açık form kutusu (Teklif Al) */

.quote-section { padding: clamp(56px, 6vw, 90px) 0; }

.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(36px, 5vw, 56px);
  align-items: start;
}

@media (min-width: 961px) { .quote-grid { grid-template-columns: 2fr 1fr; } }

.light-form {
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: clamp(28px, 3.5vw, 48px);
}

.light-form form { display: flex; flex-direction: column; gap: 14px; }

.light-form input,
.light-form select,
.light-form textarea {
  background: var(--paper);
  border: 1px solid rgba(0, 0, 0, 0.18);
  color: var(--ink);
  padding: 14px;
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  width: 100%;
}

.light-form input:focus, .light-form select:focus, .light-form textarea:focus { border-color: var(--ink); }
.light-form textarea { resize: vertical; }

.form-step-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8a8a8d;
  margin-bottom: 4px;
}

.form-step-gap { border-top: 1px solid rgba(0, 0, 0, 0.10); padding-top: 22px; margin-top: 10px; }

.date-field { display: flex; flex-direction: column; gap: 8px; }

.date-field span {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a8a8d;
}

.upload-field {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px dashed rgba(0, 0, 0, 0.28);
  padding: 28px;
  cursor: pointer;
  text-align: center;
  transition: border-color .2s, background .2s;
}

.upload-field:hover { border-color: var(--ink); background: #f2f2f2; }

.upload-icon { font-family: var(--font-mono); font-size: 22px; color: var(--accent); }
.upload-title { font-weight: 600; font-size: 14.5px; }
.upload-hint { font-size: 12.5px; color: #8a8a8d; }
.upload-field input[type="file"] { font-size: 13px; margin-top: 6px; }

.form-submit-dark {
  font-weight: 700;
  font-size: 16px;
  color: var(--paper);
  background: var(--ink);
  padding: 18px;
  border: 1px solid var(--ink);
  cursor: pointer;
  font-family: var(--font-body);
  transition: background .2s, color .2s;
  margin-top: 8px;
}

.form-submit-dark:hover { background: transparent; color: var(--ink); }

/* Başarı & hata durumları */

.form-success {
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
}

.success-check {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: var(--ink);
  font-size: 24px;
}

.success-check-dark { background: var(--ink); color: var(--paper); width: 56px; height: 56px; font-size: 26px; }

.form-success h3 { font-family: var(--font-head); font-weight: 800; font-size: 25px; margin: 0; }
.form-success p { font-size: 15px; line-height: 1.6; color: #a9a9ac; margin: 0; max-width: 420px; }
.form-success-light p { color: #5a5a5c; }

.success-link {
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 3px;
}

.form-alert {
  border: 1px solid rgba(255, 107, 107, 0.4);
  background: rgba(255, 107, 107, 0.08);
  color: #ff9b9b;
  padding: 13px 15px;
  font-size: 14px;
  margin-bottom: 18px;
}

.form-alert ul { margin: 0; padding-left: 18px; }

.form-alert-light {
  border-color: rgba(198, 40, 40, 0.35);
  background: rgba(198, 40, 40, 0.07);
  color: #c62828;
}

/* Teklif yan paneli */

.quote-steps-card {
  background: var(--ink);
  color: var(--paper);
  padding: 32px 28px;
}

.quote-steps-card h3 { font-family: var(--font-head); font-weight: 800; font-size: 20px; margin: 0 0 18px; }

.aside-steps-dark { border-top-color: rgba(255, 255, 255, 0.14); }
.aside-steps-dark .aside-step { border-bottom-color: rgba(255, 255, 255, 0.12); color: #d4d4d6; font-size: 14.5px; }

.quick-contact { display: flex; flex-direction: column; gap: 10px; }
.quick-contact span { font-weight: 600; font-size: 15px; }

.quick-contact a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 3px;
  align-self: flex-start;
}

/* Harita */

.map-section { padding: 0 0 clamp(64px, 7vw, 100px); }

.map-frame {
  position: relative;
  aspect-ratio: 16 / 6;
  min-height: 280px;
  max-width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

@media (max-width: 760px) {
  /* aspect-ratio + min-height çakışması genişliği patlatmasın */
  .map-frame { aspect-ratio: auto; height: 280px; }
  .map-placeholder { padding: 0 18px; }
}

.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

.map-frame.is-placeholder {
  background-image: repeating-linear-gradient(135deg, #ededed 0 12px, #e4e4e4 12px 24px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder { text-align: center; }

.mono-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8a8a8d;
}

.map-address { font-family: var(--font-head); font-weight: 700; font-size: 18px; margin-top: 8px; color: #3a3a3c; }

/* ============ ANA SAYFA — FAZ 13 EKLERİ ============ */

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 52px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 26px;
}

.stat-cap {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: #8d8d90;
  margin-top: 6px;
  text-transform: uppercase;
}

.hero-media {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  overflow: hidden;
}

.hero-media img { width: 100%; height: 100%; object-fit: cover; display: block; }

.hero-media.is-placeholder {
  background-image: repeating-linear-gradient(135deg, #161618 0 11px, #101012 11px 22px);
  display: flex;
  align-items: flex-end;
  padding: 22px;
}

@media (max-width: 760px) {
  /* Gerçek görsel mobilde alta iner; yer tutucu desen gizlenir */
  .hero-media.is-placeholder { display: none; }
  .hero-media { aspect-ratio: 16 / 10; max-height: 300px; }
}

/* Hakkımızda teaser (açık zemin) */

.eyebrow-light { color: #6b6b6d; }

.home-about { padding: var(--sp) 0; }

.home-about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}

.home-about-media {
  position: relative;
  aspect-ratio: 5 / 4;
  border: 1px solid rgba(0, 0, 0, 0.10);
  overflow: hidden;
}

.home-about-media img { width: 100%; height: 100%; object-fit: cover; display: block; }

.home-about-media.is-placeholder {
  background-image: repeating-linear-gradient(135deg, #efefef 0 11px, #e6e6e6 11px 22px);
  display: flex;
  align-items: flex-end;
  padding: 22px;
}

.placeholder-label-light {
  color: #9a9a9a;
  background: rgba(250, 250, 250, 0.85);
  border-color: rgba(0, 0, 0, 0.08);
}

.home-about-text {
  font-size: 17px;
  line-height: 1.7;
  color: #3a3a3c;
  margin: 0 0 32px;
  max-width: 520px;
}

/* Ürün önizleme (açık zemin) */

.home-products { padding: var(--sp) 0; border-top: 1px solid rgba(0, 0, 0, 0.10); }
.home-products .home-services-sub { color: #3a3a3c; }

/* Kapanış CTA */

.home-cta { padding: var(--sp) 0; background: var(--paper); }
