@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Georgian:wght@400;500;600;700;800&display=swap');

:root {
  --brand-blue: #0f4f96;
  --brand-blue-dark: #0b3f78;
  --brand-navy: #0f172a;
  --text-main: #0f172a;
  --text-soft: #5b6472;
  --text-muted: #64748b;
  --border-soft: #e5e7eb;
  --surface: #ffffff;
  --surface-soft: #f8fafc;
  --surface-alt: #f1f5f9;
  --container: 1280px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-soft: 0 10px 28px rgba(15, 23, 42, 0.05);
  --shadow-card: 0 18px 44px rgba(15, 23, 42, 0.08);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  font-family: "Noto Sans Georgian", Arial, Helvetica, sans-serif;
}

body {
  margin: 0;
  font-family: "Noto Sans Georgian", Arial, Helvetica, sans-serif;
  color: var(--text-main);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

button,
input,
select,
textarea {
  font-family: "Noto Sans Georgian", Arial, Helvetica, sans-serif;
}

img,
video {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--brand-blue);
}

main {
  display: block;
}

.section {
  padding: 72px 0;
}

.section--alt {
  background: var(--surface-soft);
}

.section--compact {
  padding: 28px 0;
}

.section-heading {
  margin-bottom: 32px;
  max-width: 860px;
}

.section-heading--split {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
}

.section-heading h2 {
  margin: 10px 0 14px;
  font-size: clamp(1.85rem, 2vw, 2.6rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.section-heading p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.eyebrow {
  display: inline-block;
  color: var(--brand-blue);
  font-size: 0.9rem;
  line-height: 1.3;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(15, 79, 150, 0.68)),
    #0f172a;
  color: #fff;
}

.hero--split-video {
  min-height: 700px;
  display: flex;
  align-items: stretch;
}

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

.hero__media-shell,
.hero__media-stage,
.hero__video {
  width: 100%;
  height: 100%;
}

.hero__video {
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(1.02) contrast(1.02);
}

.hero__split {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 42%);
  align-items: center;
  min-height: 700px;
}

.hero__content {
  max-width: 760px;
  padding: 94px 0 94px;
}

.hero h1 {
  margin: 14px 0 18px;
  font-size: clamp(2.3rem, 4vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: #fff;
}

.hero__lead {
  margin: 0;
  max-width: 740px;
  font-size: 1.08rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.9);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero__quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 22px;
}

.hero__quick-links a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  padding-bottom: 2px;
}

.hero__quick-links a:hover {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.6);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.2;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.btn--primary {
  background: var(--brand-blue);
  color: #fff;
  box-shadow: 0 14px 30px rgba(15, 79, 150, 0.24);
}

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

.btn--secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
}

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.btn--ghost {
  background: #fff;
  color: var(--brand-blue);
  border-color: var(--border-soft);
}

.btn--ghost:hover {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-blue);
  text-decoration: none;
  font-weight: 800;
}

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

.home-stat-grid,
.category-grid,
.direction-grid,
.feature-grid,
.project-grid,
.service-grid,
.featured-model-grid {
  display: grid;
  gap: 24px;
}

.home-stat-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.category-grid,
.direction-grid,
.project-grid,
.featured-model-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid,
.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-card,
.category-card,
.direction-card,
.feature-card,
.project-card,
.service-card,
.model-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.stat-card {
  padding: 22px;
  justify-content: center;
}

.stat-card__label,
.model-card__label {
  display: block;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.stat-card__value {
  display: block;
  color: var(--text-main);
  font-size: 1.05rem;
  line-height: 1.5;
}

.category-card__media,
.direction-card__media,
.project-card__media {
  background: var(--surface-soft);
  border-bottom: 1px solid var(--border-soft);
}

.category-card__media img,
.direction-card__media img,
.project-card__media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}

.category-card__body,
.direction-card__body,
.project-card__body,
.feature-card,
.service-card,
.model-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  flex: 1;
}

.category-card__body h3,
.direction-card__body h3,
.project-card__body h3,
.feature-card h3,
.service-card h3,
.model-card h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.35;
}

.category-card__body h3 a,
.direction-card__body h3 a,
.project-card__body h3 a,
.model-card h3 a {
  color: var(--text-main);
  text-decoration: none;
}

.category-card__body h3 a:hover,
.direction-card__body h3 a:hover,
.project-card__body h3 a:hover,
.model-card h3 a:hover {
  color: var(--brand-blue);
}

.category-card__body p,
.direction-card__body p,
.project-card__body p,
.feature-card p,
.service-card p,
.model-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.category-card__body .text-link,
.direction-card__body .text-link,
.project-card__body .text-link,
.model-card .text-link {
  margin-top: auto;
  align-self: flex-start;
}

.trust-strip {
  background: var(--brand-navy);
  color: #fff;
}

.trust-strip__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.trust-strip__list li {
  padding: 18px 0;
  text-align: center;
  font-weight: 700;
  line-height: 1.55;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.45;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  line-height: 1;
  color: var(--brand-blue);
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--text-soft);
  line-height: 1.8;
}

.cta-section {
  padding-top: 24px;
}

.cta-box {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto;
  gap: 28px;
  align-items: center;
  background: linear-gradient(135deg, #0f172a, #0f4f96);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 34px;
  box-shadow: var(--shadow-card);
}

.cta-box__content h2 {
  margin: 12px 0 14px;
  font-size: clamp(1.7rem, 2vw, 2.4rem);
  line-height: 1.18;
  color: #fff;
}

.cta-box__content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.8;
}

.cta-box__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

/* =========================================
   PRODUCT PREVIEW PAGE LAYER
========================================= */

.preview-container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.preview-hero {
  padding: 28px 0 42px;
  background: #f5f7fa;
}

.preview-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 16px;
  color: #6b7280;
  font-size: 0.9rem;
}

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

.preview-breadcrumbs a:hover {
  color: var(--brand-blue-dark);
}

.preview-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 520px);
  gap: 28px;
  align-items: start;
}

.preview-hero-copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 2px;
}

.preview-eyebrow {
  display: inline-block;
  color: var(--brand-blue);
  font-size: 0.9rem;
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.preview-hero-copy h1 {
  margin: 0;
  font-size: clamp(2.2rem, 3.2vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: var(--text-main);
  max-width: 760px;
}

.preview-hero-text {
  margin: 0;
  max-width: 720px;
  color: var(--text-soft);
  line-height: 1.85;
  font-size: 1rem;
}

.preview-hero-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 2px;
}

.preview-hero-fact {
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 14px 14px 13px;
  box-shadow: none;
}

.preview-hero-fact span {
  display: block;
  margin-bottom: 5px;
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.35;
}

.preview-hero-fact strong {
  display: block;
  color: var(--text-main);
  font-size: 1rem;
  line-height: 1.35;
}

.preview-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.preview-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.2;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.preview-btn--primary {
  background: var(--brand-blue);
  color: #fff;
  box-shadow: none;
}

.preview-btn--primary:hover {
  background: var(--brand-blue-dark);
  color: #fff;
}

.preview-btn--secondary {
  background: #fff;
  color: var(--brand-blue);
  border-color: var(--border-soft);
}

.preview-btn--secondary:hover {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
  background: #f8fbff;
}

.preview-hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2px;
}

.preview-hero-links a,
.preview-final-cta-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: #fff;
  color: var(--text-main);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.2;
  transition: all 0.2s ease;
}

.preview-hero-links a:hover,
.preview-final-cta-links a:hover {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
  background: #f8fbff;
}

.preview-hero-media {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.preview-stage-shell {
  background: #ffffff;
  border: 1px solid #e7ebf0;
  border-radius: 20px;
  padding: 10px;
  box-shadow: none;
}

.preview-stage {
  position: relative;
  background: #eef2f6;
  border-radius: 14px;
  overflow: hidden;
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preview-stage-image,
.preview-stage-video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  max-height: 430px;
  object-fit: contain;
  background: #eef2f6;
}

.preview-stage-toolbar {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: flex;
  gap: 10px;
}

.preview-stage-btn {
  appearance: none;
  border: 0;
  background: rgba(15, 23, 42, 0.74);
  color: #fff;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 700;
  cursor: pointer;
}

.preview-stage-btn:hover {
  background: rgba(15, 79, 150, 0.92);
}

.preview-thumb-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.preview-thumb {
  appearance: none;
  border: 1px solid #dbe3ec;
  background: #fff;
  border-radius: 12px;
  padding: 4px;
  cursor: pointer;
  transition: all 0.18s ease;
  box-shadow: none;
}

.preview-thumb:hover,
.preview-thumb.is-active {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 2px rgba(15, 79, 150, 0.12);
}

.preview-thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.preview-anchor-nav {
  position: sticky;
  top: 78px;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid #eef2f7;
  border-bottom: 1px solid #eef2f7;
}

.preview-anchor-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 14px 0;
}

.preview-anchor-wrap a {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 999px;
}

.preview-anchor-wrap a:hover {
  color: var(--brand-blue);
  background: rgba(15, 79, 150, 0.08);
}

.preview-section {
  padding: 72px 0;
}

.preview-section--alt {
  background: var(--surface-soft);
}

.preview-section-head {
  max-width: 860px;
  margin: 0 auto 30px;
  text-align: center;
}

.preview-section-head--left {
  margin-inline: 0;
  text-align: left;
}

.preview-section-head h2 {
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 2vw, 2.5rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.preview-section-head p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.preview-spec-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.preview-spec-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.preview-spec-table th,
.preview-spec-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-soft);
  text-align: left;
  vertical-align: top;
  line-height: 1.65;
}

.preview-spec-table thead th {
  background: #f8fafc;
  font-size: 0.95rem;
}

.preview-spec-table tbody th {
  width: 34%;
  color: var(--text-main);
  font-weight: 700;
  background: #fcfdff;
}

.preview-spec-table tbody td {
  color: var(--text-soft);
}

.preview-summary-box {
  margin-top: 22px;
  background: #eff6ff;
  border: 1px solid #cfe0ff;
  color: #123a68;
  border-radius: 18px;
  padding: 18px 20px;
  line-height: 1.8;
}

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

.preview-gallery-item {
  appearance: none;
  border: 1px solid var(--border-soft);
  background: #fff;
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.preview-gallery-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.preview-gallery-item img {
  width: 100%;
  aspect-ratio: 16 / 12;
  object-fit: cover;
  display: block;
}

.preview-card-grid,
.preview-detail-grid,
.preview-package-grid {
  display: grid;
  gap: 24px;
}

.preview-card-grid--3,
.preview-detail-grid,
.preview-package-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.preview-model-card,
.preview-detail-card,
.preview-package-card,
.preview-split-card,
.preview-faq-item {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.preview-model-card--current {
  border-color: rgba(15, 79, 150, 0.28);
  box-shadow: 0 0 0 3px rgba(15, 79, 150, 0.08), var(--shadow-soft);
}

.preview-model-badge,
.preview-card-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--brand-blue);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.preview-model-card h3,
.preview-detail-card h3,
.preview-package-card h3,
.preview-split-card h3,
.preview-faq-item h3 {
  margin: 0 0 12px;
  font-size: 1.15rem;
  line-height: 1.35;
}

.preview-model-card p,
.preview-detail-card p,
.preview-package-card p,
.preview-split-card p,
.preview-faq-item p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.preview-model-card .preview-btn {
  margin-top: 18px;
}

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

.preview-list {
  margin: 16px 0 0;
  padding-left: 20px;
}

.preview-list li {
  margin-bottom: 10px;
  color: var(--text-soft);
  line-height: 1.75;
}

.preview-list--clean {
  margin: 16px 0 0;
}

.preview-package-actions {
  margin-top: 18px;
}

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

.preview-final-cta {
  padding: 72px 0 84px;
}

.preview-final-cta-box {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 28px;
  align-items: center;
  background: linear-gradient(135deg, #0f172a, #0f4f96);
  color: #fff;
  border-radius: 28px;
  padding: 34px;
  box-shadow: var(--shadow-card);
}

.preview-final-cta-box h2 {
  margin: 10px 0 14px;
  font-size: clamp(1.7rem, 2vw, 2.4rem);
  line-height: 1.18;
  color: #fff;
}

.preview-final-cta-box p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.8;
}

.preview-final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.preview-gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(15, 23, 42, 0.84);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.preview-gallery-modal.is-open {
  display: flex;
}

.preview-gallery-dialog {
  position: relative;
  width: min(1100px, 100%);
  max-height: calc(100dvh - 48px);
  background: #0b1220;
  border-radius: 22px;
  overflow: hidden;
}

.preview-gallery-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70dvh;
  padding: 24px;
}

.preview-gallery-stage img {
  max-width: 100%;
  max-height: calc(70dvh - 48px);
  object-fit: contain;
}

.preview-gallery-close,
.preview-gallery-nav {
  appearance: none;
  border: 0;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease;
}

.preview-gallery-close:hover,
.preview-gallery-nav:hover {
  background: rgba(255, 255, 255, 0.24);
}

.preview-gallery-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  font-size: 1.5rem;
  z-index: 3;
}

.preview-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 56px;
  border-radius: 14px;
  font-size: 2rem;
  z-index: 2;
}

.preview-gallery-prev {
  left: 14px;
}

.preview-gallery-next {
  right: 14px;
}

@media (max-width: 1200px) {
  .home-stat-grid,
  .feature-grid,
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-grid,
  .direction-grid,
  .project-grid,
  .featured-model-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .hero__content {
    max-width: 860px;
  }

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

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

  .preview-card-grid--3,
  .preview-detail-grid,
  .preview-package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .preview-stage {
    min-height: 400px;
  }

  .preview-stage-image,
  .preview-stage-video {
    min-height: 400px;
    max-height: 400px;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 58px 0;
  }

  .section-heading--split {
    display: grid;
    align-items: start;
    gap: 18px;
  }

  .cta-box {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .cta-box__actions {
    justify-content: flex-start;
  }

  .preview-section,
  .preview-final-cta {
    padding: 58px 0;
  }

  .preview-split,
  .preview-faq-grid,
  .preview-final-cta-box {
    grid-template-columns: 1fr;
  }

  .preview-final-cta-actions {
    justify-content: flex-start;
  }

  .preview-anchor-nav {
    top: 74px;
  }
}

@media (max-width: 700px) {
  html {
    font-size: 15px;
  }

  .hero--split-video,
  .hero__split {
    min-height: auto;
  }

  .hero__content {
    padding: 74px 0 76px;
  }

  .home-stat-grid,
  .category-grid,
  .direction-grid,
  .feature-grid,
  .project-grid,
  .service-grid,
  .featured-model-grid,
  .trust-strip__list {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .hero__actions,
  .cta-box__actions {
    flex-direction: column;
  }

  .cta-box {
    padding: 24px;
  }

  .preview-container {
    width: min(1180px, calc(100% - 24px));
  }

  .preview-hero {
    padding: 22px 0 30px;
  }

  .preview-hero-facts,
  .preview-gallery-grid,
  .preview-card-grid--3,
  .preview-detail-grid,
  .preview-package-grid,
  .preview-faq-grid {
    grid-template-columns: 1fr;
  }

  .preview-thumb-strip {
    grid-template-columns: 1fr 1fr;
  }

  .preview-action-row,
  .preview-hero-links,
  .preview-final-cta-actions,
  .preview-final-cta-links {
    flex-direction: column;
  }

  .preview-btn,
  .preview-hero-links a,
  .preview-final-cta-links a {
    width: 100%;
  }

  .preview-stage {
    min-height: 300px;
  }

  .preview-stage-image,
  .preview-stage-video {
    min-height: 300px;
    max-height: 300px;
  }

  .preview-gallery-stage {
    min-height: 56dvh;
    padding: 18px;
  }

  .preview-gallery-stage img {
    max-height: calc(56dvh - 36px);
  }

  .preview-gallery-nav {
    width: 40px;
    height: 48px;
    font-size: 1.7rem;
  }

  .preview-final-cta-box {
    padding: 24px;
  }
}

/* =========================================
   INDUSTRIAL CATEGORY PAGE LAYER
========================================= */

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  line-height: 1.5;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.hero-intro {
  padding: 26px 0 8px;
  background: #ffffff;
}

.hero-intro p {
  margin: 0;
  max-width: 920px;
  color: var(--text-soft);
  line-height: 1.85;
  font-size: 1.02rem;
}

.grid {
  display: grid;
  gap: 24px;
}

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

.resource-grid {
  align-items: stretch;
}

.resource-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.resource-card__media {
  background: var(--surface-soft);
  border-bottom: 1px solid var(--border-soft);
}

.resource-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}

.resource-card__media-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 230px;
  padding: 24px;
  text-align: center;
  color: var(--text-muted);
  line-height: 1.7;
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
}

.resource-card__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  flex: 1;
}

.resource-card__body h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.35;
  color: var(--text-main);
}

.resource-card__body p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.resource-card__body .btn {
  margin-top: auto;
  align-self: flex-start;
}

.btn--green {
  background: var(--brand-blue);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(15, 79, 150, 0.20);
}

.btn--green:hover {
  background: var(--brand-blue-dark);
  color: #ffffff;
}

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

.content-panel {
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.content-panel h2 {
  margin: 10px 0 14px;
  font-size: clamp(1.45rem, 1.8vw, 2rem);
  line-height: 1.22;
  letter-spacing: -0.02em;
}

.check-list,
.meta-list {
  margin: 0;
  padding-left: 20px;
}

.check-list li,
.meta-list li {
  margin-bottom: 10px;
  color: var(--text-soft);
  line-height: 1.8;
}

.section-anchor {
  scroll-margin-top: 110px;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) auto;
  gap: 28px;
  align-items: center;
  background: linear-gradient(135deg, #0f172a, #0f4f96);
  color: #ffffff;
  border-radius: var(--radius-xl);
  padding: 34px;
  box-shadow: var(--shadow-card);
}

.cta-panel__content h2 {
  margin: 12px 0 14px;
  font-size: clamp(1.7rem, 2vw, 2.4rem);
  line-height: 1.18;
  color: #ffffff;
}

.cta-panel__content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.8;
}

.cta-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

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

@media (max-width: 900px) {
  .content-grid,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .cta-panel__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .hero-intro {
    padding: 22px 0 4px;
  }

  .grid--3,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .resource-card__body .btn {
    width: 100%;
  }

  .cta-panel {
    padding: 24px;
  }

  .cta-panel__actions {
    flex-direction: column;
  }

  .cta-panel__actions .btn {
    width: 100%;
  }
}

/* =========================================
   INDUSTRIAL SERIES CARDS
========================================= */

body[data-page="industrial-scales"] .section-heading {
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}

body[data-page="industrial-scales"] .section-heading--split {
  justify-content: center;
  align-items: center;
  text-align: center;
}

body[data-page="industrial-scales"] .section-heading h2,
body[data-page="industrial-scales"] .section-heading p,
body[data-page="industrial-scales"] .section-heading .eyebrow {
  text-align: center;
}

body[data-page="industrial-scales"] .industrial-series-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
}

body[data-page="industrial-scales"] .industrial-series-card {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  align-items: stretch;
  width: 100%;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #111111;
  border-radius: 0;
  box-shadow: none;
}

body[data-page="industrial-scales"] .industrial-series-card__media {
  background: #ffffff;
  border-right: 1px solid #111111;
  display: flex;
}

body[data-page="industrial-scales"] .industrial-series-card__image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
}

body[data-page="industrial-scales"] .industrial-series-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 18px 20px;
  text-align: center;
  align-items: center;
}

body[data-page="industrial-scales"] .industrial-series-card__badge {
  display: inline-flex;
  align-self: center;
  padding: 5px 12px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--text-main);
  font-weight: 700;
  font-size: 0.82rem;
  line-height: 1.2;
  border: 1px solid #111111;
}

body[data-page="industrial-scales"] .industrial-series-card__body h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.3;
}

body[data-page="industrial-scales"] .industrial-series-card__lead {
  margin: 0;
  max-width: 760px;
  color: var(--text-soft);
  line-height: 1.65;
  font-size: 0.96rem;
  text-align: center;
}

body[data-page="industrial-scales"] .industrial-series-card__specs {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  width: 100%;
  max-width: 760px;
}

body[data-page="industrial-scales"] .industrial-series-card__specs li {
  padding: 4px 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: var(--text-soft);
  line-height: 1.5;
  font-size: 0.95rem;
  text-align: center;
}

body[data-page="industrial-scales"] .industrial-series-card__specs strong {
  color: var(--text-main);
}

body[data-page="industrial-scales"] .industrial-series-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  width: 100%;
  margin-top: 4px;
}

body[data-page="industrial-scales"] .industrial-series-card__actions .btn {
  min-height: 42px;
  padding: 0 18px;
  align-self: center;
}

body[data-page="industrial-scales"] .resource-card {
  border-radius: 0;
  box-shadow: none;
}

body[data-page="industrial-scales"] .resource-card__body,
body[data-page="industrial-scales"] .resource-card__body h3,
body[data-page="industrial-scales"] .resource-card__body p {
  text-align: center;
}

body[data-page="industrial-scales"] .resource-card__body .btn {
  align-self: center;
}

body[data-page="industrial-scales"] .content-grid {
  max-width: 1080px;
  margin-inline: auto;
}

body[data-page="industrial-scales"] .content-panel {
  text-align: center;
}

body[data-page="industrial-scales"] .check-list,
body[data-page="industrial-scales"] .meta-list {
  list-style: none;
  padding-left: 0;
}

body[data-page="industrial-scales"] .check-list li,
body[data-page="industrial-scales"] .meta-list li {
  text-align: center;
}

body[data-page="industrial-scales"] .cta-panel__content,
body[data-page="industrial-scales"] .cta-panel__actions {
  text-align: center;
  justify-content: center;
}

@media (max-width: 1000px) {
  body[data-page="industrial-scales"] .industrial-series-card {
    grid-template-columns: 260px minmax(0, 1fr);
  }
}

@media (max-width: 800px) {
  body[data-page="industrial-scales"] .industrial-series-card {
    grid-template-columns: 1fr;
  }

  body[data-page="industrial-scales"] .industrial-series-card__media {
    border-right: 0;
    border-bottom: 1px solid #111111;
  }

  body[data-page="industrial-scales"] .industrial-series-card__image {
    min-height: 220px;
    max-height: 220px;
  }

  body[data-page="industrial-scales"] .industrial-series-card__body {
    padding: 16px;
  }
}

@media (max-width: 700px) {
  body[data-page="industrial-scales"] .industrial-series-grid {
    max-width: 100%;
  }

  body[data-page="industrial-scales"] .industrial-series-card__actions {
    flex-direction: column;
  }

  body[data-page="industrial-scales"] .industrial-series-card__actions .btn {
    width: 100%;
  }
}
.service-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-gallery-card {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(15, 79, 150, 0.08);
}

.service-gallery-card img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
  cursor: zoom-in;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.service-gallery-card img:hover {
  opacity: 0.96;
  transform: scale(1.01);
}

.service-gallery-card figcaption {
  padding: 14px 16px 16px;
  font-size: 14px;
  line-height: 1.5;
  color: #355070;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: rgba(10, 18, 30, 0.92);
}

.gallery-lightbox.is-open {
  display: flex;
}

.gallery-lightbox__backdrop {
  position: absolute;
  inset: 0;
}

.gallery-lightbox__dialog {
  position: relative;
  z-index: 2;
  width: min(96vw, 1400px);
  height: min(92vh, 900px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-lightbox__image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.45);
  background: #fff;
}

.gallery-lightbox__close,
.gallery-lightbox__prev,
.gallery-lightbox__next {
  position: absolute;
  z-index: 3;
  border: 0;
  cursor: pointer;
  color: #fff;
  background: rgba(15, 79, 150, 0.88);
  transition: background 0.2s ease, transform 0.2s ease;
}

.gallery-lightbox__close:hover,
.gallery-lightbox__prev:hover,
.gallery-lightbox__next:hover {
  background: rgba(15, 79, 150, 1);
  transform: scale(1.04);
}

.gallery-lightbox__close {
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  font-size: 28px;
  line-height: 1;
}

.gallery-lightbox__prev,
.gallery-lightbox__next {
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 999px;
  font-size: 30px;
  line-height: 1;
}

.gallery-lightbox__prev {
  left: 18px;
}

.gallery-lightbox__next {
  right: 18px;
}

.gallery-lightbox__caption {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 3;
  max-width: min(90vw, 1000px);
  padding: 10px 16px;
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
}

body.lightbox-open {
  overflow: hidden;
}

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

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

  .service-gallery-card img {
    height: 260px;
  }

  .gallery-lightbox {
    padding: 16px;
  }

  .gallery-lightbox__dialog {
    width: 100%;
    height: min(86vh, 760px);
  }

  .gallery-lightbox__close {
    top: 10px;
    right: 10px;
    width: 42px;
    height: 42px;
    font-size: 24px;
  }

  .gallery-lightbox__prev,
  .gallery-lightbox__next {
    width: 44px;
    height: 44px;
    font-size: 24px;
  }

  .gallery-lightbox__prev {
    left: 8px;
  }

  .gallery-lightbox__next {
    right: 8px;
  }

  .gallery-lightbox__caption {
    bottom: 10px;
    font-size: 13px;
    border-radius: 12px;
    max-width: calc(100vw - 24px);
  }
}
.ka-page-shell {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.ka-product-page {
  background: #f4f6f8;
  color: #13212b;
}

.ka-product-hero,
.ka-section,
.ka-final-cta {
  padding: 56px 0;
}

.ka-section--soft {
  background: #edf2f5;
}

.ka-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 28px;
  color: #60717e;
}

.ka-breadcrumbs a {
  color: #60717e;
  text-decoration: none;
}

.ka-breadcrumbs a:hover {
  color: #13212b;
}

.ka-product-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: start;
}

.ka-product-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c28b00;
}

.ka-product-hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.08;
}

.ka-product-lead {
  margin: 0 0 24px;
  font-size: 18px;
  line-height: 1.7;
  color: #435563;
}

.ka-product-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.ka-product-fact,
.ka-info-card,
.ka-model-card,
.ka-faq-item,
.ka-final-cta-box,
.ka-spec-table-wrap {
  background: #ffffff;
  border: 1px solid #dde5ea;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(15, 27, 36, 0.05);
}

.ka-product-fact {
  padding: 18px 20px;
}

.ka-product-fact span {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  color: #60717e;
}

.ka-product-fact strong {
  font-size: 20px;
  color: #13212b;
}

.ka-product-actions,
.ka-final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}

.ka-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ka-btn:hover {
  transform: translateY(-1px);
}

.ka-btn--primary {
  background: #d89c00;
  color: #13212b;
}

.ka-btn--secondary {
  background: transparent;
  color: #13212b;
  border: 1px solid #c8d3da;
}

.ka-product-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  font-size: 15px;
}

.ka-product-links a {
  color: #13212b;
  text-decoration: none;
  border-bottom: 1px solid rgba(19, 33, 43, 0.16);
}

.ka-product-links a:hover {
  border-color: #13212b;
}

.ka-product-stage {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #0f1b24;
  border: 1px solid #243846;
}

.ka-product-stage-media {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.ka-product-stage-toolbar {
  position: absolute;
  right: 14px;
  bottom: 14px;
}

.ka-stage-btn {
  min-height: 42px;
  padding: 10px 16px;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 27, 36, 0.82);
  color: #ffffff;
  cursor: pointer;
}

.ka-product-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.ka-thumb {
  padding: 0;
  border: 1px solid #d7e0e6;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
}

.ka-thumb.is-active {
  border-color: #d89c00;
  box-shadow: 0 0 0 2px rgba(216, 156, 0, 0.16);
}

.ka-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.ka-anchor-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(244, 246, 248, 0.94);
  backdrop-filter: blur(10px);
  border-top: 1px solid #e2e8ec;
  border-bottom: 1px solid #e2e8ec;
}

.ka-anchor-nav-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 14px 0;
}

.ka-anchor-nav a {
  text-decoration: none;
  color: #435563;
  font-weight: 600;
}

.ka-anchor-nav a:hover {
  color: #13212b;
}

.ka-section-head {
  margin-bottom: 24px;
}

.ka-section-head h2 {
  margin: 0 0 10px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.15;
}

.ka-section-head p {
  margin: 0;
  color: #60717e;
  font-size: 17px;
  line-height: 1.6;
}

.ka-spec-table-wrap {
  overflow: hidden;
}

.ka-spec-table {
  width: 100%;
  border-collapse: collapse;
}

.ka-spec-table th,
.ka-spec-table td {
  padding: 16px 18px;
  border-bottom: 1px solid #e6edf1;
  vertical-align: top;
  text-align: left;
}

.ka-spec-table thead th {
  background: #13212b;
  color: #ffffff;
  border-bottom: 0;
}

.ka-spec-table tbody tr:last-child th,
.ka-spec-table tbody tr:last-child td {
  border-bottom: 0;
}

.ka-card-grid {
  display: grid;
  gap: 20px;
}

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

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

.ka-info-card,
.ka-model-card,
.ka-faq-item {
  padding: 24px;
}

.ka-card-kicker,
.ka-model-badge {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #c28b00;
}

.ka-info-card h3,
.ka-model-card h3,
.ka-faq-item h3 {
  margin: 0 0 12px;
  font-size: 22px;
}

.ka-info-card p,
.ka-model-card p,
.ka-faq-item p {
  margin: 0;
  color: #435563;
  line-height: 1.7;
}

.ka-clean-list {
  margin: 16px 0 0;
  padding-left: 18px;
  color: #435563;
  line-height: 1.7;
}

.ka-gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.ka-gallery-item {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 27, 36, 0.07);
}

.ka-gallery-item img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.ka-model-card--current {
  border-color: #d89c00;
}

.ka-final-cta-box {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  padding: 32px;
}

.ka-gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(7, 12, 16, 0.9);
}

.ka-gallery-modal.is-open {
  display: flex;
}

.ka-gallery-dialog {
  position: relative;
  width: min(1100px, 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ka-gallery-stage {
  width: 100%;
  text-align: center;
}

.ka-gallery-stage img {
  max-width: 100%;
  max-height: 82vh;
  border-radius: 18px;
}

.ka-gallery-close,
.ka-gallery-nav {
  position: absolute;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  cursor: pointer;
}

.ka-gallery-close {
  top: -8px;
  right: 0;
  width: 44px;
  height: 44px;
  font-size: 28px;
}

.ka-gallery-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  font-size: 34px;
}

.ka-gallery-prev {
  left: -6px;
}

.ka-gallery-next {
  right: -6px;
}

@media (max-width: 991px) {
  .ka-product-hero-grid,
  .ka-final-cta-box,
  .ka-card-grid--2,
  .ka-card-grid--3 {
    grid-template-columns: 1fr;
  }

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

  .ka-product-thumbs {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .ka-product-hero,
  .ka-section,
  .ka-final-cta {
    padding: 40px 0;
  }

  .ka-product-facts,
  .ka-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .ka-spec-table th,
  .ka-spec-table td {
    padding: 12px 14px;
    font-size: 14px;
  }

  .ka-gallery-nav {
    width: 44px;
    height: 44px;
    font-size: 28px;
  }

  .ka-gallery-prev {
    left: 4px;
  }

  .ka-gallery-next {
    right: 4px;
  }
}
.ka-product-hero-grid {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 24px;
}

.ka-product-hero-copy,
.ka-product-hero-media {
  min-width: 0;
}

.ka-product-stage {
  width: 100%;
}

.ka-product-stage-media {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 24px;
}

.ka-product-facts--wide {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.ka-product-facts--wide .ka-product-fact {
  margin: 0;
  min-height: 100%;
}

.ka-product-actions--hero {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  margin-bottom: 18px;
}

.ka-product-quicklinks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  margin-bottom: 0;
}

.ka-product-quicklinks a {
  color: #22313d;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.4;
  border-bottom: 1px solid rgba(34, 49, 61, 0.18);
  padding-bottom: 2px;
}

.ka-product-quicklinks a:hover {
  border-bottom-color: #22313d;
}

@media (max-width: 1200px) {
  .ka-product-hero-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ka-product-facts--wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .ka-product-hero-grid {
    grid-template-columns: 1fr;
  }

  .ka-product-facts--wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .ka-product-facts--wide {
    grid-template-columns: 1fr;
  }
}
.about-hero {
  padding: 72px 0 56px;
}

.about-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 48px;
  align-items: center;
}

.about-hero__content {
  max-width: 760px;
}

.about-hero__content .breadcrumbs {
  margin-bottom: 18px;
}

.about-hero__content .eyebrow {
  display: inline-block;
  margin-bottom: 14px;
}

.about-hero__content h1 {
  max-width: 11ch;
  margin: 0 0 24px;
}

.about-hero__content .hero__lead {
  max-width: 720px;
  margin-bottom: 16px;
}

.about-hero__media {
  display: flex;
  justify-content: flex-end;
}

.about-hero__media-box {
  width: 100%;
  max-width: 560px;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.about-hero__media-box video {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 1180px) {
  .about-hero__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-hero__content h1 {
    max-width: 100%;
  }

  .about-hero__media {
    justify-content: flex-start;
  }

  .about-hero__media-box {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 48px 0 36px;
  }

  .about-hero__content h1 {
    font-size: clamp(2.2rem, 8vw, 3.6rem);
    line-height: 1.04;
  }
}
/* 40 ton truck scale hero image fix */
.truck-scale-product-page .hero__media,
.truck-scale-product-page .hero__media-shell,
.truck-scale-product-page .hero__media-stage {
  height: 100%;
}

.truck-scale-product-page .hero__media-stage {
  overflow: hidden;
  background: #e9edf1;
}

.truck-scale-product-page .hero__media-stage img.hero__video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 660px;
  object-fit: cover;
  object-position: center center;
}

@media (max-width: 900px) {
  .truck-scale-product-page .hero__media-stage img.hero__video {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .truck-scale-product-page .hero__media-stage img.hero__video {
    min-height: 280px;
  }
}