:root {
  --bg: #f4f6f8;
  --surface: #ffffff;
  --surface-soft: #eef3f7;
  --surface-accent: #edf4ff;
  --text: #1f2f3f;
  --muted: #617181;
  --line: #dbe3ea;
  --line-strong: #c8d3de;
  --primary: #2f5fa6;
  --primary-deep: #244d89;
  --navy: #203244;
  --shadow: 0 12px 34px rgba(27, 40, 54, 0.08);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --container: min(1180px, calc(100vw - 28px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "IBM Plex Sans", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f8fafb 0%, #f2f5f7 100%);
}

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

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

button {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(219, 227, 234, 0.9);
  backdrop-filter: blur(14px);
}

.topbar-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 78px;
}

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

.brand-mark {
  width: 88px;
  height: 40px;
  flex: 0 0 auto;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong,
.site-nav a,
.button,
.eyebrow,
.section-kicker,
.capacity-pill,
.fact-number {
  font-family: "Barlow", sans-serif;
}

.brand-copy strong {
  font-size: 1.08rem;
  white-space: nowrap;
}

.brand-copy small {
  white-space: nowrap;
}

.brand-copy small {
  color: var(--muted);
}

.site-nav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 2px;
  white-space: nowrap;
}

.site-nav a {
  padding: 8px 10px;
  color: var(--muted);
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
}

.site-nav a.is-active,
.site-nav a:hover {
  background: #edf2f6;
  color: var(--navy);
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(28, 39, 49, 0.12);
}

.button-primary {
  background: var(--primary);
  color: #fff;
}

.button-primary:hover {
  background: var(--primary-deep);
}

.button-outline {
  background: #fff;
  color: var(--navy);
  border-color: var(--line-strong);
}

.button-dark {
  background: var(--navy);
  color: #fff;
}

.button-social {
  gap: 0;
  background: transparent;
  color: var(--primary);
  border-color: transparent;
  box-shadow: none;
  min-width: 32px;
  width: 32px;
  min-height: 32px;
  height: 32px;
  padding: 0;
}

.button-social:hover {
  background: transparent;
  box-shadow: none;
  transform: none;
}

.button-social .social-label {
  display: none;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
}

.social-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.nav-toggle {
  display: none;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: #fff;
}

.page-hero,
.hero {
  padding: 52px 0 28px;
}

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

.hero-grid-strong {
  align-items: stretch;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--primary);
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.section-heading h2,
.cta-panel h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  max-width: 12ch;
}

.hero-text,
.section-heading p,
.info-card p,
.video-card p,
.product-copy li,
.product-copy p,
.mount-copy p,
.contact-card p,
.contact-card a,
.price-note p,
.price-card p,
.page-hero p,
.list-card li,
.cta-panel p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text,
.page-hero p {
  margin: 18px 0 0;
  max-width: 60ch;
  font-size: 1.05rem;
}

.hero-actions,
.page-actions,
.price-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-media,
.page-hero-media {
  display: grid;
  gap: 16px;
}

.hero-grid-strong .hero-copy,
.hero-grid-strong .hero-media {
  height: 100%;
}

.hero-support {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  max-width: 640px;
}

.hero-image-card,
.mini-media-card,
.trust-card,
.info-card,
.video-card,
.product-card,
.mount-card,
.gallery-card,
.price-card,
.contact-card,
.list-card,
.cta-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-image-card {
  display: grid;
  place-items: center;
  min-height: 540px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #4a5368 0%, #5a6378 100%);
  overflow: hidden;
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 26px;
}

.hero-image-card-alt img {
  max-width: 88%;
  max-height: 92%;
}

.hero-image-card-tall {
  position: relative;
  min-height: 0;
  height: 100%;
  align-content: stretch;
}

.hero-image-card-tall img {
  object-position: center 30px;
  padding: 56px 26px 152px;
}

.hero-reference-card {
  position: relative;
  min-height: 320px;
  background: var(--surface-soft);
}

.hero-reference-card img {
  width: 100%;
  height: 320px;
  padding: 0;
  object-fit: cover;
  filter: none;
}

.page-hero .hero-image-card {
  min-height: 0;
  height: 460px;
  max-height: 460px;
  align-self: start;
}

.page-hero .hero-image-card img {
  max-width: 92%;
  max-height: 92%;
  padding: 10px;
}

.hero-badges {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-badges-static {
  position: static;
  margin-top: 22px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.9);
  color: var(--navy);
  font-family: "Barlow", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-visual-copy {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 2;
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 24px rgba(24, 34, 44, 0.14);
}

.hero-visual-copy strong {
  color: var(--navy);
  font-family: "Barlow", sans-serif;
  font-size: 1.5rem;
}

.hero-visual-copy span {
  color: var(--muted);
  line-height: 1.6;
}

.hero-stack {
  display: grid;
  gap: 14px;
}

.mini-media-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: var(--radius-lg);
}

.mini-media-card img {
  width: 100%;
  height: 104px;
  object-fit: contain;
  background: var(--surface-soft);
  border-radius: 12px;
}

.mini-media-card-wide {
  grid-template-columns: 140px 1fr;
}

.mini-media-card-wide img {
  height: 110px;
  object-fit: cover;
}

.compact-actions {
  margin-top: 14px;
}

.mini-media-card strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 1.05rem;
}

.trust-strip {
  padding-bottom: 18px;
}

.trust-grid,
.fact-grid,
.video-grid,
.product-grid,
.price-grid,
.contact-grid,
.gallery-grid {
  display: grid;
  gap: 16px;
}

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

.trust-card {
  padding: 20px;
  border-radius: var(--radius-lg);
}

.trust-card strong {
  display: block;
  color: var(--navy);
  font-size: 1.78rem;
}

.trust-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 1.14rem;
  font-weight: 600;
  line-height: 1.35;
}

.trust-card .trust-emphasis {
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.section {
  padding: 34px 0;
}

.section.alt {
  background: #edf3f7;
  border-top: 1px solid #e2e8ee;
  border-bottom: 1px solid #e2e8ee;
}

.section-heading {
  max-width: 74ch;
  margin-bottom: 24px;
}

.section-heading h2,
.cta-panel h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

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

.info-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

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

.fit-contain {
  object-fit: contain !important;
  background: var(--surface-soft);
  padding: 20px;
}

.info-copy,
.video-copy,
.product-copy,
.mount-copy,
.gallery-copy,
.contact-card,
.price-card,
.list-card,
.cta-panel {
  padding: 20px;
}

.fact-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
  border-radius: 50%;
  background: #f6efe7;
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 700;
}

.info-card h3,
.video-card h3,
.product-copy h3,
.mount-copy h3,
.gallery-copy h3,
.contact-card h3,
.price-card h3,
.list-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-family: "Barlow", sans-serif;
  font-size: 1.42rem;
}

.benefit-copy {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.benefit-copy strong {
  color: var(--navy);
}

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

.video-grid-large .video-frame {
  aspect-ratio: 16 / 10;
}

.video-card,
.product-card,
.mount-card,
.gallery-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #dce5ec;
}

.video-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(25, 37, 50, 0.06), rgba(25, 37, 50, 0.22));
}

.play-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary);
  font-size: 1.1rem;
}

.play-badge-center {
  top: 50%;
  left: 50%;
  right: auto;
  bottom: auto;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  font-size: 1.3rem;
}

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

.product-family-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(220px, 360px) minmax(0, 1fr);
  align-items: center;
}

.product-family-card img {
  height: 100%;
  min-height: 300px;
}

.product-family-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.product-family-grid div {
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
}

.product-family-grid strong,
.product-family-grid span {
  display: block;
}

.product-family-grid span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.96rem;
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  background: var(--surface-soft);
  padding: 18px;
}

.module-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.module-stack img {
  height: 220px;
}

.product-copy ul,
.list-card ul {
  margin: 0;
  padding-left: 18px;
}

.product-copy .capacity-pill,
.price-card .capacity-pill {
  margin-bottom: 14px;
}

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

.price-card {
  display: grid;
  gap: 12px;
  border-radius: var(--radius-lg);
}

.price-card p,
.product-copy p {
  margin: 0;
}

.capacity-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, #2e7de0 0%, #165fc6 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.18);
}

.price-card strong {
  color: var(--primary);
  font-family: "Barlow", sans-serif;
  font-size: 2.4rem;
  line-height: 1;
}

.price-card strong small {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.price-card .button {
  width: 100%;
}

.price-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 20px 22px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

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

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

.mount-card img,
.gallery-card img {
  width: 100%;
  height: 360px;
  object-fit: contain;
  background: var(--surface-soft);
  padding: 16px;
  cursor: zoom-in;
}

.list-card {
  border-radius: var(--radius-lg);
}

.list-card ul {
  color: var(--muted);
  line-height: 1.8;
}

.cta-panel {
  border-radius: var(--radius-xl);
}

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

.contact-card {
  border-radius: var(--radius-lg);
}

.contact-card a {
  display: block;
  margin-top: 10px;
}

.contact-card .phone-link {
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 14px;
  background: var(--surface-accent);
  color: var(--primary-deep);
  font-family: "Barlow", sans-serif;
  font-size: 1.22rem;
  font-weight: 700;
  line-height: 1.2;
  border: 1px solid rgba(47, 95, 166, 0.16);
}

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

.reference-chip {
  padding: 18px 20px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  color: var(--navy);
  font-weight: 600;
  line-height: 1.6;
}

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

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

.reference-highlight-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #1f3550 0%, #29496d 100%);
  box-shadow: var(--shadow);
  color: #fff;
}

.reference-highlight-card h3 {
  margin: 10px 0 8px;
  font-family: "Barlow", sans-serif;
  font-size: 1.7rem;
}

.reference-highlight-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.7;
}

.reference-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-family: "Barlow", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

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

.step-card {
  padding: 20px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.step-card h3 {
  margin: 0;
  color: var(--navy);
  font-family: "Barlow", sans-serif;
  font-size: 1.2rem;
  line-height: 1.35;
}

.step-link {
  color: inherit;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.step-link:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
  box-shadow: 0 14px 28px rgba(27, 40, 54, 0.12);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(13, 18, 25, 0.82);
}

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

.lightbox-dialog {
  position: relative;
  max-width: min(1200px, 96vw);
  max-height: 92vh;
}

.lightbox-dialog img {
  display: block;
  max-width: 100%;
  max-height: 92vh;
  border-radius: 20px;
  background: #fff;
}

.video-lightbox .lightbox-dialog {
  width: min(1100px, 96vw);
}

.video-lightbox-frame {
  width: min(1100px, 96vw);
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 20px;
  background: #000;
}

.lightbox-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  font-size: 1.6rem;
  cursor: pointer;
  box-shadow: 0 10px 18px rgba(21, 29, 37, 0.2);
}

@media (max-width: 1120px) {
  .topbar-inner {
    grid-template-columns: auto auto;
    padding: 12px 0;
  }

  .site-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .hero-grid,
  .page-hero-grid,
  .price-note {
    grid-template-columns: 1fr;
  }

  .trust-grid,
  .fact-grid,
  .product-grid,
  .price-grid,
  .contact-grid,
  .gallery-grid,
  .gallery-grid-large,
  .steps-grid,
  .reference-grid,
  .reference-grid-long,
  .reference-highlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .topbar-inner {
    grid-template-columns: auto 1fr auto auto;
    gap: 10px;
    min-height: 66px;
  }

  .nav-toggle {
    display: inline-flex;
    order: 4;
    justify-self: end;
  }

  .site-nav {
    display: none;
    order: 5;
    grid-column: 1 / -1;
    flex-direction: column;
    width: 100%;
    gap: 4px;
    padding-bottom: 6px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .topbar-actions {
    display: flex;
    order: 3;
    margin-left: 0;
    justify-self: end;
  }

  .topbar-actions .button-outline,
  .topbar-actions .button-primary {
    display: none;
  }

  .button-social {
    min-width: 32px;
    width: 32px;
    min-height: 32px;
    height: 32px;
    padding: 0;
  }

  .social-icon {
    width: 21px;
    height: 21px;
  }

  .social-icon svg {
    width: 21px;
    height: 21px;
  }

  .brand-copy strong {
    font-size: 0.92rem;
  }

  .brand-copy small {
    font-size: 0.78rem;
  }

  .brand-mark {
    width: 74px;
    height: 34px;
  }

  .nav-toggle {
    padding: 8px 12px;
    font-size: 0.92rem;
  }

  .hero,
  .page-hero {
    padding-top: 28px;
  }

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

  .hero h1,
  .page-hero h1 {
    max-width: none;
    font-size: clamp(2.3rem, 11vw, 3.5rem);
  }

  .product-family-card {
    grid-template-columns: 1fr;
  }

  .product-family-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .page-actions,
  .price-actions,
  .contact-actions,
  .price-note {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-image-card {
    min-height: 420px;
  }

  .hero-image-card-tall {
    min-height: 580px;
  }

  .mini-media-card {
    grid-template-columns: 96px 1fr;
  }

  .trust-grid,
  .fact-grid,
  .video-grid,
  .product-grid,
  .price-grid,
  .contact-grid,
  .gallery-grid,
  .gallery-grid-large,
  .steps-grid,
  .reference-grid,
  .reference-grid-long,
  .reference-highlight-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card img,
  .mount-card img {
    height: 320px;
  }
}

/* ============================================================
   English site additions: breadcrumb, honesty note, comparison
   table, RFQ form, industries, FAQ, footer
   ============================================================ */

/* Breadcrumb */
.breadcrumb {
  padding: 16px 0 0;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: "Barlow", sans-serif;
  font-size: 0.9rem;
  color: var(--muted);
}

.breadcrumb li + li::before {
  content: "›";
  margin-right: 6px;
  color: var(--line-strong);
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb [aria-current="page"] {
  color: var(--navy);
  font-weight: 600;
}

/* Honesty / not-legal-for-trade note */
.honesty-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 22px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: #fff6e8;
  border: 1px solid #f2d9a8;
  color: #7a5410;
  line-height: 1.6;
  font-size: 0.98rem;
}

.honesty-note strong {
  color: #6a460b;
}

.honesty-note .honesty-icon {
  flex: 0 0 auto;
  font-size: 1.1rem;
  line-height: 1.4;
}

.honesty-note-inline {
  margin-top: 10px;
  padding: 10px 14px;
  font-size: 0.92rem;
}

/* Differentiator trio */
.value-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.value-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.value-card .value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 14px;
  border-radius: 14px;
  background: var(--surface-accent);
  color: var(--primary);
  font-size: 1.4rem;
}

.value-card h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-family: "Barlow", sans-serif;
  font-size: 1.3rem;
}

.value-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

/* Comparison / spec tables */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--surface);
}

table.compare,
table.spec {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}

table.compare th,
table.compare td,
table.spec th,
table.spec td {
  padding: 15px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  line-height: 1.6;
}

table.compare thead th,
table.spec thead th {
  background: var(--navy);
  color: #fff;
  font-family: "Barlow", sans-serif;
  font-size: 1rem;
}

table.compare tbody th {
  color: var(--navy);
  font-weight: 700;
  background: var(--surface-soft);
  width: 30%;
}

table.compare td {
  color: var(--muted);
}

table.compare .col-highlight {
  background: var(--surface-accent);
  color: var(--text);
  font-weight: 600;
}

table.spec tbody th {
  width: 42%;
  color: var(--navy);
  font-weight: 600;
  background: var(--surface-soft);
}

table.spec td {
  color: var(--muted);
}

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

/* Industries */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.industry-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

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

.industry-card .industry-copy {
  padding: 20px;
}

.industry-card h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-family: "Barlow", sans-serif;
  font-size: 1.32rem;
}

.industry-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 14px;
  max-width: 860px;
}

.faq-item {
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  color: var(--navy);
  font-family: "Barlow", sans-serif;
  font-size: 1.16rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

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

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  font-size: 1.5rem;
  color: var(--primary);
  transition: transform 160ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item .faq-answer {
  padding: 0 22px 20px;
  color: var(--muted);
  line-height: 1.75;
}

.faq-item .faq-answer p {
  margin: 0 0 10px;
}

.faq-item .faq-answer p:last-child {
  margin-bottom: 0;
}

/* RFQ / contact form */
.form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 28px;
  align-items: start;
}

.form-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 6px;
  margin-bottom: 16px;
}

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

.form-row label {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.96rem;
}

.form-row .req {
  color: #c0392b;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--text);
  font: inherit;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(47, 95, 166, 0.14);
}

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

.form-hp {
  position: absolute;
  left: -5000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 4px 0 18px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.form-consent input {
  margin-top: 3px;
}

.form-submit {
  width: 100%;
}

.form-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.6;
}

.form-status {
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.95rem;
  display: none;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  background: #e7f6ec;
  border: 1px solid #b7e0c4;
  color: #1f6b3a;
}

.form-status.is-error {
  background: #fdecec;
  border: 1px solid #f3c1c1;
  color: #9b2c2c;
}

.form-aside {
  display: grid;
  gap: 16px;
}

.aside-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.aside-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-family: "Barlow", sans-serif;
  font-size: 1.24rem;
}

.aside-card p,
.aside-card a {
  color: var(--muted);
  line-height: 1.7;
}

.aside-card .phone-link {
  display: inline-block;
  margin-top: 8px;
  padding: 10px 14px;
  border-radius: 14px;
  background: var(--surface-accent);
  color: var(--primary-deep);
  font-family: "Barlow", sans-serif;
  font-size: 1.16rem;
  font-weight: 700;
  border: 1px solid rgba(47, 95, 166, 0.16);
}

/* Prose (about, 404, blog) */
.prose {
  max-width: 72ch;
}

.prose p,
.prose li {
  color: var(--muted);
  line-height: 1.8;
}

.prose h2 {
  color: var(--navy);
  font-family: "Barlow", sans-serif;
  margin: 32px 0 12px;
  font-size: 1.7rem;
}

/* Footer */
.site-footer {
  margin-top: 24px;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.82);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 28px;
  padding: 48px 0 32px;
}

.footer-brand strong {
  display: block;
  color: #fff;
  font-family: "Barlow", sans-serif;
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.footer-brand p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
  max-width: 34ch;
}

.footer-col h4 {
  margin: 0 0 14px;
  color: #fff;
  font-family: "Barlow", sans-serif;
  font-size: 1.02rem;
  letter-spacing: 0.02em;
}

.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.footer-col a,
.footer-col address {
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
  line-height: 1.6;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0;
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
}

.footer-bottom-inner a {
  color: rgba(255, 255, 255, 0.72);
}

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

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

@media (max-width: 820px) {
  .value-grid,
  .industry-grid,
  .form-row-2 {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
