﻿/* ==========================================================================
   Controlist - Ana Stil Dosyası
   Profesyonel kalite kontrol & üretim denetimi kurumsal sitesi
   ========================================================================== */

:root {
  /* Gerçek Controlist paleti: turuncu marka #ef7d00 + Space Grotesk */
  --navy: #32373c;          /* koyu bölümler (değerler, footer, hero overlay) */
  --navy-light: #41464d;
  --teal: #ef7d00;          /* marka turuncusu #EF7D00 (239,125,0) — CTA buton, vurgu */
  --teal-dark: #d66f00;     /* hover */
  --orange-bright: #ef7d00; /* eyebrow ikon / vurgu */
  --accent: #f7c600;        /* sarı vurgu (ikincil ok) */
  --text: #616161;          /* gerçek body metin rengi */
  --text-muted: #6f7377;
  --bg: #ffffff;
  --bg-soft: #fafafa;
  --bg-soft-2: #f3f4f5;
  --border: #e7e9ec;
  --border-soft: #eef0f2;
  --white: #ffffff;
  --ink-900: #1f1f1f;
  --ink-700: #1f1f1f;
  --shadow-sm: 0 1px 3px rgba(20, 23, 26, 0.06), 0 1px 2px rgba(20, 23, 26, 0.04);
  --shadow-md: 0 6px 24px rgba(20, 23, 26, 0.08);
  --shadow-lg: 0 18px 50px rgba(20, 23, 26, 0.12);
  --radius: 12px;
  --radius-sm: 9px;
  --container: 1180px;
  --header-h: 98px;
  --font-head: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Space Grotesk', system-ui, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;                 /* gerçek site: 17px */
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;                /* gerçek site: 1.7 */
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Başlıklar — gerçek control-ist değerleri */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-head); font-weight: 700; line-height: 1.35; letter-spacing: 0; color: var(--ink-900); }
h1 { font-size: clamp(34px, 5vw, 55px); line-height: 1.18; }
h2 { font-size: clamp(30px, 4.6vw, 52px); line-height: 1.12; }
h3 { font-size: clamp(25px, 3vw, 40px); line-height: 1.25; }
h4 { font-size: clamp(22px, 2.2vw, 30px); line-height: 1.33; }
h5 { font-size: 22px; line-height: 1.45; }
h6 { font-size: 20px; line-height: 1.5; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 28px; border-radius: 0; font-weight: 600;
  font-family: var(--font-head); font-size: 14.5px; letter-spacing: 0.2px; cursor: pointer;
  border: 1.5px solid transparent; transition: var(--transition); white-space: nowrap;
}
.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: var(--teal); color: #fff; border-color: var(--teal); }
.btn-outline:hover { background: var(--teal-dark); color: #fff; border-color: var(--teal-dark); }
.btn-navy { background: var(--teal); color: #fff; }
.btn-navy:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: var(--teal); color: #fff; }
.btn-ghost:hover { background: var(--teal-dark); }

/* ---------- Section helpers ---------- */
.section { padding: 96px 0; }
.section-soft { background: var(--bg-soft); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-head); font-weight: 700;
  font-size: 14.5px; letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--orange-bright); margin-bottom: 14px;
}
.eyebrow svg { flex-shrink: 0; }
.section-title { font-size: clamp(28px, 3.2vw, 38px); line-height: 1.16; margin-bottom: 20px; }
.section-lead { color: var(--text-muted); font-size: 17px; line-height: 1.7; max-width: 640px; }
.center { text-align: center; }
.center .section-lead { margin-left: auto; margin-right: auto; }

/* ==========================================================================
   TOPBAR
   ========================================================================== */
.topbar { background: #fff; color: var(--text-muted); font-size: 13.5px; border-bottom: 1px solid var(--border); }
.topbar .container { display: flex; align-items: center; justify-content: space-between; height: 42px; }
.topbar-info { display: flex; gap: 26px; align-items: center; }
.topbar-info a, .topbar-info span { display: inline-flex; align-items: center; gap: 7px; color: var(--text-muted); transition: var(--transition); }
.topbar-info a:hover { color: var(--teal); }
.topbar-social a { width: 30px; height: 30px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--border); border-radius: 0; color: var(--teal); }
.topbar-social a:hover { background: var(--teal); border-color: var(--teal); color: #fff; }
.topbar svg { width: 15px; height: 15px; }

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.header {
  position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: flex-start; height: var(--header-h); }
.logo { display: flex; align-items: center; gap: 0; }
.nav > .logo { margin-left: -36px; }
.logo-mark {                                  /* gerçek marka logosu (assets/img/logo.jpg) */
  width: 95px; height: 95px; border-radius: 8px; flex-shrink: 0;
  background: url('../img/logo.jpg') center / contain no-repeat;
  transition: var(--transition);
}
.logo:hover .logo-mark { transform: scale(1.05); }
.logo-mark svg { display: none; }
.logo-text { display: none; }                 /* yazı görselin içinde */

.menu { display: flex; align-items: stretch; gap: 0; height: var(--header-h); margin-left: 72px; flex-wrap: nowrap; }
.menu > li { position: relative; display: flex; align-items: center; flex-shrink: 0; }
.menu > li > a {
  position: relative; display: flex; align-items: center; height: 100%;
  padding: 0 17px; font-family: var(--font-head); font-weight: 500;
  font-size: 15px; color: #1f1f1f; letter-spacing: 0.4px; text-transform: uppercase;
  white-space: nowrap;                     /* çok kelimeli çeviriler (ÜBER UNS) tek satırda kalsın */
  transition: color var(--transition);
}
/* aktif/hover: üstte turuncu çubuk (gerçek site) */
.menu > li > a::after {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%) scaleX(0);
  width: calc(100% - 24px); height: 3px; background: var(--orange-bright);
  transform-origin: center; transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}
.menu > li > a:hover, .menu > li.active > a { color: var(--orange-bright); }
.menu > li > a:hover::after, .menu > li.active > a::after { transform: translateX(-50%) scaleX(1); }
.has-dropdown { position: relative; }
.has-dropdown > a::before { content: '▾'; order: 2; margin-left: 7px; font-size: 11px; line-height: 1; }
.dropdown {
  position: absolute; top: 100%; left: 0; min-width: 250px; background: #fff;
  border-radius: 12px; box-shadow: var(--shadow-lg); padding: 10px;
  opacity: 0; visibility: hidden; transform: translateY(10px); transition: var(--transition);
  border: 1px solid var(--border);
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 11px 14px; border-radius: 0; font-size: 14px; font-weight: 500; color: var(--text); transition: var(--transition); }
.dropdown a:hover { background: var(--bg-soft); color: var(--teal); padding-left: 18px; }
.nav-actions { display: flex; align-items: center; gap: 20px; margin-left: auto; }
.nav-actions > .nav-cta { margin-left: 4px; }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.burger span { width: 26px; height: 2.5px; background: var(--navy); border-radius: 2px; transition: var(--transition); }

/* Header sağ küme: LinkedIn + dil + buton + grid */
.nav-social { width: 22px; height: 22px; color: #1f1f1f; transition: var(--transition); }
.nav-social svg { width: 100%; height: 100%; }
.nav-social:hover { color: var(--orange-bright); }
.lang-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  padding: 6px 11px;
  border: 1px solid var(--border);
  background: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13.5px;
  color: #1f1f1f;
  cursor: pointer;
  outline: none;
  line-height: 1;
}
.lang-switch:hover { border-color: rgba(239, 125, 0, 0.55); color: var(--orange-bright); }
.lang-flag {
  display: inline-block;
  width: auto;
  height: auto;
  background: transparent;
  color: inherit;
  font-size: 16px;
  line-height: 1;
}
.lang-label { min-width: 0; }
.lang-caret { display: none; }
/* CTA butonu — gerçek: turuncu, hafif yuvarlak */
.nav-cta { padding: 14px 28px; font-size: 15px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; border-radius: 0; }
.lang-menu { position: absolute; top: calc(100% + 8px); right: 0; min-width: 150px; background: #fff; border: 1px solid var(--border); border-radius: 0; box-shadow: var(--shadow-lg); padding: 6px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: var(--transition); }
/* Masaüstü (fare/klavye): hover ve focus ile açılır */
@media (hover: hover) {
  .lang-switch:hover .lang-menu, .lang-switch:focus-within .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
}
/* Dokunmatik/mobil: JS'in eklediği .open sınıfı ile aç/kapa (dışarı dokununca kapanır) */
.lang-switch.open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-menu a { display: flex; align-items: center; gap: 9px; padding: 9px 10px; border-radius: 0; font-size: 13px; color: var(--text); font-weight: 600; }
.lang-menu a span { display: inline-block; width: 20px; background: transparent; color: inherit; font-size: 15px; }
.lang-menu a:hover { background: var(--bg-soft); color: var(--orange-bright); }
.offcanvas-toggle { background: none; border: none; cursor: pointer; color: #1f1f1f; padding: 6px; display: grid; place-items: center; transition: var(--transition); }
.offcanvas-toggle:hover { color: var(--orange-bright); }

/* ---------- Offcanvas panel ---------- */
.offcanvas-overlay { position: fixed; inset: 0; background: rgba(20,22,25,0.55); opacity: 0; visibility: hidden; transition: var(--transition); z-index: 200; }
.offcanvas-overlay.open { opacity: 1; visibility: visible; }
.offcanvas { position: fixed; top: 0; right: 0; width: 380px; max-width: 88vw; height: 100%; background: #fff; z-index: 210; padding: 38px 32px; overflow-y: auto; transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.4,0,0.2,1); box-shadow: -16px 0 50px rgba(20,22,25,0.18); }
.offcanvas.open { transform: translateX(0); }
.offcanvas-close { position: absolute; top: 24px; right: 24px; background: var(--bg-soft); border: none; width: 40px; height: 40px; border-radius: 0; display: grid; place-items: center; cursor: pointer; color: var(--navy); transition: var(--transition); }
.offcanvas-close:hover { background: var(--orange-bright); color: #fff; }
.offcanvas-logo { margin-bottom: 26px; }
.offcanvas-tag { font-weight: 700; color: var(--navy); font-size: 16px; line-height: 1.6; margin-bottom: 28px; }
.offcanvas-contact { display: flex; flex-direction: column; gap: 18px; padding-bottom: 24px; border-bottom: 1px solid var(--border); margin-bottom: 22px; }
.offcanvas-contact li { display: flex; gap: 12px; font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.offcanvas-contact svg { width: 20px; height: 20px; color: var(--orange-bright); flex-shrink: 0; margin-top: 2px; }
.offcanvas-contact a { color: var(--text-muted); }
.offcanvas-contact a:hover { color: var(--orange-bright); }
.offcanvas-social { margin-bottom: 26px; }
.offcanvas-social a { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 0; background: var(--teal); color: #fff; transition: var(--transition); }
.offcanvas-social a svg { width: 18px; height: 18px; }
.offcanvas-social a:hover { background: var(--teal-dark); }
.offcanvas-menu { border-top: 1px solid var(--border); padding-top: 18px; }
.offcanvas-menu li a { display: block; padding: 13px 4px; font-family: var(--font-head); font-weight: 600; font-size: 15px; color: var(--navy); border-bottom: 1px solid var(--border); transition: var(--transition); }
.offcanvas-menu li a:hover { color: var(--orange-bright); padding-left: 10px; }

/* ==========================================================================
   HERO SLIDER
   ========================================================================== */
.hero { position: relative; height: calc(100vh - var(--header-h)); min-height: 580px; max-height: 760px; overflow: hidden; }
.slides { height: 100%; position: relative; }
.slide {
  position: absolute; inset: 0; opacity: 0; visibility: hidden;
  transition: opacity 1s ease; display: flex; align-items: center;
}
.slide.active { opacity: 1; visibility: visible; }
.slide::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(20,22,25,0.92) 0%, rgba(20,22,25,0.72) 45%, rgba(20,22,25,0.35) 100%);
  z-index: 1;
}
.slide-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.08); transition: transform 6s ease; }
.slide.active .slide-bg { transform: scale(1); }
.slide-content { position: relative; z-index: 2; max-width: 640px; color: #fff; }
.slide-label { display: inline-block; font-family: var(--font-head); font-weight: 600; font-size: 15px; color: var(--orange-bright); margin-bottom: 20px; padding-bottom: 8px; border-bottom: 2px solid var(--orange-bright); }
.slide-content h1, .slide-content h2 { color: #fff; font-size: clamp(34px, 5vw, 58px); margin-bottom: 18px; max-width: 820px; }
.slide-lead { font-family: var(--font-head); font-weight: 500; font-size: clamp(19px, 2.2vw, 28px); line-height: 1.45; color: #fff; margin-bottom: 34px; }
.slide-content p { font-size: 18px; color: rgba(255,255,255,0.9); margin-bottom: 32px; max-width: 560px; }
.slide-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.slider-dots { position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); z-index: 5; display: flex; gap: 12px; }
.slider-dots button { width: 12px; height: 12px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.7); background: transparent; cursor: pointer; transition: var(--transition); padding: 0; }
.slider-dots button.active { background: var(--teal); border-color: var(--teal); width: 34px; border-radius: 6px; }
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3); color: #fff; cursor: pointer;
  display: grid; place-items: center; transition: var(--transition); backdrop-filter: blur(4px);
}
.slider-arrow:hover { background: var(--teal); border-color: var(--teal); }
.slider-arrow.prev { left: 28px; }
.slider-arrow.next { right: 28px; }

/* ---- Anasayfa HERO SLIDER (panelden yönetilir) ---- */
.hero-slider {
  height: auto; min-height: 0; max-height: none; overflow: hidden;
  background: #fff; padding: 56px 0 76px; position: relative;
}
.hero-slider .container { max-width: 1260px; position: relative; }
.hero-slider-viewport { overflow: hidden; }
.hero-track { display: flex; transition: transform 0.6s cubic-bezier(0.4,0,0.2,1); }
.hero-slide { min-width: 100%; }
/* Görseller tek slaytta yan yana — görsel sayısına göre ortalanır (1 / 2 / 3) */
.hero-media-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: stretch; gap: clamp(12px, 3.4vw, 65px); }
.hero-media { flex: 1 1 0; min-width: 0; border-radius: 6px; overflow: hidden; background: var(--bg-soft); }
.hero-media img { width: 100%; height: clamp(150px, 17vw, 242px); object-fit: cover; display: block; }
/* 1 görsel: ortalı, aşırı genişlemesin */
.hero-media-row[data-count="1"] .hero-media { flex: 0 1 clamp(280px, 58vw, 640px); }
/* 2 görsel: eşit iki sütun, ortalı */
.hero-media-row[data-count="2"] .hero-media { flex: 1 1 0; max-width: 500px; }
/* 3 görsel: orijinal 419/318/316 oranı */
.hero-media-row[data-count="3"] .hero-media:nth-child(1) { flex-grow: 419; }
.hero-media-row[data-count="3"] .hero-media:nth-child(2) { flex-grow: 318; }
.hero-media-row[data-count="3"] .hero-media:nth-child(3) { flex-grow: 316; }
.hero-copy { max-width: 1022px; margin: 14px 0 0; }
.hero-slide .slide-label {
  display: inline-flex; align-items: center; min-height: 34px; padding: 5px 18px; margin: 0 0 20px;
  border: 0; border-radius: 999px; background: #969696; color: #fff; font-size: 16px; font-weight: 500; letter-spacing: 0;
}
.hero-copy h1 { max-width: 860px; margin-bottom: 24px; color: #000; font-size: clamp(21px, 2.6vw, 26px); line-height: 1.14; font-weight: 700; }
.hero-copy .btn { min-width: 250px; min-height: 56px; justify-content: center; padding: 14px 26px; font-size: 16px; font-weight: 700; }
/* oklar + noktalar */
.hero-arrow {
  position: absolute; top: calc(56px + clamp(150px, 17vw, 242px) / 2); transform: translateY(-50%); z-index: 4;
  width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,0.9); border: 1px solid var(--border);
  color: var(--ink-900); display: grid; place-items: center; cursor: pointer; transition: var(--transition); box-shadow: var(--shadow-sm);
}
.hero-arrow:hover { background: var(--orange-bright); color: #fff; border-color: var(--orange-bright); }
.hero-arrow.prev { left: 8px; }
.hero-arrow.next { right: 8px; }
.hero-dots { display: flex; justify-content: center; gap: 9px; margin-top: 22px; }
.hero-dots button { width: 10px; height: 10px; border-radius: 50%; border: 0; background: #d5d8db; cursor: pointer; padding: 0; transition: var(--transition); }
.hero-dots button.active { background: var(--orange-bright); width: 28px; border-radius: 6px; }
.hero-slider[data-single] .hero-arrow, .hero-slider[data-single] .hero-dots { display: none; }

/* ==========================================================================
   VALUE PROPS (01-04)
   ========================================================================== */
.values {
  background: #fff;
  margin-top: -1px;
  padding: 58px 0 62px;
  border-bottom: 1px solid var(--border);
}
.values .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.value-card {
  position: relative;
  min-height: 340px;
  padding: 34px 28px 30px;
  overflow: hidden;
  border: 0;
  background: #f7f7f7;
  clip-path: polygon(0 0, calc(100% - 58px) 0, 100% 76px, 100% 100%, 0 100%);
  transition: var(--transition);
  cursor: default;
}
.value-card:hover {
  background: #f3f4f5;
  transform: translateY(-4px);
}
.value-num {
  position: absolute;
  right: -6px;
  bottom: -14px;
  z-index: 0;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 112px;
  line-height: 0.86;
  color: rgba(0, 0, 0, 0.035);
  letter-spacing: 0;
  pointer-events: none;
}
.value-card h3 {
  position: relative;
  z-index: 1;
  color: var(--ink-900);
  font-size: 22px;
  line-height: 1.24;
  margin-bottom: 14px;
}
.value-card p {
  position: relative;
  z-index: 1;
  color: #676767;
  font-size: 15.2px;
  line-height: 1.6;
}

/* ==========================================================================
   ABOUT + STATS
   ========================================================================== */
.about-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr); gap: 72px; align-items: start; }
.about-media { position: relative; }
.about-media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.about-badge {
  position: absolute; bottom: -28px; right: -16px; background: var(--teal); color: #fff;
  padding: 22px 28px; border-radius: var(--radius); box-shadow: var(--shadow-md); max-width: 220px;
}
.about-badge strong { font-family: var(--font-head); font-size: 30px; display: block; }
.about-badge span { font-size: 13.5px; opacity: 0.95; }
.about-heading .section-title { max-width: 680px; font-size: clamp(34px, 3.8vw, 46px); line-height: 1.15; margin-bottom: 0; }
.about-content { padding-top: 10px; }
.about-content p { color: var(--text-muted); font-size: 16px; line-height: 1.65; margin-bottom: 30px; }
.about-tagline { font-family: var(--font-head); font-weight: 700; color: var(--teal); font-size: 20px; margin: 22px 0; }

.stats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 80px; margin-top: 86px; background: transparent; border: 0; border-radius: 0; overflow: visible; box-shadow: none; }
.stat {
  min-height: 126px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  padding: 0;
  background: transparent;
  border-right: 0;
  text-align: center;
}
.stat:last-child { border-right: none; }
.stat::after { content: ''; width: 180px; height: 1px; background: #d7d7d7; order: 2; }
.stat-num {
  order: 1;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(60px, 5.8vw, 82px);
  color: transparent;
  line-height: 0.9;
  letter-spacing: 0;
  flex-shrink: 0;
  -webkit-text-stroke: 1.5px #7f7f7f;
  text-stroke: 1.5px #7f7f7f;
}
.stat-num span { color: transparent; }
.stat-label { order: 3; max-width: none; color: #62666a; font-family: var(--font-head); font-size: clamp(16px, 1.4vw, 18px); font-weight: 500; line-height: 1.3; margin-top: 0; }
.stats-feature { max-width: 760px; margin-left: auto; margin-right: auto; }
.about-centered-text {
  max-width: 1180px;
  margin: 56px auto 0;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
}

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 56px; }
.service-card {
  background: #fff; border-radius: var(--radius); padding: 40px 32px; border: 1px solid var(--border);
  transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--teal); transform: scaleX(0); transform-origin: left; transition: var(--transition); }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 64px; height: 64px; border-radius: 16px; background: linear-gradient(135deg, var(--teal), var(--accent)); display: grid; place-items: center; color: #fff; margin-bottom: 24px; }
.service-icon svg { width: 30px; height: 30px; }
.service-card h3 { font-size: 22px; margin-bottom: 14px; }
.service-card p { color: var(--text-muted); font-size: 15px; margin-bottom: 20px; }
.service-card ul { margin-bottom: 24px; }
.service-card ul li { padding: 7px 0 7px 28px; position: relative; font-size: 14.5px; color: var(--text); }
.service-card ul li::before { content: '✓'; position: absolute; left: 0; color: var(--teal); font-weight: 700; }
.service-link { font-family: var(--font-head); font-weight: 600; color: var(--teal); display: inline-flex; align-items: center; gap: 8px; transition: var(--transition); }
.service-link:hover { gap: 14px; }

.services-overview-section { background: #fff; padding-top: 84px; }
.service-overview-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.service-overview-card { position: relative; display: flex; flex-direction: column; min-height: 100%; background: transparent; border: 0; color: var(--text); overflow: visible; transition: var(--transition); }
.service-overview-card:hover { transform: none; box-shadow: none; border-color: transparent; }
.service-overview-card img { width: 100%; height: 216px; object-fit: cover; display: block; }
.service-overview-num {
  position: static;
  width: auto;
  height: auto;
  display: block;
  place-items: initial;
  background: transparent;
  color: #f1f2f3;
  font-size: 42px;
  line-height: 1;
  font-weight: 700;
  text-shadow: 0 1px 0 #d9dde1;
  margin: 8px 0 18px 4px;
  z-index: 1;
}
.service-overview-body { display: flex; flex-direction: column; flex: 1; padding: 0 6px; }
.service-overview-body h3 { color: #000; font-size: 20px; line-height: 1.2; margin: 8px 0 18px; }
.service-overview-body p { display: none; }
.service-overview-body > span:not(.service-overview-num) {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0;
  color: #4c5661;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
}
.service-overview-body > span:not(.service-overview-num)::after {
  content: '›';
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  background: #e8eaed;
  color: #727982;
  font-size: 20px;
  line-height: 1;
  transition: var(--transition);
}
.service-overview-card:hover .service-overview-body > span:not(.service-overview-num) { color: var(--orange-bright); }
.service-overview-card:hover .service-overview-body > span:not(.service-overview-num)::after { background: var(--orange-bright); color: #fff; }

.service-detail-hero { background: #f7f8f9; padding: 70px 0; border-bottom: 1px solid var(--border); }
.service-detail-grid { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 56px; align-items: start; }
.service-detail-content { background: #fff; border: 1px solid var(--border); padding: 42px; }
.service-detail-content p { color: var(--text-muted); line-height: 1.85; margin-bottom: 18px; }
.service-detail-media img { width: 100%; height: auto; display: block; margin-bottom: 28px; }
.service-detail-sidebar { position: sticky; top: calc(var(--header-h) + 24px); background: #fff; border: 1px solid var(--border); padding: 26px; }
.service-detail-sidebar h3 { font-size: 20px; margin-bottom: 18px; }
.service-side-links a { display: block; padding: 14px 0; border-bottom: 1px solid var(--border); color: var(--text); font-weight: 600; }
.service-side-links a:hover, .service-side-links a.active { color: var(--orange-bright); }
.service-side-links a:last-child { border-bottom: 0; }

.acente-page {
  background: #fff;
  padding: 6px 0 72px;
}

.acente-visual {
  width: min(552px, 100%);
  height: 244px;
  margin: 0 auto 28px;
  overflow: hidden;
}

.acente-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.acente-content {
  max-width: 1230px;
  margin: 0 auto;
}

.acente-content .eyebrow {
  margin-bottom: 42px;
}

.acente-content p {
  max-width: 1210px;
  margin: 0;
  color: var(--text-muted);
  font-size: 16.5px;
  line-height: 1.75;
  letter-spacing: 0.1px;
}

.more-control-page {
  background: #fff;
  padding: 34px 0 70px;
  overflow: hidden;
}

.more-control-logo {
  display: block;
  width: min(430px, 70vw);
  margin: 0 auto 48px;
}

.more-control-page .eyebrow {
  margin-bottom: 54px;
}

.more-control-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 94px;
}

.more-control-card {
  position: relative;
  min-height: 328px;
  padding-left: 42px;
}

.more-control-card h2 {
  max-width: 320px;
  color: var(--ink-900);
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.38;
  margin: 0 0 28px;
}

.more-control-icon {
  width: 64px;
  height: 70px;
  color: var(--orange-bright);
  margin: 0 0 28px 10px;
}

.more-control-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.more-control-num {
  position: absolute;
  top: 92px;
  right: 0;
  z-index: 0;
  color: #f2f2f2;
  font-family: var(--font-head);
  font-size: 88px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.more-control-card p {
  position: relative;
  z-index: 1;
  max-width: 310px;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.72;
  margin: 0;
}

.kk-page {
  background: #fff;
  padding: 38px 0 72px;
}
.kk-logo {
  display: block;
  width: min(430px, 70vw);
  margin: 0 auto 44px;
}
.kk-intro {
  margin-bottom: 52px;
}
.kk-intro .eyebrow {
  margin-bottom: 22px;
}
.kk-intro p {
  max-width: 1320px;
  color: #5f6873;
  font-size: 17px;
  line-height: 1.85;
}
.kk-tab-layout {
  display: grid;
  grid-template-columns: 282px minmax(0, 1fr);
  gap: 58px;
  align-items: start;
}
.kk-tabs {
  display: grid;
  gap: 14px;
}
.kk-tab {
  min-height: 56px;
  padding: 0 28px;
  border: 1px solid var(--border);
  background: #fff;
  color: #4c5661;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}
.kk-tab.active {
  background: var(--orange-bright);
  border-color: var(--orange-bright);
  color: #fff;
}
.kk-tab.active::after {
  content: '→';
  float: right;
  font-weight: 400;
}
.kk-panel {
  display: none;
  grid-template-columns: minmax(320px, 480px) minmax(360px, 1fr);
  gap: 60px;
  align-items: start;
}
.kk-panel.active {
  display: grid;
}
.kk-panel-image {
  position: relative;
}
.kk-panel-image::after {
  content: '';
  position: absolute;
  top: 0;
  right: -1px;
  border-top: 74px solid #fff;
  border-left: 74px solid transparent;
}
.kk-panel-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.kk-panel-text p {
  color: #5f6873;
  font-size: 17px;
  line-height: 1.85;
  margin-bottom: 26px;
}


.service-head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
}
.service-head-row .section-title {
  max-width: 640px;
  font-size: clamp(30px, 3.3vw, 40px);
  line-height: 1.18;
  margin-bottom: 0;
}
.home-services {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 46px;
  margin-top: 64px;
}
.home-services-tabs {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}
.home-services-tabs button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 48px;
  padding: 12px 24px;
  border: 1px solid var(--border);
  border-radius: 0;
  background: #fff;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: #5c6268;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}
.home-services-tabs button::after {
  content: '→';
  margin-left: 12px;
  font-size: 24px;
  line-height: 1;
  opacity: 0;
  transform: translateX(-4px);
  transition: var(--transition);
}
.home-services-tabs button:last-child { border-right: 1px solid var(--border); }
.home-services-tabs button:hover,
.home-services-tabs button.active {
  color: #fff;
  border-color: var(--orange-bright);
  background: var(--orange-bright);
}
.home-services-tabs button:hover::after,
.home-services-tabs button.active::after {
  opacity: 1;
  transform: translateX(0);
}
.home-services-panels {
  margin-top: 0;
}
.home-service-panel {
  position: relative;
  display: none;
  grid-template-columns: minmax(380px, 0.92fr) minmax(430px, 1.08fr);
  gap: 46px;
  align-items: start;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}
.home-service-panel.active {
  display: grid;
  animation: mvFade 0.35s ease;
}
.home-service-panel::before { display: none; }
.home-service-media {
  min-height: 410px;
  background: var(--bg-soft);
  clip-path: polygon(0 0, calc(100% - 72px) 0, 100% 74px, 100% 100%, 0 100%);
}
.home-service-media img {
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: cover;
}
.home-service-content {
  position: relative;
  padding: 12px 0 0;
}
.home-service-mark,
.home-service-icon,
.home-service-content h3,
.home-service-content .service-link { display: none; }
.home-service-content .home-service-title-visible {
  display: block;
  color: var(--ink-900);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.22;
  margin-bottom: 30px;
}
.home-service-content h3 {
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 16px;
}
.home-service-content p {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 0;
}
.home-service-checks {
  display: grid;
  gap: 22px;
}
.home-service-checks > div {
  position: relative;
  padding-left: 32px;
}
.home-service-checks > div::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border: 2px solid var(--orange-bright);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--orange-bright);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}
.home-service-checks h4 {
  color: var(--ink-900);
  font-size: 16px;
  line-height: 1.35;
  margin-bottom: 6px;
}
.home-service-checks p {
  font-size: 16.5px;
  line-height: 1.75;
}
.home-service-content .service-link {
  margin-top: 8px;
}
.home-service-list-items {
  display: grid;
  gap: 12px;
  margin: 10px 0 18px;
}
.home-service-list-items li {
  position: relative;
  padding-left: 30px;
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.75;
}
.home-service-list-items li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--orange-bright);
}
.home-service-list-items li::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 12px;
  width: 7px;
  height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}
.home-service-list-items strong {
  color: var(--ink-900);
  font-weight: 700;
}

/* ==========================================================================
   PORTFOLIO
   ========================================================================== */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.portfolio-item { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; cursor: pointer; }
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.portfolio-item:hover img { transform: scale(1.08); }
.portfolio-overlay {
  position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,22,25,0.92), transparent 60%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 28px; opacity: 0; transition: var(--transition);
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay span { color: var(--teal); font-size: 12.5px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.portfolio-overlay h4 { color: #fff; font-size: 20px; margin-top: 6px; }

.works-summary-section {
  background: #fff;
  padding: 74px 0 86px;
}
.works-summary-head {
  max-width: 1040px;
}
.works-summary-head .section-title {
  max-width: 1120px;
  color: #111;
  font-size: clamp(28px, 3.2vw, 38px);
  line-height: 1.16;
  margin-bottom: 0;
}
.works-summary-dot {
  width: 42px;
  height: 42px;
  margin: 58px auto 86px;
  border: 1px solid #cfd3d7;
  border-radius: 50%;
  position: relative;
}
.works-summary-dot::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 3px;
  height: 3px;
  background: var(--orange-bright);
  transform: translate(-50%, -50%);
}
.works-summary-row {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(360px, 1.1fr) auto;
  align-items: center;
  gap: 70px;
  max-width: 1150px;
  margin: 54px auto 0;
}
.works-count strong {
  display: block;
  color: #000;
  font-size: clamp(48px, 5vw, 64px);
  line-height: 0.92;
  font-weight: 700;
  letter-spacing: 0;
}
.works-count strong span {
  font-size: 15px;
  vertical-align: super;
  margin-left: 3px;
}
.works-count p {
  color: #000;
  font-size: 17px;
  line-height: 1.25;
  margin-top: 14px;
}
.works-summary-text {
  max-width: 470px;
  color: #000;
  font-size: 19px;
  line-height: 1.65;
}
.works-summary-btn {
  min-width: 262px;
  min-height: 52px;
  justify-content: center;
  padding: 12px 24px;
  font-size: 15.5px;
  font-weight: 700;
}

/* ==========================================================================
   CTA STRIP
   ========================================================================== */
.cta-strip { background: #fff; position: relative; overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cta-strip::after { content: ''; position: absolute; right: -80px; top: -80px; width: 360px; height: 360px; background: radial-gradient(circle, rgba(239,125,0,0.11), transparent 70%); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; position: relative; z-index: 1; }
.cta-inner h2 { color: var(--ink-900); font-size: clamp(26px, 3.5vw, 38px); }
.cta-inner p { color: var(--text-muted); margin-top: 10px; }

/* ==========================================================================
   BLOG
   ========================================================================== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 56px; }
.blog-card { background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); transition: var(--transition); }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-thumb { display: block; aspect-ratio: 16/10; overflow: hidden; position: relative; background: var(--bg-soft); }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-thumb img { transform: scale(1.06); }
.blog-tag { position: absolute; top: 16px; left: 16px; background: var(--teal); color: #fff; font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 20px; }
.blog-body { padding: 26px; }
.blog-meta { display: flex; gap: 16px; font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }
.blog-body h3 { font-size: 18px; margin-bottom: 12px; }
.blog-body h3 a:hover { color: var(--teal); }
.blog-body p { color: var(--text-muted); font-size: 14.5px; }

.blog-page {
  background: #fff;
  padding: 38px 0 78px;
}
.blog-page-logo {
  display: block;
  width: min(430px, 70vw);
  margin: 0 auto 72px;
}
.blog-page-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
  max-width: 1040px;
  margin: 0 auto;
}
.blog-list {
  display: grid;
  gap: 34px;
}
.blog-list-card {
  display: grid;
  grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}
.blog-list-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--bg-soft);
}
.blog-list-thumb img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.blog-list-card:hover .blog-list-thumb img { transform: scale(1.04); }
.blog-list-body {
  padding-top: 8px;
}
.blog-list-body h2 {
  max-width: 520px;
  color: var(--ink-900);
  font-size: clamp(21px, 2.2vw, 28px);
  line-height: 1.24;
}
.blog-list-body h2 a:hover { color: var(--orange-bright); }
.blog-list-body p {
  max-width: 620px;
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.7;
}
.blog-list-placeholder {
  display: grid;
  place-items: center;
  background: #f5f6f7;
}
.blog-list-placeholder img {
  width: min(72%, 280px);
  height: auto;
  min-height: 0;
  object-fit: contain;
}
.blog-sidebar {
  display: grid;
  gap: 34px;
  position: sticky;
  top: calc(var(--header-h) + 24px);
}
.blog-widget {
  position: relative;
  background: #f6f6f6;
  padding: 44px 30px 38px;
}
.blog-widget::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  width: 4px;
  height: 15px;
  background: var(--orange-bright);
}
.blog-widget h3 {
  color: var(--ink-900);
  font-size: 25px;
  margin-bottom: 34px;
}
.blog-search {
  position: relative;
}
.blog-search input {
  width: 100%;
  height: 58px;
  border: 1px solid var(--border);
  background: #fff;
  padding: 0 56px 0 16px;
  font: inherit;
}
.blog-search button {
  position: absolute;
  right: 16px;
  top: 50%;
  width: 28px;
  height: 28px;
  color: var(--ink-900);
  background: transparent;
  border: 0;
  transform: translateY(-50%);
  cursor: pointer;
}
.blog-search button svg { width: 100%; height: 100%; }
.recent-posts {
  display: grid;
  gap: 18px;
}
.recent-posts a {
  color: var(--text-muted);
  line-height: 1.55;
}
.recent-posts a:hover { color: var(--orange-bright); }

.post-page {
  background: #fff;
  padding: 38px 0 86px;
}
.post-article {
  max-width: 920px;
  margin: 0 auto;
}
.post-article h1 {
  max-width: 860px;
  color: var(--ink-900);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.16;
  margin: 14px 0 28px;
}
.post-hero-img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  display: block;
  margin: 0 0 34px;
  background: #f5f6f7;
}
.post-content {
  color: var(--text-muted);
  font-size: 16.5px;
  line-height: 1.8;
}
.post-content p,
.post-content figure {
  margin-bottom: 20px;
}
.post-content strong {
  color: var(--ink-900);
}
.post-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 22px;
}
.post-content iframe {
  max-width: 100%;
  display: block;
  margin: 0 auto 24px;
}
.post-back {
  display: inline-flex;
  margin-top: 34px;
  color: var(--orange-bright);
  font-weight: 700;
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; }
.contact-section {
  background: linear-gradient(180deg, #fff 0%, #f7f7f7 36%, #e4e4e4 100%);
  padding: 84px 0 86px;
}
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(360px, 0.9fr);
  gap: 72px;
  align-items: start;
}
.contact-copy .section-title {
  max-width: 680px;
  margin-bottom: 22px;
  color: #000;
  font-size: clamp(28px, 3.2vw, 38px);
  line-height: 1.16;
}
.contact-copy .section-lead {
  max-width: 690px;
  color: #111;
  font-size: 16px;
  line-height: 1.65;
}
.contact-info-card { display: flex; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--border); }
.contact-info-card:last-child { border-bottom: none; }
.contact-info-icon { flex-shrink: 0; width: 50px; height: 50px; border-radius: 12px; background: var(--bg-soft); display: grid; place-items: center; color: var(--teal); }
.contact-info-card h4 { font-size: 16px; margin-bottom: 4px; }
.contact-info-card p, .contact-info-card a { color: var(--text-muted); font-size: 14.5px; }
.contact-info-card a:hover { color: var(--teal); }
.contact-form { background: #fff; padding: 40px; border-radius: var(--radius); box-shadow: var(--shadow-md); border: 1px solid var(--border); }
.contact-page-section {
  background: #fff;
}
.contact-page-icongrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 56px 0;
}
.contact-page-icard {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 26px;
  text-align: center;
  transition: var(--transition);
}
.contact-page-icard:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.contact-page-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--orange-bright);
  display: grid;
  place-items: center;
  color: #fff;
}
.contact-page-icon svg {
  width: 28px;
  height: 28px;
}
.contact-page-icard h4 {
  font-size: 18px;
  margin-bottom: 10px;
}
.contact-page-icard p,
.contact-page-icard a {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.7;
}
.contact-page-icard a:hover {
  color: var(--orange-bright);
}
.contact-page-form-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.contact-page-form-wrap .contact-form-title {
  color: var(--ink-900);
}
.contact-page-form-wrap .contact-form-lead {
  color: var(--text-muted);
}
.contact-page-form-wrap .contact-form {
  background: transparent;
  padding: 0;
  border: 0;
  box-shadow: none;
}
.contact-page-form-wrap .form-group {
  text-align: left;
}
.contact-page-form-wrap .btn {
  width: 100%;
  justify-content: center;
}
.map-section {
  padding: 0;
}
.map-section iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13.5px; font-weight: 600; color: var(--navy); margin-bottom: 7px; font-family: var(--font-head); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 13px 16px; border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 14.5px; transition: var(--transition); background: var(--bg-soft);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--teal); background: #fff; box-shadow: 0 0 0 3px rgba(239,125,0,0.12); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 13px; color: var(--text-muted); margin-top: 14px; }
/* Bal küpü alanı: ekran ve klavye için gizli, botlar için görünür */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
/* İletişim formu durum mesajı */
.form-status { margin-top: 16px; padding: 12px 16px; border-radius: 8px; font-size: 14.5px; line-height: 1.5; }
.form-status.is-ok { background: rgba(34,160,90,0.10); color: #1c7a44; border: 1px solid rgba(34,160,90,0.3); }
.form-status.is-err { background: rgba(214,69,69,0.08); color: #b23838; border: 1px solid rgba(214,69,69,0.3); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
/* ---- Gerçek control-ist footer (açık tema) ---- */
.footer { background: #f5f6f7; color: #5d6469; }
/* Üstte beyaz bant + ortada büyük logo */
.footer-top { background: #fff; text-align: center; padding: 58px 0 50px; }
.flogo { display: inline-block; line-height: 1; max-width: min(620px, calc(100vw - 48px)); }
.flogo img { width: 100%; height: auto; max-height: 190px; object-fit: contain; }
/* Alt alan + kemer filigranı */
.footer-main { position: relative; padding-top: 76px; overflow: hidden; }
.footer-arches { display: none; }
.footer-arches svg { width: 100%; height: auto; display: block; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1.5fr 1.3fr 1.2fr; gap: 48px; padding-bottom: 50px; position: relative; z-index: 1; }
.footer-about p { font-size: 14.5px; line-height: 1.85; color: #6b7177; }
.footer-col h4, .footer-about h4 { color: #2b3137; font-size: 18px; font-weight: 700; margin-bottom: 22px; font-family: var(--font-head); }
.footer-social { display: flex; gap: 10px; margin-top: 14px; }
.footer-social a { width: 38px; height: 38px; border-radius: 7px; background: #0a66c2; display: grid; place-items: center; color: #fff; transition: var(--transition); }
.footer-social a:hover { background: #074a8f; transform: translateY(-2px); }
.footer-links2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; }
.footer-links2 ul li { margin-bottom: 15px; }
.footer-links2 ul li a { font-size: 14px; font-weight: 600; color: #6b7177; transition: var(--transition); }
.footer-links2 ul li a:hover, .footer-links2 ul li.active a { color: var(--orange-bright); }
.footer-text { color: #6b7177; font-size: 14.5px; line-height: 1.85; }
.footer-text a { color: #6b7177; transition: var(--transition); }
.footer-text a:hover { color: var(--orange-bright); }
.footer-bottom { border-top: 1px solid #e2e4e6; padding: 22px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; font-size: 13.5px; position: relative; z-index: 1; }
.footer-bottom a:hover { color: var(--orange-bright); }

/* ==========================================================================
   PAGE HEADER (subpages)
   ========================================================================== */
.page-hero { background: var(--bg-soft); padding: 56px 0; position: relative; border-bottom: 1px solid var(--border); }
.page-hero h1 { color: var(--ink-900); font-size: clamp(28px, 3.6vw, 40px); position: relative; z-index: 1; }
.breadcrumb { display: flex; gap: 9px; color: var(--text-muted); font-size: 13.5px; margin-top: 12px; position: relative; z-index: 1; letter-spacing: 0.2px; }
.breadcrumb a:hover { color: var(--orange-bright); }
.breadcrumb span { color: var(--orange-bright); font-weight: 500; }

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
/* Uzun çevirilerde (DE/ES) header sığsın */
@media (max-width: 1360px) {
  .menu > li > a { padding: 0 11px; font-size: 14px; }
  .nav-cta { padding: 13px 18px; font-size: 13.5px; }
  .nav-actions { gap: 14px; margin-left: 18px; }
}

@media (max-width: 1024px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-heading .section-title { font-size: clamp(32px, 5vw, 40px); }
  .stats { margin-top: 62px; gap: 54px; }
  .stats-feature { max-width: 760px; }
  .hero-static { padding: 44px 0 66px; }
  .hero-gallery { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .hero-gallery img { height: 190px; }
  .hero-copy { margin-left: 0; max-width: 100%; }
  .values .grid { grid-template-columns: repeat(2, 1fr); }
  .value-card { min-height: 310px; }
  .value-num { font-size: 98px; }
  .services-grid, .portfolio-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .more-cards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .more-cards-section .brand-title { top: -44px; font-size: clamp(86px, 17vw, 150px); }
  .service-overview-grid { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-detail-sidebar { position: static; }
  .more-control-logo { margin-top: 0; margin-bottom: 42px; }
  .more-control-grid { grid-template-columns: 1fr; gap: 48px; }
  .more-control-card { min-height: 0; padding-left: 0; }
  .more-control-num { right: 12px; top: 74px; }
  .more-control-card p { max-width: 560px; }
  .blog-page-layout { grid-template-columns: 1fr; gap: 0; }
  .blog-list-card { grid-template-columns: minmax(220px, 320px) minmax(0, 1fr); }
  .kk-tab-layout { grid-template-columns: 1fr; gap: 34px; }
  .kk-panel { grid-template-columns: 1fr 1fr; gap: 34px; }
  .service-head-row { align-items: flex-start; flex-direction: column; }
  .service-head-row .section-title { font-size: clamp(28px, 4vw, 36px); }
  .home-services { grid-template-columns: 1fr; gap: 30px; }
  .home-services-tabs { max-width: 420px; }
  .home-services-tabs button { border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); justify-content: flex-start; }
  .home-services-tabs button:last-child { border-bottom: 1px solid var(--border); }
  .home-service-panel,
  .home-service-panel.active { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 30px; }
  .home-service-media,
  .home-service-media img { min-height: 320px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .hero-gallery { grid-template-columns: 1fr; gap: 18px; }
  .hero-gallery img { height: 220px; }
  .hero-copy h1 { font-size: 22px; line-height: 1.16; }
  .hero-copy .btn { width: 100%; min-width: 0; min-height: 54px; }
  /* Slider: dar ekranda görseller yan yana kalır ama daha dengeli yükseklik */
  .hero-slider { padding: 32px 0 48px; }
  .hero-media-row { gap: 10px; }
  .hero-media img { height: clamp(96px, 27vw, 150px); }
  .hero-media-row[data-count="1"] .hero-media { flex: 0 1 100%; }
  .hero-media-row[data-count="1"] .hero-media img { height: clamp(180px, 56vw, 240px); }
  .nav > .logo { margin-left: 0; }
  .logo-mark { width: 68px; height: 68px; }
  .topbar-info { display: none; }
  .topbar .container { justify-content: center; }
  .values { padding: 38px 0 46px; }
  .values .grid { grid-template-columns: 1fr; gap: 18px; }
  .value-card { min-height: 0; padding: 30px 24px 68px; clip-path: polygon(0 0, calc(100% - 56px) 0, 100% 72px, 100% 100%, 0 100%); }
  .value-icon { margin-bottom: 24px; }
  .value-card h3 { font-size: 22px; }
  .value-card p { font-size: 15.5px; }
  .value-num { font-size: 92px; bottom: -10px; }
  .menu { display: none; position: fixed; top: var(--header-h); left: 0; right: 0; background: #fff; flex-direction: column; align-items: stretch; padding: 16px; box-shadow: var(--shadow-lg); gap: 2px; max-height: calc(100vh - var(--header-h)); overflow-y: auto; }
  .menu.open { display: flex; }
  .menu > li > a { padding: 14px 16px; border-radius: 8px; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 0 0 0 16px; display: none; }
  .has-dropdown.open .dropdown { display: block; }
  .nav-social, .nav-cta { display: none; }
  .nav-actions { margin-left: auto; gap: 10px; }  /* dil seçici + menü ikonu sağa yaslanır */
  /* Mobilde dil seçici görünür kalır: kompakt (bayrak) hâlde, menü ikonunun hemen solunda */
  .lang-switch { display: inline-flex; padding: 8px 10px; gap: 0; }
  .lang-switch .lang-label { display: none; }
  .lang-switch .lang-flag { margin: 0; }
  .lang-menu { right: 0; }  /* açılır menü ekran dışına taşmasın */
  .services-grid, .portfolio-grid, .blog-grid, .footer-grid, .stats, .form-row { grid-template-columns: 1fr; }
  .more-cards-section { padding: 58px 0 54px; }
  .more-cards-grid { grid-template-columns: 1fr; gap: 20px; }
  .more-cards-section .brand-title { top: -28px; font-size: 74px; }
  .service-card.style9 { min-height: 0; padding: 34px 28px 42px; }
  .service-card.style9 .num-badge { top: 110px; right: 28px; font-size: 70px; }
  .service-card.style9 h3 { font-size: 22px; margin-bottom: 22px; }
  .service-card.style9 p { font-size: 15.8px; }
  .about-grid { gap: 28px; }
  .about-heading .section-title { font-size: 30px; }
  .about-content { padding-top: 0; }
  .stats { margin-top: 44px; gap: 34px; }
  .stat { align-items: center; text-align: center; }
  .stat::after { width: min(170px, 64vw); }
  .stat-num { font-size: 64px; }
  .acente-page { padding: 28px 0 54px; }
  .acente-visual { height: 190px; margin-bottom: 30px; }
  .acente-content .eyebrow { margin-bottom: 24px; }
  .acente-content p { font-size: 15.5px; line-height: 1.7; }
  .more-control-page { padding-bottom: 58px; }
  .more-control-logo { width: min(360px, 86vw); margin: 0 auto 34px; }
  .more-control-page .eyebrow { margin-bottom: 38px; }
  .more-control-card h2 { font-size: 23px; }
  .more-control-icon { width: 56px; height: 60px; margin-left: 0; }
  .more-control-num { font-size: 70px; top: 72px; }
  .more-control-card p { font-size: 16px; }
  .blog-page { padding: 28px 0 58px; }
  .blog-page-logo { width: min(360px, 86vw); margin-bottom: 54px; }
  .blog-list { gap: 28px; }
  .blog-list-card { grid-template-columns: 1fr; gap: 18px; }
  .blog-list-thumb img { min-height: 190px; }
  .blog-list-body { padding-top: 0; }
  .blog-list-body h2 { font-size: 22px; }
  .kk-page { padding: 34px 0 58px; }
  .kk-logo { width: min(360px, 86vw); margin-bottom: 34px; }
  .kk-intro { margin-bottom: 36px; }
  .kk-panel { grid-template-columns: 1fr; }
  .kk-panel-image img { height: 260px; }
  .stat { min-height: 112px; justify-content: flex-start; border-right: none; border-bottom: 1px solid var(--border); padding: 24px 10px; }
  .stat:last-child { border-bottom: none; }
  .stat-label { max-width: none; }
  .service-head-row .section-title { font-size: 28px; }
  .home-services { margin-top: 40px; }
  .home-services-tabs { max-width: none; }
  .home-service-panel,
  .home-service-panel.active { grid-template-columns: 1fr; gap: 24px; }
  .home-service-content { padding: 0; }
  .home-service-mark { font-size: 42px; right: 20px; }
  .home-service-icon { width: 62px; height: 62px; border-radius: 15px; }
  .home-service-media,
  .home-service-media img { min-height: 260px; }
  .home-service-content p { font-size: 15.8px; line-height: 1.65; }
  .slider-arrow { display: none; }
  .cta-inner { flex-direction: column; text-align: center; }
  .about-badge { position: static; margin-top: 20px; max-width: none; }
}

/* ==========================================================================
   GERÇEK SİTE EŞLEŞTİRME — ek bileşenler
   ========================================================================== */
.section-title .hl { color: var(--orange-bright); }

/* Buton ikincil (koyu, sarı oklu) */
.btn-secondary { background: var(--teal); color: #fff; }
.btn-secondary:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-secondary svg path,
.btn-navy svg path { fill: currentColor; }
.btn svg { transition: transform var(--transition); }
.btn:hover svg { transform: translateX(4px); }

/* Değer kartı ikonu */
.value-icon {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  margin-bottom: 32px;
  color: var(--orange-bright);
}
.value-icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 2.4;
}
.value-card { display: flex; flex-direction: column; }

/* Marka filigran başlığı */
.brand-title { font-size: clamp(28px, 3.2vw, 38px); font-weight: 700; color: var(--bg-soft-2); letter-spacing: 2px; }

/* Daha fazlası kartları */
.more-cards-section {
  position: relative;
  overflow: hidden;
  background: #f4f4f4;
  padding: 82px 0 74px;
}
.more-cards-section .container {
  position: relative;
  z-index: 1;
}
.more-cards-section .brand-title {
  position: absolute;
  left: 50%;
  top: -76px;
  z-index: 0;
  transform: translateX(-50%);
  color: rgba(0, 0, 0, 0.035);
  font-size: clamp(110px, 15vw, 205px);
  line-height: 1;
  letter-spacing: 2px;
  pointer-events: none;
  white-space: nowrap;
}
.more-cards-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin-top: 0;
}
/* Responsive kolonlar — bu blok kaynak sırasında yukarıdaki base kuraldan
   sonra geldiği için mobil/tablet override'ları güvenle kazanır */
@media (max-width: 1024px) {
  .more-cards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
  .more-cards-grid { grid-template-columns: 1fr; gap: 20px; }
}
.service-card.style9 {
  min-height: 418px;
  padding: 42px 40px 36px;
  text-align: left;
  border: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
  clip-path: polygon(0 0, calc(100% - 60px) 0, 100% 80px, 100% 100%, 0 100%);
}
.service-card.style9::before { display: none; }
.service-card.style9:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(20, 24, 28, 0.06);
}
.service-card.style9 .num-badge {
  position: absolute;
  top: 142px;
  right: 42px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 86px;
  color: #f2f2f2;
  line-height: 1;
  letter-spacing: 0;
}
.service-card.style9 h3 {
  max-width: 330px;
  margin-bottom: 30px;
  color: var(--ink-900);
  font-size: 24px;
  line-height: 1.45;
}
.service-card.style9 .service-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 26px;
  border-radius: 0;
  background: transparent;
  color: var(--orange-bright);
  box-shadow: none;
  display: grid;
  place-items: center;
}
.service-card.style9 .service-icon svg {
  width: 58px;
  height: 58px;
  stroke-width: 1.8;
}
.service-card.style9 p {
  max-width: 340px;
  color: #676767;
  font-size: 16.5px;
  line-height: 1.75;
  margin-bottom: 0;
}

/* CTA sayaç */
.cta-count { font-family: var(--font-head); font-weight: 700; color: var(--ink-900); font-size: 56px; line-height: 1; margin-bottom: 16px; }
.cta-count span { color: var(--accent); }
.cta-count small { display: block; font-size: 16px; font-weight: 500; color: var(--text-muted); margin-top: 8px; }

/* Blog başlık satırı */
.blog-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 48px; flex-wrap: wrap; }
.blog-head .section-title { margin-bottom: 0; }
.blog-card .blog-body h3 { font-size: 19px; line-height: 1.4; }

/* Anasayfa haber vitrini */
.blog-section {
  padding-top: 76px;
  padding-bottom: 76px;
}
.blog-head {
  margin-bottom: 34px;
}
.blog-head .section-title {
  font-size: clamp(28px, 3vw, 36px);
}
.news-feature-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  align-items: stretch;
  margin-top: 0;
}
.news-side-stack { display: grid; grid-template-rows: 1fr 1fr; gap: 20px; }
.news-feature-card, .news-compact-card { height: 100%; }
.news-feature-card .blog-thumb { aspect-ratio: 16/10.5; }
.news-feature-card .blog-body { padding: 24px 26px; }
.news-feature-card .blog-body h3 { font-size: clamp(21px, 2.4vw, 28px); line-height: 1.25; margin-bottom: 0; }
.news-compact-card { display: grid; grid-template-columns: minmax(160px, 44%) 1fr; }
.news-compact-card .blog-thumb { aspect-ratio: auto; height: 100%; min-height: 158px; }
.news-compact-card .blog-body { display: flex; flex-direction: column; justify-content: center; padding: 18px 20px; }
.news-compact-card .blog-body h3 { font-size: 17.5px; line-height: 1.3; margin-bottom: 0; }
.news-feature-grid .blog-meta {
  font-size: 12px;
  margin-bottom: 8px;
}
.news-feature-grid .blog-tag {
  top: 12px;
  left: 12px;
  font-size: 11px;
  padding: 4px 10px;
}

/* İletişim ikon ızgarası */
.contact-icongrid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 62px 56px; margin: 48px 0 0; }
.contact-icard { display: grid; grid-template-columns: 58px 1fr; gap: 22px; align-items: start; background: transparent; border: 0; border-radius: 0; padding: 0; text-align: left; transition: var(--transition); }
.contact-icard:hover { transform: none; box-shadow: none; border-color: transparent; }
.ci-icon { width: 58px; height: 72px; margin: 0; border-radius: 0; background: var(--orange-bright); display: grid; place-items: center; color: #fff; clip-path: polygon(0 0, 78% 0, 100% 20%, 100% 100%, 0 100%); }
.ci-icon svg { width: 29px; height: 29px; }
.contact-icard h4 { color: #000; font-size: 21px; line-height: 1.2; margin-bottom: 10px; }
.contact-icard p, .contact-icard a { color: #050505; font-size: 14px; line-height: 1.7; font-weight: 500; }
.contact-icard a:hover { color: var(--orange-bright); }

/* İletişim formu */
.contact-form-wrap {
  position: relative;
  overflow: hidden;
  max-width: none;
  margin: 0;
  background: var(--orange-bright);
  border: 0;
  border-radius: 4px;
  padding: 34px 40px 38px;
  box-shadow: none;
  text-align: left;
  color: #fff;
  clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 34px, 100% 100%, 0 100%);
}
.contact-form-wrap::after {
  content: '';
  position: absolute;
  right: -24px;
  bottom: 28px;
  width: 210px;
  height: 360px;
  opacity: 0.18;
  background-image: radial-gradient(circle, #fff 1.1px, transparent 1.2px);
  background-size: 8px 8px;
  transform: rotate(22deg);
  pointer-events: none;
}
.contact-form-title { color: #fff; font-size: 30px; line-height: 1.2; margin-bottom: 12px; }
.contact-form-lead { color: rgba(255,255,255,0.96); margin-bottom: 26px; line-height: 1.7; }
.contact-form-title,
.contact-form-lead { position: relative; z-index: 1; }
.contact-form-wrap .contact-form {
  position: relative;
  z-index: 1;
  background: transparent;
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.contact-form-wrap .form-group { margin-bottom: 13px; text-align: left; }
.contact-form-wrap .form-group input,
.contact-form-wrap .form-group textarea {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.42);
  border-radius: 0;
  color: #fff;
  padding: 13px 14px;
}
.contact-form-wrap .form-group input::placeholder,
.contact-form-wrap .form-group textarea::placeholder { color: #fff; opacity: 0.95; }
.contact-form-wrap .form-group input:focus,
.contact-form-wrap .form-group textarea:focus {
  background: rgba(255,255,255,0.14);
  border-color: #fff;
  box-shadow: none;
}
.contact-form-wrap .form-group textarea { min-height: 92px; }
.contact-form-wrap .btn {
  width: auto;
  justify-content: center;
  margin-top: 2px;
  min-height: 46px;
  padding: 13px 20px;
  background: #222;
  color: #fff;
  border-color: #222;
  font-size: 13.5px;
}
.contact-form-wrap .btn:hover { background: #111; border-color: #111; }

/* Footer metin */
.footer-text { color: #6b7177; font-size: 14.5px; line-height: 1.85; }
.footer-text a { color: #6b7177; }
.footer-text a:hover { color: var(--orange-bright); }

/* Misyon / Vizyon (hakkımızda) */
.mv-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 56px; align-items: center; }
.mv-media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; }
.mv-cards { display: flex; flex-direction: column; gap: 24px; }
.mv-card { display: flex; gap: 22px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; transition: var(--transition); }
.mv-card:hover { box-shadow: var(--shadow-lg); border-color: transparent; transform: translateY(-4px); }
.mv-icon { flex-shrink: 0; width: 58px; height: 58px; border-radius: 14px; background: linear-gradient(135deg, var(--teal), var(--accent)); display: grid; place-items: center; color: #fff; }
.mv-icon svg { width: 28px; height: 28px; }
.mv-card h3 { font-size: 22px; margin-bottom: 10px; }
.mv-card p { color: var(--text-muted); font-size: 14.5px; margin-bottom: 16px; }
.mv-feats li { position: relative; padding: 7px 0 7px 28px; font-size: 14.5px; color: var(--text); font-weight: 500; }
.mv-feats li::before { content: ''; position: absolute; left: 0; top: 11px; width: 18px; height: 18px; border-radius: 50%; background: var(--orange-bright); }
.mv-feats li::after { content: ''; position: absolute; left: 5px; top: 15px; width: 7px; height: 4px; border-left: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(-45deg); }
@media (max-width: 900px) { .mv-grid { grid-template-columns: 1fr; gap: 36px; } }

/* Misyon / Vizyon SEKME — gerçek sitedeki çubuk tasarım */
.mv-tabs-wrap { margin-top: 52px; }
.mv-tabs { display: grid; grid-template-columns: 1fr 1fr; max-width: 940px; margin: 0 auto; background: #f7f7f5; border-radius: 4px; overflow: hidden; }
.mv-tab { background: transparent; border: none; border-top: 3px solid transparent; padding: 22px 16px; font-family: var(--font-head); font-weight: 600; font-size: 18px; color: var(--text-muted); cursor: pointer; transition: var(--transition); }
.mv-tab:hover { color: var(--orange-bright); }
.mv-tab.active { color: var(--orange-bright); border-top-color: var(--orange-bright); background: #fff; box-shadow: var(--shadow-sm); }
.mv-panels { max-width: 880px; margin: 34px auto 0; text-align: center; }
.mv-panel { display: none; }
.mv-panel.active { display: block; animation: mvFade 0.4s ease; }
@keyframes mvFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.mv-panel > p { color: var(--text-muted); font-size: 16px; line-height: 1.95; }
.mv-feats-row { display: flex; justify-content: center; gap: 56px; margin-top: 28px; flex-wrap: wrap; }
.mv-feats-row span { display: inline-flex; align-items: center; gap: 11px; font-weight: 500; color: var(--text); font-size: 15.5px; }
.mv-feats-row svg { width: 22px; height: 22px; color: var(--orange-bright); flex-shrink: 0; }

/* Sade tikli liste (hakkımızda intro — ince turuncu ✓) */
.check-simple { max-width: 1080px; }
.check-simple li { position: relative; padding: 11px 0 11px 32px; color: var(--text-muted); font-size: 16px; line-height: 1.75; }
.check-simple li::before { content: '✓'; position: absolute; left: 0; top: 10px; color: var(--orange-bright); font-weight: 700; font-size: 17px; }

/* Tikli liste (hakkımızda / hizmetler) */
.check-list { margin: 6px 0 22px; }
.check-list li { position: relative; padding: 9px 0 9px 32px; color: var(--text-muted); font-size: 15px; line-height: 1.6; border-bottom: 1px solid var(--border); }
.check-list li:last-child { border-bottom: none; }
.check-list li::before { content: ''; position: absolute; left: 0; top: 12px; width: 20px; height: 20px; border-radius: 50%; background: var(--orange-bright); }
.check-list li::after { content: ''; position: absolute; left: 6px; top: 16px; width: 7px; height: 4px; border-left: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(-45deg); }

/* Hukuki sayfalar (Çerez / Gizlilik / Kullanım / KVKK) */
.legal-page .container { max-width: 860px; }
.legal-block { margin-bottom: 34px; }
.legal-block:last-child { margin-bottom: 0; }
.legal-block h2 { font-size: clamp(20px, 2.4vw, 26px); margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.legal-block p { color: var(--text-muted); font-size: 16px; line-height: 1.85; margin-bottom: 14px; }
.legal-block p:last-child { margin-bottom: 0; }
.legal-block p em { color: #9a9fa4; font-style: normal; font-size: 14px; }
.legal-block a { color: var(--orange-bright); font-weight: 500; }
.legal-block a:hover { text-decoration: underline; }
.legal-list { margin: 4px 0 14px; padding: 0; }
.legal-list li { position: relative; padding: 8px 0 8px 28px; color: var(--text-muted); font-size: 16px; line-height: 1.7; border-bottom: 1px solid var(--border-soft); }
.legal-list li:last-child { border-bottom: none; }
.legal-list li::before { content: ''; position: absolute; left: 2px; top: 16px; width: 8px; height: 8px; border-radius: 50%; background: var(--orange-bright); }

/* Yukarı çık butonu */
#scrollUp { position: fixed; right: 24px; bottom: 24px; width: 46px; height: 46px; border-radius: 10px; background: var(--orange-bright); color: #fff; display: grid; place-items: center; z-index: 90; box-shadow: var(--shadow-md); transition: var(--transition); }
#scrollUp:hover { background: var(--teal-dark); transform: translateY(-3px); }

button,
.btn,
.nav-cta,
.slider-arrow,
.slider-dots button,
#scrollUp {
  border-radius: 0 !important;
}

@media (max-width: 1024px) {
  .contact-icongrid { grid-template-columns: repeat(2, 1fr); }
  .contact-page-icongrid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; gap: 44px; }
  .contact-form-wrap { max-width: 620px; margin: 0 auto; }
  .works-summary-row { grid-template-columns: 1fr 1.4fr; gap: 38px; }
  .works-summary-btn { grid-column: 1 / -1; justify-self: start; }
  .news-feature-grid { grid-template-columns: 1fr; }
  .news-side-stack { grid-template-rows: none; grid-template-columns: 1fr 1fr; }
  .news-compact-card { grid-template-columns: 1fr; }
  .news-compact-card .blog-thumb { aspect-ratio: 16/10; min-height: 0; }
}
@media (max-width: 768px) {
  .contact-icongrid { grid-template-columns: 1fr; }
  .contact-page-icongrid { grid-template-columns: 1fr; }
  .contact-page-form-wrap { padding: 28px; }
  .map-section iframe { height: 360px; }
  .contact-section { padding: 64px 0; }
  .contact-copy .section-title { font-size: 30px; }
  .contact-form-wrap { padding: 30px 24px 34px; clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 26px, 100% 100%, 0 100%); }
  .works-summary-section { padding: 58px 0 64px; }
  .works-summary-head .section-title { font-size: 30px; }
  .works-summary-dot { margin: 38px auto 46px; }
  .works-summary-row { grid-template-columns: 1fr; gap: 28px; }
  .works-count strong { font-size: 46px; }
  .works-count p { font-size: 16px; }
  .works-summary-text { font-size: 16px; }
  .works-summary-btn { width: 100%; min-width: 0; }
  .blog-head { flex-direction: column; align-items: flex-start; }
  .cta-count { font-size: 42px; }
  .news-side-stack { grid-template-columns: 1fr; }
  .blog-section { padding-top: 58px; padding-bottom: 58px; }
  .news-feature-card .blog-body { padding: 22px; }
  .news-feature-card .blog-body h3 { font-size: 20px; }
  .news-compact-card .blog-body h3 { font-size: 17px; }
}
