:root {
  --bg: #f5f8ff;
  --text: #0f172a;
  --muted: #475569;
  --primary: #3b5bff;
  --primary-2: #7c3aed;
  --card: #ffffff;
  --border: #dbe4ff;
  --btn-link: #4a46b8;
  --btn-border-gradient: linear-gradient(
    90deg,
    #4a46b8 0%,
    #5a4cc5 60%,
    #e67a2f 85%,
    #f08a3c 100%
  );
  --btn-fill-gradient: linear-gradient(
    90deg,
    #4f4abf 0%,
    #1f2556 65%,
    #e56a1f 100%
  );
}

* {
  box-sizing: border-box;
}

html {
  scrollbar-gutter: stable;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

#one-cikan-urunler {
  scroll-margin-top: 5.5rem;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f8faff 0%, #eef3ff 100%);
  overflow-x: hidden;
  overflow-x: clip;
}

img:not(.hero-product),
svg,
video {
  max-width: 100%;
}

.container {
  width: min(1460px, 98%);
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid transparent;
  box-shadow: 0 0 0 rgba(15, 31, 77, 0);
  transition: background 0.35s ease, border-color 0.35s ease,
    box-shadow 0.35s ease;
}

header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: var(--border);
  box-shadow: 0 10px 30px -12px rgba(15, 31, 77, 0.18);
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 84px;
  gap: 1.2rem;
}

header #site-nav {
  justify-self: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  background: transparent;
  border-radius: 0;
  padding: 0;
  line-height: 0;
}

.brand img {
  display: block;
  height: 52px;
  width: auto;
}

nav > ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav li {
  position: relative;
}

.has-dropdown::after {
  content: "";
  position: absolute;
  left: -8px;
  right: -8px;
  top: 100%;
  height: 28px;
}

nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 0.94rem;
  padding: 0.42rem 0.62rem 0.72rem;
  border-radius: 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

nav > ul > li > a.active,
nav > ul > li > a:hover {
  background: transparent;
  border-bottom-color: #4f6dff;
}

.has-dropdown .dropdown {
  position: absolute;
  top: calc(100% + 26px);
  left: 0;
  background: #ffffff;
  border: 1px solid #dfe7ff;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.14);
  display: none;
  z-index: 30;
  list-style: none;
  margin: 0;
  padding: 0;
}

.has-dropdown .dropdown-mega {
  flex-direction: row;
  align-items: stretch;
  min-width: min(820px, calc(100vw - 2rem));
  max-width: calc(100vw - 2rem);
  padding: 1rem 0.4rem;
  gap: 0;
  left: 50%;
  transform: translateX(-50%);
}

.has-dropdown:hover .dropdown-mega {
  display: flex;
}

.has-dropdown .dropdown-column {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 220px;
  padding: 0.2rem 0.75rem;
  border-right: 1px solid rgba(109, 89, 255, 0.2);
  border-bottom: none;
}

.has-dropdown .dropdown-column:last-child {
  border-right: none;
}

.dropdown-heading {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #94a3b8;
  margin: 0 0 0.75rem 0.55rem;
  white-space: normal;
  overflow-wrap: anywhere;
}

.dropdown-items {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.dropdown-items li {
  width: 100%;
}

.has-dropdown .dropdown-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border: 0;
  border-radius: 8px;
  padding: 0.45rem 0.5rem;
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.35;
  white-space: normal;
}

.has-dropdown .dropdown-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #4f6dff;
}

.has-dropdown .dropdown-link span {
  flex: 1;
  min-width: 0;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.has-dropdown .dropdown-link:hover {
  background: #eef3ff;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid #e2e8f4;
  border-radius: 10px;
  background: #ffffff;
  cursor: pointer;
  margin-left: auto;
  z-index: 12;
  flex-shrink: 0;
}

.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: #0f1f4d;
  border-radius: 2px;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
  margin: 0 auto;
}

header.nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

header.nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

header.nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.tools {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  flex-shrink: 0;
}

/* ??? Responsive navbar ??? */
@media (max-width: 1200px) and (min-width: 1025px) {
  .nav {
    gap: 0.75rem;
    min-height: 72px;
  }

  .brand img {
    height: 46px;
  }

  nav > ul {
    gap: 0.55rem;
  }

  nav a {
    font-size: 0.86rem;
    padding: 0.35rem 0.45rem 0.6rem;
  }

  .tools .btn-gradient {
    padding: 0.55rem 1.1rem;
    font-size: 0.86rem;
  }

  .has-dropdown .dropdown-mega {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Mobil men? ?rt?s? yaln?zca a??ld???nda g?r?n?r; masa?st?nde ak??a girmemeli */
.nav-overlay {
  display: none;
}

@media (max-width: 1024px) {
  body.nav-open {
    overflow: hidden;
  }

  .nav {
    display: flex;
    flex-wrap: nowrap;
    padding: 0.65rem 0;
    gap: 0.75rem;
    min-height: 64px;
  }

  .nav-toggle {
    display: flex;
  }

  .brand img {
    height: 42px;
  }

  header .tools {
    display: none;
  }

  header.nav-open .tools {
    display: flex;
    position: fixed;
    left: 1.1rem;
    right: 1.1rem;
    bottom: max(1.25rem, env(safe-area-inset-bottom));
    z-index: 130;
    justify-content: flex-start;
    align-items: center;
    gap: 0.75rem;
    padding: 0;
  }

  header.nav-open .tools .btn-gradient {
    flex: 1;
    width: auto;
    max-width: none;
    justify-content: center;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    border: 0;
    padding: 0;
    margin: 0;
    background: rgba(15, 23, 42, 0.45);
    z-index: 110;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .nav-overlay.is-visible {
    display: block;
    animation: nav-overlay-in 0.28s ease;
  }

  @keyframes nav-overlay-in {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

  #site-nav {
    position: fixed !important;
    top: 64px;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0;
    box-sizing: border-box;
    background: #ffffff;
    padding: 0.5rem 1.1rem calc(5.75rem + env(safe-area-inset-bottom));
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    transform: translate3d(100%, 0, 0);
    transition: transform 0.28s ease, visibility 0.28s ease;
    z-index: 120;
    border-top: 1px solid var(--border);
    box-shadow: -8px 0 32px rgba(15, 23, 42, 0.08);
    visibility: hidden;
    pointer-events: none;
  }

  body.nav-open #site-nav {
    transform: translate3d(0, 0, 0);
    visibility: visible;
    pointer-events: auto;
  }

  #site-nav > ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }

  #site-nav > ul > li {
    border-bottom: 1px solid #eef2f8;
  }

  #site-nav > ul > li > a {
    display: block;
    padding: 0.9rem 0.25rem;
    font-size: 1rem;
    border-bottom: none;
    white-space: normal;
  }

  #site-nav > ul > li > a.active {
    color: var(--primary);
  }

  #site-nav .has-dropdown {
    border-bottom: none;
  }

  #site-nav .has-dropdown::after {
    display: none;
  }

  #site-nav .has-dropdown > a {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #94a3b8;
    padding: 1rem 0.25rem 0.45rem;
    pointer-events: none;
  }

  #site-nav .has-dropdown > a::after {
    display: none;
  }

  #site-nav .has-dropdown:hover .dropdown-mega,
  #site-nav .has-dropdown .dropdown-mega {
    display: flex;
    flex-direction: column;
  }

  #site-nav .has-dropdown .dropdown-mega {
    position: static;
    min-width: 0;
    max-width: none;
    width: 100%;
    left: auto;
    right: auto;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0 0 0.75rem;
    background: transparent;
    margin: 0;
  }

  #site-nav .has-dropdown .dropdown-column {
    min-width: 0;
    border-right: none;
    border-bottom: none;
    padding: 0 0 0.85rem;
    margin: 0;
  }

  #site-nav .has-dropdown .dropdown-column:last-child {
    padding-bottom: 0.25rem;
  }

  #site-nav .has-dropdown .dropdown-heading {
    margin: 0 0 0.35rem;
    padding: 0 0.25rem;
    font-size: 0.68rem;
  }

  #site-nav .has-dropdown .dropdown-link {
    display: block;
    padding: 0.72rem 0.25rem 0.72rem 0.65rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    border-bottom: 1px solid #f1f5f9;
    border-radius: 0;
    white-space: normal;
  }

  #site-nav .has-dropdown .dropdown-link:hover {
    background: #f8faff;
    border-bottom-color: #f1f5f9;
  }

  #site-nav .has-dropdown .dropdown-items li:last-child .dropdown-link {
    border-bottom: none;
  }
}

@media (max-width: 480px) {
  #site-nav {
    padding-inline: 0.85rem;
  }

  #site-nav > ul > li > a {
    font-size: 0.95rem;
    padding: 0.82rem 0.2rem;
  }

  header.nav-open .tools {
    left: 0.85rem;
    right: 0.85rem;
  }
}

button {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font-weight: 600;
}

.btn-primary {
  color: #ffffff;
  background: var(--btn-fill-gradient);
  padding: 0.62rem 1.35rem;
  font-size: 0.9rem;
  box-shadow: 0 4px 16px rgba(74, 70, 184, 0.28);
}

.btn-gradient {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  background: var(--btn-fill-gradient);
  padding: 0.68rem 1.65rem;
  font-size: 0.92rem;
  font-weight: 600;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(74, 70, 184, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-gradient::after {
  content: "\2192";
  font-size: 1.1rem;
  line-height: 1;
  font-weight: 400;
}

.btn-gradient:hover {
  transform: translateY(-1px);
  box-shadow:
    0 6px 20px rgba(74, 70, 184, 0.32),
    0 8px 26px rgba(230, 122, 47, 0.26);
}

.btn-pill-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.62rem 1.3rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border: 1.5px solid transparent;
  background-clip: padding-box, border-box;
  background-origin: border-box;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-pill-outline::after {
  content: "\2192";
  font-size: 1.05rem;
  line-height: 1;
  font-weight: 400;
}

.btn-pill-outline:hover {
  transform: translateY(-1px);
  box-shadow:
    0 0 16px rgba(74, 70, 184, 0.22),
    0 0 22px rgba(240, 138, 60, 0.2);
}

.btn-link {
  text-decoration: none;
  color: var(--btn-link);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
}

.btn-link::after {
  content: "\2192";
  font-size: 0.95rem;
  line-height: 1;
}

.btn-secondary {
  color: var(--text);
  background: #e9eefc;
}

.lang-dropdown {
  position: relative;
  z-index: 120;
}

.lang-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: auto;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.45rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #334155;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.lang-dropdown-toggle:hover,
.lang-dropdown.is-open .lang-dropdown-toggle {
  color: #0f172a;
  background: rgba(148, 163, 184, 0.14);
}

.lang-globe-icon {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
}

.lang-toggle-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.08);
}

.lang-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  line-height: 0;
  background: #f1f5f9;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.08);
}

.lang-flag-svg,
.lang-toggle-flag .lang-flag-svg {
  display: block;
  width: 100%;
  height: 100%;
}

.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.55rem);
  right: 0;
  min-width: 230px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: #ffffff;
  border-radius: 6px;
  box-shadow: 0 10px 36px rgba(15, 23, 42, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.lang-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  right: 14px;
  width: 12px;
  height: 12px;
  background: #ffffff;
  transform: rotate(45deg);
  box-shadow: -2px -2px 4px rgba(15, 23, 42, 0.04);
}

.lang-dropdown:hover .lang-dropdown-menu,
.lang-dropdown.is-open .lang-dropdown-menu,
.lang-dropdown:focus-within .lang-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.lang-dropdown-option {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  padding: 0.9rem 1.15rem;
  border: 0;
  border-bottom: 1px solid #edf1f7;
  background: #ffffff;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s ease;
}

.lang-dropdown-menu li:last-child .lang-dropdown-option {
  border-bottom: 0;
}

.lang-dropdown-option:hover,
.lang-dropdown-option.is-active {
  background: #f8fafc;
}

.lang-dropdown-label {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #0f2d5c;
  line-height: 1.2;
}

html[dir="rtl"] body.is-rtl .lang-dropdown-menu {
  right: auto;
  left: 0;
}

html[dir="rtl"] body.is-rtl .lang-dropdown-menu::before {
  right: auto;
  left: 14px;
}

html[dir="rtl"] body.is-rtl .lang-dropdown-option {
  text-align: right;
  flex-direction: row-reverse;
}

header .tools {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

/* RTL layout adjustments */
html[dir="rtl"] body.is-rtl .nav .container,
html[dir="rtl"] body.is-rtl header .tools {
  direction: rtl;
}

html[dir="rtl"] body.is-rtl .breadcrumb span[aria-hidden="true"],
html[dir="rtl"] body.is-rtl .btn-link::after,
html[dir="rtl"] body.is-rtl .process-flow-arrow {
  transform: scaleX(-1);
}

html[dir="rtl"] body.is-rtl .dropdown {
  text-align: right;
}

html[dir="rtl"] body.is-rtl .ac-how-steps,
html[dir="rtl"] body.is-rtl .process-flow {
  direction: rtl;
}

@media (max-width: 1024px) {
  header .tools {
    gap: 0.5rem;
  }

  .lang-dropdown-toggle {
    width: 2.25rem;
    height: 2.25rem;
  }

  .lang-dropdown-menu {
    position: fixed;
    top: calc(64px + 0.45rem);
    bottom: auto;
    left: max(1.1rem, env(safe-area-inset-left));
    right: auto;
    min-width: min(230px, calc(100vw - 2.2rem));
    max-width: calc(100vw - 2.2rem);
    transform: translateY(-6px);
  }

  .lang-dropdown-menu::before {
    right: auto;
    left: 14px;
  }

  header.nav-open .lang-dropdown-menu {
    top: auto;
    bottom: calc(max(1.25rem, env(safe-area-inset-bottom)) + 3.25rem);
    transform: translateY(6px);
  }

  header.nav-open .lang-dropdown-menu::before {
    top: auto;
    bottom: -6px;
    box-shadow: 2px 2px 4px rgba(15, 23, 42, 0.04);
  }

  header.nav-open .lang-dropdown.is-open .lang-dropdown-menu,
  header.nav-open .lang-dropdown:focus-within .lang-dropdown-menu {
    transform: translateY(0);
  }
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 680px;
  padding: 3.5rem 3rem;
  margin-top: 1.25rem;
  margin-bottom: 2.5rem;
  width: min(1600px, calc(100vw - 2.5rem));
  margin-left: calc((100% - min(1600px, calc(100vw - 2.5rem))) / 2);
  border-radius: 0;
  background-image: url("assets/hero-lobby.png");
  background-size: cover;
  background-position: right center;
  overflow: visible;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  padding: 0;
  transform: translateY(-40px);
}

.hero-content .btn-gradient {
  margin-top: 1.4rem;
}

/* ============================================================
   Premium hero product showcase
   Static background (lobby). Three transparent product PNGs
   cross-fade only. Hold 4s, transition 0.8s, ease-in-out, seamless loop.
   ============================================================ */
.hero-stage {
  position: absolute;
  top: 1.5rem;
  right: 10%;
  bottom: 2.5rem;
  width: min(54%, 720px);
  z-index: 1;
  pointer-events: none;
}

.hero-stage-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Static grounding shadow ? identical throughout the animation */
.hero-stage-shadow {
  position: absolute;
  left: 50%;
  bottom: 2%;
  width: 62%;
  height: 34px;
  transform: translateX(-50%);
  background: radial-gradient(
    ellipse at center,
    rgba(15, 23, 42, 0.28) 0%,
    rgba(15, 23, 42, 0.14) 45%,
    rgba(15, 23, 42, 0) 72%
  );
  filter: blur(2px);
  z-index: 0;
}

.hero-product {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 108%;
  object-fit: contain;
  object-position: center bottom;
  opacity: 0;
  backface-visibility: hidden;
  animation: heroProductCycle 19.2s ease-in-out infinite both;
}

/* Visible order: S?ramatik ? DC ?arj ? Kargo dolab? ? Vending (each 4.8s) */
.hero-product--1 {
  /* S?ramatik */
  animation-delay: 0s;
  inset: auto;
  width: 110%;
  height: 114%;
  right: -5%;
  bottom: -7%;
  object-position: right bottom;
}
.hero-product--2 {
  /* DC ?arj */
  animation-delay: -14.4s;
  inset: auto;
  width: 90%;
  height: 110%;
  right: -1%;
  bottom: -4%;
  object-position: right bottom;
}
.hero-product--3 {
  /* Kargo dolab? */
  animation-delay: -9.6s;
  inset: auto;
  width: 150%;
  height: 150%;
  left: -22%;
  right: auto;
  bottom: -8%;
  object-position: right bottom;
}
.hero-product--4 {
  /* Vending machine */
  animation-delay: -4.8s;
  inset: auto;
  right: -5%;
  left: auto;
  bottom: -10%;
  width: 106%;
  height: 117%;
  object-position: right bottom;
}

@keyframes heroProductCycle {
  /* Visible for 4s */
  0% {
    opacity: 1;
  }

  20.833% {
    opacity: 1;
  }

  /* Fade out during 0.8s */
  25% {
    opacity: 0;
  }

  /* Hidden */
  95.833% {
    opacity: 0;
  }

  /* Fade in during last 0.8s */
  100% {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-product {
    animation: none;
    opacity: 0;
  }
  .hero-product--1 { opacity: 1; }
}

.hero-branding {
  margin-bottom: 1.25rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  background:
    linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)) padding-box,
    linear-gradient(90deg, #7dd3fc 0%, #fdba74 100%) border-box;
  color: #0f1f4d;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

.hero-badge-icon {
  width: 16px;
  height: 16px;
  color: #0f1f4d;
  flex-shrink: 0;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 0 0 1rem;
  font-weight: 800;
  text-shadow: 0 2px 8px rgba(255, 255, 255, 0.45);
}

.gradient-text {
  background: linear-gradient(90deg, #7c3aed 0%, #3b82f6 45%, #06b6d4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: none;
}

.hero-last-line {
  display: inline-block;
  margin-top: 0.5rem;
}

.hero p {
  color: var(--muted);
  line-height: 1.7;
  text-shadow: 0 2px 8px rgba(255, 255, 255, 0.4);
}

.section {
  padding: 2.8rem 0;
}

.brands-strip {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  width: min(1500px, 98%);
  padding: 0;
  z-index: 2;
}

.brands-marquee {
  width: 100%;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(
      90deg,
      #7c3aed 0%,
      #6366f1 18%,
      #38bdf8 42%,
      #22d3ee 55%,
      #fbbf24 82%,
      #fb923c 100%
    ) border-box;
  border: 1.5px solid transparent;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
}

.brands-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 1.15rem;
  padding: 0.75rem 1rem;
  width: 100%;
}

.brand-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 1;
  min-width: 0;
  width: 118px;
  height: 44px;
}

.brand-pill img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.82;
}

.brand-pill--bta {
  width: 138px;
  height: 52px;
}

.brand-pill--atp {
  width: 98px;
  height: 36px;
}

.section h2 {
  margin-top: 0;
}

.solution-areas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.solution-areas-header h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  letter-spacing: 0.01em;
}

.solution-areas-link {
  font-size: 0.92rem;
  white-space: nowrap;
}

.section-solution-areas {
  margin-inline: 0;
  padding-inline: 0;
}

.solution-areas-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
  align-items: stretch;
}

.solution-area-card {
  display: flex;
  align-items: stretch;
  min-height: 300px;
  border: 1px solid #e8ecfb;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.solution-area-body {
  flex: 1;
  min-width: 0;
  padding: 1.5rem 1.15rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.solution-area-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
}

.solution-area-icon svg {
  width: 20px;
  height: 20px;
  color: #ffffff;
}

.solution-area-icon-purple {
  background: #7c3aed;
}

.solution-area-icon-teal {
  background: #06b6d4;
}

.solution-area-icon-orange {
  background: #f97316;
}

.solution-area-body h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  line-height: 1.25;
  color: #0f1f4d;
}

.solution-area-body p {
  margin: 0 0 1rem;
  color: #5b6478;
  font-size: 0.86rem;
  line-height: 1.55;
  flex: 1;
}

.solution-area-cta {
  font-size: 0.86rem;
}

.solution-area-image {
  flex: 0 0 42%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0.5rem 0.5rem 0 0;
  background: linear-gradient(135deg, #f8faff 0%, #eef3ff 100%);
}

.solution-area-image img {
  width: 100%;
  max-height: 260px;
  object-fit: contain;
  object-position: bottom center;
  display: block;
}

.solution-area-card--cover {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 300px;
  height: 100%;
  padding: 0;
  border: 1px solid #e8ecfb;
  background: #ffffff;
}

.solution-area-card--cover .solution-area-cover {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  display: block;
  pointer-events: none;
}

.solution-area-card--cover .solution-area-body {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
  max-width: 58%;
  min-height: 300px;
  padding: 1.5rem;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.97) 0%,
    rgba(255, 255, 255, 0.9) 55%,
    rgba(255, 255, 255, 0.4) 85%,
    transparent 100%
  );
}

.solution-area-card.solution-area-card--overlay {
  display: flex;
  min-height: 0;
  height: 100%;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.solution-area-card--overlay .solution-area-card-link {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 1619 / 971;
  line-height: 0;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.solution-area-card--overlay .solution-area-card-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1);
}

.solution-area-card--overlay .solution-area-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  display: block;
}

.solution-area-overlay {
  position: absolute;
  inset: 0;
  width: 54%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 4.5rem 0.75rem 1.1rem 1.1rem;
  line-height: normal;
  pointer-events: none;
}

.solution-area-overlay h3 {
  margin: 0 0 0.45rem;
  font-size: clamp(0.95rem, 1.4vw, 1.12rem);
  line-height: 1.3;
  color: #0f1f4d;
  max-width: 11em;
}

.solution-area-overlay p {
  margin: 0 0 0.75rem;
  color: #5b6478;
  font-size: clamp(0.72rem, 1vw, 0.84rem);
  line-height: 1.5;
  flex: 1;
}

.solution-area-overlay .solution-area-cta {
  font-size: clamp(0.72rem, 1vw, 0.84rem);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1rem;
}

.section-engineering {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.engineering-placeholder {
  width: 100%;
  min-height: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #02091c;
  background: #02091c;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.18);
  padding: 1.25rem 1.75rem;
  display: grid;
  grid-template-columns: minmax(0, 360px) 1fr;
  grid-template-areas: "copy visual";
  align-items: center;
  gap: 1.2rem;
}

.engineering-copy {
  grid-area: copy;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  gap: 1.25rem;
  height: 100%;
  padding: 0.5rem 0;
}

.engineering-content {
  max-width: 360px;
  color: #f2f6ff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.engineering-content h3 {
  margin: 0 0 0.9rem;
  font-size: clamp(1.2rem, 1.85vw, 1.65rem);
  line-height: 1.2;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.engineering-content p {
  margin: 0;
  color: rgba(236, 242, 255, 0.9);
  font-size: 0.88rem;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.engineering-btn {
  margin-top: 0;
  padding: 0.62rem 1.25rem;
  font-size: 0.9rem;
  color: #ffffff;
  background-image: linear-gradient(#000d23, #000d23), var(--btn-border-gradient);
}

.engineering-btn::after {
  font-size: 1.05rem;
}

.engineering-visual {
  grid-area: visual;
  min-width: 0;
  overflow: hidden;
}

.engineering-disciplines-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.engineering-disciplines-wrap {
  width: 100%;
  min-width: 0;
}

.engineering-disciplines-original {
  display: none;
}

html[lang="tr"] .engineering-disciplines-i18n {
  display: none;
}

html[lang="tr"] .engineering-disciplines-original {
  display: block;
}

.engineering-disciplines {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
  align-items: stretch;
  width: 100%;
  min-width: 0;
}

.engineering-discipline-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  height: 100%;
  border: 1px solid rgba(84, 130, 255, 0.28);
  border-radius: 12px;
  background: rgba(6, 16, 38, 0.75);
  overflow: hidden;
  isolation: isolate;
}

.engineering-discipline-header {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  padding: 0.55rem 0.55rem 0.3rem;
  flex-shrink: 0;
}

.engineering-discipline-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  margin-top: 0.05rem;
  border-radius: 8px;
  border: 1px solid rgba(123, 168, 255, 0.35);
  background: rgba(79, 109, 255, 0.12);
  color: #8ec5ff;
  box-shadow: 0 0 12px rgba(79, 109, 255, 0.2);
}

.engineering-discipline-icon svg {
  width: 18px;
  height: 18px;
}

.engineering-discipline-label {
  margin: 0;
  min-width: 0;
  flex: 1 1 auto;
  color: #b8cffd;
  font-size: clamp(0.58rem, 0.8vw, 0.76rem);
  font-weight: 600;
  line-height: 1.25;
  min-height: 2.5em;
  text-align: start;
  overflow-wrap: anywhere;
  word-break: break-word;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}

.engineering-discipline-art {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0 0.2rem 0.35rem;
  line-height: 0;
  aspect-ratio: 5 / 4;
}

.engineering-discipline-art img {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 8px;
}

.engineering-discipline-icon--chip {
  color: #c4a0ff;
  border-color: rgba(180, 140, 255, 0.45);
  background: rgba(120, 80, 255, 0.15);
}

.engineering-discipline-icon--gear {
  color: #8ec5ff;
  border-color: rgba(123, 168, 255, 0.45);
  background: rgba(79, 109, 255, 0.12);
}

.engineering-discipline-icon--code {
  color: #7ee8d8;
  border-color: rgba(100, 220, 200, 0.4);
  background: rgba(40, 180, 160, 0.12);
}

.engineering-discipline-icon--robot {
  color: #ffb86b;
  border-color: rgba(255, 184, 107, 0.45);
  background: rgba(255, 140, 60, 0.12);
}

.about-intro-visual .engineering-disciplines,
.engineering-visual .engineering-disciplines {
  width: 100%;
}

.engineering-disciplines--banner .engineering-discipline-label {
  font-size: clamp(0.56rem, 0.72vw, 0.7rem);
}

.engineering-disciplines--banner .engineering-discipline-art {
  aspect-ratio: 1.15 / 1;
}

.engineering-disciplines--banner .engineering-discipline-art img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  margin: 0;
  object-fit: contain;
  object-position: center bottom;
}

.engineering-disciplines--banner .engineering-discipline-card:last-child .engineering-discipline-art img {
  clip-path: inset(0 7% 0 0);
  object-position: left bottom;
}

.featured-section {
  padding-top: 2.2rem;
  padding-bottom: 2.2rem;
}

.featured-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.featured-header h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  letter-spacing: 0.01em;
  color: #0f1f4d;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  align-items: stretch;
}

.featured-card {
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid #ffffff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
  background: #f3f5fa;
  height: 100%;
}

.featured-card-link {
  display: block;
  position: relative;
  line-height: 0;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.featured-card-link img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1619 / 971;
  object-fit: cover;
  object-position: right center;
}

.featured-card-overlay {
  position: absolute;
  inset: 0;
  width: 54%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 1.9rem 1rem 1.35rem 1.25rem;
  line-height: normal;
}

.featured-card-overlay h3 {
  margin: 0 0 0.5rem;
  min-height: 2.8rem;
  font-size: 1.12rem;
  line-height: 1.25;
  color: #0f1f4d;
}

.featured-card-overlay p {
  flex: 1 1 auto;
  min-height: 6.25rem;
  margin: 0 0 0.75rem;
  color: #6b7280;
  font-size: 0.88rem;
  line-height: 1.5;
}

.featured-link {
  margin-top: auto;
  flex-shrink: 0;
  font-size: 0.86rem;
}

.section-process h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  letter-spacing: 0.01em;
  color: #0f1f4d;
}

.process-flow-wrap {
  overflow-x: auto;
  padding: 1.5rem 1.25rem;
  padding-bottom: 1.65rem;
  border: 2px solid #ffffff;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.07);
  scrollbar-width: thin;
}

.process-flow {
  display: flex;
  align-items: flex-start;
  gap: 0.35rem;
  min-width: min(100%, 1180px);
}

.process-flow-step {
  flex: 1;
  min-width: 150px;
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}

.process-flow-icon {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background:
    linear-gradient(#f4f6fc, #f4f6fc) padding-box,
    linear-gradient(
      90deg,
      #7c3aed 0%,
      #6366f1 18%,
      #38bdf8 42%,
      #22d3ee 55%,
      #fbbf24 82%,
      #fb923c 100%
    ) border-box;
  border: 1.5px solid transparent;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.07);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.process-flow-icon svg {
  width: 24px;
  height: 24px;
  color: #4f5875;
  fill: none;
  stroke: currentColor;
}

.process-flow-num {
  display: block;
  margin-bottom: 0.15rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.process-flow-content h4 {
  margin: 0 0 0.35rem;
  font-size: 0.92rem;
  line-height: 1.25;
  color: #0f1f4d;
}

.process-flow-content p {
  margin: 0;
  color: #6b7280;
  font-size: 0.76rem;
  line-height: 1.5;
}

.process-flow > .process-flow-step:nth-child(1) .process-flow-num-a,
.process-flow > .process-flow-step:nth-child(1) .process-flow-num-b {
  color: #4b4b7c;
}

.process-flow > .process-flow-step:nth-child(3) .process-flow-num-a {
  color: #9bb5b9;
}

.process-flow > .process-flow-step:nth-child(3) .process-flow-num-b {
  color: #303443;
}

.process-flow > .process-flow-step:nth-child(5) .process-flow-num-a {
  color: #8fc4c8;
}

.process-flow > .process-flow-step:nth-child(5) .process-flow-num-b {
  color: #4a8588;
}

.process-flow > .process-flow-step:nth-child(7) .process-flow-num-a {
  color: #9a7a7a;
}

.process-flow > .process-flow-step:nth-child(7) .process-flow-num-b {
  color: #6b3d3d;
}

.process-flow > .process-flow-step:nth-child(9) .process-flow-num-a {
  color: #e8b08a;
}

.process-flow > .process-flow-step:nth-child(9) .process-flow-num-b {
  color: #c97840;
}

.process-flow > .process-flow-step:nth-child(11) .process-flow-num-a {
  color: #8fbf9f;
}

.process-flow > .process-flow-step:nth-child(11) .process-flow-num-b {
  color: #4a7c59;
}

.process-flow-arrow {
  flex: 0 0 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 1.1rem;
  color: #c9d2e6;
}

.process-flow-arrow svg {
  width: 36px;
  height: 12px;
}

.process-content-card {
  border: 1px solid #e8ecfb;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  padding: 1.1rem;
}

.facility-content-card {
  margin-top: 2rem;
}

.facility-layout {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.facility-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 0 0 36%;
  max-width: 440px;
}

.facility-content h3 {
  margin: 0 0 0.9rem;
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  line-height: 1.25;
}

.facility-content p {
  margin: 0 0 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

.facility-btn {
  color: #0f1f4d;
  background-image: linear-gradient(#ffffff, #ffffff), var(--btn-border-gradient);
  width: fit-content;
  max-width: 100%;
  margin-top: 0.3rem;
}

.facility-gallery {
  flex: 1;
  display: flex;
  gap: 0.75rem;
  min-width: 0;
}

.facility-gallery--workspace {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.facility-gallery--workspace .facility-card {
  height: 280px;
}

.facility-card {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  height: 330px;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 0.6rem 1.1rem;
}

.facility-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.facility-card:hover img {
  transform: scale(1.08);
}

.facility-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 15, 35, 0.78) 0%, rgba(8, 15, 35, 0.15) 55%, transparent 100%);
}

.facility-card span {
  position: relative;
  z-index: 1;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.86rem;
  text-align: center;
  line-height: 1.35;
}

.stats-banner {
  margin-top: 1.1rem;
  border: 1px solid rgba(84, 130, 255, 0.2);
  border-radius: 16px;
  background:
    radial-gradient(circle at 15% 20%, rgba(58, 103, 255, 0.08), transparent 40%),
    linear-gradient(130deg, #010612 0%, #030a1f 45%, #00040c 100%);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.18);
  padding: 2.5rem 1.25rem;
  overflow: visible;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  min-height: 96px;
}

.stat-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.6rem 1.4rem;
}

.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0.75rem;
  bottom: 0.75rem;
  width: 1px;
  background: rgba(90, 196, 214, 0.55);
  box-shadow: 0 0 6px rgba(90, 196, 214, 0.25);
}

.stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon svg {
  width: 22px;
  height: 22px;
  fill: #ffffff;
}

.stat-icon-purple {
  background: #7c3aed;
}

.stat-icon-blue {
  background: #4f46e5;
}

.stat-icon-teal {
  background: #06b6d4;
}

.stat-icon-orange {
  background: #f97316;
}

.stat-text strong {
  display: block;
  color: #ffffff;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.15;
}

.stat-text span {
  display: block;
  margin-top: 0.2rem;
  color: rgba(236, 242, 255, 0.78);
  font-size: 0.84rem;
}

.projects-content-card {
  margin-top: 1.1rem;
  padding: 1.5rem 1.4rem 1.65rem;
}

.projects-layout {
  display: flex;
  align-items: flex-start;
  gap: 2.25rem;
}

.projects-intro {
  flex: 0 0 22%;
  max-width: 280px;
}

.projects-intro h3 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.4rem, 2.2vw, 2.1rem);
  line-height: 1.25;
}

.projects-intro p {
  margin: 0;
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.65;
}

.projects-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  min-width: 0;
}

.project-card {
  display: flex;
  gap: 0.9rem;
  border: 1px solid #e8ecfb;
  border-radius: 14px;
  background: #ffffff;
  padding: 1rem;
  min-width: 0;
  min-height: 290px;
}

.project-card-image {
  flex: 0 0 38%;
  align-self: stretch;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  max-height: none;
  min-height: 240px;
}

.project-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.project-card-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.project-logo {
  height: 22px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  margin-bottom: 0.55rem;
}

.project-logo-text {
  display: inline-block;
  margin-bottom: 0.6rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: #d62828;
  letter-spacing: 0.2px;
}

.project-card-body h4 {
  margin: 0 0 0.5rem;
  font-size: 1.02rem;
  line-height: 1.35;
  color: #0f1f4d;
}

.project-card-body p {
  margin: 0 0 0.75rem;
  color: #64748b;
  font-size: 0.86rem;
  line-height: 1.55;
  flex: 1;
}

.project-link {
  font-size: 0.82rem;
}

.promo-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.promo-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.promo-content--reverse .promo-image-wrap {
  order: 2;
}

.promo-content--reverse .promo-text {
  order: 1;
}

.promo-image-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e7ecff;
  background: #ffffff;
}

.promo-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  display: block;
}

.edge-label {
  position: absolute;
  z-index: 2;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 0.32rem 0.72rem;
  backdrop-filter: blur(4px);
}

.edge-top {
  top: 14px;
  left: 14px;
}

.edge-left {
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
}

.edge-bottom {
  left: 14px;
  bottom: 14px;
}

.promo-text {
  background: #f8f6ff;
  border: 1px solid #ece8ff;
  border-radius: 20px;
  padding: 1.4rem;
}

.promo-badge {
  display: inline-block;
  border: 1px solid #a99cff;
  color: #6d59ff;
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  font-weight: 700;
  font-size: 0.82rem;
}

.promo-text h3 {
  margin: 0.9rem 0 0.8rem;
  font-size: clamp(1.45rem, 2.8vw, 2.5rem);
  line-height: 1.15;
}

.promo-text p {
  margin: 0;
  color: #5b6478;
  line-height: 1.7;
}

.promo-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.promo-list li {
  position: relative;
  padding-left: 1.15rem;
  color: #4b5568;
  font-size: 0.92rem;
  line-height: 1.5;
}

.promo-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6d59ff;
  transform: translateY(-50%);
}

.promo-stats {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.promo-stats strong {
  display: block;
  font-size: 2.2rem;
  line-height: 1;
}

.promo-stats span {
  color: #5b6478;
}

.promo-btn {
  margin-top: 1.2rem;
  text-decoration: none;
  display: inline-flex;
}

.site-footer {
  margin-top: 3rem;
  background-color: #0a0b10;
  background-image:
    radial-gradient(ellipse 55% 90% at 0% 45%, rgba(20, 140, 115, 0.2), transparent 72%),
    radial-gradient(ellipse 55% 90% at 100% 45%, rgba(110, 55, 175, 0.22), transparent 72%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: #f5f5f7;
  overflow: hidden;
}

.footer-cta {
  position: relative;
  isolation: isolate;
  min-height: clamp(300px, 34vw, 400px);
  background: #02091c;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.footer-cta-visual {
  position: absolute;
  inset: 0 auto 0 0;
  width: min(68vw, 960px);
  line-height: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
}

.footer-cta-visual img {
  width: auto;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain;
  object-position: left center;
  image-rendering: auto;
}

.footer-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: clamp(300px, 34vw, 400px);
  padding: 3rem 0 3rem clamp(38%, 42vw, 46%);
}

.footer-cta-content {
  max-width: 36rem;
  text-align: left;
}

.footer-cta-content h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.45rem, 2.4vw, 2.05rem);
  font-weight: 800;
  line-height: 1.22;
  color: #ffffff;
}

.footer-cta-content p {
  margin: 0 0 1.35rem;
  max-width: 38rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.65;
}

.footer-cta-content .btn-gradient {
  text-decoration: none;
}

.footer-cta--kargo {
  background: #01061a;
}

.footer-cta--kargo .footer-cta-visual {
  inset: 0 0 0 auto;
  width: min(52%, 820px);
}

.footer-cta--kargo .footer-cta-visual img {
  object-fit: cover;
  object-position: right center;
}

.footer-cta--kargo .footer-cta-inner {
  padding: 3rem 0;
  justify-content: flex-start;
}

.footer-cta--kargo .footer-cta-content {
  max-width: min(46%, 34rem);
}

.footer-cta--kargo .footer-cta-content h2 {
  margin-bottom: 1.1rem;
  font-size: clamp(1.6rem, 2.9vw, 2.6rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.footer-cta--kargo .footer-cta-content p {
  margin-bottom: 1.6rem;
  font-size: clamp(0.9rem, 1.05vw, 1.05rem);
}

.footer-cta-accent {
  color: var(--kargo-red, #e11d2e);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 2rem;
  padding: 3rem 0 2.2rem;
}

.footer-brand a {
  display: inline-block;
  line-height: 0;
}

.footer-brand img {
  height: 46px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-brand p {
  margin: 0;
  max-width: 280px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
  line-height: 1.65;
}

.footer-links h4,
.footer-contact h4 {
  margin: 0 0 1rem;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
}

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 0.88rem;
  line-height: 2;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-contact p {
  margin: 0 0 0.55rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  line-height: 1.55;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.1rem 0 1.35rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.82rem;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.site-footer .footer-inner,
.site-footer .footer-bottom {
  display: none;
}

.page-header {
  padding: 2rem 0 1rem;
}

.page-header p {
  color: var(--muted);
}

form {
  display: grid;
  gap: 0.8rem;
}

input,
textarea {
  border: 1px solid #cfd8f4;
  border-radius: 10px;
  padding: 0.7rem 0.8rem;
  font: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.3rem;
  align-items: start;
}

.contact-info-panel {
  background: #ffffff;
  border: 1px solid #e9eefc;
  border-radius: 18px;
  padding: 1.3rem;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
}

.contact-info-panel h1 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.4rem, 2.3vw, 2.1rem);
}

.contact-info-panel > p {
  margin: 0 0 1.2rem;
  line-height: 1.7;
  color: #475569;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.contact-info-item {
  border: 1px solid #ecf1ff;
  border-radius: 12px;
  padding: 0.75rem;
  background: #fcfdff;
}

.contact-info-item h4 {
  margin: 0 0 0.25rem;
  font-size: 0.95rem;
}

.contact-info-item p {
  margin: 0;
  color: #52607a;
  line-height: 1.5;
  font-size: 0.9rem;
}

.contact-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.contact-form-success {
  margin: 0 0 1rem;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-form-panel {
  position: relative;
  background: #f1f8f7;
  border: 1px solid #d8ebe8;
  border-radius: 18px;
  padding: 1rem;
}

.contact-form-panel form {
  display: grid;
  gap: 0.75rem;
}

.contact-form-panel .btn-primary {
  justify-self: start;
  margin-top: 0.25rem;
}

.contact-form-panel h3 {
  margin: 0 0 0.8rem;
  font-size: 1.1rem;
}

.contact-map-area {
  margin-top: 1.5rem;
  padding: 2rem 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(65, 111, 255, 0.18), transparent 45%),
    linear-gradient(150deg, #020b29 0%, #0a224f 45%, #05102d 100%);
}

.contact-map-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(156, 184, 255, 0.28);
}

.contact-map-card iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  display: block;
}

.about-hero {
  margin-bottom: 2.5rem;
  padding: 4.5rem 0;
  background:
    radial-gradient(circle at 80% 25%, rgba(6, 182, 212, 0.35), transparent 45%),
    linear-gradient(120deg, #1f2556 0%, #3b5bff 50%, #06b6d4 100%);
  border-radius: 0 0 24px 24px;
  color: #ffffff;
}

.about-hero-inner {
  max-width: 720px;
}

.about-hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.9rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
}

.about-hero-subtitle {
  margin: 0;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.65;
}

.about-section {
  padding-top: 0;
  padding-bottom: 2.4rem;
}

.about-label {
  display: inline-block;
  margin-bottom: 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7c3aed;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
  padding: 1.5rem;
  border: 1px solid #e8ecfb;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.about-intro-grid:not(:has(.about-intro-visual)) {
  grid-template-columns: 1fr;
}

.about-intro-content p {
  margin: 0 0 1rem;
  color: #5b6478;
  line-height: 1.75;
  font-size: 0.95rem;
}

.about-intro-content p:last-child {
  margin-bottom: 0;
}

.about-intro-visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

.about-vm-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.about-vm-card {
  padding: 1.6rem;
  border-radius: 18px;
  border: 1px solid #e8ecfb;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

.about-vm-card--vision {
  background: linear-gradient(160deg, #ffffff 0%, #f5f8ff 100%);
}

.about-vm-card--mission {
  background: linear-gradient(160deg, #ffffff 0%, #f8f6ff 100%);
}

.about-vm-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 1rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #4f6dff, #7c3aed);
  color: #ffffff;
}

.about-vm-icon svg {
  width: 22px;
  height: 22px;
}

.about-vm-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
  color: #0f1f4d;
}

.about-vm-card p {
  margin: 0;
  color: #5b6478;
  line-height: 1.7;
  font-size: 0.94rem;
}

.about-block-header h2 {
  margin: 0 0 1.2rem;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  color: #0f1f4d;
}

.about-partnership-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 2rem;
  align-items: stretch;
  padding: 2rem 2.25rem;
  border: 1px solid rgba(84, 130, 255, 0.22);
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 0%, rgba(79, 109, 255, 0.07), transparent 58%),
    #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.about-partnership-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.1rem;
}

.about-partnership-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem 1rem;
  align-items: start;
  padding: 1rem 1.1rem;
  border: 1px solid #e8ecfb;
  border-radius: 14px;
  background: linear-gradient(180deg, #fafbff 0%, #ffffff 100%);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}

.about-partnership-item::before {
  content: "";
  width: 4px;
  border-radius: 999px;
  grid-column: 1;
  grid-row: 1 / -1;
  align-self: stretch;
}

.about-partnership-item--oyak::before {
  background: #e74c3c;
}

.about-partnership-item--isbank::before {
  background: #1a3a6b;
}

.about-partnership-item--trakya::before {
  background: #4a90d9;
}

.about-partnership-item--efes::before {
  background: #f5a623;
}

.about-partnership-value {
  grid-column: 2;
  grid-row: 1;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
  color: #0f1f4d;
  letter-spacing: -0.02em;
}

.about-partnership-name {
  grid-column: 2;
  grid-row: 2;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #5b6478;
  font-weight: 500;
}

.about-partnership-chart {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  min-height: 100%;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: linear-gradient(180deg, #fafbff 0%, #ffffff 100%);
  box-shadow:
    0 4px 14px rgba(59, 91, 255, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.9);
}

.about-partnership-chart img {
  width: auto;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain;
  border-radius: 12px;
}

.about-capabilities-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 2rem;
  align-items: center;
  padding: 2rem 2.25rem;
  border: 1px solid rgba(84, 130, 255, 0.22);
  border-radius: 20px;
  background:
    radial-gradient(circle at 12% 18%, rgba(143, 195, 31, 0.05), transparent 42%),
    radial-gradient(circle at 88% 22%, rgba(47, 128, 237, 0.06), transparent 40%),
    #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.about-capabilities-copy {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  justify-content: center;
}

.about-capability-item h3 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.about-capability-item h3 span {
  font-weight: 800;
}

.about-capability-item p {
  margin: 0;
  max-width: 52ch;
  color: #5b6478;
  font-size: 0.94rem;
  line-height: 1.7;
}

.about-capability-item--muhendislik h3 {
  color: #8fc31f;
}

.about-capability-item--dizayn h3 {
  color: #2f80ed;
}

.about-capability-item--uretim h3 {
  color: #1fb5ad;
}

.about-capabilities-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 360px;
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: linear-gradient(180deg, #fafbff 0%, #ffffff 100%);
  box-shadow:
    0 4px 14px rgba(59, 91, 255, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.9);
}

.about-capabilities-visual img {
  width: min(100%, 420px);
  height: auto;
  display: block;
  object-fit: contain;
}

.about-detail-card {
  display: grid;
  gap: 1.4rem;
  padding: 1.8rem;
  border-radius: 20px;
  border: 1px solid rgba(84, 130, 255, 0.2);
  background:
    radial-gradient(circle at 0% 0%, rgba(79, 109, 255, 0.08), transparent 42%),
    #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.about-detail-content h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  color: #0f1f4d;
}

.about-detail-content p {
  margin: 0 0 1rem;
  color: #5b6478;
  line-height: 1.75;
  font-size: 0.94rem;
}

.about-detail-content p:last-child {
  margin-bottom: 0;
}

.about-capability-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.about-capability-pills span {
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  border: 1px solid #dfe7ff;
  background: #f5f8ff;
  color: #4a46b8;
  font-size: 0.84rem;
  font-weight: 600;
}

.about-pillar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  align-items: stretch;
}

.about-pillar-card {
  padding: 1.6rem;
  border-radius: 18px;
  border: 1px solid #e8ecfb;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

.about-pillar-card h3 {
  margin: 0 0 0.9rem;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  color: #0f1f4d;
}

.about-pillar-card p {
  margin: 0 0 1rem;
  color: #5b6478;
  line-height: 1.75;
  font-size: 0.94rem;
}

.about-pillar-card p:last-child {
  margin-bottom: 0;
}

.about-production-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(84, 130, 255, 0.2);
  background: #000d23;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
}

.about-production-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.75rem 1.8rem;
  color: #f2f6ff;
}

.about-production-content h3 {
  margin: 0 0 1rem;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  line-height: 1.25;
}

.about-production-content p {
  margin: 0 0 1rem;
  color: rgba(236, 242, 255, 0.9);
  line-height: 1.7;
  font-size: 0.92rem;
}

.about-production-content .about-label {
  color: #9bb5ff;
}

.about-cta {
  margin-top: 0.5rem;
  width: fit-content;
  max-width: 100%;
  align-self: flex-start;
  color: #ffffff;
  background-image: linear-gradient(#000d23, #000d23), var(--btn-border-gradient);
}

.about-production-visual {
  height: clamp(300px, 32vw, 380px);
  overflow: hidden;
}

.about-production-visual img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.about-stats {
  padding-bottom: 1rem;
}

.about-stats .stats-banner {
  margin-top: 0;
}

.arge-hero {
  margin-bottom: 2.5rem;
  padding: 4.5rem 0;
  background:
    radial-gradient(circle at 80% 25%, rgba(6, 182, 212, 0.35), transparent 45%),
    linear-gradient(120deg, #1f2556 0%, #3b5bff 50%, #06b6d4 100%);
  border-radius: 0 0 24px 24px;
  color: #ffffff;
}

.arge-hero-inner {
  max-width: 720px;
}

.arge-hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.9rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.arge-hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
}

.arge-hero-subtitle {
  margin: 0;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.65;
}

.arge-label {
  color: #06b6d4;
}

.arge-section-title-link {
  color: inherit;
  text-decoration: none;
}

.arge-section-title-link:hover {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.about-intro-content h2,
.arge-section-header h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  color: #0f1f4d;
  max-width: 40rem;
}

.arge-section-header {
  margin-bottom: 1.25rem;
}

.arge-section-header p {
  margin: 0;
  color: #5b6478;
  line-height: 1.65;
  font-size: 0.94rem;
  max-width: 46rem;
}

.arge-discipline-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.arge-discipline-card {
  padding: 1.4rem;
  border-radius: 16px;
  border: 1px solid #e8ecfb;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
}

.arge-discipline-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 0.9rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.arge-discipline-icon svg {
  width: 22px;
  height: 22px;
}

.arge-discipline-icon--purple {
  background: #7c3aed;
}

.arge-discipline-icon--blue {
  background: #4f46e5;
}

.arge-discipline-icon--teal {
  background: #06b6d4;
}

.arge-discipline-icon--orange {
  background: #f97316;
}

.arge-discipline-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.02rem;
  color: #0f1f4d;
}

.arge-discipline-card p {
  margin: 0;
  color: #5b6478;
  font-size: 0.86rem;
  line-height: 1.6;
}

.arge-focus-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.arge-focus-card {
  padding: 1.4rem 1.5rem;
  border-radius: 16px;
  border: 1px solid #e8ecfb;
  background: linear-gradient(160deg, #ffffff 0%, #f5f8ff 100%);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
}

.arge-focus-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: #0f1f4d;
}

.arge-focus-card p {
  margin: 0 0 0.85rem;
  color: #5b6478;
  font-size: 0.88rem;
  line-height: 1.6;
}

.arge-focus-card .btn-link {
  font-size: 0.84rem;
}

.arge-cta-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(84, 130, 255, 0.2);
  background: #000d23;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
}

.arge-cta-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.75rem 1.8rem;
  color: #f2f6ff;
}

.arge-cta-content h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  line-height: 1.25;
  color: #ffffff;
}

.arge-cta-content p {
  margin: 0 0 1.25rem;
  color: rgba(236, 242, 255, 0.9);
  line-height: 1.7;
  font-size: 0.92rem;
}

.arge-cta-content .arge-label {
  color: #67e8f9;
}

.arge-cta-btn::after {
  content: none;
}

.arge-cta-visual {
  height: clamp(300px, 32vw, 380px);
  overflow: hidden;
}

.arge-cta-visual img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center center;
  display: block;
}

@media (max-width: 1200px) {
  .section-solution-areas {
    margin-inline: 0;
    padding-inline: 0;
  }

  .solution-areas-grid,
  .featured-grid {
    grid-template-columns: 1fr;
  }

  .projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1024px) {
  .hero {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    min-height: 0;
    padding: 0 1.25rem 1.6rem;
    margin-bottom: 2rem;
    border-radius: 0;
    background: #f5f8ff;
    background-image: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    isolation: isolate;
  }

  .hero::before {
    content: "";
    position: relative;
    inset: auto;
    display: block;
    order: -1;
    width: calc(100% + 2.5rem);
    margin: 0 -1.25rem 1.4rem;
    aspect-ratio: 16 / 10;
    pointer-events: none;
    background-color: #eef3ff;
    background-image: url("assets/hero-home.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 88% center;
  }

  .hero-stage {
    display: none;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    order: 0;
    max-width: 36rem;
    transform: none;
  }

  .hero h1 {
    font-size: clamp(1.85rem, 4.5vw, 2.4rem);
    line-height: 1.15;
    text-shadow: none;
  }

  .hero p {
    text-shadow: none;
  }

  .brands-strip {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    width: 100%;
    margin-top: 1.5rem;
    z-index: 2;
    order: 1;
  }

  .brands-marquee {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .brands-marquee::-webkit-scrollbar {
    display: none;
  }

  .brands-track {
    flex-wrap: nowrap;
    justify-content: flex-start;
    width: max-content;
    min-width: 100%;
  }

  .brand-pill {
    flex-shrink: 0;
  }
}

@media (max-width: 1024px) {
  body {
    overflow-x: hidden;
  }

  .container {
    width: min(1460px, 94%);
  }

  .hero {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    min-height: 0;
    padding: 0 1.15rem 1.5rem;
    margin-bottom: 2rem;
    border-radius: 0;
    background: #f5f8ff;
    background-image: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    isolation: isolate;
  }

  .hero::before {
    content: "";
    position: relative;
    inset: auto;
    display: block;
    order: -1;
    width: calc(100% + 2.3rem);
    margin: 0 -1.15rem 1.35rem;
    aspect-ratio: 16 / 10;
    pointer-events: none;
    background-color: #eef3ff;
    background-image: url("assets/hero-home.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 88% center;
  }

  .hero-stage {
    display: none;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    order: 0;
    max-width: 100%;
    transform: none;
  }

  .hero h1 {
    font-size: clamp(1.7rem, 4.8vw, 2.2rem);
    line-height: 1.15;
    text-shadow: none;
  }

  .hero p {
    font-size: 0.94rem;
    text-shadow: none;
  }

  .hero .btn-gradient {
    width: 100%;
    justify-content: center;
  }

  .brands-strip {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    width: 100%;
    margin-top: 1.5rem;
    z-index: 2;
    order: 1;
  }

  .brands-marquee {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .brands-marquee::-webkit-scrollbar {
    display: none;
  }

  .brands-track {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 0.85rem 1.1rem;
    padding: 0.7rem 0.95rem;
    width: max-content;
    min-width: 100%;
  }

  .brand-pill {
    width: 96px;
    height: 36px;
    flex-shrink: 0;
  }

  .brand-pill--bta {
    width: 112px;
    height: 42px;
  }

  .brand-pill--atp {
    width: 82px;
    height: 30px;
  }

  .section-solution-areas {
    padding-top: 0.5rem;
  }

  .hero-badge {
    font-size: 0.62rem;
    padding: 0.38rem 0.75rem;
  }

  .hero-badge-icon {
    width: 14px;
    height: 14px;
  }

  .section {
    padding: 2rem 0;
  }

  .page-header {
    padding: 1.5rem 0 0.75rem;
  }

  .page-header h1 {
    font-size: clamp(1.5rem, 5vw, 1.85rem);
  }

  .featured-header {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.65rem;
  }

  .solution-areas-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .solution-areas-link {
    white-space: normal;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .project-card {
    flex-direction: column;
    min-height: 0;
    gap: 0.85rem;
  }

  .project-card-image {
    flex: none;
    width: 100%;
    aspect-ratio: 16 / 10;
    min-height: 0;
    max-height: 200px;
  }

  .solution-area-card {
    min-height: 0;
  }

  .solution-area-card--overlay .solution-area-card-link {
    display: flex;
    flex-direction: column;
    aspect-ratio: auto;
    height: auto;
    line-height: normal;
  }

  .solution-area-card--overlay .solution-area-cover {
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
  }

  .solution-area-card--overlay .solution-area-overlay {
    position: static;
    width: 100%;
    padding: 1rem 1rem 1.15rem;
    pointer-events: auto;
  }

  .solution-area-overlay h3 {
    font-size: 1.05rem;
    max-width: none;
  }

  .solution-area-overlay p {
    font-size: 0.88rem;
  }

  .solution-area-image {
    flex: none;
    width: 100%;
  }

  .featured-card-link {
    display: flex;
    flex-direction: column;
  }

  .featured-card-overlay {
    position: static;
    width: 100%;
    padding: 1.15rem 1rem 1.1rem;
    min-height: 0;
  }

  .featured-card-overlay h3 {
    font-size: 1.05rem;
    min-height: 0;
  }

  .featured-card-overlay p {
    min-height: 0;
    font-size: 0.88rem;
  }

  .featured-card-link img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: contain;
    object-position: center bottom;
    padding: 0.75rem 1rem 0.5rem;
    background: #f3f5fa;
  }

  .section-engineering {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .engineering-placeholder {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "visual";
    padding: 1rem 1rem;
    gap: 1rem;
  }

  .engineering-copy {
    align-items: flex-start;
    text-align: left;
    gap: 0.9rem;
    padding: 0;
  }

  .engineering-content {
    max-width: none;
    align-items: flex-start;
  }

  .engineering-content h3 {
    margin: 0 0 0.5rem;
    font-size: clamp(1.05rem, 4.2vw, 1.28rem);
    line-height: 1.22;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
  }

  .engineering-content p {
    font-size: 0.82rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    overflow: hidden;
  }

  html[lang="ka"] .engineering-content h3,
  html[lang="ru"] .engineering-content h3,
  html[lang="ar"] .engineering-content h3 {
    font-size: clamp(0.98rem, 3.8vw, 1.16rem);
  }

  .engineering-disciplines {
    grid-template-columns: 1fr;
  }

  .engineering-disciplines--banner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem;
  }

  .engineering-disciplines--banner .engineering-discipline-header {
    padding: 0.4rem 0.4rem 0.15rem;
    gap: 0.35rem;
    align-items: center;
  }

  .engineering-disciplines--banner .engineering-discipline-icon {
    width: 24px;
    height: 24px;
  }

  .engineering-disciplines--banner .engineering-discipline-icon svg {
    width: 14px;
    height: 14px;
  }

  .engineering-disciplines--banner .engineering-discipline-label {
    min-height: 0;
    font-size: clamp(0.58rem, 2.2vw, 0.7rem);
    line-height: 1.2;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }

  .engineering-disciplines--banner .engineering-discipline-art {
    aspect-ratio: 1.55 / 1;
    padding: 0 0.15rem 0.22rem;
  }

  .about-hero,
  .arge-hero {
    padding: 2.25rem 0;
  }

  .process-flow-wrap {
    padding: 1.1rem 0.85rem 1.25rem;
    overflow-x: visible;
  }

  .process-flow {
    min-width: 0;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
  }

  .process-flow-step {
    min-width: 0;
    width: 100%;
  }

  .process-flow-arrow {
    align-self: center;
    transform: rotate(90deg);
    margin: 0.15rem 0;
  }

  .engineering-content h3 {
    margin-top: 0;
  }

  .engineering-btn {
    display: flex;
    width: 100%;
    justify-content: center;
    justify-self: stretch;
    align-self: stretch;
  }

  .facility-layout {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }

  .facility-content {
    flex: none;
    max-width: 100%;
  }

  .facility-gallery {
    overflow-x: auto;
    padding-bottom: 0.35rem;
    scrollbar-width: thin;
  }

  .facility-gallery--workspace {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
  }

  .facility-gallery--workspace .facility-card {
    flex: none;
    height: 220px;
  }

  .facility-card {
    flex: 0 0 130px;
    height: 280px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .stat-item {
    padding: 0.5rem 0.6rem;
  }

  .stat-item::after {
    display: none;
  }

  .projects-layout {
    flex-direction: column;
    gap: 1.25rem;
  }

  .projects-intro {
    flex: none;
    max-width: 100%;
  }

  .footer-cta {
    min-height: 0;
    display: flex;
    flex-direction: column;
  }

  .footer-cta-visual {
    position: relative;
    inset: auto;
    width: 100%;
    height: 220px;
    align-items: center;
    justify-content: center;
  }

  .footer-cta-visual img {
    width: auto;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }

  .footer-cta--kargo .footer-cta-visual {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .footer-cta--kargo .footer-cta-visual img {
    object-position: right center;
  }

  .footer-cta--kargo .footer-cta-content {
    max-width: none;
  }

  .footer-cta-inner {
    min-height: 0;
    margin-left: 0;
    padding: 1.75rem 0 2.25rem;
    justify-content: center;
  }

  .footer-cta-content {
    max-width: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-cta-content h2 {
    font-size: clamp(1.3rem, 5.2vw, 1.75rem);
    line-height: 1.28;
    max-width: 18rem;
  }

  .footer-cta-content h2 br {
    display: none;
  }

  .footer-cta-content h2 .gradient-text {
    display: block;
    margin-top: 0.2rem;
  }

  .footer-cta-content p {
    max-width: 22rem;
    margin-bottom: 1.15rem;
  }

  .footer-cta-content .btn-gradient {
    display: inline-flex;
    justify-content: center;
    margin-inline: auto;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding: 2.2rem 0 1.8rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .about-intro-grid,
  .about-vm-grid,
  .about-pillar-grid,
  .about-production-card,
  .about-partnership-card,
  .about-capabilities-card,
  .arge-discipline-grid,
  .arge-focus-grid,
  .arge-cta-card {
    grid-template-columns: 1fr;
  }

  .about-partnership-chart {
    min-height: 320px;
    height: auto;
  }

  .about-partnership-chart img {
    width: min(100%, 480px);
    height: auto;
    max-height: none;
  }

  .about-capabilities-visual {
    min-height: 280px;
  }

  .arge-discipline-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-production-visual {
    height: auto;
    max-height: 330px;
  }

  .arge-cta-visual {
    height: auto;
    max-height: 330px;
  }

  .about-production-visual img,
  .arge-cta-visual img {
    height: 290px;
    max-height: 290px;
  }

  .promo-content {
    grid-template-columns: 1fr;
  }

  .promo-content--reverse .promo-image-wrap,
  .promo-content--reverse .promo-text {
    order: unset;
  }

  .promo-image-wrap img {
    min-height: 280px;
  }

  .edge-left {
    top: auto;
    bottom: 50px;
    transform: none;
  }
}

@media (max-width: 540px) {
  .solution-area-overlay p {
    font-size: 0.84rem;
  }

  .featured-card-overlay {
    padding: 1rem 0.9rem 1.05rem;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(1460px, 92%);
  }

  .hero {
    min-height: 0;
    padding: 0 0.95rem 1.25rem;
  }

  .hero::before {
    width: calc(100% + 1.9rem);
    margin: 0 -0.95rem 1.15rem;
    aspect-ratio: 5 / 4;
    background-position: 90% center;
  }

  .hero h1 br {
    display: none;
  }

  .hero-badge {
    max-width: 100%;
  }

  .hero-badge span {
    white-space: normal;
  }

  .brands-strip {
    margin-top: 1.35rem;
  }

  .brands-track {
    gap: 0.65rem 0.85rem;
    padding: 0.55rem 0.75rem;
  }

  .brand-pill {
    width: 88px;
    height: 32px;
  }

  .brand-pill--bta {
    width: 100px;
    height: 38px;
  }

  .brand-pill--atp {
    width: 76px;
    height: 28px;
  }

  .section-solution-areas {
    padding-top: 0.25rem;
  }

  .hero-badge span {
    max-width: none;
    line-height: 1.35;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 1.8rem 0 1.5rem;
  }

  .footer-brand img {
    height: 40px;
  }

  .footer-cta-content h2 {
    max-width: none;
    font-size: clamp(1.2rem, 6vw, 1.55rem);
  }

  .footer-cta-content p {
    font-size: 0.88rem;
    max-width: none;
  }

  .footer-cta-inner {
    padding: 1.5rem 0 2rem;
  }

  .footer-cta-visual {
    height: 180px;
  }

  .promo-stats {
    grid-template-columns: 1fr;
  }

  .btn-gradient {
    padding: 0.58rem 1.15rem;
    font-size: 0.86rem;
  }

  .arge-discipline-grid {
    grid-template-columns: 1fr;
  }
}

/* Product pages */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
  font-size: 0.95rem;
  color: #8b95a8;
}

.breadcrumb a {
  color: #6b7280;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: #3b5bff;
}

.breadcrumb [aria-current="page"] {
  color: #0f1f4d;
  font-size: 1.02rem;
  font-weight: 700;
}

.product-hero {
  padding: 1.5rem 0 2.5rem;
}

.product-hero--siramatik {
  padding: 1.25rem 0.25rem 0;
}

.product-hero--siramatik .product-hero-badge {
  max-width: min(100%, 34rem);
  line-height: 1.4;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
}

.page-siramatik .product-hero-desc {
  margin: 0 0 0.75rem;
  max-width: 34rem;
  font-size: 1rem;
  line-height: 1.65;
  color: #4b5563;
}

.product-hero-siramatik-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.15rem;
  margin-top: auto;
  margin-bottom: 1.1rem;
  padding-top: 1rem;
}

.product-hero-siramatik-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  min-width: 84px;
  max-width: 108px;
  text-align: center;
}

.product-hero-siramatik-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #3b5bff;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(8px);
}

.product-hero-siramatik-feature-icon svg {
  width: 30px;
  height: 30px;
}

.product-hero-siramatik-feature span:last-child {
  font-size: 0.78rem;
  line-height: 1.35;
  font-weight: 600;
  color: #374151;
}

.product-hero--siramatik .product-hero-actions {
  margin-top: 0;
  margin-bottom: 0.35rem;
}

.product-hero-siramatik-accent {
  color: #3b5bff;
}

.product-hero--siramatik .btn-product-primary {
  padding: 0.72rem 1.45rem;
  font-size: 0.92rem;
  font-weight: 600;
  gap: 0.45rem;
}

.product-hero--siramatik .btn-product-primary::after {
  content: "\2192";
  font-size: 1.05rem;
  line-height: 1;
}

.product-hero-stage {
  position: relative;
  width: min(1600px, 99.5%);
  aspect-ratio: 3432 / 1980;
  margin: 0 auto;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.product-hero-media {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
}

.product-hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(255, 255, 255, 0.22) 32%,
    rgba(255, 255, 255, 0.06) 48%,
    rgba(255, 255, 255, 0) 62%
  );
  pointer-events: none;
}

.product-hero-inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 2rem 9.5rem;
}

.product-hero-content {
  max-width: min(640px, 56%);
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
}

.product-hero-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.1rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: rgba(59, 91, 255, 0.08);
  color: #3b5bff;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-hero-content h1 {
  margin: 0 0 0.85rem;
  font-size: clamp(2.85rem, 5.5vw, 4.25rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: #0f1f4d;
}

.product-hero-tagline {
  margin: 0 0 1.25rem;
  font-size: clamp(1.75rem, 3.4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: #0f1f4d;
}

.product-hero-desc {
  margin: 0 0 1.75rem;
  max-width: 560px;
  color: #4b5563;
  font-size: 1.18rem;
  line-height: 1.72;
}

.product-hero-content .product-hero-desc + .product-hero-desc {
  margin-top: -0.85rem;
}

.product-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0;
}

.product-hero-highlights {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0.55rem;
  width: 100%;
  max-width: 640px;
  margin: 3.35rem 0 0;
  padding: 0;
  list-style: none;
}

.product-hero-highlights li {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex: 0 0 auto;
  gap: 0.55rem;
  padding: 0.6rem 0.8rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.38);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
  backdrop-filter: blur(10px);
}

.product-hero-highlight-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  line-height: 1.25;
}

.product-hero-highlight-text strong {
  color: #0f1f4d;
  font-size: 0.92rem;
  font-weight: 700;
}

.product-hero-highlight-text span {
  color: #6b7280;
  font-size: 0.82rem;
  font-weight: 500;
}

.product-hero-highlight-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: rgba(238, 242, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #3b5bff;
  box-shadow: none;
}

.product-hero-highlight-icon svg {
  width: 18px;
  height: 18px;
}

.btn-product-primary,
.btn-product-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.72rem 1.45rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-product-primary svg,
.product-feature-icon svg {
  width: 18px;
  height: 18px;
}

.btn-product-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #4f6dff 0%, #3b5bff 100%);
  box-shadow: 0 8px 22px rgba(59, 91, 255, 0.28);
}

.btn-product-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(59, 91, 255, 0.34);
}

.btn-product-outline {
  color: #3b5bff;
  background: #ffffff;
  border: 1.5px solid #3b5bff;
}

.btn-product-outline::after {
  content: "\2192";
  font-size: 1rem;
  line-height: 1;
}

.btn-product-outline:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(59, 91, 255, 0.14);
}

.product-features-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.25rem;
  width: min(600px, 52%);
  align-self: flex-start;
  flex-shrink: 0;
  margin-top: auto;
  padding-top: 1rem;
}

.product-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.85rem 0.95rem;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(10px);
}

.product-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  margin-bottom: 0;
  border-radius: 50%;
  background: #eef2ff;
  color: #3b5bff;
}

.product-feature-icon svg {
  width: 16px;
  height: 16px;
}

.product-feature-body {
  min-width: 0;
}

.product-feature-card h3 {
  margin: 0 0 0.25rem;
  font-size: 0.98rem;
  line-height: 1.35;
  color: #0f1f4d;
}

.product-feature-card p {
  margin: 0;
  color: #6b7280;
  font-size: 0.88rem;
  line-height: 1.5;
}

.product-how {
  padding: 0 0.25rem 0;
}

.product-how-grid {
  width: min(1600px, 99.5%);
  margin: 0 auto;
}

.product-how-panel {
  padding: 1.5rem 1.75rem 1.65rem;
  border-radius: 0;
  background: #ffffff;
  box-shadow: none;
}

.siramatik-usage {
  padding: 0 0.25rem 0;
  background: transparent;
}

.siramatik-usage-inner {
  width: min(1600px, 99.5%);
  margin: 0 auto;
  padding: 2.75rem 1.75rem 3rem;
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 2rem 2.5rem;
  align-items: center;
  background: #0f1748;
}

.siramatik-usage-intro {
  padding-top: 0;
}

.siramatik-usage-title {
  margin: 0 0 0.95rem;
  font-size: clamp(1.65rem, 2.5vw, 2.15rem);
  line-height: 1.15;
  color: #ffffff;
  position: relative;
  padding-bottom: 0.85rem;
}

.siramatik-usage-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 52px;
  height: 3.5px;
  border-radius: 999px;
  background: #3b5bff;
}

.siramatik-usage-desc {
  margin: 0 0 1.5rem;
  color: rgba(236, 242, 255, 0.82);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 16rem;
}

.siramatik-usage-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #6b8cff;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease, gap 0.2s ease;
}

.siramatik-usage-link::after {
  content: "\2192";
  font-size: 1rem;
  line-height: 1;
}

.siramatik-usage-link:hover {
  color: #93aaff;
  gap: 0.55rem;
}

.siramatik-usage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem;
}

.siramatik-usage-card {
  margin: 0;
  min-width: 0;
}

.siramatik-usage-card-media {
  position: relative;
  margin-bottom: 1.55rem;
}

.siramatik-usage-card-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  background: #121826;
}

.siramatik-usage-card-icon {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #3b5bff;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(59, 91, 255, 0.35);
}

.siramatik-usage-card-icon svg {
  width: 22px;
  height: 22px;
}

.siramatik-usage-card h3 {
  margin: 0 0 0.45rem;
  text-align: center;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.3;
}

.siramatik-usage-card p {
  margin: 0;
  text-align: center;
  color: rgba(226, 232, 240, 0.78);
  font-size: 0.84rem;
  line-height: 1.55;
}

.product-extra {
  padding: 0 0.25rem 0;
}

.product-extra-grid {
  width: min(1600px, 99.5%);
  margin: 0 auto;
}

.product-extra-panel {
  padding: 1.5rem 1.75rem 1.65rem;
  border-radius: 0;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  border-top: 1px solid #e8ecfb;
}

.siramatik-specs {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 1.5rem 1.25rem;
  align-items: stretch;
  padding: 2.75rem 2rem 2.5rem;
  background: #ffffff;
  border-top: 1px solid #e8ecfb;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.siramatik-specs-main {
  min-width: 0;
}

.siramatik-specs-title,
.siramatik-dimensions-title {
  margin: 0 0 1.9rem;
  padding-bottom: 0.7rem;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
  line-height: 1.15;
  color: #101828;
}

.siramatik-specs-title::after,
.siramatik-dimensions-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 46px;
  height: 3px;
  border-radius: 999px;
  background: #3b82f6;
}

.siramatik-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
  min-width: 0;
}

.siramatik-spec-card {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.07);
}

.siramatik-spec-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #eef4ff;
  color: #2f6bff;
}

.siramatik-spec-icon svg {
  width: 22px;
  height: 22px;
}

.siramatik-spec-text {
  min-width: 0;
}

.siramatik-spec-text h3 {
  margin: 0 0 0.28rem;
  font-size: 0.9rem;
  line-height: 1.3;
  color: #101828;
  font-weight: 700;
}

.siramatik-spec-text p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.5;
  color: #6b7280;
}

.siramatik-io {
  margin: 1.75rem 0 0;
}

.siramatik-io img {
  display: block;
  width: 100%;
  max-width: 660px;
  height: auto;
  border-radius: 12px;
  background: #ffffff;
}

.siramatik-specs-visual {
  margin: 0 0 0 -2.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  overflow: hidden;
  background: #ffffff;
  padding: 0;
}

.siramatik-specs-visual img {
  display: block;
  width: 100%;
  height: 760px;
  object-fit: contain;
  object-position: left center;
}

.siramatik-dimensions {
  padding: 0 0.25rem 0;
}

.siramatik-dimensions-panel {
  margin: 0;
  padding: 1.5rem 1.5rem 1.25rem;
  background: #ffffff;
  border-top: 1px solid #e8ecfb;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.siramatik-dimensions-panel--sheet img {
  display: block;
  width: 100%;
  height: auto;
}

.product-how-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 340px);
  grid-template-rows: auto auto;
  column-gap: 2.25rem;
  row-gap: 1.5rem;
  align-items: start;
}

.product-how-title {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  font-size: clamp(1.65rem, 2.5vw, 2.15rem);
  line-height: 1.15;
  color: #0f1f4d;
  position: relative;
  padding-bottom: 0.8rem;
}

.product-how-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 52px;
  height: 3.5px;
  border-radius: 999px;
  background: #3b5bff;
}

.product-how-steps {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  align-items: flex-start;
  gap: 0.2rem;
}

.product-how-step {
  flex: 1;
  min-width: 0;
  text-align: center;
}

.product-how-step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  background: #f3f6ff;
  border: 1px solid #e8ecfb;
  color: #3b5bff;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.05);
}

.product-how-step-icon svg {
  width: 26px;
  height: 26px;
}

.product-how-step h3 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin: 0 0 0.5rem;
  font-size: 0.92rem;
  line-height: 1.35;
  color: #0f1f4d;
}

.product-how-step-num {
  color: #3b5bff;
  font-weight: 700;
  font-size: 0.96rem;
  line-height: 1;
}

.product-how-step-sep {
  color: #9aa8c7;
  font-weight: 600;
}

.product-how-step-name {
  color: #0f1f4d;
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.35;
}

.product-how-step p {
  margin: 0 auto;
  max-width: 178px;
  color: #6b7280;
  font-size: 0.82rem;
  line-height: 1.55;
}

.product-how-arrow {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  width: 28px;
  padding-top: 1.15rem;
  color: #7b8ea8;
}

.product-how-arrow svg {
  width: 28px;
  height: 14px;
}

.product-how-visual {
  grid-column: 2;
  grid-row: 1 / -1;
  width: 100%;
  max-width: 280px;
  justify-self: end;
  overflow: hidden;
  border-radius: 14px;
}

.product-how-visual img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 420px;
  margin-left: 0;
  object-fit: contain;
  object-position: center;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
}

.product-detail {
  padding: 0 0.25rem 2.25rem;
}

.product-detail-grid {
  width: min(1600px, 99.5%);
  margin: 0 auto;
}

.product-detail-panel {
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.product-section-title {
  margin: 0 0 1.35rem;
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
  line-height: 1.15;
  color: #0f1f4d;
  position: relative;
  padding-bottom: 0.7rem;
}

.product-section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 46px;
  height: 3px;
  border-radius: 999px;
  background: #3b5bff;
}

.product-specs-block {
  padding: 1.5rem 1.75rem 1.65rem;
  border-top: 1px solid #e8ecfb;
}

.product-specs-detail {
  padding: 0 0.25rem 2.5rem;
}

.product-specs-detail-inner {
  width: min(1600px, 99.5%);
  margin: 0 auto;
}

.product-specs-block--standalone {
  border-top: none;
  border: 1px solid #e8ecfb;
  border-radius: 0;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  padding: 2rem 2rem 2.25rem;
}

.product-specs-block--standalone .product-section-title {
  margin-bottom: 1.75rem;
  font-size: clamp(1.65rem, 2.5vw, 2.15rem);
}

.product-specs-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.72fr);
  gap: 1.75rem 2rem;
  align-items: stretch;
}

.product-specs-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.product-spec-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.05rem;
  background: #f8faff;
  border: 1px solid #e8ecfb;
  border-radius: 12px;
}

.product-spec-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e8ecfb;
  color: #3b5bff;
}

.product-spec-icon svg {
  width: 20px;
  height: 20px;
}

.product-spec-card h3 {
  margin: 0 0 0.3rem;
  font-size: 0.9rem;
  line-height: 1.3;
  color: #0f1f4d;
}

.product-spec-card p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.5;
  color: #6b7280;
}

.product-specs-visual {
  background: linear-gradient(155deg, #1b2f57 0%, #0d1628 100%);
  border-radius: 14px;
  overflow: hidden;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.35rem;
}

.product-specs-visual img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 290px;
  min-height: 0;
  object-fit: contain;
  object-position: center;
}

.product-specs-hardware {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem 1.25rem;
  align-items: center;
}

.product-specs-hardware-media img {
  display: block;
  width: 100%;
  max-height: 340px;
  object-fit: contain;
  object-position: center;
}

.product-specs-callouts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.product-specs-callouts li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.78rem;
  line-height: 1.35;
  color: #0f1f4d;
  font-weight: 600;
}

.product-specs-callouts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3b5bff;
}

.product-dimensions-block {
  padding: 1.35rem 1.75rem 1.75rem;
  border-top: 1px solid #e8ecfb;
}

.product-dimensions {
  padding: 0 0.25rem 2.5rem;
}

.product-dimensions-panel {
  padding: 2rem 2rem 2.25rem;
  background: #f3f4f6;
  border: 1px solid #e8ecfb;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.product-dimensions-panel img {
  display: block;
  width: 100%;
  height: auto;
}

.product-dimensions-grid-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.product-dimension-item {
  margin: 0;
  text-align: center;
}

.product-dimension-item figcaption {
  margin-bottom: 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #0f1f4d;
}

.product-dimension-item svg {
  width: 100%;
  max-width: 180px;
  height: auto;
  margin: 0 auto;
  display: block;
}

@media (max-width: 1200px) {
  .product-how-grid {
    width: 100%;
  }

  .product-extra-grid {
    width: 100%;
  }

  .siramatik-usage-inner {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 1.75rem;
    padding: 2.25rem 1.25rem 2.5rem;
  }

  .siramatik-usage-desc {
    max-width: 28rem;
  }

  .siramatik-usage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.35rem 1rem;
  }

  .siramatik-specs {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.75rem 1.25rem 2rem;
  }

  .siramatik-specs-visual {
    order: -1;
    max-width: min(360px, 82vw);
    margin: 0 auto;
    width: 100%;
    background: transparent;
    padding: 0;
    justify-content: center;
  }

  .siramatik-specs-visual img {
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: contain;
    object-position: center;
    transform: none;
  }

  .siramatik-dimensions-panel {
    padding: 1rem 1rem 0.85rem;
  }

  .product-how-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 1.25rem;
  }

  .product-how-visual {
    grid-column: 1;
    grid-row: 1;
    max-width: 240px;
    justify-self: center;
  }

  .product-how-visual img {
    width: 100%;
    margin-left: 0;
    max-height: 360px;
  }

  .product-how-title {
    grid-column: 1;
    grid-row: 2;
  }

  .product-how-steps {
    grid-column: 1;
    grid-row: 3;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.15rem;
    overflow: visible;
    padding-bottom: 0;
  }

  .product-how-step {
    flex: none;
    width: 100%;
    text-align: left;
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    column-gap: 0.9rem;
    align-items: start;
  }

  .product-how-step-icon {
    grid-row: 1 / span 2;
    margin: 0;
    width: 56px;
    height: 56px;
  }

  .product-how-step h3 {
    justify-content: flex-start;
    text-align: left;
    margin-bottom: 0.35rem;
  }

  .product-how-step p {
    margin: 0;
    max-width: none;
    text-align: left;
    font-size: 0.88rem;
  }

  .product-how-arrow {
    display: none;
  }

  .product-hero-stage {
    width: min(1600px, 100%);
    aspect-ratio: auto;
    height: auto;
    overflow: visible;
    box-shadow: none;
    background: #ffffff;
    display: flex;
    flex-direction: column;
  }

  .product-hero-media {
    position: relative;
    inset: auto;
    order: 2;
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: center center;
    border-radius: 12px;
  }

  .product-hero-stage::before {
    display: none;
  }

  .product-hero-inner {
    position: relative;
    inset: auto;
    z-index: 1;
    order: 1;
    padding: 0.85rem 0.35rem 1rem;
  }

  .product-hero-content,
  .product-hero-content--kargo,
  .product-hero-content--ac {
    max-width: 100%;
  }

  .product-hero-content h1,
  .product-hero-content--kargo h1,
  .product-hero-content--ac h1 {
    font-size: clamp(1.9rem, 5vw, 2.75rem);
  }

  .product-hero-tagline,
  .product-hero-kargo-lead,
  .product-hero-ac-lead {
    font-size: clamp(1.05rem, 2.8vw, 1.35rem);
  }

  .product-hero-kargo-features,
  .product-hero-ac-features,
  .product-hero-siramatik-features {
    margin-top: 1.5rem;
    flex-wrap: wrap;
  }

  .product-hero-grid {
    grid-template-columns: 1fr;
  }

  .product-features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .product-hero-highlights {
    max-width: 100%;
    gap: 0.5rem;
  }

  .product-detail-grid {
    width: 100%;
  }

  .product-specs-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .product-specs-visual img {
    max-height: 240px;
  }

  .product-specs-block--standalone {
    padding: 1.5rem 1.25rem 1.65rem;
  }

  .product-dimensions-panel {
    padding: 1.5rem 1.25rem 1.65rem;
  }

  .product-specs-hardware {
    grid-template-columns: 1fr;
  }

  .product-specs-callouts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }
}

@media (max-width: 640px) {
  .product-hero-highlights li {
    flex: 1 1 calc(50% - 0.35rem);
  }

  .product-features-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .siramatik-usage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem 0.65rem;
  }

  .siramatik-specs-grid {
    grid-template-columns: 1fr;
  }

  .product-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-product-primary,
  .btn-product-outline {
    width: 100%;
  }

  .product-specs-cards {
    grid-template-columns: 1fr;
  }

  .product-specs-callouts {
    grid-template-columns: 1fr;
  }

  .product-dimensions-grid-inner {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-item {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
}

.reveal-stagger.is-visible .reveal-item {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-item {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .facility-card img {
    transition: none;
  }

  .facility-card:hover img {
    transform: none;
  }
}

/* S?ramatik page motion */
@keyframes siramatik-fade-up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes siramatik-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes siramatik-soft-shake {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  20% {
    transform: translateY(-2px) rotate(-0.45deg);
  }

  40% {
    transform: translateY(1px) rotate(0.45deg);
  }

  60% {
    transform: translateY(-1px) rotate(-0.3deg);
  }

  80% {
    transform: translateY(1px) rotate(0.3deg);
  }
}

@keyframes siramatik-icon-pop {
  0%,
  100% {
    transform: scale(1);
  }

  40% {
    transform: scale(1.12) rotate(-4deg);
  }

  70% {
    transform: scale(1.06) rotate(3deg);
  }
}

@keyframes siramatik-arrow-pulse {
  0%,
  100% {
    opacity: 0.55;
    transform: translateX(0);
  }

  50% {
    opacity: 1;
    transform: translateX(4px);
  }
}

.page-siramatik .product-hero-badge,
.page-siramatik .product-hero-content h1,
.page-siramatik .product-hero-tagline,
.page-siramatik .product-hero-desc,
.page-siramatik .product-hero-actions,
.page-siramatik .product-hero-siramatik-feature {
  opacity: 1;
}

.page-siramatik .product-hero--siramatik.is-animated .product-hero-badge {
  animation: siramatik-fade-up 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.05s forwards;
}

.page-siramatik .product-hero--siramatik.is-animated .product-hero-content h1 {
  animation: siramatik-fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.14s forwards;
}

.page-siramatik .product-hero--siramatik.is-animated .product-hero-tagline {
  animation: siramatik-fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.24s forwards;
}

.page-siramatik .product-hero--siramatik.is-animated .product-hero-desc {
  animation: siramatik-fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.34s forwards;
}

.page-siramatik .product-hero--siramatik.is-animated .product-hero-actions {
  animation: siramatik-fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.84s forwards;
}

.page-siramatik .product-hero--siramatik.is-animated .product-hero-siramatik-feature {
  animation: siramatik-fade-up 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.page-siramatik .product-hero--siramatik.is-animated .product-hero-siramatik-feature:nth-child(1) {
  animation-delay: 0.52s;
}

.page-siramatik .product-hero--siramatik.is-animated .product-hero-siramatik-feature:nth-child(2) {
  animation-delay: 0.6s;
}

.page-siramatik .product-hero--siramatik.is-animated .product-hero-siramatik-feature:nth-child(3) {
  animation-delay: 0.68s;
}

.page-siramatik .product-hero--siramatik.is-animated .product-hero-siramatik-feature:nth-child(4) {
  animation-delay: 0.76s;
}

.siramatik-reveal {
  opacity: 1;
  transform: none;
}

.siramatik-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.siramatik-reveal-item {
  opacity: 1;
  transform: none;
}

.siramatik-reveal-stagger.is-visible .siramatik-reveal-item {
  opacity: 1;
  transform: translateY(0);
}

.page-siramatik .product-how-visual.is-visible img,
.page-siramatik .siramatik-specs-visual.is-floating {
  animation: siramatik-float 3s ease-in-out infinite;
}

.page-siramatik .siramatik-specs-visual.is-floating.is-shaken {
  animation:
    siramatik-float 3s ease-in-out infinite,
    siramatik-soft-shake 0.75s ease 0.2s 1;
}

.page-siramatik .product-how-arrow {
  opacity: 1;
}

.page-siramatik .product-how-step-icon {
  background: linear-gradient(145deg, #dbeafe 0%, #bfdbfe 100%);
  border-color: #93c5fd;
  color: #2563eb;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.18);
}

.page-siramatik .siramatik-spec-card:hover .siramatik-spec-icon,
.page-siramatik .product-hero-siramatik-feature:hover .product-hero-siramatik-feature-icon,
.page-siramatik .product-how-step:hover .product-how-step-icon {
  animation: siramatik-icon-pop 0.45s ease;
}

@media (prefers-reduced-motion: reduce) {
  .page-siramatik .product-hero-badge,
  .page-siramatik .product-hero-content h1,
  .page-siramatik .product-hero-tagline,
  .page-siramatik .product-hero-desc,
  .page-siramatik .product-hero-actions,
  .page-siramatik .product-hero-siramatik-feature {
    opacity: 1;
    animation: none;
  }

  .siramatik-reveal,
  .siramatik-reveal-item {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .page-siramatik .product-how-visual.is-visible img,
  .page-siramatik .siramatik-specs-visual.is-floating,
  .page-siramatik .product-how-arrow {
    animation: none;
  }
}

.page-siramatik .btn-ac-primary {
  background: #3b5bff;
  box-shadow: 0 10px 24px rgba(59, 91, 255, 0.28);
}

.page-siramatik .btn-ac-primary:hover {
  background: #2f4ae6;
}

.page-siramatik .footer-cta--ac {
  background:
    radial-gradient(ellipse 50% 80% at 70% 50%, rgba(59, 91, 255, 0.35), transparent 65%),
    #060b1f;
}

.page-siramatik .footer-cta--ac .ac-accent {
  color: #8ea2ff;
}

@media (max-width: 1024px) {
  .page-siramatik .footer-cta-ac-actions {
    width: 100%;
    max-width: 22rem;
  }

  .page-siramatik .footer-cta-ac-actions .btn-ac-primary,
  .page-siramatik .footer-cta-ac-actions .btn-ac-ghost {
    width: 100%;
    justify-content: center;
  }

  .page-siramatik .footer-cta-inner--ac {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Kargo Kiosku product page */
.page-kargo-kiosk {
  --kargo-red: #e11d2e;
  --kargo-red-dark: #c4121f;
}

.page-kargo-kiosk main .container {
  width: min(1600px, 99.5%);
}

.product-hero--kargo {
  padding: 1.25rem 0.25rem 0;
  background: #ffffff;
}

.product-hero--kargo .product-hero-media--kargo {
  object-position: 72% center;
}

.product-hero--kargo .product-hero-stage::before {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.72) 0%,
    rgba(255, 255, 255, 0.48) 34%,
    rgba(255, 255, 255, 0.14) 52%,
    rgba(255, 255, 255, 0) 66%
  );
}

.product-hero-content--kargo {
  max-width: min(680px, 58%);
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
}

.product-hero-content--kargo h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #111827;
}

.product-hero-kargo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1.1rem;
  padding: 0.42rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #6b7280;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.product-hero-kargo-badge svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.product-hero-kargo-accent {
  color: var(--kargo-red);
}

.product-hero-kargo-lead {
  margin: 0 0 1rem;
  max-width: 34rem;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 700;
  line-height: 1.4;
  color: #111827;
}

.product-hero-kargo-desc {
  margin: 0 0 0.75rem;
  max-width: 34rem;
  font-size: 1rem;
  line-height: 1.65;
  color: #4b5563;
}

.product-hero-kargo-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1rem;
  margin-top: auto;
  margin-bottom: 1.1rem;
  padding-top: 1rem;
}

.product-hero-kargo-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  min-width: 84px;
  max-width: 100px;
  text-align: center;
}

.product-hero-kargo-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--kargo-red);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(8px);
}

.product-hero-kargo-feature-icon svg {
  width: 30px;
  height: 30px;
}

.product-hero-kargo-feature span:last-child {
  font-size: 0.78rem;
  line-height: 1.35;
  font-weight: 600;
  color: #374151;
}

.product-hero-kargo-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0;
  margin-bottom: 0.35rem;
}

.btn-kargo-primary,
.btn-kargo-demo,
.btn-kargo-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.72rem 1.45rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-kargo-primary {
  color: #ffffff;
  background: var(--kargo-red);
  box-shadow: 0 8px 22px rgba(225, 29, 46, 0.28);
}

.btn-kargo-demo {
  color: #ffffff;
  background: var(--kargo-red);
  box-shadow: 0 8px 22px rgba(225, 29, 46, 0.28);
}

.btn-kargo-demo:hover {
  transform: translateY(-1px);
  background: var(--kargo-red-dark);
  box-shadow: 0 10px 26px rgba(225, 29, 46, 0.34);
}

.btn-kargo-primary::after,
.btn-kargo-demo::after,
.btn-kargo-outline::after {
  content: "\2192";
  font-size: 1.05rem;
  line-height: 1;
}

.btn-kargo-primary:hover {
  transform: translateY(-1px);
  background: var(--kargo-red-dark);
  box-shadow: 0 10px 26px rgba(225, 29, 46, 0.34);
}

.btn-kargo-outline {
  color: var(--kargo-red);
  background: #ffffff;
  border: 1.5px solid var(--kargo-red);
}

.btn-kargo-outline:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(225, 29, 46, 0.12);
}

@media (max-width: 1024px) {
  .product-hero-content--kargo,
  .product-hero-content--ac {
    max-width: 100%;
  }

  .product-hero--kargo .product-hero-media--kargo,
  .product-hero--ac .product-hero-media--ac {
    object-position: center center;
  }
}

@media (max-width: 768px) {
  .product-hero-media {
    aspect-ratio: 4 / 3;
    border-radius: 10px;
  }

  .product-hero-inner {
    padding: 0.65rem 0 0.35rem;
  }

  .breadcrumb {
    margin-bottom: 0.9rem;
    font-size: 0.85rem;
  }

  .breadcrumb [aria-current="page"] {
    font-size: 0.9rem;
  }

  .product-hero-content h1 {
    font-size: clamp(1.85rem, 7.5vw, 2.6rem);
    margin-bottom: 0.65rem;
  }

  .product-hero-tagline {
    font-size: clamp(1.1rem, 4.2vw, 1.35rem);
    margin-bottom: 0.75rem;
  }

  .product-hero-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }

  .product-features-grid {
    margin-top: 1rem;
    padding-top: 0;
    width: 100%;
    gap: 0.75rem;
    grid-template-columns: 1fr;
    align-self: stretch;
  }

  .product-feature-card {
    background: #f8faff;
    border: 1px solid #e2e8f4;
    border-radius: 12px;
    backdrop-filter: none;
    box-shadow: none;
  }

  .product-hero--siramatik,
  .product-hero--kargo,
  .product-hero--ac {
    padding: 0.75rem 0.5rem 0;
  }

  .page-siramatik .product-hero-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
  }

  .product-hero-siramatik-features {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    gap: 0.75rem 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  .product-hero-siramatik-feature {
    min-width: calc(50% - 0.5rem);
    flex: 1 1 calc(50% - 0.5rem);
    max-width: calc(50% - 0.35rem);
  }

  .product-hero-siramatik-feature-icon {
    width: 52px;
    height: 52px;
  }

  .product-hero-siramatik-feature-icon svg {
    width: 24px;
    height: 24px;
  }

  .product-hero-siramatik-feature span:last-child {
    font-size: 0.72rem;
  }

  .product-hero--kargo .product-hero-stage::before,
  .product-hero--ac .product-hero-stage::before {
    display: none;
  }

  .product-hero-content--kargo h1,
  .product-hero-content--ac h1 {
    font-size: clamp(1.75rem, 6.8vw, 2.35rem);
    line-height: 1.12;
    margin-bottom: 0.75rem;
  }

  .product-hero-content--ac h1 {
    min-height: 0;
  }

  .product-hero-content--kargo h1 br,
  .product-hero-content--ac h1 br {
    display: none;
  }

  .product-hero-kargo-lead,
  .product-hero-ac-lead {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }

  .product-hero-kargo-desc,
  .product-hero-ac-desc {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }

  .product-hero-kargo-features,
  .product-hero-ac-features {
    margin-top: 1rem;
    margin-bottom: 0.85rem;
    gap: 0.75rem 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  .product-hero-kargo-feature,
  .product-hero-ac-feature {
    min-width: calc(50% - 0.5rem);
    flex: 1 1 calc(50% - 0.5rem);
    max-width: calc(50% - 0.35rem);
  }

  .product-hero-kargo-feature-icon,
  .product-hero-ac-feature-icon {
    width: 52px;
    height: 52px;
  }

  .product-hero-kargo-feature-icon svg,
  .product-hero-ac-feature-icon svg {
    width: 24px;
    height: 24px;
  }

  .product-hero-kargo-feature span:last-child,
  .product-hero-ac-feature span:last-child {
    font-size: 0.72rem;
  }

  .product-hero--kargo .product-hero-media--kargo,
  .product-hero--ac .product-hero-media--ac {
    object-position: center center;
  }
}

@media (max-width: 640px) {
  .product-hero-siramatik-features {
    justify-content: space-between;
    gap: 0.85rem 0.5rem;
    margin-top: 1rem;
  }

  .product-hero-siramatik-feature {
    min-width: calc(50% - 0.5rem);
    max-width: none;
  }

  .product-hero-siramatik-feature-icon {
    width: 58px;
    height: 58px;
  }

  .product-hero-siramatik-feature-icon svg {
    width: 26px;
    height: 26px;
  }

  .product-hero-kargo-features,
  .product-hero-ac-features {
    justify-content: center;
    gap: 0.75rem 0.45rem;
    margin-top: 1rem;
    flex-wrap: wrap;
  }

  .product-hero-kargo-feature,
  .product-hero-ac-feature {
    min-width: calc(50% - 0.45rem);
    flex: 1 1 calc(50% - 0.45rem);
    max-width: calc(50% - 0.25rem);
  }

  .product-hero-kargo-feature-icon,
  .product-hero-ac-feature-icon {
    width: 58px;
    height: 58px;
  }

  .product-hero-kargo-feature-icon svg,
  .product-hero-ac-feature-icon svg {
    width: 26px;
    height: 26px;
  }

  .product-hero-kargo-actions,
  .product-hero-ac-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-kargo-primary,
  .btn-kargo-outline,
  .btn-ac-demo {
    justify-content: center;
  }
}

.page-kargo-kiosk .kargo-text-accent {
  color: var(--kargo-red);
}

.page-kargo-kiosk .kargo-section-title {
  margin: 0 0 2rem;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #111827;
}

.page-kargo-kiosk .btn-ac-primary {
  background: var(--kargo-red);
  box-shadow: 0 10px 24px rgba(225, 29, 46, 0.28);
}

.page-kargo-kiosk .btn-ac-primary:hover {
  background: var(--kargo-red-dark);
}

.page-kargo-kiosk .footer-cta--ac {
  background:
    radial-gradient(ellipse 50% 80% at 70% 50%, rgba(225, 29, 46, 0.35), transparent 65%),
    #1a0608;
}

.page-kargo-kiosk .footer-cta--ac .ac-accent {
  color: #ff8a95;
}

@media (max-width: 1024px) {
  .page-kargo-kiosk .footer-cta-ac-actions {
    width: 100%;
    max-width: 22rem;
  }

  .page-kargo-kiosk .footer-cta-ac-actions .btn-ac-primary,
  .page-kargo-kiosk .footer-cta-ac-actions .btn-ac-ghost {
    width: 100%;
    justify-content: center;
  }

  .page-kargo-kiosk .footer-cta-inner--ac {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Benefits ? dark panel */
.kargo-benefits {
  padding: 0 0.25rem 0;
  background: transparent;
}

.kargo-benefits-inner {
  width: min(1600px, 99.5%);
  margin: 0 auto;
}

.kargo-benefits-panel {
  padding: 2.75rem 2rem 3rem;
  border-radius: 0;
  background: #121212;
  color: #ffffff;
  box-shadow: none;
}

.kargo-benefits-layout {
  display: grid;
  grid-template-columns: minmax(0, 360px) 1fr;
  gap: 1.2rem 2rem;
  align-items: center;
}

.kargo-benefits-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  height: 100%;
  padding: 0.5rem 0;
}

.kargo-benefits-copy {
  max-width: 360px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #f2f6ff;
}

.kargo-benefits-intro h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(1.2rem, 1.85vw, 1.65rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  color: #ffffff;
  text-align: left;
}

.kargo-benefits-lead {
  margin: 0;
  max-width: none;
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  text-align: left;
}

.kargo-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem 1.5rem;
}

.kargo-benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.kargo-benefit-icon {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--kargo-red);
  border-radius: 0;
  color: var(--kargo-red);
}

.kargo-benefit-icon svg {
  width: 22px;
  height: 22px;
}

.kargo-benefit-body {
  min-width: 0;
}

.kargo-benefit-card h3 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
  color: #ffffff;
}

.kargo-benefit-card p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

/* How it works */
.kargo-how {
  padding: 0 0.25rem 0;
  background: transparent;
}

.kargo-how-inner {
  width: min(1600px, 99.5%);
  margin: 0 auto;
}

/* Vekt?r tabanl?, ??z?n?rl?kten ba??ms?z "Nas?l ?al???r?" d?zeni */
.kargo-how-panel {
  --how-pad: clamp(1.5rem, 2.5vw, 2.25rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(260px, 34%, 460px);
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  padding: var(--how-pad) clamp(1.5rem, 2.5vw, 2rem);
  background: #ffffff;
  border: 0;
  border-bottom: 1.5px solid var(--kargo-red);
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
}

.kargo-how-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.kargo-how-panel-title {
  margin: 0 0 clamp(1.75rem, 3vw, 2.75rem);
  font-size: clamp(1.4rem, 2.1vw, 1.95rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #111827;
}

.kargo-how-steps {
  display: flex;
  align-items: flex-start;
  gap: clamp(0.15rem, 0.6vw, 0.6rem);
}

.kargo-how-step {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.kargo-how-step-icon {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: clamp(52px, 4.6vw, 72px);
  height: clamp(52px, 4.6vw, 72px);
  margin: 0 0 clamp(0.7rem, 1.4vw, 1.05rem);
  border-radius: 50%;
  background: #ffffff;
  color: var(--kargo-red);
  box-shadow: 0 12px 26px rgba(17, 24, 39, 0.1);
}

.kargo-how-step-icon svg {
  width: 46%;
  height: 46%;
}

.kargo-how-step-num {
  display: block;
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  font-weight: 800;
  line-height: 1;
  color: var(--kargo-red);
}

.kargo-how-step h3 {
  margin: clamp(0.4rem, 0.8vw, 0.6rem) 0 0.35rem;
  font-size: clamp(0.95rem, 1.2vw, 1.15rem);
  font-weight: 700;
  line-height: 1.3;
  color: #111827;
}

.kargo-how-step p {
  margin: 0;
  max-width: 14rem;
  font-size: clamp(0.84rem, 1.05vw, 0.98rem);
  line-height: 1.5;
  color: #6b7280;
}

.kargo-how-arrow {
  flex: 0 0 auto;
  display: inline-flex;
  justify-content: center;
  margin-top: clamp(24px, 2.3vw, 34px);
  color: var(--kargo-red);
}

.kargo-how-arrow svg {
  width: clamp(26px, 2.6vw, 40px);
  height: auto;
}

.kargo-how-figure {
  align-self: end;
  margin: 2.5rem 0 0;
  width: 100%;
  max-height: none;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transform: translateY(1.25rem);
  padding: 0;
  border: 0;
  background: transparent;
}

.kargo-how-figure img {
  display: block;
  width: 118%;
  max-width: none;
  height: auto;
  max-height: 480px;
  object-fit: contain;
  object-position: center bottom;
}

/* Features ? merged with how panel stack */
.kargo-features-panel {
  padding: 3.25rem clamp(1.5rem, 2.5vw, 2rem) 3.5rem;
  background: #ffffff;
  border-top: 0;
  border-radius: 0;
}

.kargo-features-panel .kargo-section-title {
  margin: 0 0 2rem;
  padding-bottom: 0.7rem;
  position: relative;
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
}

.kargo-features-panel .kargo-section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 46px;
  height: 3px;
  border-radius: 0;
  background: var(--kargo-red);
}

.kargo-features-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.kargo-feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  min-height: 240px;
  padding: 2.15rem 1.15rem 2rem;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 4px 18px rgba(17, 24, 39, 0.06);
  border: 1px solid #f0e4e5;
  text-align: center;
}

.kargo-feature-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  margin-bottom: 1.15rem;
  color: var(--kargo-red);
  background: transparent;
}

.kargo-feature-card-icon svg {
  width: 40px;
  height: 40px;
}

.kargo-feature-card-text {
  min-width: 0;
}

.kargo-feature-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.12rem;
  font-weight: 700;
  color: #111827;
}

.kargo-feature-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #6b7280;
}

/* Usage areas */
.kargo-usage {
  padding: 0 0.25rem 0;
  background: transparent;
}

.kargo-usage-inner {
  width: min(1600px, 99.5%);
  margin: 0 auto;
  padding: 2.75rem 1.75rem 3rem;
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 2rem 2.5rem;
  align-items: center;
  background: #9e030b;
}

.kargo-usage-intro {
  padding-top: 0;
}

.kargo-usage-title {
  margin: 0 0 0.95rem;
  font-size: clamp(1.65rem, 2.5vw, 2.15rem);
  line-height: 1.15;
  color: #ffffff;
  position: relative;
  padding-bottom: 0.85rem;
}

.kargo-usage-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 52px;
  height: 3.5px;
  border-radius: 0;
  background: #ffffff;
}

.kargo-usage-desc {
  margin: 0 0 1.5rem;
  color: rgba(255, 240, 240, 0.88);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 16rem;
}

.kargo-usage-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #ffc9cc;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease, gap 0.2s ease;
}

.kargo-usage-link::after {
  content: "\2192";
  font-size: 1rem;
  line-height: 1;
}

.kargo-usage-link:hover {
  color: #ffffff;
  gap: 0.55rem;
}

.kargo-usage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem;
}

.kargo-usage-card {
  margin: 0;
  min-width: 0;
}

.kargo-usage-card-media {
  position: relative;
  margin-bottom: 1.55rem;
}

.kargo-usage-card-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 0;
  background: #6e0208;
}

.kargo-usage-card-icon {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ffffff;
  color: #9e030b;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

.kargo-usage-card-icon svg {
  width: 22px;
  height: 22px;
}

.kargo-usage-card h3 {
  margin: 0 0 0.45rem;
  text-align: center;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.3;
}

.kargo-usage-card p {
  margin: 0;
  text-align: center;
  color: rgba(255, 236, 236, 0.85);
  font-size: 0.84rem;
  line-height: 1.55;
}

/* Gallery */
.kargo-gallery {
  padding: 0 0.25rem 2.5rem;
  background: transparent;
}

.kargo-gallery-inner {
  width: min(1600px, 99.5%);
  margin: 0 auto;
  padding: 2.25rem 2rem 2.75rem;
  border-top: 1px solid #f0e4e5;
  background: #ffffff;
  border-radius: 0;
  box-shadow: none;
}

.kargo-gallery-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.kargo-gallery-header .kargo-section-title {
  margin: 0;
}

.kargo-gallery-nav {
  display: flex;
  gap: 0.5rem;
}

.kargo-gallery-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1.5px solid #e5e7eb;
  border-radius: 50%;
  background: #ffffff;
  color: #374151;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.kargo-gallery-nav[hidden],
.siramatik-gallery-nav[hidden],
.ac-gallery-nav[hidden] {
  display: none;
}

.kargo-gallery-btn:disabled,
.siramatik-gallery-btn:disabled,
.ac-gallery-btn:disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

.kargo-gallery-btn:hover:not(:disabled) {
  border-color: var(--kargo-red);
  color: var(--kargo-red);
}

.kargo-gallery-track {
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 0.25rem;
}

.kargo-gallery-track::-webkit-scrollbar {
  display: none;
}

.kargo-gallery-item {
  flex: 0 0 calc((100% - 5rem) / 6);
  min-width: 160px;
  margin: 0;
  scroll-snap-align: start;
}

.kargo-gallery-open {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
  border-radius: 0;
  overflow: hidden;
}

.kargo-gallery-open img,
.kargo-gallery-item img,
.kargo-gallery-ui {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 0;
  object-fit: cover;
  background: #f3f4f6;
  transition: transform 0.25s ease;
}

.kargo-gallery-open:hover img {
  transform: scale(1.04);
}

.kargo-gallery-open:focus-visible {
  outline: 2px solid var(--kargo-red);
  outline-offset: 2px;
}

.kargo-gallery-ui {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(160deg, #1f2937 0%, #111827 100%);
  color: #ffffff;
  text-align: center;
}

.kargo-gallery-ui span {
  font-size: 0.72rem;
  font-weight: 600;
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.kargo-gallery-ui strong {
  font-size: 0.95rem;
  font-weight: 700;
}

.kargo-gallery-item figcaption {
  margin-top: 0.55rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #6b7280;
  text-align: center;
}

.kargo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 4.5rem;
  background: rgba(15, 23, 42, 0.9);
}

.kargo-lightbox[hidden] {
  display: none;
}

.kargo-lightbox.is-open {
  animation: kargo-lightbox-fade 0.22s ease;
}

@keyframes kargo-lightbox-fade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

body.kargo-lightbox-open {
  overflow: hidden;
}

.kargo-lightbox-content {
  margin: 0;
  max-width: min(1100px, 92vw);
  max-height: calc(100vh - 5rem);
  text-align: center;
}

.kargo-lightbox-img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 8.5rem);
  margin: 0 auto;
  border-radius: 14px;
  object-fit: contain;
  background: #111827;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.kargo-lightbox-caption {
  margin-top: 0.85rem;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
}

.kargo-lightbox-close,
.kargo-lightbox-nav {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.kargo-lightbox-close:hover,
.kargo-lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.22);
}

.kargo-lightbox-close {
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.75rem;
  line-height: 1;
}

.kargo-lightbox-nav {
  top: 50%;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.75rem;
  line-height: 1;
  transform: translateY(-50%);
}

.kargo-lightbox-prev {
  left: 1.25rem;
}

.kargo-lightbox-next {
  right: 1.25rem;
}

.kargo-lightbox-nav:hover {
  transform: translateY(-50%) scale(1.04);
}

/* S?ramatik gallery */
.siramatik-gallery {
  padding: 0 0.25rem 2.5rem;
  background: transparent;
}

.siramatik-gallery-inner {
  padding: 2.25rem 2rem 2.75rem;
  border-top: 1px solid #e8ecfb;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.siramatik-gallery-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.siramatik-gallery-header .product-section-title {
  margin: 0;
  font-size: clamp(1.65rem, 2.5vw, 2.15rem);
}

.siramatik-gallery-nav {
  display: flex;
  gap: 0.5rem;
}

.siramatik-gallery-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1.5px solid #e5e7eb;
  border-radius: 50%;
  background: #ffffff;
  color: #374151;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.siramatik-gallery-btn:hover {
  border-color: #3b5bff;
  color: #3b5bff;
}

.siramatik-gallery-track {
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 0.25rem;
}

.siramatik-gallery-track::-webkit-scrollbar {
  display: none;
}

.siramatik-gallery-item {
  flex: 0 0 calc((100% - 2rem) / 3);
  min-width: 200px;
  margin: 0;
  scroll-snap-align: start;
}

.siramatik-gallery-open {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
  border-radius: 12px;
  overflow: hidden;
}

.siramatik-gallery-open img,
.siramatik-gallery-item img,
.siramatik-gallery-ui {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  object-fit: contain;
  background: #f3f4f6;
  transition: transform 0.25s ease;
}

.siramatik-gallery-open:hover img {
  transform: scale(1.04);
}

.siramatik-gallery-open:focus-visible {
  outline: 2px solid #3b5bff;
  outline-offset: 2px;
}

.siramatik-gallery-ui {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(160deg, #1f3f8f 0%, #0f1f4d 100%);
  color: #ffffff;
  text-align: center;
}

.siramatik-gallery-ui span {
  font-size: 0.72rem;
  font-weight: 600;
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.siramatik-gallery-ui strong {
  font-size: 0.95rem;
  font-weight: 700;
}

.siramatik-gallery-item figcaption {
  margin-top: 0.55rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #6b7280;
  text-align: center;
}

.siramatik-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 4.5rem;
  background: rgba(15, 23, 42, 0.9);
}

.siramatik-lightbox[hidden] {
  display: none;
}

.siramatik-lightbox.is-open {
  animation: kargo-lightbox-fade 0.22s ease;
}

body.siramatik-lightbox-open {
  overflow: hidden;
}

.siramatik-lightbox-content {
  margin: 0;
  max-width: min(1100px, 92vw);
  max-height: calc(100vh - 5rem);
  text-align: center;
}

.siramatik-lightbox-img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 8.5rem);
  margin: 0 auto;
  border-radius: 14px;
  object-fit: contain;
  background: #111827;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.siramatik-lightbox-caption {
  margin-top: 0.85rem;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
}

.siramatik-lightbox-close,
.siramatik-lightbox-nav {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.siramatik-lightbox-close:hover,
.siramatik-lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.22);
}

.siramatik-lightbox-close {
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.75rem;
  line-height: 1;
}

.siramatik-lightbox-nav {
  top: 50%;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.75rem;
  line-height: 1;
  transform: translateY(-50%);
}

.siramatik-lightbox-prev {
  left: 1.25rem;
}

.siramatik-lightbox-next {
  right: 1.25rem;
}

.siramatik-lightbox-nav:hover {
  transform: translateY(-50%) scale(1.04);
}

@media (max-width: 1200px) {
  .kargo-features-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .kargo-gallery-item {
    flex: 0 0 calc((100% - 3rem) / 4);
  }

  .siramatik-gallery-item {
    flex: 0 0 calc((100% - 2rem) / 3);
  }
}

@media (max-width: 1024px) {
  .kargo-benefits-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .kargo-benefits-lead {
    max-width: 36rem;
  }

  .kargo-benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .kargo-usage-inner {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 1.75rem;
    padding: 2.25rem 1.25rem 2.5rem;
  }

  .kargo-usage-desc {
    max-width: 28rem;
  }

  .kargo-usage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.35rem 1rem;
  }

  .kargo-how-panel {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .kargo-how-figure {
    order: -1;
    margin: 0;
    justify-content: center;
    max-height: 280px;
  }

  .kargo-how-figure img {
    width: auto;
    max-width: 100%;
    max-height: 280px;
    height: auto;
  }

  .kargo-how-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem 1rem;
  }

  .kargo-how-step {
    flex: none;
  }

  .kargo-how-step-icon {
    width: 60px;
    height: 60px;
  }

  .kargo-how-step-icon svg {
    width: 28px;
    height: 28px;
  }

  .kargo-how-step-num {
    font-size: 1.1rem;
  }

  .kargo-how-step h3 {
    font-size: 1.05rem;
  }

  .kargo-how-step p {
    max-width: 16rem;
    font-size: 0.92rem;
  }

  .kargo-how-arrow {
    display: none;
  }
}

@media (max-width: 768px) {
  .kargo-benefits,
  .kargo-how,
  .kargo-usage,
  .kargo-gallery {
    padding: 0 0.25rem 0;
  }

  .kargo-gallery {
    padding-bottom: 2rem;
  }

  .kargo-usage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem 0.65rem;
  }

  .kargo-benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }

  .kargo-benefits-panel,
  .kargo-how-panel,
  .kargo-features-panel,
  .kargo-usage-inner,
  .kargo-gallery-inner {
    padding: 2rem 1.25rem 2.25rem;
    border-radius: 0;
  }

  .kargo-how-steps {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }

  .kargo-features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .kargo-gallery-item,
  .siramatik-gallery-item {
    flex: 0 0 calc((100% - 1rem) / 2);
    min-width: 140px;
  }

  .kargo-lightbox,
  .siramatik-lightbox {
    padding: 1.25rem 1rem 2rem;
  }

  .kargo-lightbox-nav,
  .siramatik-lightbox-nav {
    display: none;
  }

  .kargo-lightbox-close,
  .siramatik-lightbox-close {
    top: 0.75rem;
    right: 0.75rem;
  }
}

@media (max-width: 480px) {
  .kargo-features-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== AC Charge page ========== */
.page-ac-charge {
  --ac-blue: #3b5bdb;
  --ac-blue-dark: #2f4bc4;
  --ac-ink: #0f172a;
  --ac-muted: #64748b;
  --ac-line: #e8edf5;
  --ac-soft: #f5f7fb;
}

.page-ac-charge .ac-accent {
  color: var(--ac-blue);
}

.page-ac-charge .ac-section-title {
  margin: 0 0 1.75rem;
  font-size: clamp(1.55rem, 2.6vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ac-ink);
}

.page-ac-charge .ac-section-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin-top: 0.65rem;
  border-radius: 999px;
  background: var(--ac-blue);
}

.btn-ac-primary,
.btn-ac-outline,
.btn-ac-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 46px;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn-ac-primary::after,
.btn-ac-outline::after,
.btn-ac-ghost::after {
  content: "\2192";
}

.btn-ac-primary {
  color: #fff;
  background: var(--ac-blue);
  box-shadow: 0 10px 24px rgba(59, 91, 219, 0.28);
}

.btn-ac-primary:hover {
  transform: translateY(-1px);
  background: var(--ac-blue-dark);
}

.btn-ac-outline {
  color: var(--ac-blue);
  background: #fff;
  border: 1.5px solid var(--ac-blue);
}

.btn-ac-outline:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(59, 91, 219, 0.12);
}

.btn-ac-ghost {
  color: #fff;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
}

.btn-ac-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* Hero ? matched to Kargo Kiosk product hero */
.product-hero--ac {
  padding: 1.25rem 0.25rem 0;
  background: #ffffff;
}

.product-hero--ac .product-hero-media--ac {
  object-position: 78% center;
}

.product-hero--ac .product-hero-stage::before {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.72) 0%,
    rgba(255, 255, 255, 0.48) 34%,
    rgba(255, 255, 255, 0.14) 52%,
    rgba(255, 255, 255, 0) 66%
  );
}

.product-hero-content--ac {
  max-width: min(680px, 58%);
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
}

.product-hero-content--ac h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #111827;
  /* Kargo 3 sat?rl? ba?l?k y?ksekli?iyle hizala ? Demo butonu ayn? seviyede */
  min-height: calc(3 * 1.05em);
}

.product-hero-ac-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1.1rem;
  padding: 0.42rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #6b7280;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.product-hero-ac-badge svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: #c4a06a;
}

.product-hero-ac-accent {
  color: #c4a06a;
}

.product-hero-ac-lead {
  margin: 0 0 1rem;
  max-width: 34rem;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 700;
  line-height: 1.4;
  color: #111827;
}

.product-hero-ac-desc {
  margin: 0 0 0.75rem;
  max-width: 34rem;
  font-size: 1rem;
  line-height: 1.65;
  color: #4b5563;
}

.product-hero-ac-features {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.45rem 0.35rem;
  margin-top: auto;
  margin-bottom: 1.1rem;
  padding-top: 1rem;
  width: 100%;
  max-width: 34rem;
}

.product-hero-ac-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  flex: 1 1 0;
  min-width: 0;
  max-width: none;
  text-align: center;
}

.product-hero-ac-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(48px, 8vw, 64px);
  height: clamp(48px, 8vw, 64px);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #c4a06a;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(8px);
}

.product-hero-ac-feature-icon svg {
  width: clamp(22px, 3.5vw, 30px);
  height: clamp(22px, 3.5vw, 30px);
}

.product-hero-ac-feature span:last-child {
  font-size: clamp(0.62rem, 1.1vw, 0.78rem);
  line-height: 1.3;
  font-weight: 600;
  color: #374151;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.product-hero-title-line {
  white-space: normal;
}

.product-hero-content h1,
.product-hero-content--ac h1,
.product-hero-content--kargo h1 {
  overflow-wrap: anywhere;
  word-break: break-word;
}

html:is([lang="ka"], [lang="ru"], [lang="az"]) .product-hero-content--ac,
html:is([lang="ka"], [lang="ru"], [lang="az"]) .product-hero-content--kargo {
  max-width: min(760px, 66%);
}

html:is([lang="ka"], [lang="ru"], [lang="az"]) .product-hero-content--ac h1,
html:is([lang="ka"], [lang="ru"], [lang="az"]) .page-self-order .product-hero-content--ac h1,
html:is([lang="ka"], [lang="ru"], [lang="az"]) .page-akilli-kargo .product-hero-content--ac h1,
html:is([lang="ka"], [lang="ru"], [lang="az"]) .page-vending .product-hero-content--ac h1,
html:is([lang="ka"], [lang="ru"], [lang="az"]) .page-food-locker .product-hero-content--ac h1,
html:is([lang="ka"], [lang="ru"], [lang="az"]) .page-kasamatik .product-hero-content--ac h1,
html:is([lang="en"]) .page-kasamatik .product-hero-content--ac h1,
html:is([lang="ka"], [lang="ru"], [lang="az"]) .page-doc-locker .product-hero-content--ac h1,
html:is([lang="ka"], [lang="ru"], [lang="az"]) .page-dc-charge .product-hero-content--ac h1 {
  font-size: clamp(1.7rem, 3.2vw, 2.7rem);
  line-height: 1.12;
  min-height: 0;
}

html:is([lang="ka"], [lang="ru"], [lang="az"], [lang="en"]) .page-kasamatik .product-hero-ac-lead,
html:is([lang="ka"], [lang="ru"], [lang="az"]) .product-hero-ac-lead {
  font-size: clamp(1.05rem, 2vw, 1.45rem);
}

html:is([lang="ka"], [lang="ru"], [lang="az"], [lang="en"]) .product-hero-ac-features,
html:is([lang="ka"], [lang="ru"], [lang="az"]) .page-self-order .product-hero-ac-features,
html:is([lang="ka"], [lang="ru"], [lang="az"]) .page-food-locker .product-hero-ac-features,
html:is([lang="ka"], [lang="ru"], [lang="az"], [lang="en"]) .page-kasamatik .product-hero-ac-features,
html:is([lang="ka"], [lang="ru"], [lang="az"]) .page-doc-locker .product-hero-ac-features {
  flex-wrap: wrap;
}

html:is([lang="ka"], [lang="ru"], [lang="az"]) .product-hero-ac-badge {
  white-space: normal;
  letter-spacing: 0.04em;
  max-width: 100%;
}

.product-hero-ac-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0;
  margin-bottom: 0.35rem;
}

.btn-ac-demo {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.72rem 1.45rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  color: #ffffff;
  background: #c4a06a;
  box-shadow: 0 8px 22px rgba(196, 160, 106, 0.34);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-ac-demo::after {
  content: "\2192";
  font-size: 1.05rem;
  line-height: 1;
}

.btn-ac-demo:hover {
  transform: translateY(-1px);
  background: #b08d58;
  box-shadow: 0 10px 26px rgba(196, 160, 106, 0.4);
}

/* Feature cards */
.ac-features {
  padding: 0 0.25rem 0;
  background: transparent;
}

.ac-features-inner {
  width: min(1600px, 99.5%);
  margin: 0 auto;
}

.ac-features-panel {
  padding: 2.25rem 2rem 2.5rem;
  border-radius: 0;
  background: #ffffff;
  border: 0;
  box-shadow: none;
}

.ac-features-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
}

.ac-feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.6rem 1.1rem 1.45rem;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid #ebe0d0;
  box-shadow: 0 4px 18px rgba(17, 24, 39, 0.06);
  text-align: center;
}

.ac-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 0.95rem;
  color: #c4a06a;
}

.ac-feature-icon svg {
  width: 36px;
  height: 36px;
}

.ac-feature-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.12rem;
  font-weight: 700;
  color: #111827;
}

.ac-feature-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #6b7280;
}

/* How it works ? sharp panel like Kargo */
.ac-how {
  padding: 0 0.25rem 0;
  background: transparent;
}

.ac-how-inner {
  width: min(1600px, 99.5%);
  margin: 0 auto;
}

.ac-how-panel {
  --how-pad: clamp(1.5rem, 2.5vw, 2.25rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(260px, 34%, 460px);
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  padding: var(--how-pad) clamp(1.5rem, 2.5vw, 2rem);
  background: #ffffff;
  border: 0;
  border-bottom: 1.5px solid #c4a06a;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
}

.ac-how-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ac-how-panel-title {
  margin: 0 0 clamp(1.75rem, 3vw, 2.75rem);
  font-size: clamp(1.4rem, 2.1vw, 1.95rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #111827;
}

.ac-how-steps {
  display: flex;
  align-items: flex-start;
  gap: clamp(0.15rem, 0.6vw, 0.6rem);
}

.ac-how-step {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.ac-how-step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(52px, 4.6vw, 72px);
  height: clamp(52px, 4.6vw, 72px);
  margin: 0 0 clamp(0.7rem, 1.4vw, 1.05rem);
  border-radius: 50%;
  background: #ffffff;
  color: #c4a06a;
  box-shadow: 0 12px 26px rgba(17, 24, 39, 0.1);
}

.ac-how-step-icon svg {
  width: 46%;
  height: 46%;
}

.ac-how-step-num {
  display: block;
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  font-weight: 800;
  line-height: 1;
  color: #c4a06a;
}

.ac-how-step h3 {
  margin: clamp(0.4rem, 0.8vw, 0.6rem) 0 0.35rem;
  font-size: clamp(0.95rem, 1.2vw, 1.15rem);
  font-weight: 700;
  line-height: 1.3;
  color: #111827;
}

.ac-how-step p {
  margin: 0;
  max-width: 14rem;
  font-size: clamp(0.84rem, 1.05vw, 0.98rem);
  line-height: 1.5;
  color: #6b7280;
}

.ac-how-arrow {
  flex: 0 0 auto;
  display: inline-flex;
  justify-content: center;
  margin-top: clamp(24px, 2.3vw, 34px);
  color: #c4a06a;
}

.ac-how-arrow svg {
  width: clamp(26px, 2.6vw, 40px);
  height: auto;
}

.ac-how-figure {
  align-self: end;
  margin: 2.5rem 0 0;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transform: translateY(1.25rem);
  border-radius: 18px;
  overflow: hidden;
  background: transparent;
}

.ac-how-figure img {
  display: block;
  width: 118%;
  max-width: none;
  height: auto;
  max-height: 480px;
  object-fit: contain;
  object-position: center bottom;
  border-radius: 18px;
}

/* Specs ? aligned with upper sharp panels */
.ac-specs {
  padding: 0 0.25rem 0;
  background: transparent;
}

.ac-specs-inner {
  width: min(1600px, 99.5%);
  margin: 0 auto;
}

.ac-specs-panel {
  padding: 2.25rem 2rem 2.5rem;
  border-radius: 0;
  background: #ffffff;
  border: 0;
  box-shadow: none;
}

.ac-specs-panel-title {
  margin: 0.35rem 0 1.6rem;
  padding-bottom: 0.7rem;
  position: relative;
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #111827;
}

.ac-specs-panel-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 46px;
  height: 3px;
  border-radius: 0;
  background: #c4a06a;
}

.ac-specs-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.75fr);
  gap: clamp(1.5rem, 3vw, 2.75rem);
  align-items: start;
}

.ac-specs-main {
  min-width: 0;
  padding-top: 2rem;
}

.ac-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem 1.35rem;
}

.ac-spec-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.ac-spec-icon {
  flex-shrink: 0;
  display: inline-flex;
  width: 28px;
  height: 28px;
  margin-top: 0.15rem;
  color: #c4a06a;
}

.ac-spec-icon svg {
  width: 100%;
  height: 100%;
}

.ac-spec-item h3 {
  margin: 0 0 0.25rem;
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--ac-ink);
}

.ac-spec-item p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--ac-muted);
}

.ac-specs-visual {
  margin: 0;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  background: #f1f1f3;
  overflow: hidden;
}

.ac-specs-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Usage ? Kargo/S?ramatik style with sand accent */
.ac-usage {
  padding: 0 0.25rem 0;
  background: transparent;
}

.ac-usage-inner {
  width: min(1600px, 99.5%);
  margin: 0 auto;
  padding: 2.75rem 1.75rem 3rem;
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 2rem 2.5rem;
  align-items: center;
  background: #2c2418;
  border-radius: 0;
}

.ac-usage-intro {
  padding-top: 0;
}

.ac-usage-title {
  margin: 0 0 0.95rem;
  font-size: clamp(1.65rem, 2.5vw, 2.15rem);
  line-height: 1.15;
  color: #ffffff;
  position: relative;
  padding-bottom: 0.85rem;
}

.ac-usage-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 52px;
  height: 3.5px;
  border-radius: 0;
  background: #c4a06a;
}

.ac-usage-desc {
  margin: 0 0 1.5rem;
  color: rgba(255, 244, 230, 0.88);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 16rem;
}

.ac-usage-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #e2c49a;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease, gap 0.2s ease;
}

.ac-usage-link::after {
  content: "\2192";
  font-size: 1rem;
  line-height: 1;
}

.ac-usage-link:hover {
  color: #ffffff;
  gap: 0.55rem;
}

.ac-usage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem;
}

.ac-usage-card {
  margin: 0;
  min-width: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
}

.ac-usage-card-media {
  position: relative;
  margin-bottom: 1.55rem;
}

.ac-usage-card-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  background: #1a1510;
}

.ac-usage-card-icon {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #c4a06a;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
}

.ac-usage-card-icon svg {
  width: 22px;
  height: 22px;
}

.ac-usage-card h3 {
  margin: 0 0 0.45rem;
  text-align: center;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 700;
}

.ac-usage-card p {
  margin: 0;
  text-align: center;
  color: rgba(255, 244, 230, 0.82);
  font-size: 0.84rem;
  line-height: 1.55;
}

/* Gallery */
.ac-gallery {
  padding: 0 0.25rem 2.5rem;
  background: transparent;
}

.ac-gallery-inner {
  width: min(1600px, 99.5%);
  margin: 0 auto;
  padding: 2.25rem 2rem 2.75rem;
  border-top: 1px solid #efe6d8;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.ac-gallery-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.ac-gallery-header .ac-section-title {
  margin: 0;
  font-size: clamp(1.65rem, 2.5vw, 2.15rem);
}

.ac-gallery-header .ac-section-title::after {
  background: #c4a06a;
  border-radius: 999px;
}

.ac-gallery-nav {
  display: flex;
  gap: 0.5rem;
}

.ac-gallery-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1.5px solid #e5e7eb;
  border-radius: 50%;
  background: #ffffff;
  color: #374151;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.ac-gallery-btn:hover {
  border-color: #c4a06a;
  color: #c4a06a;
}

.ac-gallery-track {
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 0.25rem;
}

.ac-gallery-track::-webkit-scrollbar {
  display: none;
}

.ac-gallery-item {
  flex: 0 0 calc((100% - 2rem) / 3);
  min-width: 200px;
  margin: 0;
  scroll-snap-align: start;
}

.ac-gallery-open {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
  border-radius: 12px;
  overflow: hidden;
}

.ac-gallery-open img,
.ac-gallery-item img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  object-fit: contain;
  background: #f3f4f6;
  transition: transform 0.25s ease;
}

.ac-gallery-open:hover img {
  transform: scale(1.04);
}

.ac-gallery-open:focus-visible {
  outline: 2px solid #c4a06a;
  outline-offset: 2px;
}

.ac-gallery-item figcaption {
  margin-top: 0.55rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #6b7280;
  text-align: center;
}

.ac-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 4.5rem;
  background: rgba(15, 23, 42, 0.9);
}

.ac-lightbox[hidden] {
  display: none;
}

.ac-lightbox.is-open {
  animation: ac-lightbox-fade 0.22s ease;
}

@keyframes ac-lightbox-fade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

body.ac-lightbox-open {
  overflow: hidden;
}

.ac-lightbox-content {
  margin: 0;
  max-width: min(1100px, 92vw);
  max-height: calc(100vh - 5rem);
  text-align: center;
}

.ac-lightbox-img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 8.5rem);
  margin: 0 auto;
  border-radius: 14px;
  object-fit: contain;
  background: #111827;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.ac-lightbox-caption {
  margin-top: 0.85rem;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
}

.ac-lightbox-close,
.ac-lightbox-nav {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.ac-lightbox-close:hover,
.ac-lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.22);
}

.ac-lightbox-close {
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.75rem;
  line-height: 1;
}

.ac-lightbox-nav {
  top: 50%;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.75rem;
  line-height: 1;
  transform: translateY(-50%);
}

.ac-lightbox-prev {
  left: 1.25rem;
}

.ac-lightbox-next {
  right: 1.25rem;
}

.ac-lightbox-nav:hover {
  transform: translateY(-50%) scale(1.04);
}

/* Footer CTA */
.footer-cta--ac {
  background:
    radial-gradient(ellipse 55% 90% at 88% 50%, rgba(196, 160, 106, 0.28), transparent 62%),
    #14110e;
  min-height: 0;
}

.footer-cta-inner--ac {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem 3rem;
  padding: 3.25rem 0;
  min-height: 0;
}

.footer-cta-inner--ac:has(.footer-cta-ac-device) {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.8fr) auto;
  gap: 1.5rem;
  min-height: clamp(280px, 30vw, 360px);
}

.footer-cta--ac .footer-cta-content {
  max-width: min(36rem, 100%);
  flex: 1 1 auto;
}

.footer-cta--ac .footer-cta-content h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.55rem, 2.8vw, 2.35rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #fff;
}

.footer-cta--ac .footer-cta-content p {
  margin: 0;
  max-width: 32rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
  line-height: 1.65;
}

.footer-cta-ac-device {
  margin: 0;
  justify-self: center;
  border-radius: 16px;
  overflow: hidden;
  background: transparent;
}

.footer-cta-ac-device img {
  display: block;
  width: min(260px, 100%);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.45));
}

.footer-cta-ac-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  flex: 0 0 auto;
}

.page-ac-charge .footer-cta-ac-actions .btn-ac-primary {
  background: #c4a06a;
  box-shadow: 0 10px 24px rgba(196, 160, 106, 0.28);
}

.page-ac-charge .footer-cta-ac-actions .btn-ac-primary:hover {
  background: #b08d58;
}

.page-ac-charge .footer-cta--ac .ac-accent {
  color: #c4a06a;
}

@media (max-width: 1200px) {
  .ac-features-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ac-usage-inner {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 1.75rem;
    padding: 2.25rem 1.25rem 2.5rem;
  }

  .ac-usage-desc {
    max-width: 28rem;
  }

  .ac-usage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.35rem 1rem;
  }

  .ac-gallery-item {
    flex: 0 0 calc((100% - 2rem) / 3);
  }
}

@media (max-width: 1024px) {
  .ac-gallery-inner {
    width: 100%;
    padding: 2rem 1.25rem 2.25rem;
  }

  .product-hero-content--ac {
    max-width: 100%;
  }

  .product-hero--ac .product-hero-media--ac {
    object-position: center center;
  }

  .product-hero--ac .product-hero-stage::before {
    display: none;
  }

  .ac-how-figure {
    overflow: hidden;
  }

  .ac-how-panel,
  .ac-specs-layout {
    grid-template-columns: 1fr;
  }

  .ac-how-panel,
  .ac-features-panel,
  .ac-specs-panel {
    padding: 2rem 1.25rem 2.25rem;
    border-radius: 0;
  }

  .ac-how-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem 1rem;
  }

  .ac-how-arrow {
    display: none;
  }

  .ac-how-figure {
    order: -1;
    margin: 0;
    transform: none;
    justify-content: center;
    max-width: 100%;
  }

  .ac-how-figure img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 280px;
    object-fit: contain;
  }

  .ac-specs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ac-specs-visual {
    width: 100%;
    max-width: 420px;
    justify-self: center;
  }

  .footer-cta-inner--ac,
  .footer-cta-inner--ac:has(.footer-cta-ac-device) {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    min-height: 0;
    padding: 2.5rem 0;
  }

  .footer-cta--ac .footer-cta-content {
    max-width: none;
  }

  .footer-cta--ac .footer-cta-content p {
    margin-inline: auto;
  }

  .footer-cta-ac-actions {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .ac-features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ac-usage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem 0.65rem;
  }

  .ac-how-steps,
  .ac-specs-grid {
    grid-template-columns: 1fr;
  }

  .ac-gallery {
    padding-bottom: 2rem;
  }

  .ac-gallery-item {
    flex: 0 0 calc((100% - 1rem) / 2);
    min-width: 140px;
  }

  .ac-lightbox {
    padding: 1.25rem 1rem 2rem;
  }

  .ac-lightbox-nav {
    display: none;
  }

  .ac-lightbox-close {
    top: 0.75rem;
    right: 0.75rem;
  }
}

@media (max-width: 480px) {
  .ac-features-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== Ak?ll? Kargo Dolab? ? AC layout + orange accent ========== */
.page-akilli-kargo {
  --ac-blue: #de4020;
  --ac-blue-dark: #c4371c;
  --ac-ink: #0f172a;
  --ac-muted: #64748b;
  --ac-line: #fde4df;
  --ac-soft: #fff5f2;
  --akd-orange: #de4020;
  --akd-orange-dark: #c4371c;
}

.page-akilli-kargo .ac-accent {
  color: var(--akd-orange);
}

.page-akilli-kargo .ac-section-title {
  margin: 0 0 1.75rem;
  font-size: clamp(1.55rem, 2.6vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ac-ink);
}

.page-akilli-kargo .ac-section-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin-top: 0.65rem;
  border-radius: 999px;
  background: var(--akd-orange);
}

.page-akilli-kargo .product-hero--ac .product-hero-media--ac {
  object-fit: cover;
  object-position: 62% center;
  background: transparent;
}

.page-akilli-kargo .product-hero--ac .product-hero-stage::before {
  /* Sadece sol metin alan?; ?al?nabildi?i? sonras? resim net */
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(255, 255, 255, 0.55) 22%,
    rgba(255, 255, 255, 0.18) 34%,
    rgba(255, 255, 255, 0) 42%
  );
}

.page-akilli-kargo .product-hero-content--ac {
  max-width: min(520px, 42%);
}

.page-akilli-kargo .product-hero-content--ac h1 {
  /* 2 satırlı başlık — kargo kiosk gibi lead hemen altında */
  min-height: 0;
}

.page-akilli-kargo .product-hero-ac-desc {
  max-width: 28rem;
}

.page-akilli-kargo .product-hero-ac-badge svg,
.page-akilli-kargo .product-hero-ac-accent,
.page-akilli-kargo .product-hero-ac-feature-icon,
.page-akilli-kargo .ac-feature-icon,
.page-akilli-kargo .ac-how-step-icon,
.page-akilli-kargo .ac-how-step-num,
.page-akilli-kargo .ac-how-arrow,
.page-akilli-kargo .ac-spec-icon {
  color: var(--akd-orange);
}

.page-akilli-kargo .btn-ac-demo {
  background: var(--akd-orange);
  box-shadow: 0 8px 22px rgba(222, 64, 32, 0.34);
}

.page-akilli-kargo .btn-ac-demo:hover {
  background: var(--akd-orange-dark);
  box-shadow: 0 10px 26px rgba(222, 64, 32, 0.4);
}

.page-akilli-kargo .btn-ac-primary {
  background: var(--akd-orange);
  box-shadow: 0 10px 24px rgba(222, 64, 32, 0.28);
}

.page-akilli-kargo .btn-ac-primary:hover {
  background: var(--akd-orange-dark);
}

.page-akilli-kargo .btn-ac-outline {
  color: var(--akd-orange);
  border-color: var(--akd-orange);
}

.page-akilli-kargo .ac-feature-card {
  border-color: #f5c4b8;
}

.page-akilli-kargo .ac-how-panel {
  border-bottom-color: var(--akd-orange);
}

.page-akilli-kargo .ac-specs-panel-title::after,
.page-akilli-kargo .ac-usage-title::after,
.page-akilli-kargo .ac-gallery-header .ac-section-title::after {
  background: var(--akd-orange);
}

.page-akilli-kargo .ac-usage-inner {
  background: #2a160c;
}

.page-akilli-kargo .ac-usage-desc {
  color: rgba(255, 237, 213, 0.9);
}

.page-akilli-kargo .ac-usage-link {
  color: #f08a72;
}

.page-akilli-kargo .ac-usage-link:hover {
  color: #ffffff;
}

.page-akilli-kargo .ac-usage-card-icon {
  background: var(--akd-orange);
}

.page-akilli-kargo .ac-usage-card p {
  color: rgba(255, 237, 213, 0.82);
}

.page-akilli-kargo .ac-gallery-inner {
  border-top-color: #fde4df;
  box-shadow: none;
}

.page-akilli-kargo .ac-gallery-header .ac-section-title::after {
  display: none;
}

.page-akilli-kargo .ac-gallery-track {
  justify-content: flex-start;
}

.page-akilli-kargo .ac-gallery-item {
  flex: 0 0 calc((100% - 4rem) / 5);
  min-width: 160px;
}

.page-akilli-kargo .ac-gallery-open {
  border-radius: 0;
}

.page-akilli-kargo .ac-gallery-open img,
.page-akilli-kargo .ac-gallery-item img {
  aspect-ratio: 4 / 3;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
  background: transparent;
}

.page-akilli-kargo .ac-gallery-btn:hover {
  border-color: var(--akd-orange);
  color: var(--akd-orange);
}

.page-akilli-kargo .ac-gallery-open:focus-visible {
  outline-color: var(--akd-orange);
}

.page-akilli-kargo .footer-cta--ac {
  background:
    radial-gradient(ellipse 50% 80% at 70% 50%, rgba(222, 64, 32, 0.35), transparent 65%),
    #1a0c06;
}

.page-akilli-kargo .footer-cta-ac-device img {
  object-fit: contain;
}

.page-akilli-kargo .ac-specs-layout {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 1fr);
  align-items: stretch;
}

.page-akilli-kargo .ac-specs-visual {
  aspect-ratio: auto;
  min-height: 100%;
  align-self: stretch;
  background: #f5f5f7;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-akilli-kargo .ac-specs-visual img {
  width: 108%;
  height: 108%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.page-akilli-kargo .ac-specs-main {
  padding-top: 0;
}

.page-akilli-kargo .ac-specs-panel-title {
  margin-top: 0;
}

/* Ak?ll? Kargo ? tablet (iPad) */
@media (max-width: 1024px) {
  .page-akilli-kargo .product-hero-content--ac {
    max-width: 100%;
  }

  .page-akilli-kargo .product-hero--ac .product-hero-media--ac {
    object-position: center 40%;
  }

  .page-akilli-kargo .product-hero--ac .product-hero-stage::before {
    display: none;
  }

  .page-akilli-kargo .product-hero-ac-features {
    margin-top: 1.5rem;
    gap: 0.75rem 0.65rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .page-akilli-kargo .ac-how-figure img {
    max-height: 340px;
    width: min(100%, 520px);
    margin-inline: auto;
  }

  .page-akilli-kargo .ac-specs-layout {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .page-akilli-kargo .ac-specs-visual {
    width: 100%;
    max-width: none;
    min-height: 0;
    aspect-ratio: 16 / 10;
    justify-self: stretch;
  }

  .page-akilli-kargo .ac-specs-visual img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
  }

  .page-akilli-kargo .ac-gallery-item {
    flex: 0 0 calc((100% - 2rem) / 3);
    min-width: 150px;
  }

  .page-akilli-kargo .ac-usage-inner {
    padding: 2.25rem 1.35rem 2.5rem;
  }

  .page-akilli-kargo .footer-cta-ac-actions {
    width: 100%;
    max-width: 22rem;
  }

  .page-akilli-kargo .footer-cta-ac-actions .btn-ac-primary,
  .page-akilli-kargo .footer-cta-ac-actions .btn-ac-ghost {
    width: 100%;
    justify-content: center;
  }
}

/* Ak?ll? Kargo ? mobile */
@media (max-width: 768px) {
  .page-akilli-kargo .product-hero-content--ac {
    max-width: 100%;
  }

  .page-akilli-kargo .product-hero--ac .product-hero-stage::before {
    display: none;
  }

  .page-akilli-kargo .product-hero--ac .product-hero-media--ac {
    object-position: center 40%;
  }

  .page-akilli-kargo .product-hero-content--ac h1 br {
    display: none;
  }

  .page-akilli-kargo .product-hero-ac-desc {
    max-width: none;
  }

  .page-akilli-kargo .product-hero-ac-features {
    margin-top: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  .page-akilli-kargo .product-hero-ac-feature {
    flex: 1 1 calc(50% - 0.5rem);
    min-width: calc(50% - 0.5rem);
    max-width: calc(50% - 0.35rem);
  }

  .page-akilli-kargo .ac-features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-akilli-kargo .ac-how-steps {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }

  .page-akilli-kargo .ac-how-figure {
    margin-bottom: 0.5rem;
  }

  .page-akilli-kargo .ac-how-figure img {
    max-height: 240px;
    width: 100%;
  }

  .page-akilli-kargo .ac-specs-panel {
    padding: 1.75rem 1.1rem 2rem;
  }

  .page-akilli-kargo .ac-specs-visual {
    aspect-ratio: 4 / 3;
    border-radius: 14px;
  }

  .page-akilli-kargo .ac-specs-grid {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  .page-akilli-kargo .ac-gallery-inner {
    padding: 1.75rem 1.1rem 2rem;
  }

  .page-akilli-kargo .ac-gallery-item {
    flex: 0 0 calc((100% - 1rem) / 2);
    min-width: 140px;
  }

  .page-akilli-kargo .ac-usage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-akilli-kargo .footer-cta-inner--ac {
    padding: 2rem 0;
    gap: 1.25rem;
  }

  .page-akilli-kargo .footer-cta--ac .footer-cta-content h2 {
    font-size: clamp(1.35rem, 5.5vw, 1.85rem);
  }
}

@media (max-width: 480px) {
  .page-akilli-kargo .product-hero-ac-features {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem 0.4rem;
  }

  .page-akilli-kargo .product-hero-ac-feature {
    flex: 1 1 calc(50% - 0.4rem);
    min-width: calc(50% - 0.4rem);
    max-width: calc(50% - 0.25rem);
  }

  .page-akilli-kargo .ac-features-grid {
    grid-template-columns: 1fr;
  }

  .page-akilli-kargo .ac-gallery-item {
    flex: 0 0 78%;
    min-width: 220px;
  }

  .page-akilli-kargo .ac-feature-card {
    padding: 1.35rem 1rem 1.25rem;
  }
}

/* ========== Vending Machine — AC/AKD layout + red accent ========== */
.page-vending {
  --ac-blue: #e11d2e;
  --ac-blue-dark: #c41222;
  --ac-ink: #0f172a;
  --ac-muted: #64748b;
  --ac-line: #fde4e6;
  --ac-soft: #fff5f6;
  --vm-red: #e11d2e;
  --vm-red-dark: #c41222;
}

.page-vending .ac-accent {
  color: var(--vm-red);
}

.page-vending .product-hero--ac .product-hero-media--ac {
  object-fit: cover;
  object-position: 72% center;
}

.page-vending .product-hero--ac .product-hero-stage::before {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.88) 0%,
    rgba(255, 255, 255, 0.62) 22%,
    rgba(255, 255, 255, 0.2) 36%,
    rgba(255, 255, 255, 0) 48%
  );
}

.page-vending .product-hero-content--ac {
  max-width: min(560px, 48%);
}

.page-vending .product-hero-headline-row {
  display: block;
  margin-bottom: 1.25rem;
}

.page-vending .product-hero-headline-row h1 {
  margin: 0 0 0.85rem;
}

.page-vending .product-hero-headline-row .product-hero-tagline {
  margin: 0;
  max-width: 34rem;
}

.page-vending .product-hero-content--ac h1 {
  min-height: 0;
}

.page-vending .product-hero-ac-desc {
  max-width: 28rem;
}

.page-vending .product-hero-ac-badge svg,
.page-vending .product-hero-ac-accent,
.page-vending .product-hero-ac-feature-icon,
.page-vending .ac-feature-icon,
.page-vending .ac-how-step-icon,
.page-vending .ac-how-step-num,
.page-vending .ac-how-arrow,
.page-vending .ac-spec-icon {
  color: var(--vm-red);
}

.page-vending .btn-ac-demo {
  background: var(--vm-red);
  box-shadow: 0 8px 22px rgba(225, 29, 46, 0.34);
}

.page-vending .btn-ac-demo:hover {
  background: var(--vm-red-dark);
  box-shadow: 0 10px 26px rgba(225, 29, 46, 0.4);
}

.page-vending .btn-ac-primary {
  background: var(--vm-red);
  box-shadow: 0 10px 24px rgba(225, 29, 46, 0.28);
}

.page-vending .btn-ac-primary:hover {
  background: var(--vm-red-dark);
}

.page-vending .btn-ac-outline {
  color: var(--vm-red);
  border-color: var(--vm-red);
}

.page-vending .ac-feature-card {
  border-color: #f5c4c9;
}

.page-vending .ac-how-panel {
  border-bottom-color: var(--vm-red);
}

.page-vending .ac-usage-title::after,
.page-vending .ac-gallery-header .ac-section-title::after {
  background: var(--vm-red);
}

.page-vending .ac-specs-panel-title {
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
  text-align: center;
}

.page-vending .ac-specs-panel-title::after {
  display: none;
}

.page-vending .ac-specs-layout {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: stretch;
  justify-content: start;
  gap: 1.35rem;
  column-gap: 1.75rem;
}

.page-vending .ac-specs-main {
  order: 2;
  padding-top: 0;
  padding-left: 0;
  margin-left: 0;
  max-width: none;
  width: 100%;
  justify-self: stretch;
  text-align: center;
}

.page-vending .ac-specs-visual {
  order: 1;
  aspect-ratio: auto !important;
  min-height: 0;
  width: auto;
  max-width: 420px;
  height: auto;
  justify-self: start;
  align-self: stretch;
  margin: 0;
  background: #0a0608;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  transform: none;
  border-radius: 18px;
  overflow: hidden;
}

.page-vending .ac-specs-visual img {
  display: block;
  width: auto;
  height: 100%;
  min-height: 0;
  max-width: 420px;
  max-height: none;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
}

.page-vending .ac-specs-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: center;
  text-align: center;
}

.page-vending .ac-spec-item {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-vending .ac-usage-inner {
  background: #2a0c12;
}

.page-vending .ac-usage-title::after {
  background: rgba(255, 255, 255, 0.85);
}

.page-vending .ac-usage-desc {
  color: rgba(255, 237, 237, 0.9);
}

.page-vending .ac-usage-link {
  color: #f08a96;
}

.page-vending .ac-usage-link:hover {
  color: #ffffff;
}

.page-vending .ac-usage-card-icon {
  background: var(--vm-red);
}

.page-vending .ac-gallery-inner {
  border-top-color: #fde4e6;
  box-shadow: none;
}

.page-vending .ac-gallery-header .ac-section-title::after {
  display: none;
}

.page-vending .ac-gallery-btn:hover {
  border-color: var(--vm-red);
  color: var(--vm-red);
}

.page-vending .ac-gallery-open:focus-visible {
  outline-color: var(--vm-red);
}

.page-vending .footer-cta--ac {
  background:
    radial-gradient(ellipse 50% 80% at 70% 50%, rgba(225, 29, 46, 0.35), transparent 65%),
    #1a0608;
}

@media (max-width: 1024px) {
  .page-vending .product-hero-content--ac {
    max-width: 100%;
  }

  .page-vending .product-hero--ac .product-hero-media--ac {
    object-position: center 40%;
  }

  .page-vending .product-hero--ac .product-hero-stage::before {
    display: none;
  }

  .page-vending .product-hero-ac-features {
    margin-top: 1.5rem;
    gap: 0.75rem 0.65rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .page-vending .ac-how-figure img {
    max-height: 340px;
    width: min(100%, 520px);
    margin-inline: auto;
  }

  .page-vending .ac-specs-layout {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .page-vending .ac-specs-visual {
    order: 1;
    width: min(100%, 360px);
    max-width: 360px;
    min-height: 0;
    aspect-ratio: auto;
    justify-self: center;
    align-self: center;
    margin: 0;
    transform: none;
  }

  .page-vending .ac-specs-visual img {
    width: 100%;
    height: auto;
    max-width: 100%;
    min-height: 0;
    max-height: 320px;
    object-fit: cover;
    object-position: center;
  }

  .page-vending .ac-specs-main {
    order: 2;
  }

  .page-vending .ac-specs-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .page-vending .product-hero-content--ac {
    max-width: 100%;
  }

  .page-vending .product-hero-headline-row {
    margin-bottom: 1rem;
  }

  .page-vending .product-hero-content--ac h1 br {
    display: none;
  }

  .page-vending .product-hero-ac-features {
    margin-top: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  .page-vending .product-hero-ac-feature {
    flex: 1 1 calc(50% - 0.5rem);
    min-width: calc(50% - 0.5rem);
    max-width: calc(50% - 0.35rem);
  }

  .page-vending .ac-features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-vending .ac-specs-visual {
    width: min(100%, 280px);
    max-width: 280px;
    aspect-ratio: auto;
    border-radius: 14px;
    margin: 0;
    transform: none;
  }

  .page-vending .ac-specs-visual img {
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: 240px;
  }

  .page-vending .ac-specs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ========== Kasamatik ? AC/AKD layout + blue accent ========== */
.page-kasamatik {
  --ac-blue: #324766;
  --ac-blue-dark: #283a54;
  --ac-ink: #0f172a;
  --ac-muted: #64748b;
  --ac-line: #e8ecfb;
  --ac-soft: #f5f7ff;
  --km-blue: #324766;
  --km-blue-dark: #283a54;
}

.page-kasamatik .ac-accent {
  color: var(--km-blue);
}

.page-kasamatik .ac-section-title {
  margin: 0 0 1.75rem;
  font-size: clamp(1.55rem, 2.6vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ac-ink);
}

.page-kasamatik .ac-section-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin-top: 0.65rem;
  border-radius: 999px;
  background: var(--km-blue);
}

.page-kasamatik .product-hero--ac .product-hero-media--ac {
  object-fit: cover;
  object-position: 62% center;
  background: transparent;
}

.page-kasamatik .product-hero--ac .product-hero-stage::before {
  /* Sadece sol metin alan?; cihaz taraf? net */
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.78) 0%,
    rgba(255, 255, 255, 0.48) 22%,
    rgba(255, 255, 255, 0.12) 36%,
    rgba(255, 255, 255, 0) 44%
  );
}

.page-kasamatik .product-hero-content--ac {
  max-width: min(540px, 46%);
}

/* S?ramatik hero tipografisi + ?st yerle?im */
.page-kasamatik .product-hero-content--ac h1 {
  min-height: 0;
  margin: 0 0 0.85rem;
  font-size: clamp(2.85rem, 5.5vw, 4.25rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: #183B8C;
}

.page-kasamatik .product-hero-ac-lead {
  margin: 0 0 1.25rem;
  max-width: 34rem;
  font-size: clamp(1.75rem, 3.4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: #0f1f4d;
}

.page-kasamatik .product-hero-ac-desc {
  max-width: 34rem;
  margin: 0 0 0.75rem;
  font-size: 1rem;
  line-height: 1.65;
  color: #4b5563;
}

.page-kasamatik .product-hero-ac-features {
  flex-wrap: nowrap;
  max-width: 100%;
  gap: 0.4rem 0.3rem;
  margin-top: auto;
  margin-bottom: 1.1rem;
}

.page-kasamatik .product-hero-ac-feature {
  flex: 1 1 0;
  min-width: 0;
  max-width: none;
}

.page-kasamatik .product-hero-ac-actions {
  margin-top: 0;
}

.page-kasamatik .product-hero-ac-badge,
.page-kasamatik .product-hero-ac-feature-icon {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: rgba(255, 255, 255, 0.88);
}

.page-kasamatik .product-hero-ac-accent {
  color: var(--km-blue);
}

.page-kasamatik .product-hero-ac-badge svg,
.page-kasamatik .product-hero-ac-feature-icon,
.page-kasamatik .ac-feature-icon,
.page-kasamatik .ac-how-step-icon,
.page-kasamatik .ac-how-step-num,
.page-kasamatik .ac-how-arrow,
.page-kasamatik .ac-spec-icon {
  color: var(--km-blue);
}

.page-kasamatik .btn-ac-demo {
  background: var(--km-blue);
  box-shadow: 0 8px 22px rgba(50, 71, 102, 0.34);
}

.page-kasamatik .btn-ac-demo:hover {
  background: var(--km-blue-dark);
  box-shadow: 0 10px 26px rgba(50, 71, 102, 0.4);
}

.page-kasamatik .btn-ac-primary {
  background: var(--km-blue);
  box-shadow: 0 10px 24px rgba(50, 71, 102, 0.28);
}

.page-kasamatik .btn-ac-primary:hover {
  background: var(--km-blue-dark);
}

.page-kasamatik .btn-ac-outline {
  color: var(--km-blue);
  border-color: var(--km-blue);
}

.page-kasamatik .ac-feature-card {
  border-color: #dbe3ff;
}

.page-kasamatik .ac-features-grid {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

@media (max-width: 1200px) {
  .page-kasamatik .ac-features-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.page-kasamatik .ac-how-panel {
  border-bottom-color: var(--km-blue);
}

.page-kasamatik .ac-how-figure {
  align-self: center;
  justify-self: center;
  margin: 0 auto;
  width: min(100%, 320px);
  border-radius: 24px;
  overflow: hidden;
  background: #eef1f5;
  transform: none;
}

.page-kasamatik .ac-how-figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
}

.page-kasamatik .ac-usage-title::after {
  background: rgba(255, 255, 255, 0.85);
}

.page-kasamatik .ac-specs-panel-title {
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.page-kasamatik .ac-specs-panel-title::after {
  display: none;
}

.page-kasamatik .ac-specs-layout {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  justify-content: start;
  column-gap: 1.1rem;
  gap: 0.75rem 1.1rem;
}

.page-kasamatik .ac-specs-main {
  order: 2;
  padding-top: 0;
  padding-left: 0;
  margin-left: 0;
  max-width: 44rem;
  width: 100%;
  justify-self: center;
  text-align: center;
}

.page-kasamatik .ac-specs-panel-title {
  text-align: center;
}

.page-kasamatik .ac-specs-visual {
  order: 1;
  aspect-ratio: auto;
  min-height: 0;
  width: min(100%, 400px);
  max-width: 400px;
  justify-self: start;
  align-self: center;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-kasamatik .ac-specs-visual img {
  width: 100%;
  max-width: 400px;
  max-height: 580px;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.page-kasamatik .ac-specs-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: center;
  text-align: center;
}

.page-kasamatik .ac-spec-item {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-kasamatik .ac-usage {
  background: transparent;
  padding: 0 0.25rem;
}

.page-kasamatik .ac-usage-inner {
  width: min(1600px, 99.5%);
  margin: 0 auto;
  background: #293039;
  border-color: #293039;
}

.page-kasamatik .ac-usage-desc {
  color: rgba(236, 242, 250, 0.9);
}

.page-kasamatik .ac-usage-link {
  color: #c5d4e8;
}

.page-kasamatik .ac-usage-link:hover {
  color: #ffffff;
}

.page-kasamatik .ac-usage-card-icon {
  background: var(--km-blue);
}

.page-kasamatik .ac-usage-card p {
  color: rgba(230, 236, 255, 0.82);
}

.page-kasamatik .ac-gallery-inner {
  border-top-color: #e8ecfb;
  box-shadow: none;
}

.page-kasamatik .ac-gallery-header .ac-section-title::after {
  display: none;
}

.page-kasamatik .ac-gallery-track {
  justify-content: flex-start;
}

.page-kasamatik .ac-gallery-item {
  flex: 0 0 calc((100% - 3rem) / 4);
  min-width: 160px;
}

.page-kasamatik .ac-gallery-open {
  border-radius: 0;
}

.page-kasamatik .ac-gallery-open img,
.page-kasamatik .ac-gallery-item img {
  aspect-ratio: 4 / 3;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
  background: transparent;
}

.page-kasamatik .ac-gallery-btn:hover {
  border-color: var(--km-blue);
  color: var(--km-blue);
}

.page-kasamatik .ac-gallery-open:focus-visible {
  outline-color: var(--km-blue);
}

.page-kasamatik .footer-cta--ac {
  background:
    radial-gradient(ellipse 50% 80% at 70% 50%, rgba(59, 91, 255, 0.35), transparent 65%),
    #060b1f;
}

.page-kasamatik .footer-cta--ac .ac-accent {
  color: #8ea2ff;
}

@media (max-width: 1024px) {
  .page-kasamatik .product-hero-content--ac {
    max-width: 100%;
  }

  .page-kasamatik .product-hero--ac .product-hero-media--ac {
    object-fit: cover;
    object-position: center center;
  }

  .page-kasamatik .product-hero--ac .product-hero-stage::before {
    display: none;
  }

  .page-kasamatik .ac-how-figure img {
    max-height: 320px;
    width: min(100%, 420px);
    margin-inline: auto;
  }

  .page-kasamatik .ac-specs-layout {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .page-kasamatik .ac-specs-visual {
    order: 1;
    width: min(100%, 320px);
    max-width: 320px;
    min-height: 0;
    aspect-ratio: auto;
    justify-self: center;
  }

  .page-kasamatik .ac-specs-main {
    order: 2;
  }

  .page-kasamatik .ac-specs-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .page-kasamatik .ac-gallery-item {
    flex: 0 0 calc((100% - 2rem) / 3);
    min-width: 150px;
  }

  .page-kasamatik .footer-cta-ac-actions {
    width: 100%;
    max-width: 22rem;
  }

  .page-kasamatik .footer-cta-ac-actions .btn-ac-primary,
  .page-kasamatik .footer-cta-ac-actions .btn-ac-ghost {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .page-kasamatik .product-hero-content--ac {
    max-width: 100%;
  }

  .page-kasamatik .product-hero--ac .product-hero-stage::before {
    display: none;
  }

  .page-kasamatik .product-hero--ac .product-hero-media--ac {
    object-fit: cover;
    object-position: center center;
    background: transparent;
  }

  .page-kasamatik .product-hero-content--ac h1 {
    font-size: clamp(1.85rem, 7.5vw, 2.6rem);
    margin-bottom: 0.65rem;
  }

  .page-kasamatik .product-hero-content--ac h1 br {
    display: none;
  }

  .page-kasamatik .product-hero-ac-lead {
    font-size: clamp(1.1rem, 4.2vw, 1.35rem);
    margin-bottom: 0.75rem;
  }

  .page-kasamatik .product-hero-ac-desc {
    max-width: none;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
  }

  .page-kasamatik .product-hero-ac-features {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .page-kasamatik .product-hero-ac-feature {
    flex: 1 1 calc(50% - 0.5rem);
    min-width: calc(50% - 0.5rem);
    max-width: calc(50% - 0.35rem);
  }

  .page-kasamatik .product-hero-ac-actions {
    margin-top: 1.5rem;
  }

  .page-kasamatik .ac-features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-kasamatik .ac-how-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-kasamatik .ac-how-figure img {
    max-height: 260px;
    width: 100%;
  }

  .page-kasamatik .ac-specs-visual {
    width: min(100%, 220px);
    max-width: 220px;
    aspect-ratio: auto;
    border-radius: 14px;
  }

  .page-kasamatik .ac-specs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-kasamatik .ac-gallery-item {
    flex: 0 0 calc((100% - 1rem) / 2);
  }

  .page-kasamatik .ac-usage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-kasamatik .footer-cta-inner--ac {
    padding: 2rem 0;
  }
}

@media (max-width: 480px) {
  .page-kasamatik .product-hero-ac-features {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem 0.4rem;
  }

  .page-kasamatik .product-hero-ac-feature {
    flex: 1 1 calc(50% - 0.4rem);
    min-width: calc(50% - 0.4rem);
    max-width: calc(50% - 0.25rem);
  }

  .page-kasamatik .ac-features-grid {
    grid-template-columns: 1fr;
  }

  .page-kasamatik .ac-gallery-item {
    flex: 0 0 78%;
    min-width: 220px;
  }
}

/* ========== Self Order Kiosk (Siparis Kiosku) ========== */
.page-self-order {
  --ac-blue: #6b4eff;
  --ac-blue-dark: #5a3fe0;
  --ac-ink: #0f172a;
  --ac-muted: #64748b;
  --ac-line: #e8ecfb;
  --ac-soft: #f5f7ff;
  --so-purple: #6b4eff;
  --so-purple-dark: #5a3fe0;
}

.page-self-order .ac-accent {
  color: var(--so-purple);
}

.page-self-order .ac-section-title {
  margin: 0 0 1.75rem;
  font-size: clamp(1.55rem, 2.6vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ac-ink);
}

.page-self-order .ac-section-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin-top: 0.65rem;
  border-radius: 999px;
  background: var(--so-purple);
}

.page-self-order .product-hero--ac .product-hero-media--ac {
  object-fit: cover;
  object-position: 68% center;
  background: transparent;
  filter: none;
  -webkit-filter: none;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.page-self-order .product-hero--ac .product-hero-stage::before {
  /* Sadece sol metin alan?; kiosk taraf? net */
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.72) 0%,
    rgba(255, 255, 255, 0.4) 18%,
    rgba(255, 255, 255, 0.1) 30%,
    rgba(255, 255, 255, 0) 38%
  );
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  filter: none;
}

.page-self-order .product-hero-content--ac {
  max-width: min(520px, 42%);
}

.page-self-order .product-hero-content--ac h1 {
  /* AKD ile aynı dikey ritim — ikon / demo konumu hizalı */
  min-height: 0;
  margin: 0 0 1rem;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #183b8c;
}

.page-self-order .product-hero-ac-accent {
  color: var(--so-purple);
}

.page-self-order .product-hero-ac-lead {
  margin: 0 0 1rem;
  max-width: 34rem;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 700;
  line-height: 1.4;
  color: #0f1f4d;
}

.page-self-order .product-hero-ac-desc {
  max-width: 28rem;
  margin: 0 0 0.75rem;
  font-size: 1rem;
  line-height: 1.65;
  color: #4b5563;
}

.page-self-order .product-hero-ac-features {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.45rem 0.35rem;
  margin-top: auto;
  margin-bottom: 1.1rem;
  padding-top: 1rem;
  width: 100%;
  max-width: 34rem;
}

.page-self-order .product-hero-ac-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  flex: 1 1 0;
  min-width: 0;
  max-width: none;
  text-align: center;
}

.page-self-order .product-hero-ac-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0;
  margin-bottom: 0.35rem;
}

.page-self-order .product-hero-ac-badge,
.page-self-order .product-hero-ac-feature-icon {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: rgba(255, 255, 255, 0.92);
}

.page-self-order .product-hero-ac-badge {
  color: var(--so-purple);
}

.page-self-order .product-hero-ac-badge svg,
.page-self-order .product-hero-ac-feature-icon,
.page-self-order .ac-feature-icon,
.page-self-order .ac-how-step-icon,
.page-self-order .ac-how-step-num,
.page-self-order .ac-how-arrow,
.page-self-order .ac-spec-icon {
  color: var(--so-purple);
}

.page-self-order .btn-ac-demo {
  background: var(--so-purple);
  box-shadow: 0 8px 22px rgba(107, 78, 255, 0.34);
}

.page-self-order .btn-ac-demo:hover {
  background: var(--so-purple-dark);
  box-shadow: 0 10px 26px rgba(107, 78, 255, 0.42);
}

.page-self-order .btn-ac-primary {
  background: var(--so-purple);
  box-shadow: 0 10px 24px rgba(107, 78, 255, 0.28);
}

.page-self-order .btn-ac-primary:hover {
  background: var(--so-purple-dark);
}

.page-self-order .btn-ac-outline {
  color: var(--so-purple);
  border-color: var(--so-purple);
}

.page-self-order .btn-ac-outline:hover {
  box-shadow: 0 8px 18px rgba(107, 78, 255, 0.14);
}

.page-self-order .ac-feature-card {
  border-color: #e4e0ff;
}

.page-self-order .ac-how-panel {
  border-bottom-color: var(--so-purple);
  grid-template-columns: minmax(0, 1fr) clamp(300px, 38%, 520px);
}

.page-self-order .ac-how-figure {
  align-self: center;
  margin: 0;
  width: 100%;
  transform: none;
}

.page-self-order .ac-how-figure img {
  width: 100%;
  max-width: 100%;
  max-height: 560px;
  object-fit: contain;
  object-position: center;
}

.page-self-order .ac-usage-title::after {
  background: var(--so-purple);
}

.page-self-order .ac-specs-panel-title {
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
  text-align: center;
}

.page-self-order .ac-specs-panel-title::after {
  display: none;
}

.page-self-order .ac-specs-layout {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  justify-content: start;
  column-gap: 1.1rem;
  gap: 0.75rem 1.1rem;
}

.page-self-order .ac-specs-main {
  order: 2;
  padding-top: 0;
  padding-left: 0;
  margin-left: 0;
  max-width: 44rem;
  width: 100%;
  justify-self: center;
  text-align: center;
}

.page-self-order .ac-specs-visual {
  order: 1;
  aspect-ratio: auto;
  min-height: 0;
  width: min(100%, 480px);
  max-width: 480px;
  justify-self: start;
  align-self: center;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 2.5rem;
}

.page-self-order .ac-specs-visual img {
  width: 100%;
  max-width: 480px;
  max-height: 680px;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.page-self-order .ac-specs-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: center;
  text-align: center;
}

.page-self-order .ac-spec-item {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-self-order .ac-usage {
  background: transparent;
  padding: 0 0.25rem;
}

.page-self-order .ac-usage-inner {
  width: min(1600px, 99.5%);
  margin: 0 auto;
  background: #262547;
  border-color: #262547;
}

.page-self-order .ac-usage-title::after {
  background: rgba(255, 255, 255, 0.85);
}

.page-self-order .ac-usage-desc {
  color: rgba(236, 242, 250, 0.9);
}

.page-self-order .ac-usage-link {
  color: #c9bcff;
}

.page-self-order .ac-usage-link:hover {
  color: #ffffff;
}

.page-self-order .ac-usage-card-icon {
  background: var(--so-purple);
}

.page-self-order .ac-usage-card p {
  color: rgba(230, 236, 255, 0.82);
}

.page-self-order .siramatik-gallery-inner {
  border-top-color: #e8ecfb;
  box-shadow: none;
}

.page-self-order .siramatik-gallery-btn:hover {
  border-color: var(--so-purple);
  color: var(--so-purple);
}

.page-self-order .siramatik-gallery-open:focus-visible {
  outline-color: var(--so-purple);
}

.page-self-order .footer-cta--ac {
  background:
    radial-gradient(ellipse 50% 80% at 70% 50%, rgba(107, 78, 255, 0.38), transparent 65%),
    #0a0620;
}

.page-self-order .footer-cta--ac .ac-accent {
  color: #b8a8ff;
}

@media (max-width: 1024px) {
  .page-self-order .product-hero-content--ac {
    max-width: 100%;
  }

  .page-self-order .product-hero--ac .product-hero-stage::before {
    display: none;
  }

  .page-self-order .product-hero-ac-features {
    margin-top: 1.5rem;
    gap: 0.75rem 0.65rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .page-self-order .ac-how-figure img {
    max-height: 420px;
    width: min(100%, 560px);
    margin-inline: auto;
  }

  .page-self-order .ac-specs-layout {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .page-self-order .ac-specs-visual {
    order: 1;
    width: min(100%, 380px);
    max-width: 380px;
    min-height: 0;
    aspect-ratio: auto;
    justify-self: center;
    margin-left: 0;
  }

  .page-self-order .ac-specs-main {
    order: 2;
  }

  .page-self-order .ac-specs-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .page-self-order .footer-cta-ac-actions {
    width: 100%;
    max-width: 22rem;
  }

  .page-self-order .footer-cta-ac-actions .btn-ac-primary,
  .page-self-order .footer-cta-ac-actions .btn-ac-ghost {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .page-self-order .product-hero-content--ac {
    max-width: 100%;
  }

  .page-self-order .product-hero--ac .product-hero-stage::before {
    display: none;
  }

  .page-self-order .product-hero-content--ac h1 {
    font-size: clamp(1.85rem, 7.5vw, 2.6rem);
  }

  .page-self-order .product-hero-content--ac h1 br {
    display: none;
  }

  .page-self-order .product-hero-ac-lead {
    font-size: clamp(1.05rem, 4vw, 1.3rem);
  }

  .page-self-order .product-hero-ac-features {
    margin-top: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  .page-self-order .product-hero-ac-feature {
    flex: 1 1 calc(50% - 0.5rem);
    min-width: calc(50% - 0.5rem);
    max-width: calc(50% - 0.35rem);
  }

  .page-self-order .ac-features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-self-order .ac-how-steps {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }

  .page-self-order .ac-how-figure {
    max-width: 340px;
  }

  .page-self-order .ac-how-figure img {
    max-height: 380px;
  }

  .page-self-order .ac-specs-visual {
    width: min(100%, 280px);
    max-width: 280px;
    aspect-ratio: auto;
    border-radius: 14px;
  }

  .page-self-order .ac-specs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-self-order .ac-usage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .page-self-order .product-hero-ac-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .page-self-order .product-hero-ac-features {
    gap: 0.35rem;
  }

  .page-self-order .ac-features-grid {
    grid-template-columns: 1fr;
  }

  .page-self-order .ac-feature-card {
    padding: 1.25rem 1rem;
  }
}

/* ============================================================
   UNIVERSAL DEVICE LAYER
   Breakpoints: 1200 (laptop/iPad landscape+) / 1024 (iPad) /
                768 (iPad portrait / large phone) / 480 (phone)
   ============================================================ */

/* --- <=1200: small laptops & large tablets --- */
@media (max-width: 1200px) {
  .product-hero-stage,
  .product-hero--kargo .product-hero-stage,
  .product-hero--ac .product-hero-stage,
  .product-hero--siramatik .product-hero-stage {
    aspect-ratio: auto !important;
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
    box-shadow: none !important;
    background: #ffffff;
    display: flex !important;
    flex-direction: column !important;
  }

  .product-hero-media,
  .product-hero-media--kargo,
  .product-hero-media--ac {
    position: relative !important;
    inset: auto !important;
    order: 2 !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 10;
    object-fit: cover !important;
    object-position: center center !important;
    border-radius: 12px;
  }

  .product-hero-stage::before,
  .product-hero--kargo .product-hero-stage::before,
  .product-hero--ac .product-hero-stage::before,
  .page-akilli-kargo .product-hero--ac .product-hero-stage::before,
  .page-kasamatik .product-hero--ac .product-hero-stage::before,
  .page-self-order .product-hero--ac .product-hero-stage::before {
    display: none !important;
  }

  .product-hero-inner {
    position: relative !important;
    inset: auto !important;
    order: 1 !important;
    padding: 0.65rem 0.35rem 1.1rem !important;
  }

  .product-hero-content,
  .product-hero-content--kargo,
  .product-hero-content--ac,
  .page-akilli-kargo .product-hero-content--ac,
  .page-kasamatik .product-hero-content--ac,
  .page-self-order .product-hero-content--ac,
  .page-servis-kiosk .product-hero-content--ac,
  .page-food-locker .product-hero-content--ac,
  .page-doc-locker .product-hero-content--ac {
    max-width: 100% !important;
    flex: none !important;
    display: flex !important;
    flex-direction: column !important;
    min-height: 0 !important;
  }

  .product-hero-content h1,
  .product-hero-content--kargo h1,
  .product-hero-content--ac h1 {
    font-size: clamp(1.85rem, 4.2vw, 2.6rem) !important;
    line-height: 1.12 !important;
  }

  .product-hero-content h1 br,
  .product-hero-content--kargo h1 br,
  .product-hero-content--ac h1 br {
    display: none;
  }

  .product-hero-siramatik-features,
  .product-hero-kargo-features,
  .product-hero-ac-features,
  .page-kasamatik .product-hero-ac-features,
  .page-self-order .product-hero-ac-features,
  .page-akilli-kargo .product-hero-ac-features,
  .page-servis-kiosk .product-hero-ac-features,
  .page-food-locker .product-hero-ac-features,
  .page-doc-locker .product-hero-ac-features {
    margin-top: 1.25rem !important;
    margin-bottom: 1rem !important;
    padding-top: 0 !important;
    flex-wrap: wrap !important;
    justify-content: flex-start !important;
    gap: 0.85rem 0.75rem !important;
  }

  .product-hero--siramatik .product-hero-actions,
  .product-hero-kargo-actions,
  .product-hero-ac-actions,
  .page-kasamatik .product-hero-ac-actions,
  .page-self-order .product-hero-ac-actions,
  .page-akilli-kargo .product-hero-ac-actions,
  .page-servis-kiosk .product-hero-ac-actions,
  .page-food-locker .product-hero-ac-actions,
  .page-doc-locker .product-hero-ac-actions {
    margin-top: 1.25rem !important;
  }

  .ac-features-grid,
  .kargo-features-grid,
  .page-kasamatik .ac-features-grid,
  .page-akilli-kargo .ac-features-grid,
  .page-self-order .ac-features-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .kargo-how-figure img,
  .ac-how-figure img,
  .page-akilli-kargo .ac-specs-visual img {
    width: 100% !important;
    max-width: 100% !important;
  }

  .kargo-benefits-layout,
  .kargo-how-panel,
  .ac-how-panel,
  .ac-specs-layout,
  .product-how-layout,
  .product-specs-layout {
    grid-template-columns: 1fr !important;
  }

  .kargo-how-arrow,
  .ac-how-arrow,
  .product-how-arrow {
    display: none !important;
  }

  .product-how-steps {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 1.15rem !important;
    overflow: visible !important;
  }

  .product-how-step {
    flex: none !important;
    width: 100% !important;
    text-align: left !important;
    display: grid !important;
    grid-template-columns: 56px minmax(0, 1fr) !important;
    column-gap: 0.9rem !important;
    align-items: start !important;
  }

  .product-how-step-icon {
    grid-row: 1 / span 2;
    margin: 0 !important;
  }

  .product-how-step h3 {
    justify-content: flex-start !important;
    text-align: left !important;
  }

  .product-how-step p {
    margin: 0 !important;
    max-width: none !important;
    text-align: left !important;
  }
}

/* --- <=1024: iPad landscape & most tablets --- */
@media (max-width: 1024px) {
  .solution-area-card--overlay .solution-area-card-link,
  .featured-card-link {
    display: flex !important;
    flex-direction: column !important;
    aspect-ratio: auto !important;
    height: auto !important;
  }

  .solution-area-card--overlay .solution-area-cover,
  .featured-card-link img {
    position: static !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 10;
    object-fit: cover;
  }

  .featured-card-link img {
    object-fit: contain;
    object-position: center bottom;
    background: #f3f5fa;
    padding: 0.75rem 1rem 0.5rem;
  }

  .solution-area-card--overlay .solution-area-overlay,
  .featured-card-overlay {
    position: static !important;
    width: 100% !important;
    min-height: 0 !important;
    padding: 1.1rem 1.15rem 1.2rem !important;
  }

  .solution-area-overlay h3,
  .featured-card-overlay h3 {
    min-height: 0 !important;
    font-size: clamp(1.05rem, 2.4vw, 1.25rem) !important;
  }

  .solution-area-overlay p,
  .featured-card-overlay p {
    min-height: 0 !important;
  }

  .projects-grid {
    grid-template-columns: 1fr !important;
  }

  .project-card {
    flex-direction: column !important;
    min-height: 0 !important;
  }

  .project-card-image {
    flex: none !important;
    width: 100% !important;
    aspect-ratio: 16 / 10 !important;
    min-height: 0 !important;
    max-height: 220px !important;
  }

  .process-flow {
    min-width: 0 !important;
    width: 100% !important;
    flex-direction: column !important;
    gap: 0.85rem !important;
  }

  .process-flow-step {
    min-width: 0 !important;
    width: 100% !important;
  }

  .process-flow-arrow {
    align-self: center;
    transform: rotate(90deg);
  }

  .engineering-placeholder,
  .about-intro-grid,
  .about-vm-grid,
  .about-pillar-grid,
  .about-production-card,
  .about-partnership-card,
  .about-capabilities-card,
  .arge-discipline-grid,
  .arge-focus-grid,
  .arge-cta-card,
  .contact-layout,
  .contact-info-grid,
  .promo-content {
    grid-template-columns: 1fr !important;
  }

  .footer-cta {
    min-height: 0 !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .footer-cta-visual {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    height: 220px !important;
  }

  .footer-cta-inner,
  .footer-cta-inner--ac,
  .footer-cta-inner--ac:has(.footer-cta-ac-device) {
    min-height: 0 !important;
    margin-left: 0 !important;
    padding: 1.75rem 0 2.25rem !important;
    justify-content: center !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 1.25rem !important;
  }

  .footer-cta-content {
    max-width: none !important;
    width: 100% !important;
    text-align: center !important;
    align-items: center !important;
  }

  .kargo-benefits-grid,
  .kargo-usage-grid,
  .siramatik-usage-grid,
  .ac-usage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .kargo-how-steps,
  .ac-how-steps,
  .page-kasamatik .ac-how-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .page-self-order .ac-how-steps {
    flex-wrap: wrap !important;
    justify-content: center !important;
  }

  .product-hero-siramatik-feature,
  .product-hero-kargo-feature,
  .product-hero-ac-feature,
  .page-kasamatik .product-hero-ac-feature,
  .page-self-order .product-hero-ac-feature,
  .page-akilli-kargo .product-hero-ac-feature {
    flex: 1 1 calc(50% - 0.5rem) !important;
    min-width: calc(50% - 0.5rem) !important;
    max-width: calc(50% - 0.35rem) !important;
  }

  .about-hero,
  .arge-hero {
    padding: 2.5rem 0 !important;
  }
}

/* --- <=768: iPad portrait & large phones --- */
@media (max-width: 768px) {
  .container {
    width: min(1460px, 92%) !important;
  }

  .hero::before {
    aspect-ratio: 4 / 3 !important;
  }

  .hero h1 {
    font-size: clamp(1.65rem, 6.5vw, 2.1rem) !important;
  }

  .hero .btn-gradient {
    width: 100% !important;
    justify-content: center !important;
  }

  .ac-features-grid,
  .kargo-features-grid,
  .page-kasamatik .ac-features-grid,
  .page-akilli-kargo .ac-features-grid,
  .page-self-order .ac-features-grid,
  .product-features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .kargo-benefits-grid,
  .kargo-how-steps,
  .ac-how-steps,
  .page-kasamatik .ac-how-steps,
  .ac-specs-grid,
  .page-kasamatik .ac-specs-grid {
    grid-template-columns: 1fr !important;
  }

  .page-self-order .ac-how-steps {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .page-self-order .ac-how-step {
    max-width: none !important;
    flex: 1 1 auto !important;
  }

  .product-hero-actions,
  .product-hero-kargo-actions,
  .product-hero-ac-actions,
  .page-kasamatik .product-hero-ac-actions,
  .page-self-order .product-hero-ac-actions {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .btn-product-primary,
  .btn-product-outline,
  .btn-kargo-primary,
  .btn-kargo-outline,
  .btn-ac-demo,
  .btn-ac-primary,
  .btn-ac-ghost,
  .btn-ac-outline {
    width: 100% !important;
    justify-content: center !important;
  }

  .product-hero-media {
    aspect-ratio: 4 / 3 !important;
  }

  .kargo-gallery-track,
  .siramatik-gallery-track,
  .ac-gallery-track {
    justify-content: flex-start !important;
  }

  .kargo-gallery-item,
  .siramatik-gallery-item,
  .ac-gallery-item,
  .page-akilli-kargo .ac-gallery-item,
  .page-kasamatik .ac-gallery-item,
  .page-self-order .ac-gallery-item {
    flex: 0 0 calc((100% - 1rem) / 2) !important;
    min-width: 140px !important;
  }

  .promo-image-wrap img {
    min-height: 220px !important;
  }

  .contact-map iframe,
  .about-partnership-chart {
    min-height: 240px !important;
  }

  .facility-layout {
    flex-direction: column !important;
  }

  .facility-card {
    flex: 0 0 140px !important;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr !important;
  }
}

/* Compact “Kullanım Alanları” cards on phones — all product pages */
@media (max-width: 768px) {
  .ac-usage-inner,
  .kargo-usage-inner,
  .siramatik-usage-inner,
  .page-akilli-kargo .ac-usage-inner,
  .page-vending .ac-usage-inner,
  .page-kasamatik .ac-usage-inner,
  .page-self-order .ac-usage-inner,
  .page-servis-kiosk .ac-usage-inner,
  .page-food-locker .ac-usage-inner,
  .page-doc-locker .ac-usage-inner,
  .page-dc-charge .ac-usage-inner {
    padding: 1.2rem 0.9rem 1.3rem !important;
    gap: 0.95rem !important;
  }

  .ac-usage-title,
  .kargo-usage-title,
  .siramatik-usage-title {
    margin-bottom: 0.45rem !important;
    font-size: 1.18rem !important;
    padding-bottom: 0.45rem !important;
  }

  .ac-usage-title::after,
  .kargo-usage-title::after,
  .siramatik-usage-title::after {
    width: 34px;
    height: 2.5px;
  }

  .ac-usage-desc,
  .kargo-usage-desc,
  .siramatik-usage-desc {
    margin-bottom: 0.7rem !important;
    font-size: 0.8rem !important;
    line-height: 1.45 !important;
    max-width: none !important;
  }

  .ac-usage-link,
  .kargo-usage-link,
  .siramatik-usage-link {
    font-size: 0.8rem !important;
  }

  .ac-usage-grid,
  .kargo-usage-grid,
  .siramatik-usage-grid,
  .page-akilli-kargo .ac-usage-grid,
  .page-kasamatik .ac-usage-grid,
  .page-self-order .ac-usage-grid,
  .page-servis-kiosk .ac-usage-grid,
  .page-food-locker .ac-usage-grid,
  .page-doc-locker .ac-usage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0.7rem 0.6rem !important;
  }

  .ac-usage-card-media,
  .kargo-usage-card-media,
  .siramatik-usage-card-media {
    margin-bottom: 0.85rem !important;
  }

  .ac-usage-card-media img,
  .kargo-usage-card-media img,
  .siramatik-usage-card-media img {
    aspect-ratio: 16 / 10 !important;
    border-radius: 10px;
  }

  .ac-usage-card-icon,
  .kargo-usage-card-icon,
  .siramatik-usage-card-icon {
    width: 30px !important;
    height: 30px !important;
    left: 50% !important;
    transform: translate(-50%, 50%) !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.22);
  }

  .ac-usage-card-icon svg,
  .kargo-usage-card-icon svg,
  .siramatik-usage-card-icon svg {
    width: 14px !important;
    height: 14px !important;
  }

  .ac-usage-card h3,
  .kargo-usage-card h3,
  .siramatik-usage-card h3 {
    margin-bottom: 0.18rem !important;
    font-size: 0.82rem !important;
    line-height: 1.25 !important;
    text-align: center !important;
  }

  .ac-usage-card p,
  .kargo-usage-card p,
  .siramatik-usage-card p {
    font-size: 0.7rem !important;
    line-height: 1.35 !important;
    text-align: center !important;
  }
}

/* --- <=480: phones --- */
@media (max-width: 480px) {
  .ac-usage-inner,
  .kargo-usage-inner,
  .siramatik-usage-inner,
  .page-akilli-kargo .ac-usage-inner,
  .page-vending .ac-usage-inner,
  .page-kasamatik .ac-usage-inner,
  .page-self-order .ac-usage-inner,
  .page-servis-kiosk .ac-usage-inner,
  .page-food-locker .ac-usage-inner,
  .page-doc-locker .ac-usage-inner,
  .page-dc-charge .ac-usage-inner {
    padding: 0.95rem 0.7rem 1.05rem !important;
    gap: 0.75rem !important;
  }

  .ac-usage-title,
  .kargo-usage-title,
  .siramatik-usage-title {
    font-size: 1.05rem !important;
    margin-bottom: 0.35rem !important;
    padding-bottom: 0.35rem !important;
  }

  .ac-usage-desc,
  .kargo-usage-desc,
  .siramatik-usage-desc {
    font-size: 0.75rem !important;
    margin-bottom: 0.55rem !important;
    line-height: 1.4 !important;
  }

  .ac-usage-grid,
  .kargo-usage-grid,
  .siramatik-usage-grid {
    gap: 0.55rem 0.45rem !important;
  }

  .ac-usage-card-media,
  .kargo-usage-card-media,
  .siramatik-usage-card-media {
    margin-bottom: 0.7rem !important;
  }

  .ac-usage-card-media img,
  .kargo-usage-card-media img,
  .siramatik-usage-card-media img {
    aspect-ratio: 16 / 9 !important;
    border-radius: 8px;
  }

  .ac-usage-card-icon,
  .kargo-usage-card-icon,
  .siramatik-usage-card-icon {
    width: 26px !important;
    height: 26px !important;
  }

  .ac-usage-card-icon svg,
  .kargo-usage-card-icon svg,
  .siramatik-usage-card-icon svg {
    width: 12px !important;
    height: 12px !important;
  }

  .ac-usage-card h3,
  .kargo-usage-card h3,
  .siramatik-usage-card h3 {
    font-size: 0.8rem !important;
  }

  .ac-usage-card p,
  .kargo-usage-card p,
  .siramatik-usage-card p {
    font-size: 0.7rem !important;
    line-height: 1.32 !important;
  }

  .container {
    width: min(1460px, 92%) !important;
  }

  .ac-features-grid,
  .kargo-features-grid,
  .page-kasamatik .ac-features-grid,
  .page-akilli-kargo .ac-features-grid,
  .page-self-order .ac-features-grid,
  .product-features-grid,
  .stats-grid,
  .footer-inner,
  .arge-discipline-grid,
  .engineering-disciplines {
    grid-template-columns: 1fr !important;
  }

  .engineering-disciplines--banner {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0.4rem;
  }

  .engineering-disciplines--banner .engineering-discipline-label {
    min-height: 0;
    font-size: clamp(0.56rem, 3.2vw, 0.68rem);
  }

  .engineering-content h3 {
    font-size: clamp(1rem, 4.6vw, 1.18rem);
    margin-bottom: 0.4rem;
  }

  html[lang="ka"] .engineering-content h3,
  html[lang="ru"] .engineering-content h3,
  html[lang="ar"] .engineering-content h3 {
    font-size: clamp(0.92rem, 4.2vw, 1.08rem);
  }

  .engineering-content p {
    font-size: 0.78rem;
    line-height: 1.45;
  }

  .engineering-copy {
    gap: 0.75rem;
  }

  .product-hero-siramatik-feature,
  .product-hero-kargo-feature,
  .product-hero-ac-feature,
  .page-kasamatik .product-hero-ac-feature,
  .page-self-order .product-hero-ac-feature,
  .page-akilli-kargo .product-hero-ac-feature {
    flex: 1 1 calc(50% - 0.4rem) !important;
    min-width: calc(50% - 0.4rem) !important;
  }

  .hero::before {
    aspect-ratio: 1 / 1 !important;
  }

  .hero h1 {
    font-size: clamp(1.55rem, 7.5vw, 1.95rem) !important;
  }

  .product-hero-content h1,
  .product-hero-content--kargo h1,
  .product-hero-content--ac h1 {
    font-size: clamp(1.65rem, 7.5vw, 2.15rem) !important;
  }

  .kargo-gallery-item,
  .siramatik-gallery-item,
  .ac-gallery-item,
  .page-akilli-kargo .ac-gallery-item,
  .page-kasamatik .ac-gallery-item,
  .page-self-order .ac-gallery-item {
    flex: 0 0 min(78%, 280px) !important;
    min-width: 220px !important;
  }

  .kargo-gallery-track,
  .siramatik-gallery-track,
  .ac-gallery-track {
    justify-content: flex-start !important;
    scroll-snap-type: x proximity;
  }

  .footer-cta-visual {
    height: 180px !important;
  }

  .promo-image-wrap img {
    min-height: 180px !important;
  }
}

/* Safe area for notched phones */
@supports (padding: env(safe-area-inset-bottom)) {
  @media (max-width: 1024px) {
    header.nav-open .tools {
      bottom: max(1.25rem, env(safe-area-inset-bottom));
    }

    #site-nav {
      padding-bottom: calc(5.75rem + env(safe-area-inset-bottom));
    }
  }
}

/* ========== Araç Servis Kiosku ========== */
.page-servis-kiosk {
  --ac-blue: #6b2d8b;
  --ac-blue-dark: #552270;
  --ac-ink: #0f172a;
  --ac-muted: #64748b;
  --ac-line: #eee6f5;
  --ac-soft: #f8f4fb;
  --sk-purple: #6b2d8b;
  --sk-purple-dark: #552270;
}

.page-servis-kiosk .ac-accent {
  color: var(--sk-purple);
}

.page-servis-kiosk .ac-section-title {
  margin: 0 0 1.75rem;
  font-size: clamp(1.55rem, 2.6vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ac-ink);
}

.page-servis-kiosk .ac-section-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin-top: 0.65rem;
  border-radius: 999px;
  background: var(--sk-purple);
}

.page-servis-kiosk .product-hero--ac .product-hero-media--ac {
  object-fit: cover;
  object-position: 62% center;
  background: transparent;
}

.page-servis-kiosk .product-hero--ac .product-hero-stage::before {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.82) 0%,
    rgba(255, 255, 255, 0.52) 22%,
    rgba(255, 255, 255, 0.14) 36%,
    rgba(255, 255, 255, 0) 44%
  );
}

.page-servis-kiosk .product-hero-content--ac {
  max-width: min(540px, 46%);
}

.page-servis-kiosk .product-hero-content--ac h1 {
  min-height: 0;
  margin: 0 0 0.85rem;
  font-size: clamp(2.55rem, 5.2vw, 3.85rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #3b1a55;
}

.page-servis-kiosk .product-hero-ac-lead {
  margin: 0 0 1.25rem;
  max-width: 34rem;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #4a2363;
}

.page-servis-kiosk .product-hero-ac-accent {
  color: var(--sk-purple);
}

.page-servis-kiosk .product-hero-ac-desc {
  max-width: 34rem;
  margin: 0 0 0.75rem;
  font-size: 1rem;
  line-height: 1.65;
  color: #4b5563;
}

.page-servis-kiosk .product-hero-ac-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0;
  margin-bottom: 0.35rem;
}

.page-servis-kiosk .product-hero-ac-features {
  flex-wrap: nowrap;
  max-width: 100%;
  gap: 0.55rem 0.45rem;
  margin-top: auto;
  margin-bottom: 1.1rem;
  padding-top: 1rem;
}

.page-servis-kiosk .product-hero-ac-feature {
  flex: 1 1 0;
  min-width: 0;
  max-width: none;
}

.page-servis-kiosk .product-hero-ac-badge,
.page-servis-kiosk .product-hero-ac-feature-icon {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: rgba(255, 255, 255, 0.9);
}

.page-servis-kiosk .product-hero-ac-badge {
  color: var(--sk-purple);
}

.page-servis-kiosk .product-hero-ac-badge svg,
.page-servis-kiosk .product-hero-ac-feature-icon,
.page-servis-kiosk .ac-feature-icon,
.page-servis-kiosk .ac-how-step-icon,
.page-servis-kiosk .ac-how-step-num,
.page-servis-kiosk .ac-how-arrow,
.page-servis-kiosk .ac-spec-icon {
  color: var(--sk-purple);
}

.page-servis-kiosk .btn-ac-demo {
  background: var(--sk-purple);
  box-shadow: 0 8px 22px rgba(107, 45, 139, 0.34);
}

.page-servis-kiosk .btn-ac-demo:hover {
  background: var(--sk-purple-dark);
  box-shadow: 0 10px 26px rgba(107, 45, 139, 0.42);
}

.page-servis-kiosk .btn-ac-primary {
  background: var(--sk-purple);
  box-shadow: 0 10px 24px rgba(107, 45, 139, 0.28);
}

.page-servis-kiosk .btn-ac-primary:hover {
  background: var(--sk-purple-dark);
}

.page-servis-kiosk .btn-ac-outline {
  color: var(--sk-purple);
  border-color: var(--sk-purple);
}

.page-servis-kiosk .btn-ac-outline:hover {
  box-shadow: 0 8px 18px rgba(107, 45, 139, 0.14);
}

.page-servis-kiosk .ac-feature-card {
  border-color: #e8d9f2;
}

.page-servis-kiosk .ac-features-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.page-servis-kiosk .ac-how-panel {
  border-bottom-color: var(--sk-purple);
}

.page-servis-kiosk .ac-how-figure {
  align-self: center;
  justify-self: center;
  margin: 0 auto;
  width: min(100%, 320px);
  border-radius: 24px;
  overflow: hidden;
  background: #f3eef7;
  transform: none;
}

.page-servis-kiosk .ac-how-figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
}

.page-servis-kiosk .ac-usage-title::after {
  background: rgba(255, 255, 255, 0.85);
}

.page-servis-kiosk .ac-specs-panel-title {
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
  text-align: center;
}

.page-servis-kiosk .ac-specs-panel-title::after {
  display: none;
}

.page-servis-kiosk .ac-specs-dims {
  margin: 0 0 1.35rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--sk-purple);
  text-align: center;
}

.page-servis-kiosk .ac-specs-layout {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  justify-content: start;
  column-gap: 1.1rem;
  gap: 0.75rem 1.1rem;
}

.page-servis-kiosk .ac-specs-main {
  order: 2;
  padding-top: 0;
  padding-left: 0;
  margin-left: 0;
  max-width: 44rem;
  width: 100%;
  justify-self: center;
  text-align: center;
}

.page-servis-kiosk .ac-specs-visual {
  order: 1;
  aspect-ratio: auto;
  min-height: 0;
  width: min(100%, 400px);
  max-width: 400px;
  justify-self: start;
  align-self: center;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-servis-kiosk .ac-specs-visual img {
  width: 100%;
  max-width: 400px;
  max-height: 580px;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.page-servis-kiosk .ac-specs-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  justify-content: center;
  text-align: center;
}

.page-servis-kiosk .ac-spec-item {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-servis-kiosk .ac-usage {
  background: transparent;
  padding: 0 0.25rem;
}

.page-servis-kiosk .ac-usage-inner {
  width: min(1600px, 99.5%);
  margin: 0 auto;
  background: #2a2433;
  border-color: #2a2433;
}

.page-servis-kiosk .ac-usage-desc {
  color: rgba(244, 236, 250, 0.9);
}

.page-servis-kiosk .ac-usage-link {
  color: #d8c4e8;
}

.page-servis-kiosk .ac-usage-link:hover {
  color: #ffffff;
}

.page-servis-kiosk .ac-usage-card-icon {
  background: var(--sk-purple);
}

.page-servis-kiosk .ac-usage-card p {
  color: rgba(236, 228, 245, 0.82);
}

.page-servis-kiosk .siramatik-gallery-inner {
  border-top-color: #eee6f5;
  box-shadow: none;
}

.page-servis-kiosk .siramatik-gallery-btn:hover {
  border-color: var(--sk-purple);
  color: var(--sk-purple);
}

.page-servis-kiosk .siramatik-gallery-open:focus-visible {
  outline-color: var(--sk-purple);
}

.page-servis-kiosk .footer-cta--ac {
  background:
    radial-gradient(ellipse 50% 80% at 70% 50%, rgba(140, 70, 180, 0.38), transparent 65%),
    #16091f;
}

.page-servis-kiosk .footer-cta--ac .ac-accent {
  color: #c9a0e8;
}

@media (max-width: 1200px) {
  .page-servis-kiosk .ac-features-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .page-servis-kiosk .ac-specs-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .page-servis-kiosk .product-hero-content--ac {
    max-width: 100%;
  }

  .page-servis-kiosk .product-hero--ac .product-hero-media--ac {
    object-fit: cover;
    object-position: center center;
  }

  .page-servis-kiosk .product-hero--ac .product-hero-stage::before {
    display: none;
  }

  .page-servis-kiosk .ac-how-figure img {
    max-height: 320px;
    width: min(100%, 420px);
    margin-inline: auto;
  }

  .page-servis-kiosk .ac-specs-layout {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .page-servis-kiosk .ac-specs-visual {
    order: 1;
    width: min(100%, 320px);
    max-width: 320px;
    min-height: 0;
    aspect-ratio: auto;
    justify-self: center;
  }

  .page-servis-kiosk .ac-specs-main {
    order: 2;
  }

  .page-servis-kiosk .ac-specs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-servis-kiosk .footer-cta-ac-actions {
    width: 100%;
    max-width: 22rem;
  }

  .page-servis-kiosk .footer-cta-ac-actions .btn-ac-primary,
  .page-servis-kiosk .footer-cta-ac-actions .btn-ac-ghost {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .page-servis-kiosk .product-hero-content--ac {
    max-width: 100%;
  }

  .page-servis-kiosk .product-hero--ac .product-hero-stage::before {
    display: none;
  }

  .page-servis-kiosk .product-hero--ac .product-hero-media--ac {
    object-fit: cover !important;
    object-position: center center !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 10;
    inset: auto !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    bottom: auto !important;
    background: transparent;
  }

  .page-servis-kiosk .product-hero-content--ac h1 {
    font-size: clamp(1.85rem, 7.5vw, 2.6rem);
    margin-bottom: 0.65rem;
  }

  .page-servis-kiosk .product-hero-content--ac h1 br {
    display: none;
  }

  .page-servis-kiosk .product-hero-ac-lead {
    font-size: clamp(1.1rem, 4.2vw, 1.35rem);
    margin-bottom: 0.75rem;
  }

  .page-servis-kiosk .product-hero-ac-desc {
    max-width: none;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }

  .page-servis-kiosk .product-hero-ac-actions {
    margin-bottom: 1.25rem;
  }

  .page-servis-kiosk .product-hero-ac-features {
    margin-top: 0.25rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .page-servis-kiosk .product-hero-ac-feature {
    flex: 1 1 calc(50% - 0.5rem);
    min-width: calc(50% - 0.5rem);
    max-width: calc(50% - 0.35rem);
  }

  .page-servis-kiosk .ac-features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-servis-kiosk .ac-how-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 0.75rem;
  }

  .page-servis-kiosk .ac-how-arrow {
    display: none;
  }

  .page-servis-kiosk .ac-how-figure img {
    max-height: 260px;
    width: 100%;
  }

  .page-servis-kiosk .ac-specs-visual {
    width: min(100%, 220px);
    max-width: 220px;
    aspect-ratio: auto;
    border-radius: 14px;
  }

  .page-servis-kiosk .ac-specs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-servis-kiosk .ac-usage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-servis-kiosk .footer-cta-inner--ac {
    padding: 2rem 0;
  }
}

@media (max-width: 480px) {
  .page-servis-kiosk .product-hero-ac-features {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem 0.4rem;
  }

  .page-servis-kiosk .product-hero-ac-feature {
    flex: 1 1 calc(50% - 0.4rem);
    min-width: calc(50% - 0.4rem);
    max-width: calc(50% - 0.25rem);
  }

  .page-servis-kiosk .ac-features-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== Food Locker ========== */
.page-food-locker {
  --ac-blue: #e87c20;
  --ac-blue-dark: #d06d18;
  --ac-ink: #0f172a;
  --ac-muted: #64748b;
  --ac-line: #ffe2c2;
  --ac-soft: #fff5eb;
  --fl-orange: #e87c20;
  --fl-orange-dark: #d06d18;
}

.page-food-locker .ac-accent {
  color: var(--fl-orange);
}

.page-food-locker .ac-section-title {
  margin: 0 0 1.75rem;
  font-size: clamp(1.55rem, 2.6vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ac-ink);
}

.page-food-locker .ac-section-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin-top: 0.65rem;
  border-radius: 999px;
  background: var(--fl-orange);
}

.page-food-locker .product-hero--ac .product-hero-media--ac {
  object-fit: cover;
  object-position: 72% center;
  background: transparent;
  filter: none;
  -webkit-filter: none;
  transform: translateZ(0);
  backface-visibility: hidden;
  image-rendering: -webkit-optimize-contrast;
}

.page-food-locker .product-hero--ac .product-hero-stage::before {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.82) 0%,
    rgba(255, 255, 255, 0.52) 22%,
    rgba(255, 255, 255, 0.14) 36%,
    rgba(255, 255, 255, 0) 44%
  );
}

.page-food-locker .product-hero-content--ac {
  max-width: min(540px, 46%);
}

.page-food-locker .product-hero-content--ac h1 {
  min-height: 0;
  margin: 0 0 0.85rem;
  font-size: clamp(2.55rem, 5.2vw, 3.85rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #1c1917;
}

.page-food-locker .product-hero-ac-lead {
  margin: 0 0 1.25rem;
  max-width: 34rem;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #a85a12;
}

.page-food-locker .product-hero-ac-accent {
  color: var(--fl-orange);
}

.page-food-locker .product-hero-ac-desc {
  max-width: 34rem;
  margin: 0 0 0.75rem;
  font-size: 1rem;
  line-height: 1.65;
  color: #4b5563;
}

.page-food-locker .product-hero-ac-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0;
  margin-bottom: 0.35rem;
}

.page-food-locker .product-hero-ac-features {
  flex-wrap: nowrap;
  max-width: 100%;
  gap: 0.55rem 0.45rem;
  margin-top: auto;
  margin-bottom: 1.1rem;
  padding-top: 1rem;
}

.page-food-locker .product-hero-ac-feature {
  flex: 1 1 0;
  min-width: 0;
  max-width: none;
}

.page-food-locker .product-hero-ac-badge,
.page-food-locker .product-hero-ac-feature-icon {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: rgba(255, 255, 255, 0.9);
}

.page-food-locker .product-hero-ac-badge {
  color: var(--fl-orange);
}

.page-food-locker .product-hero-ac-badge svg,
.page-food-locker .product-hero-ac-feature-icon,
.page-food-locker .ac-feature-icon,
.page-food-locker .ac-how-step-icon,
.page-food-locker .ac-how-step-num,
.page-food-locker .ac-how-arrow,
.page-food-locker .ac-spec-icon {
  color: var(--fl-orange);
}

.page-food-locker .btn-ac-demo {
  background: var(--fl-orange);
  box-shadow: 0 8px 22px rgba(232, 124, 32, 0.34);
}

.page-food-locker .btn-ac-demo:hover {
  background: var(--fl-orange-dark);
  box-shadow: 0 10px 26px rgba(232, 124, 32, 0.42);
}

.page-food-locker .btn-ac-primary {
  background: var(--fl-orange);
  box-shadow: 0 10px 24px rgba(232, 124, 32, 0.28);
}

.page-food-locker .btn-ac-primary:hover {
  background: var(--fl-orange-dark);
}

.page-food-locker .btn-ac-outline {
  color: var(--fl-orange);
  border-color: var(--fl-orange);
}

.page-food-locker .btn-ac-outline:hover {
  box-shadow: 0 8px 18px rgba(232, 124, 32, 0.14);
}

.page-food-locker .ac-feature-card {
  border-color: #ffd7ad;
}

.page-food-locker .ac-features-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.page-food-locker .ac-how-panel {
  border-bottom-color: var(--fl-orange);
}

.page-food-locker .ac-how-figure {
  align-self: center;
  justify-self: center;
  margin: 0 auto;
  width: min(100%, 420px);
  border-radius: 24px;
  overflow: hidden;
  background: #f5f5f5;
  transform: none;
}

.page-food-locker .ac-how-figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
  object-position: center;
  border-radius: 24px;
}

.page-food-locker .ac-usage-title::after {
  background: rgba(255, 255, 255, 0.85);
}

.page-food-locker .ac-specs-panel-title {
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
  text-align: center;
}

.page-food-locker .ac-specs-panel-title::after {
  display: none;
}

.page-food-locker .ac-specs-dims {
  margin: 0 0 1.35rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fl-orange);
  text-align: center;
}

.page-food-locker .ac-specs-layout {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  justify-content: center;
  column-gap: 1.1rem;
  gap: 0.85rem 1.1rem;
}

.page-food-locker .ac-specs-main {
  order: 2;
  padding-top: 0;
  padding-left: 0;
  margin-left: 0;
  max-width: 40rem;
  width: 100%;
  justify-self: center;
  text-align: center;
}

.page-food-locker .ac-specs-visual {
  order: 1;
  aspect-ratio: 3 / 4;
  min-height: 0;
  width: min(100%, 480px);
  max-width: 480px;
  justify-self: center;
  align-self: center;
  margin-left: 3.5rem;
  background: #f1f1f3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 20px;
}

.page-food-locker .ac-specs-visual img {
  width: 100%;
  max-width: none;
  max-height: none;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.12);
  transform-origin: center center;
}

.page-food-locker .ac-specs-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: center;
  text-align: center;
  gap: 1.15rem 1rem;
}

.page-food-locker .ac-spec-item {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-food-locker .ac-usage {
  background: transparent;
  padding: 0 0.25rem;
}

.page-food-locker .ac-usage-inner {
  width: min(1600px, 99.5%);
  margin: 0 auto;
  background: #d15c06d4;
  border-color: #d15c06d4;
}

.page-food-locker .ac-usage-desc {
  color: rgba(255, 244, 225, 0.9);
}

.page-food-locker .ac-usage-link {
  color: #ffffff;
}

.page-food-locker .ac-usage-link:hover {
  color: #ffffff;
  opacity: 0.88;
}

.page-food-locker .ac-usage-card-icon {
  background: var(--fl-orange);
}

.page-food-locker .ac-usage-card p {
  color: rgba(255, 236, 210, 0.82);
}

.page-food-locker .siramatik-gallery-inner {
  border-top-color: #ffe2c2;
  box-shadow: none;
}

.page-food-locker .siramatik-gallery-btn:hover {
  border-color: var(--fl-orange);
  color: var(--fl-orange);
}

.page-food-locker .siramatik-gallery-open:focus-visible {
  outline-color: var(--fl-orange);
}

.page-food-locker .footer-cta--ac {
  background:
    radial-gradient(ellipse 50% 80% at 70% 50%, rgba(232, 124, 32, 0.4), transparent 65%),
    #1a1006;
}

.page-food-locker .footer-cta--ac .ac-accent {
  color: #f0a45a;
}

@media (max-width: 1200px) {
  .page-food-locker .ac-features-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .page-food-locker .ac-specs-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .page-food-locker .product-hero-content--ac {
    max-width: 100%;
  }

  .page-food-locker .product-hero--ac .product-hero-media--ac {
    object-fit: cover;
    object-position: center center;
  }

  .page-food-locker .product-hero--ac .product-hero-stage::before {
    display: none;
  }

  .page-food-locker .ac-how-figure img {
    max-height: 420px;
    width: min(100%, 480px);
    margin-inline: auto;
  }

  .page-food-locker .ac-specs-layout {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .page-food-locker .ac-specs-visual {
    order: 1;
    width: min(100%, 400px);
    max-width: 400px;
    min-height: 0;
    aspect-ratio: 3 / 4;
    justify-self: center;
    margin-left: 0;
  }

  .page-food-locker .ac-specs-visual img {
    transform: scale(1.1);
  }

  .page-food-locker .ac-specs-main {
    order: 2;
  }

  .page-food-locker .ac-specs-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .page-food-locker .footer-cta-ac-actions {
    width: 100%;
    max-width: 22rem;
  }

  .page-food-locker .footer-cta-ac-actions .btn-ac-primary,
  .page-food-locker .footer-cta-ac-actions .btn-ac-ghost {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .page-food-locker .product-hero-content--ac {
    max-width: 100%;
  }

  .page-food-locker .product-hero--ac .product-hero-stage::before {
    display: none;
  }

  .page-food-locker .product-hero--ac .product-hero-media--ac {
    object-fit: cover !important;
    object-position: center center !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 10;
    inset: auto !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    bottom: auto !important;
    background: transparent;
  }

  .page-food-locker .product-hero-content--ac h1 {
    font-size: clamp(1.85rem, 7.5vw, 2.6rem);
    margin-bottom: 0.65rem;
  }

  .page-food-locker .product-hero-content--ac h1 br {
    display: none;
  }

  .page-food-locker .product-hero-ac-lead {
    font-size: clamp(1.1rem, 4.2vw, 1.35rem);
    margin-bottom: 0.75rem;
  }

  .page-food-locker .product-hero-ac-desc {
    max-width: none;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }

  .page-food-locker .product-hero-ac-actions {
    margin-bottom: 1.25rem;
  }

  .page-food-locker .product-hero-ac-features {
    margin-top: 0.25rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .page-food-locker .product-hero-ac-feature {
    flex: 1 1 calc(50% - 0.5rem);
    min-width: calc(50% - 0.5rem);
    max-width: calc(50% - 0.35rem);
  }

  .page-food-locker .ac-features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-food-locker .ac-how-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 0.75rem;
  }

  .page-food-locker .ac-how-arrow {
    display: none;
  }

  .page-food-locker .ac-how-figure img {
    max-height: 340px;
    width: 100%;
  }

  .page-food-locker .ac-specs-visual {
    width: min(100%, 280px);
    max-width: 280px;
    aspect-ratio: 3 / 4;
    border-radius: 14px;
    margin-left: 0;
  }

  .page-food-locker .ac-specs-visual img {
    transform: scale(1.08);
  }

  .page-food-locker .ac-specs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-food-locker .ac-usage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-food-locker .footer-cta-inner--ac {
    padding: 2rem 0;
  }
}

@media (max-width: 480px) {
  .page-food-locker .product-hero-ac-features {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem 0.4rem;
  }

  .page-food-locker .product-hero-ac-feature {
    flex: 1 1 calc(50% - 0.4rem);
    min-width: calc(50% - 0.4rem);
    max-width: calc(50% - 0.25rem);
  }

  .page-food-locker .ac-features-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== DocLocker ========== */
.page-doc-locker {
  --ac-blue: #3b5bdb;
  --ac-blue-dark: #2f4bc4;
  --ac-ink: #0f172a;
  --ac-muted: #64748b;
  --ac-line: #dbe4f8;
  --ac-soft: #f0f4fc;
  --dl-blue: #3b5bdb;
  --dl-blue-dark: #2f4bc4;
}

.page-doc-locker .ac-accent {
  color: var(--dl-blue);
}

.page-doc-locker .ac-section-title {
  margin: 0 0 1.75rem;
  font-size: clamp(1.55rem, 2.6vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ac-ink);
}

.page-doc-locker .ac-section-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin-top: 0.65rem;
  border-radius: 999px;
  background: var(--dl-blue);
}

.page-doc-locker .product-hero--ac .product-hero-media--ac {
  object-fit: cover;
  object-position: 72% center;
  background: transparent;
  filter: none;
  -webkit-filter: none;
  transform: translateZ(0);
  backface-visibility: hidden;
  image-rendering: -webkit-optimize-contrast;
}

.page-doc-locker .product-hero--ac .product-hero-stage::before {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.82) 0%,
    rgba(255, 255, 255, 0.52) 22%,
    rgba(255, 255, 255, 0.14) 36%,
    rgba(255, 255, 255, 0) 44%
  );
}

.page-doc-locker .product-hero-content--ac {
  max-width: min(540px, 46%);
}

.page-doc-locker .product-hero-content--ac h1 {
  min-height: 0;
  margin: 0 0 0.85rem;
  font-size: clamp(2.55rem, 5.2vw, 3.85rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.page-doc-locker .product-hero-ac-lead {
  margin: 0 0 1.25rem;
  max-width: 34rem;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #3b5bdb;
}

.page-doc-locker .product-hero-ac-accent {
  color: var(--dl-blue);
}

.page-doc-locker .product-hero-ac-desc {
  max-width: 34rem;
  margin: 0 0 0.75rem;
  font-size: 1rem;
  line-height: 1.65;
  color: #4b5563;
}

.page-doc-locker .product-hero-ac-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0;
  margin-bottom: 0.35rem;
}

.page-doc-locker .product-hero-ac-features {
  flex-wrap: nowrap;
  max-width: 100%;
  gap: 0.55rem 0.45rem;
  margin-top: auto;
  margin-bottom: 1.1rem;
  padding-top: 1rem;
}

.page-doc-locker .product-hero-ac-feature {
  flex: 1 1 0;
  min-width: 0;
  max-width: none;
}

.page-doc-locker .product-hero-ac-badge,
.page-doc-locker .product-hero-ac-feature-icon {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: rgba(255, 255, 255, 0.9);
}

.page-doc-locker .product-hero-ac-badge {
  color: var(--dl-blue);
}

.page-doc-locker .product-hero-ac-badge svg,
.page-doc-locker .product-hero-ac-feature-icon,
.page-doc-locker .ac-feature-icon,
.page-doc-locker .ac-how-step-icon,
.page-doc-locker .ac-how-step-num,
.page-doc-locker .ac-how-arrow,
.page-doc-locker .ac-spec-icon {
  color: var(--dl-blue);
}

.page-doc-locker .btn-ac-demo {
  background: var(--dl-blue);
  box-shadow: 0 8px 22px rgba(59, 91, 219, 0.34);
}

.page-doc-locker .btn-ac-demo:hover {
  background: var(--dl-blue-dark);
  box-shadow: 0 10px 26px rgba(59, 91, 219, 0.42);
}

.page-doc-locker .btn-ac-primary {
  background: var(--dl-blue);
  box-shadow: 0 10px 24px rgba(59, 91, 219, 0.28);
}

.page-doc-locker .btn-ac-primary:hover {
  background: var(--dl-blue-dark);
}

.page-doc-locker .btn-ac-outline {
  color: var(--dl-blue);
  border-color: var(--dl-blue);
}

.page-doc-locker .btn-ac-outline:hover {
  box-shadow: 0 8px 18px rgba(59, 91, 219, 0.14);
}

.page-doc-locker .ac-feature-card {
  border-color: #c9d6f5;
}

.page-doc-locker .ac-features-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.page-doc-locker .ac-how-panel {
  border-bottom-color: var(--dl-blue);
}

.page-doc-locker .ac-how-figure {
  align-self: center;
  justify-self: center;
  margin: 0 auto;
  width: min(100%, 420px);
  border-radius: 24px;
  overflow: hidden;
  background: #f5f5f5;
  transform: none;
}

.page-doc-locker .ac-how-figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
  object-position: center;
  border-radius: 24px;
}

.page-doc-locker .ac-usage-title::after {
  background: rgba(255, 255, 255, 0.85);
}

.page-doc-locker .ac-specs-panel-title {
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
  text-align: center;
}

.page-doc-locker .ac-specs-panel-title::after {
  display: none;
}

.page-doc-locker .ac-specs-dims {
  margin: 0 0 1.35rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dl-blue);
  text-align: center;
}

.page-doc-locker .ac-specs-layout {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  justify-content: center;
  column-gap: 0.35rem;
  gap: 0.85rem 0.35rem;
}

.page-doc-locker .ac-specs-main {
  order: 2;
  padding-top: 0;
  padding-left: 0;
  margin-left: 0;
  max-width: 40rem;
  width: 100%;
  justify-self: center;
  text-align: center;
}

.page-doc-locker .ac-specs-visual {
  order: 1;
  aspect-ratio: auto;
  min-height: 0;
  width: min(100%, 360px);
  max-width: 360px;
  justify-self: center;
  align-self: center;
  margin-left: 5.5rem;
  background: transparent;
  display: block;
  overflow: visible;
  border-radius: 0;
}

.page-doc-locker .ac-specs-visual img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  transform: none;
  border-radius: 20px;
}

.page-doc-locker .ac-specs-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: center;
  text-align: center;
  gap: 1.15rem 1rem;
}

.page-doc-locker .ac-spec-item {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-doc-locker .ac-usage {
  background: transparent;
  padding: 0 0.25rem;
}

.page-doc-locker .ac-usage-inner {
  width: min(1600px, 99.5%);
  margin: 0 auto;
  background: #2f4bc4d4;
  border-color: #2f4bc4d4;
}

.page-doc-locker .ac-usage-desc {
  color: rgba(230, 238, 255, 0.9);
}

.page-doc-locker .ac-usage-link {
  color: #ffffff;
}

.page-doc-locker .ac-usage-link:hover {
  color: #ffffff;
  opacity: 0.88;
}

.page-doc-locker .ac-usage-card-icon {
  background: var(--dl-blue);
}

.page-doc-locker .ac-usage-card p {
  color: rgba(214, 226, 255, 0.82);
}

.page-doc-locker .siramatik-gallery-inner {
  border-top-color: #dbe4f8;
  box-shadow: none;
}

.page-doc-locker .siramatik-gallery-open img,
.page-doc-locker .siramatik-gallery-item img {
  aspect-ratio: 4 / 3;
  object-fit: contain;
}

.page-doc-locker .siramatik-gallery-btn:hover {
  border-color: var(--dl-blue);
  color: var(--dl-blue);
}

.page-doc-locker .siramatik-gallery-open:focus-visible {
  outline-color: var(--dl-blue);
}

.page-doc-locker .footer-cta--ac {
  background:
    radial-gradient(ellipse 50% 80% at 70% 50%, rgba(59, 91, 219, 0.4), transparent 65%),
    #0b1224;
}

.page-doc-locker .footer-cta--ac .ac-accent {
  color: #8da4f0;
}

@media (max-width: 1200px) {
  .page-doc-locker .ac-features-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .page-doc-locker .ac-specs-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .page-doc-locker .product-hero-content--ac {
    max-width: 100%;
  }

  .page-doc-locker .product-hero--ac .product-hero-media--ac {
    object-fit: cover;
    object-position: center center;
  }

  .page-doc-locker .product-hero--ac .product-hero-stage::before {
    display: none;
  }

  .page-doc-locker .ac-how-figure img {
    max-height: 420px;
    width: min(100%, 480px);
    margin-inline: auto;
  }

  .page-doc-locker .ac-specs-layout {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .page-doc-locker .ac-specs-visual {
    order: 1;
    width: min(100%, 300px);
    max-width: 300px;
    min-height: 0;
    aspect-ratio: auto;
    justify-self: center;
    margin-left: 0;
    background: transparent;
  }

  .page-doc-locker .ac-specs-visual img {
    transform: none;
    border-radius: 18px;
  }

  .page-doc-locker .ac-specs-main {
    order: 2;
  }

  .page-doc-locker .ac-specs-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .page-doc-locker .footer-cta-ac-actions {
    width: 100%;
    max-width: 22rem;
  }

  .page-doc-locker .footer-cta-ac-actions .btn-ac-primary,
  .page-doc-locker .footer-cta-ac-actions .btn-ac-ghost {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .page-doc-locker .product-hero-content--ac {
    max-width: 100%;
  }

  .page-doc-locker .product-hero--ac .product-hero-stage::before {
    display: none;
  }

  .page-doc-locker .product-hero--ac .product-hero-media--ac {
    object-fit: cover !important;
    object-position: center center !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 10;
    inset: auto !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    bottom: auto !important;
    background: transparent;
  }

  .page-doc-locker .product-hero-content--ac h1 {
    font-size: clamp(1.85rem, 7.5vw, 2.6rem);
    margin-bottom: 0.65rem;
  }

  .page-doc-locker .product-hero-content--ac h1 br {
    display: none;
  }

  .page-doc-locker .product-hero-ac-lead {
    font-size: clamp(1.1rem, 4.2vw, 1.35rem);
    margin-bottom: 0.75rem;
  }

  .page-doc-locker .product-hero-ac-desc {
    max-width: none;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }

  .page-doc-locker .product-hero-ac-actions {
    margin-bottom: 1.25rem;
  }

  .page-doc-locker .product-hero-ac-features {
    margin-top: 0.25rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .page-doc-locker .product-hero-ac-feature {
    flex: 1 1 calc(50% - 0.5rem);
    min-width: calc(50% - 0.5rem);
    max-width: calc(50% - 0.35rem);
  }

  .page-doc-locker .ac-features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-doc-locker .ac-how-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 0.75rem;
  }

  .page-doc-locker .ac-how-arrow {
    display: none;
  }

  .page-doc-locker .ac-how-figure img {
    max-height: 340px;
    width: 100%;
  }

  .page-doc-locker .ac-specs-visual {
    width: min(100%, 240px);
    max-width: 240px;
    aspect-ratio: auto;
    border-radius: 0;
    margin-left: 0;
    background: transparent;
  }

  .page-doc-locker .ac-specs-visual img {
    transform: none;
    border-radius: 14px;
  }

  .page-doc-locker .ac-specs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-doc-locker .ac-usage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-doc-locker .footer-cta-inner--ac {
    padding: 2rem 0;
  }
}

@media (max-width: 480px) {
  .page-doc-locker .product-hero-ac-features {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem 0.4rem;
  }

  .page-doc-locker .product-hero-ac-feature {
    flex: 1 1 calc(50% - 0.4rem);
    min-width: calc(50% - 0.4rem);
    max-width: calc(50% - 0.25rem);
  }

  .page-doc-locker .ac-features-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== DC Charge ========== */
.page-dc-charge {
  --dc-blue: #2f7cf6;
  --dc-blue-dark: #1f65d6;
  --ac-blue: #2f7cf6;
  --ac-blue-dark: #1f65d6;
  --ac-line: #d6e6ff;
  --ac-soft: #eef5ff;
}

.page-dc-charge .ac-accent {
  color: var(--dc-blue);
}

.page-dc-charge .ac-section-title::after {
  background: var(--dc-blue);
}

.page-dc-charge .product-hero--ac .product-hero-media--ac {
  object-fit: cover;
  object-position: 68% center;
  filter: none;
}

.page-dc-charge .product-hero--ac .product-hero-stage::before {
  inset: 0;
  width: auto;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 255, 255, 0.72) 24%,
    rgba(255, 255, 255, 0.38) 40%,
    rgba(255, 255, 255, 0.12) 52%,
    rgba(255, 255, 255, 0) 62%
  );
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  -webkit-mask-image: none;
  mask-image: none;
}

.page-dc-charge .product-hero-content--ac h1,
.page-dc-charge .product-hero-ac-desc,
.page-dc-charge .breadcrumb,
.page-dc-charge .breadcrumb a {
  color: #0f172a;
  text-shadow: none;
}

.page-dc-charge .product-hero-ac-lead,
.page-dc-charge .product-hero-ac-accent {
  color: var(--dc-blue);
}

.page-dc-charge .product-hero-ac-badge {
  color: var(--dc-blue);
  background: rgba(255, 255, 255, 0.92);
}

.page-dc-charge .product-hero-ac-badge svg {
  color: var(--dc-blue);
}

.page-dc-charge .product-hero-ac-feature {
  color: #0f172a;
}

.page-dc-charge .product-hero-ac-feature span:last-child {
  color: #0f172a;
}

.page-dc-charge .product-hero-ac-feature-icon {
  color: var(--dc-blue);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 4px 14px rgba(47, 124, 246, 0.22);
}

.page-dc-charge .product-hero-ac-feature-icon svg {
  color: var(--dc-blue);
}

.page-dc-charge .btn-ac-demo {
  background: var(--dc-blue);
  box-shadow: 0 8px 22px rgba(47, 124, 246, 0.38);
}

.page-dc-charge .btn-ac-demo:hover {
  background: var(--dc-blue-dark);
  box-shadow: 0 10px 26px rgba(47, 124, 246, 0.46);
}

.page-dc-charge .ac-feature-card {
  border-color: #cfe0ff;
}

.page-dc-charge .ac-feature-icon,
.page-dc-charge .ac-how-step-icon,
.page-dc-charge .ac-how-step-num,
.page-dc-charge .ac-how-arrow,
.page-dc-charge .ac-spec-icon {
  color: var(--dc-blue);
}

.page-dc-charge .ac-how-panel {
  border-bottom-color: var(--dc-blue);
}

.page-dc-charge .ac-how-figure img {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  border-radius: 20px;
}

.page-dc-charge .ac-usage-inner {
  background: #16356f;
  border-color: #16356f;
}

.page-dc-charge .ac-usage-title::after {
  background: rgba(255, 255, 255, 0.85);
}

.page-dc-charge .ac-usage-desc {
  color: rgba(226, 238, 255, 0.9);
}

.page-dc-charge .ac-usage-link {
  color: #ffffff;
}

.page-dc-charge .ac-usage-link:hover {
  color: #ffffff;
  opacity: 0.88;
}

.page-dc-charge .ac-usage-card-icon {
  background: var(--dc-blue);
}

.page-dc-charge .ac-usage-card p {
  color: rgba(214, 226, 255, 0.85);
}

.page-dc-charge .ac-gallery-btn:hover,
.page-dc-charge .siramatik-gallery-btn:hover {
  border-color: var(--dc-blue);
  color: var(--dc-blue);
}

.page-dc-charge .ac-gallery-open:focus-visible,
.page-dc-charge .siramatik-gallery-open:focus-visible {
  outline-color: var(--dc-blue);
}

.page-dc-charge .btn-ac-primary,
.page-dc-charge .footer-cta-ac-actions .btn-ac-primary {
  background: var(--dc-blue);
  box-shadow: 0 10px 24px rgba(47, 124, 246, 0.28);
}

.page-dc-charge .btn-ac-primary:hover,
.page-dc-charge .footer-cta-ac-actions .btn-ac-primary:hover {
  background: var(--dc-blue-dark);
}

.page-dc-charge .btn-ac-outline {
  color: var(--dc-blue);
  border-color: var(--dc-blue);
}

.page-dc-charge .footer-cta--ac {
  background:
    radial-gradient(ellipse 50% 80% at 70% 50%, rgba(47, 124, 246, 0.4), transparent 65%),
    #0b1224;
}

.page-dc-charge .footer-cta--ac .ac-accent {
  color: #7eb0ff;
}

.page-dc-charge .ac-gallery-track {
  justify-content: center;
}

.page-dc-charge .ac-gallery-item {
  flex: 0 0 min(360px, 100%);
  max-width: 360px;
}

.page-dc-charge .ac-gallery-open img,
.page-dc-charge .ac-gallery-item img {
  aspect-ratio: 3 / 4;
  object-fit: contain;
  background: #0a0a0a;
}

.page-dc-charge .ac-specs-layout {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2.25rem);
}

.page-dc-charge .ac-specs-visual {
  order: 1;
  aspect-ratio: auto;
  background: transparent;
  overflow: visible;
  border-radius: 0;
}

.page-dc-charge .ac-specs-visual img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  border-radius: 20px;
}

.page-dc-charge .ac-specs-main {
  order: 2;
  padding-top: 0;
}

@media (max-width: 1024px) {
  .page-dc-charge .ac-specs-layout {
    grid-template-columns: 1fr;
  }

  .page-dc-charge .ac-specs-visual {
    order: 1;
    width: min(100%, 420px);
    justify-self: center;
  }

  .page-dc-charge .ac-specs-main {
    order: 2;
  }
}

@media (max-width: 768px) {
  .page-dc-charge .product-hero--ac .product-hero-stage::before {
    display: none;
  }

  .page-dc-charge .product-hero-content--ac h1,
  .page-dc-charge .product-hero-ac-desc,
  .page-dc-charge .breadcrumb,
  .page-dc-charge .breadcrumb a,
  .page-dc-charge .product-hero-ac-feature {
    color: inherit;
    text-shadow: none;
  }

  .page-dc-charge .product-hero-ac-lead,
  .page-dc-charge .product-hero-ac-accent {
    color: var(--dc-blue);
  }

  .page-dc-charge .product-hero-ac-badge,
  .page-dc-charge .product-hero-ac-feature-icon {
    background: rgba(255, 255, 255, 0.95);
  }

  .page-dc-charge .product-hero-ac-feature span:last-child {
    color: inherit;
  }

  .page-dc-charge .ac-specs-visual {
    width: min(100%, 300px);
  }
}