﻿/* ============================================
   PRINTCORE INDUSTRIES — Corporate Website
   Design System & Global Styles
   ============================================ */

/* --- Custom Properties --- */
:root {
  --primary: #0B1D36;
  --primary-light: #123056;
  --secondary: #1A56C4;
  --secondary-light: #2B6FE0;
  --accent: #3D8BDB;
  --accent-light: #5AA3E8;
  --bg-light: #A8C4E6;
  --bg-white: #F5F9FD;
  --text-dark: #0B1D36;
  --text-body: #243B5A;
  --text-muted: #4A6480;
  --text-light: #7A93AD;
  --border: #C5D6EC;
  --border-light: #DCE8F7;
  --shadow-sm: 0 1px 2px rgba(16,42,67,0.06);
  --shadow-md: 0 4px 12px rgba(16,42,67,0.08);
  --shadow-lg: 0 8px 30px rgba(16,42,67,0.12);
  --shadow-xl: 0 16px 50px rgba(16,42,67,0.15);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --max-width: 1200px;
  --header-height: 80px;
  --transition: 0.25s ease;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* --- Loading Overlay --- */
.loading-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  background: var(--primary);
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-overlay.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loading-overlay__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  animation: loadPulse 1.8s ease-in-out infinite;
}

.loading-overlay__logo svg,
.loading-overlay__logo img {
  object-fit: contain;
}

.loading-overlay__logo img {
  width: auto;
  height: min(42vh, 320px);
  max-width: 88vw;
}

.loading-overlay__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.15;
}

.loading-overlay__sub {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  position: relative;
  padding: 0 8px;
}

.loading-overlay__sub::before,
.loading-overlay__sub::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: rgba(38,181,216,0.55);
  vertical-align: middle;
  margin: 0 14px;
}

.loading-overlay__tagline {
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.02em;
  line-height: 1.55;
  max-width: 520px;
  text-align: center;
  padding: 0 24px;
}

.loading-overlay__bar {
  width: 180px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 8px;
}

.loading-overlay__bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  border-radius: 3px;
  animation: loadBar 2.8s ease-in-out forwards;
}

@keyframes loadBar {
  0% { width: 0; }
  60% { width: 85%; }
  100% { width: 100%; }
}

@keyframes loadPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--text-body);
  background: var(--bg-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--secondary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }
ul, ol { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.text-gradient {
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
  background: var(--bg-white);
}

.section--sm { padding: 48px 0; }
.section--lg { padding: 120px 0; }
.section--dark { background: var(--primary); color: #fff; }
.section--light {
  background: var(--gradient-primary);
  color: rgba(255,255,255,0.85);
}
.section--white { background: var(--bg-white); }

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

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

/* --- Section Header --- */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.section-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 12px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-muted);
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: linear-gradient(90deg, #0B1D36 0%, #123056 55%, #0B1D36 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #0A2340;
  z-index: 1000;
  transition: box-shadow var(--transition);
  overflow: visible;
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 0.95rem;
  color: #fff;
  letter-spacing: -0.02em;
}

.header__logo svg,
.header__logo img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.header__logo img {
  width: auto;
  height: 40px;
}

.header__logo span {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.header__logo .logo-sub {
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header__nav a {
  padding: 8px 16px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
}

.header__nav a:hover,
.header__nav a.active {
  color: #fff;
  background: rgba(61,139,219,0.22);
}

.header__nav .dropdown {
  position: relative;
}

.header__nav .dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.header__nav .dropdown-toggle::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform var(--transition);
}

.header__nav .dropdown:hover .dropdown-toggle::after {
  transform: rotate(180deg);
}

.header__nav .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  z-index: 100;
}

.header__nav .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header__nav .dropdown-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
  color: var(--text-body);
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
}

.header__nav .dropdown-menu a:hover,
.header__nav .dropdown-menu a.active {
  color: var(--secondary);
  background: rgba(26,86,196,0.08);
}

/* Mega products menu */
.header__nav .dropdown-menu--mega {
  left: 50%;
  right: auto;
  transform: translate(-50%, 12px);
  width: min(960px, calc(100vw - 48px));
  min-width: 720px;
  padding: 18px 16px 14px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4px 12px;
}

.header__nav .dropdown:hover .dropdown-menu--mega {
  transform: translate(-50%, 0);
}

.dropdown-menu__col {
  min-width: 0;
}

.dropdown-menu__heading {
  display: block;
  padding: 4px 12px 8px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

.dropdown-menu__heading a {
  display: inline;
  padding: 0;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  color: var(--secondary);
}

.dropdown-menu__heading a:hover {
  background: transparent;
  text-decoration: underline;
}

.header__nav .dropdown-menu--mega a {
  padding: 6px 12px;
  font-size: 0.8125rem;
  line-height: 1.35;
}

.dropdown-menu__view-all {
  grid-column: 1 / -1;
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1px solid var(--border-light);
  text-align: center;
}

.header__nav .dropdown-menu--mega .dropdown-menu__view-all a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--secondary);
  background: transparent;
}

.header__nav .dropdown-menu--mega .dropdown-menu__view-all a:hover {
  background: rgba(26,86,196,0.08);
}

@media (max-width: 1100px) {
  .header__nav .dropdown-menu--mega {
    min-width: 560px;
    width: min(720px, calc(100vw - 32px));
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #fff;
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn--primary {
  background: var(--secondary);
  color: #fff;
  border-color: var(--secondary);
}

.btn--primary:hover {
  background: var(--secondary-light);
  border-color: var(--secondary-light);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: none;
}

.btn--outline {
  background: transparent;
  color: var(--secondary);
  border-color: var(--secondary);
}

.btn--outline:hover {
  background: var(--secondary);
  color: #fff;
  transform: translateY(-1px);
}

.btn--white {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}

.btn--white:hover {
  background: rgba(255,255,255,0.9);
  color: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}

.btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}

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

.btn--dark:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
  color: #fff;
  transform: translateY(-1px);
}

.btn--sm {
  padding: 8px 18px;
  font-size: 0.8125rem;
}

.btn--lg {
  padding: 16px 36px;
  font-size: 1.0625rem;
}

.btn--full { width: 100%; }

.btn svg {
  width: 18px;
  height: 18px;
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: var(--primary);
  color: #fff;
  padding-top: var(--header-height);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(31,111,235,0.15) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(38,181,216,0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(38,181,216,0.15);
  border: 1px solid rgba(38,181,216,0.25);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--accent-light);
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}

.hero h1 {
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero h1 span {
  color: var(--accent);
}

.hero--carousel h1 span {
  position: relative;
  display: inline-block;
  color: var(--accent);
  background-image: linear-gradient(
    110deg,
    #2B6FE0 0%,
    #5AA3E8 28%,
    #eaf6ff 48%,
    #7EC8FF 58%,
    #3D8BDB 100%
  );
  background-size: 220% 100%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 10px rgba(90, 163, 232, 0.35));
}

.hero-slide.is-active h1 span {
  animation: heroAccentSweep 3.8s ease-in-out infinite;
}

.hero--carousel h1 span::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0.06em;
  width: 100%;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, transparent, rgba(90, 163, 232, 0.95), rgba(142, 200, 255, 0.9), transparent);
  transform: scaleX(0);
  transform-origin: left center;
  opacity: 0;
}

.hero-slide.is-active h1 span::after {
  animation: heroAccentLine 0.85s ease 0.28s forwards;
}

@keyframes heroAccentSweep {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes heroAccentLine {
  from {
    transform: scaleX(0);
    opacity: 0;
  }
  to {
    transform: scaleX(1);
    opacity: 0.9;
  }
}

.hero p {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__actions .btn--white {
  background: var(--secondary);
  color: #fff;
  border-color: var(--secondary);
}

.hero__actions .btn--white:hover {
  background: var(--secondary-light);
  border-color: var(--secondary-light);
  color: #fff;
  box-shadow: none;
}

.hero__actions .btn--ghost {
  background: rgba(90, 163, 232, 0.22);
  color: #fff;
  border-color: rgba(90, 163, 232, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.hero__actions .btn--ghost:hover {
  background: rgba(90, 163, 232, 0.38);
  border-color: rgba(90, 163, 232, 0.7);
  color: #fff;
}

.hero__image {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 400px;
  z-index: 1;
}

/* --- Hero Carousel --- */
.hero--carousel {
  padding-top: 0;
  min-height: 92vh;
  align-items: stretch;
}

.hero--carousel::before,
.hero--carousel::after {
  display: none;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transform: translateX(5%);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease,
    visibility 0.7s ease;
}

.hero--carousel.is-reverse .hero-slide {
  transform: translateX(-5%);
}

.hero-slide.is-active,
.hero--carousel.is-reverse .hero-slide.is-active {
  z-index: 3;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.hero-slide.is-leaving {
  z-index: 2;
  opacity: 0;
  visibility: visible;
  transform: translateX(-5%);
}

.hero--carousel.is-reverse .hero-slide.is-leaving {
  transform: translateX(5%);
}

.hero-slide__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-slide__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  transition: transform 6s ease-out, filter 0.5s ease;
  filter: brightness(0.85) saturate(1.05);
}

.hero-slide.is-active .hero-slide__img {
  transform: scale(1);
}

.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(11,29,54,0.88) 0%, rgba(18,48,86,0.62) 36%, rgba(26,86,196,0.28) 66%, rgba(61,139,219,0.14) 100%),
    linear-gradient(to top, rgba(11,29,54,0.38) 0%, transparent 46%);
}

.hero-slide__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 40px;
  padding-bottom: 80px;
  /* Clear floating prev/next controls (52px + 24px inset) */
  padding-left: 108px;
  padding-right: 108px;
  text-align: center;
  transform: translateY(24px);
  opacity: 0;
  transition: transform 0.7s ease 0.15s, opacity 0.7s ease 0.15s;
}

.hero-slide.is-active .hero-slide__content {
  transform: translateY(0);
  opacity: 1;
}

.hero-slide__content .hero__label {
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.hero-slide__content p {
  margin-left: auto;
  margin-right: auto;
  max-width: none;
  white-space: nowrap;
}

.hero-slide__content .hero__actions {
  justify-content: center;
}

.hero-slide__content h1 {
  font-size: clamp(3.1rem, 7.2vw, 5.15rem);
  text-shadow: 0 8px 30px rgba(0,0,0,0.25);
  white-space: nowrap;
}

/* Nav arrows */
.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  background: rgba(16,42,67,0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.hero-nav:hover {
  background: rgba(31,111,235,0.85);
  border-color: transparent;
  transform: translateY(-50%) scale(1.06);
}

.hero-nav svg {
  width: 22px;
  height: 22px;
}

.hero-nav--prev { left: 52px; }
.hero-nav--next { right: 52px; }

/* Dots */
.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 10px;
  padding: 8px 12px;
  background: rgba(16,42,67,0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.12);
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, width 0.25s ease;
}

.hero-dot:hover {
  background: rgba(255,255,255,0.7);
  transform: scale(1.15);
}

.hero-dot.is-active {
  width: 28px;
  border-radius: 100px;
  background: var(--accent);
}

/* Progress bar */
.hero-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  z-index: 5;
  background: rgba(255,255,255,0.12);
}

.hero-progress__bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  transform-origin: left center;
}

.hero-progress__bar.is-running {
  animation: heroProgress linear forwards;
}

@keyframes heroProgress {
  from { width: 0; }
  to { width: 100%; }
}

.hero-rail {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 36px;
  z-index: 6;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 16, 34, 0.55), rgba(7, 16, 34, 0.22)),
    radial-gradient(circle at 50% 10px, rgba(255, 255, 255, 0.22) 3px, transparent 3.4px);
  background-size: auto, 36px 22px;
}

.hero-rail--left { left: 0; }
.hero-rail--right { right: 0; }

.hero-register {
  position: absolute;
  inset: 18px 44px 18px 44px;
  z-index: 6;
  pointer-events: none;
}

.hero-register span {
  position: absolute;
  width: 18px;
  height: 18px;
}

.hero-register span::before,
.hero-register span::after {
  content: '';
  position: absolute;
  background: rgba(255, 255, 255, 0.45);
}

.hero-register span::before {
  left: 50%;
  top: 2px;
  bottom: 2px;
  width: 1px;
  transform: translateX(-50%);
}

.hero-register span::after {
  top: 50%;
  left: 2px;
  right: 2px;
  height: 1px;
  transform: translateY(-50%);
}

.hero-register span:nth-child(1) { top: 0; left: 0; }
.hero-register span:nth-child(2) { top: 0; right: 0; }
.hero-register span:nth-child(3) { bottom: 0; left: 0; }
.hero-register span:nth-child(4) { bottom: 0; right: 0; }

@media (max-width: 768px) {
  .hero--carousel { min-height: 88vh; }
  .hero-nav { display: none; }
  .hero-rail,
  .hero-register { display: none; }
  .hero-slide__content {
    padding-bottom: 96px;
    padding-left: 24px;
    padding-right: 24px;
    max-width: 100%;
  }
  .hero-slide__content h1 { font-size: 2.5rem; white-space: normal; }
  .hero-slide__content p { font-size: 1.05rem; white-space: normal; }
  .hero-dots { bottom: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .hero--carousel.is-reverse .hero-slide,
  .hero-slide.is-active,
  .hero--carousel.is-reverse .hero-slide.is-active,
  .hero-slide.is-leaving {
    transition: none;
    transform: none;
  }
  .hero-slide.is-active h1 span,
  .hero-slide.is-active h1 span::after {
    animation: none;
  }
  .hero--carousel h1 span {
    -webkit-text-fill-color: unset;
    background: none;
    color: var(--accent);
    filter: none;
  }
  .hero-slide.is-active h1 span::after {
    transform: scaleX(1);
    opacity: 0.7;
  }
}

/* --- Image Placeholder --- */
.img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #E8EFF5 0%, #D5E1ED 100%);
  border: 2px dashed var(--border);
  border-radius: var(--radius-md);
  color: var(--text-muted);
  text-align: center;
  padding: 32px 24px;
  min-height: 200px;
  position: relative;
  overflow: hidden;
}

.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(45deg, transparent 45%, rgba(255,255,255,0.5) 50%, transparent 55%);
  background-size: 200% 200%;
  animation: shimmer 3s infinite;
  pointer-events: none;
}

@keyframes shimmer {
  0% { background-position: 200% 200%; }
  100% { background-position: -200% -200%; }
}

.img-placeholder__icon {
  width: 48px;
  height: 48px;
  color: var(--text-light);
  opacity: 0.6;
}

.img-placeholder__label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.img-placeholder__desc {
  font-size: 0.8125rem;
  color: var(--text-light);
}

.img-placeholder--dark {
  background: linear-gradient(135deg, #1a3a5c 0%, #102A43 100%);
  border-color: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
}

.img-placeholder--dark .img-placeholder__icon { color: rgba(255,255,255,0.3); }
.img-placeholder--dark .img-placeholder__label { color: rgba(255,255,255,0.5); }
.img-placeholder--dark .img-placeholder__desc { color: rgba(255,255,255,0.35); }

/* --- Cards --- */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--border-light);
}

.card__image {
  height: 220px;
  overflow: hidden;
  background: #0B1D36;
}

.card__image img,
.card__img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.card:hover .card__image img,
.card:hover .card__img {
  transform: scale(1.04);
}

.card__image .img-placeholder {
  height: 100%;
  border: none;
  border-radius: 0;
  min-height: auto;
}

.card__body {
  padding: 28px;
}

.card__category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 8px;
}

.card__title {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.card__title a {
  color: var(--text-dark);
}

.card__title a:hover {
  color: var(--secondary);
}

.card__text {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--secondary);
}

.card__link:hover { gap: 10px; }

.card__link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}

/* --- Product Card --- */
.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.product-card__image {
  height: 200px;
  position: relative;
  overflow: hidden;
  background: #0B1D36;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

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

.product-card__image .img-placeholder {
  height: 100%;
  border: none;
  border-radius: 0;
  min-height: auto;
}

.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  background: var(--secondary);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 600;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  z-index: 2;
}

.product-card__body {
  padding: 24px;
}

.product-card__category {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 6px;
}

.product-card__title {
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.product-card__title a {
  color: var(--text-dark);
}

.product-card__title a:hover {
  color: var(--secondary);
}

.product-card__text {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.product-card__actions {
  display: flex;
  gap: 8px;
}

/* --- Stats Bar --- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.stats__item {
  text-align: center;
  padding: 40px 24px;
  border-right: 1px solid var(--border);
}

.stats__item:last-child { border-right: none; }

.stats__number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 8px;
}

.stats__label {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* --- Feature Grid --- */
.feature {
  text-align: center;
  padding: 40px 28px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  background: transparent;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.feature:hover {
  background: rgba(26,86,196,0.06);
  border-color: rgba(26,86,196,0.12);
  box-shadow: 0 12px 28px rgba(11,29,54,0.08);
  transform: translateY(-4px);
}

.feature--media {
  position: relative;
  text-align: left;
  padding: 28px 24px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: #0B1D36;
  border: 1px solid rgba(255,255,255,0.14);
}

.feature--media .feature__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  filter: blur(2.5px);
  transform: scale(1.12);
  z-index: 0;
  pointer-events: none;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.feature--media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11,29,54,0.35) 0%,
    rgba(11,29,54,0.62) 50%,
    rgba(11,29,54,0.88) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.feature--media:hover {
  background: #0B1D36;
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(11,29,54,0.35);
}

.feature--media:hover .feature__bg {
  transform: scale(1.18);
  filter: blur(2px);
}

.feature--media .feature__title,
.feature--media .feature__text {
  position: relative;
  z-index: 2;
}

.feature--media .feature__title {
  color: #fff !important;
  margin-bottom: 8px;
}

.feature--media .feature__text {
  color: rgba(255,255,255,0.85) !important;
  margin: 0;
}

.feature__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background: rgba(31,111,235,0.08);
  border-radius: var(--radius-md);
  color: var(--secondary);
}

.feature__icon svg {
  width: 28px;
  height: 28px;
}

.feature__title {
  font-size: 1.125rem;
  margin-bottom: 10px;
}

.feature__text {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- CTA Section --- */
.cta-section {
  background:
    linear-gradient(
      90deg,
      rgba(214,228,245,0.35) 0%,
      rgba(232,240,250,0.78) 22%,
      rgba(226,236,248,0.88) 50%,
      rgba(232,240,250,0.78) 78%,
      rgba(214,228,245,0.35) 100%
    ),
    linear-gradient(180deg, rgba(168,196,230,0.28), rgba(168,196,230,0.22)),
    url('../src/cta-bg.png') center / cover no-repeat;
  background-color: #D6E4F5;
  color: var(--text-body);
  text-align: left;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(214,228,245,0.55) 0%, rgba(168,196,230,0.2) 48%, transparent 72%);
  pointer-events: none;
}

.cta-section::after {
  display: none;
}

.cta-section__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr auto;
  grid-template-areas:
    "title actions"
    "text actions";
  gap: 12px 64px;
  align-items: center;
}

.cta-section__content {
  max-width: 640px;
}

.cta-section h2 {
  grid-area: title;
  color: var(--text-dark);
  margin-bottom: 0;
}

.cta-section p {
  grid-area: text;
  font-size: 1.125rem;
  color: #243B5A;
  margin-bottom: 0;
  line-height: 1.7;
  max-width: 640px;
}

.cta-section .btn-group {
  grid-area: actions;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 12px;
  flex-wrap: nowrap;
  min-width: 220px;
}

.cta-section .btn--white,
.cta-section .btn--primary {
  background: var(--secondary);
  color: #fff;
  border-color: var(--secondary);
}

.cta-section .btn--white:hover,
.cta-section .btn--primary:hover {
  background: var(--secondary-light);
  border-color: var(--secondary-light);
  color: #fff;
  box-shadow: none;
}

.cta-section .btn--ghost {
  background: rgba(255,255,255,0.72);
  color: var(--secondary);
  border-color: var(--secondary);
  font-weight: 600;
}

.cta-section .btn--ghost:hover {
  background: #fff;
  border-color: var(--secondary-light);
  color: var(--secondary-light);
}

@media (max-width: 768px) {
  .cta-section__inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "text"
      "actions";
    gap: 16px;
    text-align: left;
  }

  .cta-section .btn-group {
    flex-direction: row;
    flex-wrap: wrap;
    min-width: 0;
  }
}

/* --- Page Header / Breadcrumb --- */
.page-header {
  background: var(--primary);
  color: #fff;
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(31,111,235,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.page-header__inner {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.breadcrumb a {
  color: rgba(255,255,255,0.6);
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb__sep {
  color: rgba(255,255,255,0.3);
}

.page-header h1 {
  color: #fff;
  margin-bottom: 12px;
}

.page-header p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.6);
  max-width: none;
  width: 100%;
}

/* --- Sidebar Filter --- */
.sidebar-filter {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
}

.sidebar-filter h4 {
  margin-bottom: 16px;
  font-size: 1rem;
}

.sidebar-filter__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sidebar-filter__list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  font-size: 0.9375rem;
  color: var(--text-body);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.sidebar-filter__list a:hover,
.sidebar-filter__list a.active {
  background: rgba(31,111,235,0.06);
  color: var(--secondary);
}

.sidebar-filter__list .count {
  font-size: 0.75rem;
  color: var(--text-light);
  background: var(--bg-light);
  padding: 2px 8px;
  border-radius: 100px;
}

/* --- Forms --- */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--text-dark);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(31,111,235,0.1);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-note {
  font-size: 0.8125rem;
  color: var(--text-light);
  margin-top: 4px;
}

/* --- Footer --- */
.footer {
  background: var(--primary);
  color: rgba(255,255,255,0.7);
  padding-top: 80px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: #fff;
  font-weight: 800;
  font-size: 1.125rem;
  line-height: 1.2;
}

.footer__logo .logo-sub {
  display: block;
  font-size: 0.65em;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.55);
  text-transform: none;
}

.footer__logo svg,
.footer__logo img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
}

.footer__logo img {
  width: auto;
  height: 40px;
  filter: none;
}

.footer__brand p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
}

.footer h5 {
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: #fff;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}

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

.footer__bottom-links a {
  color: rgba(255,255,255,0.35);
}

.footer__bottom-links a:hover {
  color: rgba(255,255,255,0.7);
}

/* --- Specifics --- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }

.split__content h2 { margin-bottom: 16px; }
.split__content p { color: var(--text-muted); margin-bottom: 20px; }

.check-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--text-body);
}

.check-list li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 2px;
}

/* --- Accordion --- */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.accordion__item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.accordion__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: none;
  border: none;
  width: 100%;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: background var(--transition);
}

.accordion__header:hover { background: var(--bg-light); }

.accordion__icon {
  width: 20px;
  height: 20px;
  transition: transform var(--transition);
}

.accordion__item.active .accordion__icon {
  transform: rotate(180deg);
}

.accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion__body-inner {
  padding: 0 24px 20px;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- Table --- */
.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table th,
.spec-table td {
  padding: 14px 20px;
  text-align: left;
  font-size: 0.9375rem;
}

.spec-table th {
  background: var(--bg-light);
  font-weight: 600;
  color: var(--text-dark);
  border-bottom: 2px solid var(--border);
}

.spec-table td {
  border-bottom: 1px solid var(--border-light);
  color: var(--text-body);
}

.spec-table tr:hover td {
  background: var(--bg-light);
}

/* --- Tags --- */
.tag {
  display: inline-block;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(31,111,235,0.08);
  color: var(--secondary);
  border-radius: 100px;
}

/* --- Contact Info --- */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info__item {
  display: flex;
  gap: 16px;
}

.contact-info__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(31,111,235,0.08);
  border-radius: var(--radius-sm);
  color: var(--secondary);
}

.contact-info__icon svg {
  width: 22px;
  height: 22px;
}

.contact-info__text h5 {
  margin-bottom: 4px;
}

.contact-info__text p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.contact-info__text a {
  color: inherit;
  text-decoration: none;
}

.contact-info__text a:hover {
  color: var(--secondary);
  text-decoration: underline;
}

/* --- Tabs --- */
.tabs {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid var(--border);
  margin-bottom: 32px;
}

.tab-btn {
  padding: 12px 24px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
}

.tab-btn:hover {
  color: var(--text-dark);
}

.tab-btn.active {
  color: var(--secondary);
  border-bottom-color: var(--secondary);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

/* --- Timeline --- */
.timeline {
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline__item {
  position: relative;
  padding-bottom: 40px;
}

.timeline__item:last-child { padding-bottom: 0; }

.timeline__dot {
  position: absolute;
  left: -32px;
  top: 4px;
  width: 16px;
  height: 16px;
  background: var(--secondary);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--secondary);
}

.timeline__year {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 4px;
}

.timeline__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.timeline__text {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

/* --- Process Steps --- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 12.5%;
  width: 75%;
  height: 2px;
  margin-top: -1px;
  background: var(--secondary);
  opacity: 0;
  z-index: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.15s, opacity 0.5s ease 0.15s;
}

.process-steps.is-inview::before {
  opacity: 0.45;
  transform: scaleX(1);
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding-top: 0;
}

.process-step__marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.process-step__dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--secondary);
  border: 3px solid var(--bg-white);
  box-sizing: border-box;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--step, 0) * 0.28s);
}

.process-steps.is-inview .process-step__dot {
  opacity: 1;
  transform: scale(1);
  animation: processDotPulse 1.8s ease-in-out infinite;
  animation-delay: calc(0.55s + var(--step, 0) * 0.28s);
}

.process-step__number {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--secondary);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(0.08s + var(--step, 0) * 0.28s);
}

.process-steps.is-inview .process-step__number {
  opacity: 1;
  transform: translateY(0);
}

.process-step h4 {
  margin-bottom: 8px;
  font-size: 1.05rem;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(0.16s + var(--step, 0) * 0.28s);
}

.process-steps.is-inview .process-step h4 {
  opacity: 1;
  transform: translateY(0);
}

.process-step p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 240px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(0.24s + var(--step, 0) * 0.28s);
}

.process-steps.is-inview .process-step p {
  opacity: 1;
  transform: translateY(0);
}

@keyframes processDotPulse {
  0%, 100% { opacity: 0.35; transform: scale(0.92); }
  50% { opacity: 1; transform: scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
  .process-steps::before,
  .process-step__dot,
  .process-step__number,
  .process-step h4,
  .process-step p {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
  }

  .process-steps.is-inview .process-step__dot {
    animation: none;
  }
}

/* --- Mobile Menu --- */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 999;
  padding: 24px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.mobile-menu__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text-dark);
}

.mobile-menu__close svg {
  width: 24px;
  height: 24px;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu__nav a {
  display: block;
  padding: 14px 16px;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
}

.mobile-menu__nav a:hover,
.mobile-menu__nav a.active {
  background: rgba(31,111,235,0.06);
  color: var(--secondary);
}

.mobile-menu__sub {
  padding-left: 16px;
  margin-top: 4px;
}

.mobile-menu__sub a {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.mobile-menu__group {
  margin: 8px 0 4px;
  padding-left: 16px;
}

.mobile-menu__group-title {
  display: block;
  padding: 8px 0 4px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
}

.mobile-menu__group a {
  display: block;
  padding: 6px 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: none;
}

.mobile-menu__group a:hover {
  color: var(--secondary);
}

.mobile-menu__cta {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* --- Product Detail --- */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.product-detail__gallery {
  position: sticky;
  top: 100px;
}

.product-detail__gallery .img-placeholder {
  height: 400px;
}

.product-detail__info h1 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.product-detail__category {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--secondary);
  margin-bottom: 20px;
}

.product-detail__desc {
  font-size: 1.0625rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 28px;
}

.product-detail__features {
  margin-bottom: 32px;
}

.product-detail__features h4 {
  margin-bottom: 14px;
}

.product-detail__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

/* --- Industries Grid --- */
.industry-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
}

.industry-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(31,111,235,0.2);
}

.industry-card__icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(31,111,235,0.08);
  border-radius: var(--radius-sm);
  color: var(--secondary);
}

.industry-card__icon svg {
  width: 24px;
  height: 24px;
}

.industry-card h4 {
  font-size: 1.0625rem;
  margin-bottom: 6px;
}

.industry-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* --- Affiliates Grid --- */
.affiliates-section {
  overflow: hidden;
}

.affiliates-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.affiliate-card {
  flex: 0 1 calc((100% - 48px) / 3);
  width: calc((100% - 48px) / 3);
  max-width: calc((100% - 48px) / 3);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 28px 22px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text-dark);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.affiliate-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(31,111,235,0.25);
  color: var(--text-dark);
}

.affiliate-card img {
  width: 100%;
  height: 96px;
  object-fit: contain;
  display: block;
}

.affiliate-card__name {
  font-size: 0.9375rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.35;
  color: var(--text-dark);
}

.affiliate-card__desc {
  font-size: 0.8125rem;
  font-weight: 400;
  text-align: center;
  line-height: 1.5;
  color: var(--text-muted);
}

.affiliate-card--static {
  cursor: default;
}

.affiliate-card--static:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--border);
}

@media (max-width: 1024px) {
  .affiliate-card {
    flex: 0 1 calc((100% - 24px) / 2);
    width: calc((100% - 24px) / 2);
    max-width: calc((100% - 24px) / 2);
  }
}

@media (max-width: 768px) {
  .affiliates-grid { gap: 16px; }
  .affiliate-card {
    flex: 0 1 100%;
    width: 100%;
    max-width: 100%;
    padding: 22px 18px;
  }
  .affiliate-card img { height: 80px; }
}

/* --- Clients Marquee & Grid --- */
.clients-trust {
  margin-top: 48px;
}

.clients-trust__label {
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 8px;
}

.clients-trust__actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.clients-trust__actions .btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.clients-trust__actions .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.clients-marquee {
  --clients-gap: 20px;
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 16px 0 8px;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.clients-marquee__track {
  display: flex;
  align-items: stretch;
  width: max-content;
  animation: clientsMarquee 45s linear infinite;
  will-change: transform;
}

.clients-marquee__group {
  display: flex;
  align-items: stretch;
  flex: 0 0 auto;
  gap: var(--clients-gap);
  padding-right: var(--clients-gap);
}

.clients-marquee:hover .clients-marquee__track {
  animation-play-state: paused;
}

.client-logo {
  flex: 0 0 auto;
  width: 168px;
  min-height: 112px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 16px 14px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 20px;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 16px 40px rgba(4, 12, 28, 0.28);
  transition: background 0.3s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.client-logo:hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 16px 40px rgba(4, 12, 28, 0.28);
}

.client-logo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 52px;
  object-fit: contain;
  display: block;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.client-logo span {
  position: relative;
  z-index: 1;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.28);
}

@keyframes clientsMarquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

.clients-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.client-card {
  flex: 0 1 calc((100% - 48px) / 3);
  width: calc((100% - 48px) / 3);
  max-width: calc((100% - 48px) / 3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 210px;
  padding: 36px 28px;
  box-sizing: border-box;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 22px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 16px 40px rgba(4, 12, 28, 0.28);
  transition: background 0.3s ease, box-shadow 0.35s ease, transform 0.25s ease;
}

.client-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 18px 42px rgba(4, 12, 28, 0.3);
}

.client-card img {
  width: 100%;
  height: 96px;
  object-fit: contain;
  display: block;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.client-card__name {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.28);
}

@media (prefers-reduced-motion: reduce) {
  .clients-marquee__track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    justify-content: center;
    padding: 0 24px;
  }

  .clients-marquee__group {
    flex-wrap: wrap;
    justify-content: center;
    padding-right: 0;
    gap: 16px;
  }

  .clients-marquee__group[aria-hidden="true"] {
    display: none;
  }
}

@media (max-width: 1024px) {
  .client-card {
    flex: 0 1 calc((100% - 24px) / 2);
    width: calc((100% - 24px) / 2);
    max-width: calc((100% - 24px) / 2);
  }
}

@media (max-width: 768px) {
  .clients-marquee { --clients-gap: 14px; }
  .client-logo { width: 140px; min-height: 100px; padding: 14px 12px 12px; }
  .client-logo img { height: 44px; }
  .clients-marquee__track { animation-duration: 36s; }
  .clients-grid { gap: 16px; }
  .client-card {
    flex: 0 1 calc((100% - 16px) / 2);
    width: calc((100% - 16px) / 2);
    max-width: calc((100% - 16px) / 2);
    min-height: 170px;
    padding: 24px 16px;
    gap: 14px;
  }
  .client-card img { height: 72px; }
  .client-card__name { font-size: 0.8125rem; }
}

@media (max-width: 480px) {
  .client-card {
    flex: 0 1 100%;
    width: 100%;
    max-width: 100%;
    min-height: 180px;
  }
  .client-card img { height: 88px; }
}

.map-placeholder {
  height: 400px;
  background: linear-gradient(135deg, #E8EFF5 0%, #D5E1ED 100%);
  border: 2px dashed var(--border);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  gap: 12px;
}

/* --- Location / Map --- */
.location-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 20px 48px rgba(11,29,54,0.28);
  background: #D6E4F5;
}

.location-map__frame {
  position: relative;
  min-height: 420px;
  background: #D6E4F5;
}

.location-map__frame iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

@media (max-width: 768px) {
  .location-map__frame,
  .location-map__frame iframe {
    min-height: 300px;
    height: 300px;
  }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats__item:nth-child(2) { border-right: none; }
  .stats__item:nth-child(1),
  .stats__item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.12); }
  .split { gap: 40px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .process-steps::before { display: none; }
  .product-detail { grid-template-columns: 1fr; }
  .product-detail__gallery { position: static; }
}

@media (max-width: 768px) {
  :root { --header-height: 64px; }

  .section { padding: 56px 0; }
  .section--lg { padding: 80px 0; }

  .header__nav,
  .header__cta { display: none; }
  .menu-toggle { display: block; }
  .mobile-menu { display: block; }

  .hero { min-height: auto; padding: 120px 0 80px; }
  .hero--carousel { padding: 0; min-height: 88vh; }
  .hero__image { display: none; }
  .hero h1 { font-size: 2rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }

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

  .split { grid-template-columns: 1fr; gap: 32px; }
  .split--reverse { direction: ltr; }

  .stats { grid-template-columns: 1fr 1fr; }
  .stats__item { padding: 24px 16px; }
  .stats__number { font-size: 1.75rem; }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }

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

  .page-header { padding: 100px 0 48px; }

  .process-steps { grid-template-columns: 1fr; gap: 32px; }
  .process-steps::before { display: none; }

  .tabs { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .tab-btn { white-space: nowrap; padding: 12px 16px; }

  .section-header { margin-bottom: 40px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .stats { grid-template-columns: 1fr; }
  .stats__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .stats__item:last-child { border-bottom: none; }
  .process-steps { grid-template-columns: 1fr; }
}

/* --- Quote Page Layout --- */
.quote-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 48px;
  align-items: start;
}

.quote-layout__form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 40px;
}

.quote-layout__sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 100px;
}

.quote-benefit-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
}

.quote-benefit-card h4 {
  margin-bottom: 24px;
  font-size: 1.125rem;
}

.quote-benefit-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.quote-benefit-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.quote-benefit-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(31,111,235,0.08);
  border-radius: var(--radius-sm);
  color: var(--secondary);
}

.quote-benefit-icon svg {
  width: 20px;
  height: 20px;
}

.quote-benefit-list li strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.quote-benefit-list li p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0;
}

.quote-contact-card {
  background: var(--primary);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
}

.quote-contact-card h5 {
  color: rgba(255,255,255,0.6);
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.quote-phone,
.quote-email {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 8px;
  transition: color var(--transition);
}

.quote-email {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}

.quote-phone svg,
.quote-email svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.quote-phone:hover,
.quote-email:hover {
  color: var(--accent-light);
}

.quote-hours {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .quote-layout { gap: 32px; }
}

@media (max-width: 768px) {
  .quote-layout {
    grid-template-columns: 1fr;
  }
  .quote-layout__form { padding: 24px; }
  .quote-layout__sidebar { position: static; }
}

/* --- Utility --- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.pt-0 { padding-top: 0; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.d-flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.w-100 { width: 100%; }

/* Content grid for sidebar layouts */
.content-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: start;
}

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

/* --- Products catalog: horizontal category cards --- */
.products-catalog__meta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0 28px;
  padding: 0;
  border: none;
  background: none;
  font-family: inherit;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: color 0.2s ease;
}

.products-catalog__meta:hover,
.products-catalog__meta.is-active {
  color: var(--secondary);
}

.products-catalog__meta svg {
  width: 18px;
  height: 18px;
  color: var(--secondary);
  flex-shrink: 0;
}

.products-catalog {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.products-catalog #productsGrid {
  margin-top: 0;
}

.product-card.is-filtered-out {
  display: none !important;
}

.products-catalog .product-card {
  background: #0B1D36;
  border-color: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
}

.products-catalog .product-card:hover {
  background: #123056;
  border-color: rgba(61,139,219,0.4);
  box-shadow: 0 12px 32px rgba(11,29,54,0.28);
}

.products-catalog .product-card__body {
  background: #0B1D36;
}

.products-catalog .product-card:hover .product-card__body {
  background: #123056;
}

.products-catalog .product-card__category {
  color: #3D8BDB;
}

.products-catalog .product-card__title,
.products-catalog .product-card__title a {
  color: #fff;
}

.products-catalog .product-card__title a:hover {
  color: #9EC5F5;
}

.products-catalog .product-card__text {
  color: rgba(214,228,245,0.72);
}

.products-catalog .product-card .btn--outline {
  border-color: rgba(255,255,255,0.28);
  color: #fff;
  background: transparent;
}

.products-catalog .product-card .btn--outline:hover {
  border-color: #3D8BDB;
  background: rgba(61,139,219,0.15);
  color: #fff;
}

.category-bar {
  position: relative;
  margin: 0;
}

.category-bar__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(26,86,196,0.22);
  background: rgba(255,255,255,0.95);
  color: var(--secondary);
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(11,29,54,0.16);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.category-bar__nav--prev {
  left: 10px;
}

.category-bar__nav--next {
  right: 10px;
}

.category-bar__nav svg {
  width: 18px;
  height: 18px;
}

.category-bar__nav:hover:not(:disabled) {
  background: var(--secondary);
  border-color: var(--secondary);
  color: #fff;
  transform: translateY(-50%) scale(1.05);
}

.category-bar__nav:disabled {
  opacity: 0;
  pointer-events: none;
}

.category-bar__track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 6px 0;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.category-bar__track::-webkit-scrollbar {
  display: none;
  height: 0;
}

.category-bar__track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
  user-select: none;
}

.category-card {
  position: relative;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: min(260px, 72vw);
  height: 320px;
  padding: 22px;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.14);
  background: #0B1D36;
  color: #fff;
  text-decoration: none;
  text-align: left;
  font-family: inherit;
  cursor: pointer;
  scroll-snap-align: start;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

.category-card:visited {
  color: #fff;
}

.category-card:hover,
.category-card.is-active {
  transform: translateY(-4px);
  border-color: rgba(61,139,219,0.55);
  box-shadow: 0 16px 40px rgba(11,29,54,0.35);
  color: #fff;
}

.category-card.is-active {
  border-color: #3D8BDB;
  box-shadow: 0 16px 40px rgba(26,86,196,0.35);
}

.category-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition: transform 0.45s ease;
  z-index: 0;
  pointer-events: none;
}

.category-card:hover .category-card__bg,
.category-card.is-active .category-card__bg {
  transform: scale(1.1);
}

.category-card__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(11,29,54,0.25) 0%,
    rgba(11,29,54,0.55) 45%,
    rgba(11,29,54,0.92) 100%
  );
  pointer-events: none;
}

.category-card__icon {
  position: relative;
  z-index: 2;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  color: #D6E4F5;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.category-card__icon svg {
  width: 24px;
  height: 24px;
}

.category-card__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.category-card__label {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.category-card__count {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(214,228,245,0.78);
}

@media (max-width: 640px) {
  .category-bar__nav {
    width: 38px;
    height: 38px;
  }

  .category-bar__nav--prev {
    left: 6px;
  }

  .category-bar__nav--next {
    right: 6px;
  }

  .category-card {
    width: min(220px, 70vw);
    height: 280px;
    padding: 18px;
  }

  .category-card__label {
    font-size: 1rem;
  }
}

/* ============================================
   NAVY / BLUE THEME - 5 colors
   1 Navy  #0B1D36
   2 Blue  #1A56C4
   3 Ice   #D6E4F5
   4 White #FFFFFF
   5 Sky   #3D8BDB
   ============================================ */

:root {
  --gradient-primary: linear-gradient(135deg, #0B1D36 0%, #123056 55%, #1A56C4 160%);
  --gradient-blue: linear-gradient(135deg, #123056 0%, #1A56C4 100%);
  --gradient-surface: #F5F9FD;
  --glow-blue: 0 8px 32px rgba(11,29,54,0.12);
}

.mobile-menu .header__logo { color: var(--primary); }
.mobile-menu .header__logo img { filter: none; }
.mobile-menu .header__logo .logo-sub { color: var(--text-muted); }

.section--light {
  background: var(--gradient-primary);
  color: rgba(255,255,255,0.85);
  position: relative;
}

.section--light::before,
.section--light::after {
  display: none;
}

.section--light h1,
.section--light h2,
.section--light h3,
.section--light h4,
.section--light h5,
.section--light h6 {
  color: #fff;
}

.section--light .section-header p,
.section--light p {
  color: rgba(255,255,255,0.7);
}

.section--light .check-list li {
  color: rgba(255,255,255,0.88);
}

.section--light .check-list li svg {
  color: #5AA3E8;
}

.section--light .split__content p {
  color: rgba(255,255,255,0.72);
}

.section--light .section-label {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
}

.section--light .section-header::after {
  background: linear-gradient(90deg, #3D8BDB, #5AA3E8);
}

.section--light .card,
.section--light .product-card,
.section--light .industry-card,
.section--light .feature:not(.feature--media),
.section--light .sidebar-filter,
.section--light .accordion__item {
  color: var(--text-body);
  background: rgba(214, 228, 245, 0.92);
  border-color: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.section--light .feature:not(.feature--media):hover {
  background: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 16px 36px rgba(11,29,54,0.22);
  transform: translateY(-4px);
}

.section--white .category-card,
.section--white .category-card:hover,
.section--white .category-card.is-active {
  color: #fff;
}

.section--light .feature--media {
  background: #0B1D36;
  color: #fff;
  backdrop-filter: none;
}

.section--light .card:hover,
.section--light .product-card:hover,
.section--light .industry-card:hover {
  background: rgba(232, 240, 250, 0.96);
  border-color: rgba(255, 255, 255, 0.22);
}

.section--light .card__body,
.section--light .product-card__body {
  background: transparent;
}

.section--light .card h1,
.section--light .card h2,
.section--light .card h3,
.section--light .card h4,
.section--light .card h5,
.section--light .product-card h1,
.section--light .product-card h2,
.section--light .product-card h3,
.section--light .product-card h4,
.section--light .industry-card h4,
.section--light .feature:not(.feature--media) h4,
.section--light .feature:not(.feature--media) .feature__title {
  color: var(--text-dark);
}

.section--light .card p,
.section--light .product-card p,
.section--light .industry-card p,
.section--light .feature:not(.feature--media) p,
.section--light .feature:not(.feature--media) .feature__text,
.section--light .card__text,
.section--light .product-card__text {
  color: var(--text-muted);
}

.section--light .timeline__title { color: #fff; }
.section--light .timeline__text { color: rgba(255,255,255,0.7); }
.section--light .timeline__year {
  background: rgba(255,255,255,0.12);
  color: #fff;
}
.section--light .timeline::before {
  background: linear-gradient(180deg, #3D8BDB, #1A56C4);
  opacity: 0.6;
}

.section--white {
  background: var(--bg-white);
}

.section--industries-bg {
  background:
    linear-gradient(135deg, rgba(11,29,54,0.72) 0%, rgba(18,48,86,0.55) 50%, rgba(11,29,54,0.78) 100%),
    url('../src/bg-sectors.png') center / cover no-repeat;
  background-color: #0B1D36;
}

.section-label {
  background: rgba(26,86,196,0.1);
  padding: 5px 16px;
  border-radius: 100px;
  border: 1px solid rgba(26,86,196,0.18);
  color: var(--secondary);
}

.section-header--left {
  text-align: left;
  max-width: 560px;
  margin-left: 0;
  margin-right: auto;
}

.section-header--left::after {
  margin-left: 0;
  margin-right: auto;
}

.section-header::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  background: var(--gradient-blue);
  margin: 20px auto 0;
  border-radius: 3px;
}

.section-header--left::after {
  margin: 20px 0 0;
}

.card,
.product-card {
  background: #fff;
  position: relative;
  overflow: hidden;
}

.card::before,
.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-blue);
  opacity: 0;
  transition: opacity var(--transition);
}

.card:hover::before,
.product-card:hover::before { opacity: 1; }

.card:hover,
.product-card:hover,
.industry-card:hover {
  box-shadow: var(--glow-blue);
  transform: translateY(-3px);
}

.product-card__category,
.card__category {
  background: rgba(26,86,196,0.1);
  padding: 2px 10px;
  border-radius: 100px;
  display: inline-block;
  color: var(--secondary);
}

.feature__icon,
.industry-card__icon,
.contact-info__icon,
.quote-benefit-icon {
  background: rgba(26,86,196,0.1);
  color: var(--secondary);
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.feature:hover .feature__icon,
.industry-card:hover .industry-card__icon {
  background: var(--secondary);
  color: #fff;
  transform: scale(1.06);
}

.feature:hover {
  background: rgba(26,86,196,0.06);
  border-color: rgba(26,86,196,0.12);
  box-shadow: 0 12px 28px rgba(11,29,54,0.08);
  transform: translateY(-4px);
}

.stats {
  background: linear-gradient(135deg, #0B1D36 0%, #123056 100%);
  border: none;
  box-shadow: 0 16px 40px rgba(11,29,54,0.28);
  overflow: hidden;
  position: relative;
}

.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 0%, rgba(26,86,196,0.35) 0%, transparent 45%),
    radial-gradient(circle at 90% 100%, rgba(61,139,219,0.18) 0%, transparent 40%);
  pointer-events: none;
}

.stats__item {
  border-right-color: rgba(255,255,255,0.12);
  position: relative;
  z-index: 1;
}

.stats__number {
  background: none;
  -webkit-text-fill-color: #fff;
  color: #fff;
  text-shadow: 0 2px 12px rgba(61,139,219,0.35);
}

.stats__label { color: rgba(255,255,255,0.65); }

.stats__label .stats__char,
.stats__number .stats__digit {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.55em);
  transition: opacity 0.45s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--i, 0) * 28ms);
}

.stats.is-animated .stats__label .stats__char,
.stats.is-animated .stats__number.is-revealed .stats__digit {
  opacity: 1;
  transform: translateY(0);
}

.stats__item:nth-child(1) .stats__label .stats__char { transition-delay: calc(180ms + var(--i, 0) * 28ms); }
.stats__item:nth-child(2) .stats__label .stats__char { transition-delay: calc(300ms + var(--i, 0) * 28ms); }
.stats__item:nth-child(3) .stats__label .stats__char { transition-delay: calc(420ms + var(--i, 0) * 28ms); }
.stats__item:nth-child(4) .stats__label .stats__char { transition-delay: calc(540ms + var(--i, 0) * 28ms); }
.stats__item:nth-child(4) .stats__digit { transition-delay: calc(120ms + var(--i, 0) * 40ms); }

@media (prefers-reduced-motion: reduce) {
  .stats__label .stats__char,
  .stats__number .stats__digit {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.industry-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-blue);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.industry-card:hover::after { transform: scaleX(1); }

.btn--primary {
  background: var(--secondary);
  border-color: var(--secondary);
  box-shadow: none;
}

.btn--primary:hover {
  background: var(--secondary-light);
  border-color: var(--secondary-light);
  box-shadow: none;
}

.header__cta .btn--primary {
  box-shadow: none;
}

.btn--dark {
  background: var(--gradient-primary);
  border-color: transparent;
}

.img-placeholder,
.img-placeholder--blue,
.img-placeholder--teal,
.img-placeholder--purple,
.img-placeholder--green,
.img-placeholder--orange,
.img-placeholder--red,
.img-placeholder--indigo {
  background: linear-gradient(145deg, #C9D9F0 0%, #AEC6E4 50%, #C5D6EC 100%);
  border-color: rgba(26,86,196,0.22);
  position: relative;
  overflow: hidden;
}

.img-placeholder::after,
.img-placeholder--blue::after,
.img-placeholder--teal::after,
.img-placeholder--purple::after,
.img-placeholder--green::after,
.img-placeholder--orange::after,
.img-placeholder--red::after,
.img-placeholder--indigo::after {
  content: '';
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  background: rgba(26,86,196,0.1);
  border-radius: 50%;
  pointer-events: none;
}

.img-placeholder__icon { color: var(--secondary); opacity: 0.45; }

.img-placeholder__label,
.img-placeholder--blue .img-placeholder__label,
.img-placeholder--teal .img-placeholder__label,
.img-placeholder--purple .img-placeholder__label,
.img-placeholder--green .img-placeholder__label,
.img-placeholder--orange .img-placeholder__label,
.img-placeholder--red .img-placeholder__label,
.img-placeholder--indigo .img-placeholder__label {
  color: var(--primary);
  opacity: 0.8;
}

.img-placeholder__icon-lg { width: 80px; height: 80px; }

.img-placeholder--scene {
  background: none;
  border: none;
  padding: 0;
}

.img-placeholder--scene::after { display: none; }

.img-placeholder__scene {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-md);
}

.page-header,
.footer {
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  background:
    radial-gradient(circle at 80% 20%, rgba(26,86,196,0.45) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(61,139,219,0.22) 0%, transparent 55%);
}

.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.page-header .breadcrumb,
.page-header h1,
.page-header p { position: relative; z-index: 2; }

.cta-section {
  background:
    linear-gradient(
      90deg,
      rgba(214,228,245,0.35) 0%,
      rgba(232,240,250,0.78) 22%,
      rgba(226,236,248,0.88) 50%,
      rgba(232,240,250,0.78) 78%,
      rgba(214,228,245,0.35) 100%
    ),
    linear-gradient(180deg, rgba(168,196,230,0.28), rgba(168,196,230,0.22)),
    url('../src/cta-bg.png') center / cover no-repeat !important;
  background-color: #D6E4F5 !important;
}

.cta-section::before {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(214,228,245,0.55) 0%, rgba(168,196,230,0.2) 48%, transparent 72%) !important;
}

.cta-section::after {
  display: none !important;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1A56C4, #3D8BDB, #1A56C4);
}

.sidebar-filter {
  background: #fff;
}

.sidebar-filter__list a.active {
  background: rgba(26,86,196,0.08);
  border-left: 3px solid var(--secondary);
  padding-left: 11px;
}

.tag {
  background: rgba(26,86,196,0.1);
  border: 1px solid rgba(26,86,196,0.16);
  color: var(--secondary);
}

.timeline::before {
  background: var(--gradient-blue);
  opacity: 0.35;
  width: 3px;
}

.timeline__dot {
  background: var(--gradient-blue);
  box-shadow: 0 0 0 4px rgba(26,86,196,0.16);
  border: 3px solid #fff;
}

.timeline__year {
  background: rgba(26,86,196,0.1);
  color: var(--secondary);
  padding: 2px 12px;
  border-radius: 100px;
  display: inline-block;
}

.accordion__item.active {
  border-color: rgba(26,86,196,0.28);
}

.accordion__item.active .accordion__header {
  background: rgba(26,86,196,0.05);
  color: var(--secondary);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(61,139,219,0.18);
}

.spec-table th {
  background: #D6E4F5;
  border-bottom: 2px solid rgba(26,86,196,0.18);
}

.spec-table tr:hover td { background: rgba(26,86,196,0.04); }

.tab-btn.active {
  background: rgba(26,86,196,0.06);
  border-bottom-color: var(--accent);
}

.check-list li svg { color: var(--secondary); }

.map-placeholder {
  background: linear-gradient(145deg, #C9D9F0 0%, #AEC6E4 100%);
  border-color: rgba(26,86,196,0.18);
}

.header.scrolled {
  box-shadow: 0 8px 28px rgba(11,29,54,0.35);
}

.header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #0A2340;
}

.split__content {
  position: relative;
}

.split__content::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 0;
  width: 4px;
  height: 56px;
  background: var(--gradient-blue);
  border-radius: 4px;
}

.hero-dot.is-active {
  background: var(--accent);
  box-shadow: 0 0 8px rgba(61,139,219,0.5);
}

.hero-slide__overlay {
  background:
    linear-gradient(105deg, rgba(11,29,54,0.88) 0%, rgba(18,48,86,0.62) 36%, rgba(26,86,196,0.28) 66%, rgba(61,139,219,0.14) 100%),
    linear-gradient(to top, rgba(11,29,54,0.38) 0%, transparent 46%) !important;
}

.loading-overlay {
  background: linear-gradient(145deg, #071525 0%, #0B1D36 50%, #123056 100%) !important;
}

.loading-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(26,86,196,0.22) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(61,139,219,0.12) 0%, transparent 50%);
  pointer-events: none;
}

.loading-overlay__bar-fill {
  background: linear-gradient(90deg, #1A56C4, #3D8BDB, #1A56C4) !important;
  background-size: 200% 100% !important;
  animation: shimmerBar 2s linear infinite !important;
}

@keyframes shimmerBar {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}

.section-deco { position: relative; overflow: hidden; }

.section-deco__shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.section-deco > .container { position: relative; z-index: 1; }

.footer__links a:hover { color: var(--accent-light); }

.mobile-menu__nav a.active {
  background: rgba(26,86,196,0.08);
  border-left: 3px solid var(--secondary);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.breadcrumb a { color: var(--accent-light); }
.breadcrumb a:hover { color: #fff; }

@media (max-width: 768px) {
  .split__content::before { display: none; }
  .section--light::before,
  .section--light::after { display: none; }
}

/* --- Manufacturing media & equipment --- */
.media-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #0B1D36;
  min-height: 360px;
}

.media-frame img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

.media-frame[style*="height"] img {
  min-height: 0;
  height: 100%;
}

/* --- Certification showcase --- */
.cert-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  min-height: 360px;
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: #fff;
}

.cert-showcase__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 12px;
  text-align: center;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid rgba(26,86,196,0.12);
  box-shadow: 0 8px 24px rgba(11,29,54,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cert-showcase__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(11,29,54,0.1);
}

.cert-showcase__mark {
  width: 100%;
  max-width: 140px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: var(--radius-sm);
  background: #fff;
  border: 1px solid rgba(26,86,196,0.1);
}

.cert-showcase__mark img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  display: block;
}

.cert-showcase__label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
}

.cert-showcase__sub {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.35;
  max-width: 140px;
}

@media (max-width: 640px) {
  .cert-showcase {
    min-height: 0;
    padding: 14px;
    gap: 12px;
  }

  .cert-showcase__mark {
    height: 80px;
    max-width: 120px;
  }
}

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

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

.equipment-group {
  margin-bottom: 40px;
}

.equipment-group__title {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}

.equipment-card {
  background: rgba(214, 228, 245, 0.92);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.equipment-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--glow-blue);
  background: rgba(232, 240, 250, 0.96);
}

.equipment-card__media {
  aspect-ratio: 16 / 10;
  background: #0B1D36;
  overflow: hidden;
}

.equipment-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.equipment-card:hover .equipment-card__media img {
  transform: scale(1.03);
}

.equipment-card__body {
  padding: 20px 22px 24px;
  color: var(--text-body);
}

.equipment-card__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--secondary);
  background: rgba(26,86,196,0.1);
  border: 1px solid rgba(26,86,196,0.16);
  border-radius: 100px;
  padding: 3px 10px;
  margin-bottom: 10px;
}

.equipment-card__body h3 {
  color: var(--text-dark);
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.equipment-card__body p {
  color: var(--text-muted) !important;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

.equipment-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 28px;
  max-width: 920px;
  margin: 8px auto 0;
}

.section--light .equipment-highlights li {
  color: rgba(255,255,255,0.88);
}

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

.facility-gallery__item {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(214, 228, 245, 0.92);
  border: 1px solid rgba(255,255,255,0.14);
}

.facility-gallery__item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.facility-gallery__item figcaption {
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.facility-gallery__item strong {
  color: var(--text-dark);
  font-size: 1.05rem;
}

.facility-gallery__item span {
  color: var(--text-muted);
  font-size: 0.875rem;
}

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

@media (max-width: 768px) {
  .equipment-grid,
  .equipment-grid--3,
  .facility-gallery,
  .equipment-highlights {
    grid-template-columns: 1fr;
  }

  .media-frame,
  .media-frame img {
    min-height: 240px;
  }

  .facility-gallery__item img {
    height: 200px;
  }
}

/* --- Homepage Product Showcase (3D Coverflow) --- */
#products.section-deco {
  overflow: hidden;
}

.product-showcase {
  --ps-card-w: 220px;
  --ps-card-h: 300px;
  --ps-scale-active: 1.2;
  position: relative;
  z-index: 1;
  outline: none;
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  padding: 0;
}

.product-showcase__stage {
  position: relative;
  width: 100%;
  height: calc(var(--ps-card-h) * var(--ps-scale-active) + 48px);
}

.product-showcase__glow {
  position: absolute;
  left: 50%;
  top: 48%;
  width: min(520px, 70vw);
  height: min(420px, 60vw);
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(61, 139, 219, 0.4) 0%, rgba(26, 86, 196, 0.14) 42%, transparent 72%);
  pointer-events: none;
  z-index: 0;
  filter: blur(6px);
}

.product-showcase__beam {
  position: absolute;
  left: 50%;
  top: 6%;
  width: 2px;
  height: 78%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, transparent 0%, rgba(90, 163, 232, 0.15) 18%, rgba(90, 163, 232, 0.7) 50%, rgba(90, 163, 232, 0.15) 82%, transparent 100%);
  box-shadow: 0 0 18px rgba(61, 139, 219, 0.55);
  pointer-events: none;
  z-index: 2;
  opacity: 0.55;
}

.product-showcase__viewport {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  overflow: visible;
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.product-showcase.is-dragging .product-showcase__viewport {
  cursor: grabbing;
}

.product-showcase__track {
  position: relative;
  width: 100%;
  height: 100%;
}

.product-showcase:not(.is-ready) .product-showcase__item {
  opacity: 0;
}

.product-showcase:not(.is-ready) .product-showcase__item.is-center {
  opacity: 1;
  transform: translate(-50%, -50%) scale(var(--ps-scale-active));
}

.product-showcase__item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--ps-card-w);
  height: var(--ps-card-h);
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  transform-origin: center center;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.55s ease, filter 0.55s ease;
  cursor: pointer;
  will-change: transform, opacity, filter;
}

.product-showcase.is-dragging .product-showcase__item {
  transition-duration: 0.18s;
}

.product-showcase__item.is-center {
  cursor: default;
}

.product-showcase__card {
  width: 100%;
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
  background: #0B1D36;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.product-showcase__item.is-center .product-showcase__card {
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(90, 163, 232, 0.28),
    0 0 48px rgba(61, 139, 219, 0.28);
}

  .product-showcase__card img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  display: block;
  pointer-events: none;
  user-drag: none;
  -webkit-user-drag: none;
}

.product-showcase__nav {
  position: absolute;
  top: 50%;
  left: calc(50% + var(--ps-nav-x, 0px));
  z-index: 50;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(11, 29, 54, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.product-showcase__nav:hover {
  background: rgba(26, 86, 196, 0.9);
  border-color: transparent;
  transform: translate(-50%, -50%) scale(1.06);
}

.product-showcase__nav:focus-visible {
  outline: 2px solid #5AA3E8;
  outline-offset: 3px;
}

.product-showcase__nav svg {
  width: 22px;
  height: 22px;
}

.product-showcase__nav--prev { --ps-nav-x: var(--ps-nav-prev, -32%); }
.product-showcase__nav--next { --ps-nav-x: var(--ps-nav-next, 32%); }

.product-showcase__info {
  text-align: center;
  max-width: 760px;
  min-height: 168px;
  margin: 12px auto 0;
  padding: 0 24px;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.product-showcase__info.is-switching {
  opacity: 0;
  transform: translateY(10px);
}

.product-showcase__category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8EC4F0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.product-showcase__name {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 10px;
}

.product-showcase__name a {
  color: inherit;
  text-decoration: none;
}

.product-showcase__name a:hover {
  color: #8EC4F0;
}

.product-showcase__desc {
  font-size: 0.975rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 auto 22px;
  max-width: none;
  white-space: nowrap;
}

.product-showcase__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(11, 29, 54, 0.45);
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, gap 0.25s ease;
}

.product-showcase__cta:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  gap: 12px;
  transform: translateY(-1px);
}

.product-showcase__cta svg {
  width: 16px;
  height: 16px;
}

.product-showcase__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 36px;
}

.product-showcase__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
}

.product-showcase__dot:hover {
  background: rgba(255, 255, 255, 0.5);
}

.product-showcase__dot.is-active {
  width: 26px;
  background: #5AA3E8;
}

.product-showcase__view-all {
  display: block;
  width: fit-content;
  margin: 22px auto 0;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(142, 196, 240, 0.72);
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
  transition: color 0.25s ease;
}

.product-showcase__view-all:hover {
  color: #8EC4F0;
}

.product-showcase__item:focus-visible {
  outline: none;
}

.product-showcase__item:focus-visible .product-showcase__card {
  outline: 2px solid #5AA3E8;
  outline-offset: 4px;
}

.section-deco > .product-showcase {
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .product-showcase {
    --ps-scale-active: 1.18;
  }

  .product-showcase__name {
    font-size: 1.5rem;
  }

  .product-showcase__info {
    max-width: 520px;
  }

  .product-showcase__desc {
    white-space: normal;
    max-width: 460px;
  }
}

@media (max-width: 768px) {
  .product-showcase {
    --ps-scale-active: 1.16;
  }

  .product-showcase__nav {
    width: 42px;
    height: 42px;
  }

  .product-showcase__info {
    min-height: 168px;
    margin-top: 8px;
  }

  .product-showcase__name {
    font-size: 1.35rem;
  }

  .product-showcase__beam {
    opacity: 0.28;
  }
}

@media (max-width: 480px) {
  .product-showcase {
    --ps-scale-active: 1.12;
  }

  .product-showcase__info {
    padding: 0 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-showcase__item,
  .product-showcase__info,
  .product-showcase__cta,
  .product-showcase__dot {
    transition: none;
  }

  #products.js-rise:not(.is-inview) .section-header .section-label,
  #products.js-rise:not(.is-inview) .section-header h2,
  #products.js-rise:not(.is-inview) .section-header p,
  #products.js-rise:not(.is-inview) .section-header::after,
  #products.js-rise:not(.is-inview) .product-showcase__card,
  #products.js-rise:not(.is-inview) .product-showcase__nav,
  #products.js-rise:not(.is-inview) .product-showcase__info,
  #products.js-rise:not(.is-inview) .product-showcase__dots,
  #products.js-rise:not(.is-inview) .product-showcase__view-all,
  #products.js-rise:not(.is-inview) .product-showcase__glow,
  #products.js-rise:not(.is-inview) .product-showcase__beam,
  #products.js-rise:not(.is-inview) .products-rise-light {
    opacity: 1;
    transform: none;
  }
}

/* --- Products sunrise / rise-in --- */
.products-rise-light {
  position: absolute;
  left: 50%;
  bottom: -18%;
  width: 160%;
  height: 95%;
  transform: translateX(-50%) translateY(36%);
  background: radial-gradient(ellipse at 50% 85%, rgba(90, 163, 232, 0.42) 0%, rgba(61, 139, 219, 0.14) 40%, transparent 72%);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.05s ease;
}

#products.is-inview .products-rise-light {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

#products.js-rise .section-header .section-label,
#products.js-rise .section-header h2,
#products.js-rise .section-header p,
#products.js-rise .section-header::after,
#products.js-rise .product-showcase__card,
#products.js-rise .product-showcase__info,
#products.js-rise .product-showcase__dots,
#products.js-rise .product-showcase__view-all,
#products.js-rise .product-showcase__cta {
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.75s ease;
}

#products.js-rise .product-showcase__nav {
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.75s ease, background 0.25s ease, border-color 0.25s ease;
}

#products.js-rise .product-showcase__glow {
  transition: transform 1.1s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.9s ease, filter 0.9s ease;
}

#products.js-rise .product-showcase__beam {
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.85s ease;
}

#products.js-rise .section-header::after {
  transform-origin: center;
}

#products.js-rise:not(.is-inview) .section-header .section-label,
#products.js-rise:not(.is-inview) .section-header h2,
#products.js-rise:not(.is-inview) .section-header p,
#products.js-rise:not(.is-inview) .product-showcase__card,
#products.js-rise:not(.is-inview) .product-showcase__info,
#products.js-rise:not(.is-inview) .product-showcase__dots,
#products.js-rise:not(.is-inview) .product-showcase__view-all {
  opacity: 0;
  transform: translateY(56px);
}

#products.js-rise:not(.is-inview) .section-header::after {
  opacity: 0;
  transform: scaleX(0);
}

#products.js-rise:not(.is-inview) .product-showcase__nav {
  opacity: 0;
  transform: translate(-50%, calc(-50% + 48px));
}

#products.js-rise:not(.is-inview) .product-showcase__glow {
  opacity: 0;
  transform: translate(-50%, -50%) translateY(48px) scale(0.82);
}

#products.js-rise:not(.is-inview) .product-showcase__beam {
  opacity: 0;
  transform: translateX(-50%) translateY(40px) scaleY(0.6);
}

#products.is-inview .section-header .section-label,
#products.is-inview .section-header h2,
#products.is-inview .section-header p,
#products.is-inview .product-showcase__card,
#products.is-inview .product-showcase__info,
#products.is-inview .product-showcase__dots,
#products.is-inview .product-showcase__view-all {
  opacity: 1;
  transform: translateY(0);
}

#products.is-inview .section-header::after {
  opacity: 1;
  transform: scaleX(1);
}

#products.is-inview .product-showcase__nav {
  opacity: 1;
  transform: translate(-50%, -50%);
}

#products.is-inview .product-showcase__nav:hover {
  transform: translate(-50%, -50%) scale(1.06);
}

#products.is-inview .product-showcase__glow {
  opacity: 1;
  transform: translate(-50%, -50%);
}

#products.is-inview .product-showcase__beam {
  opacity: 0.55;
  transform: translateX(-50%) translateY(0) scaleY(1);
}

#products.is-inview .section-header .section-label { transition-delay: 0.04s; }
#products.is-inview .section-header h2 { transition-delay: 0.12s; }
#products.is-inview .section-header p { transition-delay: 0.2s; }
#products.is-inview .section-header::after { transition-delay: 0.28s; }

#products.is-inview .product-showcase__item:nth-child(1) .product-showcase__card { transition-delay: 0.18s; }
#products.is-inview .product-showcase__item:nth-child(2) .product-showcase__card { transition-delay: 0.24s; }
#products.is-inview .product-showcase__item:nth-child(3) .product-showcase__card { transition-delay: 0.3s; }
#products.is-inview .product-showcase__item:nth-child(4) .product-showcase__card { transition-delay: 0.36s; }
#products.is-inview .product-showcase__item:nth-child(5) .product-showcase__card { transition-delay: 0.3s; }
#products.is-inview .product-showcase__item:nth-child(6) .product-showcase__card { transition-delay: 0.24s; }
#products.is-inview .product-showcase__item:nth-child(7) .product-showcase__card { transition-delay: 0.18s; }

#products.is-inview .product-showcase__nav { transition-delay: 0.32s; }
#products.is-inview .product-showcase__info { transition-delay: 0.42s; }
#products.is-inview .product-showcase__dots { transition-delay: 0.5s; }
#products.is-inview .product-showcase__view-all { transition-delay: 0.58s; }
#products.is-inview .product-showcase__glow { transition-delay: 0.12s; }
#products.is-inview .product-showcase__beam { transition-delay: 0.28s; }

#products.is-inview .product-showcase__info.is-switching {
  opacity: 0;
  transform: translateY(10px);
}

/* --- Why Choose TROJAN slot word --- */
.slot-word {
  display: inline-flex;
  align-items: center;
  vertical-align: baseline;
  gap: 0.015em;
  margin-left: 0.12em;
  letter-spacing: 0;
}

.slot-char {
  display: inline-block;
  width: 0.82em;
  height: 1.2em;
  overflow: hidden;
  line-height: 1.2;
  text-align: center;
  position: relative;
}

.slot-char__track {
  display: flex;
  flex-direction: column;
  will-change: transform;
}

.slot-char__item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 1.2em;
  font-weight: 800;
}

.slot-char.is-spinning .slot-char__track {
  filter: blur(0.6px);
}

.slot-char.is-landed .slot-char__item--final {
  color: var(--secondary);
}

@media (prefers-reduced-motion: reduce) {
  .slot-char.is-spinning .slot-char__track {
    filter: none;
    transition: none;
  }
}

/* --- Industries liquid glass cards --- */
#industries .industries-glass-grid {
  gap: 22px;
}

#industries.section--light .industry-card,
#industries .industry-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  align-items: center;
  gap: 20px;
  padding: 26px 24px;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 26px;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 16px 40px rgba(4, 12, 28, 0.28);
  transition: background 0.3s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

#industries .industry-card::before,
#industries .industry-card::after {
  display: none;
}

#industries.section--light .industry-card:hover,
#industries .industry-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 16px 40px rgba(4, 12, 28, 0.28);
}

#industries .industry-card__shine {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
  pointer-events: none;
  z-index: 4;
}

#industries .industry-card__shine::before,
#industries .industry-card__shine::after {
  content: '';
  position: absolute;
  top: -50%;
  left: 0;
  height: 200%;
  transform: translateX(-180%) skewX(-20deg);
  opacity: 0;
  mix-blend-mode: screen;
}

#industries .industry-card__shine::before {
  width: 85%;
  background: linear-gradient(
    100deg,
    transparent 10%,
    rgba(255, 255, 255, 0.12) 35%,
    rgba(255, 255, 255, 0.45) 50%,
    rgba(255, 255, 255, 0.12) 65%,
    transparent 90%
  );
}

#industries .industry-card__shine::after {
  width: 42%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255, 255, 255, 0.35) 38%,
    rgba(255, 255, 255, 0.95) 50%,
    rgba(255, 255, 255, 0.35) 62%,
    transparent 100%
  );
}

#industries .industry-card:hover .industry-card__shine::before {
  animation: industryGlassShineSoft 0.7s ease-out;
}

#industries .industry-card:hover .industry-card__shine::after {
  animation: industryGlassShineCore 0.7s ease-out;
}

@keyframes industryGlassShineSoft {
  0% {
    opacity: 0;
    transform: translateX(-180%) skewX(-20deg);
  }
  18% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(220%) skewX(-20deg);
  }
}

@keyframes industryGlassShineCore {
  0% {
    opacity: 0;
    transform: translateX(-200%) skewX(-20deg);
  }
  22% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(280%) skewX(-20deg);
  }
}

#industries .industry-card__icon,
#industries .industry-card__body {
  position: relative;
  z-index: 2;
}

#industries .industry-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    inset 0 -1px 1px rgba(0, 0, 0, 0.18);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

#industries .industry-card__icon svg {
  width: 24px;
  height: 24px;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.25));
}

#industries .industry-card:hover .industry-card__icon {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  transform: none;
}

#industries.section--light .industry-card h4,
#industries .industry-card h4 {
  color: #fff;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.28);
}

#industries.section--light .industry-card p,
#industries .industry-card p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
}

.liquid-glass-svg {
  display: none;
}

@media (max-width: 768px) {
  #industries .industry-card {
    padding: 22px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #industries .industry-card:hover .industry-card__shine::before,
  #industries .industry-card:hover .industry-card__shine::after {
    animation: none;
  }
}

/* --- About: Our Story visual --- */
.story-section {
  overflow: hidden;
}

.story-visual {
  position: relative;
  padding: 36px 28px 44px 12px;
}

.story-visual__shapes {
  position: absolute;
  width: 128%;
  max-width: 560px;
  height: auto;
  left: -14%;
  top: 50%;
  transform: translateY(-50%);
  color: var(--secondary);
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
}

.story-visual__plate {
  position: absolute;
  inset: 28px 16px 20px 36px;
  background: var(--gradient-primary);
  border-radius: 20px;
  transform: rotate(-4.5deg);
  z-index: 1;
}

.story-visual__frame {
  position: relative;
  z-index: 2;
  border-radius: 18px;
  transform: rotate(1.6deg);
  box-shadow: 0 22px 48px rgba(11, 29, 54, 0.18);
  border: 4px solid #fff;
}

.story-visual__badge {
  position: absolute;
  left: -8px;
  bottom: 18px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 12px 18px 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(11, 29, 54, 0.14);
  transform: rotate(-3deg);
}

.story-visual__badge span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary);
}

.story-visual__badge strong {
  font-size: 1.65rem;
  line-height: 1;
  color: var(--primary);
  letter-spacing: -0.03em;
}

.story-copy .section-label {
  margin-bottom: 14px;
}

.story-copy h2 {
  max-width: 18ch;
}

.story-mark {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

.story-mark__stroke {
  position: absolute;
  left: -4%;
  bottom: 0.02em;
  width: 108%;
  height: 0.38em;
  overflow: visible;
  pointer-events: none;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.story-mark__stroke path {
  fill: var(--secondary);
  stroke: none;
}

.story-section.is-marked .story-mark__stroke {
  clip-path: inset(0 0 0 0);
}

@media (prefers-reduced-motion: reduce) {
  .story-mark__stroke {
    clip-path: inset(0 0 0 0);
    transition: none;
  }
}

@media (max-width: 768px) {
  .story-visual {
    padding: 24px 12px 32px;
  }

  .story-visual__shapes {
    width: 120%;
    left: -8%;
    opacity: 0.18;
  }

  .story-visual__plate {
    inset: 22px 20px 18px 28px;
    transform: rotate(-3deg);
  }

  .story-visual__frame {
    transform: none;
  }

  .story-visual__badge {
    left: 12px;
    bottom: 8px;
    transform: rotate(-2deg);
  }

  .story-copy h2 {
    max-width: none;
  }
}

/* --- Core Values hover list --- */
.values-section {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7, 18, 34, 0.82) 0%, rgba(11, 29, 54, 0.72) 45%, rgba(11, 29, 54, 0.86) 100%),
    url('../src/bg-values.png') center / cover no-repeat;
  background-color: #0B1D36;
}

.values-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.3fr);
  gap: 72px 88px;
  align-items: start;
}

.values-intro {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  max-width: 420px;
  padding: 12px 8px 20px 0;
}

.values-intro .section-label {
  margin-bottom: 28px;
}

.values-intro h2 {
  margin-bottom: 28px;
  max-width: 12ch;
  line-height: 1.2;
}

.values-intro > p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 28px;
  line-height: 1.8;
}

.values-intro__hint {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.18);
  line-height: 1.7;
}

.values-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.values-item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: 16px 20px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  cursor: pointer;
  outline: none;
}

.values-item:focus-visible {
  box-shadow: inset 0 0 0 2px rgba(90, 163, 232, 0.55);
}

.values-item__num {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.42);
  padding-top: 0.55em;
  line-height: 1;
  transition: color 0.3s ease;
}

.values-item__content {
  min-width: 0;
}

.values-item__title {
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.25;
  transition: color 0.3s ease;
}

.values-item__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.values-item__panel > p {
  overflow: hidden;
  margin: 0;
  padding-top: 0;
  max-width: 46ch;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.62);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.45s ease, padding-top 0.45s ease;
}

.values-item__rule {
  width: 18px;
  height: 1.5px;
  margin-top: 0.85em;
  background: rgba(255, 255, 255, 0.35);
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s ease;
}

.values-item:hover .values-item__title,
.values-item.is-open .values-item__title,
.values-item:focus-visible .values-item__title {
  color: #8EC4F0;
}

.values-item:hover .values-item__num,
.values-item.is-open .values-item__num,
.values-item:focus-visible .values-item__num {
  color: rgba(142, 196, 240, 0.85);
}

.values-item:hover .values-item__panel,
.values-item.is-open .values-item__panel,
.values-item:focus-visible .values-item__panel {
  grid-template-rows: 1fr;
}

.values-item:hover .values-item__panel > p,
.values-item.is-open .values-item__panel > p,
.values-item:focus-visible .values-item__panel > p {
  opacity: 1;
  transform: translateY(0);
  padding-top: 14px;
}

.values-item:hover .values-item__rule,
.values-item.is-open .values-item__rule,
.values-item:focus-visible .values-item__rule {
  width: 52px;
  background: #8EC4F0;
}

@media (hover: hover) and (pointer: fine) {
  .values-item.is-open:not(:hover):not(:focus-visible) .values-item__title {
    color: rgba(255, 255, 255, 0.88);
  }

  .values-item.is-open:not(:hover):not(:focus-visible) .values-item__num {
    color: rgba(255, 255, 255, 0.42);
  }

  .values-item.is-open:not(:hover):not(:focus-visible) .values-item__panel {
    grid-template-rows: 0fr;
  }

  .values-item.is-open:not(:hover):not(:focus-visible) .values-item__panel > p {
    opacity: 0;
    transform: translateY(6px);
    padding-top: 0;
  }

  .values-item.is-open:not(:hover):not(:focus-visible) .values-item__rule {
    width: 18px;
    background: rgba(255, 255, 255, 0.35);
  }
}

@media (max-width: 900px) {
  .values-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .values-intro {
    position: static;
    max-width: none;
    padding: 8px 0 12px;
  }

  .values-intro .section-label {
    margin-bottom: 22px;
  }

  .values-intro h2 {
    max-width: none;
    margin-bottom: 22px;
  }

  .values-intro > p {
    margin-bottom: 22px;
  }
}

@media (max-width: 640px) {
  .values-item {
    grid-template-columns: 40px minmax(0, 1fr) auto;
    gap: 12px 14px;
    padding: 22px 0;
  }

  .values-item__title {
    font-size: 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .values-item__panel,
  .values-item__panel > p,
  .values-item__rule,
  .values-item__title,
  .values-item__num {
    transition: none;
  }
}

/* --- Quality Control (Manufacturing) --- */
.quality-section {
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 0% 0%, rgba(26, 86, 196, 0.07), transparent 55%),
    radial-gradient(ellipse 55% 45% at 100% 100%, rgba(90, 163, 232, 0.08), transparent 50%),
    var(--bg-white);
}

.quality-layout {
  display: flex;
  flex-direction: column;
  gap: clamp(36px, 5vw, 56px);
}

.quality-head {
  text-align: center;
  max-width: none;
  margin: 0 auto;
  width: 100%;
}

.quality-head .section-label {
  margin-bottom: 16px;
}

.quality-head h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.8vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.quality-head > p {
  margin: 18px auto 0;
  max-width: none;
  width: 100%;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-body);
  text-align: center;
}

.quality-body {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
}

.quality-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(11, 29, 54, 0.1);
}

.quality-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(11, 29, 54, 0.08);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--text-dark);
}

.quality-list__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  margin-top: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(26, 86, 196, 0.1);
  color: #1A56C4;
}

.quality-list__icon svg {
  width: 14px;
  height: 14px;
}

.quality-certs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(26, 86, 196, 0.12);
  box-shadow: 0 16px 40px rgba(11, 29, 54, 0.06);
}

.quality-cert {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 20px 14px 18px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(26, 86, 196, 0.1);
  box-shadow: 0 8px 20px rgba(11, 29, 54, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.quality-cert:hover {
  transform: translateY(-3px);
  border-color: rgba(26, 86, 196, 0.22);
  box-shadow: 0 14px 32px rgba(11, 29, 54, 0.1);
}

.quality-cert__mark {
  width: 100%;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}

.quality-cert__mark img {
  width: 100%;
  height: 100%;
  max-width: 132px;
  object-fit: contain;
  display: block;
}

.quality-cert__body h3 {
  margin: 0 0 4px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
}

.quality-cert__body p {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .quality-body {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 640px) {
  .quality-head h2 {
    font-size: clamp(1.05rem, 4.6vw, 1.5rem);
  }

  .quality-certs {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px;
  }

  .quality-cert {
    flex-direction: row;
    text-align: left;
    align-items: center;
    padding: 14px 16px;
    gap: 16px;
  }

  .quality-cert__mark {
    width: 72px;
    height: 64px;
    flex-shrink: 0;
  }

  .quality-cert__mark img {
    max-width: 72px;
  }

  .quality-list li {
    font-size: 0.875rem;
  }
}

/* --- Industries page: alternating horizontal reveal --- */
.industry-reveal {
  overflow-x: clip;
}

.industry-reveal.js-ready .split__image,
.industry-reveal.js-ready .split__content {
  will-change: transform, opacity;
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.industry-reveal.js-ready .split__content {
  transition-delay: 0.12s;
}

.industry-reveal.js-ready.industry-reveal--from-right:not(.is-inview) .split__image,
.industry-reveal.js-ready.industry-reveal--from-right:not(.is-inview) .split__content {
  opacity: 0;
  transform: translate3d(64px, 0, 0);
}

.industry-reveal.js-ready.industry-reveal--from-left:not(.is-inview) .split__image,
.industry-reveal.js-ready.industry-reveal--from-left:not(.is-inview) .split__content {
  opacity: 0;
  transform: translate3d(-64px, 0, 0);
}

.industry-reveal.js-ready.is-inview .split__image,
.industry-reveal.js-ready.is-inview .split__content {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (max-width: 768px) {
  .industry-reveal.js-ready.industry-reveal--from-right:not(.is-inview) .split__image,
  .industry-reveal.js-ready.industry-reveal--from-right:not(.is-inview) .split__content {
    transform: translate3d(36px, 0, 0);
  }

  .industry-reveal.js-ready.industry-reveal--from-left:not(.is-inview) .split__image,
  .industry-reveal.js-ready.industry-reveal--from-left:not(.is-inview) .split__content {
    transform: translate3d(-36px, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .industry-reveal.js-ready .split__image,
  .industry-reveal.js-ready .split__content {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}


/* --- Form catalog (Business Forms) --- */
.form-catalog {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.form-catalog__item {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 18px;
  box-shadow: var(--shadow-sm);
}

.section--light .form-catalog__item {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text-body);
}

/* Override .section--light h4/p so catalog cards stay readable */
.section--light .form-catalog__item h4,
.section--light .form-catalog__item .form-catalog__note,
.section--light .form-catalog__item p {
  color: inherit;
}

.section--light .form-catalog__item h4 {
  color: var(--text-dark);
}

.section--light .form-catalog__item .form-catalog__note,
.section--light .form-catalog__item p {
  color: var(--text-muted);
}

.section--light .form-catalog__item .form-catalog__cta {
  color: var(--secondary);
}

.section--light .form-catalog__item .tag {
  background: rgba(26, 86, 196, 0.1);
  color: var(--secondary);
}

.form-catalog__item-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.form-catalog__item h4 {
  font-size: 1rem;
  margin: 0;
  color: var(--text-dark);
}

.form-catalog__note {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-muted);
}

/* Spec tables on dark sections need a light panel */
.section--light .spec-table {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.section--light .spec-table th,
.section--light .spec-table td {
  color: var(--text-body);
}

.section--light .spec-table th {
  color: var(--text-dark);
  background: #EEF3F8;
}

.bir-callout {
  text-align: center;
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(26, 86, 196, 0.1), rgba(61, 139, 219, 0.08));
  border: 1px solid rgba(26, 86, 196, 0.18);
}

.bir-callout__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 12px;
}

.bir-callout h2 {
  margin-bottom: 12px;
}

.bir-callout p {
  max-width: 720px;
  margin: 0 auto 24px;
  color: var(--text-muted);
}

/* BIR section — intro + glass family cards */
#bir-forms .section-header {
  margin-bottom: 40px;
}

#bir-forms .bir-forms__cta {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

#bir-forms .bir-forms__cta .btn--primary {
  box-shadow: 0 8px 24px rgba(4, 12, 28, 0.35);
}

.form-family-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.form-family-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 14px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 14px 36px rgba(4, 12, 28, 0.26);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  text-decoration: none;
  color: #fff;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.25s ease, border-color 0.3s ease;
}

.form-family-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-3px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    0 18px 42px rgba(4, 12, 28, 0.32);
  color: #fff;
}

.form-family-card__media {
  width: 100%;
  height: 148px;
  margin-bottom: 4px;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.form-family-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.form-family-card:hover .form-family-card__media img {
  transform: scale(1.04);
}

.form-family-card__label {
  padding: 0 8px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9BC7F0;
}

.form-family-card__title {
  margin: 0;
  padding: 0 8px;
  font-size: 1.125rem;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
}

.form-family-card__text {
  margin: 0;
  padding: 0 8px;
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}

.form-family-card__cta {
  margin-top: 4px;
  padding: 0 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #B8D8F5;
}

/* Beat .section--light h3/p forcing wrong contrast */
#bir-forms .form-family-card,
#bir-forms .form-family-card:hover,
.section--light .form-family-card,
.section--light .form-family-card:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.section--light .form-family-card:hover {
  background: rgba(255, 255, 255, 0.12);
}

#bir-forms .form-family-card h3,
#bir-forms .form-family-card .form-family-card__title,
.section--light .form-family-card h3,
.section--light .form-family-card .form-family-card__title {
  color: #fff;
}

#bir-forms .form-family-card p,
#bir-forms .form-family-card .form-family-card__text,
.section--light .form-family-card p,
.section--light .form-family-card .form-family-card__text {
  color: rgba(255, 255, 255, 0.78);
}

#bir-forms .form-family-card .form-family-card__label,
.section--light .form-family-card .form-family-card__label {
  color: #9BC7F0;
}

#bir-forms .form-family-card .form-family-card__cta,
.section--light .form-family-card .form-family-card__cta {
  color: #B8D8F5;
}

@media (max-width: 1024px) {
  .form-family-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .bir-callout { padding: 28px 20px; }
  .form-family-grid { grid-template-columns: 1fr; }
  .form-family-card__media { height: 160px; }
}

.product-card--category {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.product-card--category .btn {
  pointer-events: none;
}

@media (max-width: 1024px) {
  .form-catalog { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .form-catalog { grid-template-columns: 1fr; }
  .bir-callout { padding: 28px 20px; }
}


.form-catalog__item--link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.form-catalog__item--link:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(26, 86, 196, 0.35);
  color: inherit;
}

.form-catalog__media {
  width: 100%;
  height: 140px;
  margin-bottom: 14px;
  border-radius: 10px;
  overflow: hidden;
  background: #EEF3F8;
}

.form-catalog__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.form-catalog__cta {
  margin-top: 10px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--secondary);
}

/* --- Customization section (products page) --- */
.customize-panel {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 28px;
  padding: 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 16px 40px rgba(4, 12, 28, 0.28);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.customize-panel__media {
  border-radius: 18px;
  overflow: hidden;
  min-height: 280px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.customize-panel__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  max-height: 360px;
  object-fit: cover;
}

.customize-panel__content {
  padding: 8px 12px 8px 4px;
}

#customization .customize-panel__content .section-label {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

#customization .customize-panel__content h2 {
  color: #fff;
  margin-bottom: 14px;
}

#customization .customize-panel__content > p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

#customization .customize-panel__content .check-list li {
  color: rgba(255, 255, 255, 0.9);
}

#customization .customize-panel__content .check-list li svg {
  color: #5AA3E8;
}

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

.customize-card {
  padding: 24px 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 12px 28px rgba(4, 12, 28, 0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.customize-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.32);
  transform: translateY(-2px);
}

.customize-card__title {
  margin: 0 0 8px;
  font-size: 1.0625rem;
  color: #fff;
}

.customize-card__text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}

#customization .customize-card h3,
#customization .customize-card p,
.section--light .customize-card h3,
.section--light .customize-card p {
  color: inherit;
}

#customization .customize-card__title,
.section--light .customize-card__title {
  color: #fff;
}

#customization .customize-card__text,
.section--light .customize-card__text {
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 1024px) {
  .customize-panel {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .customize-panel__content {
    padding: 4px 8px 8px;
  }

  .customize-panel__content .check-list {
    text-align: left;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .customize-panel__content .btn-group {
    justify-content: center;
  }

  .customize-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .customize-panel {
    padding: 16px;
  }

  .customize-panel__media img {
    min-height: 200px;
    max-height: 240px;
  }

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

