:root {
  --bg: #f5f6f8;
  --surface: #ffffff;
  --surface-soft: #fafafb;
  --text: #16181d;
  --muted: #5a616d;
  --primary: #ba1f24;
  --primary-dark: #96171b;
  --border: #e3e5e8;
  --shadow: 0 14px 34px rgba(18, 22, 30, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

html {
  scroll-padding-top: 90px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

body.is-home .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom-color: transparent;
}

body.is-home .site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: var(--border);
}

body.is-home .site-header:not(.is-scrolled) .logo {
  color: #fff;
}

body.is-home .site-header:not(.is-scrolled) .logo-sub {
  color: rgba(255, 255, 255, 0.75);
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #111;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(186, 31, 36, 0.25);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.logo-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.logo-sub {
  font-size: 11px;
  color: #6f7681;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.brand-strong {
  color: var(--primary);
  font-weight: 800;
}

.nav-shell {
  position: relative;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--muted);
  border-radius: 10px;
  box-sizing: border-box;
}

.nav-toggle:hover {
  background: rgba(18, 22, 30, 0.06);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

body.is-home .site-header:not(.is-scrolled) .nav-toggle {
  color: rgba(255, 255, 255, 0.92);
}

body.is-home .site-header:not(.is-scrolled) .nav-toggle:hover {
  background: rgba(255, 255, 255, 0.12);
}

.nav-toggle-bar {
  display: block;
  height: 3px;
  width: 22px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-shell.is-open .nav-toggle .nav-toggle-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-shell.is-open .nav-toggle .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-shell.is-open .nav-toggle .nav-toggle-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(18, 22, 30, 0.45);
  opacity: 0;
  visibility: hidden;
  z-index: 55;
  transition: opacity 0.2s ease;
}

.nav-shell.is-open .nav-backdrop {
  opacity: 1;
  visibility: visible;
}

.nav-shell .nav {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100vh;
  height: 100dvh;
  margin: 0;
  padding: 88px 20px 28px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 0;
  font-size: 16px;
  background: var(--surface);
  box-shadow: -8px 0 32px rgba(18, 22, 30, 0.14);
  border-left: 1px solid var(--border);
  z-index: 56;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.25s ease;
}

.nav-shell.is-open .nav {
  transform: translateX(0);
}

.nav-shell .nav a {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
}

.nav-shell .nav a:last-child {
  border-bottom: none;
}

.nav-shell .nav a:hover {
  color: var(--primary);
}

body.nav-open {
  overflow: hidden;
}

.hero {
  padding: 70px 0 36px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 28px;
  align-items: stretch;
}

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

body.is-home .hero {
  padding: 44px 0 36px;
}

.tag {
  color: var(--primary);
  margin: 0 0 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  font-size: 12px;
}

h1 {
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.1;
}

.lead {
  color: var(--muted);
  max-width: 65ch;
  font-size: 17px;
  margin: 18px 0 22px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  display: inline-block;
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-outline {
  border-color: var(--border);
  color: #2d3139;
  background: #fff;
}

.btn-outline:hover {
  border-color: #ced2d7;
  background: #f3f4f6;
}

.btn-whatsapp {
  background: #1fa855;
  color: #fff;
}

.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.hero-photo-wrap {
  margin: -24px -24px 18px;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  overflow: hidden;
  background: #fff;
}

.hero-photo {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.hero-card h2 {
  margin: 0 0 8px;
}

.hero-card p {
  margin: 0 0 12px;
  color: var(--muted);
}

.hero-phone {
  display: inline-block;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 16px;
}

.top-banner {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  padding: 130px 0 56px;
  overflow: hidden;
  background: #0e0f12;
}

.top-banner-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
}

.top-banner-nav span {
  font-size: 28px;
  line-height: 1;
  margin-top: -1px;
}

.top-banner-nav:hover {
  background: rgba(0, 0, 0, 0.35);
}

.top-banner-nav--prev {
  left: 16px;
}

.top-banner-nav--next {
  right: 16px;
}

.top-banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 650ms ease;
}

.top-banner-bg.is-active {
  opacity: 1;
}

.top-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(9, 10, 12, 0.72) 0%,
    rgba(9, 10, 12, 0.48) 42%,
    rgba(9, 10, 12, 0.24) 100%
  );
  pointer-events: none;
}

.top-banner-content {
  position: relative;
  color: #fff;
  background: rgba(8, 10, 14, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 20px 22px 22px;
  max-width: min(720px, 100%);
}

/* Hero: sol kenar, sayfadaki diğer .container bloklarıyla (Hakkımızda vb.) aynı hizada */
.top-banner-content.container {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: max(16px, calc((100% - min(1120px, 92%)) / 2));
  margin-right: auto;
}

.top-banner-kicker {
  margin: 0 0 10px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
}

.top-banner-title {
  margin: 0;
  font-size: clamp(24px, 3.35vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.top-banner-lead {
  margin: 14px 0 0;
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(15px, 1.65vw, 16px);
  line-height: 1.55;
}

.top-banner-actions {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.top-banner-btn {
  padding: 11px 18px;
  font-size: 14px;
}

.top-banner-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  font-size: 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.top-banner-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.75);
  color: #fff;
}

.top-banner-btn-text {
  opacity: 0.92;
}

.top-banner-btn-num {
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  padding-left: 8px;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
}

.top-banner-btn-wa {
  padding: 11px 18px;
  font-size: 14px;
  border-radius: 12px;
  background: #1fa855;
  color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease;
}

.top-banner-btn-wa:hover {
  background: #168a48;
  color: #fff;
}

.top-banner-anim .top-banner-kicker {
  animation: topDrop 600ms cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

.top-banner-anim .top-banner-title {
  animation: topDrop 650ms cubic-bezier(0.2, 0.9, 0.2, 1) 100ms both;
}

.top-banner-anim .top-banner-lead {
  animation: topDrop 700ms cubic-bezier(0.2, 0.9, 0.2, 1) 180ms both;
}

.top-banner-anim .top-banner-actions {
  animation: topDrop 780ms cubic-bezier(0.2, 0.9, 0.2, 1) 250ms both;
}

@keyframes topDrop {
  from {
    opacity: 0;
    transform: translateY(-56px);
    filter: blur(7px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .top-banner-anim .top-banner-kicker,
  .top-banner-anim .top-banner-title,
  .top-banner-anim .top-banner-lead,
  .top-banner-anim .top-banner-actions {
    animation: none;
  }

  .top-banner-bg {
    transition: none;
  }

  .nav-shell .nav,
  .nav-backdrop,
  .nav-toggle-bar {
    transition: none;
  }

  .palut-showcase-marquee {
    animation: none;
  }

  .palut-showcase-viewport {
    overflow-x: auto;
    mask-image: none;
    -webkit-mask-image: none;
    scroll-snap-type: x proximity;
    padding-bottom: 10px;
  }

  .palut-proj-card {
    scroll-snap-align: start;
  }

  .service-strip-marquee {
    animation: none;
  }

  .service-strip-viewport {
    overflow-x: auto;
    mask-image: none;
    -webkit-mask-image: none;
    scroll-snap-type: x proximity;
    padding-bottom: 8px;
  }

  .service-strip-fig {
    scroll-snap-align: start;
  }
}

.section {
  padding: 54px 0;
}

.section-alt {
  background: var(--surface-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-strip {
  padding: 40px 0;
  background: linear-gradient(
    105deg,
    rgba(186, 31, 36, 0.06) 0%,
    #fff 42%,
    var(--surface-soft) 100%
  );
  border-top: 1px solid rgba(186, 31, 36, 0.14);
  border-bottom: 1px solid var(--border);
}

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

.stat-card {
  text-align: center;
  padding: 22px 16px 24px;
  background: var(--surface);
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 32px rgba(18, 22, 30, 0.07);
}

.stat-card__value {
  font-variant-numeric: tabular-nums;
  min-height: 1.15em;
}

.stat-value {
  display: inline-block;
  font-size: clamp(2.1rem, 4.6vw, 2.95rem);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.stat-card__label {
  margin: 12px 0 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.45;
}

.nav-panel {
  scroll-margin-top: 90px;
}

h2 {
  margin: 0 0 16px;
  font-size: clamp(24px, 3vw, 34px);
}

/* Home'da çok uzamasın: sadece menü ile hedeflenen bölümler görünsün. */
#videolar,
#galeri,
#teklif,
#palutyapi {
  display: none;
}

#videolar:target,
#galeri:target,
#teklif:target,
#palutyapi:target {
  display: block;
}

.section-title-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.section-title-brand h2 {
  margin: 0;
}

.section-title-logo {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(186, 31, 36, 0.2);
}

.location-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 16px;
}

.location-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 8px 24px rgba(20, 24, 32, 0.06);
}

.location-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.maps-badge {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 999px;
  background: #f1f4f8;
  color: #2c323d;
  font-weight: 700;
  font-size: 12px;
}

.location-type {
  color: #7b8594;
  font-size: 12px;
  font-weight: 600;
}

.location-card h3 {
  margin: 0 0 8px;
}

.location-links {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.map-embed-wrap {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(20, 24, 32, 0.06);
  background: #fff;
}

.map-embed {
  width: 100%;
  min-height: 300px;
  border: 0;
  display: block;
}

p {
  color: var(--muted);
  line-height: 1.6;
}

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

.cards-services {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 8px 24px rgba(20, 24, 32, 0.06);
}

.card h3 {
  margin: 0 0 10px;
}

.text-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--primary);
  font-weight: 600;
}

.text-link:hover {
  color: var(--primary-dark);
}

.card ul {
  margin: 0;
  padding-left: 18px;
  color: #3a404b;
}

.card-features {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.card-features--compact {
  gap: 8px;
}

.card-features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #3a404b;
  font-weight: 600;
}

.card-features li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border-radius: 3px;
  background: rgba(186, 31, 36, 0.18);
  box-shadow: inset 0 0 0 2px rgba(186, 31, 36, 0.32);
  flex: 0 0 auto;
}

.e-catalog-page .tag {
  margin-bottom: 10px;
}

.e-catalog-intro {
  max-width: 72ch;
  margin-bottom: 28px;
}

.e-catalog-group-lead {
  margin: -6px 0 18px;
  max-width: 72ch;
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
}

.e-catalog-group-title {
  margin: 36px 0 16px;
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 800;
  color: var(--text);
}

.e-catalog-page .e-catalog-group-title:first-of-type {
  margin-top: 8px;
}

.e-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.e-catalog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(20, 24, 32, 0.06);
  display: flex;
  flex-direction: column;
}

.e-catalog-photo-wrap {
  aspect-ratio: 880 / 520;
  max-height: 220px;
  overflow: hidden;
  background: #e8eaed;
}

.e-catalog-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.e-catalog-body {
  padding: 16px 18px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.e-catalog-body h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 700;
}

.e-catalog-body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}

.e-catalog-footnote {
  margin-top: 28px;
  padding: 14px 16px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: 12px;
  max-width: 85ch;
}

.section-urunler .urunler-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}

.urunler-head-main {
  flex: 1;
  min-width: min(100%, 260px);
}

.section-urunler h2 {
  margin: 0 0 8px;
}

.urunler-lead {
  margin: 0;
  max-width: 56ch;
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
}

.urunler-catalog-cta {
  flex-shrink: 0;
}

#urunler .urunler-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

#urunler .urunler-card {
  display: flex;
  flex-direction: column;
  padding: 20px 20px 22px;
}

#urunler .urunler-card h3 {
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

#urunler .urunler-card .card-features {
  margin-top: 0;
}

#urunler .card-features--agrega {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 22px;
}

@media (max-width: 720px) {
  #urunler .card-features--agrega {
    grid-template-columns: 1fr;
  }
}

.region-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.region-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 8px 24px rgba(20, 24, 32, 0.04);
}

.region-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.region-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.palut-showcase {
  margin: 28px 0 24px;
}

.palut-showcase-head {
  margin-bottom: 16px;
}

.palut-showcase-title {
  margin: 0;
  font-size: clamp(16px, 1.9vw, 18px);
  font-weight: 600;
  color: var(--text);
  line-height: 1.45;
  max-width: 52ch;
}

.palut-showcase-viewport {
  overflow: hidden;
  margin: 0 -12px;
  padding: 4px 12px 8px;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.palut-showcase-marquee {
  display: flex;
  width: max-content;
  animation: palut-marquee 48s linear infinite;
}

.palut-showcase-marquee:hover {
  animation-play-state: paused;
}

.palut-showcase-group {
  display: flex;
  gap: 16px;
  padding-right: 16px;
  align-items: stretch;
}

.palut-proj-card {
  flex: 0 0 min(300px, 78vw);
  width: min(300px, 78vw);
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 10px 28px rgba(18, 22, 30, 0.08);
}

.palut-proj-card img {
  width: 100%;
  height: 168px;
  object-fit: cover;
  display: block;
}

.palut-proj-card figcaption {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.palut-proj-card__name {
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
}

.palut-proj-card__meta {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.45;
}

.palut-showcase-note {
  margin: 12px 0 0;
  font-size: 12px;
  color: #8f96a1;
  line-height: 1.5;
}

@keyframes palut-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.service-strip {
  margin: 22px 0 26px;
}

.service-strip-kicker {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.service-strip-viewport {
  overflow: hidden;
  margin: 0 -8px;
  padding: 4px 8px 6px;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.service-strip-marquee {
  display: flex;
  width: max-content;
  animation: palut-marquee 44s linear infinite;
}

.service-strip-marquee:hover {
  animation-play-state: paused;
}

.service-strip-group {
  display: flex;
  gap: 14px;
  padding-right: 14px;
  align-items: stretch;
}

.service-strip-fig {
  flex: 0 0 min(280px, 72vw);
  width: min(280px, 72vw);
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 8px 22px rgba(18, 22, 30, 0.07);
}

.service-strip-fig img {
  width: 100%;
  height: 158px;
  object-fit: cover;
  display: block;
}

.service-strip-note {
  margin: 10px 0 0;
  font-size: 12px;
  color: #8f96a1;
  line-height: 1.45;
}

.vm-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.vm-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 8px 24px rgba(20, 24, 32, 0.04);
}

.vm-card h3 {
  margin: 0 0 10px;
  font-size: 16px;
}

.vm-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.ref-hero {
  margin-top: 18px;
  padding-top: 6px;
}

.ref-title {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.15px;
}

.ref-subtitle {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 600;
}

.ref-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.ref-item {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 12px;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 800;
  color: #2d3139;
  text-align: center;
  font-size: 13px;
  box-shadow: 0 8px 18px rgba(20, 24, 32, 0.03);
}

.ref-logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(186, 31, 36, 0.12);
  border: 1px solid rgba(186, 31, 36, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: var(--primary);
  font-size: 14px;
}

.ref-item-name {
  font-size: 13px;
  font-weight: 850;
  line-height: 1.25;
}

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

.stat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 8px 24px rgba(20, 24, 32, 0.03);
}

.stat-number {
  font-weight: 900;
  color: var(--primary);
  font-size: 22px;
  margin-bottom: 8px;
}

.stat-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.stat-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.palut-steps {
  margin-top: 14px;
}

.palut-refline {
  margin: 14px 0 18px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(186, 31, 36, 0.18);
  background: rgba(186, 31, 36, 0.06);
  color: var(--text);
  font-weight: 650;
  line-height: 1.6;
}

.palut-refline .stat-value--refline {
  display: inline-block;
  font-variant-numeric: tabular-nums;
  margin-right: 0.22em;
  font-size: clamp(1.65rem, 3.4vw, 2.35rem);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.03em;
  line-height: 1.05;
  vertical-align: -0.06em;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.quote-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  background: #fff;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 11px 12px;
  font: inherit;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: #9aa1ac;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: 2px solid rgba(186, 31, 36, 0.18);
  border-color: #d89395;
}

.quote-form .full {
  grid-column: 1 / -1;
}

.site-footer {
  padding: 26px 0 18px;
  border-top: 1px solid var(--border);
  background: #fff;
}

#iletisim.site-footer {
  background: var(--primary);
  color: #fff;
  border-top-color: rgba(0, 0, 0, 0.06);
}

#iletisim.site-footer a,
#iletisim.site-footer p,
#iletisim.site-footer h3,
#iletisim.site-footer h4 {
  color: #fff;
}

#iletisim.site-footer .brand-strong {
  color: #fff;
}

#iletisim.site-footer .copyright {
  color: rgba(255, 255, 255, 0.86);
  border-top-color: rgba(255, 255, 255, 0.22);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 12px 0 22px;
}

.video-item {
  margin: 0;
  background: #fff;
  border: 1px solid #d9dce1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(15, 17, 22, 0.07);
}

.video-item video {
  width: 100%;
  height: 140px;
  min-height: 0;
  object-fit: cover;
  display: block;
  background: #000;
}

.gallery-item {
  min-height: 120px;
  margin: 0;
  overflow: hidden;
  border: 1px solid #d9dce1;
  border-radius: 10px;
  display: block;
  box-shadow: 0 6px 16px rgba(15, 17, 22, 0.06);
  background: #fff;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 120px;
  object-fit: cover;
  display: block;
  transition: none;
}

.gallery-item:hover img {
  transform: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.footer-grid h3,
.footer-grid h4 {
  margin: 0 0 8px;
}

.copyright {
  margin: 14px 0 0;
  padding-top: 8px;
  color: #8f96a1;
  border-top: 1px solid var(--border);
  text-align: center;
}

@media (max-width: 900px) {
  .hero-grid,
  .cards,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cards-services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #urunler .urunler-cards {
    grid-template-columns: 1fr;
  }

  .section-urunler .urunler-head {
    flex-direction: column;
    align-items: stretch;
  }

  .urunler-catalog-cta {
    align-self: flex-start;
  }

  .e-catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stat-grid {
    grid-template-columns: 1fr;
  }

  .quote-form {
    grid-template-columns: 1fr;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .logo-title {
    font-size: 19px;
  }

  .hero-photo {
    height: 210px;
  }

  .stat-grid {
    grid-template-columns: 1fr;
  }

  .ref-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .top-banner {
    min-height: 440px;
    padding-top: 112px;
  }

  .top-banner-content {
    padding: 18px 18px 22px;
  }

  .top-banner-nav--prev {
    left: 10px;
  }

  .top-banner-nav--next {
    right: 10px;
  }

  .region-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vm-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .e-catalog-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .cards-services {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item,
  .gallery-item img {
    min-height: 110px;
  }

  .video-item video {
    height: 120px;
  }

  .hero-photo {
    height: 180px;
  }

  .top-banner {
    min-height: 420px;
    padding: 108px 0 44px;
  }

  .top-banner-content {
    padding: 16px 16px 20px;
  }

  .top-banner-nav {
    width: 40px;
    height: 40px;
  }

  .top-banner-nav span {
    font-size: 24px;
  }

  .top-banner-lead {
    font-size: 15px;
  }

  .top-banner-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .top-banner-btn-ghost {
    justify-content: center;
  }

  .stat-grid {
    grid-template-columns: 1fr;
  }

  .ref-grid {
    grid-template-columns: 1fr;
  }

  .region-grid {
    grid-template-columns: 1fr;
  }

  .vm-grid {
    grid-template-columns: 1fr;
  }
}
