/* ═══════════════════════════════════════════════
   ÖnÇağ Mühendislik — Design System v3.0
   Clean corporate style, gazioglu-inspired
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@700;800&display=swap');

:root {
  --primary: #0a5ea8;
  --primary-2: #0e74c8;
  --primary-light: #dbeafe;
  --primary-ultra-light: #eff6ff;
  --dark: #0b1a2e;
  --dark-2: #0f2847;
  --text: #0f172a;
  --text-secondary: #475569;
  --muted: #64748b;
  --line: #e2e8f0;
  --bg-soft: #f8fafc;
  --white: #ffffff;
  --green: #10b981;
  --green-light: #ecfdf5;
  --accent: #f59e0b;
  --shadow-sm: 0 2px 8px rgba(15,23,42,.05);
  --shadow: 0 8px 30px rgba(15,23,42,.08);
  --shadow-lg: 0 20px 50px rgba(15,23,42,.12);
  --radius: 20px;
  --radius-sm: 12px;
  --container: 1240px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }
h1, h2, h3, h4 { line-height: 1.2; font-weight: 800; }
h1, h2 { font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif; }
h1 { font-size: clamp(30px, 4.5vw, 50px); }
h2 { font-size: clamp(26px, 3.5vw, 40px); }
h3 { font-size: clamp(18px, 2.5vw, 26px); }

/* ─── Layout ─── */
.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ─── Topbar ─── */
.topbar {
  background: var(--dark);
  color: rgba(255,255,255,.8);
  font-size: 13px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  gap: 16px;
}
.topbar a { color: rgba(255,255,255,.9); transition: var(--transition); }
.topbar a:hover { color: #fff; }
.topbar .sep { opacity: .4; margin: 0 6px; }
.topbar-right { color: rgba(255,255,255,.6); }

/* ─── Header ─── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 0;
  height: 80px;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  transition: var(--transition);
}
.logo-wrap:hover { opacity: .85; }
.logo-wrap img { height: 60px; width: auto; object-fit: contain; background: #fff; border-radius: 10px; padding: 4px 8px; }

/* ─── Navigation ─── */
.nav {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav > a,
.nav > .nav-item > .nav-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  padding: 24px 18px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
  position: relative;
  border: none;
  background: none;
  cursor: pointer;
}
.nav > a::after,
.nav > .nav-item > .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 18px;
  right: 18px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px 3px 0 0;
  transform: scaleX(0);
  transition: var(--transition);
}
.nav > a:hover,
.nav > .nav-item:hover > .nav-link {
  color: var(--primary);
}
.nav > a:hover::after,
.nav > .nav-item:hover > .nav-link::after {
  transform: scaleX(1);
}
.nav .arrow {
  font-size: 10px;
  transition: var(--transition);
}
.nav-item:hover .arrow { transform: rotate(180deg); }
.nav-item { position: relative; }

/* Dropdown */
.dropdown {
  position: absolute;
  left: 50%;
  top: 100%;
  width: 600px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: all .25s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.dropdown-section {}
.dropdown-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .08em;
  padding-bottom: 10px;
  margin-bottom: 8px;
  border-bottom: 2px solid var(--primary-light);
}
.dropdown a {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 7px 0;
  transition: var(--transition);
}
.dropdown a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.menu-toggle:hover { background: var(--bg-soft); }
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
  position: relative;
}
.menu-toggle span::before,
.menu-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
}
.menu-toggle span::before { top: -7px; }
.menu-toggle span::after { top: 7px; }
.menu-toggle.active span { background: transparent; }
.menu-toggle.active span::before { top: 0; transform: rotate(45deg); }
.menu-toggle.active span::after { top: 0; transform: rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 150;
  padding: 0 24px 40px;
  overflow-y: auto;
  flex-direction: column;
  gap: 4px;
}
body.menu-open { overflow: hidden; }
body.menu-open .topbar { display: none; }
body.menu-open .header { position: fixed; top: 0; left: 0; right: 0; }
.mobile-nav.open { display: flex; }
.mobile-nav > a {
  display: block;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.mobile-nav > a:hover {
  background: var(--primary-ultra-light);
  color: var(--primary);
}
.mobile-nav .mobile-section {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 20px 20px 6px;
}
.mobile-nav-cta {
  display: none;
  padding: 8px 0 10px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 8px;
  background: var(--bg-soft);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}
@media (max-width: 1100px) {
  .mobile-nav-cta { display: block; }
}

/* ─── Actions ─── */
.actions { display: flex; gap: 10px; align-items: center; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .25s cubic-bezier(.4,0,.2,1);
  text-transform: none;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-2); box-shadow: 0 8px 24px rgba(10,94,168,.25); }
.btn-white { background: #fff; color: var(--primary); }
.btn-white:hover { background: #f0f9ff; }
.btn-outline { border-color: var(--line); color: var(--text); background: #fff; }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-whatsapp { background: var(--green); color: #fff; }
.btn-whatsapp:hover { background: #059669; box-shadow: 0 8px 24px rgba(16,185,129,.25); }
.btn-lg { padding: 16px 32px; font-size: 16px; border-radius: 10px; }

/* ─── Hero Section ─── */
.hero-wrap {
  padding: 0;
  position: relative;
}
.hero-slider { position: relative; overflow: hidden; }
.slide {
  display: none;
  min-height: 92vh;
  padding: 0;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,26,46,.82) 0%, rgba(10,94,168,.55) 50%, rgba(11,26,46,.7) 100%);
  z-index: 1;
}
.slide::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to top, rgba(11,26,46,.9), transparent);
  z-index: 1;
}
.slide.active { display: flex; align-items: center; animation: fadeSlide .8s ease; }
.slide.active::before { animation: kenBurns 20s ease-in-out infinite alternate; }
@keyframes fadeSlide {
  from { opacity: 0; transform: scale(1.02); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes kenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.06); }
}
.slide .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 80px;
  max-width: 820px;
}
.slide-content { max-width: 700px; }
.eyebrow, .section-eyebrow {
  display: inline-flex;
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--primary);
  color: #fff;
}
.slide .eyebrow {
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  color: #93c5fd;
}
.badge {
  display: inline-flex;
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text-secondary);
  margin-top: 12px;
}
.slide h1 {
  margin: 24px 0 0;
  color: #fff;
  font-size: 52px;
  line-height: 1.15;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.slide p {
  color: rgba(255,255,255,.8);
  font-size: 18px;
  line-height: 1.8;
  margin: 20px 0 0;
  max-width: 580px;
}
.slide-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px; }
.slide .slide-actions .btn-outline {
  border: 2px solid rgba(255,255,255,.5);
  color: #fff;
  background: transparent;
  backdrop-filter: blur(6px);
}
.slide .slide-actions .btn-outline:hover {
  background: #fff;
  color: var(--dark);
  border-color: #fff;
}
.slide-visual { display: none; }
.hero-badge-bar {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  z-index: 3;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-badge-bar .container {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 18px 24px;
  max-width: 100%;
}
.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.85);
  font-size: 14px;
  font-weight: 500;
}
.hero-badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #93c5fd;
}
.slider-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 80px;
  display: flex;
  gap: 10px;
  z-index: 4;
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}
.dot:hover { background: rgba(255,255,255,.5); }
.dot.active { background: #fff; width: 36px; border-radius: 6px; box-shadow: 0 0 12px rgba(255,255,255,.4); }
.slider-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 24px;
  pointer-events: none;
  z-index: 4;
}
.icon-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  color: #fff;
  cursor: pointer;
  font-size: 22px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}
.icon-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); box-shadow: 0 4px 20px rgba(10,94,168,.4); }

/* ─── About Preview Section ─── */
.about-preview { padding: 100px 0; }
.about-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .05em;
}
.about-preview h2 { margin: 20px 0 16px; }
.about-preview p { color: var(--text-secondary); font-size: 16px; line-height: 1.8; }
.about-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}
.about-box {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 20px;
  transition: var(--transition);
}
.about-box:hover { border-color: var(--primary-light); transform: translateY(-2px); }
.about-box h4 { font-size: 15px; margin-bottom: 6px; color: var(--primary); }
.about-box p { font-size: 13px; color: var(--muted); line-height: 1.6; margin: 0; }
.about-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.about-counter {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 20px 28px;
  text-align: center;
}
.about-counter .number { font-size: 42px; font-weight: 900; line-height: 1; }
.about-counter .label { font-size: 13px; font-weight: 500; opacity: .85; margin-top: 4px; }

/* ─── Sections ─── */
.section { padding: 80px 0; }
.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}
.section-head .section-eyebrow { margin-bottom: 16px; }
.section-head h2 { margin: 0; }
.section-head p { color: var(--muted); margin-top: 14px; font-size: 16px; line-height: 1.7; }
.section-head-left {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
}
.section-head-left h2 { margin: 10px 0 0; }

/* ─── Service / Solution Cards ─── */
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}
.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--primary-ultra-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
}
.service-card h3 { font-size: 20px; margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: 14px; line-height: 1.7; }
.service-card .btn { margin-top: 20px; }

/* ─── Process / Steps ─── */
.process-section {
  background: linear-gradient(170deg, #f0f7ff 0%, var(--bg-soft) 50%, #f0fdf4 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.process-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(37,99,235,.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.process-step {
  text-align: center;
  position: relative;
  background: #fff;
  border-radius: 18px;
  padding: 36px 22px 30px;
  border: 1px solid rgba(15,23,42,.06);
  box-shadow: 0 4px 20px rgba(15,23,42,.04);
  transition: transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s ease, border-color .35s ease;
}
.process-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(15,23,42,.1);
  border-color: transparent;
}
/* Color accents per step */
.process-step[data-color="blue"] { border-top: 3px solid #2563eb; }
.process-step[data-color="blue"]:hover { box-shadow: 0 16px 40px rgba(37,99,235,.12); }
.process-step[data-color="teal"] { border-top: 3px solid #0d9488; }
.process-step[data-color="teal"]:hover { box-shadow: 0 16px 40px rgba(13,148,136,.12); }
.process-step[data-color="orange"] { border-top: 3px solid #ea580c; }
.process-step[data-color="orange"]:hover { box-shadow: 0 16px 40px rgba(234,88,12,.12); }
.process-step[data-color="green"] { border-top: 3px solid #16a34a; }
.process-step[data-color="green"]:hover { box-shadow: 0 16px 40px rgba(22,163,74,.12); }
/* Connector line between steps */
.step-connector {
  display: none;
}
.process-step::after {
  content: '';
  position: absolute;
  top: 58px;
  right: -11px;
  width: 22px;
  height: 2px;
  background: linear-gradient(90deg, #93c5fd, #5eead4);
  z-index: 2;
}
.process-step:last-child::after { display: none; }
/* Icon wrapper — circle with icon inside */
.step-icon-wrap {
  position: relative;
  width: 76px;
  height: 76px;
  margin: 0 auto 22px;
}
.step-number {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 800;
  transition: transform .4s cubic-bezier(.4,0,.2,1), box-shadow .4s ease;
}
.process-step[data-color="blue"] .step-number {
  background: linear-gradient(135deg, #2563eb, #60a5fa);
  box-shadow: 0 8px 24px rgba(37,99,235,.25);
}
.process-step[data-color="teal"] .step-number {
  background: linear-gradient(135deg, #0d9488, #5eead4);
  box-shadow: 0 8px 24px rgba(13,148,136,.25);
}
.process-step[data-color="orange"] .step-number {
  background: linear-gradient(135deg, #ea580c, #fb923c);
  box-shadow: 0 8px 24px rgba(234,88,12,.25);
}
.process-step[data-color="green"] .step-number {
  background: linear-gradient(135deg, #16a34a, #4ade80);
  box-shadow: 0 8px 24px rgba(22,163,74,.25);
}
.process-step:hover .step-number {
  transform: scale(1.12) rotate(-5deg);
}
/* SVG icon overlay on the circle */
.step-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(255,255,255,.92);
  pointer-events: none;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.15));
}
/* Hide the number text when icon is present */
.step-icon-wrap .step-number {
  font-size: 0;
}
/* Step number as small badge */
.step-icon-wrap::after {
  content: attr(data-step);
  position: absolute;
  top: -4px;
  right: -4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  color: #0f172a;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(15,23,42,.12);
  z-index: 3;
}
.process-step h3 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #0f172a;
}
.process-step p { color: var(--muted); font-size: 14px; line-height: 1.65; }

/* ─── Stats Band ─── */
.stats-band { background: var(--dark); color: #fff; padding: 60px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item { position: relative; }
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255,255,255,.12);
}
.stat-number { font-size: 48px; font-weight: 900; color: #93c5fd; line-height: 1; }
.stat-label { font-size: 14px; color: #94a3b8; margin-top: 8px; font-weight: 500; }

/* ─── Product Cards ─── */
.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: var(--transition);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-media {
  height: 260px;
  background: linear-gradient(180deg, #f8fbff 0%, #edf6fc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.card-media img { max-height: 100%; object-fit: contain; }
.card-body { padding: 24px; }
.card .mini {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
}
.card h3 { margin: 8px 0 0; }
.card p { margin: 10px 0 0; color: var(--muted); line-height: 1.7; font-size: 14px; }
.tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.tag {
  background: var(--bg-soft);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
}
.card-actions { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }

/* ─── Image Cards (Solution areas) ─── */
.image-card {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.image-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.image-card img { width: 100%; height: 220px; object-fit: cover; transition: var(--transition); }
.image-card:hover img { transform: scale(1.03); }
.image-card .body { padding: 24px; }
.image-card h3 { margin: 0; }
.image-card p { color: var(--muted); line-height: 1.7; margin: 10px 0 0; font-size: 14px; }

/* ─── Campaign Band ─── */
.campaign-band {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
  color: #fff;
}
.campaign-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.campaign-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.campaign-card h3 { margin: 14px 0 0; color: var(--text); }
.campaign-card p { color: var(--text-secondary); line-height: 1.7; margin: 12px 0 20px; }

/* ─── CTA Section ─── */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark-2) 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}
.cta-section h2 { color: #fff; margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,.8); font-size: 17px; max-width: 600px; margin: 0 auto 32px; line-height: 1.8; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── Lead / Form Section ─── */
.lead-wrap { background: var(--bg-soft); padding: 80px 0; }
.lead-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: start; }
.lead-info {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.lead-info h2 { font-size: 32px; margin: 12px 0 0; color: #fff; }
.lead-points { margin-top: 24px; display: grid; gap: 14px; }
.lead-points div { color: #cbd5e1; line-height: 1.7; }

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.span-2 { grid-column: span 2; }
input, textarea, select {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
  font: inherit;
  font-size: 14px;
  outline: none;
  transition: var(--transition);
  background: #fff;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(10,94,168,.1);
}
input::placeholder, textarea::placeholder { color: #94a3b8; }
textarea { min-height: 120px; resize: vertical; }
.form-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; }
.form-note { margin-top: 14px; font-size: 12px; color: var(--muted); }
.form-note a { color: var(--primary); font-weight: 600; }

/* Trust Signals */
.form-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
}
.trust-icon {
  font-size: 14px;
  line-height: 1;
  flex-shrink: 0;
}

/* ─── Detail / Product Pages ─── */
.breadcrumb { color: var(--muted); font-size: 13px; margin-bottom: 16px; font-weight: 500; }
.breadcrumb a { color: var(--primary); }
.breadcrumb a:hover { text-decoration: underline; }
.detail-hero { padding: 60px 0 80px; }
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.detail-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #f8fbff 0%, #edf6fc 100%);
  padding: 40px;
  border: 1px solid var(--line);
}
.detail-media img { max-height: 400px; object-fit: contain; }
.detail-copy h1 { font-size: clamp(30px, 4vw, 44px); margin: 14px 0 0; }
.detail-copy p { color: var(--text-secondary); font-size: 17px; line-height: 1.8; margin: 14px 0 0; }

/* Feature boxes */
.feature-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.feature-box:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.feature-box h3 { font-size: 18px; margin: 0 0 10px; font-weight: 700; }
.feature-box p { margin: 0; color: var(--muted); line-height: 1.7; font-size: 14px; }
.icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
}

/* Spec Table */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.spec-table th, .spec-table td { padding: 16px 20px; border-bottom: 1px solid var(--line); text-align: left; font-size: 14px; }
.spec-table th { background: var(--bg-soft); width: 35%; font-weight: 600; color: var(--text); }
.spec-table td { color: var(--text-secondary); }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: none; }

/* CTA Band (product pages) */
.cta-band { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%); color: #fff; }
.cta-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items: center; }
.cta-box {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(12px);
  box-shadow: none;
  border-radius: var(--radius);
  padding: 32px;
}
.cta-box h3 { font-size: 28px; margin: 0 0 12px; color: #fff; }
.cta-box p { color: rgba(255,255,255,.88); line-height: 1.75; }

/* ─── About / Team Page ─── */
.about-hero {
  background: linear-gradient(135deg, #f0f7ff 0%, #fff 50%, #eef6fc 100%);
  padding: 80px 0 60px;
}
.about-hero h1 { margin: 14px 0 0; }
.about-hero p { color: var(--text-secondary); font-size: 18px; line-height: 1.8; margin: 16px 0 0; max-width: 700px; }

.timeline { position: relative; margin-top: 40px; }
.timeline-item {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.timeline-item:last-child { border-bottom: none; }
.timeline-year {
  min-width: 100px;
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.timeline-content h3 { font-size: 20px; margin: 0 0 8px; }
.timeline-content p { color: var(--text-secondary); line-height: 1.7; font-size: 15px; }

.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.team-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.team-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-ultra-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 36px;
  color: var(--primary);
  font-weight: 800;
}
.team-card h3 { font-size: 18px; margin: 0 0 4px; }
.team-role { font-size: 13px; font-weight: 600; color: var(--primary); text-transform: uppercase; letter-spacing: .05em; }
.team-bio { margin-top: 12px; font-size: 14px; color: var(--muted); line-height: 1.6; }

/* Values Grid */
.value-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--primary-light); }
.value-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--primary-ultra-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}
.value-card h3 { font-size: 18px; margin: 0 0 10px; }
.value-card p { color: var(--muted); font-size: 14px; line-height: 1.7; }

/* ─── Footer ─── */
.footer {
  background: #060d18;
  color: #cbd5e1;
  padding: 72px 0 40px;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(147,197,253,.3) 50%, transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.footer-col { display: flex; flex-direction: column; }
.footer-logo {
  display: inline-block;
  margin-bottom: 20px;
  position: relative;
}
.footer-logo img {
  height: 64px;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
  transition: var(--transition);
}
.footer-logo:hover img {
  border-color: rgba(147,197,253,.4);
  box-shadow: 0 4px 24px rgba(10,94,168,.25);
}
.footer h4 {
  color: #fff;
  margin: 0 0 18px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  position: relative;
  padding-bottom: 14px;
}
.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 32px; height: 2px;
  background: linear-gradient(90deg, #93c5fd, var(--primary));
  border-radius: 2px;
}
.footer .footer-h4-mt { margin-top: 28px; }
.footer p, .footer a, .footer-contact div { color: #8b9cb5; line-height: 1.8; font-size: 14px; }
.footer-about > p { font-size: 14px; line-height: 1.8; margin-bottom: 0; }
.footer-links { display: grid; gap: 8px; }
.footer-links a { transition: var(--transition); padding: 2px 0; }
.footer-links a:hover { color: #93c5fd; transform: translateX(4px); }
.footer-contact { display: grid; gap: 10px; }
.footer-contact strong { display: block; color: #93c5fd; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 2px; font-weight: 600; }
.footer-social { display: flex; gap: 10px; margin-top: 12px; }
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #8b9cb5;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); color: #fff; border-color: var(--primary); transform: translateY(-2px); }
.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #5a6b80;
  letter-spacing: .02em;
}

/* ─── WhatsApp Float ─── */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 120;
  background: #25d366;
  color: #fff;
  border-radius: 50px;
  padding: 14px 22px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.whatsapp-float:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 10px 32px rgba(37,211,102,.5); }

/* ─── Scroll Animations ─── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── Metric ─── */
.metric { border-radius: var(--radius); border: 1px solid var(--line); padding: 24px; background: #fff; }
.metric strong { display: block; font-size: 32px; color: var(--primary); margin-bottom: 6px; font-weight: 800; }
.metric span { font-size: 13px; color: var(--muted); font-weight: 500; }
.muted { color: var(--muted); line-height: 1.75; }

/* Side panels (kept for compatibility) */
.side-grid { display: grid; gap: 20px; }
.panel { padding: 28px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--line); }
.panel h2 { font-size: 28px; margin: 12px 0 0; }
.panel-list { display: grid; gap: 14px; margin-top: 22px; }
.panel-item { display: flex; gap: 14px; padding: 16px; border-radius: var(--radius-sm); background: var(--bg-soft); }
.panel-icon {
  width: 44px; height: 44px; min-width: 44px; border-radius: 14px;
  background: var(--primary-light); color: var(--primary);
  display: grid; place-items: center; font-size: 18px;
}
.panel-item strong { display: block; margin-bottom: 4px; font-size: 14px; }
.panel-item div:last-child { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }
.panel.blue { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%); color: #fff; box-shadow: 0 20px 50px rgba(10,94,168,.24); }
.chips { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 18px; }
.chip { background: rgba(255,255,255,.14); color: #fff; border-radius: 6px; padding: 8px 14px; font-size: 12px; font-weight: 600; }

/* ─── Map Section ─── */
.map-section {
  padding: 0;
  background: linear-gradient(160deg, #0c2340 0%, #0a3a6b 40%, #0c2340 100%);
  position: relative;
  overflow: hidden;
}
.map-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: 520px;
}
.map-info {
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  position: relative;
  z-index: 2;
}
.map-info .section-eyebrow {
  background: rgba(255,255,255,.1);
  color: #93c5fd;
}
.map-info h2 {
  margin: 16px 0 12px;
  color: #fff;
  font-size: clamp(24px, 3vw, 34px);
}
.map-info > p {
  color: rgba(255,255,255,.65);
  line-height: 1.8;
  margin-bottom: 32px;
  font-size: 15px;
}
.map-contact-list { display: grid; gap: 20px; }
.map-contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.map-contact-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  color: #93c5fd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: var(--transition);
}
.map-contact-item:hover .map-contact-icon {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.map-contact-item strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #93c5fd;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 4px;
}
.map-contact-item span { font-size: 14px; color: rgba(255,255,255,.7); line-height: 1.6; }
.map-contact-item a { font-size: 14px; color: rgba(255,255,255,.85); transition: var(--transition); }
.map-contact-item a:hover { color: #fff; }
.map-directions {
  margin-top: 32px;
  display: inline-flex;
}
.map-embed {
  position: relative;
  min-height: 520px;
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
  display: block;
  filter: contrast(1.05) saturate(.9);
}

/* ─── Responsive ─── */
@media (max-width: 1100px) {
  .slide .container,
  .lead-grid,
  .grid-3,
  .grid-2,
  .footer-grid,
  .detail-grid,
  .cta-grid,
  .stats-grid,
  .about-preview-grid,
  .hero-grid { grid-template-columns: 1fr; }
  .dropdown { width: 92vw; }
  .map-grid { grid-template-columns: 1fr; }
  .map-embed { min-height: 350px; }
  .map-embed iframe { min-height: 350px; }
  .map-info { padding: 48px 32px; }
  .nav { display: none; }
  .menu-toggle { display: flex; }
  .desktop-only { display: none; }
  /* Mobil header — Teklif İste gizle, sadece hamburger */
  .actions { display: none; }
  .header-inner { gap: 16px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:not(:last-child)::after { display: none; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step::after { display: none; }
  .slider-nav { display: none; }
  .hero-badge-bar .container { gap: 24px; flex-wrap: wrap; justify-content: center; }
  .slide h1 { font-size: 38px; }
  .slide { min-height: 75vh; }
  .slider-dots { bottom: 70px; }
  /* Butonların taşmasını engelle */
  .slide-actions { gap: 10px; }
  .btn-lg { padding: 14px 24px; font-size: 15px; }
  .card-actions { flex-wrap: wrap; }
  .card-actions .btn { flex: 1 1 auto; min-width: 0; text-align: center; }
}

@media (max-width: 768px) {
  .section, .lead-wrap, .detail-hero, .about-hero, .about-preview, .process-section { padding: 48px 0; }

  /* Hero slider */
  .slide { padding: 40px 0; min-height: 70vh; }
  .slide h1 { font-size: 28px; }
  .slide p { font-size: 14px; max-width: 100%; }
  .slide .container { padding-top: 60px; padding-bottom: 100px; }
  .slide-actions { flex-direction: column; gap: 10px; width: 100%; }
  .slide-actions .btn { width: 100%; justify-content: center; }
  .btn-lg { padding: 14px 20px; font-size: 14px; }

  /* Hero badge bar */
  .hero-badge-bar .container { gap: 12px; padding: 12px 16px; }
  .hero-badge-item { font-size: 11px; gap: 6px; }
  .hero-badge-icon { width: 28px; height: 28px; font-size: 13px; border-radius: 8px; }
  .slider-dots { bottom: 58px; }

  /* Header */
  .header-inner { height: 64px; }
  .header-inner, .topbar-inner { flex-direction: row; }
  .logo-wrap img { height: 44px; }
  .mobile-nav { top: 64px; }

  /* Grid systems */
  .grid-3, .grid-4, .about-boxes { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }

  /* Form */
  .form-grid { grid-template-columns: 1fr; }
  .span-2 { grid-column: span 1; }
  .form-actions { flex-direction: column; }
  .form-actions .btn { width: 100%; justify-content: center; }

  /* Cards */
  .card-actions { flex-direction: column; gap: 8px; }
  .card-actions .btn { width: 100%; justify-content: center; }
  .card-body { padding: 20px; }

  /* Service cards */
  .service-card { padding: 28px 20px; }
  .service-card .btn { width: 100%; }

  /* About preview */
  .about-preview-grid { gap: 32px; }
  .about-image img { height: 320px !important; }

  /* Stats */
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stat-number { font-size: 32px; }
  .stat-label { font-size: 12px; }

  /* Lead / Form section */
  .lead-grid { gap: 24px; }
  .lead-info { padding: 28px 24px; }
  .lead-info h2 { font-size: 24px; }
  .form-card { padding: 24px 20px; }

  /* Testimonials */
  .testimonial-card { padding: 24px 18px; }
  .testimonial-text { font-size: 14px; }
  .testimonial-card::before { font-size: 80px; top: -5px; right: 10px; }

  /* Partners */
  .partners-section { padding: 32px 0; }
  .partners-grid { gap: 10px; }
  .partners-grid .partner-item { padding: 12px 18px; font-size: 13px; }
  .partners-track .partner-item { width: 170px; height: 85px; }

  /* Map */
  .map-info { padding: 32px 20px; }
  .map-info h2 { font-size: 24px; }
  .map-contact-icon { width: 40px; height: 40px; min-width: 40px; font-size: 16px; }
  .map-directions .btn { width: 100%; justify-content: center; }

  /* Section heads */
  .section-head { margin-bottom: 32px; }
  .section-head-left { flex-direction: column; align-items: flex-start; }

  /* Process */
  .process-grid { grid-template-columns: 1fr; }
  .process-step { padding: 28px 18px 24px; }
  .step-icon-wrap { width: 64px; height: 64px; }
  .step-number { width: 64px; height: 64px; font-size: 20px; }
  .step-icon { width: 24px; height: 24px; }

  /* Image cards */
  .image-card img { height: 180px; }
  .image-card .body { padding: 18px; }

  /* CTA sections */
  .cta-buttons { flex-direction: column; align-items: stretch; }
  .cta-buttons .btn { width: 100%; justify-content: center; }

  /* Timeline */
  .timeline-item { flex-direction: column; gap: 8px; }

  /* Team */
  .team-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer { padding: 48px 0 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .footer-social { justify-content: flex-start; }

  /* Topbar */
  .topbar { font-size: 11px; }
  .topbar-right { display: none; }

  /* WhatsApp float */
  .whatsapp-float { padding: 12px 16px; font-size: 13px; right: 16px; bottom: 16px; }
  .dark-mode-toggle { right: 150px; bottom: 16px; width: 38px; height: 38px; border-radius: 50px; }
  .dark-mode-toggle .toggle-icon { font-size: 17px; }
}

/* Extra small screens */
@media (max-width: 480px) {
  .container { width: calc(100% - 24px); }
  .slide h1 { font-size: 24px; }
  .slide p { font-size: 13px; }
  .slide .container { padding-top: 50px; padding-bottom: 90px; }
  .hero-badge-bar .container { gap: 8px; padding: 10px 12px; }
  .hero-badge-item { font-size: 10px; }
  .hero-badge-item span { display: none; }
  .hero-badge-icon { width: 32px; height: 32px; font-size: 15px; }
  .header-inner { height: 56px; gap: 10px; }
  .logo-wrap img { height: 38px; padding: 3px 6px; }
  .mobile-nav { top: 56px; }
  .dark-mode-toggle { width: 34px; height: 34px; right: 130px; bottom: 16px; }
  .dark-mode-toggle .toggle-icon { font-size: 15px; }
  .stat-number { font-size: 28px; }
  .about-badge { font-size: 11px; padding: 8px 14px; }
  .about-counter { padding: 14px 18px; bottom: 16px; right: 16px; }
  .about-counter .number { font-size: 32px; }
  .about-counter .label { font-size: 11px; }
  .section-head h2 { font-size: 22px; }
  .partners-grid { flex-direction: column; align-items: stretch; }
  .partners-grid .partner-item { text-align: center; }
  .testimonial-author { gap: 10px; }
  .testimonial-avatar { width: 40px; height: 40px; font-size: 14px; }
  .map-contact-item { gap: 10px; }
}

/* ═══════════════════════════════════════════════
   Dark Mode Toggle Button
   ═══════════════════════════════════════════════ */
.dark-mode-toggle {
  width: 44px;
  height: 44px;
  border-radius: 50px;
  border: 1.5px solid var(--line);
  background: var(--bg-soft);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 24px;
  right: 180px;
  z-index: 9999;
  overflow: hidden;
  transition: all .3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,.15);
}
.dark-mode-toggle:hover {
  border-color: var(--primary);
  background: var(--primary-ultra-light);
  transform: scale(1.05);
}
.toggle-icon {
  position: absolute;
  font-size: 20px;
  transition: all .4s cubic-bezier(.4,0,.2,1);
}
.toggle-icon.sun {
  color: #f59e0b;
  opacity: 1;
  transform: rotate(0deg) scale(1);
}
.toggle-icon.moon {
  color: #93c5fd;
  opacity: 0;
  transform: rotate(-90deg) scale(0.5);
}

/* ═══════════════════════════════════════════════
   DARK MODE THEME — Full Overhaul
   ═══════════════════════════════════════════════ */
[data-theme="dark"] {
  --text: #f1f5f9;
  --text-secondary: #b8c9db;
  --muted: #8da2b8;
  --line: rgba(255,255,255,.12);
  --bg-soft: #101d30;
  --white: #0c1424;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.3);
  --shadow: 0 8px 30px rgba(0,0,0,.4);
  --shadow-lg: 0 20px 50px rgba(0,0,0,.5);
  --primary-ultra-light: rgba(96,165,250,.12);
  --primary-light: rgba(96,165,250,.2);
  --primary: #3b8ed4;
  --primary-2: #60a5fa;
}
[data-theme="dark"] body {
  background: #0c1424;
  color: #f1f5f9;
}

/* ─── Header & Topbar ─── */
[data-theme="dark"] .header {
  background: rgba(12,20,36,.97);
  border-bottom-color: rgba(255,255,255,.08);
}
[data-theme="dark"] .topbar {
  background: #070e1a;
  border-bottom-color: rgba(255,255,255,.06);
}
[data-theme="dark"] .topbar a { color: #b8c9db; }
[data-theme="dark"] .topbar a:hover { color: #fff; }
[data-theme="dark"] .topbar-right { color: #8da2b8; }

/* ─── Navigation ─── */
[data-theme="dark"] .nav > a,
[data-theme="dark"] .nav > .nav-item > .nav-link {
  color: #d1dce8;
}
[data-theme="dark"] .nav > a:hover,
[data-theme="dark"] .nav > .nav-item:hover > .nav-link {
  color: #60a5fa;
}
[data-theme="dark"] .dropdown {
  background: #14243a;
  border-color: rgba(255,255,255,.1);
  box-shadow: 0 20px 50px rgba(0,0,0,.6);
}
[data-theme="dark"] .dropdown-title { color: #60a5fa; border-bottom-color: rgba(96,165,250,.2); }
[data-theme="dark"] .dropdown a { color: #b8c9db; }
[data-theme="dark"] .dropdown a:hover { color: #60a5fa; }

/* ─── Mobile Nav ─── */
[data-theme="dark"] .mobile-nav { background: #0c1424; }
[data-theme="dark"] .mobile-nav > a { color: #d1dce8; }
[data-theme="dark"] .mobile-nav > a:hover { background: rgba(96,165,250,.1); color: #60a5fa; }
[data-theme="dark"] .mobile-nav .mobile-section { color: #8da2b8; }

/* ─── Dark Mode Toggle ─── */
[data-theme="dark"] .dark-mode-toggle {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.14);
}
[data-theme="dark"] .dark-mode-toggle:hover {
  background: rgba(96,165,250,.12);
  border-color: #60a5fa;
}
[data-theme="dark"] .toggle-icon.sun { opacity: 0; transform: rotate(90deg) scale(0.5); }
[data-theme="dark"] .toggle-icon.moon { opacity: 1; transform: rotate(0deg) scale(1); }

/* ─── Hamburger ─── */
[data-theme="dark"] .menu-toggle span,
[data-theme="dark"] .menu-toggle span::before,
[data-theme="dark"] .menu-toggle span::after { background: #d1dce8; }
[data-theme="dark"] .menu-toggle.active span { background: transparent; }
[data-theme="dark"] .menu-toggle:hover { background: rgba(255,255,255,.06); }

/* Logo visibility in dark mode */
[data-theme="dark"] .logo-wrap img {
  background: #fff;
  border-radius: 10px;
  padding: 4px 8px;
}

/* ─── Buttons ─── */
[data-theme="dark"] .btn-outline {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.18);
  color: #d1dce8;
}
[data-theme="dark"] .btn-outline:hover {
  background: rgba(96,165,250,.12);
  border-color: #60a5fa;
  color: #60a5fa;
}

/* ─── About Preview ─── */
[data-theme="dark"] .about-preview { background: #0c1424; }
[data-theme="dark"] .about-preview h2 { color: #f1f5f9; }
[data-theme="dark"] .about-preview p { color: #b8c9db; }
[data-theme="dark"] .about-badge { background: #3b8ed4; color: #fff; }
[data-theme="dark"] .about-box {
  background: #14243a;
  border-color: rgba(255,255,255,.1);
}
[data-theme="dark"] .about-box:hover { border-color: rgba(96,165,250,.35); }
[data-theme="dark"] .about-box h4 { color: #60a5fa; }
[data-theme="dark"] .about-box p { color: #8da2b8; }

/* ─── Section Heads ─── */
[data-theme="dark"] .section-head h2 { color: #f1f5f9; }
[data-theme="dark"] .section-head p { color: #8da2b8; }
[data-theme="dark"] .section-eyebrow { background: #3b8ed4; color: #fff; }

/* ─── Service Cards ─── */
[data-theme="dark"] .service-card {
  background: #14243a;
  border-color: rgba(255,255,255,.1);
}
[data-theme="dark"] .service-card:hover {
  border-color: rgba(96,165,250,.3);
  box-shadow: 0 20px 50px rgba(0,0,0,.5);
}
[data-theme="dark"] .service-card h3 { color: #f1f5f9; }
[data-theme="dark"] .service-card p { color: #8da2b8; }
[data-theme="dark"] .service-icon { background: rgba(96,165,250,.12); color: #60a5fa; }

/* ─── Product Cards ─── */
[data-theme="dark"] .card {
  background: #14243a;
  border-color: rgba(255,255,255,.1);
}
[data-theme="dark"] .card:hover { box-shadow: 0 20px 50px rgba(0,0,0,.5); }
[data-theme="dark"] .card-media { background: linear-gradient(180deg, #101d30 0%, #14243a 100%); }
[data-theme="dark"] .card h3 { color: #f1f5f9; }
[data-theme="dark"] .card p { color: #8da2b8; }
[data-theme="dark"] .card .mini { color: #60a5fa; }
[data-theme="dark"] .tag { background: rgba(96,165,250,.1); color: #b8c9db; border: 1px solid rgba(255,255,255,.08); }
[data-theme="dark"] .card-actions .btn-outline {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.15);
  color: #b8c9db;
}

/* ─── Process Section ─── */
[data-theme="dark"] .process-section {
  background: linear-gradient(170deg, #0c1929 0%, #101d30 50%, #0d1f1a 100%);
}
[data-theme="dark"] .process-section::before {
  background: radial-gradient(circle, rgba(96,165,250,.06) 0%, transparent 70%);
}
[data-theme="dark"] .process-step {
  background: #14243a;
  border-color: rgba(255,255,255,.06);
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
[data-theme="dark"] .process-step:hover {
  box-shadow: 0 16px 40px rgba(0,0,0,.3);
  border-color: rgba(255,255,255,.1);
}
[data-theme="dark"] .process-step[data-color="blue"] { border-top-color: #60a5fa; }
[data-theme="dark"] .process-step[data-color="teal"] { border-top-color: #5eead4; }
[data-theme="dark"] .process-step[data-color="orange"] { border-top-color: #fb923c; }
[data-theme="dark"] .process-step[data-color="green"] { border-top-color: #4ade80; }
[data-theme="dark"] .process-step h3 { color: #f1f5f9; }
[data-theme="dark"] .process-step p { color: #8da2b8; }
[data-theme="dark"] .step-icon-wrap::after {
  background: #1e293b;
  color: #e2e8f0;
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
}
[data-theme="dark"] .process-step::after {
  background: linear-gradient(90deg, rgba(96,165,250,.3), rgba(94,234,212,.3));
}

/* ─── Image Cards (Solution areas) ─── */
[data-theme="dark"] .image-card {
  background: #14243a;
  border-color: rgba(255,255,255,.1);
}
[data-theme="dark"] .image-card h3 { color: #f1f5f9; }
[data-theme="dark"] .image-card p { color: #8da2b8; }
[data-theme="dark"] .image-card a { color: #60a5fa !important; }

/* ─── Lead / Form Section ─── */
[data-theme="dark"] .lead-wrap { background: #101d30; }
[data-theme="dark"] .lead-info {
  background: linear-gradient(135deg, #1a3358 0%, #1e3d6a 100%);
  border: 1px solid rgba(96,165,250,.15);
}
[data-theme="dark"] .lead-info h2 { color: #fff; }
[data-theme="dark"] .lead-info .section-eyebrow { background: rgba(255,255,255,.12); color: #93c5fd; }
[data-theme="dark"] .lead-points div { color: #d1dce8; }
[data-theme="dark"] .form-card {
  background: #182d48;
  border-color: rgba(96,165,250,.18);
  box-shadow: 0 8px 32px rgba(0,0,0,.35);
}
[data-theme="dark"] input,
[data-theme="dark"] textarea,
[data-theme="dark"] select {
  background: #101d30;
  border-color: rgba(255,255,255,.14);
  color: #f1f5f9;
}
[data-theme="dark"] input:focus,
[data-theme="dark"] textarea:focus {
  border-color: #60a5fa;
  box-shadow: 0 0 0 3px rgba(96,165,250,.15);
}
[data-theme="dark"] input::placeholder,
[data-theme="dark"] textarea::placeholder { color: #6b7f95; }
[data-theme="dark"] .form-trust { border-top-color: rgba(255,255,255,.1); }
[data-theme="dark"] .trust-item { color: #8da2b8; }

/* ─── Testimonials ─── */
[data-theme="dark"] .testimonials-section { background: #101d30; }
[data-theme="dark"] .testimonial-card {
  background: #14243a;
  border-color: rgba(255,255,255,.1);
}
[data-theme="dark"] .testimonial-card:hover { border-color: rgba(96,165,250,.3); }
[data-theme="dark"] .testimonial-card::before { color: rgba(96,165,250,.15); }
[data-theme="dark"] .testimonial-text { color: #b8c9db; }
[data-theme="dark"] .testimonial-author strong { color: #f1f5f9; }
[data-theme="dark"] .testimonial-author span { color: #8da2b8; }
[data-theme="dark"] .testimonial-author { border-top-color: rgba(255,255,255,.08); }

/* ─── Partners ─── */
[data-theme="dark"] .partners-section {
  background: #0c1424;
  border-color: rgba(255,255,255,.06);
}
[data-theme="dark"] .partners-label { color: #8da2b8; }
[data-theme="dark"] .partner-item {
  background: #14243a;
  border-color: rgba(255,255,255,.1);
  color: #60a5fa;
}
[data-theme="dark"] .partner-item:hover {
  background: rgba(96,165,250,.1);
  border-color: rgba(96,165,250,.3);
}

/* ─── Feature / Spec (ürün sayfaları) ─── */
[data-theme="dark"] .feature-box {
  background: #14243a;
  border-color: rgba(255,255,255,.1);
}
[data-theme="dark"] .feature-box h3 { color: #f1f5f9; }
[data-theme="dark"] .feature-box p { color: #8da2b8; }
[data-theme="dark"] .icon { background: rgba(96,165,250,.12); color: #60a5fa; }
[data-theme="dark"] .spec-table {
  background: #14243a;
  border-color: rgba(255,255,255,.1);
}
[data-theme="dark"] .spec-table th { background: #101d30; color: #d1dce8; }
[data-theme="dark"] .spec-table td { color: #b8c9db; }
[data-theme="dark"] .spec-table th,
[data-theme="dark"] .spec-table td { border-bottom-color: rgba(255,255,255,.08); }

/* ─── Detail / Product Pages ─── */
[data-theme="dark"] .detail-media {
  background: linear-gradient(180deg, #101d30 0%, #14243a 100%);
  border-color: rgba(255,255,255,.1);
}
[data-theme="dark"] .detail-copy h1 { color: #f1f5f9; }
[data-theme="dark"] .detail-copy p { color: #b8c9db; }
[data-theme="dark"] .breadcrumb { color: #8da2b8; }
[data-theme="dark"] .breadcrumb a { color: #60a5fa; }

/* ─── About / Team Page ─── */
[data-theme="dark"] .about-hero {
  background: linear-gradient(135deg, #101d30 0%, #0c1424 50%, #14243a 100%);
}
[data-theme="dark"] .about-hero h1 { color: #f1f5f9; }
[data-theme="dark"] .about-hero p { color: #b8c9db; }
[data-theme="dark"] .timeline-item { border-bottom-color: rgba(255,255,255,.08); }
[data-theme="dark"] .timeline-year { color: #60a5fa; }
[data-theme="dark"] .timeline-content h3 { color: #f1f5f9; }
[data-theme="dark"] .timeline-content p { color: #b8c9db; }

/* ─── Values / Team Cards ─── */
[data-theme="dark"] .value-card {
  background: #14243a;
  border-color: rgba(255,255,255,.1);
}
[data-theme="dark"] .value-card:hover { border-color: rgba(96,165,250,.3); }
[data-theme="dark"] .value-card h3 { color: #f1f5f9; }
[data-theme="dark"] .value-card p { color: #8da2b8; }
[data-theme="dark"] .value-icon { background: rgba(96,165,250,.12); color: #60a5fa; }
[data-theme="dark"] .team-card {
  background: #14243a;
  border-color: rgba(255,255,255,.1);
}
[data-theme="dark"] .team-card h3 { color: #f1f5f9; }
[data-theme="dark"] .team-role { color: #60a5fa; }
[data-theme="dark"] .team-bio { color: #8da2b8; }
[data-theme="dark"] .team-avatar {
  background: linear-gradient(135deg, rgba(96,165,250,.25), rgba(96,165,250,.1));
}

/* ─── Metric / Panels ─── */
[data-theme="dark"] .metric {
  background: #14243a;
  border-color: rgba(255,255,255,.1);
}
[data-theme="dark"] .metric strong { color: #60a5fa; }
[data-theme="dark"] .metric span { color: #8da2b8; }
[data-theme="dark"] .panel {
  background: #14243a;
  border-color: rgba(255,255,255,.1);
}
[data-theme="dark"] .panel h2 { color: #f1f5f9; }
[data-theme="dark"] .panel-item { background: #101d30; }
[data-theme="dark"] .panel-item strong { color: #d1dce8; }
[data-theme="dark"] .panel-icon { background: rgba(96,165,250,.12); color: #60a5fa; }
[data-theme="dark"] .chip { background: rgba(96,165,250,.15); color: #d1dce8; }

/* ─── Campaign Band ─── */
[data-theme="dark"] .campaign-card {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
}
[data-theme="dark"] .campaign-card h3 { color: #fff; }
[data-theme="dark"] .campaign-card p { color: #d1dce8; }

/* ─── CTA Sections ─── */
[data-theme="dark"] .cta-section { background: linear-gradient(135deg, #1a3358 0%, #0c1424 100%); }
[data-theme="dark"] .cta-band { background: linear-gradient(135deg, #1a3358 0%, #14243a 100%); }

/* ─── Footer (already dark, just refine) ─── */
[data-theme="dark"] .footer { background: #070e1a; }
[data-theme="dark"] .footer p,
[data-theme="dark"] .footer a,
[data-theme="dark"] .footer-contact div { color: #8da2b8; }
[data-theme="dark"] .footer-links a:hover { color: #60a5fa; }
[data-theme="dark"] .footer-bottom { color: #5e7489; border-top-color: rgba(255,255,255,.06); }

/* ─── Map Section (already dark) ─── */
[data-theme="dark"] .map-section {
  background: linear-gradient(160deg, #0e1f38 0%, #0c2d52 40%, #0e1f38 100%);
}
[data-theme="dark"] .map-info h2 { color: #fff; }
[data-theme="dark"] .map-info > p { color: #8da2b8; }
[data-theme="dark"] .map-contact-item span { color: #b8c9db; }
[data-theme="dark"] .map-contact-item a { color: #d1dce8; }

/* ─── Sections with bg-soft inline style ─── */
[data-theme="dark"] .section[style*="bg-soft"] { background: #101d30 !important; }

/* ═══════════════════════════════════════════════
   Testimonials Section
   ═══════════════════════════════════════════════ */
.testimonials-section {
  background: var(--bg-soft);
}
.testimonial-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 120px;
  color: var(--primary-light);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
  opacity: .5;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}
.testimonial-stars {
  color: #f59e0b;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-text {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
  font-style: italic;
  margin: 0;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 15px;
  color: var(--text);
}
.testimonial-author span {
  font-size: 13px;
  color: var(--muted);
}

/* ═══════════════════════════════════════════════
   Partners / Brands Section
   ═══════════════════════════════════════════════ */
.partners-section {
  padding: 48px 0;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.partners-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
  margin-bottom: 24px;
}
.partners-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.partner-item {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px 32px;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  transition: var(--transition);
  letter-spacing: .02em;
}
.partner-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--primary-light);
  background: var(--primary-ultra-light);
}

/* ═══════════════════════════════════════════════
   Video Background Section
   ═══════════════════════════════════════════════ */
.video-bg-section {
  position: relative;
  overflow: hidden;
}
.video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
  opacity: .3;
}
.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,26,46,.92) 0%, rgba(10,94,168,.6) 50%, rgba(11,26,46,.92) 100%);
  z-index: 1;
}

/* ═══════════════════════════════════════════════
   Footer Brands
   ═══════════════════════════════════════════════ */
.footer-brands {
  margin-top: 18px;
  font-size: 12px;
  color: #4a5568;
  line-height: 1.8;
}
.footer-brands span {
  color: #93c5fd;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 11px;
}

/* ═══════════════════════════════════════════════
   Enhanced Hover Animations
   ═══════════════════════════════════════════════ */
.service-card .service-icon {
  transition: all .4s cubic-bezier(.4,0,.2,1);
}
.service-card:hover .service-icon {
  transform: scale(1.15) rotate(5deg);
  background: var(--primary);
  color: #fff;
}
.image-card img {
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.image-card:hover img {
  transform: scale(1.08);
}
.about-counter {
  transition: all .4s cubic-bezier(.4,0,.2,1);
}
.about-image:hover .about-counter {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(10,94,168,.4);
}
/* process-step hover already defined in main process section */

/* ─── Partners / Bayilikler Band ─── */
.partners-band { padding: 56px 0; background: var(--bg-soft); overflow: hidden; }
.partners-band .section-head { text-align: center; margin-bottom: 36px; }
.partners-band .section-head h2 { font-size: clamp(22px, 3vw, 30px); font-weight: 800; color: var(--text); }
.partners-band .section-head p { font-size: 15px; color: var(--text-secondary); margin-top: 8px; }

.partners-track-wrapper { position: relative; width: 100%; overflow: hidden; mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%); -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%); }
.partners-track { display: flex; gap: 48px; width: max-content; animation: partnerScroll 25s linear infinite; }
.partners-track:hover { animation-play-state: paused; }

@keyframes partnerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}

.partner-item { flex-shrink: 0; display: flex; align-items: center; justify-content: center; width: 200px; height: 100px; padding: 0; background: var(--white); border: 1px solid var(--line); border-radius: 16px; transition: all .3s ease; cursor: pointer; text-decoration: none; overflow: hidden; }
.partner-item:hover { border-color: var(--primary-light); box-shadow: 0 8px 24px rgba(10,94,168,.1); transform: translateY(-3px); }
.partner-item img { width: 100%; height: 100%; object-fit: contain; padding: 14px; transition: transform .3s ease; }
.partner-item:hover img { transform: scale(1.08); }

[data-theme="dark"] .partners-band { background: var(--dark); }
[data-theme="dark"] .partners-band .partner-item { border-color: rgba(255,255,255,.1); background: rgba(255,255,255,.04); }
[data-theme="dark"] .partners-band .partner-item:hover { border-color: rgba(96,165,250,.3); }

/* ═══════════════════════════════════════════════
   Preloader / Branded Loader
   ═══════════════════════════════════════════════ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  transition: opacity .5s ease, visibility .5s ease;
}
.preloader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-logo {
  height: 50px;
  animation: preloaderPulse 1.2s ease-in-out infinite;
}
.preloader-bar {
  width: 120px;
  height: 3px;
  background: var(--line);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}
.preloader-bar::after {
  content: '';
  position: absolute;
  left: -40%;
  width: 40%;
  height: 100%;
  background: var(--primary);
  border-radius: 3px;
  animation: preloaderSlide 1s ease-in-out infinite;
}
@keyframes preloaderPulse {
  0%, 100% { opacity: .6; transform: scale(.98); }
  50% { opacity: 1; transform: scale(1); }
}
@keyframes preloaderSlide {
  0% { left: -40%; }
  100% { left: 100%; }
}
[data-theme="dark"] .preloader { background: #0c1424; }
[data-theme="dark"] .preloader-logo {
  background: #fff;
  border-radius: 12px;
  padding: 6px 10px;
}

/* ═══════════════════════════════════════════════
   Footer Newsletter + Daikin Badge
   ═══════════════════════════════════════════════ */
.footer-newsletter {
  margin-top: 20px;
}
.footer-newsletter p {
  font-size: 13px;
  color: #8b9cb5;
  margin-bottom: 10px;
}
.newsletter-form {
  display: flex;
  gap: 8px;
}
.newsletter-form input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  color: #fff;
  font-size: 13px;
}
.newsletter-form input::placeholder { color: #5a6b80; }
.newsletter-form input:focus {
  border-color: #60a5fa;
  outline: none;
  box-shadow: 0 0 0 2px rgba(96,165,250,.15);
}
.newsletter-form button {
  padding: 10px 18px;
  border: none;
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--primary-2); }

.daikin-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  background: rgba(255,255,255,.04);
  transition: var(--transition);
}
.daikin-badge:hover {
  border-color: rgba(96,165,250,.3);
  background: rgba(96,165,250,.06);
}
.daikin-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0a5ea8, #60a5fa);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
  animation: badgeGlow 3s ease-in-out infinite;
}
@keyframes badgeGlow {
  0%, 100% { box-shadow: 0 0 8px rgba(96,165,250,.2); }
  50% { box-shadow: 0 0 20px rgba(96,165,250,.5); }
}
.daikin-badge-text {
  font-size: 11px;
  font-weight: 700;
  color: #93c5fd;
  text-transform: uppercase;
  letter-spacing: .06em;
  line-height: 1.4;
}
.daikin-badge-text span {
  display: block;
  font-size: 10px;
  font-weight: 500;
  color: #5a6b80;
  text-transform: none;
  letter-spacing: 0;
}

/* ═══════════════════════════════════════════════
   Hakkımızda Page Enhancements
   ═══════════════════════════════════════════════ */

/* Solution cards hover */
.about-solution-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  transition: all .35s cubic-bezier(.4,0,.2,1);
  box-shadow: var(--shadow-sm);
  cursor: default;
}
.about-solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(15,23,42,.08);
  border-color: var(--primary-light);
}
.about-solution-card .solution-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: transform .35s ease;
}
.about-solution-card:hover .solution-icon {
  transform: scale(1.15) rotate(-8deg);
}

/* Timeline animated entries */
.timeline-entry {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.timeline-entry.visible {
  opacity: 1;
  transform: translateY(0);
}
.timeline-entry:nth-child(even) {
  transition-delay: .1s;
}
.timeline-entry .tl-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary-2);
  border: 3px solid var(--white);
  z-index: 2;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px var(--primary-light);
  transition: all .4s ease;
}
.timeline-entry:hover .tl-dot {
  transform: scale(1.3);
  box-shadow: 0 0 0 5px var(--primary-light), 0 0 15px rgba(10,94,168,.2);
}
.timeline-entry.tl-major .tl-dot {
  width: 22px;
  height: 22px;
  background: var(--primary);
  border: 4px solid var(--white);
  box-shadow: 0 0 0 4px var(--primary-light);
}
.tl-card {
  flex: 1;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  transition: all .35s ease;
}
.tl-card:hover {
  box-shadow: 0 8px 24px rgba(15,23,42,.08);
  border-color: var(--primary-light);
}
.tl-year {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 6px;
  margin-bottom: 8px;
}
.tl-card.tl-current .tl-year {
  background: var(--primary);
  color: #fff;
}
.tl-card h3 {
  font-size: 17px;
  margin: 0 0 6px;
}
.tl-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* Dark mode - Hakkımızda enhancements */
[data-theme="dark"] .about-solution-card {
  background: #14243a;
  border-color: rgba(255,255,255,.06);
  color: #d1dce8;
}
[data-theme="dark"] .about-solution-card:hover {
  border-color: rgba(96,165,250,.25);
  box-shadow: 0 12px 28px rgba(0,0,0,.2);
}
[data-theme="dark"] .tl-card {
  background: #14243a;
  border-color: rgba(255,255,255,.06);
}
[data-theme="dark"] .tl-card:hover {
  border-color: rgba(96,165,250,.25);
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
[data-theme="dark"] .tl-card h3 { color: #f1f5f9; }
[data-theme="dark"] .tl-card p { color: #8da2b8; }
[data-theme="dark"] .tl-year { background: rgba(96,165,250,.15); color: #93c5fd; }
[data-theme="dark"] .tl-card.tl-current .tl-year { background: #3b8ed4; color: #fff; }
[data-theme="dark"] .tl-dot {
  border-color: #14243a;
  box-shadow: 0 0 0 3px rgba(96,165,250,.2);
}

/* Timeline responsive */
@media (max-width: 768px) {
  .timeline-entry { gap: 16px; }
  .tl-card { padding: 16px 18px; }
}

/* 3D tilt transition smoothing */
.card, .service-card, .feature-box {
  transition: transform .15s ease, box-shadow .3s ease, border-color .3s ease;
}


/* Dark mode text readability fixes */
[data-theme="dark"] h1, [data-theme="dark"] h2, [data-theme="dark"] h3 { color: #f1f5f9; }
[data-theme="dark"] p { color: #b8c9db; }
[data-theme="dark"] .footer h4, [data-theme="dark"] .footer-h4-mt { color: #e2e8f0; }
[data-theme="dark"] .whatsapp-float { background: #25d366; color: #fff; }
[data-theme="dark"] .hero-badge-bar { background: rgba(12,20,36,.9); border-color: rgba(255,255,255,.08); }
[data-theme="dark"] .hero-badge-bar span { color: #d1dce8; }
[data-theme="dark"] .slide .eyebrow { color: #93c5fd; }

/* ═══════════════════════════════════════
   ACCESSIBILITY IMPROVEMENTS
   ═══════════════════════════════════════ */

/* Screen-reader only (visually hidden but accessible) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Skip-to-content link */
.skip-link {
  position: fixed;
  top: -100%;
  left: 16px;
  z-index: 100000;
  padding: 12px 24px;
  background: var(--primary, #0066cc);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border-radius: 0 0 8px 8px;
  text-decoration: none;
  transition: top .2s ease;
}
.skip-link:focus {
  top: 0;
  outline: none;
}

/* Focus-visible styles for all interactive elements */
:focus-visible {
  outline: 2px solid var(--primary, #0066cc);
  outline-offset: 2px;
  border-radius: 2px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--primary, #0066cc);
  outline-offset: 2px;
}

/* Remove default outline for mouse users */
:focus:not(:focus-visible) {
  outline: none;
}

/* Dark mode focus styles */
[data-theme="dark"] :focus-visible {
  outline-color: #60a5fa;
}

/* Form label styles (sr-only by default, visible on focus-within) */
.form-grid label.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Hero slider text - force white */
.slide-content h2,
.slide-content .slide-desc,
.slide-content p {
  color: #fff !important;
}
[data-theme="dark"] .slide-content h2,
[data-theme="dark"] .slide-content .slide-desc,
[data-theme="dark"] .slide-content p {
  color: #fff !important;
}

/* ═══════════════════════════════════════════════
   MOBILE-FIRST OPTIMIZATION v2.0
   Premium responsive system — 320px to 1920px
   ═══════════════════════════════════════════════ */

/* ─── Fluid Typography System (clamp) ─── */
:root {
  --fs-hero: clamp(26px, 6vw, 52px);
  --fs-h2: clamp(22px, 4vw, 40px);
  --fs-h3: clamp(17px, 2.5vw, 26px);
  --fs-body: clamp(14px, 1.2vw, 16px);
  --fs-small: clamp(12px, 1vw, 14px);
  --space-section: clamp(48px, 8vw, 100px);
  --space-card: clamp(16px, 2.5vw, 32px);
  --container-pad: clamp(12px, 3vw, 20px);
}

/* ─── Touch Target Minimum (WCAG 2.5.5) ─── */
a, button, input, select, textarea, [role="button"] {
  min-height: 44px;
}
input, select, textarea {
  font-size: 16px; /* Prevents iOS zoom on focus */
}

/* ─── Safe Area (iPhone notch) ─── */
body {
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}
.footer { padding-bottom: calc(32px + env(safe-area-inset-bottom)); }

/* ─── Overflow Prevention ─── */
html, body { overflow-x: hidden; }
.container { overflow-wrap: break-word; word-wrap: break-word; }
img, video, iframe, embed, object { max-width: 100%; height: auto; }
table { overflow-x: auto; display: block; max-width: 100%; }
pre, code { overflow-x: auto; max-width: 100%; }

/* ─── Reduced Motion ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .slide.active::before { animation: none; }
}

/* ═══════════════════════════════════════════════
   TABLET BREAKPOINT (max-width: 1024px)
   ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-badge-bar .container { gap: 16px; padding: 14px 16px; }
  .hero-badge-item { font-size: 12px; }
  .about-preview { padding: var(--space-section) 0; }
  .about-preview-grid { gap: 40px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

/* ═══════════════════════════════════════════════
   MOBILE BREAKPOINT (max-width: 768px) — ENHANCED
   ═══════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── Fluid spacing ── */
  .section, .lead-wrap, .about-preview, .process-section {
    padding: var(--space-section) 0;
  }

  /* ── Hero — full mobile optimization ── */
  .slide { min-height: 65vh; min-height: 65svh; }
  .slide h2, .slide h1 {
    font-size: var(--fs-hero);
    line-height: 1.15;
    margin-top: 16px;
  }
  .slide p {
    font-size: var(--fs-small);
    line-height: 1.7;
    margin-top: 14px;
    max-width: 100%;
  }
  .slide .container {
    padding: 50px var(--container-pad) 100px;
    max-width: 100%;
  }
  .slide-content { max-width: 100%; }
  .slide-actions {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-top: 24px;
  }
  .slide-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 14px;
  }

  /* ── Hero badge bar — horizontal scroll on very small ── */
  .hero-badge-bar .container {
    gap: 8px;
    padding: 10px 12px;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    justify-content: flex-start;
  }
  .hero-badge-bar .container::-webkit-scrollbar { display: none; }
  .hero-badge-item {
    flex-shrink: 0;
    font-size: 11px;
    gap: 6px;
    white-space: nowrap;
  }

  /* ── Topbar mobile ── */
  .topbar { font-size: 11px; padding: 0; }
  .topbar-inner { padding: 8px 0; }
  .topbar-right { display: none; }
  .topbar a { font-size: 11px; }

  /* ── Header mobile ── */
  .header-inner {
    height: 60px;
    padding: 0;
  }
  .logo-wrap img {
    height: 42px;
  }

  /* ── Mobile nav improvements ── */
  .mobile-nav {
    padding-bottom: calc(16px + env(safe-area-inset-bottom));
  }
  .mobile-nav > a {
    padding: 14px 20px;
    font-size: 15px;
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  /* ── Grid single column ── */
  .grid-2, .grid-3, .grid-4,
  .about-preview-grid, .lead-grid,
  .detail-grid, .cta-grid, .hero-grid,
  .stats-grid, .map-grid, .team-grid,
  .process-grid { 
    grid-template-columns: 1fr; 
    gap: 16px;
  }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  /* ── Cards mobile ── */
  .card { border-radius: 14px; }
  .card-body { padding: var(--space-card); }
  .card-img img { 
    aspect-ratio: 16 / 10;
    object-fit: cover;
  }
  .card-actions {
    flex-direction: column;
    gap: 8px;
  }
  .card-actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  /* ── Service cards ── */
  .service-card {
    padding: 24px 18px;
  }
  .service-card .btn {
    width: 100%;
    min-height: 48px;
  }

  /* ── Feature boxes ── */
  .feature-box {
    padding: 20px 16px;
  }

  /* ── Form mobile ── */
  .form-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .span-2 { grid-column: span 1; }
  .form-card { 
    padding: 20px 16px;
    border-radius: 14px;
  }
  .form-grid input,
  .form-grid textarea,
  .form-grid select {
    padding: 14px 16px;
    font-size: 16px;
    border-radius: 10px;
    min-height: 48px;
  }
  .form-grid textarea {
    min-height: 100px;
  }
  .form-actions {
    flex-direction: column;
    gap: 10px;
  }
  .form-actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
    font-size: 15px;
  }
  .form-trust {
    flex-direction: column;
    gap: 8px;
    text-align: left;
    font-size: 12px;
  }

  /* ── Lead section ── */
  .lead-info {
    padding: 24px 18px;
    border-radius: 14px;
  }
  .lead-info h2 { font-size: var(--fs-h2); }
  .lead-list li { font-size: 14px; padding: 6px 0; }

  /* ── Section heads ── */
  .section-head { margin-bottom: 28px; }
  .section-head h2 { font-size: var(--fs-h2); }
  .section-head p {
    font-size: var(--fs-small);
    max-width: 100%;
  }
  .section-eyebrow {
    font-size: 10px;
    padding: 5px 12px;
    margin-bottom: 12px;
  }

  /* ── About preview ── */
  .about-preview-grid { gap: 24px; }
  .about-image { order: -1; }
  .about-image img {
    height: 250px !important;
    border-radius: 14px;
    object-fit: cover;
  }
  .about-boxes { gap: 12px; }
  .about-box {
    padding: 18px 16px;
  }

  /* ── Stats mobile — 2 column grid ── */
  .stat-item { padding: 18px 14px; }
  .stat-number { font-size: clamp(28px, 6vw, 36px); }
  .stat-label { font-size: 12px; }

  /* ── Process steps ── */
  .process-step {
    padding: 22px 16px 20px;
    border-radius: 14px;
  }
  .step-number {
    width: 56px;
    height: 56px;
    font-size: 18px;
  }

  /* ── Partners ── */
  .partners-grid {
    gap: 8px;
    flex-wrap: wrap;
  }
  .partners-grid .partner-item {
    padding: 10px 14px;
    font-size: 12px;
    flex: 1 1 calc(50% - 8px);
    text-align: center;
    min-width: 0;
  }
  .partners-grid .partner-item img { height: 28px; }
  .partners-track .partner-item { width: 150px; height: 75px; }
  .partners-track .partner-item img { width: 100%; height: 100%; object-fit: contain; padding: 10px; }

  /* ── Testimonials ── */
  .testimonial-card {
    padding: 20px 16px;
    border-radius: 14px;
  }
  .testimonial-text { font-size: 14px; line-height: 1.7; }
  .testimonial-card::before { font-size: 60px; top: -2px; right: 8px; }

  /* ── Map section ── */
  .map-grid { gap: 0; border-radius: 14px; overflow: hidden; }
  .map-info { padding: 24px 18px; }
  .map-info h2 { font-size: var(--fs-h2); }
  .map-embed { min-height: 280px; }
  .map-embed iframe { min-height: 280px; }
  .map-contact-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 16px;
  }
  .map-directions .btn {
    width: 100%;
    justify-content: center;
  }

  /* ── CTA sections ── */
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .cta-buttons .btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  /* ── Footer ── */
  .footer { padding: 40px 0 24px; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding-top: 20px;
  }

  /* ── Floating buttons ── */
  .whatsapp-float {
    padding: 10px 14px;
    font-size: 13px;
    right: 12px;
    bottom: 12px;
    border-radius: 50px;
  }
  .dark-mode-toggle {
    right: auto;
    left: 12px;
    bottom: 12px;
    width: 40px;
    height: 40px;
  }

  /* ── Image cards ── */
  .image-card img {
    height: 200px;
    object-fit: cover;
  }
  .image-card .body { padding: 16px; }

  /* ── Timeline ── */
  .timeline-item {
    flex-direction: column;
    gap: 6px;
    padding: 14px 0;
  }

  /* ── Tables responsive wrapper ── */
  .spec-table-wrap,
  .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 10px;
  }
  .spec-table,
  .detail-table {
    min-width: 500px;
    font-size: 13px;
  }
  .spec-table td,
  .spec-table th,
  .detail-table td,
  .detail-table th {
    padding: 10px 12px;
    white-space: nowrap;
  }

  /* ── Product detail pages ── */
  .detail-hero {
    padding: 32px 0;
  }
  .detail-hero h1 {
    font-size: var(--fs-hero);
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 10px;
  }
  .hero-stat {
    flex: 1 1 calc(50% - 10px);
    min-width: 0;
    padding: 12px;
    border-radius: 10px;
  }
  .hero-stat .value { font-size: 20px; }
  .hero-stat .label { font-size: 10px; }
}

/* ═══════════════════════════════════════════════
   SMALL MOBILE (max-width: 480px) — ENHANCED
   ═══════════════════════════════════════════════ */
@media (max-width: 480px) {
  .container { width: calc(100% - 20px); }

  /* Header extra small */
  .header-inner { height: 54px; }
  .logo-wrap img { height: 36px; }
  .mobile-nav { top: 54px; }

  /* Hero compact */
  .slide { min-height: 60vh; min-height: 60svh; }
  .slide h2, .slide h1 { font-size: clamp(22px, 5.5vw, 30px); margin-top: 12px; }
  .slide p { font-size: 13px; margin-top: 10px; }
  .slide .eyebrow { font-size: 10px; padding: 4px 10px; }
  .slide .container { padding-top: 40px; padding-bottom: 80px; }

  /* Hero badge — icon only */
  .hero-badge-item span:not(.hero-badge-icon) { display: none; }
  .hero-badge-icon { width: 36px; height: 36px; font-size: 16px; border-radius: 10px; }
  .hero-badge-bar .container { 
    justify-content: center;
    gap: 12px;
    padding: 10px 16px;
  }

  /* Section spacing tight */
  .section, .lead-wrap, .about-preview, .process-section {
    padding: clamp(36px, 7vw, 48px) 0;
  }
  .section-head { margin-bottom: 20px; }

  /* Stats 2 col tighter */
  .stat-number { font-size: 26px; }
  .stat-item { padding: 14px 10px; }

  /* About */
  .about-image img { height: 200px !important; }
  .about-counter { padding: 12px 14px; bottom: 12px; right: 12px; }
  .about-counter .number { font-size: 28px; }

  /* Cards tighter */
  .card-body { padding: 16px 14px; }
  .service-card { padding: 20px 14px; }

  /* Partners stack */
  .partners-grid { flex-direction: column; }
  .partners-grid .partner-item { flex: 1 1 100%; }
  .partners-track .partner-item { width: 120px; height: 60px; }
  .partners-track { gap: 24px; }

  /* Map */
  .map-embed { min-height: 220px; }
  .map-embed iframe { min-height: 220px; }

  /* Footer compact */
  .footer { padding: 32px 0 20px; }

  /* Floating buttons repositioned */
  .whatsapp-float {
    right: 10px;
    bottom: 10px;
    padding: 10px 12px;
    font-size: 12px;
  }
  .dark-mode-toggle {
    left: 10px;
    bottom: 10px;
    width: 36px;
    height: 36px;
  }
  .dark-mode-toggle .toggle-icon { font-size: 16px; }
}

/* ═══════════════════════════════════════════════
   EXTRA SMALL (max-width: 360px) — iPhone SE etc.
   ═══════════════════════════════════════════════ */
@media (max-width: 360px) {
  .container { width: calc(100% - 16px); }
  .slide h2, .slide h1 { font-size: 20px; }
  .slide p { font-size: 12px; }
  .header-inner { height: 50px; }
  .logo-wrap img { height: 32px; }
  .mobile-nav { top: 50px; }
  .btn { padding: 12px 16px; font-size: 13px; }
  .btn-lg { padding: 12px 18px; font-size: 13px; }
  .stat-number { font-size: 24px; }
  .form-grid input,
  .form-grid textarea { padding: 12px 14px; }
  .map-embed { min-height: 180px; }
  .map-embed iframe { min-height: 180px; }
}

/* ═══════════════════════════════════════════════
   LARGE SCREENS (min-width: 1440px)
   ═══════════════════════════════════════════════ */
@media (min-width: 1440px) {
  .container { max-width: 1320px; }
  .slide h1, .slide h2 { font-size: 56px; }
  .slide p { font-size: 20px; }
  .hero-badge-bar .container { gap: 56px; }
}

/* ═══════════════════════════════════════════════
   LANDSCAPE MOBILE FIX
   ═══════════════════════════════════════════════ */
@media (max-height: 500px) and (orientation: landscape) {
  .slide { min-height: 100vh; min-height: 100svh; }
  .slide .container { padding-top: 20px; padding-bottom: 60px; }
  .slide h2, .slide h1 { font-size: 24px; margin-top: 8px; }
  .slider-dots { bottom: 50px; }
  .hero-badge-bar .container { padding: 8px 16px; }
}

/* ═══════════════════════════════════════════════
   PRINT OPTIMIZATION
   ═══════════════════════════════════════════════ */
@media print {
  .header, .footer, .whatsapp-float, .dark-mode-toggle,
  .mobile-nav, .menu-toggle, .slider-nav, .slider-dots,
  .preloader { display: none !important; }
  .slide { min-height: auto; page-break-inside: avoid; }
  body { font-size: 12pt; color: #000; background: #fff; }
}

/* ═══════════════════════════════════════════════
   EXTRACTED INLINE STYLES → CSS CLASSES
   ═══════════════════════════════════════════════ */

/* ── Page grids (responsive) ── */
.page-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.page-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.page-grid-2-aligned {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.auto-grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  max-width: 1080px;
  margin: 0 auto;
}

/* ── Flex helpers ── */
.flex-actions { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.flex-row-tight { display: flex; gap: 8px; }

/* ── Solution card (hakkimizda) ── */
.solution-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.solution-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.solution-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

/* ── Section utilities ── */
.section-center { text-align: center; margin-bottom: 48px; }
.text-center { text-align: center; }
.mb-8 { margin-bottom: 8px; }

/* ── Image showcase ── */
.img-showcase {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(10,94,168,.12);
}
.img-cover-380 { width: 100%; height: 380px; object-fit: cover; }
.img-cover-rounded { width: 100%; height: 100%; object-fit: cover; border-radius: 24px; }
.img-cover-zoom { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }

/* ── Page hero section ── */
.page-hero-section {
  padding: 80px 0 48px;
  background: linear-gradient(160deg, var(--primary-ultra-light) 0%, var(--white) 50%, var(--bg-soft) 100%);
  position: relative;
  overflow: hidden;
}
.deco-circle {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10,94,168,.06) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Button helpers ── */
.btn-full { width: 100%; justify-content: center; }
.btn-flex-half { flex: 1; justify-content: center; font-size: 13px; }

/* ── Card padding ── */
.card-pad { padding: 28px; }

/* ── Campaign cards ── */
.campaign-card {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  transition: all .35s ease;
  position: relative;
}
.campaign-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(10,94,168,.12);
}
.campaign-img-wrap {
  height: 200px;
  overflow: hidden;
}
.campaign-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.campaign-card:hover .campaign-img-wrap img {
  transform: scale(1.05);
}

/* ── Servis stats cards ── */
.servis-stat-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: all .35s ease;
  box-shadow: var(--shadow-sm);
}
.servis-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--primary-light);
}

/* ── Gradient text ── */
.gradient-text {
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE FOR EXTRACTED CLASSES
   ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .page-grid-3 { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .page-grid-2-aligned { gap: 32px; }
  .page-hero-section { padding: 60px 0 40px; }
}

@media (max-width: 768px) {
  .page-grid-3,
  .page-grid-2,
  .page-grid-2-aligned {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .auto-grid-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .page-hero-section { padding: 40px 0 32px; }
  .section-center { margin-bottom: 28px; }
  .img-cover-380 { height: 240px; }
  .img-showcase { border-radius: 16px; }
  .solution-card { padding: 14px 16px; font-size: 14px; gap: 12px; }
  .solution-icon { width: 36px; height: 36px; font-size: 17px; border-radius: 10px; }
  .card-pad { padding: 20px 16px; }
  .campaign-img-wrap { height: 160px; }
  .campaign-card { border-radius: 16px; }
  .flex-actions { gap: 10px; margin-top: 20px; }
  .flex-actions .btn { width: 100%; justify-content: center; }
  .flex-row-tight { flex-direction: column; gap: 8px; }
  .flex-row-tight .btn { width: 100%; justify-content: center; }
  .btn-flex-half { flex: 1 1 100%; font-size: 14px; }
  .servis-stat-card { padding: 24px 18px; }
  .deco-circle { display: none; }
}

@media (max-width: 480px) {
  .solution-card { padding: 12px 14px; font-size: 13px; }
  .solution-icon { width: 32px; height: 32px; font-size: 15px; }
  .img-cover-380 { height: 200px; }
  .campaign-img-wrap { height: 140px; }
  .card-pad { padding: 16px 14px; }
}

/* ── Dark mode for extracted classes ── */
[data-theme="dark"] .solution-card {
  background: #14243a;
  border-color: rgba(255,255,255,.1);
  color: #d1dce8;
}
[data-theme="dark"] .solution-card:hover {
  border-color: rgba(96,165,250,.3);
}
[data-theme="dark"] .campaign-card {
  background: #14243a;
  border-color: rgba(255,255,255,.1);
}
[data-theme="dark"] .servis-stat-card {
  background: #14243a;
  border-color: rgba(255,255,255,.1);
}
[data-theme="dark"] .page-hero-section {
  background: linear-gradient(160deg, rgba(16,29,48,.8) 0%, #0c1424 50%, #101d30 100%);
}

/* ============================================================
   EXTRACTED INLINE STYLES — Premium Responsive System v3.0
   ============================================================ */

/* --- Utility Classes --- */
.flex-center-sm { flex:1; justify-content:center; font-size:13px; }
.flex-full-center-mb { width:100%; justify-content:center; margin-bottom:8px; }
.d-inline-block { display:inline-block; }
.text-center { text-align:center; }
.overflow-hidden { overflow:hidden; }
.mt-10 { margin-top:10px; }
.mt-14 { margin-top:14px; }
.mt-24 { margin-top:24px; }
.mt-28 { margin-top:28px; }
.pos-relative { position:relative; }
.bg-soft { background:var(--bg-soft); }
.max-w-560 { max-width:560px; }
.max-w-700 { max-width:700px; }
.w-full { width:100%; }
.py-60 { padding:60px 0; }

/* --- Hero & Page Headers --- */
.page-hero-gradient {
  padding:80px 0 48px;
  background:linear-gradient(160deg,var(--primary-ultra-light) 0%,var(--white) 50%,var(--bg-soft) 100%);
  position:relative; overflow:hidden;
}
.section-dark-gradient {
  padding:64px 0;
  background:linear-gradient(135deg,var(--primary) 0%,var(--primary-2) 50%,#1e7fd6 100%);
  color:#fff; text-align:center; position:relative; overflow:hidden;
}
.hero-content-z { position:relative; z-index:1; max-width:700px; }
.page-title-xl { font-size:clamp(32px,4vw,48px); margin:14px 0 16px; color:var(--text); line-height:1.15; }
.section-title-lg { font-size:clamp(24px,3vw,36px); margin-bottom:16px; color:var(--text); }
.heading-responsive-md { font-size:clamp(24px,3vw,36px); color:var(--text); }
.hero-desc { font-size:17px; color:var(--text-secondary); line-height:1.75; max-width:520px; }
.hero-desc-light { font-size:16px; color:rgba(255,255,255,.85); line-height:1.75; margin-bottom:28px; }
.hero-desc-body { font-size:16px; color:var(--text-secondary); line-height:1.75; margin-bottom:28px; }
.hero-subtitle-white { color:#fff; margin-top:14px; }
.hero-desc-white { color:rgba(255,255,255,.9); line-height:1.8; margin-top:14px; }

/* --- Badges --- */
.badge-hero-glass { background:rgba(255,255,255,.12); color:#dbeafe; padding:6px 16px; border-radius:999px; font-size:13px; font-weight:600; display:inline-block; }
.badge-primary { background:var(--primary); color:#fff; }
.badge-tag-primary { display:inline-block; background:var(--primary-ultra-light); color:var(--primary); font-size:12px; font-weight:700; padding:4px 14px; border-radius:999px; margin-bottom:14px; }
.badge-tag-green { display:inline-block; background:var(--green-light); color:var(--green); font-size:12px; font-weight:700; padding:4px 14px; border-radius:999px; margin-bottom:14px; }
.badge-tag-amber { display:inline-block; background:#fef3c7; color:#d97706; font-size:12px; font-weight:700; padding:4px 14px; border-radius:999px; margin-bottom:14px; }
.btn-outline-white { background:transparent; color:#fff; border-color:rgba(255,255,255,.4); }
.btn-nowrap-lg { white-space:nowrap; padding:16px 32px; font-size:16px; }

/* --- Decorative Elements --- */
.deco-circle-lg { position:absolute; top:-120px; right:-80px; width:400px; height:400px; border-radius:50%; background:radial-gradient(circle,rgba(10,94,168,.06) 0%,transparent 70%); pointer-events:none; }
.deco-circle-white { position:absolute; top:-100px; right:-100px; width:350px; height:350px; border-radius:50%; background:rgba(255,255,255,.05); pointer-events:none; }
.deco-circle-white-sm { position:absolute; top:-80px; right:-80px; width:300px; height:300px; border-radius:50%; background:rgba(255,255,255,.05); pointer-events:none; }
.process-line { position:absolute; top:36px; left:12.5%; right:12.5%; height:2px; background:linear-gradient(90deg,var(--primary),var(--primary-2)); opacity:.18; z-index:0; }
.timeline-container { position:relative; max-width:800px; margin:0 auto; }
.timeline-line { position:absolute; left:24px; top:0; bottom:0; width:3px; background:linear-gradient(180deg,var(--primary),var(--primary-light),var(--primary-2)); border-radius:2px; }

/* --- Section Headers --- */
.section-header-center { text-align:center; margin-bottom:48px; }
.section-header-narrow { text-align:center; max-width:700px; }
.section-subtitle { color:var(--text-secondary); max-width:600px; margin:14px auto 0; line-height:1.7; }
.section-subtitle-wide { font-size:17px; color:var(--text-secondary); max-width:640px; margin:0 auto 32px; line-height:1.75; }

/* --- Grid Layouts --- */
.grid-4-center { display:grid; grid-template-columns:repeat(4,1fr); gap:32px; text-align:center; }
.grid-4-compact { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; max-width:1080px; margin:0 auto; }
.grid-4-relative { display:grid; grid-template-columns:repeat(4,1fr); gap:32px; position:relative; }
.grid-3-center { display:grid; grid-template-columns:repeat(3,1fr); gap:32px; text-align:center; }
.grid-3-gap { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.grid-3-flush { display:grid; grid-template-columns:repeat(3,1fr); gap:0; }
.grid-2-gap { display:grid; grid-template-columns:repeat(2,1fr); gap:28px; }
.grid-2-wide-center { display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:center; }
.auto-grid-info { display:grid; grid-template-columns:repeat(auto-fill,minmax(240px,1fr)); gap:16px; max-width:1080px; margin:0 auto; }

/* --- Flex Layouts --- */
.flex-gap-center { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }
.flex-gap-wrap { display:flex; gap:12px; flex-wrap:wrap; }
.flex-center { display:flex; align-items:center; justify-content:center; }
.flex-icon-row { display:flex; align-items:center; gap:12px; margin-bottom:12px; }

/* --- Cards --- */
.info-row-item {
  display:flex; align-items:center; gap:14px; padding:18px 22px;
  background:var(--white); border:1px solid var(--line); border-radius:16px;
  font-size:15px; font-weight:500; color:var(--text);
  transition:var(--transition); box-shadow:var(--shadow-sm);
}
.stat-card-center {
  text-align:center; padding:32px 20px;
  background:var(--white); border:1px solid var(--line);
  border-radius:20px; box-shadow:var(--shadow-sm);
}
.process-card {
  text-align:center; padding:36px 24px 32px; border-radius:24px;
  background:var(--white); border:1px solid var(--line);
  position:relative; z-index:1; transition:all .35s ease;
}
.service-card-row {
  display:grid; grid-template-columns:auto 1fr; gap:24px;
  padding:32px; border-radius:24px;
  background:var(--white); border:1px solid var(--line);
  transition:all .35s ease;
}
.card-img-280 { height:280px; overflow:hidden; }
.card-img-220 { height:220px; overflow:hidden; background:var(--bg-soft); display:flex; align-items:center; justify-content:center; }
.card-img-flush { padding:0; overflow:hidden; }
.card-body-padded { padding:24px 28px 28px; }

/* --- Typography --- */
.text-md-mb { font-size:17px; margin:0 0 8px; }
.text-secondary-sm { color:var(--text-secondary); font-size:14px; line-height:1.6; margin:0; }
.text-secondary-body { color:var(--text-secondary); line-height:1.7; margin:0; }
.text-secondary-sm-body { font-size:14px; color:var(--text-secondary); line-height:1.75; margin:0; }
.card-title-md { font-size:18px; font-weight:700; color:var(--text); margin-bottom:8px; }
.card-title-lg { font-size:20px; font-weight:700; color:var(--text); margin-bottom:12px; }
.card-desc-sm { font-size:14px; color:var(--text-secondary); line-height:1.75; margin-bottom:20px; }

/* --- Stats --- */
.stat-number-xl { font-size:clamp(36px,5vw,52px); font-weight:900; color:#fff; line-height:1; }
.stat-number-xl-dark { font-size:40px; font-weight:900; line-height:1; }
.stat-label-white { color:rgba(255,255,255,.75); font-size:15px; margin-top:8px; font-weight:500; }
.stat-sub-white { font-size:14px; color:rgba(255,255,255,.7); margin-top:6px; }
.emoji-lg { font-size:40px; margin-bottom:16px; }
.number-circle {
  width:56px; height:56px; border-radius:50%;
  background:linear-gradient(135deg,var(--primary),var(--primary-2));
  color:#fff; display:flex; align-items:center; justify-content:center;
  font-weight:900; font-size:22px; margin:0 auto 16px;
  box-shadow:0 4px 15px rgba(10,94,168,.25);
}

/* --- Icon Boxes --- */
.icon-box-blue, .icon-box-green, .icon-box-amber, .icon-box-red, .icon-box-indigo, .icon-box-cyan {
  width:42px; height:42px; border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  font-size:20px; flex-shrink:0;
}
.icon-box-blue { background:linear-gradient(135deg,#dbeafe,#eff6ff); }
.icon-box-green { background:linear-gradient(135deg,#d1fae5,#ecfdf5); }
.icon-box-amber { background:linear-gradient(135deg,#fef3c7,#fffbeb); }
.icon-box-red { background:linear-gradient(135deg,#fee2e2,#fef2f2); }
.icon-box-indigo { background:linear-gradient(135deg,#e0e7ff,#eef2ff); }
.icon-box-cyan { background:linear-gradient(135deg,#cffafe,#ecfeff); }

.icon-lg {
  width:64px; height:64px; border-radius:16px;
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 20px; font-size:28px; color:#fff;
}
.icon-lg-primary { background:linear-gradient(135deg,var(--primary),var(--primary-2)); }
.icon-lg-amber { background:linear-gradient(135deg,#f59e0b,#d97706); }
.icon-lg-green { background:linear-gradient(135deg,#10b981,#059669); }

.icon-md {
  width:60px; height:60px; border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 18px; font-size:28px;
}
.icon-md-primary { background:var(--primary-ultra-light); }
.icon-md-green { background:var(--green-light); }
.icon-md-amber { background:#fffbeb; }

.service-icon-box {
  width:64px; height:64px; border-radius:18px;
  background:var(--primary-ultra-light);
  display:flex; align-items:center; justify-content:center;
  font-size:28px; flex-shrink:0;
}

/* --- Border Accents --- */
.border-top-primary { border-top:3px solid var(--primary); }
.border-top-green { border-top:3px solid var(--green); }
.border-top-accent { border-top:3px solid var(--accent); }
.border-left-primary { border-left:3px solid var(--primary); }

/* --- Product Pages --- */
.feature-row { display:flex; align-items:flex-start; gap:10px; font-size:14px; color:var(--text-secondary); line-height:1.7; }
.feature-check { color:var(--primary); font-weight:700; flex-shrink:0; }
.feature-list { list-style:none; padding:0; margin:16px 0 0; display:flex; flex-direction:column; gap:10px; }
.product-hero-img { max-height:360px; object-fit:contain; border-radius:20px; filter:drop-shadow(0 12px 32px rgba(10,94,168,.12)); }
.product-desc { color:var(--text-secondary); line-height:1.8; margin-top:12px; }

/* --- Images --- */
.img-cover-rounded { width:100%; height:100%; object-fit:cover; border-radius:24px; }
.img-cover-zoom { width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.img-hero-tall { width:100%; height:380px; object-fit:cover; }
.img-hero-showcase { width:100%; height:480px; object-fit:cover; border-radius:var(--radius); }
.img-contain-padded { width:100%; height:100%; object-fit:contain; padding:16px; }

/* --- CTA Banner --- */
.cta-banner {
  margin-top:48px;
  background:linear-gradient(135deg,var(--primary-ultra-light),#f0f7ff);
  border:1px solid var(--primary-light); border-radius:20px;
  padding:40px; display:flex; align-items:center; gap:32px; flex-wrap:wrap;
}
.cta-banner-content { flex:1; min-width:240px; }
.cta-banner-icon { font-size:32px; }

/* --- Background Gradients --- */
.bg-gradient-soft { background:linear-gradient(135deg, var(--primary-ultra-light) 0%, #f0f7ff 50%, var(--bg-soft) 100%); }

/* --- Scroll Components (index) --- */
.scroll-container {
  display:flex; gap:24px; overflow-x:auto;
  scroll-snap-type:x mandatory; -webkit-overflow-scrolling:touch;
  padding:8px 0 16px; scrollbar-width:none;
}
.scroll-container::-webkit-scrollbar { display:none; }
.scroll-card { min-width:320px; flex-shrink:0; scroll-snap-align:start; }
.scroll-btn {
  position:absolute; top:50%; transform:translateY(-50%); z-index:10;
  width:44px; height:44px; border-radius:50%;
  background:var(--white); border:1px solid var(--line);
  box-shadow:0 4px 16px rgba(0,0,0,.1); cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  font-size:20px; color:var(--text); transition:all .2s;
}
.scroll-btn-right { right:-20px; }
.scroll-btn-left { left:-20px; }

/* ============================================================
   RESPONSIVE — Extracted Classes
   ============================================================ */
@media (max-width:1024px) {
  .grid-4-center, .grid-4-compact, .grid-4-relative { grid-template-columns:repeat(2,1fr); }
  .grid-2-wide-center { gap:32px; }
  .cta-banner { padding:28px; gap:20px; }
}
@media (max-width:768px) {
  .grid-4-center, .grid-4-compact, .grid-4-relative,
  .grid-3-center, .grid-3-gap { grid-template-columns:repeat(2,1fr); gap:20px; }
  .grid-2-wide-center { grid-template-columns:1fr; gap:24px; }
  .grid-2-gap { grid-template-columns:1fr; gap:20px; }
  .grid-3-flush { grid-template-columns:1fr; }
  .page-hero-gradient { padding:56px 0 36px; }
  .section-dark-gradient { padding:48px 0; }
  .service-card-row { grid-template-columns:1fr; padding:24px; }
  .info-row-item { padding:14px 16px; gap:10px; font-size:14px; }
  .cta-banner { flex-direction:column; padding:24px; text-align:center; }
  .cta-banner-content { min-width:auto; }
  .scroll-card { min-width:280px; }
  .scroll-btn { display:none; }
  .img-hero-showcase { height:320px; }
  .img-hero-tall { height:260px; }
  .card-img-280 { height:200px; }
  .card-img-220 { height:180px; }
  .process-line { display:none; }
  .deco-circle-lg, .deco-circle-white, .deco-circle-white-sm { display:none; }
  .stat-number-xl { font-size:clamp(28px,8vw,40px); }
  .number-circle { width:48px; height:48px; font-size:18px; }
}
@media (max-width:480px) {
  .grid-4-center, .grid-4-compact, .grid-4-relative { grid-template-columns:1fr 1fr; gap:16px; }
  .grid-3-center, .grid-3-gap { grid-template-columns:1fr; }
  .grid-2-gap { gap:16px; }
  .auto-grid-info { grid-template-columns:1fr; }
  .section-header-center { margin-bottom:32px; }
  .info-row-item { border-radius:12px; }
  .stat-card-center { padding:24px 16px; border-radius:16px; }
  .process-card { padding:28px 18px 24px; border-radius:18px; }
  .icon-lg { width:52px; height:52px; font-size:24px; }
  .icon-md { width:48px; height:48px; font-size:24px; }
  .service-icon-box { width:52px; height:52px; font-size:24px; border-radius:14px; }
  .product-hero-img { max-height:260px; border-radius:16px; }
  .scroll-card { min-width:260px; }
  .img-hero-showcase { height:240px; }
  .py-60 { padding:40px 0; }
  .page-hero-gradient { padding:40px 0 28px; }
}

/* Dark mode adjustments */
[data-theme="dark"] .info-row-item { background:var(--bg-card); border-color:var(--line); }
[data-theme="dark"] .stat-card-center { background:var(--bg-card); border-color:var(--line); }
[data-theme="dark"] .process-card { background:var(--bg-card); border-color:var(--line); }
[data-theme="dark"] .service-card-row { background:var(--bg-card); border-color:var(--line); }
[data-theme="dark"] .icon-box-blue { background:linear-gradient(135deg,rgba(59,130,246,.15),rgba(59,130,246,.08)); }
[data-theme="dark"] .icon-box-green { background:linear-gradient(135deg,rgba(16,185,129,.15),rgba(16,185,129,.08)); }
[data-theme="dark"] .icon-box-amber { background:linear-gradient(135deg,rgba(245,158,11,.15),rgba(245,158,11,.08)); }
[data-theme="dark"] .icon-box-red { background:linear-gradient(135deg,rgba(239,68,68,.15),rgba(239,68,68,.08)); }
[data-theme="dark"] .icon-box-indigo { background:linear-gradient(135deg,rgba(99,102,241,.15),rgba(99,102,241,.08)); }
[data-theme="dark"] .icon-box-cyan { background:linear-gradient(135deg,rgba(6,182,212,.15),rgba(6,182,212,.08)); }
[data-theme="dark"] .badge-tag-primary { background:rgba(10,94,168,.15); }
[data-theme="dark"] .badge-tag-green { background:rgba(16,185,129,.15); }
[data-theme="dark"] .badge-tag-amber { background:rgba(245,158,11,.15); }
[data-theme="dark"] .bg-gradient-soft { background:var(--bg-soft); }
[data-theme="dark"] .page-hero-gradient { background:linear-gradient(160deg,var(--bg-soft) 0%,var(--bg) 50%,var(--bg-soft) 100%); }
[data-theme="dark"] .cta-banner { background:var(--bg-card); border-color:var(--line); }

/* --- Round 2: Remaining extracted styles --- */
.spec-item { display:flex; gap:10px; align-items:center; }
.spec-label { color:var(--primary); font-weight:800; }
.table-scroll { overflow-x:auto; -webkit-overflow-scrolling:touch; }
.table-min-w { min-width:800px; }
.emoji-xl { font-size:36px; margin-bottom:12px; }
.text-xl { font-size:22px; }
.detail-grid { display:grid; gap:12px; margin-top:16px; color:var(--text-secondary); line-height:1.75; }
.badge-soft-primary { background:var(--primary-ultra-light); border-color:var(--primary-light); align-self:start; }
.btn-white-primary { background:#fff; color:var(--primary); font-weight:700; padding:13px 24px; border-radius:999px; font-size:14px; }
.btn-glass-white { background:rgba(255,255,255,.15); color:#fff; border:1px solid rgba(255,255,255,.3); border-radius:14px; padding:14px 32px; }
.btn-solid-white { background:#fff; color:var(--primary); font-weight:700; border-radius:14px; padding:14px 32px; }
.img-card-shadow { border-radius:24px; overflow:hidden; box-shadow:0 20px 50px rgba(10,94,168,.12); }

@media (max-width:768px) {
  .table-min-w { min-width:600px; }
  .spec-item { gap:8px; font-size:14px; }
  .btn-white-primary { padding:10px 18px; font-size:13px; }
  .btn-glass-white, .btn-solid-white { padding:12px 24px; font-size:14px; }
}
@media (max-width:480px) {
  .emoji-xl { font-size:28px; margin-bottom:8px; }
}

/* --- Round 3: Final utilities --- */
.page-emoji-title { font-size:48px; margin:14px 0 0; }
.contact-info-grid { margin-top:28px; display:grid; gap:18px; color:var(--text-secondary); line-height:1.8; }
.mt-36 { margin-top:36px; }
.my-12 { margin:12px 0; }

@media (max-width:480px) {
  .page-emoji-title { font-size:36px; }
  .table-min-w { min-width:520px; }
}

/* ============================================================
   PREMIUM MOBILE UX POLISH v4.0
   Apple-level spacing, fluid everything, zero overflow
   ============================================================ */

/* --- Global overflow prevention --- */
html, body { overflow-x: hidden; max-width: 100vw; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; width: 100%; }
section, .section { overflow-x: clip; }

/* --- Smooth scroll behavior for anchor links --- */
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

/* --- Better focus states for keyboard nav --- */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* --- Fluid stat numbers that don't break on mobile --- */
.stat-number-xl-dark { font-size: clamp(28px, 8vw, 40px); }
.emoji-lg { font-size: clamp(28px, 6vw, 40px); }

/* --- Table scroll enhancement --- */
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-light) transparent;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}
.table-scroll::-webkit-scrollbar { height: 6px; }
.table-scroll::-webkit-scrollbar-track { background: var(--bg-soft); border-radius: 3px; }
.table-scroll::-webkit-scrollbar-thumb { background: var(--primary-light); border-radius: 3px; }

/* --- Card hover elevation (desktop only) --- */
@media (hover: hover) {
  .info-row-item:hover { border-color: var(--primary-light); box-shadow: var(--shadow); transform: translateY(-2px); }
  .stat-card-center:hover { border-color: var(--primary-light); box-shadow: var(--shadow); transform: translateY(-3px); }
  .process-card:hover { border-color: var(--primary-light); box-shadow: var(--shadow); transform: translateY(-4px); }
  .service-card-row:hover { border-color: var(--primary-light); box-shadow: var(--shadow); transform: translateY(-2px); }
}

/* --- Button polish --- */
.btn-white-primary:hover { background: var(--primary); color: #fff; }
.btn-glass-white:hover { background: rgba(255,255,255,.25); }
.btn-solid-white:hover { background: var(--primary-ultra-light); }

/* --- Premium image loading --- */
img { background: var(--bg-soft); }
.product-hero-img { width: 100%; height: auto; }

/* ============================================================
   MOBILE PREMIUM — 768px
   ============================================================ */
@media (max-width: 768px) {
  /* Section spacing — Apple-level breathing room */
  .section, section { padding: clamp(36px, 6vw, 64px) 0; }
  
  /* Fix grid-2-wide-center for product pages */
  .grid-2-wide-center {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }
  .grid-2-wide-center .product-hero-img {
    max-height: 280px;
    margin: 0 auto;
  }
  .grid-2-wide-center .feature-list { text-align: left; }
  
  /* Service card row — stack on mobile */
  .service-card-row {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px 20px;
  }
  .service-icon-box { margin: 0 auto; }
  
  /* Process cards — 2 col on tablet, 1 on phone */
  .grid-4-relative { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  
  /* CTA banner full stack */
  .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 28px 20px;
    gap: 16px;
  }
  
  /* Scroll container touch polish */
  .scroll-container { gap: 16px; padding: 4px 0 12px; }
  .scroll-card { min-width: 280px; }
  
  /* Image heights on mobile */
  .img-hero-showcase { height: 300px; border-radius: 16px; }
  .img-hero-tall { height: 240px; }
  
  /* Contact info grid */
  .contact-info-grid { gap: 14px; }
  
  /* Badge improvements */
  .badge-hero-glass { font-size: 12px; padding: 5px 12px; }
  
  /* Fix feature rows for readability */
  .feature-row { font-size: 13px; gap: 8px; }
  .detail-grid { gap: 10px; font-size: 14px; }
  
  /* Spec items */
  .spec-item { font-size: 13px; gap: 6px; }
  
  /* Grids flush becomes single col */
  .grid-3-flush { grid-template-columns: 1fr; }
  .grid-3-flush > * { border-bottom: 1px solid var(--line); padding: 20px; }
  .grid-3-flush > *:last-child { border-bottom: none; }
}

/* ============================================================
   MOBILE SMALL — 480px
   ============================================================ */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  
  /* Typography scale down */
  h1 { font-size: clamp(24px, 6vw, 32px); }
  h2 { font-size: clamp(20px, 5vw, 28px); }
  h3 { font-size: clamp(16px, 3.5vw, 22px); }
  
  /* Process cards single column */
  .grid-4-relative { grid-template-columns: 1fr; }
  .grid-4-center, .grid-4-compact { grid-template-columns: 1fr 1fr; gap: 12px; }
  
  /* Smaller section headers */
  .section-header-center { margin-bottom: 28px; }
  .section-subtitle, .section-subtitle-wide { font-size: 14px; margin-top: 10px; }
  
  /* Card title sizes */
  .card-title-md { font-size: 16px; }
  .card-title-lg { font-size: 17px; }
  
  /* Touch-friendly buttons */
  .btn, .btn-lg, .btn-outline-white, .btn-nowrap-lg {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Info row items compact */
  .info-row-item {
    padding: 12px 14px;
    gap: 10px;
    font-size: 13px;
    border-radius: 12px;
  }
  .icon-box-blue, .icon-box-green, .icon-box-amber, .icon-box-red, .icon-box-indigo, .icon-box-cyan {
    width: 36px; height: 36px; font-size: 16px; border-radius: 10px;
  }
  
  /* Number circles smaller */
  .number-circle { width: 44px; height: 44px; font-size: 17px; margin-bottom: 12px; }
  
  /* Stats */
  .stat-number-xl { font-size: clamp(24px, 10vw, 36px); }
  .stat-label-white { font-size: 13px; }
  
  /* Scroll cards compact */
  .scroll-card { min-width: 250px; }
  .scroll-container { gap: 12px; }
  
  /* Image heights */
  .img-hero-showcase { height: 220px; border-radius: 12px; }
  .card-img-280 { height: 180px; }
  .card-img-220 { height: 160px; }
  
  /* Product page image */
  .product-hero-img { max-height: 220px; border-radius: 14px; }
  
  /* CTA banner ultra compact */
  .cta-banner { padding: 20px 16px; border-radius: 16px; }
  .cta-banner-icon { font-size: 28px; }
  
  /* Icon boxes smaller */
  .icon-lg { width: 48px; height: 48px; font-size: 22px; border-radius: 14px; }
  .icon-md { width: 44px; height: 44px; font-size: 22px; border-radius: 12px; }
  .service-icon-box { width: 48px; height: 48px; font-size: 22px; border-radius: 14px; }
  
  /* Emoji title */
  .page-emoji-title { font-size: 32px; }
  
  /* Grid 2 gap compact */
  .grid-2-gap { gap: 14px; }
  .grid-3-gap { gap: 14px; }
}

/* ============================================================
   TINY SCREENS — 360px (iPhone SE, old Android)
   ============================================================ */
@media (max-width: 360px) {
  .container { padding: 0 12px; }
  h1 { font-size: 22px; }
  h2 { font-size: 19px; }
  .info-row-item { padding: 10px 12px; font-size: 12px; }
  .stat-card-center { padding: 18px 12px; border-radius: 14px; }
  .grid-4-center, .grid-4-compact { grid-template-columns: 1fr; }
  .badge-tag-primary, .badge-tag-green, .badge-tag-amber { font-size: 11px; padding: 3px 10px; }
  .scroll-card { min-width: 230px; }
  .btn-white-primary { padding: 10px 16px; font-size: 12px; }
}

/* ============================================================
   LANDSCAPE PHONE FIX
   ============================================================ */
@media (max-height: 500px) and (orientation: landscape) {
  .slide { min-height: auto; padding: 32px 0; }
  .page-hero-gradient { padding: 32px 0 24px; }
  .section-dark-gradient { padding: 32px 0; }
  .mobile-nav { max-height: 60vh; overflow-y: auto; }
}

/* ============================================================
   HIGH-RES DESKTOP — 1440px+
   ============================================================ */
@media (min-width: 1440px) {
  .container { max-width: 1320px; }
  .grid-4-center, .grid-4-compact, .grid-4-relative { gap: 40px; }
  .grid-3-center, .grid-3-gap { gap: 36px; }
  .info-row-item { padding: 20px 26px; font-size: 16px; }
}

/* ============================================================
   PRINT OPTIMIZATION
   ============================================================ */
@media print {
  .header, .footer, .mobile-nav, .whatsapp-float, .dark-mode-toggle,
  .scroll-btn, .badge-hero-glass, .deco-circle-lg, .deco-circle-white { display: none !important; }
  .section-dark-gradient { background: #f0f0f0 !important; color: #000 !important; }
  .page-hero-gradient { background: #fafafa !important; }
  body { font-size: 12pt; }
}
