:root {
  --bg: #0c0d10;
  --fg: oklch(0.96 0.004 260);
  --accent-1: oklch(0.72 0.14 210); /* cyan */
  --accent-2: oklch(0.62 0.23 350); /* magenta */
  --accent-3: oklch(0.88 0.17 95);  /* amber */
  --accent-4: oklch(0.9 0.004 260); /* neutral */
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
}

body {
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  color: var(--fg);
}

a { color: inherit; }

html { scroll-behavior: smooth; }

::selection { background: oklch(0.72 0.14 210 / 0.35); }

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent-1);
  outline-offset: 3px;
  border-radius: 6px;
}

.page {
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* ---------- Animations ---------- */
@keyframes float1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(30px,-40px) scale(1.08); } }
@keyframes float2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-40px,30px) scale(0.94); } }
@keyframes float3 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(20px,35px) scale(1.05); } }
@keyframes spinSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulseDot { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

/* ---------- Header ---------- */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  height: 92px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: height 0.35s ease, background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
}
#site-header.scrolled {
  height: 68px;
  background: oklch(0.13 0.01 260 / 0.72);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid oklch(1 0 0 / 0.08);
}

.header-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo siyah çizimli olduğu için koyu zeminde açık bir plakaya oturmak zorunda.
   Düz beyaz dikdörtgen yerine hafif gradyanlı, ince kenarlıklı ve derin gölgeli
   bir plaka kullanılıyor; böylece kenar karanlığa yumuşak geçiyor. */
.logo-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  background: linear-gradient(158deg, oklch(1 0 0), oklch(0.93 0.003 260));
  border-radius: 15px;
  padding: 12px 20px;
  box-shadow:
    inset 0 1px 0 oklch(1 0 0),
    0 0 0 1px oklch(1 0 0 / 0.12),
    0 10px 28px oklch(0 0 0 / 0.5);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.logo-pill:hover {
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 oklch(1 0 0),
    0 0 0 1px oklch(0.72 0.14 210 / 0.45),
    0 12px 32px oklch(0.72 0.14 210 / 0.22),
    0 10px 28px oklch(0 0 0 / 0.5);
}
.logo-pill img { height: 38px; width: auto; display: block; }

.main-nav { display: flex; align-items: center; gap: 36px; }
/* Beşinci menü girdisi dar ekranda taşırıyordu. */
@media (max-width: 1180px) { .main-nav { gap: 22px; } }

/* ---------- GEÇİCİ: SIGN İstanbul 2026 duyurusu ----------
   Fuar (23–26 Eylül 2026) bitince bu blok ve menü girdileri kaldırılacak. */
.nav-fuar {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  padding: 7px 14px; border-radius: 999px;
  border: 1px solid oklch(0.62 0.23 350 / 0.5);
  background: oklch(0.62 0.23 350 / 0.12);
  transition: background 0.25s ease, border-color 0.25s ease;
}
.nav-fuar:hover { background: oklch(0.62 0.23 350 / 0.22); border-color: oklch(0.62 0.23 350 / 0.8); }
.nav-fuar::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%; flex: none;
  background: var(--accent-2); animation: pulseDot 2s ease-in-out infinite;
}
.mobile-menu nav a.mobil-fuar {
  font-size: 20px; color: var(--accent-2);
}
.main-nav a {
  color: oklch(0.9 0.004 260);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.nav-item { position: relative; }
.nav-dropdown-trigger {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  color: oklch(0.9 0.004 260);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
}
.nav-dropdown-trigger::after {
  content: '';
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -3px;
  transition: transform 0.25s ease;
}
.nav-dropdown-trigger[aria-expanded="true"]::after { transform: rotate(-135deg); margin-top: 3px; }

/* ---------- Mega menu ---------- */
.mega-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: min(720px, 92vw);
  background: oklch(0.15 0.012 260);
  border: 1px solid oklch(1 0 0 / 0.08);
  border-radius: 18px;
  padding: 12px;
  display: flex;
  gap: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
  z-index: 55;
}
.mega-menu.open { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }

.mega-menu-sidebar {
  display: flex;
  flex-direction: column;
  width: 176px;
  flex-shrink: 0;
  border-right: 1px solid oklch(1 0 0 / 0.08);
  padding-right: 8px;
  gap: 2px;
}
.mega-sidebar-link {
  display: block;
  width: 100%;
  padding: 11px 14px;
  border-radius: 10px;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 600;
  color: oklch(0.72 0.01 260);
  text-decoration: none;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.mega-sidebar-link:hover { background: oklch(1 0 0 / 0.05); color: oklch(0.95 0.004 260); }
.mega-sidebar-link.active { background: oklch(1 0 0 / 0.07); color: var(--fg); }
.mega-sidebar-all { color: var(--accent-1); }
.mega-sidebar-divider { height: 1px; background: oklch(1 0 0 / 0.08); margin: 6px 4px 8px; }

.mega-menu-panels { flex: 1; min-width: 0; padding: 4px 6px; }
.mega-panel { display: none; }
.mega-panel.active { display: block; }

.mega-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.mega-product {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.15s ease;
}
.mega-product:hover { background: oklch(1 0 0 / 0.05); }
.mega-product img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
  padding: 8px;
  display: block;
}
.mega-product span {
  font-size: 12px;
  font-weight: 600;
  color: oklch(0.85 0.004 260);
  line-height: 1.3;
}
.mega-viewall {
  display: inline-flex;
  margin: 10px 4px 2px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-1);
  text-decoration: none;
}
.mega-viewall:hover { text-decoration: underline; }

.mega-panel-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  gap: 10px;
  color: oklch(0.48 0.01 260);
  font-size: 13.5px;
  text-align: center;
}
.mega-panel-empty svg { width: 30px; height: 30px; opacity: 0.6; }

.store-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
  color: #08090b;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* ---------- Hamburger + mobile menu ---------- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: oklch(1 0 0 / 0.08);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  flex-shrink: 0;
}
.hamburger span {
  width: 18px; height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: oklch(0.1 0.01 260 / 0.97);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  z-index: 45;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.mobile-menu nav { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.mobile-menu nav a {
  color: var(--fg);
  text-decoration: none;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.mobile-menu.open nav a { opacity: 1; transform: translateY(0); }
.mobile-menu.open nav a:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.open nav a:nth-child(2) { transition-delay: 0.09s; }
.mobile-menu.open nav a:nth-child(3) { transition-delay: 0.13s; }
.mobile-menu.open nav a:nth-child(4) { transition-delay: 0.17s; }
.mobile-menu.open nav a:nth-child(5) { transition-delay: 0.21s; }
.mobile-submenu-link {
  font-size: 16px !important;
  font-weight: 500 !important;
  color: oklch(0.65 0.01 260) !important;
  margin-top: -14px;
}
.store-btn-mobile {
  font-size: 15px !important;
  padding: 14px 28px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.mobile-menu.open .store-btn-mobile { opacity: 1; transform: translateY(0); transition-delay: 0.25s; }

/* ---------- Sub-page hero (e.g. mimaki.html) ---------- */
/* Makine markası sayfalarının hero'su: metin solda, marka plakası sağdaki boşlukta.
   Bu sınıfı yalnızca mimaki/jhf/jetrix kullanıyor. */
.page-hero {
  padding: 160px 40px 40px; max-width: 1360px; margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 48px;
  align-items: center;
}
.page-hero .breadcrumb { grid-column: 1 / -1; grid-row: 1; }
.page-hero h1 { grid-column: 1; grid-row: 2; }
.page-hero p  { grid-column: 1; grid-row: 3; }
.page-hero .brand-plate {
  grid-column: 2; grid-row: 2 / span 2;
  justify-self: end; align-self: center;
  margin: 0;
}
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: oklch(0.55 0.01 260); margin-bottom: 20px; flex-wrap: wrap; }
.breadcrumb a { color: oklch(0.7 0.01 260); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.page-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 10px 0 18px;
}
.page-hero p { font-size: 16px; line-height: 1.7; color: oklch(0.68 0.01 260); max-width: 640px; margin: 0; }
.machine-page-sections { padding: 0 40px 60px; max-width: 1360px; margin: 0 auto; }
.machine-page-sections .machine-section:first-child { margin-top: 0; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 160px 40px 80px;
  perspective: 1200px;
  overflow: hidden;
}

.blob { position: absolute; pointer-events: none; will-change: transform; }
.blob-inner { width: 100%; height: 100%; border-radius: 50%; }
.blob-1 { top: 12%; left: 8%; width: 420px; height: 420px; }
.blob-1 .blob-inner { background: radial-gradient(circle at 35% 35%, oklch(0.72 0.14 210 / 0.55), transparent 70%); filter: blur(40px); animation: float1 9s ease-in-out infinite; }
.blob-2 { top: 38%; right: 10%; width: 480px; height: 480px; }
.blob-2 .blob-inner { background: radial-gradient(circle at 60% 40%, oklch(0.62 0.23 350 / 0.5), transparent 70%); filter: blur(50px); animation: float2 11s ease-in-out infinite; }
.blob-3 { bottom: 6%; left: 32%; width: 360px; height: 360px; }
.blob-3 .blob-inner { background: radial-gradient(circle at 45% 55%, oklch(0.88 0.17 95 / 0.4), transparent 70%); filter: blur(45px); animation: float3 8s ease-in-out infinite; }

.ring {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  pointer-events: none;
}
.ring-1 { width: 640px; height: 640px; margin: -320px 0 0 -320px; border: 1px solid oklch(1 0 0 / 0.08); will-change: transform; }
.ring-2 { width: 820px; height: 820px; margin: -410px 0 0 -410px; border: 1px solid oklch(1 0 0 / 0.05); animation: spinSlow 60s linear infinite; }

.hero-3d-wrap {
  position: absolute;
  top: 50%;
  right: 2%;
  transform: translateY(-50%);
  width: min(46vw, 620px);
  height: min(46vw, 620px);
  z-index: 1;
  pointer-events: none;
}
/* Sol kenar karanlığa karışır; başlık metni görselin üstüne denk geldiğinde okunurluk korunur. */
.hero-3d-wrap {
  -webkit-mask-image: linear-gradient(100deg, transparent 0%, oklch(0 0 0 / 0.18) 16%, oklch(0 0 0 / 0.72) 30%, #000 44%);
  mask-image: linear-gradient(100deg, transparent 0%, oklch(0 0 0 / 0.18) 16%, oklch(0 0 0 / 0.72) 30%, #000 44%);
}
.hero-3d-wrap canvas { width: 100% !important; height: 100% !important; display: block; }
@media (max-width: 1200px) { .hero-3d-wrap { opacity: 0.4; right: -6%; } }
@media (max-width: 860px) { .hero-3d-wrap { display: none; } }

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 36px;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 1px solid oklch(1 0 0 / 0.25);
  border-radius: 100px;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 0.9s ease-out 0.9s forwards;
}
.scroll-cue span {
  display: block;
  width: 4px; height: 8px;
  margin: 7px auto 0;
  border-radius: 100px;
  background: var(--fg);
  animation: scrollCue 1.8s ease-in-out infinite;
}
@keyframes scrollCue { 0% { opacity:0; transform: translateY(0); } 30% { opacity:1; } 100% { opacity:0; transform: translateY(16px); } }
@media (max-width: 860px) { .scroll-cue { display: none; } }

.hero-content { position: relative; z-index: 2; max-width: 1360px; margin: 0 auto; width: 100%; }

.eyebrow {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 28px;
  opacity: 0; animation: fadeUp 0.9s ease-out 0.1s forwards;
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent-1);
  animation: pulseDot 2s ease-in-out infinite;
}
.eyebrow span:last-child {
  font-size: 13px; letter-spacing: 0.14em; color: oklch(0.68 0.01 260); text-transform: uppercase;
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(48px, 7vw, 108px);
  line-height: 0.98;
  font-weight: 600;
  margin: 0 0 32px;
  max-width: 1100px;
  letter-spacing: -0.02em;
  opacity: 0; animation: fadeUp 0.9s ease-out 0.25s forwards;
}
.gradient-text {
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2), var(--accent-3));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* Aynı cyan–macenta–amber kimliği, açık zemin için koyulaştırılmış.
   Asıl gradyan koyu hero için ayarlı; açık butonda amber ucu 1,28 kontrasta
   düşüyordu. oklch açıklığı üçünde de 0.50'ye çekilince hepsi WCAG AA'yı geçer. */
.gradient-text-koyu {
  background: linear-gradient(90deg,
    oklch(0.50 0.14 210), oklch(0.50 0.23 350), oklch(0.50 0.17 95));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-desc {
  font-size: 19px; line-height: 1.6; color: oklch(0.72 0.01 260);
  max-width: 560px; margin: 0 0 44px;
  opacity: 0; animation: fadeUp 0.9s ease-out 0.4s forwards;
}

.hero-actions {
  display: flex; flex-wrap: wrap; gap: 16px;
  opacity: 0; animation: fadeUp 0.9s ease-out 0.55s forwards;
}

.btn {
  padding: 16px 32px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  display: inline-block;
}
.btn-primary { background: oklch(0.96 0.004 260); color: #0c0d10; }
.btn-outline { border: 1px solid oklch(1 0 0 / 0.18); color: oklch(0.96 0.004 260); font-weight: 600; }
/* Mimaki kurumsal kırmızısı — beyaz yazıyla kontrast oranı 4,68:1 (WCAG AA). */
.btn-mimaki {
  background: #e2231a;
  color: #fff;
  box-shadow: 0 6px 22px oklch(0.55 0.22 29 / 0.3);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-mimaki:hover {
  background: #f0362b;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px oklch(0.55 0.22 29 / 0.45);
}
.btn-lg { padding: 18px 36px; }
.btn-block { display: block; text-align: center; padding: 15px; margin-bottom: 20px; background: linear-gradient(90deg, var(--accent-1), var(--accent-2)); color: #08090b; }

/* ---------- Ticker ---------- */
.ticker {
  border-top: 1px solid oklch(1 0 0 / 0.08);
  border-bottom: 1px solid oklch(1 0 0 / 0.08);
  padding: 22px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  gap: 56px;
  animation: marquee 24s linear infinite;
}
.ticker-item {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: oklch(0.5 0.01 260);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.dot { width: 5px; height: 5px; border-radius: 50%; display: inline-block; }

/* ---------- Services ---------- */
.services { padding: 140px 40px; max-width: 1360px; margin: 0 auto; }
.section-head { max-width: 640px; margin-bottom: 72px; }
.kicker {
  font-size: 13px; letter-spacing: 0.14em; color: var(--accent-1);
  text-transform: uppercase; font-weight: 600;
}
.kicker-warm { color: var(--accent-3); }
.section-head h2, .contact h2, .store-banner h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 16px 0 0;
}
.section-head h2 { font-size: clamp(32px, 4vw, 52px); }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.card {
  background: oklch(0.19 0.012 260);
  border: 1px solid oklch(1 0 0 / 0.07);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.25s ease, border-color 0.3s ease;
  transform-style: preserve-3d;
  will-change: transform;
}
.card:hover { border-color: oklch(1 0 0 / 0.16); }
.tilt-card { transform: translateY(0); }

.card-media {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  background: oklch(0.22 0.012 260);
}
.card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card-media-light img { background: #fff; object-fit: contain; padding: 10px; }
.dot-badge { position: absolute; top: 14px; left: 14px; width: 10px; height: 10px; z-index: 2; }

.card-body h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 21px; font-weight: 600; margin: 0 0 10px;
}
.card-body p { font-size: 14.5px; line-height: 1.6; color: oklch(0.66 0.01 260); margin: 0; }

.tags { margin-top: auto; display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-size: 12px; padding: 5px 12px; border-radius: 100px;
  background: oklch(1 0 0 / 0.06); color: oklch(0.75 0.01 260);
}
a.tag {
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
a.tag:hover, a.tag:focus-visible {
  background: oklch(1 0 0 / 0.14); color: oklch(0.96 0.01 260);
}

/* ---------- Mimaki machine subsection ---------- */
.machine-section { margin-top: 88px; }
.machine-head { max-width: 640px; margin-bottom: 40px; }
.machine-head h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  font-size: clamp(24px, 2.6vw, 34px);
  margin: 14px 0 14px;
}
.machine-head p { font-size: 15px; line-height: 1.6; color: oklch(0.66 0.01 260); margin: 0; }
/* SSS bölümü h2 kullanıyor (h1'den sonra doğru sıradaki başlık); h3 ile aynı görünsün. */
.machine-head h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  font-size: clamp(24px, 2.6vw, 34px);
  margin: 14px 0 14px;
}

/* ---------- İş tipi / makine eşleşme tablosu ---------- */
.esleme { max-width: 1360px; margin: 88px auto 0; padding: 0 40px; }
/* Geniş tablo kendi kabında kaysın; sayfa gövdesi yatay kaymasın. */
.esleme-kaydir { overflow-x: auto; border: 1px solid oklch(1 0 0 / 0.09); border-radius: 14px; }
.esleme-tablo { width: 100%; border-collapse: collapse; min-width: 720px; font-size: 14px; }
.esleme-tablo thead th {
  text-align: left;
  padding: 14px 18px;
  background: oklch(1 0 0 / 0.04);
  color: oklch(0.88 0.004 260);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  border-bottom: 1px solid oklch(1 0 0 / 0.11);
  white-space: nowrap;
}
.esleme-tablo tbody th,
.esleme-tablo tbody td { padding: 13px 18px; border-bottom: 1px solid oklch(1 0 0 / 0.06); vertical-align: top; }
.esleme-tablo tbody tr:last-child th,
.esleme-tablo tbody tr:last-child td { border-bottom: 0; }
.esleme-tablo tbody th { text-align: left; font-weight: 600; color: oklch(0.92 0.004 260); white-space: nowrap; }
.esleme-tablo tbody td { color: oklch(0.72 0.01 260); line-height: 1.55; }
.esleme-tablo tbody td:last-child { color: oklch(0.64 0.01 260); min-width: 260px; }
.esleme-tablo tbody tr:hover td,
.esleme-tablo tbody tr:hover th { background: oklch(1 0 0 / 0.02); }
/* Ekran okuyucuya görünür, gözle görünmez */
.gorsel-gizli {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
@media (max-width: 640px) { .esleme { padding: 0 20px; margin-top: 56px; } }

/* ---------- Sık sorulanlar ---------- */
/* .machine-page-sections'ın dışında duruyor; kendi kabını kendi kuruyor. */
.sss { max-width: 1360px; margin: 88px auto 0; padding: 0 40px; }
.sss-liste { max-width: 860px; border-top: 1px solid oklch(1 0 0 / 0.09); }
.sss-oge { border-bottom: 1px solid oklch(1 0 0 / 0.09); }
.sss-oge summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 44px 20px 0;
  position: relative;
  font-size: 16px;
  font-weight: 600;
  color: oklch(0.92 0.004 260);
  transition: color 0.15s ease;
}
.sss-oge summary::-webkit-details-marker { display: none; }
.sss-oge summary:hover { color: var(--accent-1); }
.sss-oge summary:focus-visible { outline: 2px solid var(--accent-1); outline-offset: 3px; border-radius: 4px; }
/* Artı işareti: açıkken çarpıya döner */
.sss-oge summary::after {
  content: "";
  position: absolute; right: 8px; top: 50%;
  width: 13px; height: 13px;
  margin-top: -6px;
  background:
    linear-gradient(currentColor, currentColor) center/100% 1.5px no-repeat,
    linear-gradient(currentColor, currentColor) center/1.5px 100% no-repeat;
  color: oklch(0.62 0.01 260);
  transition: transform 0.2s ease, color 0.2s ease;
}
.sss-oge[open] summary::after { transform: rotate(45deg); color: var(--accent-1); }
.sss-cevap { padding: 0 44px 22px 0; }
.sss-cevap p { margin: 0; font-size: 15px; line-height: 1.75; color: oklch(0.72 0.01 260); }
.sss-cevap a { color: var(--accent-1); text-decoration: none; border-bottom: 1px solid oklch(0.72 0.14 210 / 0.4); }
.sss-cevap a:hover { border-bottom-color: currentColor; }
.sss-cevap strong { color: oklch(0.9 0.004 260); font-weight: 600; }
@media (max-width: 640px) {
  .sss { padding: 0 20px; margin-top: 56px; }
  .sss-oge summary { font-size: 15px; padding-right: 36px; }
}

.machine-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 280px));
  gap: 20px;
}
.machine-card {
  display: block;
  background: oklch(0.16 0.012 260);
  border: 1px solid oklch(1 0 0 / 0.07);
  border-radius: 16px;
  padding: 20px;
  text-decoration: none;
  transition: transform 0.25s ease, border-color 0.3s ease;
}
.machine-card:hover { transform: translateY(-4px); border-color: oklch(1 0 0 / 0.16); }
.machine-link-hint {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--accent-1);
}
.machine-link-hint svg { width: 14px; height: 14px; transition: transform 0.25s ease; }
.machine-card:hover .machine-link-hint svg { transform: translateX(3px); }
.machine-media {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 10px;
  background: #fff;
  margin-bottom: 16px;
  overflow: hidden;
}
.machine-media img { width: 100%; height: 100%; object-fit: contain; padding: 8px; display: block; }
.machine-card h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px; font-weight: 600; margin: 0 0 10px;
}
.machine-desc { font-size: 13px; line-height: 1.55; color: oklch(0.64 0.01 260); margin: 0; }

/* ---------- Product detail hero ---------- */
.product-hero { padding: 150px 40px 0; max-width: 1360px; margin: 0 auto; }
.product-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  margin-top: 24px;
  padding-bottom: 100px;
}
.product-hero-content { display: flex; flex-direction: column; }
.product-hero-content h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 12px 0 20px;
}
.product-tagline { font-size: 17px; line-height: 1.65; color: oklch(0.72 0.01 260); max-width: 540px; margin: 0 0 36px; }

/* Marka plakası — iş ortağı logolarını, orijinal çizimlerine dokunmadan koyu temada taşır. */
.brand-plate {
  align-self: flex-start;          /* .product-hero-content bir flex sütunu; germesin */
  display: inline-flex;
  align-items: center;
  padding: 11px 18px;
  margin: 0 0 22px;
  border-radius: 14px;
  /* Düz beyaz — gradyan değil: beyaz zeminli logolar (Natura, Corplex, JHF) düz
     zeminde kendi kare kenarını hiç belli etmez. Derinliği halka ve gölge veriyor. */
  background: #fff;
  box-shadow:
    inset 0 1px 0 oklch(1 0 0),
    0 0 0 1px oklch(1 0 0 / 0.12),
    0 10px 26px oklch(0 0 0 / 0.45);
}
/* İki eksenli sınır: yükseklik dar kelime markalarını (Natura), genişlik ise
   geniş olanları (Sun Chemical) frenler. En-boy oranı her koşulda korunur.
   box-sizing genelde border-box; ölçüler dolguyu içine almasın diye content-box. */
.brand-plate img {
  display: block;
  box-sizing: content-box;
  width: auto; height: auto;
  max-height: 48px; max-width: 210px;
}
/* Dikey kilitlenmiş logolar (amblem + kelime markası alt alta) 48 px'te okunmuyor. */
.brand-plate.tall img { max-height: 68px; }
/* Kenardan kenara renkli karo logolar (Mimaki) kendi zeminini getirir; beyaz
   plakanın içine koymak onu çerçeveye alınmış bir çıkartmaya çevirir.
   Karonun kendisi plaka olur — gölge ve halka tabandan aynen gelir. */
.brand-plate.tile { padding: 0; background: none; }
.brand-plate.tile img { max-height: 76px; max-width: 76px; border-radius: 14px; }
/* Büyük boy: sayfa başlığının yanındaki geniş boşluğu dolduran plaka.
   Sınıf adı bilerek "hero" değil — .hero ana sayfanın 100vh bölümü, çakışır. */
/* min-height: kare amblem ile geniş kelime markası yan yana aynı yükseklikte dursun. */
.brand-plate.xl { padding: 26px 32px; border-radius: 20px; min-height: 164px; justify-content: center; }
.brand-plate.xl img { max-height: 122px; max-width: 300px; }
.brand-plate.xl.tile { padding: 0; }
.brand-plate.xl.tile img { max-height: 164px; max-width: 164px; border-radius: 20px; }
/* Mimaki Yetkili Bayi Logo Kullanım Kılavuzu (FY21) — hatalı kullanımlar bölümü:
   markaya gölge, çerçeve veya köşe yuvarlama uygulanamaz. Bu varyant hepsini kaldırır. */
.brand-plate.duz { background: none; padding: 0; box-shadow: none; min-height: 0; }
/* .brand-plate.xl img kuralı dosyada daha sonra geldiği için eşit özgüllükte
   onu ezemiyordu; sınıf sayısını artırarak kesinleştiriyoruz. */
.brand-plate.xl.duz img,
.brand-plate.duz img { border-radius: 0; max-height: 120px; max-width: 120px; }
@media (max-width: 900px) {
  .brand-plate.xl.duz img,
  .brand-plate.duz img { max-height: 84px; max-width: 84px; }
}
/* Dar ekranda iki sütun sığmaz: plaka başlığın üstüne, sola döner. */
@media (max-width: 900px) {
  .page-hero { grid-template-columns: minmax(0, 1fr); }
  .page-hero .breadcrumb,
  .page-hero h1, .page-hero p, .page-hero .brand-plate { grid-column: 1; }
  .page-hero .brand-plate { grid-row: 2; justify-self: start; margin: 0 0 20px; }
  .page-hero h1 { grid-row: 3; }
  .page-hero p  { grid-row: 4; }
  .brand-plate.xl { padding: 18px 22px; min-height: 0; }
  .brand-plate.xl img { max-height: 76px; max-width: 190px; }
  .brand-plate.xl.tile img { max-height: 104px; max-width: 104px; }
}
@media (max-width: 640px) {
  .brand-plate { padding: 9px 14px; margin-bottom: 18px; }
  .brand-plate img { max-height: 32px; max-width: 160px; }
  .brand-plate.tall img { max-height: 48px; }
}

.product-badges { display: flex; flex-wrap: wrap; gap: 32px; margin-bottom: 40px; }
.product-badge { display: flex; flex-direction: column; }
.product-badge-num { font-family: 'Space Grotesk', sans-serif; font-size: 24px; font-weight: 700; }
.product-badge-label { font-size: 12.5px; color: oklch(0.6 0.01 260); margin-top: 2px; }

.product-hero-media { position: relative; }
.product-shot-glow {
  position: absolute; inset: -10%;
  background: radial-gradient(circle at 40% 40%, oklch(0.72 0.14 210 / 0.28), transparent 65%);
  filter: blur(30px);
  z-index: 0;
}
.product-shot {
  position: relative; z-index: 1;
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
}
.product-shot img { width: 100%; height: 100%; object-fit: contain; }

/* ---------- Production skill / usage grid ---------- */
.skill-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 28px;
}
.skill-card {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
  background: oklch(0.16 0.012 260);
  border: 1px solid oklch(1 0 0 / 0.07);
}
.skill-card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  position: relative; z-index: 0;
  transition: transform 0.4s ease;
}
.skill-card:hover img, .skill-card:focus-visible img { transform: scale(1.06); }
.skill-card::before {
  content: '';
  position: absolute; inset: 0;
  background: oklch(0.08 0.01 260 / 0.9);
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 1;
}
.skill-card:hover::before, .skill-card:focus-visible::before { opacity: 1; }
.skill-card-logo { aspect-ratio: 1/1; max-width: 280px; }
.skill-card-logo-media {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 14px;
  z-index: 0;
}
.skill-card-logo-media img { width: 100%; height: 100%; object-fit: contain; transform: none !important; }
.skill-card-logo-media.on-white { background: #fff; }
.skill-card-logo-media.on-white img { padding: 8px; }
.skill-card-title {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14.5px; font-weight: 600;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  color: #fff;
  transition: opacity 0.25s ease;
  z-index: 2;
}
.skill-card-desc {
  position: absolute; inset: 0;
  padding: 18px;
  display: flex; align-items: center;
  font-size: 12.5px; line-height: 1.55;
  color: oklch(0.94 0.004 260);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
  z-index: 2;
}
.skill-card:hover .skill-card-desc, .skill-card:focus-visible .skill-card-desc { opacity: 1; transform: translateY(0); }
.skill-card:hover .skill-card-title, .skill-card:focus-visible .skill-card-title { opacity: 0; }
.skill-card:focus-visible { outline: 2px solid var(--accent-1); outline-offset: 3px; }

/* ---------- Page sub-navigation ---------- */
.page-subnav {
  position: sticky;
  top: 68px;
  z-index: 30;
  background: oklch(0.11 0.012 260 / 0.85);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid oklch(1 0 0 / 0.08);
}
.page-subnav-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 14px 40px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}
.page-subnav-inner::-webkit-scrollbar { display: none; }
.subnav-tab {
  flex-shrink: 0;
  padding: 9px 18px;
  border-radius: 100px;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 600;
  color: oklch(0.68 0.01 260);
  background: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}
.subnav-tab:hover { background: oklch(1 0 0 / 0.07); color: oklch(0.95 0.004 260); }
.subnav-tab.active { background: var(--accent-1); color: #08090b; }

/* ---------- Tab panels ---------- */
.tab-panel:not([hidden]) { animation: fadeUp 0.4s ease-out; }
@media (prefers-reduced-motion: reduce) {
  .tab-panel:not([hidden]) { animation: none; }
}

/* ---------- Feature grid ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}
.feature-card {
  background: oklch(0.16 0.012 260);
  border: 1px solid oklch(1 0 0 / 0.07);
  border-radius: 16px;
  padding: 26px;
}
.feature-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: oklch(1 0 0 / 0.06);
  color: var(--accent-1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feature-icon svg { width: 21px; height: 21px; }
.feature-card h4,
.feature-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16.5px; font-weight: 600; margin: 0 0 8px;
}
.feature-card p a { color: var(--accent-1); text-decoration: none; }
.feature-card p a:hover { text-decoration: underline; }

/* Marka kartı: kartın tamamı bağlantı */
.marka-kart {
  display: block; position: relative;
  text-decoration: none; color: inherit;
  padding-right: 46px;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}
.marka-kart:hover {
  border-color: oklch(0.72 0.14 210 / 0.45);
  background: oklch(0.185 0.014 260);
  transform: translateY(-2px);
}
.marka-kart:focus-visible { outline: 2px solid var(--accent-1); outline-offset: 3px; }
.marka-kart h3 { color: oklch(0.95 0.004 260); }
.marka-kart:hover h3 { color: var(--accent-1); }
.marka-ok {
  position: absolute; right: 22px; top: 24px;
  font-size: 18px; line-height: 1;
  color: oklch(0.55 0.01 260);
  transition: transform 0.18s ease, color 0.18s ease;
}
.marka-kart:hover .marka-ok { color: var(--accent-1); transform: translateX(3px); }

/* Alternatif öneren kartlar: "bu makine değil, şu" — uyarı tonu */
.feature-card.kart-uyari { border-color: oklch(0.75 0.14 75 / 0.28); }
.feature-card.kart-uyari h3 { color: oklch(0.85 0.11 75); }

/* Satın almadan önce bilinmesi gerekenler */
.dikkat-liste { list-style: none; margin: 0; padding: 0; max-width: 760px; }
.dikkat-liste li {
  position: relative;
  padding: 0 0 14px 26px;
  font-size: 15px; line-height: 1.65;
  color: oklch(0.72 0.01 260);
}
.dikkat-liste li::before {
  content: ""; position: absolute; left: 4px; top: 9px;
  width: 6px; height: 6px; border-radius: 50%;
  background: oklch(0.75 0.14 75 / 0.85);
}
.dikkat-liste li:last-child { padding-bottom: 0; }
.dikkat-liste strong { color: oklch(0.9 0.004 260); font-weight: 600; }
.dikkat-liste a { color: var(--accent-1); text-decoration: none; }
.dikkat-liste a:hover { text-decoration: underline; }

/* ---------- Sayı şeridi (hizmetler / hakkımızda) ---------- */
.rakam-serit {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  padding: 26px 30px;
  background: oklch(0.16 0.012 260);
  border: 1px solid oklch(1 0 0 / 0.07);
  border-radius: 16px;
}
.rakam { display: flex; flex-direction: column; gap: 4px; }
.rakam-buyuk {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(26px, 3vw, 34px); font-weight: 700; line-height: 1.1;
}
.rakam-etiket { font-size: 13px; color: oklch(0.6 0.01 260); }

/* ---------- Zaman çizelgesi ---------- */
.cizelge { list-style: none; margin: 0; padding: 0; max-width: 760px; }
.cizelge-oge {
  display: flex; gap: 22px;
  padding: 0 0 24px 0;
  position: relative;
}
/* Yıl sütununun ortasından geçen dikey çizgi; son öğede kesilir. */
.cizelge-oge::before {
  content: ""; position: absolute; left: 55px; top: 28px; bottom: 0;
  width: 1px; background: oklch(1 0 0 / 0.12);
}
.cizelge-oge:last-child { padding-bottom: 0; }
.cizelge-oge:last-child::before { display: none; }
.cizelge-yil {
  flex: 0 0 auto; width: 110px; text-align: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13.5px; font-weight: 600;
  color: var(--accent-1);
  padding: 5px 0;
  border: 1px solid oklch(0.72 0.14 210 / 0.35);
  border-radius: 999px;
  background: oklch(0.16 0.012 260);
  height: fit-content;
  white-space: nowrap;
}
/* Sona ermiş iş birlikleri geri planda dursun — sıralamayı bozmadan */
.cizelge-oge.gecmis .cizelge-yil {
  color: oklch(0.62 0.01 260);
  border-color: oklch(1 0 0 / 0.14);
}
.cizelge-oge.gecmis h3 { color: oklch(0.78 0.006 260); }
/* Kendi markamız: dönem kapandığı için yıl etiketi gri kalır, ama satır
   sönükleşmez — kartın soluna ince bir vurgu şeridi gelir. */
.cizelge-oge.oz-marka > div {
  border-left: 2px solid oklch(0.72 0.14 210 / 0.55);
  padding-left: 16px;
  margin-left: -2px;
}
.cizelge-oge.oz-marka h3 { color: oklch(0.96 0.004 260); }
.cizelge-oge.oz-marka p { color: oklch(0.74 0.01 260); }
.cizelge-oge h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px; font-weight: 600; margin: 4px 0 6px;
}
.cizelge-oge p { font-size: 14.5px; line-height: 1.65; color: oklch(0.68 0.01 260); margin: 0; }
.cizelge-oge p a { color: var(--accent-1); text-decoration: none; }
.cizelge-oge p a:hover { text-decoration: underline; }
@media (max-width: 640px) {
  .cizelge-oge { gap: 14px; }
  .cizelge-oge::before { left: 47px; }
  .cizelge-yil { width: 94px; font-size: 12.5px; }
  .cizelge-oge h3 { font-size: 16px; }
}
.feature-card p { font-size: 14px; line-height: 1.6; color: oklch(0.66 0.01 260); margin: 0; }

/* ---------- Spec table ---------- */
.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
  margin: 0;
}
.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid oklch(1 0 0 / 0.07);
}
.spec-row dt { font-size: 13.5px; color: oklch(0.58 0.01 260); margin: 0; }
.spec-row dd { font-size: 14px; font-weight: 500; color: oklch(0.88 0.004 260); margin: 0; text-align: right; }

/* ---------- Store banner ---------- */
.store-banner {
  margin: 0 40px 140px;
  max-width: 1360px;
  margin-left: auto; margin-right: auto;
  border-radius: 28px;
  background: linear-gradient(120deg, oklch(0.2 0.02 240), oklch(0.16 0.02 320));
  border: 1px solid oklch(1 0 0 / 0.08);
  padding: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.store-banner-glow {
  position: absolute; right: -80px; top: -80px;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, oklch(0.72 0.14 210 / 0.25), transparent 70%);
  filter: blur(10px);
}
.store-banner-text { max-width: 600px; position: relative; z-index: 1; }
.store-banner h2 { font-size: clamp(28px, 3.4vw, 42px); margin: 14px 0 16px; }
.store-banner p { font-size: 16px; line-height: 1.6; color: oklch(0.75 0.01 260); margin: 0; }
.store-banner .btn { position: relative; z-index: 1; flex-shrink: 0; white-space: nowrap; }

/* ---------- Contact ---------- */
.contact { padding: 0 40px 120px; max-width: 1360px; margin: 0 auto; }
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
}
.contact h2 { font-size: clamp(30px, 3.6vw, 46px); margin: 16px 0 24px; }
.about-desc { font-size: 17px; line-height: 1.7; color: oklch(0.7 0.01 260); max-width: 520px; margin: 0 0 18px; }
.about-desc:last-of-type { margin-bottom: 32px; }
.about-desc a { color: oklch(0.86 0.006 260); text-decoration: none; border-bottom: 1px solid oklch(1 0 0 / 0.22); transition: color 0.15s ease, border-color 0.15s ease; }
.about-desc a:hover { color: var(--accent-1); border-bottom-color: currentColor; }
.stats { display: flex; gap: 40px; }
.stat-num { font-family: 'Space Grotesk', sans-serif; font-size: 34px; font-weight: 700; }
.stat-label { font-size: 13px; color: oklch(0.6 0.01 260); margin-top: 4px; }

.contact-card {
  background: oklch(0.19 0.012 260);
  border: 1px solid oklch(1 0 0 / 0.07);
  border-radius: 20px;
  padding: 40px;
}
.contact-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 600; margin: 0 0 24px; }
.contact-lines { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.contact-lines div { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: oklch(0.78 0.01 260); }
.contact-lines a { text-decoration: none; }
.contact-lines a:hover { text-decoration: underline; }
.contact-icon { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; color: var(--accent-1); }

.social-row { display: flex; gap: 10px; }
.social-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: oklch(1 0 0 / 0.06);
  display: flex; align-items: center; justify-content: center;
  color: oklch(0.9 0.004 260);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.social-btn svg { width: 19px; height: 19px; }
.social-btn:hover { background: var(--accent-1); color: #08090b; }

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid oklch(1 0 0 / 0.08);
  padding: 32px 40px;
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  /* Global box-sizing: border-box olduğu için dolgu yüksekliği yiyordu; logo 8 px'e
     düşüyordu. content-box ile height doğrudan çizimin yüksekliği oluyor. */
  box-sizing: content-box;
  height: 30px; width: auto;
  background: linear-gradient(158deg, oklch(1 0 0), oklch(0.93 0.003 260));
  border-radius: 12px;
  padding: 10px 16px;
  box-shadow:
    inset 0 1px 0 oklch(1 0 0),
    0 0 0 1px oklch(1 0 0 / 0.1),
    0 8px 22px oklch(0 0 0 / 0.45);
}
.footer-copy { font-size: 13px; color: oklch(0.5 0.01 260); }

/* Altbilgi marka satırı: İnka logosu + Mimaki Yetkili Bayi logosu.
   Kılavuz s14: bayi logosu, bayinin kendi logosundan daha büyük veya daha
   belirgin gösterilemez. İnka plakası 117×50, bayi logosu 50×50 — hem genişlik
   hem alan olarak İnka önde. Gölge/çerçeve/köşe yuvarlama uygulanmaz. */
.footer-markalar { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.footer-bayi { display: block; line-height: 0; }
/* İnka plakasının toplam yüksekliği: masaüstü 30+20=50, dar ekran 22+16=38.
   Bayi logosu her iki kırılımda da bundan alçak kalır. */
.footer-bayi img { display: block; box-sizing: content-box; height: 46px; width: 46px; }
@media (max-width: 860px) {
  .footer-markalar { gap: 12px; }
  .footer-bayi img { height: 34px; width: 34px; }
}

/* ---------- Responsive ---------- */
/* GEÇİCİ — SIGN İstanbul 2026 duyurusu menüde durduğu sürece.
   Beşinci girdi 861–1080px arasında mağaza butonunu ekran dışına itiyordu
   (880px'de ölçülen taşma: 192px). Bu aralıkta hamburger menüye geçiyoruz;
   aşağıdaki asıl mobil bloğun diğer kuralları etkilenmiyor.
   Bu blok, .nav-fuar kaldırılırken birlikte silinecek.
   Sıra önemli: .hamburger/.store-btn temel kuralları yukarıda tanımlı,
   bu yüzden geçersiz kılma dosyanın bu noktasında olmalı. */
@media (min-width: 861px) and (max-width: 1080px) {
  .main-nav { display: none; }
  .store-btn { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 860px) {
  .main-nav { display: none; }
  .store-btn { display: none; }
  .hamburger { display: flex; }
  /* Dar ekranda plaka başlığı şişirmesin. */
  .logo-pill { padding: 9px 14px; border-radius: 13px; }
  .logo-pill img { height: 28px; }
  .footer-logo { height: 22px; padding: 8px 13px; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero { padding: 140px 24px 60px; }
  .services, .contact { padding-left: 24px; padding-right: 24px; }
  .store-banner { margin-left: 24px; margin-right: 24px; padding: 40px 28px; }
  .header-inner { padding: 0 20px; }
  .product-hero { padding: 130px 24px 0; }
  .product-hero-grid { grid-template-columns: 1fr; gap: 40px; padding-bottom: 60px; }
  .product-hero-media { order: -1; }
  .spec-grid { grid-template-columns: 1fr; }
  .page-subnav-inner { padding: 12px 20px; }
}

/* ---------- Scroll reveal (3D) ---------- */
.reveal {
  opacity: 0;
  transform: perspective(1000px) rotateX(10deg) translateY(36px);
  transition: opacity 0.9s cubic-bezier(.16,.8,.3,1), transform 0.9s cubic-bezier(.16,.8,.3,1);
}
.reveal.in-view { opacity: 1; transform: perspective(1000px) rotateX(0deg) translateY(0); }
.card-grid .card:nth-child(1) { transition-delay: 0s; }
.card-grid .card:nth-child(2) { transition-delay: 0.08s; }
.card-grid .card:nth-child(3) { transition-delay: 0.16s; }
.card-grid .card:nth-child(4) { transition-delay: 0.24s; }

/* ---------- Grain overlay ---------- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .blob-inner, .ring-2, .pulse-dot, .ticker-track, .eyebrow, .hero h1, .hero-desc, .hero-actions, .scroll-cue, .scroll-cue span {
    animation: none !important;
    opacity: 1 !important;
  }
  .reveal { transition: opacity 0.3s ease !important; transform: none !important; }
}

/* ---------- Makine Seçim Sihirbazı (anasayfa) ---------- */
.wizard { padding: 0 40px 120px; max-width: 1360px; margin: 0 auto; }
.wizard-hero { max-width: 760px; }
.wizard-hero h1 { font-size: clamp(34px, 4.6vw, 60px); margin: 14px 0 18px; }
.wizard-box {
  border: 1px solid oklch(1 0 0 / 0.08);
  border-radius: 20px;
  background: oklch(0.14 0.012 260 / 0.6);
  padding: 32px;
}
.wz-sorular { display: grid; gap: 24px; }
.wz-soru h4 {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 600;
  color: oklch(0.92 0.004 260);
}
.wz-not { font-weight: 400; font-size: 13px; color: oklch(0.62 0.01 260); }
.wz-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.wz-chip {
  padding: 9px 16px;
  border-radius: 100px;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 500;
  color: oklch(0.72 0.01 260);
  background: oklch(1 0 0 / 0.05);
  border: 1px solid oklch(1 0 0 / 0.08);
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.wz-chip:hover { background: oklch(1 0 0 / 0.1); color: oklch(0.92 0.004 260); }
.wz-chip.active {
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
  color: #08090b;
  border-color: transparent;
  font-weight: 600;
}
.wz-aksiyon {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid oklch(1 0 0 / 0.08);
}
.wz-sifirla {
  background: none;
  border: none;
  color: oklch(0.62 0.01 260);
  font-family: inherit;
  font-size: 13.5px;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}
.wz-sifirla:hover { color: oklch(0.92 0.004 260); }
.wz-sonuc:not(:empty) { margin-top: 32px; padding-top: 28px; border-top: 1px solid oklch(1 0 0 / 0.08); }
.wz-sonuc-baslik {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 20px;
}
.wz-uyari { color: oklch(0.7 0.01 260); font-size: 14px; margin: 0; }
.wz-kartlar { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.wz-kart {
  position: relative;
  border: 1px solid oklch(1 0 0 / 0.08);
  border-radius: 16px;
  background: oklch(0.16 0.012 260 / 0.7);
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.wz-kart-ilk { border-color: oklch(0.72 0.14 210 / 0.55); }
.wz-rozet {
  position: absolute;
  top: -10px;
  left: 20px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
  color: #08090b;
}
.wz-kart-gorsel {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  margin-bottom: 16px;
}
.wz-kart-gorsel img { width: 100%; height: 100%; object-fit: contain; padding: 8px; display: block; }
.wz-kart-govde { display: flex; flex-direction: column; flex: 1; }
.wz-kat {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-1);
  margin-bottom: 6px;
}
.wz-kart h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 19px;
  font-weight: 600;
  margin: 0 0 6px;
}
.wz-ozet { font-size: 13px; color: oklch(0.68 0.01 260); margin: 0 0 14px; }
.wz-neden { margin: 0 0 14px; padding-left: 18px; display: grid; gap: 6px; }
.wz-neden li { font-size: 13.5px; color: oklch(0.8 0.01 260); }
.wz-neden-yok { font-size: 13.5px; color: oklch(0.62 0.01 260); margin: 0 0 14px; }
.wz-kesici {
  font-size: 12.5px;
  color: oklch(0.7 0.01 260);
  background: oklch(1 0 0 / 0.04);
  border-radius: 10px;
  padding: 10px 12px;
  margin: 0 0 14px;
}
.wz-kesici a { color: var(--accent-1); }
.wz-kart-link { display: flex; gap: 10px; flex-wrap: wrap; margin-top: auto; }
.wz-kart-link .btn { font-size: 13px; padding: 10px 18px; }

@media (max-width: 900px) {
  .wizard { padding: 0 20px 80px; }
  .wizard-box { padding: 22px; border-radius: 16px; }
  .wz-kartlar { grid-template-columns: 1fr; }
}

/* ---------- Sihirbaz yönlendirme şeridi (anasayfa) ---------- */
.wizard-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 64px;
  padding: 26px 32px;
  border-radius: 20px;
  border: 1px solid oklch(1 0 0 / 0.1);
  background: linear-gradient(120deg, oklch(0.2 0.02 240), oklch(0.16 0.02 320));
  position: relative;
  overflow: hidden;
  text-decoration: none;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.wizard-cta:hover { border-color: oklch(0.72 0.14 210 / 0.5); transform: translateY(-2px); }
.wizard-cta-glow {
  position: absolute; right: -60px; top: -60px;
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, oklch(0.72 0.14 210 / 0.25), transparent 70%);
  filter: blur(10px);
}
.wizard-cta-text { display: flex; align-items: center; gap: 20px; position: relative; z-index: 1; }
.wizard-cta-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  border-radius: 15px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  color: #08090b;
}
.wizard-cta-icon svg { width: 26px; height: 26px; }
.wizard-cta strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(19px, 2.1vw, 25px);
  font-weight: 600;
  color: oklch(0.96 0.004 260);
  margin-bottom: 5px;
}
.wizard-cta-desc { display: block; font-size: 14.5px; line-height: 1.5; color: oklch(0.72 0.01 260); }
.wizard-cta .btn { position: relative; z-index: 1; flex-shrink: 0; white-space: nowrap; }

@media (max-width: 760px) {
  .wizard-cta { padding: 22px; gap: 20px; margin-bottom: 48px; }
  .wizard-cta-text { gap: 14px; }
  .wizard-cta-icon { width: 44px; height: 44px; border-radius: 13px; }
  .wizard-cta-icon svg { width: 22px; height: 22px; }
  .wizard-cta .btn { width: 100%; text-align: center; justify-content: center; }
}

/* ---------- WhatsApp ---------- */
/* Marka rengi #25D366 kurumsal palete girmiyor; WhatsApp'ın kendi rengi
   olduğu için bilerek sabit tutuldu — tanınırlık tıklama oranını belirliyor. */
.wa-yuzen {
  position: fixed; right: 22px; bottom: 22px; z-index: 45;
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #25d366; color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.5);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.wa-yuzen svg { width: 30px; height: 30px; display: block; }
.wa-yuzen:hover { transform: scale(1.07); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55); }
@media (max-width: 640px) { .wa-yuzen { right: 16px; bottom: 16px; width: 52px; height: 52px; } }
@media print { .wa-yuzen { display: none; } }

.btn-wa {
  display: inline-flex; align-items: center; gap: 9px;
  background: #25d366; color: #06281a; border: none;
}
.btn-wa:hover { background: #1fbe5b; }
.btn-wa svg { width: 19px; height: 19px; flex: none; }

.contact-icon-wa { display: inline-flex; color: #25d366; }
.contact-icon-wa svg { width: 20px; height: 20px; display: block; }
