:root {
  --navy: #082b45;
  --blue: #0d5d93;
  --blue-2: #114f7d;
  --yellow: #f4b21b;
  --ink: #12283d;
  --muted: #657689;
  --line: #dce6ef;
  --soft: #f7fafc;
  --soft-blue: #edf5fa;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(8, 43, 69, 0.12);
  --radius: 8px;
  font-family: Inter, "Segoe UI", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-size: 15px;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

p,
h1,
h2,
h3 {
  margin-top: 0;
}

p {
  color: var(--muted);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 1000;
  padding: 8px 12px;
  background: var(--yellow);
  color: var(--navy);
}

.skip-link:focus {
  left: 8px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(8, 43, 69, 0.08);
}

.top-line {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 7px clamp(18px, 4vw, 64px);
  background: var(--navy);
  color: #dcebf6;
  font-size: 12px;
}

.top-line a {
  color: var(--white);
}

.nav-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 0 clamp(18px, 4vw, 64px);
}

.brand img {
  width: 166px;
  height: auto;
}

.site-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  color: #22384d;
}

.site-menu > a,
.nav-products > a,
.text-link {
  padding: 24px 0;
}

.site-menu a:hover,
.text-link:hover {
  color: var(--blue);
}

.nav-products {
  position: relative;
}

.mega-menu {
  position: absolute;
  left: -24px;
  top: 68px;
  width: 320px;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.18s ease;
}

.mini-menu {
  width: 210px;
}

.mega-menu a {
  display: block;
  padding: 11px 12px;
  border-radius: 6px;
}

.mega-menu a:hover {
  background: var(--soft);
}

.nav-products:hover .mega-menu,
.nav-products:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.menu-toggle {
  display: none;
  width: 76px;
  min-height: 40px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  border-radius: 6px;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0;
}

.btn-primary {
  background: var(--yellow);
  color: var(--navy);
}

.btn-primary:hover {
  background: #f7c14d;
}

.btn-light {
  background: var(--white);
  color: var(--navy);
}

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

.hero {
  position: relative;
  min-height: min(760px, 78vh);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 43, 69, 0.86), rgba(8, 43, 69, 0.48), rgba(8, 43, 69, 0.12));
}

.hero-content {
  position: relative;
  width: min(780px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding: 64px 0 92px;
  color: var(--white);
}

.eyebrow {
  display: block;
  color: var(--yellow);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 12px;
}

.hero-eyebrow {
  display: inline-block;
  max-width: min(100%, 760px);
  padding: 8px 12px;
  border-left: 5px solid var(--yellow);
  background: rgba(6, 31, 51, 0.38);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
  text-transform: none;
  font-size: clamp(13px, 1.15vw, 16px);
  line-height: 1.25;
  letter-spacing: 0.01em;
  overflow-wrap: anywhere;
}

.hero h1,
.page-hero h1,
.product-hero h1 {
  margin: 12px 0 18px;
  color: inherit;
  font-size: clamp(32px, 4.1vw, 54px);
  line-height: 1.04;
  letter-spacing: 0;
}

.hero p {
  max-width: 690px;
  color: #e9f2f8;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.home-hero {
  position: relative;
  padding: 20px clamp(18px, 4vw, 64px) 0;
  background:
    radial-gradient(circle at 82% 8%, rgba(244, 178, 27, 0.14), transparent 27%),
    radial-gradient(circle at 16% 4%, rgba(28, 119, 177, 0.26), transparent 33%),
    linear-gradient(180deg, #123552 0%, #1d628b 49%, #ffffff 49%, #ffffff 100%);
}

.hero-stage {
  position: relative;
  min-height: 388px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0 0 10px 10px;
  background:
    linear-gradient(135deg, #0a2b45 0%, #105277 100%);
  box-shadow:
    0 26px 70px rgba(8, 43, 69, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.hero-stage::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  z-index: 4;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--yellow) 18%, rgba(244, 178, 27, 0.5) 46%, transparent 100%);
  opacity: 0.9;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 0.8s ease, transform 4.5s ease;
}

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

/* Left-side darkening only, for headline legibility - no white haze layer
   so the photo keeps its natural colors. */
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(5, 22, 36, 0.55) 0%, rgba(8, 34, 55, 0.3) 42%, rgba(5, 22, 36, 0) 70%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  display: none;
  background:
    linear-gradient(115deg, transparent 0 44%, rgba(244, 178, 27, 0.16) 44.2%, transparent 44.6% 100%),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.22), transparent 80%);
}

.hero-accent {
  position: absolute;
  right: 6%;
  top: 12%;
  z-index: 1;
  width: min(38vw, 480px);
  height: min(38vw, 480px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 62%);
  opacity: 0;
  transform: translateX(26%);
}

.hero-shell {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  width: min(1220px, calc(100% - 72px));
  min-height: 388px;
  margin: 0 auto;
  padding: 30px 0 66px;
  color: var(--white);
}

.hero-copy h1 {
  max-width: 760px;
  margin: 12px 0 12px;
  color: var(--white);
  font-size: clamp(32px, 3.55vw, 48px);
  line-height: 1.04;
  letter-spacing: 0;
  text-shadow: 0 2px 8px rgba(4, 19, 32, 0.36), 0 12px 30px rgba(0, 0, 0, 0.24);
}

.hero-copy p {
  max-width: 670px;
  color: #f5f9fc;
  font-size: clamp(14px, 1.05vw, 16px);
  text-shadow: 0 2px 7px rgba(4, 19, 32, 0.42), 0 8px 18px rgba(0, 0, 0, 0.2);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 840px;
  margin-top: 20px;
}

.hero-stats div {
  position: relative;
  overflow: hidden;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background:
    linear-gradient(180deg, rgba(9, 31, 45, 0.44), rgba(9, 31, 45, 0.24));
  backdrop-filter: blur(8px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
}

.hero-stats div::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--yellow);
  opacity: 0.9;
}

.hero-stats strong {
  display: block;
  color: var(--yellow);
  font-size: clamp(23px, 1.75vw, 29px);
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 8px;
  color: #dcebf6;
  font-size: 11px;
}

.hero-tech-panel {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(6, 31, 51, 0.72);
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

.hero-tech-panel span {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-tech-panel h2 {
  margin: 10px 0 10px;
  color: var(--white);
  font-size: 28px;
}

.hero-tech-panel p,
.hero-tech-panel li {
  color: #dcebf6;
}

.hero-tech-panel ol {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 18px;
}

.hero-dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(720px, calc(100% - 72px));
  transform: translateX(-50%);
}

.hero-dots button {
  min-height: 36px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(5, 20, 34, 0.34);
  color: #dcebf6;
  text-align: left;
  font: inherit;
  font-size: 12px;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: 0.18s ease;
}

.hero-dots button.is-active {
  border-color: var(--yellow);
  background: rgba(244, 178, 27, 0.2);
  color: var(--white);
  box-shadow: inset 0 -2px 0 var(--yellow);
}

.hero-dots span {
  margin-right: 10px;
  color: var(--yellow);
  font-weight: 900;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-band div {
  padding: 24px clamp(18px, 3vw, 42px);
  border-right: 1px solid var(--line);
}

.trust-band strong {
  display: block;
  color: var(--navy);
  font-size: 19px;
}

.trust-band span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: clamp(20px, 2.6vw, 36px) clamp(18px, 4vw, 64px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 16px;
}

.section-heading h2,
.split-section h2,
.downloads-strip h2,
.project-preview h2 {
  font-size: clamp(23px, 1.95vw, 30px);
  line-height: 1.12;
  color: var(--navy);
  letter-spacing: 0;
}

.section-heading p {
  max-width: 720px;
  font-size: 13.5px;
  line-height: 1.65;
}

.family-grid,
.advantage-grid,
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

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

.family-card,
.product-card,
.news-card,
.quote-panel,
.download-main,
.download-group {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

.family-media {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: var(--soft-blue);
}

.family-card div,
.product-copy,
.news-card {
  padding: 18px;
}

.family-card span,
.product-copy span,
.news-card span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.family-card h3,
.product-card h3,
.news-card h2 {
  margin: 8px 0 10px;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.2;
}

.family-card p,
.product-copy p,
.news-card p {
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1.58;
}

.family-card ul {
  padding-left: 18px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.news-category {
  padding-top: clamp(34px, 4.4vw, 58px);
  padding-bottom: clamp(34px, 4.4vw, 58px);
}

.news-type-section {
  padding-top: clamp(28px, 3.6vw, 44px);
  padding-bottom: clamp(18px, 2.8vw, 30px);
}

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

.news-type-card {
  display: grid;
  gap: 10px;
  min-height: 190px;
  padding: 26px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--yellow);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, #ffffff 0%, #f4f8fb 100%);
  box-shadow: 0 16px 42px rgba(8, 43, 69, 0.08);
}

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

.news-type-card span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.news-type-card h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(20px, 1.75vw, 26px);
  line-height: 1.12;
}

.news-type-card p {
  margin: 0;
  max-width: 620px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.62;
}

.news-category.alt {
  background: var(--soft);
}

.news-category .section-heading {
  display: grid;
  gap: 6px;
  margin-bottom: 20px;
}

.solution-section {
  padding-top: clamp(34px, 4vw, 50px);
  padding-bottom: clamp(30px, 4vw, 46px);
  background:
    linear-gradient(180deg, #ffffff 0%, #f5f8fb 100%);
}

.solution-showcase {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 18px;
}

.solution-card {
  position: relative;
  display: grid;
  grid-column: span 2;
  min-height: 300px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 45px rgba(8, 43, 69, 0.08);
}

.solution-card.is-featured {
  grid-column: span 5;
  min-height: 360px;
}

.solution-image {
  display: block;
  min-height: 160px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: var(--soft-blue);
}

.solution-card.is-featured .solution-image {
  min-height: 220px;
}

.solution-copy {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 18px;
}

.solution-copy span,
.project-scene-body span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.solution-copy h3,
.project-scene-body h3 {
  margin: 0;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.15;
}

.solution-copy p,
.project-scene-body p {
  margin: 0;
}

.solution-copy ul {
  display: grid;
  gap: 7px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 13px;
}

.solution-copy li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--yellow);
  transform: translateY(-1px);
}

.capability-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.44fr) minmax(0, 0.56fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: stretch;
  padding-top: clamp(28px, 3.4vw, 44px);
  padding-bottom: clamp(28px, 3.4vw, 44px);
  background: var(--white);
}

.capability-media {
  min-height: 390px;
  border-radius: var(--radius);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: var(--shadow);
}

.capability-copy {
  display: grid;
  align-content: center;
  gap: 18px;
}

.capability-copy h2 {
  max-width: 760px;
  color: var(--navy);
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1.08;
}

.capability-copy p {
  max-width: 760px;
  font-size: 15px;
}

.capability-stats,
.capability-grid,
.selector-grid,
.rfq-inputs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.capability-stats div,
.capability-grid div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
}

.capability-stats strong {
  display: block;
  color: var(--yellow);
  font-size: 25px;
  line-height: 1;
}

.capability-stats span {
  display: block;
  margin-top: 7px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
}

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

.capability-grid h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 17px;
}

.capability-grid p {
  margin: 0;
  font-size: 13px;
}

.selector-section {
  padding-top: clamp(32px, 4vw, 52px);
  padding-bottom: clamp(36px, 4vw, 56px);
  background:
    linear-gradient(135deg, #061f33 0%, #082b45 55%, #0d5d93 100%);
}

.selector-section.compact {
  background: var(--soft);
}

.selector-section .section-heading h2,
.selector-section .section-heading p {
  color: var(--white);
}

.selector-section.compact .section-heading h2 {
  color: var(--navy);
}

.selector-section.compact .section-heading p {
  color: var(--muted);
}

.selector-card {
  position: relative;
  display: grid;
  gap: 10px;
  min-height: 116px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.selector-section.compact .selector-card {
  border-color: var(--line);
  background: var(--white);
  color: var(--navy);
}

.selector-card::before {
  content: "";
  width: 42px;
  height: 5px;
  background: var(--yellow);
}

.selector-card strong {
  font-size: 17px;
  line-height: 1.2;
}

.selector-card span {
  color: #dcebf6;
  font-size: 12.5px;
  line-height: 1.55;
}

.selector-section.compact .selector-card span {
  color: var(--muted);
}

.project-applications {
  padding-top: clamp(26px, 3vw, 40px);
  padding-bottom: clamp(40px, 4.5vw, 60px);
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
}

.project-applications .section-heading {
  max-width: none;
  margin-bottom: 20px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--yellow);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, #ffffff 0%, #f4f8fb 100%);
  box-shadow: 0 12px 34px rgba(8, 43, 69, 0.06);
}

.project-applications .section-heading span {
  color: var(--blue);
}

.project-applications .section-heading h2 {
  max-width: 700px;
  margin-top: 6px;
  font-size: clamp(23px, 1.95vw, 30px);
  line-height: 1.12;
}

.project-applications .section-heading p {
  max-width: 760px;
  font-size: 13.5px;
  line-height: 1.65;
}

.project-scene-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.project-scene-grid.compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.project-scene-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 46px rgba(8, 43, 69, 0.08);
}

.project-scene-image {
  display: block;
  aspect-ratio: 16 / 10;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: var(--soft-blue);
}

.project-scene-body {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px;
}

.project-scene-body dl {
  display: grid;
  gap: 10px;
  margin: 4px 0 0;
}

.project-scene-body dl div {
  padding: 12px;
  border-left: 3px solid var(--yellow);
  background: var(--soft);
}

.project-scene-body dt {
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.project-scene-body dd {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.scene-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.scene-tags em {
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  background: #f9fbfd;
  font-style: normal;
  font-size: 11px;
  font-weight: 800;
}

.project-case-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
}

.project-case-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.project-case-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 46px rgba(8, 43, 69, 0.08);
}

.project-case-image {
  display: block;
  aspect-ratio: 16 / 10;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: var(--soft-blue);
}

.project-case-copy {
  display: grid;
  align-content: start;
  gap: 9px;
  padding: 14px;
}

.project-case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.project-case-meta span {
  padding: 4px 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f8fbfd;
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.project-case-copy h3 {
  margin: 0;
  color: var(--navy);
  font-size: 15.5px;
  line-height: 1.18;
}

.project-case-copy p {
  margin: 0;
  display: -webkit-box;
  overflow: hidden;
  font-size: 12.2px;
  line-height: 1.48;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.project-case-copy dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin: 4px 0 0;
}

.project-case-copy dl div {
  min-width: 0;
  padding: 7px;
  border-left: 3px solid var(--yellow);
  background: var(--soft);
}

.project-case-copy dt {
  margin-bottom: 2px;
  color: var(--navy);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.project-case-copy dd {
  margin: 0;
  color: var(--muted);
  font-size: 10.5px;
  line-height: 1.28;
}

.project-case-copy .text-link {
  padding: 0;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.project-case-copy .scene-tags {
  gap: 5px;
}

.project-case-copy .scene-tags em {
  padding: 3px 6px;
  font-size: 10px;
}

.project-case-copy .scene-tags em:nth-child(n+3) {
  display: none;
}

.project-profile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.project-profile-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 46px rgba(8, 43, 69, 0.08);
}

.project-profile-image {
  display: block;
  aspect-ratio: 16 / 9;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: var(--soft-blue);
}

.project-profile-copy {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px;
}

.project-profile-copy span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.project-profile-copy h3 {
  margin: 0;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.18;
}

.project-profile-copy p {
  margin: 0;
  font-size: 13px;
}

.project-profile-copy dl {
  display: grid;
  gap: 8px;
  margin: 4px 0 0;
}

.project-profile-copy dl div {
  padding: 10px 12px;
  border-left: 3px solid var(--yellow);
  background: var(--soft);
}

.project-profile-copy dt {
  margin-bottom: 3px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.project-profile-copy dd {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.project-profile-copy .text-link {
  margin-top: 4px;
  padding: 0;
  color: var(--blue);
  font-weight: 900;
}

.section-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 28px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.section-cta p {
  max-width: 700px;
  margin: 0;
  color: var(--navy);
  font-weight: 800;
}

.why-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  background:
    linear-gradient(135deg, #061f33 0%, #082b45 56%, #0d5d93 100%);
  color: var(--white);
}

.why-band h2,
.why-band p {
  color: var(--white);
}

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

.why-grid div {
  min-height: 165px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.why-grid span {
  display: block;
  width: 42px;
  height: 5px;
  margin-bottom: 22px;
  background: var(--yellow);
}

.why-grid h3 {
  color: var(--white);
  font-size: 17px;
}

.why-grid p {
  margin: 0;
  color: #dcebf6;
  font-size: 13px;
}

.product-media {
  display: block;
  background-color: var(--soft-blue);
  width: 100%;
  aspect-ratio: 16 / 10;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  border-bottom: 1px solid var(--line);
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
  font-weight: 800;
  font-size: 12.5px;
  color: var(--blue);
}

.split-section,
.downloads-strip,
.project-preview,
.product-hero,
.page-hero.media,
.product-detail-grid,
.two-column,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.split-section > *,
.downloads-strip > *,
.project-preview > *,
.product-hero > *,
.page-hero.media > *,
.product-detail-grid > *,
.two-column > *,
.contact-grid > * {
  min-width: 0;
}

.split-section,
.downloads-strip,
.specs-band {
  background: var(--soft);
}

.process-list {
  display: grid;
  gap: 12px;
}

.process-list div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.process-list span {
  color: var(--yellow);
  font-weight: 900;
}

.process-list p {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.downloads-strip {
  grid-template-columns: minmax(0, 0.68fr) minmax(240px, 0.32fr);
  gap: clamp(20px, 3vw, 42px);
  padding-top: clamp(36px, 4vw, 54px);
  padding-bottom: clamp(36px, 4vw, 54px);
  background:
    linear-gradient(135deg, #061f33 0%, #082b45 58%, #0d5d93 100%);
  color: var(--white);
}

.downloads-strip h2,
.downloads-strip p {
  color: var(--white);
}

.downloads-strip h2 {
  max-width: 650px;
}

.downloads-strip p {
  max-width: 720px;
}

.downloads-strip .btn {
  justify-self: end;
  width: min(100%, 320px);
  min-height: 50px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

.project-image,
.page-hero.media img,
.product-hero img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  object-fit: cover;
}

.project-image {
  aspect-ratio: 16 / 9;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: var(--soft-blue);
}

.project-directory {
  background: #ffffff;
}

.project-workflow-band {
  display: grid;
  grid-template-columns: minmax(300px, 0.48fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  background:
    linear-gradient(135deg, #061f33 0%, #082b45 58%, #0d5d93 100%);
  color: var(--white);
}

.project-workflow-band h2,
.project-workflow-band p {
  color: var(--white);
}

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

.workflow-grid div {
  min-height: 150px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.workflow-grid strong {
  display: block;
  color: var(--yellow);
  font-size: 28px;
}

.workflow-grid span {
  display: block;
  margin-top: 18px;
  color: #e6f0f7;
  font-weight: 800;
}

.page-hero {
  padding: clamp(30px, 4.4vw, 54px) clamp(18px, 4vw, 64px);
  background:
    radial-gradient(circle at 85% 0%, rgba(13, 93, 147, 0.08), transparent 32%),
    linear-gradient(180deg, #f8fbfd 0%, #eef5fa 100%);
}

.page-hero.compact {
  max-width: none;
  padding-top: clamp(30px, 4.2vw, 48px);
  padding-bottom: clamp(30px, 4.2vw, 48px);
}

.page-hero.compact h1 {
  max-width: 1040px;
  font-size: clamp(28px, 2.65vw, 38px);
  line-height: 1.1;
}

.page-hero.compact p,
.page-hero.media p {
  max-width: 820px;
}

.page-hero h1,
.product-hero h1 {
  color: var(--navy);
}

.page-hero p,
.product-hero p {
  font-size: clamp(13.5px, 1vw, 15px);
  line-height: 1.62;
}

/* Keyword-bearing subheading under the product H1 (commercial search phrase). */
.product-hero .product-sub {
  margin: -8px 0 14px;
  color: var(--blue);
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 600;
  line-height: 1.4;
}

.product-hero {
  padding: clamp(30px, 4.4vw, 52px) clamp(18px, 4vw, 64px);
  background:
    radial-gradient(circle at 86% 4%, rgba(244, 178, 27, 0.1), transparent 30%),
    linear-gradient(180deg, #f8fbfd 0%, #eef5fa 100%);
}

.product-rfq-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr) auto;
  gap: clamp(18px, 3vw, 36px);
  align-items: center;
  padding-top: clamp(34px, 4vw, 52px);
  padding-bottom: clamp(34px, 4vw, 52px);
  background:
    linear-gradient(135deg, #061f33 0%, #082b45 58%, #0d5d93 100%);
  color: var(--white);
}

.product-rfq-strip h2,
.product-rfq-strip p {
  color: var(--white);
}

.product-rfq-strip h2 {
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.08;
}

.product-rfq-strip p {
  margin-bottom: 0;
  font-size: 14px;
}

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

.rfq-inputs span {
  min-height: 48px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: #e6f0f7;
  font-size: 13px;
  font-weight: 800;
}

.rfq-actions {
  display: grid;
  gap: 10px;
  min-width: 210px;
}

.product-rfq-strip .btn-light {
  background: rgba(255, 255, 255, 0.98);
}

.breadcrumb {
  color: var(--blue);
  font-weight: 800;
}

.table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  -webkit-overflow-scrolling: touch;
}

.spec-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: var(--white);
}

.spec-table th,
.spec-table td {
  padding: 11px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-size: 13px;
}

.spec-table th {
  width: 34%;
  color: var(--navy);
  background: #eef5fa;
}

.quote-panel {
  padding: 28px;
  background: var(--navy);
  color: var(--white);
}

.quote-panel h2,
.quote-panel p,
.quote-panel a,
.quote-panel li {
  color: var(--white);
}

.quote-panel ul {
  padding-left: 20px;
  color: var(--white);
}

.contact-social-block {
  display: grid;
  gap: 12px;
  margin: 20px 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.contact-social-block h3 {
  margin: 0;
  color: var(--white);
  font-size: 16px;
}

.social-account-note {
  margin: 0;
  font-size: 13px;
}

.advantage-grid div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.advantage-grid span {
  display: block;
  width: 42px;
  height: 5px;
  margin-bottom: 18px;
  background: var(--yellow);
  border-radius: 99px;
}

.advantage-grid h3 {
  color: var(--navy);
  margin-bottom: 8px;
  font-size: 16px;
}

.advantage-grid p {
  font-size: 13px;
  line-height: 1.58;
}

.two-column {
  background: var(--soft);
}

.two-column > div {
  min-width: 0;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}

.faq-list summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 800;
}

.input-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.input-grid span {
  display: block;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  font-size: 13px;
  font-weight: 700;
}

.filter-bar {
  margin: 0 0 20px;
}

.filter-bar input {
  width: min(100%, 560px);
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 14px;
}

.download-list {
  display: grid;
  grid-template-columns: 1.2fr repeat(2, 1fr);
  gap: 20px;
}

.download-main,
.download-group {
  padding: 24px;
}

.download-main {
  background: var(--navy);
  color: var(--white);
}

.download-main h2,
.download-main p {
  color: var(--white);
}

.download-group h2 {
  color: var(--navy);
  font-size: 20px;
}

.download-group a {
  display: block;
  padding: 9px 0;
  color: var(--blue);
  border-bottom: 1px solid var(--line);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
}

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

.form-note {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.article {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(32px, 4vw, 56px) 0;
}

.article-header {
  max-width: 820px;
}

.article h1 {
  max-width: 900px;
  color: var(--navy);
  font-size: clamp(28px, 3.35vw, 44px);
  line-height: 1.12;
  letter-spacing: 0;
}

/* Category badge above the title */
.article-tag {
  display: inline-block;
  margin-top: 14px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--soft-blue);
  color: var(--blue);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.article-intro {
  max-width: 760px;
  margin-top: 16px;
  color: #3f5563;
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.66;
  font-weight: 400;
}

/* Author byline + date + reading time row */
.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: #6b7d8b;
  font-size: 13px;
}

.article-byline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--navy);
  font-weight: 700;
}

.article-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.article-meta-sep {
  position: relative;
  padding-left: 16px;
}

.article-meta-sep::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #c3d0da;
  transform: translateY(-50%);
}

.article-figure,
.article-video {
  margin: 30px 0;
}

.article-figure.is-hero {
  margin: 34px 0 40px;
}

.article-figure img,
.article-video iframe,
.article-video video {
  display: block;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(8, 43, 69, 0.12);
}

.article-figure img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-video iframe,
.article-video video {
  aspect-ratio: 16 / 9;
  height: auto;
  border: 0;
  background: #061f33;
}

.article-figure figcaption,
.article-video figcaption {
  margin-top: 9px;
  color: #708291;
  font-size: 12px;
  line-height: 1.5;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(180px, 250px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
}

.article-aside {
  position: sticky;
  top: 98px;
  padding: 20px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--soft);
  color: #4c6476;
  font-size: 13px;
}

.article-aside strong {
  display: block;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.article-aside ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.article-aside a {
  color: #4c6476;
}

.article-content {
  max-width: 760px;
}

.article-section {
  scroll-margin-top: 108px;
}

.article-section h2,
.article-action h2,
.article-list-block h3 {
  color: var(--navy);
  margin-top: 40px;
  margin-bottom: 14px;
  font-size: clamp(21px, 2vw, 27px);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

/* Short accent bar above each section heading */
.article-section h2::before {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  margin-bottom: 14px;
  border-radius: 2px;
  background: var(--yellow);
}

.article-content p,
.article-content li {
  color: #37474f;
  font-size: 16.5px;
  line-height: 1.82;
}

.article-content p {
  margin-bottom: 18px;
}

/* Lead paragraph: the first paragraph of the article reads larger */
.article-content > .article-section:first-of-type p:first-of-type {
  font-size: 18px;
  line-height: 1.7;
  color: #2b3a44;
}

/* In-body links stand out */
.article-content a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(13, 93, 147, 0.3);
  text-underline-offset: 2px;
}

.article-content a:hover {
  text-decoration-color: var(--blue);
}

.article-callout {
  margin: 30px 0;
  padding: 18px 20px;
  border-left: 4px solid var(--yellow);
  background: #f4f8fb;
}

.article-callout strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
}

.article-callout p {
  margin: 0;
}

.article-quote {
  margin: 30px 0;
  padding: 4px 0 4px 24px;
  border-left: 4px solid var(--blue);
  color: var(--navy);
  font-size: 18px;
  line-height: 1.6;
}

.article-quote cite {
  display: block;
  margin-top: 10px;
  color: #708291;
  font-size: 12px;
  font-style: normal;
}

/* End-of-article CTA as a navy card */
.article-action {
  margin-top: 46px;
  padding: 30px 32px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy) 0%, #0e405f 100%);
  color: #fff;
}

.article-action h2 {
  margin-top: 0;
  color: #fff;
}

.article-action h2::before {
  background: var(--yellow);
}

.article-action p {
  margin: 8px 0 18px;
  color: #cfe0ec;
  font-size: 15px;
  line-height: 1.7;
}

/* Related pages block: heading accent + spacing */
.article-related {
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.site-footer {
  background: #061f33;
  color: var(--white);
  padding: 54px clamp(18px, 4vw, 64px) 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 30px;
}

.footer-logo {
  width: 180px;
  background: var(--white);
  padding: 8px;
  margin-bottom: 18px;
}

.site-footer h2 {
  font-size: 16px;
  color: var(--white);
}

.site-footer a {
  display: block;
  margin: 8px 0;
  color: #dcebf6;
}

.site-footer p {
  color: #b9cad9;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.social-links-contact {
  margin-top: 0;
}

.site-footer .social-link,
.quote-panel .social-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #ffffff;
  color: #34454f;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.site-footer .social-link:hover,
.quote-panel .social-link:hover {
  transform: translateY(-2px);
  background: var(--yellow);
  color: var(--navy);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
}

.social-logo {
  display: block;
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.social-link .social-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: #b9cad9;
  font-size: 13px;
}

[hidden] {
  display: none !important;
}

@media (max-width: 1050px) {
  .nav-wrap {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
  }

  .site-menu,
  .nav-actions {
    display: none;
  }

  .site-menu.is-open {
    display: grid;
    grid-column: 1 / -1;
    align-items: stretch;
    gap: 0;
    padding: 0 0 18px;
  }

  .site-menu > a,
  .nav-products > a {
    padding: 12px 0;
  }

  .mega-menu {
    position: static;
    width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    margin: 0 0 8px;
  }

  .trust-band,
  .family-grid,
  .solution-showcase,
  .project-scene-grid,
  .project-scene-grid.compact,
  .project-profile-grid,
  .project-case-grid,
  .news-type-grid,
  .capability-stats,
  .capability-grid,
  .selector-grid,
  .workflow-grid,
  .product-grid,
  .advantage-grid,
  .news-grid,
  .download-list,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-section,
  .downloads-strip,
  .project-preview,
  .product-hero,
  .page-hero.media,
  .product-detail-grid,
  .two-column,
  .contact-grid,
  .hero-shell,
  .why-band,
  .project-workflow-band,
  .capability-section,
  .product-rfq-strip {
    grid-template-columns: 1fr;
  }

  .solution-card.is-featured {
    grid-column: span 1;
    min-height: 340px;
  }

  .project-case-card,
  .project-case-card.is-featured {
    grid-column: span 1;
  }

  .solution-card {
    grid-column: span 1;
  }

  .hero-shell {
    width: min(900px, calc(100% - 40px));
    padding: 36px 0 96px;
  }

  .hero-tech-panel {
    max-width: 640px;
  }

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

@media (max-width: 680px) {
  .top-line {
    display: none;
  }

  .brand img {
    width: 142px;
  }

  .home-hero {
    padding: 0;
  }

  .hero-stage {
    min-height: 600px;
    border-radius: 0;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(5, 22, 36, 0.5) 0%, rgba(8, 34, 55, 0.24) 55%, rgba(5, 22, 36, 0.32) 100%);
  }

  .hero-shell {
    width: calc(100% - 36px);
    min-height: 600px;
    padding: 30px 0 38px;
  }

  .hero-copy h1 {
    font-size: 32px;
  }

  .hero-eyebrow {
    font-size: 14px;
  }

  .hero-copy,
  .hero-copy h1,
  .hero-copy p,
  .eyebrow {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-copy p {
    font-size: 15px;
  }

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

  .hero-actions .btn {
    justify-content: center;
    width: 100%;
  }

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

  .hero-tech-panel {
    padding: 20px;
  }

  .hero-dots {
    display: none;
  }

  .trust-band,
  .family-grid,
  .solution-showcase,
  .project-scene-grid,
  .project-scene-grid.compact,
  .project-profile-grid,
  .project-case-grid,
  .news-type-grid,
  .capability-stats,
  .capability-grid,
  .selector-grid,
  .rfq-inputs,
  .workflow-grid,
  .product-grid,
  .advantage-grid,
  .news-grid,
  .download-list,
  .footer-grid,
  .input-grid {
    grid-template-columns: 1fr;
  }

  .section-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .project-case-copy dl {
    grid-template-columns: 1fr;
  }

  .project-applications .section-heading {
    padding: 18px;
  }

  .downloads-strip .btn {
    justify-self: stretch;
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .hero h1,
  .page-hero h1,
  .product-hero h1 {
    font-size: 34px;
  }

  .article {
    width: calc(100% - 36px);
    padding: 44px 0 62px;
  }

  .article h1 {
    font-size: clamp(27px, 7.4vw, 35px);
    line-height: 1.1;
  }

  .article-intro {
    font-size: 16px;
  }

  .article-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .article-aside {
    position: static;
    padding: 16px 16px;
  }

  .article-action {
    padding: 24px 20px;
  }

  .article-section h2,
  .article-action h2,
  .article-list-block h3 {
    font-size: 21px;
  }

  .article-content p,
  .article-content li {
    font-size: 15.5px;
    line-height: 1.78;
  }

  .article-figure,
  .article-video {
    margin: 24px 0;
  }

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

  .spec-table {
    min-width: 540px;
  }
}

/* Family comparison table */
.compare-table {
  min-width: 860px;
}

.compare-table th[scope="col"] {
  width: auto;
  white-space: nowrap;
}

.compare-table th[scope="row"] {
  width: 220px;
  min-width: 180px;
  background: #eef5fa;
}

.compare-table th[scope="row"] a {
  color: var(--blue);
  font-weight: 800;
}

.compare-table td {
  min-width: 150px;
}

/* Knowledge-base guide links on product and category pages */
.guide-link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.guide-link-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.guide-link-card:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(8, 43, 69, 0.1);
}

.guide-link-card span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yellow-deep, #b97f0e);
}

.guide-link-card strong {
  color: var(--navy);
  font-size: 16px;
  line-height: 1.35;
}

.guide-link-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

/* Related pages block inside articles */
.related-links {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 22px;
}

.related-links li a {
  display: block;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm, 8px);
  background: var(--soft);
  color: var(--blue);
  font-weight: 700;
  font-size: 14px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.related-links li a:hover {
  border-color: var(--blue);
  background: var(--soft-blue);
}

/* Contact form status + honeypot */
.form-status {
  margin: 4px 0 0;
  padding: 12px 16px;
  border-radius: var(--radius-sm, 8px);
  background: #e8f6ec;
  border: 1px solid #bfe3c9;
  color: #185c2c;
  font-size: 14px;
  font-weight: 600;
}

.form-status.is-error {
  background: #fdeeee;
  border-color: #f0c4c4;
  color: #8f1f1f;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* WhatsApp floating button */
.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 10px 24px rgba(8, 43, 69, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wa-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.wa-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(8, 43, 69, 0.34);
}

@media (max-width: 900px) {
  .guide-link-grid {
    grid-template-columns: 1fr;
  }

  .related-links {
    grid-template-columns: 1fr;
  }

  .wa-float {
    right: 14px;
    bottom: 14px;
    width: 50px;
    height: 50px;
  }
}

/* ============ Big-brand visual upgrade (2026-07-03) ============ */

/* Scroll-reveal animation - .reveal is only ever added by JS, so no-JS
   users and crawlers always see fully visible content. */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  will-change: opacity, transform;
}

/* Transition lives on the .is-visible state (0-2-0 specificity) so it beats
   per-card hover transition rules; JS removes both classes afterwards so
   hover transitions return to normal. */
.reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* Hero: slower, larger Ken Burns drift + stat number styling */
.hero-slide {
  transform: scale(1.07);
  transition: opacity 0.9s ease, transform 8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.hero-stats strong,
.capability-stats strong {
  font-variant-numeric: tabular-nums;
}

/* Hero scroll-down indicator */
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 16px;
  z-index: 5;
  transform: translateX(-50%);
  width: 38px;
  height: 56px;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  border-radius: 20px;
  background: rgba(8, 43, 69, 0.18);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.hero-scroll span {
  position: absolute;
  left: 50%;
  top: 12px;
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(255, 255, 255, 0.9);
  border-bottom: 2px solid rgba(255, 255, 255, 0.9);
  transform: translateX(-50%) rotate(45deg);
  animation: hero-scroll-bounce 1.8s ease-in-out infinite;
}

.hero-scroll:hover {
  border-color: var(--yellow);
  background: rgba(8, 43, 69, 0.38);
}

@keyframes hero-scroll-bounce {
  0%, 100% { top: 12px; opacity: 1; }
  50% { top: 26px; opacity: 0.35; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-scroll span {
    animation: none;
  }
}

/* Bigger, tighter section headings (big-brand typography scale) */
.section-heading h2,
.split-section h2,
.downloads-strip h2,
.project-preview h2 {
  font-size: clamp(26px, 2.7vw, 38px);
  letter-spacing: -0.012em;
}

.section-heading p {
  font-size: 14.5px;
}

/* Card image hover zoom (solution / family / product / news) */
.solution-card {
  overflow: hidden;
}

.solution-image,
.family-media {
  transition: transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.solution-card:hover .solution-image,
.family-card:hover .family-media {
  transform: scale(1.045);
}

.product-card img {
  transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

.solution-card,
.product-card,
.family-card {
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.solution-card:hover,
.product-card:hover,
.family-card:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(8, 43, 69, 0.12);
}

/* News cards with image thumbnails */
.news-card {
  padding: 0;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.news-card:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(8, 43, 69, 0.12);
}

.news-media {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--soft-blue);
}

.news-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.news-card:hover .news-media img {
  transform: scale(1.05);
}

.news-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 18px;
}

.news-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.news-meta time {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.news-body h2 {
  font-size: 17px;
}

.news-more {
  margin-top: auto;
  padding-top: 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.news-more i {
  display: inline-block;
  font-style: normal;
  transition: transform 0.25s ease;
}

.news-card:hover .news-more i {
  transform: translateX(5px);
}

/* Homepage insights section */
.insights-section {
  background: var(--soft);
}

@media (max-width: 720px) {
  .hero-scroll {
    display: none;
  }
}

/* Back-to-top button (sits above the WhatsApp float) */
.back-top {
  position: fixed;
  right: 18px;
  bottom: 84px;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(8, 43, 69, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.back-top svg {
  width: 22px;
  height: 22px;
  fill: var(--navy);
}

.back-top:hover {
  background: var(--soft-blue);
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(8, 43, 69, 0.24);
}

.about-warehouse {
  margin-top: 8px;
}

@media (max-width: 900px) {
  .back-top {
    right: 14px;
    bottom: 76px;
    width: 40px;
    height: 40px;
  }
}

/* Language switcher (header) */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
}
.lang-switch a {
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  color: var(--muted);
  letter-spacing: 0.03em;
}
.lang-switch a.is-active {
  background: var(--navy);
  color: #fff;
}
.lang-switch a:hover:not(.is-active) {
  color: var(--blue);
}
@media (max-width: 900px) {
  .lang-switch { display: none; }
}
