/* Corelux — Anasayfa V1 (Bootstrap 5.3 overlay) */
:root {
  --clx-blue: #054ea2;
  --clx-dark: #222222;
  --clx-muted: #4a5257;
  --clx-gray: #f2f2f2;
  --clx-form-label: #526077;
  --clx-border: #eceef2;
  --clx-container: 1280px;
  --clx-header-h: 90px;
  --clx-mega-bg: #181818;
  --clx-mega-sidebar: #141414;
  --clx-mega-muted: rgba(255, 255, 255, 0.45);
  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: Inter, system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  /* Anchor targets (e.g. #referanslar) must clear the fixed header. */
  scroll-padding-top: calc(var(--clx-header-h) + 16px);
}

body {
  font-family: var(--font-body);
  color: var(--clx-dark);
  background: #fff;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.clx-container {
  width: 100%;
  max-width: var(--clx-container);
  margin-inline: auto;
  padding-inline: 20px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.section-label img {
  width: 19px;
  height: 19px;
}

.section-label span {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1.68px;
  text-transform: uppercase;
  color: var(--clx-blue);
  line-height: 19.6px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 3.2vw, 45px);
  line-height: 1.25;
  color: var(--clx-dark);
  margin: 0 0 14px;
}

.section-desc {
  font-size: 16px;
  line-height: 23.8px;
  color: var(--clx-muted);
  margin: 0;
  max-width: 815px;
}

.btn-clx {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 28px;
  background: var(--clx-blue);
  color: #fff !important;
  border: none;
  border-radius: 3.3px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.2;
  position: relative;
  overflow: hidden;
  transition:
    background 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-clx::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 25%, rgba(255, 255, 255, 0.28) 50%, transparent 75%);
  transform: translateX(-130%);
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-clx:hover {
  background: #043f84;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(5, 78, 162, 0.32);
}

.btn-clx:hover::after {
  transform: translateX(130%);
}

.btn-clx:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-clx-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 33px;
  padding: 0 22px;
  border: 2px solid #fff;
  border-radius: 3.3px;
  color: #fff !important;
  font-weight: 500;
  font-size: 13px;
  background: transparent;
  transition:
    background 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-clx-outline:hover {
  background: #fff;
  color: var(--clx-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: #000;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
  transition:
    color 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    letter-spacing 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.link-more img {
  width: 10px;
  height: 10px;
  margin-left: 4px;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.link-more:hover {
  color: var(--clx-blue);
  letter-spacing: 1.6px;
}

.link-more:hover img {
  transform: translate(3px, -3px);
}

/* ========== HEADER ========== */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--clx-header-h);
  overflow: visible;
}

.site-header.is-scrolled {
  position: fixed;
  background: rgba(30, 30, 30, 0.95);
  backdrop-filter: blur(4px);
  animation: headerIn 0.25s ease;
}

@keyframes headerIn {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: var(--clx-header-h);
  gap: 24px;
}

.brand-logo {
  width: 160px;
  flex-shrink: 0;
}

.brand-logo img {
  width: 100%;
  height: auto;
}

.nav-main {
  display: none;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-main > li {
  position: static;
}

.nav-main > li > a {
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
}

.nav-main > li > a.active,
.nav-main > li > a:hover,
.nav-main > li.has-mega:hover > a,
.nav-main > li.has-mega.is-open > a {
  font-weight: 700;
}

.nav-main > li > a.active {
  color: var(--clx-blue);
}

.mega-trigger::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-top: 2px;
  opacity: 0.85;
}

/* Mega menu panel */
.mega-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--clx-mega-bg);
  color: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  border-top: 3px solid var(--clx-blue);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 1100;
}

.nav-main > li.has-mega:hover .mega-panel,
.nav-main > li.has-mega.is-open .mega-panel,
.site-header.mega-open .mega-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.site-header.mega-open,
.site-header:has(.has-mega:hover),
.site-header:has(.has-mega.is-open) {
  background: rgba(24, 24, 24, 0.98);
}

.mega-panel-inner {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 300px;
  gap: 0;
  align-items: stretch;
  min-height: 380px;
}

/* Col 1 — main categories */
.mega-sidebar {
  background: var(--clx-mega-sidebar);
  padding: 8px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.mega-main-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mega-main-list button,
.mega-main-list a {
  display: block;
  width: 100%;
  text-align: left;
  padding: 14px 20px 14px 18px;
  border: none;
  background: transparent;
  color: var(--clx-mega-muted);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
  cursor: pointer;
  border-left: 3px solid transparent;
  transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  text-decoration: none;
}

.mega-main-list button:hover,
.mega-main-list button.is-active,
.mega-main-list a:hover,
.mega-main-list a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  border-left-color: var(--clx-blue);
}

/* Col 2 & 3 — subcats + products */
.mega-mid {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 0;
  padding: 24px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.mega-subcats ul,
.mega-products ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mega-subcats button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 14px;
  margin-bottom: 4px;
  border: none;
  border-radius: 4px;
  background: transparent;
  color: var(--clx-mega-muted);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.mega-subcats button:hover {
  color: #fff;
}

.mega-subcats button.is-active {
  background: var(--clx-blue);
  color: #fff;
  font-weight: 500;
}

.mega-products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 32px;
  padding-left: 28px;
  align-content: start;
}

.mega-products a {
  display: block;
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.75) !important;
  font-size: 14px;
  font-weight: 400 !important;
  line-height: 1.35;
  white-space: nowrap;
}

.mega-products a:hover {
  color: #fff !important;
}

/* Col 4 — promo */
.mega-promo {
  display: flex;
  flex-direction: column;
  padding: 24px 24px 28px;
  align-self: stretch;
}

.mega-promo-media {
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 16px;
  aspect-ratio: 16 / 10;
}

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

.mega-promo-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.3;
}

.mega-promo-desc {
  margin: 0 0 auto;
  color: var(--clx-mega-muted);
  font-size: 13px;
  line-height: 1.5;
  flex: 1;
}

.mega-promo-btn {
  width: 100%;
  min-height: 44px;
  margin-top: 20px;
  border-radius: 4px;
}

.mobile-mega {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-mega summary {
  list-style: none;
  color: #fff;
  padding: 10px 0;
  cursor: pointer;
  font-size: 15px;
}

.mobile-mega summary::-webkit-details-marker {
  display: none;
}

.mobile-mega-body {
  display: grid;
  gap: 4px;
  padding: 0 0 12px 12px;
}

.mobile-mega-body a {
  border-bottom: none !important;
  padding: 6px 0 !important;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.mobile-mega-cta {
  margin-top: 8px;
  width: fit-content;
  min-height: 38px;
  padding: 0 16px;
  font-size: 13px;
}

@media (min-width: 992px) {
  .header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
    min-width: 0;
  }

  .header-right .nav-main {
    display: flex;
    margin: 0;
  }

  .header-inner > .nav-main {
    display: flex;
    margin-left: auto;
    margin-right: 20px;
  }

  .brand-logo { width: 190px; }

  .header-actions {
    gap: 0;
    flex-shrink: 0;
  }

  .header-actions .search-btn {
    margin-right: 16px;
  }
}

@media (max-width: 1199.98px) {
  .mega-panel-inner {
    grid-template-columns: 200px minmax(0, 1fr) 260px;
  }
  .mega-mid {
    grid-template-columns: 160px minmax(0, 1fr);
    padding: 20px 20px;
  }
  .mega-products {
    padding-left: 20px;
    gap: 8px 20px;
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #fff;
  flex-shrink: 0;
}

.header-actions .search-btn {
  background: none;
  border: none;
  padding: 0;
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
}

.header-actions .search-btn img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  text-decoration: underline;
  background: none;
  border: none;
  padding: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
  padding-left: 16px;
  margin-left: 2px;
}

.lang-switch::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #fff;
  margin-top: 2px;
}

.navbar-toggler-clx {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  background: transparent;
  color: #fff;
  font-size: 22px;
  line-height: 1;
}

@media (min-width: 992px) {
  .navbar-toggler-clx {
    display: none;
  }
}

.mobile-nav {
  display: none;
  background: rgba(20, 20, 20, 0.98);
  padding: 16px 20px 24px;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav a {
  display: block;
  color: #fff;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* ========== PRODUCTS ========== */
.section-products {
  padding: 104px 0 80px;
  background: #fff;
}

.products-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

.slider-nav {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  margin-bottom: 8px;
}

.slider-nav button {
  width: 50px;
  height: 50px;
  border: none;
  background: transparent;
  padding: 0;
  border-radius: 50%;
  overflow: hidden;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.slider-nav button img {
  width: 50px;
  height: 50px;
}

.slider-nav button:hover {
  transform: scale(1.05);
}

.slider-nav button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.products-track-wrap {
  overflow: hidden;
  margin-right: calc(50% - 50vw);
  padding-right: calc(50vw - 50%);
}

.products-track {
  display: flex;
  gap: 18px;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.product-card {
  position: relative;
  flex: 0 0 421px;
  width: 421px;
  height: 499px;
  border-radius: 6px;
  overflow: hidden;
  color: #fff;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.product-card .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

.product-card:hover .bg {
  transform: scale(1.05);
}

.product-card .num {
  position: absolute;
  top: 19px;
  right: 20px;
  z-index: 2;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 30px;
  line-height: 23.8px;
  color: #d9d9d9;
}

.product-card .info {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 40px;
  z-index: 2;
}

.product-card .info h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  line-height: 24.7px;
  margin: 0 0 8px;
}

.product-card .info p {
  font-size: 16px;
  line-height: 23.8px;
  margin: 0;
  opacity: 0.95;
}

@media (max-width: 575.98px) {
  .product-card,
  .product-card {
    flex-basis: 85vw;
    width: 85vw;
    height: 420px;
  }
  .products-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ========== REFERENCES ========== */
.section-refs {
  padding: 40px 0 0;
}

.refs-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.refs-showcase {
  position: relative;
  height: 718px;
  border-radius: 0;
  overflow: hidden;
  color: #fff;
  background: #111 center / cover no-repeat;
}

.refs-showcase.is-switching .refs-copy {
  opacity: 0;
  transform: translateY(16px);
}

.refs-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.15) 60%, rgba(0, 0, 0, 0.25) 100%);
  z-index: 1;
}

.refs-copy {
  position: relative;
  z-index: 2;
  max-width: 815px;
  padding: 120px 0 0;
  transition:
    opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.refs-copy h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 3vw, 45px);
  line-height: 1.25;
  margin: 0 0 16px;
}

.refs-copy p {
  font-size: 16px;
  line-height: 23.8px;
  margin: 0;
  max-width: 700px;
}

.refs-thumbs {
  position: absolute;
  left: 50%;
  bottom: 50px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 0;
  max-width: 880px;
  width: calc(100% - 40px);
  overflow-x: auto;
}

.refs-thumb {
  flex: 0 0 220px;
  width: 220px;
  height: 140px;
  border: 5px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  padding: 0;
  background: none;
}

.refs-thumb.active {
  border-width: 2px;
  border-color: #fff;
  padding: 2px;
}

.refs-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.refs-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.8);
}

.refs-thumb.active::after {
  display: none;
}

.refs-thumb span {
  position: absolute;
  left: 19px;
  bottom: 19px;
  z-index: 1;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  text-transform: uppercase;
  text-align: left;
}

@media (max-width: 991.98px) {
  .refs-showcase { height: 560px; }
  .refs-copy { padding-top: 80px; }
  .refs-thumbs { bottom: 20px; }
}

/* ========== ABOUT ========== */
.section-about {
  padding: 75px 0 80px;
  background: var(--clx-gray);
}

.about-grid {
  display: grid;
  grid-template-columns: 545px 1fr;
  gap: 48px;
  align-items: start;
}

.about-left .section-title {
  margin-bottom: 24px;
}

.about-media img {
  width: 100%;
  height: 459px;
  object-fit: cover;
  border-radius: 6px;
}

.about-top {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  margin-bottom: 24px;
  min-height: 30px;
}

.about-text p {
  font-size: 16px;
  line-height: 23.8px;
  color: var(--clx-muted);
  margin: 0 0 16px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-feature img {
  width: 67px;
  height: 67px;
  flex-shrink: 0;
}

.about-feature span {
  font-weight: 500;
  font-size: 15px;
  line-height: 21.86px;
  color: var(--clx-blue);
}

@media (max-width: 1199.98px) {
  .about-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 32px;
  }
  .about-media img { height: 400px; }
}

@media (max-width: 991.98px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-top { justify-content: flex-start; }
  .about-features { grid-template-columns: 1fr; }
}

/* ========== TECHNICAL ========== */
.section-tech {
  padding: 80px 0;
  background: #fff;
}

.tech-grid {
  display: grid;
  grid-template-columns: 1fr 592px;
  gap: 48px;
  align-items: start;
  margin-top: 40px;
}

.tech-list {
  display: flex;
  flex-direction: column;
  gap: 19px;
}

.tech-item h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  line-height: 24.7px;
  color: var(--clx-blue);
  margin: 0 0 9px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  display: inline-block;
  min-width: 118px;
}

.tech-item p {
  font-size: 16px;
  line-height: 22.4px;
  color: var(--clx-muted);
  margin: 0;
  max-width: 557px;
}

.tech-media img {
  width: 100%;
  height: 459px;
  object-fit: cover;
  border-radius: 6px;
}

@media (max-width: 991.98px) {
  .tech-grid { grid-template-columns: 1fr; }
  .tech-media img { height: 360px; }
}

/* ========== CONTACT ========== */
.section-contact {
  padding: 80px 0;
  background: #fff;
}

.section-label--center {
  justify-content: center;
}

.contact-home {
  text-align: center;
}

.contact-home-title {
  margin: 12px 0 16px;
}

.contact-home-desc {
  max-width: 760px;
  margin: 0 auto 28px;
}

.contact-home-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 28px 48px;
  margin-bottom: 40px;
}

.contact-home-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  line-height: 1.4;
  color: var(--clx-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-home-link img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.contact-home-link:hover {
  color: var(--clx-blue);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 606px;
  gap: 48px;
  align-items: start;
}

.contact-info .section-title {
  margin-bottom: 16px;
}

.contact-info .section-desc {
  margin-bottom: 48px;
}

.contact-lines {
  display: flex;
  flex-direction: column;
  gap: 31px;
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 16px;
  line-height: 26px;
  color: var(--clx-dark);
}

.contact-line img {
  width: 18px;
  height: 19px;
  flex-shrink: 0;
}

.contact-form-card {
  background: #eaeaea;
  border: 1px solid var(--clx-border);
  border-radius: 12px;
  padding: 32px;
}

.contact-form-card--home {
  text-align: left;
  background: #e8eef5;
  border: none;
  border-radius: 16px;
  padding: 40px 36px 36px;
  max-width: none;
}

.contact-form-card .form-block-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  margin: 0 0 18px;
  color: var(--clx-dark);
}

.contact-form-card .form-block-title img {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
}

.contact-form-card .form-block-title.mt {
  margin-top: 28px;
}

.form-label-clx {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--clx-form-label);
  margin-bottom: 4px;
}

.form-control-clx,
.form-select-clx {
  width: 100%;
  min-height: 48px;
  padding: 12px 16px;
  border: 1px solid var(--clx-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(35, 39, 46, 0.08);
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--clx-form-label);
  outline: none;
}

.form-control-clx:focus,
.form-select-clx:focus {
  border-color: var(--clx-blue);
  box-shadow: 0 0 0 3px rgba(5, 78, 162, 0.15);
}

textarea.form-control-clx {
  min-height: 100px;
  resize: vertical;
}

textarea.form-control-clx--tall {
  min-height: 168px;
}

.contact-form-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 28px;
}

.btn-clx-submit {
  width: 100%;
  max-width: 420px;
  min-height: 52px;
  margin-top: 0;
  background: var(--clx-blue);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  font-size: 16px;
}

.btn-clx-submit:hover {
  background: #043f84;
}

.form-feedback {
  display: none;
  margin-top: 12px;
  font-size: 14px;
  color: var(--clx-blue);
  text-align: center;
}

.form-feedback.show {
  display: block;
}

/* The same element reports failures, so it turns red when the submission
   could not be saved. */
.form-feedback.is-error {
  color: #b02a2a;
}

@media (max-width: 991.98px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-card { max-width: 606px; }
  .contact-form-card--home { max-width: none; padding: 28px 20px; }
  .contact-home-links { gap: 16px 28px; }
  .btn-clx-submit { max-width: none; }
}

/* ========== NEWS ========== */
.section-news {
  padding: 80px 0 60px;
  background: #fff;
}

.news-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}

.news-track-wrap {
  overflow: hidden;
  margin-right: calc(50% - 50vw);
  padding-right: calc(50vw - 50%);
}

.news-track {
  display: flex;
  gap: 27px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: thin;
}

.news-card {
  flex: 0 0 342px;
  width: 342px;
  scroll-snap-align: start;
}

.news-card .thumb {
  width: 100%;
  height: 327px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

.news-card .body {
  padding: 12px 16px 16px;
}

.news-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 6px;
  line-height: 1.3;
}

.news-card p {
  font-size: 13px;
  color: #646464;
  margin: 0 0 6px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card .read {
  font-size: 13px;
  font-weight: 600;
  color: var(--clx-blue);
}

.news-card .read:hover {
  opacity: 0.8;
}

/* ========== FOOTER ========== */
.site-footer {
  background: #1a1a1a;
  color: rgba(255, 255, 255, 0.7);
  padding: 24px 0 16px;
}

.footer-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.footer-logo img {
  width: 254px;
  height: auto;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

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

/* Contact block — shown only when filled in from the panel. */
.footer-contact {
  text-align: center;
  margin-bottom: 24px;
}

.footer-contact-title {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.footer-contact-items {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 28px;
  font-size: 13px;
}

.footer-contact-item {
  margin: 0;
}

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

@media (max-width: 575.98px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-contact-items {
    flex-direction: column;
    gap: 6px;
  }
}

/* ========== RESTORED STYLES ========== */

/* Brand logo */
.brand-logo {
  width: 190px;
  max-width: 190px;
}

.brand-logo img {
  object-fit: contain;
}

@media (min-width: 992px) {
  .brand-logo {
    width: 190px;
    max-width: 190px;
  }
}

/* Link arrow size */
.link-more img {
  width: 10px;
  height: 10px;
  margin-left: 4px;
}

/* Search overlay */
body.search-open {
  overflow: hidden;
}

.clx-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.clx-search-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.clx-search-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
}

.clx-search-panel {
  position: relative;
  width: min(760px, calc(100% - 28px));
  margin: 120px auto 0;
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.clx-search-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  color: #6b7280;
  cursor: pointer;
}

.clx-search-label {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  color: var(--clx-dark);
}

.clx-search-form {
  display: flex;
  gap: 10px;
}

.clx-search-input {
  flex: 1;
  min-height: 50px;
  border: 1px solid #d7dce3;
  border-radius: 8px;
  padding: 0 14px;
  font-size: 16px;
  outline: none;
}

.clx-search-input:focus {
  border-color: var(--clx-blue);
  box-shadow: 0 0 0 3px rgba(5, 78, 162, 0.15);
}

.clx-search-submit {
  min-width: 110px;
  min-height: 50px;
  border: none;
  border-radius: 8px;
  background: var(--clx-blue);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.clx-search-submit:hover {
  background: #043f84;
}

.clx-search-help {
  margin: 12px 0 0;
  font-size: 13px;
  color: #6b7280;
}

/* Language dropdown */
.lang-dropdown {
  position: relative;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
  padding-left: 16px;
  margin-left: 2px;
}

.lang-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  text-decoration: underline;
  padding: 0;
  cursor: pointer;
  line-height: 1;
}

.lang-dropdown-toggle::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #fff;
  margin-top: 2px;
}

.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 92px;
  margin: 0;
  padding: 6px 0;
  list-style: none;
  background: #1e1e1e;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 1100;
}

.lang-dropdown.is-open .lang-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown-menu li {
  margin: 0;
}

/* The menu renders <a> links (the switcher navigates to the translated URL),
   so both element types are styled here. */
.lang-dropdown-menu button,
.lang-dropdown-menu a {
  display: block;
  width: 100%;
  padding: 8px 16px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.lang-dropdown-menu button:hover,
.lang-dropdown-menu a:hover,
.lang-dropdown-menu [aria-selected="true"] button,
.lang-dropdown-menu [aria-selected="true"] a {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

/* Hero slider */
.hero {
  position: relative;
  min-height: 1001px;
  display: flex;
  align-items: stretch;
  color: #fff;
  overflow: hidden;
  background: #0a0a0a;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.05);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 1;
}

.hero-media {
  width: 100%;
  height: 100%;
}

.hero-media--video {
  object-fit: cover;
  display: block;
}

.hero-media--image {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.35) 55%, rgba(0, 0, 0, 0.45) 100%);
  pointer-events: none;
}

.hero-stage {
  position: relative;
  z-index: 3;
  width: 100%;
  min-height: 1001px;
  padding: calc(var(--clx-header-h) + 40px) 0 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-panels {
  position: relative;
  width: 100%;
  min-height: 300px;
}

.hero-panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 681px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(24px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.hero-panel.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.hero-panel h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 3.5vw, 45px);
  line-height: 1.2;
  margin: 0 0 12px;
}

.hero-panel p {
  font-size: 16px;
  line-height: 23.8px;
  margin: 0 0 32px;
  max-width: 538px;
  opacity: 0.95;
}

.hero-panel .btn-clx {
  max-width: 170px;
  width: 100%;
}

.hero-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
}

.hero-arrow {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.25);
  display: grid;
  place-items: center;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
}

.hero-arrow img {
  width: 12px;
  height: 12px;
  filter: brightness(0) invert(1);
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 4px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: transparent;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
}

.hero-dot.is-active {
  background: #fff;
  transform: scale(1.15);
}

@media (max-width: 991.98px) {
  .hero,
  .hero-stage {
    min-height: 720px;
  }

  .hero-stage {
    padding-top: calc(var(--clx-header-h) + 24px);
    padding-bottom: 48px;
  }

  .hero-panels {
    min-height: 260px;
  }

  .hero-panel h1 {
    line-height: 1.25;
  }
}

/* Products carousel full-width */
.products-track-wrap {
  overflow: hidden;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-left: max(20px, calc((100vw - var(--clx-container)) / 2 + 20px));
  padding-right: max(20px, calc((100vw - var(--clx-container)) / 2 + 20px));
}

/* News section (homepage carousel) */
.section-news {
  padding: 80px 0 72px;
}

.news-head-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 14px;
}

.news-head-top .section-title {
  margin-bottom: 0;
}

.news-section-desc {
  margin-bottom: 40px;
}

.news-track-wrap {
  overflow: hidden;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-left: max(20px, calc((100vw - var(--clx-container)) / 2 + 20px));
  padding-right: 0;
}

.news-track {
  display: flex;
  gap: 27px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: max(20px, calc((100vw - var(--clx-container)) / 2 + 20px));
  padding-right: max(20px, calc((100vw - var(--clx-container)) / 2 + 20px));
  padding-bottom: 4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.news-track::-webkit-scrollbar {
  display: none;
}

.news-card {
  flex: 0 0 342px;
  width: 342px;
  scroll-snap-align: start;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.news-card:hover {
  transform: translateY(-6px);
}

.news-card .thumb {
  width: 100%;
  height: 327px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.news-card:hover .thumb {
  transform: scale(1.04);
}

.news-card .body {
  padding: 14px 0 0;
}

.news-card h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 8px;
  line-height: 1.35;
}

.news-card p {
  font-size: 13px;
  color: #646464;
  margin: 0 0 10px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card .read {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--clx-blue);
}

@media (max-width: 767.98px) {
  .news-head-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .news-card {
    flex: 0 0 300px;
    width: 300px;
  }

  .news-card .thumb {
    height: 280px;
  }
}

/* ========== INNER PAGES ========== */
.page-inner .site-header--inner,
.site-header--inner {
  position: fixed;
  background: rgba(30, 30, 30, 0.98);
}

.pd-main {
  padding-top: calc(var(--clx-header-h) + 24px);
  padding-bottom: 80px;
  background: #fff;
}

.pd-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
  font-size: 15px;
}

.pd-breadcrumb a {
  color: var(--clx-blue);
}

.pd-breadcrumb span {
  color: #bfbfbf;
}

.pd-breadcrumb strong {
  color: var(--clx-blue);
  font-weight: 600;
}

/* Product detail */
.pd-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
  gap: 48px;
  align-items: start;
  margin-bottom: 56px;
}

.pd-gallery {
  display: grid;
  grid-template-columns: 136px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

/* A product with a single image renders no thumbnail rail, and the main
   image would otherwise land in the 136px column meant for the thumbs. */
.pd-gallery--single {
  grid-template-columns: minmax(0, 1fr);
}

.pd-thumbs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pd-thumb {
  width: 100%;
  height: 119px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  background: #f5f5f5;
  opacity: 0.5;
  cursor: pointer;
}

.pd-thumb.is-active {
  border-color: var(--clx-blue);
  opacity: 1;
}

.pd-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pd-main-image {
  border-radius: 8px;
  overflow: hidden;
  background: #f3f3f3;
  aspect-ratio: 668 / 659;
}

.pd-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pd-certs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

.pd-certs img {
  height: 48px;
  width: auto;
}

.pd-info h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 3.5vw, 45px);
  line-height: 1.2;
  color: var(--clx-dark);
  margin: 0 0 16px;
}

.pd-desc {
  font-size: 16px;
  line-height: 23.8px;
  color: var(--clx-muted);
  margin: 0 0 24px;
}

.pd-features {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pd-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--clx-dark);
}

.pd-check {
  width: 18px;
  height: 18px;
  border: 1.5px solid #f99300;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pd-check img {
  width: 10px;
  height: 10px;
}

.pd-apps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding-top: 24px;
  margin-bottom: 28px;
  border-top: 1px solid #e5e5e5;
}

.pd-app {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.pd-app-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
}

.pd-app-icon img {
  width: 28px;
  height: 28px;
}

.pd-app span {
  font-size: 13px;
  line-height: 1.4;
  color: #5f6368;
}

.pd-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 56px;
  background: var(--clx-blue);
  color: #fff !important;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 12px;
}

.pd-btn-primary:hover {
  background: #043f84;
}

.pd-btn-primary img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.pd-btn-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.pd-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 16px;
  background: #fff;
  border: 1.5px solid #e0e4e9;
  border-radius: 8px;
  color: var(--clx-dark) !important;
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  cursor: pointer;
}

.pd-btn-secondary:hover {
  border-color: var(--clx-blue);
  color: var(--clx-blue) !important;
}

.pd-details {
  margin-bottom: 64px;
}

.pd-details h2,
.pd-related h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
  color: var(--clx-dark);
  margin: 0 0 20px;
}

.pd-tabs {
  display: flex;
  gap: 32px;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 20px;
}

.pd-tab {
  appearance: none;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 0 0 8px;
  margin-bottom: -1px;
  font-size: 15px;
  font-weight: 500;
  color: #999;
}

.pd-tab.active {
  color: var(--clx-blue);
  font-weight: 600;
  border-bottom-color: var(--clx-blue);
}

.pd-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.pd-toolbar-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.pd-doc-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #f8f7f5;
  border: 1px solid #e0e4e9;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--clx-dark);
}

.pd-doc-pill img {
  width: 20px;
  height: 20px;
}

.pd-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  padding: 0 6px;
  background: var(--clx-blue);
  color: #fff;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
}

.pd-helper {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--clx-muted);
  max-width: 420px;
}

.pd-helper img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.pd-btn-send {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 24px;
  background: var(--clx-blue);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 6px 8px rgba(0, 102, 204, 0.2);
  cursor: pointer;
}

.pd-btn-send:hover:not(:disabled) {
  background: #043f84;
}

.pd-btn-send:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}

.pd-btn-send img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

.pd-table-wrap {
  overflow-x: auto;
  border-radius: 8px;
}

.pd-table {
  width: 100%;
  min-width: 1100px;
  border-collapse: separate;
  border-spacing: 0;
  margin: 0;
}

.pd-table thead th {
  background: var(--clx-dark);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  padding: 14px 10px;
  white-space: nowrap;
}

.pd-table thead th:first-child {
  border-radius: 8px 0 0 0;
}

.pd-table thead th:last-child {
  border-radius: 0 8px 0 0;
}

.pd-table tbody td {
  text-align: center;
  padding: 12px 10px;
  font-size: 14px;
  color: var(--clx-muted);
  border-bottom: 1px solid #eee;
  vertical-align: middle;
  background: #fff;
}

.pd-table tbody tr:nth-child(even) td {
  background: #f9f9f9;
}

.pd-table tbody tr:last-child td:first-child {
  border-radius: 0 0 0 8px;
}

.pd-table tbody tr:last-child td:last-child {
  border-radius: 0 0 8px 0;
  border-bottom: none;
}

.pd-table .pd-code {
  font-weight: 700;
  color: var(--clx-dark);
}

.pd-doc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  min-width: 280px;
}

.pd-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 30px;
  padding: 0 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #fff;
  color: var(--clx-muted);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
  margin: 0;
}

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

.pd-chip-box {
  width: 18px;
  height: 18px;
  border: 2px solid #9ca3af;
  border-radius: 4px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pd-chip-box img {
  width: 10px;
  height: 10px;
}

.pd-chip.is-checked {
  background: var(--clx-blue);
  border-color: var(--clx-blue);
  color: #fff;
}

.pd-chip.is-checked .pd-chip-box {
  border-color: transparent;
  background: transparent;
}

.pd-tech-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
}

.pd-tech-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  background: #f9f9f9;
  border-radius: 8px;
  border: 1px solid #eee;
}

.pd-tech-item span {
  color: var(--clx-muted);
  font-size: 14px;
}

.pd-tech-item strong {
  color: var(--clx-dark);
  font-size: 14px;
  font-weight: 600;
  text-align: right;
}

.pd-related-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: thin;
}

.pd-related-card {
  flex: 0 0 381px;
  width: 381px;
  background: #e5e5e5;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  scroll-snap-align: start;
}

.pd-related-media {
  height: 220px;
  background: #ddd;
}

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

.pd-related-body {
  padding: 16px 20px 20px;
}

.pd-related-body h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 10px;
  color: var(--clx-dark);
}

.pd-related-btn {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  background: var(--clx-blue);
  color: #fff !important;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
}

.pd-related-btn:hover {
  background: #043f84;
}

.pd-related-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.pd-related-dots span {
  width: 25px;
  height: 4px;
  background: #696868;
  display: block;
}

.pd-related-dots span.is-active {
  background: var(--clx-blue);
}

.pd-modal {
  border: none;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pd-modal-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.pd-modal-head h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  margin: 0 0 12px;
  color: var(--clx-dark);
}

.pd-modal-head p {
  margin: 0;
  color: #6b7280;
  font-size: 15px;
  line-height: 1.5;
}

.pd-modal-close {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  color: #6b7280;
  padding: 0;
  cursor: pointer;
}

.pd-modal-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--clx-dark);
  margin-bottom: 8px;
}

.pd-modal-input {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 15px;
  margin-bottom: 20px;
  outline: none;
}

.pd-modal-input:focus {
  border-color: var(--clx-blue);
  box-shadow: 0 0 0 3px rgba(5, 78, 162, 0.12);
}

.pd-modal-info {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 68px;
  padding: 16px 20px;
  background: rgba(239, 143, 29, 0.05);
  border-radius: 12px;
  margin-bottom: 24px;
}

.pd-modal-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 24px;
  background: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.pd-modal-info-icon img {
  width: 20px;
  height: 20px;
}

.pd-modal-info strong {
  color: var(--clx-blue);
  font-size: 16px;
}

.pd-modal-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.pd-modal-cancel,
.pd-modal-submit {
  min-height: 56px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
}

.pd-modal-cancel {
  background: #f3f4f6;
  color: var(--clx-dark);
}

.pd-modal-submit {
  background: var(--clx-blue);
  color: #fff;
}

.pd-modal-submit:hover {
  background: #043f84;
}

.pd-modal-submit img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

@media (max-width: 1199.98px) {
  .pd-hero {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .pd-gallery {
    max-width: 720px;
  }
}

@media (max-width: 767.98px) {
  .pd-gallery {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 10px;
  }

  /* Restated after the two-column rule above, which would otherwise win. */
  .pd-gallery--single {
    grid-template-columns: minmax(0, 1fr);
  }

  .pd-thumb {
    height: 72px;
  }

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

  .pd-btn-row {
    grid-template-columns: 1fr;
  }

  .pd-tech-grid {
    grid-template-columns: 1fr;
  }

  .pd-related-card {
    flex-basis: 85vw;
    width: 85vw;
  }

  .pd-modal {
    padding: 24px;
  }

  .pd-modal-actions {
    grid-template-columns: 1fr;
  }
}

/* ========== PRODUCT LISTING PAGES ========== */
.pl-banner {
  background: #dde5ef;
  padding: calc(var(--clx-header-h) + 40px) 0 48px;
}

.pl-banner h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 34px);
  color: var(--clx-blue);
  margin: 0 0 16px;
}

.pl-banner p {
  max-width: 1100px;
  margin: 0;
  color: var(--clx-blue);
  font-size: 16px;
  line-height: 1.5;
}

.pl-banner-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--clx-blue) !important;
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
}

.pl-main {
  padding: 48px 0 80px;
  background: #fff;
}

.pg-groups-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.pl-card {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 0;
  min-height: 350px;
  background: #f2f2f2;
  border-radius: 6px;
  overflow: hidden;
}

.pl-card-media {
  min-height: 330px;
  margin: 10px;
  border-radius: 6px;
  overflow: hidden;
  background: #ddd;
}

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

.pl-card-body {
  padding: 48px 40px 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.pl-card-body h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.25;
  color: var(--clx-blue);
  margin: 0 0 12px;
}

.pl-card-body p {
  color: var(--clx-blue);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.68;
  margin: 0 0 auto;
  max-width: 280px;
}

.pl-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-top: 24px;
  padding: 0 16px;
  background: var(--clx-blue);
  color: #fff !important;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
}

.pl-card-btn:hover {
  background: #043f84;
}

@media (max-width: 1199.98px) {
  .pg-groups-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .pl-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .pl-card-media {
    min-height: 220px;
    margin: 10px 10px 0;
  }

  .pl-card-body {
    padding: 24px;
  }
}

.cat-layout {
  display: grid;
  grid-template-columns: 271px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.cat-side-card {
  border: 1px solid #e4e7ec;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}

.cat-side-head {
  background: var(--clx-blue);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 14px 20px;
}

.cat-side-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 50px;
  padding: 0 20px;
  border-bottom: 1px solid #f3f4f6;
  color: var(--clx-muted);
  font-size: 16px;
}

.cat-side-list a.is-active {
  background: #f0f4ff;
  color: var(--clx-blue);
  font-weight: 600;
  box-shadow: inset 2px 0 0 var(--clx-blue);
}

.cat-contact {
  margin: 16px;
  padding: 16px;
  border: 1px solid #e4e7ec;
  border-radius: 8px;
}

.cat-contact strong {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
}

.cat-contact p {
  font-size: 13px;
  color: var(--clx-muted);
  margin: 0 0 12px;
  line-height: 1.5;
}

.cat-contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  background: var(--clx-blue);
  color: #fff !important;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
}

.subcat-card {
  display: block;
  border: 1px solid #e4e7ec;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.2s ease;
}

.subcat-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.subcat-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.subcat-card span {
  display: block;
  padding: 16px;
  font-size: 18px;
  font-weight: 600;
  color: var(--clx-dark);
}

.cat-detail {
  margin-top: 40px;
}

.cat-detail-banner {
  background: #1a1a1a;
  color: #fff;
  border-radius: 8px 8px 0 0;
  padding: 16px 20px;
  font-weight: 600;
  font-size: 16px;
}

.cat-detail-body {
  border: 1px solid #e4e7ec;
  border-top: none;
  padding: 24px;
  background: #fff;
}

.cat-detail-body p {
  color: var(--clx-muted);
  font-size: 15px;
  line-height: 1.75;
  margin: 0 0 14px;
}

.cat-detail-note {
  color: var(--clx-blue) !important;
  font-weight: 600;
}

.cat-accordion {
  margin-top: 16px;
}

.cat-accordion .accordion-item {
  border: 1px solid #e4e7ec;
  margin-bottom: 8px;
  border-radius: 8px !important;
  overflow: hidden;
}

.cat-accordion .accordion-button {
  font-size: 16px;
  font-weight: 500;
  color: var(--clx-dark);
  box-shadow: none;
}

.cat-accordion .accordion-button:not(.collapsed) {
  background: #f8fafc;
  color: var(--clx-blue);
}

.filter-card {
  border: 1px solid #e4e7ec;
  border-radius: 8px;
  padding: 20px;
  background: #fff;
}

.filter-card h2 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 20px;
}

.filter-block {
  margin-bottom: 18px;
}

.filter-block label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--clx-dark);
}

.filter-block .form-select {
  font-size: 14px;
  color: #9ca3af;
}

.filter-range {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #9ca3af;
}

.filter-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 8px;
}

/* "Temizle" is a link (it resets the filters by navigating to the clean URL),
   so both are centred explicitly — a link would otherwise sit top-left inside
   the box instead of being centred the way a button's label is. */
.filter-apply,
.filter-clear {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  border: 1px solid #d1d5db;
  cursor: pointer;
}

.filter-apply {
  background: var(--clx-blue);
  color: #fff;
  border-color: var(--clx-blue);
}

.filter-clear {
  background: #fff;
  color: var(--clx-muted);
}

.filter-clear:hover {
  color: var(--clx-text, #1a1a1a);
}

.prod-card {
  border: 1px solid #e4e7ec;
  border-radius: 8px;
  padding: 15px;
  background: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.prod-card-media {
  height: 198px;
  background: #f4f4f4;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 16px;
}

.prod-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.prod-card h3 {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 10px;
  color: var(--clx-dark);
}

.prod-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 14px;
}

.prod-specs span {
  background: #f4f4f4;
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 13px;
  color: var(--clx-muted);
}

.prod-card a {
  margin-top: auto;
  color: var(--clx-blue) !important;
  font-size: 15px;
  font-weight: 600;
}

@media (max-width: 991.98px) {
  .pl-card {
    grid-template-columns: 1fr;
  }

  .pl-card-media {
    min-height: 240px;
  }

  .cat-layout {
    grid-template-columns: 1fr;
  }
}

/* ========== DOCUMENTS ========== */
.doc-tabs {
  gap: 32px;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 32px;
}

.doc-tabs .nav-link {
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  padding: 0 0 10px;
  margin-bottom: -1px;
  color: #999;
  font-weight: 500;
  font-size: 15px;
  background: none;
}

.doc-tabs .nav-link:hover {
  color: var(--clx-blue);
}

.doc-tabs .nav-link.active {
  color: var(--clx-blue);
  font-weight: 600;
  border-bottom-color: var(--clx-blue);
  background: none;
}

.doc-card {
  display: block;
  border: 1px solid #e4e7ec;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.2s ease;
  height: 100%;
}

.doc-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.doc-card img {
  width: 100%;
  aspect-ratio: 340 / 438;
  object-fit: cover;
}

.doc-card span {
  display: block;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--clx-dark);
  line-height: 1.4;
}

/* ========== NEWS PAGES ========== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 27px;
}

.news-grid .news-card {
  flex: none;
  width: auto;
}

.news-grid .news-card .thumb {
  border-radius: 8px;
}

.news-grid .news-card .body {
  padding: 14px 0 0;
}

.news-article {
  max-width: 900px;
  margin: 0 auto 64px;
}

.news-article-img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 32px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.news-article-body p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--clx-muted);
  margin: 0 0 16px;
}

.news-related {
  padding-bottom: 48px;
}

.news-related .section-title {
  margin-bottom: 32px;
}

@media (max-width: 991.98px) {
  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== CONTACT PAGE ========== */
.contact-info-cards {
  margin-bottom: 48px;
}

.contact-info-card {
  height: 100%;
  padding: 28px 24px;
  border: 1px solid #e4e7ec;
  border-radius: 8px;
  background: #fff;
  text-align: center;
}

.contact-info-card img {
  width: 32px;
  height: 32px;
  margin: 0 auto 16px;
}

.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--clx-dark);
}

.contact-info-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--clx-muted);
}

.contact-info-card a {
  color: var(--clx-blue);
}

.contact-page-form {
  max-width: 960px;
  margin: 0 auto;
}

.contact-page-form-head {
  text-align: center;
  margin-bottom: 32px;
}

.contact-page-form-head .section-desc {
  margin-inline: auto;
}

/* ========== SCROLL REVEAL & MOTION ========== */
.clx-reveal {
  opacity: 0;
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.clx-reveal.is-revealed {
  opacity: 1;
  transform: none !important;
}

.clx-reveal--fade-up { transform: translateY(48px); }
.clx-reveal--fade-down { transform: translateY(-48px); }
.clx-reveal--fade-left { transform: translateX(48px); }
.clx-reveal--fade-right { transform: translateX(-48px); }
.clx-reveal--fade-in { transform: none; }
.clx-reveal--zoom-in { transform: scale(0.9); }
.clx-reveal--scale-up { transform: scale(0.86) translateY(32px); }

.slider-nav button,
.hero-arrow,
.refs-thumb,
.lang-dropdown-toggle,
.search-btn {
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.slider-nav button:hover,
.hero-arrow:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.refs-thumb:hover {
  transform: translateY(-4px);
}

.pl-card,
.prod-card,
.subcat-card,
.doc-card,
.contact-info-card {
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.pl-card:hover,
.prod-card:hover,
.subcat-card:hover,
.doc-card:hover,
.contact-info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}

.about-feature {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-feature:hover {
  transform: translateY(-4px);
}

.news-card .read span {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.news-card .read:hover span {
  transform: translateX(4px);
}

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

  .clx-reveal,
  .clx-reveal.is-revealed {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .hero-slide,
  .hero-panel,
  .btn-clx,
  .btn-clx-outline,
  .product-card,
  .news-card,
  .link-more img {
    transition: none !important;
    transform: none !important;
  }
}

/* ========== REFERENCES PAGE ========== */
.refs-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.ref-card {
  position: relative;
  display: block;
  min-height: 280px;
  border-radius: 8px;
  overflow: hidden;
  border: 3px solid transparent;
  transition:
    border-color 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.ref-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.ref-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 35%, rgba(0, 0, 0, 0.72) 100%);
  pointer-events: none;
}

.ref-card span {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1;
  color: #fff;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.ref-card:hover {
  border-color: var(--clx-blue);
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(5, 78, 162, 0.18);
}

.ref-card:hover img {
  transform: scale(1.04);
}

@media (max-width: 991.98px) {
  .refs-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}

@media (max-width: 575.98px) {
  .refs-page-grid {
    grid-template-columns: 1fr;
  }

  .ref-card,
  .ref-card img {
    min-height: 240px;
  }
}

/* ========== ABOUT PAGE ========== */
.pl-banner--compact {
  padding-bottom: 40px;
}

.pl-banner--compact h1 {
  margin-bottom: 0;
}

.about-page-intro {
  padding: 56px 0 40px;
  background: #fff;
}

.about-page-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 4vw, 45px);
  line-height: 1.25;
  color: var(--clx-dark);
  margin: 0 0 24px;
  max-width: 681px;
}

.about-page-title--sm {
  max-width: none;
  letter-spacing: -0.03em;
}

.about-page-lead {
  max-width: 1276px;
  margin: 0;
  font-size: 18px;
  line-height: 34px;
  color: var(--clx-dark);
}

.about-page-split {
  padding: 0 0 80px;
  background: #fff;
}

.about-page-grid {
  display: grid;
  grid-template-columns: 545px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.about-page-media img {
  width: 100%;
  height: 459px;
  object-fit: cover;
  border-radius: 6px;
}

.about-page-content .about-text p {
  font-size: 16px;
  line-height: 23.8px;
  color: var(--clx-muted);
  margin: 0 0 16px;
}

.about-features--page {
  margin-top: 32px;
}

.about-vision {
  padding: 64px 0 80px;
  background: #fff;
}

.about-vision-inner {
  display: grid;
  grid-template-columns: 283px minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.about-vision-arrow img {
  width: 100%;
  max-width: 283px;
  height: auto;
  display: block;
}

.about-vision-copy p {
  font-size: 16px;
  line-height: 23.8px;
  color: var(--clx-muted);
  margin: 0 0 16px;
  max-width: 754px;
}

.about-competencies {
  padding: 80px 0;
  background: #f2f2f2;
}

.about-competencies-head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 56px;
}

.about-competencies-head p {
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 23.8px;
  color: var(--clx-muted);
}

.about-comp-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-comp-row {
  display: grid;
  grid-template-columns: minmax(0, 599px) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid #d9d9d9;
}

.about-comp-row:last-child {
  border-bottom: 0;
}

.about-comp-row--reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 599px);
}

.about-comp-row--reverse .about-comp-media {
  order: 2;
}

.about-comp-row--reverse .about-comp-copy {
  order: 1;
}

.about-comp-media {
  border-radius: 14px;
  overflow: hidden;
  min-height: 215px;
}

.about-comp-media img {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
}

.about-comp-copy {
  position: relative;
  padding-left: 41px;
}

.about-comp-num {
  position: absolute;
  left: 0;
  top: 8px;
  font-size: 16px;
  line-height: 1.3;
  color: var(--clx-blue);
}

.about-comp-copy h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.35;
  color: var(--clx-blue);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.about-comp-copy p {
  margin: 0;
  font-size: 16px;
  line-height: 28px;
  color: #42464d;
  max-width: 486px;
}

.about-process {
  padding: 80px 0 100px;
  background: #fff;
}

.about-process-head {
  text-align: center;
  max-width: 936px;
  margin: 0 auto 48px;
}

.about-process-head p {
  margin: 12px 0 0;
  font-size: 16px;
  line-height: 23.8px;
  color: var(--clx-muted);
}

.about-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid #e2e2e2;
  border-radius: 6px;
  overflow: hidden;
}

.about-process-card {
  padding: 60px 40px 39px;
  border-right: 1px solid #e2e2e2;
  min-height: 369px;
}

.about-process-card:last-child {
  border-right: 0;
}

.about-process-icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

.about-process-icon img {
  width: 32px;
  height: 32px;
  display: block;
  object-fit: contain;
}

.about-process-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  color: var(--clx-dark);
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.about-process-card p {
  margin: 0;
  font-size: 18px;
  line-height: 32px;
  color: var(--clx-muted);
}

@media (max-width: 1199.98px) {
  .about-page-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 32px;
  }

  .about-page-media img {
    height: 400px;
  }

  .about-vision-inner {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 32px;
  }

  .about-comp-row,
  .about-comp-row--reverse {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 991.98px) {
  .about-page-grid {
    grid-template-columns: 1fr;
  }

  .about-page-media img {
    height: 320px;
  }

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

  .about-vision-inner {
    grid-template-columns: 1fr;
  }

  .about-vision-arrow {
    max-width: 200px;
  }

  .about-comp-row,
  .about-comp-row--reverse {
    grid-template-columns: 1fr;
  }

  .about-comp-row--reverse .about-comp-media,
  .about-comp-row--reverse .about-comp-copy {
    order: unset;
  }

  .about-process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-process-card:nth-child(2) {
    border-right: 0;
  }

  .about-process-card:nth-child(1),
  .about-process-card:nth-child(2) {
    border-bottom: 1px solid #e2e2e2;
  }
}

@media (max-width: 575.98px) {
  .about-process-grid {
    grid-template-columns: 1fr;
  }

  .about-process-card {
    border-right: 0;
    border-bottom: 1px solid #e2e2e2;
    min-height: 0;
  }

  .about-process-card:last-child {
    border-bottom: 0;
  }
}

/* ========== CATALOGUE ADDITIONS ========== */

/* A document slot with no file uploaded: shown, but not selectable. */
.pd-chip.is-disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

/* Document request modal: name/phone sit side by side above the e-mail. */
.pd-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 4px;
}

.pd-modal-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 14px 0 4px;
  font-size: 13px;
  line-height: 1.45;
  cursor: pointer;
}

.pd-modal-consent input {
  margin-top: 2px;
  flex: 0 0 auto;
}

.pd-modal-error {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 6px;
  background: #fdecec;
  color: #b02a2a;
  font-size: 13px;
}

@media (max-width: 575.98px) {
  .pd-modal-grid {
    grid-template-columns: 1fr;
  }
}

/* Mega menu: one .mega-mid / .mega-promo per category is rendered, and
   main.js reveals the hovered one. [hidden] must beat the grid/flex display
   these carry, or every category would stack into the panel at once. */
.mega-panel-inner > [hidden],
.mega-products [hidden] {
  display: none !important;
}

/* The product columns of the active sub-category. Sits inside .mega-products
   (itself a 2-column grid) and spans it, keeping the original two-column
   layout the design used. */
.mega-product-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 32px;
  align-content: start;
  grid-column: 1 / -1;
}

.mega-promo-desc {
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 12px;
  opacity: 0.85;
}
