/* OSKAR REKLAM — vanilla styles */

:root {
  --brand: #e6192b;
  --brand-hover: #c81524;
  --ink: #0a0a0a;
  --muted: #495057;
  --muted-light: #868e96;
  --surface: #f8f9fa;
  --surface-2: #f1f3f5;
  --white: #fff;
  --page-bg: #fff;
  --max: 80rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-body: "IBM Plex Sans", sans-serif;
  --font-display: Outfit, sans-serif;
  --header-offset: 5.5rem;
  --color-border: rgba(10, 10, 10, 0.1);
  --color-bg: #fff;
  --color-muted: #868e96;
  --shadow-lift: 0 24px 48px rgba(10, 10, 10, 0.18);
  --safety: #e6192b;
  --nav-scrolled-bg: rgba(255, 255, 255, 0.92);
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.5);
}

html[data-theme="dark"] {
  color-scheme: dark;
  --ink: #f2f2f3;
  --muted: #a0a6ad;
  --muted-light: #7d848c;
  --surface: #141416;
  --surface-2: #1b1b1f;
  --page-bg: #0a0a0b;
  --color-border: rgba(255, 255, 255, 0.12);
  --color-bg: #0a0a0b;
  --color-muted: #7d848c;
  --shadow-lift: 0 24px 48px rgba(0, 0, 0, 0.5);
  --nav-scrolled-bg: rgba(16, 16, 18, 0.92);
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.14);
  --control-bg: #323236;
  --control-bg-hover: #3c3c41;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 6.5rem;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--page-bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overscroll-behavior-y: none;
}

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

.media-card img,
.ref-card img,
.photo-frame img,
.hero-slide img,
.hero-slide video {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

ul {
  list-style: none;
}

::selection {
  background: var(--brand);
  color: var(--white);
}

.font-display {
  font-family: var(--font-display);
}

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

.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-inline: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-inline: 2.5rem;
  }
}

.section {
  position: relative;
  z-index: 10;
  padding-block: 6rem;
}

@media (min-width: 1024px) {
  .section {
    padding-block: 9rem;
  }
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 1.25rem;
}

.heading {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.95;
  font-size: 2.25rem;
  color: var(--ink);
}

@media (min-width: 640px) {
  .heading {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .heading {
    font-size: 3.75rem;
  }
}

.heading .accent,
.text-brand {
  color: var(--brand);
}

.lead {
  color: var(--muted);
  line-height: 1.625;
  max-width: 28rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.875rem 1.75rem;
  transition: color 0.3s, background-color 0.3s, transform 0.3s;
}

.btn-dark {
  background: var(--ink);
  color: var(--page-bg);
}

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

.btn-light {
  background: #fff;
  color: #0a0a0a;
}

.btn-glass {
  backdrop-filter: blur(20px);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--ink);
}

.glass {
  backdrop-filter: blur(20px);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
}

.icon {
  display: inline-block;
  flex-shrink: 0;
  transition: transform 0.3s;
}

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

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

.btn-light:hover {
  background: var(--brand);
  color: #fff;
}

.btn-glass:hover {
  background: var(--page-bg);
}

.group:hover .icon-nudge {
  transform: translate(0.125rem, -0.125rem);
}

/* Grain — desktop only off; mobile also skips (SVG noise jitters while scrolling) */
.app::before {
  content: none;
  display: none;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ——— Navbar ——— */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1rem 1rem 0;
}

@media (min-width: 640px) {
  .navbar {
    padding-inline: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .navbar {
    padding-inline: 2.5rem;
  }
}

.navbar-inner {
  max-width: var(--max);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  transition: padding 0.5s, box-shadow 0.5s, background 0.5s, border-color 0.5s;
}

@media (min-width: 640px) {
  .navbar-inner {
    padding-inline: 1.75rem;
  }
}

.navbar.is-scrolled .navbar-inner {
  padding-block: 0.75rem;
  background: var(--nav-scrolled-bg);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(20px);
}

@supports (backdrop-filter: blur(1px)) {
  @media (max-width: 767px) {
    .navbar.is-scrolled .navbar-inner {
      backdrop-filter: blur(20px);
      background: color-mix(in oklab, var(--page-bg) 72%, transparent);
    }
  }
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-left: auto;
  flex-shrink: 0;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 1px solid var(--color-border);
  background: var(--surface);
  color: var(--ink);
  transition: background-color 0.25s, border-color 0.25s, color 0.25s, transform 0.25s;
}

.theme-toggle:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.theme-icon--sun {
  display: none;
}

html[data-theme="dark"] .theme-icon--moon {
  display: none;
}

html[data-theme="dark"] .theme-icon--sun {
  display: block;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.logo-img {
  display: block;
  height: 2.35rem;
  width: auto;
  max-width: min(46vw, 11.5rem);
  object-fit: contain;
}

.logo-img--dark,
.logo-30--dark {
  display: none;
}

.logo-img--light,
.logo-30--light {
  display: block;
}

html[data-theme="dark"] .logo-img--light,
html[data-theme="dark"] .logo-30--light {
  display: none;
}

html[data-theme="dark"] .logo-img--dark,
html[data-theme="dark"] .logo-30--dark {
  display: block;
}

@media (min-width: 640px) {
  .logo-img {
    height: 2.75rem;
    max-width: 13.5rem;
  }
}

@media (min-width: 1024px) {
  .logo-img {
    height: 3rem;
    max-width: 14.5rem;
  }
}

.logo-30 {
  height: 1.85rem;
  width: auto;
  object-fit: contain;
}

.logo-30--nav {
  height: 1.55rem;
}

@media (min-width: 640px) {
  .logo-30--nav {
    height: 1.85rem;
  }
}

@media (max-width: 380px) {
  .logo-30--nav {
    display: none;
  }
}

.nav-desktop {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1.15rem;
  flex: 1;
  min-width: 0;
}

.nav-cta {
  display: none;
}

@media (min-width: 1100px) {
  .nav-desktop {
    display: flex;
  }

  .nav-cta {
    display: inline-flex;
  }

  .nav-toggle {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1099px) {
  .nav-cta {
    display: inline-flex;
  }
}

.nav-link {
  position: relative;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1;
  color: var(--muted);
  transition: color 0.3s;
  white-space: nowrap;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  height: 2px;
  width: 0;
  background: var(--brand);
  transition: width 0.3s;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--ink);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  width: 100%;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  align-self: center;
}

.nav-item.has-dropdown > .nav-link {
  padding-right: 0.9rem;
  line-height: 1;
}

.nav-item.has-dropdown > .nav-link::before {
  content: "";
  position: absolute;
  right: -0.1rem;
  top: 50%;
  width: 0.85rem;
  height: 0.85rem;
  transform: translateY(-50%) rotate(90deg);
  opacity: 0.55;
  pointer-events: none;
  background-color: currentColor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m9 18 6-6-6-6'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m9 18 6-6-6-6'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.85rem);
  left: 50%;
  z-index: 70;
  min-width: 13.5rem;
  padding: 0.4rem;
  border-radius: 0.85rem;
  background: color-mix(in oklab, var(--page-bg) 96%, transparent);
  border: 1px solid var(--color-border);
  box-shadow: 0 18px 40px rgba(10, 10, 10, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
}

.nav-item.has-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 1rem;
}

.nav-item.has-dropdown:hover .nav-dropdown,
.nav-item.has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 0.55rem 0.75rem;
  border-radius: 0.55rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  transition: background 0.2s, color 0.2s;
}

.nav-dropdown a:hover {
  background: var(--surface);
  color: var(--ink);
}

.nav-toggle {
  padding: 0.5rem;
  color: var(--ink);
}

.mobile-menu {
  display: none;
  margin-top: 0.75rem;
  border-radius: 1rem;
  padding: 1.25rem;
  backdrop-filter: blur(20px);
  background: color-mix(in oklab, var(--page-bg) 94%, transparent);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu > a,
.mobile-acc-btn {
  display: block;
  width: 100%;
  padding: 0.75rem 0;
  font: inherit;
  font-weight: 500;
  color: var(--ink);
  text-align: left;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: none;
  cursor: pointer;
}

.mobile-acc-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-acc-btn::after {
  content: "";
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  opacity: 0.45;
  background-color: currentColor;
  transform: rotate(90deg);
  transition: transform 0.2s;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m9 18 6-6-6-6'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m9 18 6-6-6-6'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

.mobile-acc.is-open .mobile-acc-btn::after {
  transform: rotate(-90deg);
}

.mobile-acc-panel {
  display: none;
  padding: 0.25rem 0 0.65rem 0.75rem;
}

.mobile-acc.is-open .mobile-acc-panel {
  display: block;
}

.mobile-acc-panel a {
  display: block;
  padding: 0.55rem 0;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.72rem;
}

.mobile-acc-panel a:last-child {
  border-bottom: none;
}

.mobile-menu > a.btn {
  border-bottom: none;
  margin-top: 0.5rem;
  text-align: center;
}

[id="totem-pilon"],
[id="cephe-tabelasi"],
[id="giris-tak"],
[id="kutu-harf"],
[id="yonlendirme"],
[id="dijital-baski-hizmet"],
[id="arac-giydirme"] {
  scroll-margin-top: 6.5rem;
}

/* ——— Hero ——— */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-block: 5.25rem 1.75rem;
}

@media (min-width: 640px) {
  .hero {
    padding-block: 5.75rem 2.5rem;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding-block: 6.5rem 3.5rem;
  }
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 55% at 12% 20%, rgba(230, 25, 43, 0.08), transparent 55%),
    radial-gradient(ellipse 55% 50% at 88% 70%, rgba(10, 10, 10, 0.05), transparent 50%),
    linear-gradient(160deg, var(--page-bg) 0%, var(--surface) 42%, var(--surface-2) 100%);
}

html[data-theme="dark"] .hero-atmosphere {
  background:
    radial-gradient(ellipse 70% 55% at 12% 20%, rgba(230, 25, 43, 0.14), transparent 55%),
    radial-gradient(ellipse 55% 50% at 88% 70%, rgba(255, 255, 255, 0.04), transparent 50%),
    linear-gradient(160deg, #0a0a0b 0%, #121214 42%, #17171a 100%);
}

.hero-inner {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 100rem;
  margin-inline: auto;
  padding-inline: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

@media (min-width: 640px) {
  .hero-inner {
    padding-inline: 1.5rem;
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .hero-inner {
    padding-inline: 2.5rem;
    gap: 1.5rem;
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0.65rem;
  width: 100%;
}

@media (max-width: 639px) {
  .hero-actions .btn {
    flex: 1 1 calc(50% - 0.35rem);
    justify-content: center;
    text-align: center;
    padding: 0.8rem 0.9rem;
    font-size: 0.78rem;
    min-width: 0;
  }
}

@media (min-width: 640px) {
  .hero-actions {
    gap: 0.85rem;
    align-items: center;
  }
}

/* Hero slider */
.hero-slider {
  position: relative;
  width: 100%;
}

.hero-slider-viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--brand);
  border-radius: 1rem;
  box-shadow:
    0 20px 40px -24px rgba(10, 10, 10, 0.35),
    0 0 0 1px rgba(10, 10, 10, 0.04);
}

/* Vertical layout — mobile / tablet only (admin: dikey) */
.hero-slider--vertical .hero-slider-viewport {
  aspect-ratio: 3 / 4;
  max-height: min(62vh, 26rem);
}

@media (min-width: 640px) {
  .hero-slider--vertical .hero-slider-viewport {
    aspect-ratio: 4 / 5;
    max-height: min(64vh, 32rem);
    border-radius: 1.25rem;
  }
}

@media (min-width: 768px) and (max-width: 1023.98px) {
  .hero-slider--vertical .hero-slider-viewport {
    aspect-ratio: 1 / 1.15;
    max-height: min(66vh, 36rem);
    border-radius: 1.35rem;
  }
}

/* Horizontal layout — mobile / tablet only (admin: yatay) */
.hero-slider--horizontal .hero-slider-viewport {
  aspect-ratio: 16 / 9;
  max-height: min(48vh, 22rem);
}

@media (min-width: 640px) {
  .hero-slider--horizontal .hero-slider-viewport {
    aspect-ratio: 2.1 / 1;
    max-height: min(52vh, 26rem);
    border-radius: 1.25rem;
  }
}

@media (min-width: 768px) and (max-width: 1023.98px) {
  .hero-slider--horizontal .hero-slider-viewport {
    aspect-ratio: 2.35 / 1;
    max-height: min(56vh, 28rem);
    border-radius: 1.35rem;
  }
}

/* Desktop: fixed ratio for both layouts */
@media (min-width: 1024px) {
  .hero-slider .hero-slider-viewport {
    aspect-ratio: 0.5 / 1;
    max-height: min(72vh, 45rem);
    border-radius: 1.5rem;
  }
}

.hero-slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.7s var(--ease), transform 0.9s var(--ease);
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  z-index: 1;
}

.hero-slide img,
.hero-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slider-ui {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 0.55rem;
}

@media (min-width: 640px) {
  .hero-slider-ui {
    margin-top: 0.75rem;
  }
}

.hero-slider-dots {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.hero-slider-dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 9999px;
  background: rgba(10, 10, 10, 0.18);
  transition: width 0.35s var(--ease), background-color 0.35s var(--ease);
}

html[data-theme="dark"] .hero-slider-dot {
  background: rgba(255, 255, 255, 0.22);
}

.hero-slider-dot.is-active {
  width: 1.15rem;
  background: var(--brand);
}

.hero-slider-nav {
  display: flex;
  gap: 0.35rem;
}

.hero-slider-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  border: 1px solid var(--color-border);
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  color: var(--ink);
  transition: background-color 0.25s, border-color 0.25s, color 0.25s;
}

.hero-slider-btn:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--page-bg);
}

.hero-slider-btn svg {
  width: 14px;
  height: 14px;
}

.hero-scroll {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: var(--muted);
  animation: bob 2s ease-in-out infinite;
}

@media (max-width: 639px) {
  .hero-scroll {
    display: none;
  }
}

@media (min-width: 640px) {
  .hero-scroll {
    bottom: 1.25rem;
  }
}

@keyframes bob {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transition: none;
  }

  .hero-scroll {
    animation: none;
  }
}

/* ——— Hakkımızda / Kurumsal ——— */
.about-story-alt {
  background: var(--surface);
}

.about-split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .about-split {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
  }

  .about-split-reverse .about-copy {
    order: 2;
  }

  .about-split-reverse .about-figure {
    order: 1;
  }
}

.about-copy .heading {
  margin-bottom: 1.35rem;
}

.about-prose {
  display: grid;
  gap: 1rem;
  max-width: 38rem;
}

.about-prose-wide {
  max-width: 46rem;
}

.about-prose p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.about-emphasis {
  color: var(--ink) !important;
  font-weight: 600;
}

.about-figure {
  margin: 0;
  overflow: hidden;
  border-radius: 1.15rem;
  background: #111;
}

.about-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-split-reverse .about-figure img {
  aspect-ratio: 5 / 4;
}

.about-figure-facility img {
  aspect-ratio: 4 / 5;
}

@media (min-width: 900px) {
  .about-figure-facility img {
    aspect-ratio: 4 / 5;
    min-height: 100%;
    object-position: center;
  }
}

.about-block .heading {
  margin-bottom: 1.35rem;
}

.about-story .stats {
  margin-top: 3.5rem;
}

.kurumsal-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .kurumsal-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 4rem;
  }

  .kurumsal-intro {
    grid-column: span 5;
  }

  .manifesto {
    grid-column: span 7;
  }
}

.kurumsal-intro .lead {
  margin-top: 2rem;
  font-size: 1rem;
}

@media (min-width: 640px) {
  .kurumsal-intro .lead {
    font-size: 1.125rem;
  }
}

.manifesto-item {
  display: flex;
  gap: 1.5rem;
  padding-block: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: border-color 0.5s;
}

.manifesto-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
  transition: color 0.5s;
}

.manifesto-item:hover {
  border-color: rgba(230, 25, 43, 0.4);
}

.manifesto-item:hover .manifesto-num {
  color: var(--brand);
}

.manifesto-item h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
  .manifesto-item h3 {
    font-size: 1.5rem;
  }
}

.manifesto-item p {
  color: var(--muted);
  line-height: 1.625;
}

.stats {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .stats {
    margin-top: 7rem;
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  border-radius: 1.5rem;
  background: var(--surface);
  padding: 2rem;
  transition: background 0.5s, color 0.5s;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--ink);
  transition: color 0.5s;
}

@media (min-width: 640px) {
  .stat-value {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .stat-value {
    font-size: 3.75rem;
  }
}

.stat-label {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-light);
  transition: color 0.5s;
}

.stat-card:hover {
  background: var(--ink);
  color: var(--page-bg);
}

.stat-card:hover .stat-value {
  color: var(--page-bg);
}

.stat-card:hover .stat-label {
  color: rgba(255, 255, 255, 0.7);
}

/* ——— Marquee ——— */
.marquee-section {
  position: relative;
  z-index: 10;
  background: #181818;
  padding-block: 0.65rem;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .marquee-section {
    padding-block: 0.85rem;
  }
}

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

@media (hover: hover) and (pointer: fine) {
  .marquee {
    animation-duration: 55s;
  }
}

.marquee-track {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.marquee-item {
  display: flex;
  align-items: center;
}

.marquee-text {
  /* 
  font-family: var(--font-display); 
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.35);
  */
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  color:rgba(255, 255, 255, 0.85);
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.35);
  padding-inline: 0.85rem;
  white-space: nowrap;
}

@media (min-width: 640px) {
  .marquee-text {
    font-size: 1.65rem;
  }
}

@media (min-width: 1024px) {
  .marquee-text {
    font-size: 1.85rem;
  }
}

.marquee-star {
  display: inline-flex;
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
  color: var(--brand);
}

.marquee-star svg {
  display: block;
  width: 100%;
  height: 100%;
}

@media (min-width: 640px) {
  .marquee-star {
    width: 1.35rem;
    height: 1.35rem;
  }
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* ——— Tabelalar ——— */
.section-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 640px) {
  .section-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.section-header .heading {
  max-width: 36rem;
}

.cards-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  contain: layout style;
}

.cards-bento-shell {
  width: 100%;
  margin-inline: auto;
  margin-top: 2rem;
  padding-inline: 1rem;
}

@media (min-width: 640px) {
  .cards-bento-shell {
    padding-inline: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .cards-bento-shell {
    padding-inline: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .cards-bento {
    grid-template-columns: repeat(5, 1fr);
    gap: 0.85rem;
  }

  .card-wide,
  .card-narrow {
    grid-column: auto;
  }
}

.media-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: visible;
  background: transparent;
}

.media-card img {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 1rem;
  opacity: 1;
  transition: transform 0.7s var(--ease);
}

.media-card-overlay {
  display: none !important;
}

.media-card-body {
  position: static;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  height: auto;
  min-height: 0;
  padding: 0.65rem 0.1rem 0;
}

.media-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  order: -1;
}

.media-card-num {
  display: none !important;
}

.media-card-cat {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.media-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  line-height: 1.25;
}

.media-card h3 .icon {
  color: var(--brand);
  width: 18px;
  height: 18px;
}

.media-card p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
  margin-top: 0.35rem;
  max-width: 28rem;
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.55;
  opacity: 1;
  transform: none;
  transition: opacity 0.5s, transform 0.5s;
}

@media (min-width: 768px) {
  .media-card {
    display: block;
    overflow: hidden;
    border-radius: 1.25rem;
    background: var(--surface-2);
    min-height: 280px;
  }

  .media-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    border-radius: 0;
    opacity: 1;
  }

  .media-card-body {
    position: relative;
    justify-content: space-between;
    gap: 0;
    height: 100%;
    min-height: 280px;
    padding: 1.25rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.28) 0%, transparent 45%);
  }

  .media-card-meta {
    order: 0;
  }

  .media-card-cat {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55);
  }

  .media-card h3 {
    font-size: 1.2rem;
    color: #fff;
    gap: 0.4rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
  }

  .media-card h3 .icon {
    width: 18px;
    height: 18px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.45));
  }

  .media-card p {
    margin-top: 0.5rem;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.55;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55);
  }
}

@media (min-width: 1024px) {
  .media-card {
    min-height: 300px;
  }

  .media-card-body {
    min-height: 300px;
    padding: 1.35rem;
  }

  .media-card h3 {
    font-size: 1.3rem;
  }

  .media-card p {
    font-size: 0.875rem;
  }
}

@media (hover: hover) and (pointer: fine) and (min-width: 768px) {
  .media-card:hover img {
    transform: scale(1.1);
  }

  .media-card h3 .icon {
    transition: transform 0.35s var(--ease);
  }

  .media-card:hover h3 .icon {
    transform: translate(0.25rem, -0.25rem);
  }

  .media-card p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    max-height: 0;
    margin-top: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(0.5rem);
    transition:
      max-height 0.45s var(--ease),
      opacity 0.35s ease,
      transform 0.35s var(--ease),
      margin-top 0.35s var(--ease);
  }

  .media-card:hover p {
    max-height: 4.2rem;
    margin-top: 0.5rem;
    opacity: 1;
    transform: none;
  }
}

/* ——— Dijital Baskı ——— */
.digital {
  background: var(--surface);
}

.digital-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .digital-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 4rem;
  }

  .digital-copy {
    grid-column: span 5;
  }

  .digital-photos {
    grid-column: span 7;
  }
}

.digital-copy .lead {
  margin-top: 2rem;
}

.digital-list {
  margin-top: 2.5rem;
}

.digital-item {
  padding-block: 1.25rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: border-color 0.5s;
}

.digital-item h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  transition: transform 0.5s;
}

.digital-item:hover {
  border-color: rgba(230, 25, 43, 0.4);
}

.digital-item:hover h3 {
  transform: translateX(0.5rem);
}

.digital-item p {
  margin-top: 0.375rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.digital-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  contain: layout style;
}

.digital-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.digital-col.offset-up,
.digital-col.offset-down {
  transform: none;
  padding-top: 0;
}

@media (min-width: 1024px) {
  .digital-photos {
    gap: 1.25rem;
  }

  .digital-col {
    gap: 1.25rem;
  }

  .digital-col.offset-up {
    transform: translateY(-8%);
  }

  .digital-col.offset-down {
    padding-top: 2.5rem;
    transform: translateY(12%);
  }
}

.photo-frame {
  overflow: hidden;
  border-radius: 1.5rem;
  background: #000;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

@media (hover: hover) and (pointer: fine) {
  .photo-frame:hover img {
    transform: scale(1.05);
  }
}

.aspect-3-4 {
  aspect-ratio: 3 / 4;
}

.aspect-square {
  aspect-ratio: 1;
}

.aspect-3-5 {
  aspect-ratio: 3 / 5;
}

/* ——— Display ——— */
.display-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .display-grid {
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .display-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.display-grid .media-card {
  min-height: 0;
}

@media (min-width: 768px) {
  .display-grid .media-card {
    min-height: 280px;
  }

  .display-grid .media-card-body {
    min-height: 280px;
  }
}

/* ——— Üretim ——— */
.uretim {
  position: relative;
  z-index: 10;
  height: 70vh;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.uretim-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.uretim-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.uretim-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.uretim-content {
  position: relative;
  z-index: 10;
  max-width: 42rem;
}

.uretim-content .heading {
  color: var(--white);
  font-weight: 900;
}

@media (min-width: 640px) {
  .uretim-content .heading {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .uretim-content .heading {
    font-size: 4.5rem;
  }
}

.uretim-content .lead {
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 32rem;
  font-size: 1rem;
}

@media (min-width: 640px) {
  .uretim-content .lead {
    font-size: 1.125rem;
  }
}

.pills {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.pill {
  border-radius: 9999px;
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1.25rem;
}

.page-hero .pills {
  margin-top: 1.5rem;
}

.page-hero .pill {
  background: var(--surface);
  border: 1px solid var(--color-border);
  color: var(--ink);
}

/* ——— Facility sliders (Üretim) ——— */
.facility-section {
  background: var(--surface);
}

.facility-stack {
  display: grid;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .facility-stack {
    gap: 5.5rem;
  }
}

.facility-block {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .facility-block {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 2.5rem;
    align-items: center;
  }

  .facility-block:nth-child(even) .facility-copy {
    order: 2;
  }

  .facility-block:nth-child(even) .facility-slider {
    order: 1;
  }
}

.facility-copy .heading {
  margin-bottom: 0.85rem;
}

.facility-copy .lead {
  max-width: 30rem;
  font-size: 1rem;
  color: var(--muted);
}

.facility-slider {
  position: relative;
  min-width: 0;
}

.facility-slider-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  border-radius: 1.15rem;
  background: #111;
  scrollbar-width: none;
}

.facility-slider-viewport::-webkit-scrollbar {
  display: none;
}

.facility-slider-track {
  display: flex;
}

.facility-slide {
  flex: 0 0 100%;
  margin: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.facility-slide img,
.facility-slide video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.facility-slide img.is-zoomable {
  cursor: zoom-in;
}

.facility-slider-ui {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.85rem;
}

.facility-slider-status {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
}

.facility-slider-dots {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  max-width: 100%;
}

.facility-slider-counter {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted, rgba(10, 10, 10, 0.62));
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.facility-slider.has-counter .facility-slider-dots {
  display: none;
}

.facility-slider-dot {
  width: 0.45rem;
  height: 0.45rem;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.22);
  cursor: pointer;
  transition: width 0.25s var(--ease), background 0.25s;
}

.facility-slider-dot.is-active {
  width: 1.35rem;
  background: var(--brand);
}

.facility-slider-nav {
  display: flex;
  flex: 0 0 auto;
  gap: 0.4rem;
  margin-left: auto;
}

.facility-slider-btn {
  width: 2.35rem;
  height: 2.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(10, 10, 10, 0.1);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.facility-slider-btn:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

/* ——— Referanslar ——— */
.refs {
  background: var(--surface);
}

.refs-grid-shell {
  width: 100%;
  margin-inline: auto;
  padding-inline: 1rem;
}

@media (min-width: 640px) {
  .refs-grid-shell {
    padding-inline: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .refs-grid-shell {
    padding-inline: 2.5rem;
  }
}

.container + .refs-grid-shell {
  margin-top: 2rem;
}

.refs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 0.5rem;
  row-gap: 1rem;
  contain: layout style;
}

@media (min-width: 768px) {
  .refs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
}

@media (min-width: 1024px) {
  .refs-grid {
    grid-template-columns: repeat(7, 1fr);
  }

  .ref-5,
  .ref-7,
  .ref-4 {
    grid-column: auto;
  }
}

.ref-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: visible;
  background: transparent;
}

.ref-card.is-video {
  position: relative;
}

.ref-card-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-decoration: none;
  z-index: 2;
}

.ref-card-play span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.72);
  color: #fff;
  font-size: 0.95rem;
}

.ref-card-video-fallback {
  width: 100%;
  aspect-ratio: 4 / 4;
  border-radius: 1rem;
  background: #1a1a1c;
}


.ref-card img {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 4;
  object-fit: cover;
  border-radius: 1rem;
  opacity: 1;
  transition: transform 0.7s var(--ease), opacity 0.5s;
}

.refs-grid:not([data-montaj-grid]) figcaption {
  display: none;
}

.ref-overlay {
  display: none !important;
}

.ref-card figcaption {
  position: static;
  padding: 0.55rem 0.1rem 0;
  opacity: 1;
  transform: none;
  transition: opacity 0.5s, transform 0.5s;
}

.ref-card figcaption span {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
}

.ref-card figcaption h3 {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ink);
  margin-top: 0.15rem;
  line-height: 1.25;
}

@media (min-width: 768px) {
  .ref-card {
    display: block;
    overflow: hidden;
    border-radius: 1.5rem;
    background: var(--surface-2);
    aspect-ratio: 4 / 4;
  }

  .ref-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    border-radius: 0;
    opacity: 1;
  }

  .ref-card figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.35) 0%, transparent 70%);
  }

  .ref-card figcaption span {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  }

  .ref-card figcaption h3 {
    font-size: 1.25rem;
    color: #fff;
    margin-top: 0.25rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
  }
}

@media (hover: hover) and (pointer: fine) and (min-width: 768px) {
  .ref-card img {
    opacity: 1;
  }

  .ref-card:hover img {
    opacity: 1;
    transform: scale(1.05);
  }

  .ref-card figcaption {
    opacity: 1;
    transform: none;
  }
}

/* ——— Footer / İletişim ——— */
.footer {
  position: relative;
  z-index: 10;
  background: transparent;
  color: #fff;
  padding: 1rem 0 5rem;
}

@media (min-width: 640px) {
  .footer {
    padding: 3rem 0 3.75rem;
  }
}

@media (min-width: 1024px) {
  .footer {
    padding: 3.5rem 0 5rem;
  }
}

.footer-panel {
  background: #2a2a2e;
  border-radius: 1.5rem;
  padding: 2.5rem 1.35rem 1.75rem;
  box-shadow: 0 18px 48px -28px rgba(10, 10, 10, 0.35);
}

@media (min-width: 640px) {
  .footer-panel {
    padding: 3rem 2rem 2rem;
    border-radius: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .footer-panel {
    padding: 3.5rem 2.75rem 2.25rem;
    border-radius: 2rem;
  }
}

.footer-grid {
  display: grid;
  gap: 2.25rem;
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 2.5rem;
    align-items: start;
  }

  .footer-cta {
    grid-column: span 6;
  }

  .footer-contacts {
    grid-column: span 6;
  }
}

.footer-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .footer-cta {
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
  }
}

.footer-cta-logo {
  height: 2.75rem;
  width: auto;
  max-width: 10.5rem;
  object-fit: contain;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .footer-cta-logo {
    height: 10.25rem;
    max-width: 12rem;
  }
}

.footer-cta-copy {
  min-width: 0;
}

.footer-cta .eyebrow {
  font-size: 0.7rem;
  margin-bottom: 0.75rem;
}

.footer-cta .heading {
  color: #fff;
  font-weight: 800;
  font-size: 1.45rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

@media (min-width: 640px) {
  .footer-cta .heading {
    font-size: 1.65rem;
  }
}

@media (min-width: 1024px) {
  .footer-cta .heading {
    font-size: 1.85rem;
  }
}

.footer-cta .btn {
  margin-top: 1.35rem;
  padding: 0.7rem 1.35rem;
  font-size: 0.8125rem;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-block: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-label {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  width: 6.5rem;
  color: var(--brand);
}

.contact-label span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.contact-value {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s;
}

@media (min-width: 640px) {
  .contact-value {
    font-size: 0.95rem;
  }
}

a.contact-row:hover .contact-value {
  color: var(--brand);
}

.footer-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.25rem;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 2.5rem;
  padding: 0 0.9rem 0 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.2s;
}

.footer-social:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: rgba(230, 25, 43, 0.12);
  transform: translateY(-1px);
}

.footer-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.15rem;
}

.footer-bottom .logo {
  color: #fff;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand .logo-img {
  height: 2rem;
  max-width: 10rem;
  background: none;
  border-radius: 0;
  padding: 0;
  filter: none;
}

.footer-brand .logo-30 {
  height: 1.7rem;
  background: none;
  border-radius: 0;
  padding: 0;
  filter: none;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
}

.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: var(--white);
}

.copyright {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-credit {
  margin-top: 1.15rem;
  text-align: center;
  font-size: 0.6875rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.38);
}

.footer-credit a {
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-credit a:hover {
  color: #fff;
}

/* ——— Page shell ——— */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 9rem 0 3.5rem;
}

@media (min-width: 1024px) {
  .page-hero {
    padding: 10.5rem 0 4.5rem;
  }
}

.page-hero-atmosphere {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 65% 50% at 8% 0%, rgba(230, 25, 43, 0.1), transparent 55%),
    radial-gradient(ellipse 50% 45% at 100% 80%, rgba(10, 10, 10, 0.05), transparent 50%),
    linear-gradient(165deg, var(--page-bg) 0%, var(--surface) 50%, var(--surface-2) 100%);
}

html[data-theme="dark"] .page-hero-atmosphere {
  background:
    radial-gradient(ellipse 65% 50% at 8% 0%, rgba(230, 25, 43, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 45% at 100% 80%, rgba(255, 255, 255, 0.04), transparent 50%),
    linear-gradient(165deg, #0a0a0b 0%, #121214 50%, #17171a 100%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero .heading {
  max-width: 18ch;
}

.page-hero .lead {
  margin-top: 1.25rem;
  max-width: 36rem;
}

.page-main {
  position: relative;
  z-index: 10;
}

/* Home gateways */
.home-gateways {
  padding-block: 5rem 6rem;
}

@media (min-width: 1024px) {
  .home-gateways {
    padding-block: 7rem 8rem;
  }
}

.gateway-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .gateway-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gateway-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gateway-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 14rem;
  padding: 1.75rem;
  border-radius: 1.25rem;
  background: var(--surface);
  border: 1px solid transparent;
  transition: border-color 0.4s, transform 0.4s, background 0.4s, color 0.4s;
}

.gateway-card .eyebrow {
  margin-bottom: 0.75rem;
}

.gateway-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.gateway-card p {
  margin-top: 0.75rem;
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.55;
  transition: color 0.4s;
}

.gateway-card .gateway-go {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand);
}

.gateway-card:hover {
  background: var(--ink);
  color: var(--page-bg);
  transform: translateY(-4px);
}

.gateway-card:hover .eyebrow {
  color: var(--brand);
}

.gateway-card:hover p {
  color: color-mix(in oklab, var(--page-bg) 65%, transparent);
}

.gateway-card:hover .gateway-go {
  color: var(--page-bg);
}

.gateway-card:hover .gateway-go .icon {
  transform: translate(3px, -3px);
}

/* Split feature */
.split-feature {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .split-feature {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
  }

  .split-feature.is-reverse .split-copy {
    order: 2;
  }

  .split-feature.is-reverse .split-media {
    order: 1;
  }
}

.split-media {
  overflow: hidden;
  border-radius: 1.5rem;
  background: var(--surface-2);
  aspect-ratio: 4 / 3;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-copy .lead {
  margin-top: 1.25rem;
}

.split-list {
  margin-top: 2rem;
  display: grid;
  gap: 0.85rem;
}

.split-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--muted);
  line-height: 1.5;
}

.split-list li::before {
  content: "";
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  margin-top: 0.45rem;
  border-radius: 9999px;
  background: var(--brand);
}

/* Process steps — timeline */
.process {
  position: relative;
  display: grid;
  gap: 0;
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.15rem;
  padding: 1.5rem 0 1.75rem;
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
  background: transparent;
}

.process-step:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.process-num {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(230, 25, 43, 0.35);
  text-stroke: 1.5px rgba(230, 25, 43, 0.35);
  transition: color 0.35s var(--ease), -webkit-text-stroke-color 0.35s;
}

.process-label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
}

.process-step h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--ink);
}

.process-step p {
  margin-top: 0.65rem;
  max-width: 28rem;
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.6;
}

@media (hover: hover) and (pointer: fine) {
  .process-step:hover .process-num {
    color: var(--brand);
    -webkit-text-stroke-color: transparent;
  }
}

@media (min-width: 900px) {
  .process {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding-top: 0.5rem;
  }

  .process::before {
    content: "";
    position: absolute;
    top: 2.15rem;
    left: 0.35rem;
    right: 0.35rem;
    height: 1px;
    background: linear-gradient(
      90deg,
      rgba(230, 25, 43, 0.55),
      rgba(10, 10, 10, 0.12) 20%,
      rgba(10, 10, 10, 0.12) 80%,
      rgba(230, 25, 43, 0.55)
    );
    pointer-events: none;
  }

  .process-step {
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
    padding: 0 1.25rem 0 0;
    border-bottom: none;
  }

  .process-step:last-child {
    padding-right: 0;
  }

  .process-step::before {
    content: "";
    position: absolute;
    top: 1.95rem;
    left: 0;
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--brand);
    box-shadow: 0 0 0 4px rgba(230, 25, 43, 0.12);
    z-index: 1;
  }

  .process-num {
    margin-top: 2.75rem;
    font-size: clamp(3rem, 4vw, 4.25rem);
  }

  .process-body {
    padding-right: 0.5rem;
  }
}

/* Contact page */
.contact-layout {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
    align-items: start;
  }
}

.contact-form {
  display: grid;
  gap: 1.1rem;
}

.form-row {
  display: grid;
  gap: 1.1rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-field label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  border: 1px solid var(--color-border);
  background: var(--page-bg);
  border-radius: 0.75rem;
  padding: 0.9rem 1rem;
  font: inherit;
  color: var(--ink);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.form-field textarea {
  min-height: 9rem;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(230, 25, 43, 0.12);
}

.contact-aside {
  display: grid;
  gap: 1rem;
}

.contact-card {
  padding: 1.5rem;
  border-radius: 1.25rem;
  background: var(--surface);
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.contact-card p,
.contact-card a {
  color: var(--muted);
  line-height: 1.55;
}

.contact-card a:hover {
  color: var(--brand);
}

.contact-socials {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: 0.35rem;
}

.contact-social {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  width: fit-content;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: var(--page-bg);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.2s;
}

.contact-social:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: rgba(230, 25, 43, 0.04);
  transform: translateY(-1px);
}

.contact-social.is-muted {
  opacity: 0.55;
  cursor: default;
}

.contact-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
}

.contact-map {
  overflow: hidden;
  border-radius: 1.25rem;
  aspect-ratio: 16 / 11;
  background: var(--surface-2);
}

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

/* Display products richer */
.display-showcase {
  display: grid;
  gap: 2rem;
}

.display-row {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  padding-block: 2rem;
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
}

@media (min-width: 768px) {
  .display-row {
    grid-template-columns: 10rem 1fr;
    gap: 2.5rem;
  }
}

.display-row-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
  color: rgba(10, 10, 10, 0.08);
}

.display-row h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.display-row p {
  margin-top: 0.5rem;
  max-width: 40rem;
  color: var(--muted);
  line-height: 1.6;
}

.cta-band {
  position: relative;
  z-index: 10;
  margin: 0;
  padding: 4rem 0;
  background: var(--ink);
  color: var(--white);
}

.cta-band .heading {
  color: var(--white);
  max-width: 16ch;
}

.cta-band .lead {
  color: rgba(255, 255, 255, 0.65);
  margin-top: 1rem;
}

.cta-band-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .cta-band-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* Dark page nav (üretim hero) */
.page-dark .navbar:not(.is-scrolled) .nav-link {
  color: rgba(255, 255, 255, 0.72);
}

.page-dark .navbar:not(.is-scrolled) .nav-link:hover,
.page-dark .navbar:not(.is-scrolled) .nav-link.is-active {
  color: var(--white);
}

.page-dark .navbar:not(.is-scrolled) .nav-toggle {
  color: var(--white);
}

/* ——— Product toolbar (tabelalar) ——— */
.product-toolbar {
  position: sticky;
  top: var(--header-offset);
  z-index: 30;
  margin-bottom: 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  background: color-mix(in oklab, var(--color-bg) 80%, transparent);
  padding: 0.5rem;
  backdrop-filter: blur(18px);
}

@supports not (background: color-mix(in oklab, white 80%, transparent)) {
  .product-toolbar {
    background: rgba(255, 255, 255, 0.88);
  }
}

.product-toolbar-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}

.product-search {
  position: relative;
  flex: 1;
  min-width: 0;
}

.product-search-icon {
  position: absolute;
  left: 0.875rem;
  top: 50%;
  width: 1rem;
  height: 1rem;
  transform: translateY(-50%);
  color: var(--color-muted);
  pointer-events: none;
}

.product-search-input {
  width: 100%;
  height: 2.75rem;
  padding: 0 0.9rem 0 2.5rem;
  border: 1px solid var(--color-border);
  border-radius: 0.75rem;
  background: #fff;
  font: inherit;
  font-size: 0.875rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.product-search-input::placeholder {
  color: var(--color-muted);
}

.product-search-input:focus {
  border-color: rgba(230, 25, 43, 0.45);
  box-shadow: 0 0 0 3px rgba(230, 25, 43, 0.12);
}

.product-toolbar-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.product-filter-btn {
  display: inline-flex;
  height: 2.75rem;
  align-items: center;
  gap: 0.375rem;
  border-radius: 0.75rem;
  border: 1px solid var(--color-border);
  background: #fff;
  padding-inline: 0.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.product-filter-btn .icon {
  width: 1rem;
  height: 1rem;
}

.product-filter-btn:hover {
  border-color: rgba(230, 25, 43, 0.35);
  background: var(--surface);
}

.product-sort {
  position: relative;
  display: none;
  min-width: 11.5rem;
}

@media (min-width: 768px) {
  .product-sort-desktop {
    display: block;
  }
}

.product-sort-select {
  width: 100%;
  height: 2.75rem;
  padding: 0 2.35rem 0 0.875rem;
  border: 1px solid var(--color-border);
  border-radius: 0.75rem;
  background: #fff;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink);
  appearance: none;
  cursor: pointer;
  outline: none;
}

.product-sort-select:focus {
  border-color: rgba(230, 25, 43, 0.45);
  box-shadow: 0 0 0 3px rgba(230, 25, 43, 0.12);
}

.product-sort-icon {
  position: absolute;
  right: 0.85rem;
  top: 50%;
  width: 1rem;
  height: 1rem;
  transform: translateY(-50%);
  color: var(--color-muted);
  pointer-events: none;
}

.product-filter-meta {
  margin: 0.55rem 0 0;
  padding: 0 0.25rem;
  font-size: 0.8125rem;
  color: var(--color-muted);
}

.product-filter-meta:empty,
.product-filter-meta[hidden] {
  display: none;
  margin: 0;
}

.product-empty {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.9375rem;
  color: var(--muted);
}

.product-empty[hidden] {
  display: none;
}

[data-product].is-filtered-out {
  display: none !important;
}

a.media-card {
  color: inherit;
  text-decoration: none;
}

/* Filters drawer */
.filters-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s;
}

.filters-drawer.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.filters-drawer-panel {
  position: absolute;
  inset-block: 0;
  left: 0;
  width: 85%;
  max-width: 24rem;
  background: #fff;
  padding: 1.5rem;
  overflow-y: auto;
  box-shadow: var(--shadow-lift);
  transform: translateX(-100%);
  transition: transform 0.22s ease;
}

.filters-drawer.is-open .filters-drawer-panel {
  transform: translateX(0);
}

.filters-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.filters-drawer-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.filters-drawer-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.65rem;
  border: 1px solid var(--color-border);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}

.filters-drawer-close .icon {
  width: 1.05rem;
  height: 1.05rem;
}

.filters-form {
  display: grid;
  gap: 1.35rem;
}

.filters-group {
  display: grid;
  gap: 0.65rem;
}

.field-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-light);
}

.filters-sort {
  display: block;
  position: relative;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.filter-chip {
  cursor: pointer;
}

.filter-chip-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.filter-chip-label {
  display: inline-flex;
  align-items: center;
  min-height: 2.15rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.filter-chip-input:checked + .filter-chip-label {
  border-color: var(--brand);
  background: rgba(230, 25, 43, 0.08);
  color: var(--brand);
}

.filters-apply-btn {
  width: 100%;
  justify-content: center;
}

.filters-reset-btn {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}

body.filters-open {
  overflow: hidden;
}

/* ——— Product detail ——— */
.detail-hero-media {
  overflow: hidden;
  border-radius: 1.25rem;
  background: #000;
  aspect-ratio: 16 / 10;
}

.detail-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery {
  display: grid;
  gap: 0.75rem;
}

.product-gallery-main {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  background: var(--surface-2);
  aspect-ratio: 1 / 1;
  touch-action: pan-y;
  user-select: none;
}

.product-gallery-main.is-zoomable {
  cursor: zoom-in;
}

@media (min-width: 768px) {
  .product-gallery-main {
    aspect-ratio: 4 / 3;
  }
}

.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.product-gallery-main img.is-fading {
  opacity: 0.35;
}

.product-gallery-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 1.85rem;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 6px 18px rgba(10, 10, 10, 0.12);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}

.product-gallery-nav {
  display: none;
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  color: var(--ink);
  box-shadow: 0 8px 22px rgba(10, 10, 10, 0.16);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s, transform 0.2s;
}

.product-gallery-prev {
  left: 0.75rem;
}

.product-gallery-next {
  right: 0.75rem;
}

@media (hover: hover) and (pointer: fine) {
  .product-gallery-nav {
    display: inline-flex;
  }

  .product-gallery-nav:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.05);
  }
}

.product-gallery-thumbs {
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
  padding-bottom: 0.15rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.product-gallery-thumbs::-webkit-scrollbar {
  height: 4px;
}

.product-gallery-thumbs::-webkit-scrollbar-thumb {
  background: rgba(10, 10, 10, 0.18);
  border-radius: 999px;
}

.product-gallery-thumb {
  flex: 0 0 auto;
  width: 4.25rem;
  height: 4.25rem;
  padding: 0;
  overflow: hidden;
  border-radius: 0.85rem;
  border: 2px solid transparent;
  background: var(--surface-2);
  cursor: pointer;
  scroll-snap-align: start;
  transition: border-color 0.2s, box-shadow 0.2s;
}

@media (min-width: 768px) {
  .product-gallery-thumb {
    width: 5rem;
    height: 5rem;
  }
}

.product-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-gallery-thumb.is-active {
  border-color: var(--ink);
  box-shadow: 0 0 0 1px var(--ink);
}

.product-gallery-thumb:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.detail-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .detail-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: start;
  }
}

.detail-points {
  margin-top: 1.75rem;
  display: grid;
  gap: 0.85rem;
}

.detail-point {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  background: var(--surface);
}

.detail-point-dot {
  width: 0.55rem;
  height: 0.55rem;
  margin-top: 0.45rem;
  border-radius: 999px;
  background: var(--brand);
  flex-shrink: 0;
}

.detail-point p {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.55;
}

.detail-aside {
  padding: 1.5rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(10, 10, 10, 0.08);
  background: var(--white);
}

.detail-aside h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.detail-aside p {
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.9375rem;
}

.detail-aside .btn {
  margin-top: 1.25rem;
  width: 100%;
  justify-content: center;
}

.detail-crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.8125rem;
  color: var(--muted-light);
}

.detail-crumbs a {
  color: var(--muted);
  transition: color 0.2s;
}

.detail-crumbs a:hover {
  color: var(--brand);
}

/* ——— Floating contact dock ——— */
.dock-wrap {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 250;
}

.dock-wrap .dock {
  position: static;
  transform: none;
}

.dock {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border-radius: 24px;
  background: rgba(27, 36, 48, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow: 0 14px 34px -14px rgba(0, 0, 0, 0.5);
}

.dock a {
  width: 44px;
  height: 44px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.dock a svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.dock a.wa {
  background: #25d366;
}

.dock a.mail {
  background: #4a90e2;
}

.dock a.call {
  background: var(--safety);
}

@media (hover: hover) and (pointer: fine) {
  .dock a:hover {
    transform: translateY(-3px) scale(1.05);
  }
}

.dock .lang-btn {
  height: 44px;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.14);
  transition: transform 0.2s ease, background 0.2s ease;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.03em;
}

.dock .lang-btn svg {
  width: 13px;
  height: 13px;
  color: #fff;
  transition: transform 0.2s ease;
}

.dock .lang-btn[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

@media (hover: hover) and (pointer: fine) {
  .dock .lang-btn:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-3px) scale(1.05);
  }
}

.lang-menu {
  position: absolute;
  bottom: 56px;
  left: 50%;
  transform: translateX(-20%);
  min-width: 150px;
  padding: 6px;
  border-radius: 16px;
  background: rgba(27, 36, 48, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow: 0 14px 34px -14px rgba(0, 0, 0, 0.5);
  display: none;
  flex-direction: column;
  gap: 2px;
}

.lang-menu.open {
  display: flex;
}

.lang-menu a {
  display: block;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  text-align: left;
  padding: 9px 12px;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.lang-menu a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.lang-menu a.active {
  background: var(--safety);
  color: #fff;
  font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Dark theme polish */
html[data-theme="dark"] .nav-dropdown {
  background: #161618;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

html[data-theme="dark"] .mobile-menu {
  background: rgba(18, 18, 20, 0.96);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

html[data-theme="dark"] .marquee-section {
  border-color: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .contact-row {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

html[data-theme="dark"] .product-toolbar {
  background: rgba(18, 18, 20, 0.88);
}

html[data-theme="dark"] .product-search-input,
html[data-theme="dark"] .product-filter-btn,
html[data-theme="dark"] .product-sort-select {
  background: var(--control-bg);
}

html[data-theme="dark"] .product-filter-btn:hover {
  background: var(--control-bg-hover);
}

html[data-theme="dark"] .detail-aside {
  background: var(--control-bg);
  border-color: rgba(255, 255, 255, 0.1);
}

html[data-theme="dark"] .facility-slider-btn {
  background: var(--control-bg);
  border-color: rgba(255, 255, 255, 0.12);
}

html[data-theme="dark"] .facility-slider-btn:hover {
  background: var(--control-bg-hover);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--ink);
}

html[data-theme="dark"] .facility-slider-dot {
  background: rgba(255, 255, 255, 0.22);
}

html[data-theme="dark"] .facility-slider-counter {
  color: rgba(255, 255, 255, 0.62);
}

html[data-theme="dark"] .filters-drawer-panel {
  background: var(--control-bg);
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.45);
}

html[data-theme="dark"] .filters-drawer-header {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

html[data-theme="dark"] .filters-drawer-title {
  color: var(--ink);
}

html[data-theme="dark"] .filters-drawer-close {
  background: var(--control-bg-hover);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--ink);
}

html[data-theme="dark"] .product-gallery-badge {
  background: rgba(50, 50, 54, 0.92);
  color: var(--ink);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

html[data-theme="dark"] .product-gallery-nav,
html[data-theme="dark"] .product-gallery-prev,
html[data-theme="dark"] .product-gallery-next {
  background: rgba(50, 50, 54, 0.92);
  color: var(--ink);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.4);
}

html[data-theme="dark"] .product-gallery-nav:hover {
  background: var(--control-bg-hover);
}

html[data-theme="dark"] .cta-band {
  background: #050505;
}

/* ---------- Image lightbox ---------- */
html.is-lightbox-open {
  overflow: hidden;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.image-lightbox[hidden] {
  display: none !important;
}

.image-lightbox-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.65rem;
  width: min(1100px, 100%);
  max-height: calc(100vh - 2rem);
}

.image-lightbox-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  border: 0;
  padding: 0;
  margin: 0;
  background: rgba(8, 8, 10, 0.88);
  cursor: zoom-out;
}

.image-lightbox-figure {
  margin: 0;
  display: grid;
  gap: 0.65rem;
  justify-items: center;
  min-width: 0;
}

.image-lightbox-img {
  display: block;
  max-width: 100%;
  max-height: min(82vh, 900px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 0.75rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  background: #111;
}

.image-lightbox-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.55rem 0.85rem;
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
  font-size: 0.9rem;
}

.image-lightbox-counter {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  letter-spacing: 0.04em;
  opacity: 0.8;
}

.image-lightbox-caption:empty,
.image-lightbox-counter:empty {
  display: none;
}

.image-lightbox-close,
.image-lightbox-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.image-lightbox-close:hover,
.image-lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.22);
}

.image-lightbox-close:focus-visible,
.image-lightbox-nav:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.image-lightbox-close {
  position: absolute;
  top: -0.25rem;
  right: -0.25rem;
  z-index: 2;
}

.image-lightbox-nav[hidden] {
  visibility: hidden;
  pointer-events: none;
}

@media (max-width: 720px) {
  .image-lightbox-dialog {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr) auto;
    justify-items: center;
    width: 100%;
  }

  .image-lightbox-nav {
    order: 3;
  }

  .image-lightbox-prev {
    position: absolute;
    left: 0.35rem;
    top: 50%;
    transform: translateY(-50%);
  }

  .image-lightbox-next {
    position: absolute;
    right: 0.35rem;
    top: 50%;
    transform: translateY(-50%);
  }

  .image-lightbox-close {
    top: 0.35rem;
    right: 0.35rem;
  }

  .image-lightbox-img {
    max-height: min(72vh, 720px);
  }
}

/* ——— Laptop / 1366×768 ——— */
@media (min-width: 1024px) and (max-width: 1439.98px) {
  :root {
    --header-offset: 4.35rem;
    --laptop-gutter: 11.5rem;
  }

  html {
    scroll-padding-top: 5.25rem;
  }

  .container,
  .hero-inner,
  .cards-bento-shell,
  .refs-grid-shell {
    padding-inline: var(--laptop-gutter);
  }

  .section {
    padding-block: 5.5rem;
  }

  .heading {
    font-size: 2.65rem;
  }

  .lead {
    font-size: 0.95rem;
  }

  .btn {
    font-size: 0.8rem;
    padding: 0.7rem 1.25rem;
  }

  .navbar {
    padding: 0.65rem var(--laptop-gutter) 0;
  }

  .navbar-inner {
    gap: 0.4rem;
    padding: 0.5rem 1.75rem;
    border-radius: 0.85rem;
  }

  .navbar.is-scrolled .navbar-inner {
    padding-block: 0.45rem;
  }

  .logo-img {
    height: 2.15rem;
    max-width: 14.5rem;
  }

  .logo-30--nav {
    height: 1.2rem;
  }

  .nav-desktop {
    gap: 0.5rem;
  }

  .nav-link {
    font-size: 0.7rem;
  }

  .nav-item.has-dropdown > .nav-link {
    padding-right: 0.7rem;
  }

  .nav-cta {
    padding: 0.55rem 0.95rem;
    font-size: 0.72rem;
    gap: 0.2rem;
  }

  .nav-cta .icon {
    width: 13px;
    height: 13px;
  }

  .theme-toggle {
    width: 2rem;
    height: 2rem;
  }

  .hero {
    padding-block: 4.65rem 1.65rem;
  }

  .hero-inner {
    gap: 0.75rem;
  }

  .hero-slider .hero-slider-viewport {
    max-height: min(68vh, 30rem);
    border-radius: 1.1rem;
  }

  .page-hero {
    padding: 7.25rem 0 2.75rem;
  }

  .page-hero .heading {
    font-size: 2.5rem;
  }

  .kurumsal-grid,
  .digital-grid {
    gap: 2.35rem;
  }

  .stats {
    margin-top: 3.75rem;
  }

  .stat-card {
    padding: 1.25rem 1.15rem;
    border-radius: 1.15rem;
  }

  .stat-value {
    font-size: 2.45rem;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .home-gateways {
    padding-block: 4.25rem 4.75rem;
  }

  .gateway-grid {
    gap: 0.75rem;
  }

  .gateway-card {
    min-height: 0;
    padding: 1.05rem 1.1rem;
    border-radius: 0.95rem;
  }

  .gateway-card .eyebrow {
    margin-bottom: 0.4rem;
  }

  .gateway-card h3 {
    font-size: 1.12rem;
  }

  .gateway-card p {
    margin-top: 0.4rem;
    font-size: 0.8rem;
    line-height: 1.45;
  }

  .gateway-card .gateway-go {
    margin-top: 0.85rem;
    font-size: 0.72rem;
  }

  .cards-bento {
    grid-template-columns: repeat(4, 1fr);
  }

  .media-card,
  .display-grid .media-card {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .cards-bento .media-card {
    aspect-ratio: 1 / 1;
  }

  .media-card-body,
  .display-grid .media-card-body {
    min-height: 0;
    height: 100%;
    padding: 0.85rem 0.9rem;
  }

  .media-card h3 {
    font-size: 1.05rem;
  }

  .media-card p {
    font-size: 0.78rem;
    margin-top: 0.35rem;
  }

  .uretim-content .heading {
    font-size: 3.1rem;
  }

  .footer {
    padding: 2rem 0 3.25rem;
  }

  .footer-panel {
    padding: 2rem 2.5rem 1.35rem;
    border-radius: 1.35rem;
  }

  .footer-cta-logo {
    height: 5.25rem;
    max-width: 12rem;
  }

  .footer-cta .heading {
    font-size: 1.4rem;
  }

  .footer-social {
    height: 2.15rem;
    padding: 0 0.75rem 0 0.55rem;
    font-size: 0.78rem;
  }

  .contact-layout {
    gap: 2.25rem;
  }

  .cta-band {
    padding: 2.75rem 0;
  }

  .cta-band .heading {
    font-size: 2.35rem;
  }

  .detail-grid {
    gap: 2.15rem;
  }

  .marquee-text {
    font-size: 1.45rem;
  }
}

