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

:root {
  --brand-blue: #3f3d99;
  --brand-orange: #e08e2e;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --section-dark: #111;
  --footer-bg: #ddd;
  --linkedin: #0077b5;
  --max-w: 80rem;
  --nav-h: 4.5rem;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  color: var(--slate-900);
  background: #fff;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body.site-nav-open {
  overflow: hidden;
}

::selection {
  background: var(--brand-blue);
  color: #fff;
}

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

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

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: max(1rem, env(safe-area-inset-left, 0px));
  padding-right: max(1rem, env(safe-area-inset-right, 0px));
}

@media (min-width: 640px) {
  .container {
    padding-left: max(1.5rem, env(safe-area-inset-left, 0px));
    padding-right: max(1.5rem, env(safe-area-inset-right, 0px));
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: max(2rem, env(safe-area-inset-left, 0px));
    padding-right: max(2rem, env(safe-area-inset-right, 0px));
  }
}

.icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.icon-lg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Nav */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: #fff;
  transition: box-shadow 0.3s, padding 0.3s;
  padding: calc(1rem + env(safe-area-inset-top, 0px)) 0 1rem;
}

.site-nav.is-scrolled {
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  padding: calc(0.5rem + env(safe-area-inset-top, 0px)) 0 0.5rem;
}

/* Anasayfa: menü slider üzerinde, yarı saydam beyaz */
.page-home .site-nav {
  position: fixed;
  top: env(safe-area-inset-top, 0px);
  left: 0;
  right: 0;
  z-index: 90;
  width: 100%;
  background: rgb(255 255 255 / 0.32);
  box-shadow: none;
  transition: background-color 0.25s ease, box-shadow 0.25s ease, padding 0.3s ease;
}

.page-home .site-nav.is-scrolled {
  background: #fff;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.site-nav__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}

.site-nav__logo {
  flex-shrink: 0;
  min-width: 0;
}

.site-nav__logo img {
  height: 4.125rem;
  width: auto;
  max-width: min(236px, 46vw);
  object-fit: contain;
}

@media (max-width: 767px) {
  .site-nav__logo img {
    height: clamp(2.75rem, 12vw, 3.65rem);
    max-width: min(210px, 52vw);
  }
}

.site-nav__menu-cluster {
  display: none;
  align-items: center;
  gap: clamp(0.65rem, 1.5vw, 1.25rem);
  min-width: 0;
}

.site-nav__subbrand {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  line-height: 0;
}

.site-nav__subbrand--mobile {
  display: flex;
  justify-content: center;
  flex: 1 1 auto;
  min-width: 0;
}

.site-nav__subbrand-img {
  height: clamp(2.65rem, 4.2vw, 3.35rem);
  width: auto;
  max-width: min(11rem, 26vw);
  object-fit: contain;
}

@media (max-width: 767px) {
  .site-nav__subbrand--mobile .site-nav__subbrand-img {
    height: clamp(2.75rem, 12vw, 3.65rem);
    max-width: min(210px, 52vw);
  }
}

.site-nav__menu {
  display: none;
  align-items: center;
  gap: 1.25rem;
  font-weight: 700;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--slate-800);
}

@media (min-width: 768px) {
  .site-nav__subbrand--mobile {
    display: none;
  }

  .site-nav__menu-cluster {
    display: flex;
  }

  .site-nav__menu {
    display: flex;
    gap: 1.35rem;
  }
}

@media (min-width: 1024px) {
  .site-nav__menu {
    gap: 1.65rem;
  }
}

/* Kurumsal (dropdown) — masaüstü */
.site-nav__menu .site-nav__dropdown {
  position: relative;
}

.site-nav__menu .site-nav__dropdown-summary {
  list-style: none;
  cursor: pointer;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  font-weight: 700;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--slate-800);
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.site-nav__menu .site-nav__dropdown-summary::-webkit-details-marker {
  display: none;
}

.site-nav__menu .site-nav__dropdown-summary::after {
  content: "";
  width: 0.28rem;
  height: 0.28rem;
  margin-top: -0.12em;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  flex-shrink: 0;
  opacity: 0.75;
}

.site-nav__menu .site-nav__dropdown[open] > .site-nav__dropdown-summary::after {
  margin-top: 0.08em;
  transform: rotate(-135deg);
}

.site-nav__menu .site-nav__dropdown-summary:hover {
  color: var(--brand-orange);
}

.site-nav__dropdown.is-child-active > .site-nav__dropdown-summary {
  color: var(--brand-orange);
}

.site-nav__dropdown-panel {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.65rem;
  min-width: 12.5rem;
  padding: 0.35rem 0;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 16px 40px -12px rgb(0 0 0 / 0.2);
  border: 1px solid var(--slate-100);
  z-index: 60;
}

.site-nav__dropdown-panel a {
  display: block;
  padding: 0.65rem 1.1rem;
  font-weight: 700;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--slate-800);
  text-decoration: none;
}

.site-nav__dropdown-panel a:hover {
  color: var(--brand-orange);
  background: var(--slate-50);
}

.site-nav__menu .site-nav__dropdown-summary:focus-visible {
  outline: 2px solid var(--brand-orange);
  outline-offset: 3px;
  border-radius: 2px;
}

.site-nav__menu a:hover {
  color: var(--brand-orange);
}

.site-nav__menu .site-nav__lang {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--slate-800);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.site-nav__menu .site-nav__lang:hover {
  color: var(--brand-orange);
}

.site-nav__lang--toolbar {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  min-height: 2.5rem;
  margin: 0;
  padding: 0 0.35rem;
  border: 1px solid var(--slate-200);
  border-radius: 4px;
  background: var(--slate-50);
  font-weight: 800;
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  color: var(--slate-800);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

@media (max-width: 767px) {
  .site-nav__lang--toolbar {
    display: inline-flex;
  }
}

@media (min-width: 768px) {
  .site-nav__lang--toolbar {
    display: none !important;
  }
}

body.lang-modal-open {
  overflow: hidden;
}

.lang-modal[hidden] {
  display: none !important;
}

.lang-modal:not([hidden]) {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: max(0.75rem, env(safe-area-inset-bottom, 0px)) 1rem 1rem;
  box-sizing: border-box;
}

@media (min-width: 640px) {
  .lang-modal:not([hidden]) {
    align-items: center;
    padding: 1.5rem;
  }
}

.lang-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgb(15 23 42 / 0.45);
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

.lang-modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 26rem;
  max-height: min(90vh, 100dvh - 2rem);
  overflow: auto;
  margin: 0;
  padding: 1.25rem 1.35rem 1.5rem;
  background: #fff;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 640px) {
  .lang-modal__panel {
    border-radius: 12px;
  }
}

.lang-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.lang-modal__title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--slate-900);
}

.lang-modal__close {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 8px;
  background: var(--slate-100);
  color: var(--slate-700);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.lang-modal__close:hover {
  background: var(--slate-200);
  color: var(--slate-900);
}

.lang-modal__close:focus-visible {
  outline: 2px solid var(--brand-orange);
  outline-offset: 2px;
}

.lang-modal__hint {
  margin: 0 0 1.15rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--slate-600);
}

.lang-modal__widget {
  min-height: 2.75rem;
}

.lang-modal__widget .gtranslate_wrapper,
.lang-modal__widget select,
.lang-modal__widget .gt_switcher {
  font-family: inherit;
  font-size: 0.875rem;
  max-width: 100%;
}

body.gallery-lightbox-open {
  overflow: hidden;
}

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

.gallery-lightbox:not([hidden]) {
  position: fixed;
  inset: 0;
  z-index: 210;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: env(safe-area-inset-top, 0) env(safe-area-inset-right, 0)
    env(safe-area-inset-bottom, 0) env(safe-area-inset-left, 0);
  box-sizing: border-box;
}

.gallery-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgb(15 23 42 / 0.88);
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

.gallery-lightbox__close {
  position: absolute;
  top: max(0.75rem, env(safe-area-inset-top, 0px));
  right: max(0.75rem, env(safe-area-inset-right, 0px));
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 10px;
  background: rgb(255 255 255 / 0.12);
  color: #fff;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.gallery-lightbox__close:hover {
  background: rgb(255 255 255 / 0.2);
}

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

.gallery-lightbox__frame {
  position: relative;
  z-index: 1;
  max-width: min(96vw, 1280px);
  max-height: min(92vh, 92dvh);
  margin: 3rem 1rem 1rem;
  pointer-events: none;
}

.gallery-lightbox__img {
  display: block;
  max-width: 100%;
  max-height: min(88vh, 88dvh);
  width: auto;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.45);
  pointer-events: auto;
}

@media (hover: hover) and (pointer: fine) {
  .technical-service-gallery .machine-item__img {
    cursor: zoom-in;
  }
}

.technical-service-gallery .machine-item__img:focus-visible {
  outline: 2px solid var(--brand-orange);
  outline-offset: 3px;
}

.site-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .site-nav__actions {
    gap: 0.75rem;
  }
}

.site-nav__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  min-height: 2.75rem;
  padding: 0.5rem;
  margin: 0;
  margin-right: calc(-0.25rem + env(safe-area-inset-right, 0px));
  background: none;
  border: none;
  color: var(--slate-900);
  cursor: pointer;
  border-radius: 2px;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.site-nav__toggle:focus-visible {
  outline: 2px solid var(--brand-orange);
  outline-offset: 2px;
}

@media (min-width: 768px) {
  .site-nav__toggle {
    display: none;
  }
}

.site-nav__mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 0.5rem 0 calc(1rem + env(safe-area-inset-bottom, 0px));
  background: #fff;
  border-top: 1px solid var(--slate-100);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  max-height: min(70vh, calc(100dvh - 5rem));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  box-shadow: 0 16px 32px -12px rgb(0 0 0 / 0.15);
}

.site-nav__mobile.is-open {
  display: flex;
}

.site-nav__mobile a {
  display: flex;
  align-items: center;
  min-height: 3rem;
  padding: 0.65rem 0.75rem;
  border-radius: 2px;
  color: var(--slate-800);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.site-nav__mobile a:active {
  background: var(--slate-50);
}

.site-nav__mobile-group {
  border-bottom: 1px solid var(--slate-100);
}

.site-nav__mobile-summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 3rem;
  padding: 0.65rem 0.75rem;
  margin: 0;
  font: inherit;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--slate-800);
  background: var(--slate-50);
  -webkit-tap-highlight-color: transparent;
}

.site-nav__mobile-summary::-webkit-details-marker {
  display: none;
}

.site-nav__mobile-summary::after {
  content: "";
  width: 0.35rem;
  height: 0.35rem;
  margin-left: 0.5rem;
  flex-shrink: 0;
  border-right: 2px solid var(--slate-500);
  border-bottom: 2px solid var(--slate-500);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.site-nav__mobile-group[open] > .site-nav__mobile-summary::after {
  transform: rotate(-135deg);
}

.site-nav__mobile-sub {
  padding-left: 1.35rem !important;
  font-weight: 600;
  border-top: 1px solid var(--slate-100);
}

@media (min-width: 768px) {
  .site-nav__mobile {
    display: none !important;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__iframe-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.77vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero__iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 0.4);
}

.hero__content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #fff;
  padding: 2rem 1rem max(2rem, env(safe-area-inset-bottom, 0px));
  width: 100%;
  max-width: 100%;
}

.hero__title {
  font-size: clamp(3rem, 12vw, 8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  margin: 0 0 1.5rem;
  text-shadow: 0 4px 24px rgb(0 0 0 / 0.5);
}

.hero__title span {
  color: var(--brand-orange);
}

.hero__rule {
  width: 6rem;
  height: 4px;
  background: var(--brand-orange);
  margin: 0 auto 2rem;
}

.hero__tagline {
  font-size: clamp(1.125rem, 3vw, 1.875rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin: 0;
  opacity: 0.9;
}

@media (max-width: 639px) {
  .hero__tagline {
    letter-spacing: 0.12em;
    font-size: clamp(0.875rem, 3.5vw, 1.125rem);
    padding: 0 0.5rem;
  }

  .hero__title {
    font-size: clamp(2.25rem, 14vw, 4rem);
    line-height: 1.05;
  }

  .hero__rule {
    margin-bottom: 1.25rem;
  }
}

.hero__desc {
  max-width: 42rem;
  margin: 1.25rem auto 0;
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  line-height: 1.55;
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
  opacity: 0.92;
}

.hero__cta {
  margin: 1.75rem 0 0;
}

.hero__cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8125rem;
  padding: 0.85rem 1.5rem;
}

/* Hero slider (panel slide tablosu) */
.hero--slider .hero__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero--slider .hero__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}

.hero--slider .hero__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.hero--slider .hero__slide .hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero--slider .hero__slide .hero__content {
  z-index: 10;
  padding: 2rem 1rem max(2rem, env(safe-area-inset-bottom, 0px));
  width: 100%;
  max-width: 100%;
}

.hero__slide-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.hero__dots {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 0.5rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: rgb(0 0 0 / 0.35);
}

.hero__dot {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgb(255 255 255 / 0.45);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero__dot:hover,
.hero__dot:focus-visible {
  background: rgb(255 255 255 / 0.85);
  outline: none;
  transform: scale(1.15);
}

.hero__dot.is-active {
  background: var(--brand-orange);
  transform: scale(1.2);
}

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

/* Section common */
.section {
  padding: 6rem 0;
}

@media (max-width: 767px) {
  .section {
    padding: 3.25rem 0;
  }
}

.section__head {
  text-align: center;
  margin-bottom: 4rem;
}

@media (max-width: 767px) {
  .section__head {
    margin-bottom: 2.25rem;
  }

  .section__head--with-link {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .section__head--with-link .section__head__text {
    flex: none;
  }

  .section__head-link {
    text-align: center;
    padding: 0.65rem 1rem;
    border: 1px solid var(--brand-orange);
    border-radius: 2px;
    align-self: center;
    min-height: 2.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .services .section__head-link {
    border-color: rgba(255, 255, 255, 0.45);
    color: #fff;
  }

  .services .section__head-link:hover {
    border-color: var(--brand-orange);
    color: var(--brand-orange);
  }
}

.section__head h2 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 1rem;
}

.section__rule {
  width: 5rem;
  height: 4px;
  background: var(--brand-orange);
  margin: 0 auto;
}

.section__head--with-link {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
  gap: 1rem 2.5rem;
}

.section__head--with-link .section__head__text {
  text-align: center;
  flex: 1 1 16rem;
  max-width: 100%;
}

.section__head-link {
  flex-shrink: 0;
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-orange);
  text-decoration: none;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}

.section__head-link:hover {
  color: var(--brand-blue);
  border-bottom-color: var(--brand-orange);
}

.galeri-page {
  background: #fff;
}

.galeri-page__intro {
  max-width: 48rem;
  margin: 0 auto 3rem;
  line-height: 1.75;
  color: var(--slate-700);
}

.galeri-page__empty {
  text-align: center;
  color: var(--slate-600);
  max-width: 36rem;
  margin: 0 auto;
  padding: 2rem 1rem;
}

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

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

@media (min-width: 1100px) {
  .machines__grid--page {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* Vinç Sistemleri hub */
.vinc-hub-section {
  background: #fff;
  padding-top: 2rem;
}

.vinc-hub {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  align-items: start;
}

@media (min-width: 960px) {
  .vinc-hub {
    grid-template-columns: minmax(220px, 280px) 1fr;
    gap: 3rem;
  }
}

.vinc-hub__sidebar {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 2px;
  padding: 1.25rem 1.35rem;
}

@media (min-width: 960px) {
  .vinc-hub__sidebar {
    position: sticky;
    top: 1.25rem;
  }
}

.vinc-hub__sidebar-title {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--slate-500);
}

.vinc-hub__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.vinc-hub__list li {
  margin: 0;
  border-bottom: 1px solid var(--slate-200);
}

.vinc-hub__list li:last-child {
  border-bottom: 0;
}

.vinc-hub__cat {
  display: block;
  padding: 0.85rem 0.35rem;
  color: var(--slate-700);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9375rem;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  border-radius: 2px;
}

.vinc-hub__cat:hover {
  color: var(--brand-orange);
}

.vinc-hub__cat.is-active {
  color: var(--brand-blue);
  background: #fff;
  box-shadow: inset 0 0 0 2px var(--brand-orange);
}

.vinc-hub__main-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  color: var(--brand-blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.vinc-hub__main-lead {
  margin: 0 0 1rem;
  color: var(--slate-600);
  line-height: 1.65;
  max-width: 48rem;
}

.vinc-hub__main-more {
  margin: 0 0 2rem;
}

.vinc-hub__link-detail {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--brand-orange);
  text-decoration: none;
}

.vinc-hub__link-detail:hover {
  color: var(--brand-blue);
  text-decoration: underline;
}

.vinc-hub__empty {
  text-align: center;
  color: var(--slate-600);
  padding: 2rem 1rem;
}

.section-label {
  color: var(--brand-blue);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.875rem;
  display: block;
  margin-bottom: 1rem;
}

/* About */
.about {
  background: #fff;
}

.about__grid {
  display: grid;
  gap: 4rem;
  align-items: start;
}

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

  .about__grid--text-only {
    grid-template-columns: 1fr;
    max-width: 48rem;
    margin-inline: auto;
  }
}

.about__visual {
  position: relative;
}

.about__img-wrap {
  aspect-ratio: 4 / 5;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  background: var(--slate-200);
}

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

.about__badge {
  display: none;
  position: absolute;
  bottom: -2.5rem;
  right: -2.5rem;
  background: var(--brand-blue);
  color: #fff;
  padding: 2.5rem;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

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

.about__badge-num {
  font-size: 3rem;
  font-weight: 900;
  display: block;
  margin-bottom: 0.5rem;
}

.about__badge-text {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.3;
}

.about__copy h2 {
  font-size: clamp(1.65rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 2rem;
}

.about__copy > p {
  color: var(--slate-600);
  font-size: 1.125rem;
  line-height: 1.7;
  margin: 0 0 2rem;
}

.about__richtext {
  color: var(--slate-600);
  font-size: clamp(1rem, 2.8vw, 1.125rem);
  line-height: 1.7;
}

.about__richtext p {
  margin: 0 0 1.25rem;
}

.about__richtext p:last-child {
  margin-bottom: 0;
}

.about__richtext ul,
.about__richtext ol {
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
}

.about__richtext li {
  margin-bottom: 0.5rem;
}

.about__richtext h3,
.about__richtext h4 {
  color: var(--slate-800);
  margin: 1.5rem 0 0.75rem;
  font-weight: 700;
}

.about__richtext a {
  color: var(--brand-blue);
  font-weight: 600;
}

.about__richtext a:hover {
  color: var(--brand-orange);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--slate-800);
  margin-bottom: 1rem;
}

.check-list .icon {
  color: var(--brand-orange);
  width: 1.5rem;
  height: 1.5rem;
}

.about__more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand-blue);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about__more:hover {
  color: var(--brand-orange);
}

/* Services dark */
.services {
  background: var(--section-dark);
  color: #fff;
}

.services .section__head h2 {
  color: #fff;
}

.home-empty-hint {
  grid-column: 1 / -1;
  margin: 0;
  padding: 1.25rem 1rem;
  text-align: center;
  font-size: 0.9375rem;
  color: var(--slate-500);
  line-height: 1.55;
}

.services .home-empty-hint {
  color: rgb(203 213 225);
}

.home-empty-hint--wide {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.refs__list .home-empty-hint {
  flex: 1 1 100%;
  opacity: 1;
}

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

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

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

.service-card {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 2px;
  background: var(--slate-800);
  transition: transform 0.35s ease;
}

a.service-card--link {
  display: block;
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

a.service-card--link:focus-visible {
  outline: 2px solid var(--brand-orange);
  outline-offset: 4px;
}

@media (hover: hover) and (pointer: fine) {
  .service-card:hover {
    transform: translateY(-8px);
  }
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgb(0 0 0 / 0.8), transparent 55%);
  pointer-events: none;
}

.service-card__title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 1rem;
  text-align: center;
}

.service-card__title h3 {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--slate-900);
}

/* Representatives */
.reps__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

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

.rep-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rep-card__box {
  width: 100%;
  aspect-ratio: 3 / 4;
  border: 1px solid var(--slate-200);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  transition: box-shadow 0.5s;
}

.rep-card__box:hover {
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

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

.rep-card__brand h4 {
  margin: 0;
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.rep-card__sub {
  font-size: 10px;
  font-weight: 700;
  color: var(--slate-400);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rep-card__box img {
  max-height: 16rem;
  width: auto;
  object-fit: contain;
}

.rep-card__box h3 {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
}

/* References */
.refs {
  background: var(--slate-50);
}

.refs__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(1.25rem, 4vw, 3rem);
}

.refs__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.refs__text {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--slate-400);
  letter-spacing: -0.02em;
}

.refs__logo {
  display: block;
  max-height: 2.5rem;
  width: auto;
  max-width: 10rem;
  object-fit: contain;
}

.refs--page {
  padding-block: clamp(2.5rem, 6vw, 4rem);
}

.refs--page .refs__list {
  justify-content: flex-start;
}

@media (min-width: 640px) {
  .refs--page .refs__list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr));
    justify-items: center;
    gap: clamp(1.5rem, 3vw, 2.75rem);
  }
}

.refs--page .refs__logo {
  max-height: 3rem;
  max-width: 12rem;
}

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

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

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

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

.machine-item h4 {
  font-size: clamp(0.625rem, 1.15vw, 0.6875rem);
  font-weight: 900;
  text-align: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
  line-height: 1.3;
}

.machine-item__img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid var(--slate-100);
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.05);
}

.machine-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

@media (hover: hover) and (pointer: fine) {
  .machine-item:hover .machine-item__img img {
    transform: scale(1.1);
  }
}

/* Projeler (liste + detay) */
.project-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.project-card-link:hover {
  color: inherit;
}

.machine-item__excerpt {
  margin: 0.65rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--slate-600);
  text-align: center;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}

.projects__grid--page {
  grid-template-columns: 1fr;
}

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

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

.project-detail__inner {
  max-width: 48rem;
}

.project-detail__figure {
  margin: 0 0 1.5rem;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--slate-100);
  box-shadow: 0 4px 14px rgb(0 0 0 / 0.06);
}

.project-detail__figure img {
  width: 100%;
  height: auto;
  display: block;
}

.project-detail__lead {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--slate-700);
  margin: 0 0 1.5rem;
}

.project-detail__body {
  margin-bottom: 2rem;
}

.project-detail__back {
  margin: 2rem 0 0;
}

/* Anasayfa temsilcilik şeridi: üst bilgi container ile hizalı, kartlar viewport genişliğinde kayar */
.reps__home-shell {
  width: 100%;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  padding-left: max(1rem, env(safe-area-inset-left, 0px));
  padding-right: max(1rem, env(safe-area-inset-right, 0px));
}

@media (min-width: 640px) {
  .reps__home-shell {
    padding-left: max(1.5rem, env(safe-area-inset-left, 0px));
    padding-right: max(1.5rem, env(safe-area-inset-right, 0px));
  }
}

@media (min-width: 1024px) {
  .reps__home-shell {
    padding-left: max(2rem, env(safe-area-inset-left, 0px));
    padding-right: max(2rem, env(safe-area-inset-right, 0px));
  }
}

/*
 * Tablet/telefon — anasayfa temsilcilik (yatay şerit) & makine (tek sütun)
 * 1023px: 768–1023 arası dar 3 sütun yerine okunaklı düzen
 */
@media (max-width: 1023px) {
  .reps__home-shell {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }

  /* —— Anasayfa temsilcilikler: yatay şerit (container dışı tam genişlik) —— */
  #representatives .reps__grid--home {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.85rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    scroll-padding-inline: max(1rem, env(safe-area-inset-left, 0px));
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding: 0.2rem max(1rem, env(safe-area-inset-right, 0px)) 1rem
      max(1rem, env(safe-area-inset-left, 0px));
    margin: 0;
    width: 100%;
    max-width: none;
    box-sizing: border-box;
  }

  #representatives .reps__grid--home .rep-card {
    flex: 0 0 min(82vw, 320px);
    width: min(82vw, 320px);
    scroll-snap-align: start;
    align-items: stretch;
  }

  #representatives .reps__grid--home .rep-card__box {
    width: 100%;
    aspect-ratio: auto !important;
    min-height: 0;
    height: auto;
    padding: 1rem 0.85rem 1.1rem;
    margin-bottom: 0;
    justify-content: flex-start;
    gap: 0.65rem;
    border-radius: 12px;
    box-shadow: 0 8px 28px rgb(0 0 0 / 0.1);
    border: 1px solid var(--slate-200);
  }

  #representatives .reps__grid--home .rep-card__brand h4 {
    font-size: 1.125rem;
    line-height: 1.2;
  }

  #representatives .reps__grid--home .rep-card__box img {
    display: block;
    width: 100%;
    max-width: 100%;
    max-height: 220px;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
  }

  #representatives .reps__grid--home .rep-card__box h3 {
    font-size: 0.72rem;
    letter-spacing: 0.07em;
    line-height: 1.4;
    padding: 0 0.2rem;
  }

  #representatives .reps__grid--home > .home-empty-hint {
    flex: 1 1 100%;
    max-width: none;
  }

  /* —— Anasayfa makine: tek sütun, geniş kart —— */
  #machines .machines__grid--home {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1.4rem;
    width: 100%;
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
  }

  #machines .machines__grid--home .machine-item {
    min-width: 0;
    background: var(--slate-50);
    border-radius: 12px;
    padding: 0.85rem 0.85rem 1rem;
    border: 1px solid var(--slate-200);
    box-shadow: 0 6px 20px rgb(0 0 0 / 0.06);
  }

  #machines .machines__grid--home .machine-item h4 {
    font-size: 1.0625rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.02em !important;
    line-height: 1.35 !important;
    text-transform: none !important;
    margin: 0 0 0.65rem !important;
    min-height: 0 !important;
    display: block !important;
    padding: 0 !important;
    word-break: break-word;
  }

  #machines .machines__grid--home .machine-item__img {
    aspect-ratio: 16 / 10;
    border-radius: 8px;
    border: none;
    box-shadow: none;
  }
}

@media (max-width: 767px) {
  /* —— Temsilcilikler tam sayfa: tek sütun kompakt —— */
  .reps__grid--page {
    gap: 1rem;
    grid-template-columns: 1fr !important;
  }

  .reps__grid--page .rep-card__box {
    aspect-ratio: auto !important;
    padding: 1rem;
    margin-bottom: 0;
    min-height: 0;
    justify-content: flex-start;
    gap: 0.6rem;
    border-radius: 12px;
    box-shadow: 0 6px 22px rgb(0 0 0 / 0.07);
  }

  .reps__grid--page .rep-card__brand h4 {
    font-size: 1.08rem;
  }

  .reps__grid--page .rep-card__box img {
    width: 100%;
    max-height: 240px;
    object-fit: contain;
  }

  /* —— Makine galeri sayfası: 2 sütun, okunaklı —— */
  .machines__grid--page {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 1rem 0.75rem;
  }

  .machines__grid--page .machine-item h4 {
    font-size: 0.8125rem !important;
    letter-spacing: 0.04em !important;
    line-height: 1.35 !important;
    text-transform: none !important;
    min-height: 2.5em;
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }

  .machines__grid--page .machine-item__img {
    aspect-ratio: 4 / 3;
    border-radius: 8px;
  }

  .projects__grid--page.machines__grid--page {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 380px) {
  #representatives .reps__grid--home .rep-card {
    flex-basis: min(88vw, 320px);
    width: min(88vw, 320px);
  }

  .machines__grid--page {
    gap: 0.85rem 0.6rem;
  }
}

/* CTA band */
.cta-band {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

@media (max-width: 767px) {
  .cta-band {
    padding: 3.5rem 0;
  }

  .cta-band__text h2 {
    font-size: clamp(1.35rem, 6vw, 1.85rem);
  }

  .cta-band__text p {
    font-size: 1rem;
    line-height: 1.55;
  }

  .cta-band__actions {
    width: 100%;
    max-width: 22rem;
    margin-inline: auto;
  }

  .cta-band__actions .btn {
    width: 100%;
    min-height: 3rem;
    padding: 1rem 1.25rem;
    font-size: 0.9375rem;
  }
}

.cta-band__bg {
  position: absolute;
  inset: 0;
  background: var(--brand-blue);
}

.cta-band__accent {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 33%;
  height: 100%;
  background: var(--slate-900);
  transform: skewX(-20deg) translateX(25%);
}

@media (min-width: 1024px) {
  .cta-band__accent {
    display: block;
  }
}

.cta-band .container {
  position: relative;
  z-index: 10;
}

.cta-band__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .cta-band__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.cta-band__text {
  color: #fff;
  max-width: 42rem;
}

.cta-band__text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin: 0 0 1.5rem;
}

.cta-band__text p {
  font-size: 1.25rem;
  color: rgb(219 234 254);
  margin: 0;
  opacity: 0.9;
}

.cta-band__actions {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  font-weight: 700;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.btn--white {
  background: #fff;
  color: var(--brand-blue);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

.btn--white:hover {
  background: var(--slate-900);
  color: #fff;
}

.btn--dark {
  background: var(--slate-900);
  color: #fff;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

.btn--dark:hover {
  background: #fff;
  color: var(--slate-900);
}

/* Contact */
.contact__layout {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

@media (min-width: 768px) {
  .contact__layout {
    gap: 3rem;
  }
}

.contact__offices {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .contact__offices {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
  }
}

.contact__office {
  background: var(--slate-50);
  border-radius: 2px;
  padding: 1.5rem 1.25rem;
}

@media (min-width: 768px) {
  .contact__office {
    padding: 2rem 1.75rem;
  }
}

.contact__office-title {
  margin: 0 0 1.25rem;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-900);
}

.contact__map {
  margin-top: 1.25rem;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  max-height: 280px;
  border-radius: 2px;
  overflow: hidden;
  background: var(--slate-200);
}

.contact__map-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact__email-grid {
  display: grid;
  gap: 1.5rem;
  margin: 0;
}

@media (min-width: 768px) {
  .contact__email-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
  }
}

.contact__email-card {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 1.5rem 1.25rem;
  background: var(--slate-50);
  border-radius: 2px;
}

@media (min-width: 768px) {
  .contact__email-card {
    padding: 2rem 1.75rem;
  }
}

.contact__email-card-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact__email-card-icon {
  margin: 0;
}

.contact__email-card-title {
  margin: 0;
  flex: 1;
  min-width: 0;
}

.contact__email-card-addr {
  margin: 0;
  padding: 0;
  color: var(--slate-600);
  font-size: 0.9375rem;
  line-height: 1.5;
  word-break: break-word;
}

.contact__email-card-addr a {
  font-weight: 600;
}

.contact__intro h2 {
  font-size: clamp(1.5rem, 6vw, 2.25rem);
  font-weight: 800;
  margin: 0 0 1.25rem;
  line-height: 1.2;
}

.contact__intro > p {
  color: var(--slate-600);
  margin: 0;
  line-height: 1.7;
}

.contact__items {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.contact__item {
  display: flex;
  gap: 1.25rem;
}

.contact__item-icon {
  background: #fff;
  padding: 1rem;
  border-radius: 2px;
  color: var(--brand-blue);
  flex-shrink: 0;
}

.contact__office .contact__item-icon {
  background: #fff;
}

.contact__item h4 {
  margin: 0 0 0.25rem;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.contact__item p {
  margin: 0;
  color: var(--slate-600);
}

.contact__form-wrap {
  background: var(--slate-50);
  padding: 1.5rem;
  border-radius: 2px;
}

@media (min-width: 768px) {
  .contact__form-wrap {
    padding: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .contact__form-wrap {
    padding: 3rem 4rem;
  }
}

@media (max-width: 767px) {
  .contact .form-grid {
    gap: 1.35rem;
  }
}

.technical-service-intro {
  padding-top: 0;
}

.technical-service-form__inner {
  display: grid;
  gap: 2.25rem;
}

@media (min-width: 1024px) {
  .technical-service-form__inner {
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
  }
}

.technical-service-form__intro h2 {
  font-size: clamp(1.35rem, 5vw, 2rem);
  font-weight: 800;
  margin: 0 0 1rem;
  line-height: 1.2;
}

.technical-service-form__intro > p {
  margin: 0;
  color: var(--slate-600);
  line-height: 1.65;
}

.form-grid {
  display: grid;
  gap: 2rem;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-field label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate-500);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1px solid var(--slate-200);
  border-radius: 2px;
  font-family: inherit;
  font-size: 1rem;
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
}

@media (max-width: 767px) {
  .form-field input,
  .form-field select,
  .form-field textarea {
    font-size: 16px;
  }
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--brand-blue);
}

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

.form-submit {
  grid-column: 1 / -1;
}

.form-submit .btn {
  width: 100%;
  background: var(--brand-blue);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.form-submit .btn:hover {
  background: var(--slate-900);
}

/* Footer */
.site-footer {
  background: var(--footer-bg);
  color: var(--slate-800);
  padding: 5rem 0 2.5rem;
  padding-bottom: max(2.5rem, env(safe-area-inset-bottom, 0px));
}

@media (max-width: 767px) {
  .site-footer {
    padding: 3rem 0 1.75rem;
    padding-bottom: max(1.75rem, calc(1rem + env(safe-area-inset-bottom, 0px)));
  }

  .site-footer__grid {
    gap: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .site-footer__meta {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .site-footer__legal {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1.5rem;
  }
}

.site-footer__grid {
  display: grid;
  gap: 4rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.site-footer__logo img {
  height: 4.5rem;
  width: auto;
  object-fit: contain;
}

.site-footer__about p {
  color: var(--slate-600);
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 28rem;
}

.site-footer__social {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.site-footer__social a {
  width: 2.5rem;
  height: 2.5rem;
  background: #fff;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.05);
}

.site-footer__social a:hover {
  background: var(--brand-blue);
  color: #fff;
}

.site-footer__contact h4 {
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-left: 4px solid var(--brand-orange);
  padding-left: 1rem;
  margin: 0 0 2rem;
}

.site-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer__list li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: var(--slate-700);
}

.site-footer__list .icon-lg {
  color: var(--brand-orange);
}

.site-footer__list .label {
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.75rem;
  display: block;
  margin-bottom: 0.25rem;
}

.site-footer__bottom {
  padding-top: 2.5rem;
  border-top: 1px solid var(--slate-300);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate-500);
}

.site-footer__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

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

  .site-footer__meta {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    width: auto;
  }
}

.site-footer__bottom a:hover {
  color: var(--brand-blue);
}

.site-footer__legal {
  display: flex;
  gap: 2rem;
}

/* Floating social */
.float-social {
  position: fixed;
  left: max(0.75rem, env(safe-area-inset-left, 0px));
  bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  pointer-events: none;
}

.float-social a {
  pointer-events: auto;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.15);
  transition: transform 0.2s, box-shadow 0.2s;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

@media (hover: hover) and (pointer: fine) {
  .float-social a:hover {
    transform: scale(1.08) translateX(4px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.2);
  }
}

@media (max-width: 767px) {
  .float-social {
    left: auto;
    right: max(0.65rem, env(safe-area-inset-right, 0px));
    bottom: max(0.85rem, env(safe-area-inset-bottom, 0px));
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    max-width: calc(100vw - 1.5rem);
    gap: 0.5rem;
  }

  .float-social a {
    width: 2.75rem;
    height: 2.75rem;
  }

  .float-social .icon-lg {
    width: 1.35rem;
    height: 1.35rem;
  }
}

.float-social .fb {
  background: var(--brand-blue);
}

.float-social .wa {
  background: #25d366;
}

.float-social .ig {
  background: linear-gradient(
    to top right,
    #f09433,
    #dc2743,
    #bc1888
  );
}

.float-social .li {
  background: var(--linkedin);
}

.site-nav__menu a.is-active,
.site-nav__dropdown-panel a.is-active {
  color: var(--brand-orange);
}

.contact-flash {
  padding: 1rem 1.25rem;
  border-radius: 4px;
  margin-bottom: 2rem;
  font-weight: 600;
}

.contact-flash--ok {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.contact-flash--err {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.form-field .req {
  color: var(--brand-orange);
}

.ik-page__section-title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--brand-blue);
}

.ik-page__empty,
.ik-page__hint {
  margin: 0;
  color: var(--slate-600);
  line-height: 1.6;
  max-width: 40rem;
}

.ik-page--form {
  background: var(--slate-50);
  border-top: 1px solid var(--slate-200);
}

.ik-page__positions {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

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

.ik-card {
  margin: 0;
  padding: 1.35rem 1.5rem;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 4px;
  box-shadow: 0 8px 24px -12px rgb(0 0 0 / 0.12);
}

.ik-card__title {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--slate-900);
}

.ik-card__meta {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--brand-orange);
}

.ik-card__body {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--slate-600);
}

.ik-card__body p:last-child {
  margin-bottom: 0;
}

.ik-form__file-hint {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.8125rem;
  color: var(--slate-500);
}

.talep {
  background: var(--slate-100);
  border-top: 1px solid var(--slate-200);
}

.talep__inner {
  max-width: 40rem;
  margin: 0 auto;
}

.talep__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  color: var(--brand-blue);
}

.talep__lead {
  margin: 0 0 2rem;
  color: var(--slate-600);
  line-height: 1.6;
}

.talep__form-wrap {
  background: #fff;
  padding: 1.75rem;
  border-radius: 2px;
  border: 1px solid var(--slate-200);
  box-shadow: 0 10px 30px -12px rgb(0 0 0 / 0.12);
}

@media (min-width: 768px) {
  .talep__form-wrap {
    padding: 2rem 2.25rem;
  }
}

.page-hero {
  padding: 3rem 0 2rem;
  background: var(--slate-100);
  border-bottom: 1px solid var(--slate-200);
}

.page-hero--sm {
  padding: 2.5rem 0 1.5rem;
}

@media (max-width: 767px) {
  .page-hero {
    padding: 2rem 0 1.5rem;
  }

  .page-hero--sm {
    padding: 1.5rem 0 1.25rem;
  }
}

.page-hero__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  color: var(--brand-blue);
}

.page-hero__lead {
  margin: 0;
  color: var(--slate-600);
  max-width: 36rem;
}

.site-breadcrumb {
  font-size: 0.8125rem;
  color: var(--slate-500);
  margin-bottom: 1rem;
  line-height: 1.45;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.site-breadcrumb a {
  color: var(--brand-blue);
  text-decoration: none;
}

.site-breadcrumb a:hover {
  text-decoration: underline;
}

.site-breadcrumb__sep {
  margin: 0 0.35rem;
  color: var(--slate-400);
}

.site-breadcrumb__current {
  color: var(--slate-700);
}

.section__head--left {
  text-align: left;
  margin-bottom: 2rem;
}

.section__head--left .section__rule {
  margin: 0;
}

.category-body {
  background: #fff;
}

.category-body__cover {
  margin: 0 0 2.5rem;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 20px 40px -12px rgb(0 0 0 / 0.18);
}

.category-body__cover img {
  width: 100%;
  height: auto;
  display: block;
}

.category-body__intro {
  max-width: 48rem;
  margin-bottom: 2.5rem;
  color: var(--slate-700);
  line-height: 1.7;
}

.category-body__empty {
  color: var(--slate-600);
  margin: 0;
}

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

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

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

.product-card {
  display: block;
  color: inherit;
  text-decoration: none;
  border: 1px solid var(--slate-200);
  border-radius: 2px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

@media (hover: hover) and (pointer: fine) {
  .product-card:hover {
    box-shadow: 0 20px 40px -15px rgb(0 0 0 / 0.15);
    transform: translateY(-4px);
  }
}

.product-card:focus-visible {
  outline: 2px solid var(--brand-orange);
  outline-offset: 4px;
}

.product-card__media {
  aspect-ratio: 4 / 3;
  background: var(--slate-100);
  overflow: hidden;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cert-card__pdf-preview {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  pointer-events: none;
  background: var(--slate-100);
}

.product-card__body {
  padding: 1rem 1.25rem;
}

.product-card__title {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate-900);
}

.product-detail {
  background: #fff;
}

.product-detail__grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .product-detail__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.product-detail__figure {
  margin: 0;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 20px 40px -12px rgb(0 0 0 / 0.2);
}

.product-detail__figure img {
  width: 100%;
  height: auto;
  display: block;
}

.product-detail__content.rte {
  line-height: 1.75;
  color: var(--slate-700);
}

.product-detail__content.rte p:first-child {
  margin-top: 0;
}

.product-detail__back {
  margin-top: 2rem;
}

.cert-page {
  padding-bottom: 3rem;
}

.cert-card__file {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--slate-100);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--brand-blue);
}

.cert-card__file--pdf {
  color: #b42318;
}

.cert-card__file--doc {
  color: #1d4ed8;
}

.cert-card__action {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--brand-orange);
  letter-spacing: 0.04em;
  text-transform: none;
}
