/* ==========================================================================
   AKBAL TAKIM TEZGAHLARI - Modern Industrial Light Design System
   ========================================================================== */

:root {
  --font-main: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  /* Color Palette - Modern Clean Light & Precision Industrial Blue */
  --bg-dark: #ffffff;
  --bg-surface: #ffffff;
  --bg-card: #ffffff;
  --bg-card-hover: #f8fafc;
  --bg-subtle: #f8fafc;
  --bg-elevated: #ffffff;
  
  --border-subtle: #e2e8f0;
  --border-highlight: #0284c7;
  --border-active: #0066cc;

  --accent-blue: #0066cc;
  --accent-blue-hover: #0052a3;
  --accent-blue-glow: rgba(0, 102, 204, 0.28);
  --accent-blue-light: rgba(0, 102, 204, 0.08);

  --accent-cyan: #0ea5e9;
  --accent-cyan-light: rgba(14, 165, 233, 0.1);

  /* Remapped primary action color */
  --accent-red: #0066cc;
  --accent-red-hover: #0052a3;
  --accent-red-glow: rgba(0, 102, 204, 0.28);
  --accent-red-light: rgba(0, 102, 204, 0.08);

  --accent-green: #059669;
  --accent-green-light: rgba(5, 150, 105, 0.1);
  --accent-amber: #d97706;

  --text-main: #0f172a;
  --text-muted: #475569;
  --text-dim: #64748b;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 8px 24px -4px rgba(0, 0, 0, 0.07), 0 2px 8px -2px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 20px 48px -8px rgba(0, 0, 0, 0.09), 0 6px 18px -4px rgba(0, 0, 0, 0.04);
  --shadow-blue: 0 12px 36px -6px rgba(0, 102, 204, 0.38);
  --shadow-red: 0 12px 36px -6px rgba(0, 102, 204, 0.38);

  --transition-fast: 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Reset & Typography */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  background-color: #ffffff;
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Subtle Technical Precision Grid Background */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(0, 102, 204, 0.04) 0%, transparent 65%),
    linear-gradient(to right, rgba(15, 23, 42, 0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15, 23, 42, 0.025) 1px, transparent 1px);
  background-size: 100% 100%, 48px 48px, 48px 48px;
  pointer-events: none;
  z-index: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font: inherit;
}

.container {
  width: 100%;
  max-width: 1340px;
  margin-inline: auto;
  padding-inline: 1.5rem;
  position: relative;
  z-index: 1;
}



/* ==========================================================================
   Utility Classes & Badges
   ========================================================================== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.badge-red, .badge-blue {
  background: var(--accent-blue-light);
  color: var(--accent-blue);
  border: 1px solid rgba(0, 102, 204, 0.25);
  box-shadow: 0 2px 6px rgba(0, 102, 204, 0.06);
}

.badge-green {
  background: var(--accent-green-light);
  color: var(--accent-green);
  border: 1px solid rgba(5, 150, 105, 0.25);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 0.75rem;
}

.section-tag::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--accent-blue);
  box-shadow: 0 0 10px rgba(0, 102, 204, 0.6);
}

.section-title {
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 680px;
  margin-bottom: 3rem;
  line-height: 1.65;
}

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

.text-center .section-subtitle {
  margin-inline: auto;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition-normal);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #0066cc 0%, #0284c7 100%);
  color: #ffffff;
  box-shadow: 0 4px 16px var(--accent-blue-glow);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}

.btn-primary:hover::after {
  left: 140%;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0052a3 0%, #0066cc 100%);
  box-shadow: var(--shadow-blue);
  transform: translateY(-2px);
  color: #ffffff;
}

.btn-secondary {
  background: #ffffff;
  color: var(--text-main);
  border: 1px solid #cbd5e1;
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: #f8fafc;
  border-color: #94a3b8;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  border: 1px solid #25d366;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #20ba59;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  transform: translateY(-2px);
  color: #ffffff;
}

.btn-sm {
  padding: 0.55rem 1.15rem;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

.btn-md {
  padding: 0.5rem 1.15rem;
  font-size: 0.86rem;
  border-radius: var(--radius-md);
}

.btn-lg {
  padding: 0.95rem 1.85rem;
  font-size: 1rem;
  border-radius: var(--radius-md);
}

/* ==========================================================================
   Header & Top Announcement Bar (Award-Winning Clean Tech Style)
   ========================================================================== */
.top-bar {
  background: #f8fafc;
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
  font-size: 0.74rem;
  color: #64748b;
  padding: 0.22rem 0;
  position: relative;
  z-index: 60;
}

.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  color: #475569;
}

.top-bar-item.service-guarantee {
  color: #0284c7;
  font-weight: 700;
}

.top-bar-divider {
  color: #cbd5e1;
  font-weight: 300;
}

.top-bar-link {
  text-decoration: none;
  transition: color var(--transition-fast);
}

.top-bar-link:hover {
  color: #0052cc;
}

.live-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.8);
  animation: livePing 1.8s infinite cubic-bezier(0.66, 0, 0, 1);
}

@keyframes livePing {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.8); }
  70% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.badge-sarf-store {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(0, 82, 204, 0.07);
  color: #0052cc;
  border: 1px solid rgba(0, 82, 204, 0.18);
  border-radius: 999px;
  padding: 0.16rem 0.65rem;
  font-size: 0.72rem;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.2s ease;
}

.badge-sarf-store:hover {
  background: #0052cc;
  color: #ffffff;
  border-color: #0052cc;
  box-shadow: 0 2px 8px rgba(0, 82, 204, 0.25);
  transform: translateY(-1px);
}

/* ==========================================================================
   Sticky Site Header (Precision Glassmorphism & Typographic Lockup)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
  z-index: 50;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.05), 0 2px 6px -1px rgba(0, 0, 0, 0.02);
  border-bottom-color: #cbd5e1;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 94px;
}

/* Brand Lockup (Maximized Authoritative Logo & Corporate Blue Typography) */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  text-decoration: none;
  user-select: none;
}

.brand-logo-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 124px;
  height: 82px;
  border-radius: 18px;
  background: #ffffff;
  border: 1.5px solid rgba(0, 82, 204, 0.16);
  padding: 6px 8px;
  transition: all 0.25s ease;
  box-shadow: 0 4px 20px rgba(0, 82, 204, 0.08);
}

.brand-logo:hover .brand-logo-frame {
  transform: scale(1.04);
  border-color: #0052cc;
  box-shadow: 0 8px 26px rgba(0, 82, 204, 0.22);
  background: rgba(0, 82, 204, 0.04);
}

.brand-logo-img {
  height: 70px;
  max-height: 72px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.brand-title-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-size: 2.75rem;
  font-weight: 950;
  letter-spacing: -0.035em;
  color: #0052cc;
  line-height: 0.95;
}

.brand-sub {
  font-size: 0.96rem;
  font-weight: 850;
  color: #003d99;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-top: 6px;
}

/* Main Navigation (Chic Glass Capsule Dock) */
.main-nav {
  display: flex;
  align-items: center;
}

.main-nav-dock {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  background: rgba(241, 245, 249, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 999px;
  padding: 0.22rem 0.35rem;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.8), 0 2px 8px rgba(0, 0, 0, 0.03);
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #475569;
  position: relative;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.nav-link:hover {
  color: #0052cc;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.nav-link.active {
  color: #0052cc;
  background: #ffffff;
  font-weight: 800;
  box-shadow: 0 2px 10px rgba(0, 82, 204, 0.14), 0 1px 2px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(203, 213, 225, 0.6);
}

.nav-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #0052cc;
  box-shadow: 0 0 6px rgba(0, 82, 204, 0.8);
  display: inline-block;
  animation: pulseDot 1.6s infinite;
}

.nav-pill-count {
  font-size: 0.62rem;
  font-weight: 800;
  font-family: var(--font-mono);
  background: rgba(0, 82, 204, 0.1);
  color: #0052cc;
  padding: 0.08rem 0.38rem;
  border-radius: 999px;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.btn-header-rfq {
  display: none !important;
}

.btn-whatsapp-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  background: rgba(37, 211, 102, 0.1);
  color: #15803d;
  border: 1px solid rgba(37, 211, 102, 0.3);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-whatsapp-pill:hover {
  background: #25d366;
  color: #ffffff;
  border-color: #25d366;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
  transform: translateY(-1px);
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

/* ==========================================================================
   Hero Section (Compact Precision Clean Tech - Immediate Viewport Visibility)
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 0.65rem 0 0.85rem;
  overflow: hidden;
  background: radial-gradient(circle at 65% 25%, rgba(0, 82, 204, 0.04) 0%, rgba(255, 255, 255, 1) 70%);
}

/* Slider Navigation Header (Top Switcher Tabs, Controls & Progress) */
.hero-slider-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.4rem;
}

.hero-slider-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #64748b;
}

.hero-slider-kicker .live-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0052cc;
  box-shadow: 0 0 8px #0052cc;
  animation: pulseDot 1.4s infinite;
}

.hero-slider-kicker .kicker-title {
  color: #0052cc;
}

.hero-slider-kicker .kicker-sep {
  color: #cbd5e1;
}

/* Machine Switcher Tabs */
.hero-slider-tabs {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(241, 245, 249, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(203, 213, 225, 0.8);
  border-radius: 999px;
  padding: 0.2rem 0.3rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.hero-slide-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.32rem 0.85rem;
  border-radius: 999px;
  background: transparent;
  border: 1px solid transparent;
  color: #64748b;
  font-size: 0.76rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.hero-slide-tab .tab-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 800;
  opacity: 0.75;
}

.hero-slide-tab:hover {
  color: #0b132b;
  background: rgba(255, 255, 255, 0.85);
}

.hero-slide-tab.active {
  background: #ffffff;
  color: #0052cc;
  border-color: rgba(203, 213, 225, 0.8);
  box-shadow: 0 2px 8px rgba(0, 82, 204, 0.14);
}

.hero-slide-tab.active .tab-num {
  color: #0052cc;
  opacity: 1;
}

/* Arrow Navigation */
.hero-slider-arrows {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.slider-arrow-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  color: #0b132b;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
  transition: all 0.2s ease;
}

.slider-arrow-btn:hover {
  background: #0052cc;
  border-color: #0052cc;
  color: #ffffff;
  transform: scale(1.05);
  box-shadow: 0 3px 10px rgba(0, 82, 204, 0.25);
}

/* Laser Progress Bar */
.hero-slider-progress {
  width: 100%;
  height: 2.5px;
  background: rgba(226, 232, 240, 0.7);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 0.65rem;
}

.hero-slider-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #0052cc 0%, #0ea5e9 100%);
  border-radius: 999px;
  box-shadow: 0 0 6px rgba(14, 165, 233, 0.6);
  transition: width 0.1s linear;
}

/* Main Slider Container */
.hero-slider-container {
  position: relative;
  min-height: 310px;
  margin-bottom: 0.65rem;
}

.hero-slide {
  display: none;
}

.hero-slide.active {
  display: grid;
  grid-template-columns: 430px minmax(0, 1fr);
  gap: 2.25rem;
  align-items: center;
  animation: heroSlideFade 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes heroSlideFade {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Left Column: Machine Stage Box & Precision Framing (Fixed & Constant across all 3 machines) */
.slide-media-col {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 430px;
  flex-shrink: 0;
}

.machine-stage-box {
  position: relative;
  width: 430px;
  min-width: 430px;
  max-width: 430px;
  height: 300px;
  border-radius: 18px;
  background: #ffffff;
  border: 1.5px solid rgba(203, 213, 225, 0.85);
  box-shadow: 0 10px 30px -8px rgba(0, 0, 0, 0.05), 0 2px 6px rgba(0, 0, 0, 0.02);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.85rem 0.75rem;
  overflow: hidden;
  cursor: pointer;
  box-sizing: border-box;
  flex-shrink: 0;
  transition: border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.machine-stage-box:hover {
  border-color: #0052cc;
  box-shadow: 
    0 0 0 2px #0052cc,
    0 18px 45px -8px rgba(0, 82, 204, 0.25),
    inset 0 0 18px rgba(0, 82, 204, 0.04);
  transform: translateY(-3px);
}

.machine-stage-box.centerpiece-box {
  border-color: rgba(0, 82, 204, 0.32);
  box-shadow: 0 12px 35px -8px rgba(0, 82, 204, 0.12), 0 2px 8px rgba(0, 0, 0, 0.02);
}

.slide-content-col {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Corner Reticles */
.hud-corner {
  position: absolute;
  width: 14px;
  height: 14px;
  border-color: #94a3b8;
  pointer-events: none;
  transition: all 0.2s ease;
  z-index: 6;
}

.hud-corner.top-left { top: 8px; left: 8px; border-top: 2px solid; border-left: 2px solid; }
.hud-corner.top-right { top: 8px; right: 8px; border-top: 2px solid; border-right: 2px solid; }
.hud-corner.bottom-left { bottom: 8px; left: 8px; border-bottom: 2px solid; border-left: 2px solid; }
.hud-corner.bottom-right { bottom: 8px; right: 8px; border-bottom: 2px solid; border-right: 2px solid; }

.machine-stage-box:hover .hud-corner {
  border-color: #0ea5e9;
  filter: drop-shadow(0 0 5px #0ea5e9);
  width: 17px;
  height: 17px;
}

/* HUD Vision Status Tag */
.hud-status-tag {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.18rem 0.65rem;
  border-radius: 999px;
  background: rgba(11, 19, 43, 0.94);
  color: #38bdf8;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-family: var(--font-mono);
  opacity: 0.85;
  transition: all 0.2s ease;
  z-index: 8;
  white-space: nowrap;
}

.hud-status-tag .hud-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 5px #10b981;
  animation: pulseDot 1.2s infinite;
}

.machine-stage-box:hover .hud-status-tag {
  opacity: 1;
  background: #0052cc;
  color: #ffffff;
  box-shadow: 0 3px 10px rgba(0, 82, 204, 0.35);
}

/* Specular Shine Sweep (Parlama Efekti) */
.machine-shine-sweep {
  position: absolute;
  top: 0;
  left: -140%;
  width: 90%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255, 255, 255, 0.8) 45%,
    rgba(14, 165, 233, 0.6) 50%,
    rgba(255, 255, 255, 0.9) 55%,
    transparent 80%
  );
  transform: skewX(-25deg);
  pointer-events: none;
  z-index: 5;
}

.machine-stage-box:hover .machine-shine-sweep,
.hero-slide.active .machine-shine-sweep {
  animation: machineSweep 1.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes machineSweep {
  0% { left: -140%; opacity: 0; }
  25% { opacity: 1; }
  100% { left: 180%; opacity: 0; }
}

/* Radial Glow Aura Behind Machine */
.machine-glow-aura {
  position: absolute;
  inset: 10%;
  background: radial-gradient(circle at 50% 50%, rgba(0, 82, 204, 0.16) 0%, rgba(14, 165, 233, 0.05) 50%, transparent 72%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.machine-stage-box:hover .machine-glow-aura {
  opacity: 1;
}

.centerpiece-aura {
  position: absolute;
  inset: 5%;
  background: radial-gradient(circle at 50% 50%, rgba(0, 82, 204, 0.22) 0%, rgba(14, 165, 233, 0.08) 45%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  animation: pulseGlow 4s ease-in-out infinite;
}

/* Floor Spotlight */
.machine-floor-spotlight {
  position: absolute;
  bottom: 0;
  left: 8%;
  right: 8%;
  height: 55px;
  background: radial-gradient(ellipse at 50% 70%, rgba(0, 82, 204, 0.12) 0%, transparent 75%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

/* Photo Holder & Image */
.machine-img-holder {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.machine-showcase-img {
  max-width: 90%;
  max-height: 86%;
  object-fit: contain;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.1));
}

.machine-stage-box:hover .machine-showcase-img {
  transform: scale(1.05) translateY(-4px);
  filter: drop-shadow(0 16px 28px rgba(0, 82, 204, 0.24));
}

/* Stage Origin Badge */
.stage-origin-badge {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.22rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid #cbd5e1;
  color: #0b132b;
  font-size: 0.68rem;
  font-weight: 800;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
  white-space: nowrap;
  z-index: 4;
  transition: all 0.2s ease;
}

.stage-origin-badge.centerpiece-pill {
  background: linear-gradient(135deg, #0052cc 0%, #0284c7 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 2px 10px rgba(0, 82, 204, 0.32);
}

.machine-stage-box:hover .stage-origin-badge {
  border-color: #0052cc;
  color: #0052cc;
}

.machine-stage-box:hover .stage-origin-badge.centerpiece-pill {
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 82, 204, 0.4);
}

/* Hotspot Beacon Pins */
.hotspot-pin {
  position: absolute;
  z-index: 10;
  cursor: pointer;
  outline: none;
}

.pin-gentiger-head { top: 22%; right: 26%; }
.pin-leago-screen { top: 26%; left: 26%; }
.pin-leago-chamber { top: 30%; right: 25%; }
.pin-gentiger-table { bottom: 26%; left: 24%; }

.pulse-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #0052cc;
  box-shadow: 0 0 0 0 rgba(0, 82, 204, 0.7);
  animation: sonarPulse 2s infinite cubic-bezier(0.66, 0, 0, 1);
  border: 2px solid #ffffff;
}

.hotspot-tooltip {
  position: absolute;
  bottom: 135%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: rgba(11, 19, 43, 0.96);
  color: #ffffff;
  padding: 0.5rem 0.8rem;
  border-radius: var(--radius-md);
  font-size: 0.72rem;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  z-index: 20;
}

.hotspot-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: rgba(11, 19, 43, 0.96);
}

.hotspot-tooltip strong {
  color: #38bdf8;
  font-size: 0.76rem;
}

.hotspot-pin:hover .hotspot-tooltip,
.hotspot-pin:focus .hotspot-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* --------------------------------------------------------------------------
   Right Column: Compact Machine Specifications & Details
   -------------------------------------------------------------------------- */
.slide-content-col {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  z-index: 2;
}

.slide-badge-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.slide-kicker-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  background: rgba(0, 82, 204, 0.08);
  border: 1px solid rgba(0, 82, 204, 0.2);
  color: #0052cc;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.slide-kicker-badge.centerpiece-badge {
  background: linear-gradient(135deg, #0052cc 0%, #0284c7 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 2px 8px rgba(0, 82, 204, 0.25);
}

.slide-telemetry-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.55rem;
  border-radius: 5px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  color: #475569;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.slide-machine-title {
  font-size: clamp(1.4rem, 1.85vw, 1.75rem);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: #0b132b;
  margin: 0;
}

.slide-machine-desc {
  font-size: 0.86rem;
  color: #475569;
  line-height: 1.45;
  margin: 0;
  max-width: 580px;
}

/* 4-Cell Compact Specifications Grid (Single-Row on Desktop) */
.slide-specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.45rem;
  margin-top: 0.25rem;
}

.slide-spec-cell {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 0.45rem 0.65rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  transition: all 0.2s ease;
}

.slide-spec-cell:hover {
  background: #ffffff;
  border-color: #93c5fd;
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(0, 82, 204, 0.08);
}

.slide-spec-cell .spec-k {
  font-size: 0.62rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.slide-spec-cell .spec-v {
  font-size: 0.8rem;
  font-weight: 800;
  color: #0b132b;
  font-family: var(--font-mono);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Action Buttons Row */
.slide-cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.35rem;
}

.slide-cta-row .btn-primary {
  box-shadow: 0 4px 16px rgba(0, 82, 204, 0.28);
}

/* Slim Horizontal KPI Metrics Strip in Hero */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(226, 232, 240, 0.85);
}

.hero-stat-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-left: 3px solid #0052cc;
  border-radius: 8px;
  padding: 0.45rem 0.75rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.02);
  transition: all 0.2s ease;
}

.hero-stat-item:hover {
  transform: translateY(-2px);
  border-color: #93c5fd;
  box-shadow: 0 4px 12px rgba(0, 82, 204, 0.1);
}

.stat-number {
  font-size: 1.15rem;
  font-weight: 900;
  color: #0b132b;
  font-family: var(--font-mono);
  display: flex;
  align-items: baseline;
  gap: 0.1rem;
  white-space: nowrap;
}

.stat-number .plus {
  color: #0052cc;
}

.stat-label {
  font-size: 0.68rem;
  color: #64748b;
  font-weight: 700;
  line-height: 1.25;
}

/* --------------------------------------------------------------------------
   Slider Responsive Breakpoints
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-slide.active {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .slide-specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .machine-stage-box {
    max-width: 100%;
    height: 280px;
  }

  .hero-slider-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-slider-tabs {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .hero-slider-arrows {
    align-self: flex-end;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .hero-slider-header {
    gap: 0.5rem;
  }

  .hero-slide-tab {
    font-size: 0.72rem;
    padding: 0.28rem 0.65rem;
  }

  .machine-stage-box {
    height: 240px;
    padding: 0.75rem;
  }

  .slide-machine-title {
    font-size: 1.35rem;
  }

  .slide-specs-grid {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .slide-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .slide-cta-row .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   Partners & Brands Marquee
   ========================================================================== */
.brands-section {
  padding: 1.5rem 0;
  background: #f8fafc;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.brands-label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  margin-bottom: 1rem;
}

.brands-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.brand-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: -0.02em;
  padding: 0.6rem 1.15rem;
  border-radius: var(--radius-md);
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.brand-badge:hover {
  color: var(--accent-blue);
  border-color: #93c5fd;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.brand-badge span {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-blue);
  background: var(--accent-blue-light);
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-sm);
}

/* ==========================================================================
   Product Catalog & Live Filter
   ========================================================================== */
.catalog-section {
  padding: 6rem 0;
  position: relative;
  background: #ffffff;
}

.catalog-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3rem;
}

.filter-controls {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  margin-bottom: 3.5rem;
}

.search-bar-wrap {
  position: relative;
  max-width: 560px;
  width: 100%;
  margin-inline: auto;
}

.search-bar-wrap input {
  width: 100%;
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: var(--radius-full);
  padding: 0.9rem 1.25rem 0.9rem 3.2rem;
  color: var(--text-main);
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.search-bar-wrap input:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px var(--accent-blue-glow);
}

.search-bar-wrap .search-icon {
  position: absolute;
  left: 1.35rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-dim);
  pointer-events: none;
}

.category-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.category-tab {
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-full);
  background: #f8fafc;
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 800;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.category-tab:hover {
  background: #f1f5f9;
  color: var(--text-main);
  border-color: #cbd5e1;
}

.category-tab.active {
  background: var(--accent-blue);
  color: #ffffff;
  border-color: var(--accent-blue);
  box-shadow: 0 4px 15px var(--accent-blue-glow);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(370px, 1fr));
  gap: 2.25rem;
}

.product-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
  box-shadow: var(--shadow-sm);
}

/* Precision Top Accent Line */
.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0066cc, #0ea5e9);
  opacity: 0;
  transition: opacity var(--transition-normal);
  z-index: 5;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: #93c5fd;
  box-shadow: 0 20px 40px -6px rgba(0, 102, 204, 0.14);
}

.product-card:hover::before {
  opacity: 1;
}

.product-card-media {
  position: relative;
  background: #f8fafc;
  border-bottom: 1px solid var(--border-subtle);
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  overflow: hidden;
}

.product-card-media img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform var(--transition-normal);
}

.product-card:hover .product-card-media img {
  transform: scale(1.06);
}

.product-card-badges {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  z-index: 2;
}

.origin-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-subtle);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  box-shadow: var(--shadow-sm);
}

.product-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category-name {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--accent-blue);
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}

.product-name {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--text-main);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.product-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.product-specs-list {
  background: #f8fafc;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dashed #e2e8f0;
  padding-bottom: 0.35rem;
}

.spec-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.spec-label {
  color: var(--text-dim);
  font-weight: 600;
}

.spec-value {
  color: var(--text-main);
  font-weight: 800;
  font-family: var(--font-mono);
}

.product-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

/* ==========================================================================
   Before/After Retrofitting Showcase (Pano Revizyonu)
   ========================================================================== */
.retrofit-section {
  padding: 6rem 0;
  background: #f8fafc;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}

.retrofit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.retrofit-feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 2rem 0;
}

.retrofit-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-icon-box {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: var(--accent-blue-light);
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(0, 102, 204, 0.2);
}

.feature-info h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.feature-info p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.comparison-box {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.comparison-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.compare-card {
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.compare-card.old {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.compare-card.new {
  background: rgba(0, 102, 204, 0.04);
  border: 1.5px solid rgba(0, 102, 204, 0.35);
  box-shadow: 0 4px 15px rgba(0, 102, 204, 0.08);
}

.compare-card h4 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.compare-card.old h4 { color: #64748b; }
.compare-card.new h4 { color: var(--accent-blue); }

.compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.85rem;
}

.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.compare-list li.bad { color: #dc2626; }
.compare-list li.good { color: #059669; }

/* ==========================================================================
   Interactive RFQ Wizard (Teklif Sihirbazı)
   ========================================================================== */
.wizard-section {
  padding: 6rem 0;
  position: relative;
  background: #ffffff;
}

.wizard-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  max-width: 960px;
  margin-inline: auto;
}

.wizard-header {
  background: #f8fafc;
  border-bottom: 1px solid var(--border-subtle);
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wizard-steps-indicator,
.wizard-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.wizard-step-node,
.step-indicator {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dim);
  transition: all var(--transition-fast);
}

.wizard-step-node.active,
.step-indicator.active {
  color: var(--accent-blue);
}

.wizard-step-node.completed,
.step-indicator.completed {
  color: var(--accent-green);
}

.step-number,
.step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  transition: all var(--transition-fast);
}

.wizard-step-node.active .step-number,
.step-indicator.active .step-circle {
  border-color: var(--accent-blue);
  background: var(--accent-blue);
  color: #ffffff;
  box-shadow: 0 0 12px rgba(0, 102, 204, 0.4);
}

.wizard-step-node.completed .step-number,
.step-indicator.completed .step-circle {
  border-color: var(--accent-green);
  background: var(--accent-green);
  color: #ffffff;
}

.wizard-body {
  padding: 2.5rem;
}

.wizard-step-pane {
  display: none;
}

.wizard-step-pane.active {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
}

.form-control {
  width: 100%;
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: var(--radius-md);
  padding: 0.85rem 1.1rem;
  color: var(--text-main);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px var(--accent-blue-glow);
}

.options-grid,
.options-selector-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 0.75rem;
}

.option-select-card,
.option-checkbox-card {
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  background: #ffffff;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.option-checkbox-card input[type="checkbox"] {
  accent-color: var(--accent-blue);
  width: 18px;
  height: 18px;
  margin-bottom: 0.35rem;
  cursor: pointer;
}

.option-select-card:hover,
.option-checkbox-card:hover {
  background: #f8fafc;
  border-color: #93c5fd;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.option-select-card.selected,
.option-checkbox-card.selected,
.option-checkbox-card:has(input:checked) {
  border-color: var(--accent-blue);
  background: rgba(0, 102, 204, 0.04);
  box-shadow: 0 0 0 1.5px var(--accent-blue);
}

.option-select-card h5,
.option-checkbox-card strong {
  font-size: 0.96rem;
  font-weight: 800;
  color: var(--text-main);
}

.option-select-card p,
.option-checkbox-card span {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.45;
}

.wizard-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  margin-top: 2rem;
}

/* ==========================================================================
   Trade-In & Valuation Calculator (2. El & Takas)
   ========================================================================== */
.tradein-section {
  padding: 6rem 0;
  background: #f8fafc;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}

.tradein-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.calculator-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.tradein-result-card {
  background: #ffffff;
  border: 1.5px solid #bfdbfe;
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  box-shadow: 0 20px 40px -10px rgba(0, 102, 204, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  position: relative;
}

.tradein-amount {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--accent-blue);
  font-family: var(--font-mono);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.estimate-result-box {
  background: rgba(0, 102, 204, 0.05);
  border: 1.5px dashed var(--accent-blue);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-top: 1.5rem;
  text-align: center;
  display: none;
}

.estimate-result-box.visible {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}

.estimate-value {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent-blue);
  font-family: var(--font-mono);
  margin: 0.5rem 0;
}

/* ==========================================================================
   Service Ticket & Support Module
   ========================================================================== */
.service-section,
.services-section {
  padding: 6rem 0;
  background: #ffffff;
  position: relative;
}

.service-card-grid,
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
  margin-bottom: 3.5rem;
}

.service-card {
  background: #f8fafc;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: all var(--transition-normal);
}

.service-card:hover {
  background: #ffffff;
  transform: translateY(-4px);
  border-color: #93c5fd;
  box-shadow: 0 16px 30px rgba(0, 102, 204, 0.09);
}

.service-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--accent-blue-light);
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  border: 1px solid rgba(0, 102, 204, 0.18);
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.35;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   About Section & Pillars
   ========================================================================== */
.about-section {
  padding: 6rem 0;
  background: #f8fafc;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-subtle);
}

.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.pillar-item {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.pillar-item:hover {
  border-color: #93c5fd;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.pillar-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--accent-blue-light);
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pillar-item h5,
.pillar-title {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.2rem;
}

.pillar-item p,
.pillar-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-section {
  padding: 6rem 0;
  background: #ffffff;
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
}

.contact-info-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.contact-info-item,
.contact-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.contact-icon-box,
.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--accent-blue-light);
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(0, 102, 204, 0.18);
}

.contact-info-item h4,
.contact-detail-row h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.contact-info-item p,
.contact-info-item a,
.contact-detail-row p,
.contact-detail-row a {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
  transition: color var(--transition-fast);
}

.contact-detail-row a:hover {
  color: var(--accent-blue);
}

.contact-form-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

/* ==========================================================================
   Technical Specification Dialog Modal
   ========================================================================== */
.spec-modal {
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-xl);
  background: #ffffff;
  box-shadow: var(--shadow-lg);
  color: var(--text-main);
  max-width: 840px;
  width: 90%;
  margin: auto;
  padding: 0;
  outline: none;
}

.spec-modal::backdrop {
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
}

.modal-header {
  padding: 1.5rem 2rem;
  background: #f8fafc;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--text-main);
}

.modal-close-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close-btn:hover {
  background: #e2e8f0;
  color: var(--text-main);
}

.modal-body {
  padding: 2rem;
  max-height: 75vh;
  overflow-y: auto;
}

.modal-spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.modal-spec-table tr {
  border-bottom: 1px solid #f1f5f9;
}

.modal-spec-table tr:nth-child(even) {
  background: #f8fafc;
}

.modal-spec-table th, .modal-spec-table td {
  padding: 0.8rem 1.1rem;
  text-align: left;
}

.modal-spec-table th {
  color: var(--text-dim);
  font-weight: 700;
  width: 40%;
}

.modal-spec-table td {
  color: var(--text-main);
  font-weight: 800;
  font-family: var(--font-mono);
}

.modal-features-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.modal-features-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.modal-features-list li svg {
  color: var(--accent-blue);
  flex-shrink: 0;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #f8fafc;
  border-top: 1px solid var(--border-subtle);
  padding: 5rem 0 2rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 1.75rem 2rem;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  margin-bottom: 3.5rem;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.trust-badge-item svg {
  flex-shrink: 0;
  color: var(--accent-blue);
  background: rgba(0, 102, 204, 0.08);
  padding: 8px;
  border-radius: var(--radius-md);
  box-sizing: content-box;
}

.trust-badge-text {
  display: flex;
  flex-direction: column;
}

.trust-badge-text strong {
  color: var(--text-main);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.25;
}

.trust-badge-text span {
  color: var(--text-dim);
  font-size: 0.78rem;
  line-height: 1.35;
  margin-top: 0.15rem;
}

@media (max-width: 992px) {
  .footer-trust-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 600px) {
  .footer-trust-bar {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.25rem;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-col h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-blue);
  padding-left: 0.25rem;
}

.sub-footer {
  border-top: 1px solid var(--border-subtle);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.84rem;
  color: var(--text-dim);
}

/* Floating Action Hub */
.floating-actions {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 99;
}

.fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  transition: all var(--transition-normal);
  border: none;
}

.fab:hover {
  transform: scale(1.1) translateY(-2px);
}

.fab-whatsapp {
  background: #25d366;
}

.fab-phone {
  background: var(--accent-blue);
}

.fab-top {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: var(--text-muted);
  opacity: 0;
  visibility: hidden;
}

.fab-top.visible {
  opacity: 1;
  visibility: visible;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */
@media (max-width: 1240px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .stage-platform {
    height: 440px;
  }
}

@media (max-width: 1024px) {
  .retrofit-grid, .tradein-box, .about-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-card-grid,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .top-bar { display: none; }
  .main-nav { display: none; }
  .mobile-menu-btn { display: block; }
  .header-container { height: 70px; }
  .service-card-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .comparison-columns, .form-grid-2, .about-pillars, .modal-features-list {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .stage-platform {
    height: 360px;
  }
  .podium-left, .podium-right {
    display: none;
  }
  .podium-center {
    width: 90%;
    height: 330px;
  }
  .stage-info-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .floating-actions {
    bottom: 1.5rem;
    right: 1.5rem;
  }
  .fab {
    width: 48px;
    height: 48px;
  }
}

/* ==========================================================================
   Subpages Common Architecture (Alt Sayfalar Kurumsal Tasarım)
   ========================================================================== */
.subpage-hero {
  background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);
  border-bottom: 1px solid var(--border-subtle);
  padding: 3.5rem 0 2.5rem;
  position: relative;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dim);
  margin-bottom: 1.25rem;
}

.breadcrumb-nav a {
  color: var(--accent-blue);
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

.breadcrumb-nav a:hover {
  opacity: 0.8;
}

.breadcrumb-sep {
  color: #94a3b8;
}

.subpage-hero-title {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 900;
  color: var(--text-main);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.subpage-hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 760px;
  line-height: 1.65;
}

/* Legal & Policy Page Content */
.legal-page-container {
  padding: 4.5rem 0 6rem;
  background: #ffffff;
}

.legal-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  box-shadow: var(--shadow-sm);
  max-width: 900px;
  margin-inline: auto;
}

.legal-card h2 {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--text-main);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal-card h2:first-of-type {
  margin-top: 0;
}

.legal-card p, .legal-card li {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.legal-card ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

/* 404 Error Showcase */
.error-404-section {
  padding: 6rem 0 8rem;
  text-align: center;
  background: #ffffff;
}

.error-404-box {
  max-width: 600px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.error-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 6rem;
  font-weight: 900;
  color: var(--accent-blue);
  line-height: 1;
  margin-bottom: 1.5rem;
  text-shadow: 0 10px 30px rgba(0, 102, 204, 0.2);
}

.error-title {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.error-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 2rem;
}

/* Interactive Map Container */
.map-embed-wrapper {
  position: relative;
  width: 100%;
  height: 460px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
  margin-top: 2.5rem;
}

.map-embed-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-overlay-card {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.25rem;
  max-width: 340px;
  box-shadow: 0 12px 30px -5px rgba(0, 0, 0, 0.45);
  z-index: 5;
  color: #fff;
}

.map-overlay-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 0.4rem;
}

.map-overlay-header .pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.map-overlay-card p {
  font-size: 0.82rem;
  color: #94a3b8;
  line-height: 1.45;
  margin-bottom: 0.85rem;
}

.map-overlay-card .btn {
  width: 100%;
  justify-content: center;
  font-size: 0.82rem;
  padding: 0.55rem 0.85rem;
}

@media (max-width: 640px) {
  .map-overlay-card {
    position: static;
    border-radius: 0;
    max-width: 100%;
    margin-top: -5px;
  }
}

/* Timeline Showcase (for Hakkımızda) */
.corporate-timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  margin: 3rem 0;
}

.timeline-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 2rem;
  align-items: flex-start;
  position: relative;
}

.timeline-year {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--accent-blue);
  font-family: var(--font-mono);
  background: var(--accent-blue-light);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  text-align: center;
  border: 1px solid rgba(0, 102, 204, 0.2);
}

.timeline-content {
  background: #f8fafc;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.timeline-content h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.timeline-content p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 640px) {
  .timeline-item {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .legal-card {
    padding: 1.75rem;
  }
}

/* ==========================================
   Machine Detail Page Styles
   ========================================== */
.machine-detail-section {
  padding: 3.5rem 0 5rem;
}

.machine-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3.5rem;
  align-items: start;
  margin-bottom: 4.5rem;
}

.machine-media-card {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  text-align: center;
}

.machine-media-card img {
  max-width: 100%;
  height: 420px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.machine-media-card:hover img {
  transform: scale(1.03);
}

.machine-meta-badges {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  display: flex;
  gap: 0.5rem;
}

.machine-origin-tag {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  background: #f1f5f9;
  border-radius: var(--radius-sm);
  color: var(--text-main);
}

.machine-info-col h1 {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--text-main);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.machine-tagline {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent-blue);
  margin-bottom: 1rem;
}

.machine-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.machine-hud-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.machine-hud-cell {
  background: #f8fafc;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
}

.machine-hud-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dim);
  margin-bottom: 0.25rem;
}

.machine-hud-val {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-main);
  font-family: var(--font-mono);
}

.stock-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(16, 185, 129, 0.1);
  color: #065f46;
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.machine-cta-cluster {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Specs Table Styling */
.specs-table-container {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  margin-bottom: 4rem;
}

.specs-table-container table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.specs-table-container th,
.specs-table-container td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.95rem;
}

.specs-table-container th {
  background: #f8fafc;
  font-weight: 800;
  color: var(--text-main);
  width: 35%;
}

.specs-table-container td {
  color: var(--text-main);
  font-weight: 600;
  font-family: var(--font-mono);
}

.specs-table-container tr:last-child th,
.specs-table-container tr:last-child td {
  border-bottom: none;
}

.specs-table-container tr:hover td {
  background: #f0f7ff;
}

/* Feature Check Grid */
.feature-check-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  margin-bottom: 4rem;
}

.feature-check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.15rem;
}

.feature-check-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  color: var(--accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-check-item span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.4;
}

@media (max-width: 992px) {
  .machine-detail-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .machine-media-card img {
    height: 320px;
  }
}
