:root {
  --ln-color-primary-900: #0F1722;
  --ln-color-primary-800: #101A28;
  --ln-color-primary-700: #243446;
  --ln-color-accent-600: #2A67B1;
  --ln-color-accent-500: #3A82F7;
  --ln-color-accent-100: #EAF2FF;
  --ln-color-bg: #F5F7FA;
  --ln-color-surface: #FFFFFF;
  --ln-color-surface-alt: #F7F9FB;
  --ln-color-border: #D9E2EA;
  --ln-color-text: #1D2735;
  --ln-color-text-muted: #5F6B7A;
  --ln-color-success: #1F8F5F;
  --ln-color-warning: #B06B00;
  --ln-color-danger: #C2352A;
  --ln-shadow-sm: 0 6px 18px rgba(10, 26, 43, 0.06);
  --ln-shadow-md: 0 12px 28px rgba(10, 26, 43, 0.10);
  --ln-radius-sm: 8px;
  --ln-radius-md: 16px;

  --color-brand: var(--ln-color-accent-600);
  --color-brand-hover: #245B9B;
  --color-brand-active: #1F4E86;
  --color-accent-soft: #5E88BD;
  --color-brand-rgb: 42, 103, 177;
  --color-accent-soft-rgb: 94, 136, 189;
  --color-bg-dark: var(--ln-color-primary-800);
  --color-bg-dark-deeper: var(--ln-color-primary-900);
  --color-bg-dark-2: var(--ln-color-primary-700);
  --color-bg-light: var(--ln-color-bg);
  --color-bg-soft: var(--ln-color-surface-alt);
  --color-surface: var(--ln-color-surface);
  --color-text-heading: var(--ln-color-text);
  --color-text-body: var(--ln-color-text-muted);
  --color-text-muted: #8A95A3;
  --color-text-inverse: #FFFFFF;
  --color-text-inverse-muted: #C8D2DE;
  --color-border: var(--ln-color-border);
  --color-border-soft: #E8EEF4;
  --color-border-strong: #B8CCE6;

  --ink: var(--color-text-heading);
  --ink-soft: var(--color-bg-dark-2);
  --muted: var(--color-text-body);
  --line: var(--color-border);
  --panel: var(--color-surface);
  --panel-soft: var(--color-bg-soft);
  --dark: var(--color-bg-dark);
  --dark-2: var(--color-bg-dark-deeper);
  --graphite: var(--color-bg-dark-2);
  --steel: #9aa2ad;
  --steel-2: var(--color-border);
  --brand-blue: var(--color-brand);
  --brand-blue-rgb: var(--color-brand-rgb);
  --brand-blue-hover: var(--color-brand-hover);
  --brand-blue-dark: var(--color-brand-active);
  --brand-blue-light: var(--color-accent-soft);
  --brand-blue-light-rgb: var(--color-accent-soft-rgb);
  --brand-blue-tint: var(--color-bg-light);
  --brand-blue-border: var(--color-border-strong);
  --accent-muted: var(--color-accent-soft);
  --accent-soft: var(--color-border-soft);
  --blue: var(--brand-blue);
  --blue-2: var(--brand-blue-light);
  --cyan: #9DB1C7;
  --warning: var(--brand-blue-light);
  --product-surface: linear-gradient(135deg, #FAFBFC 0%, var(--color-border-soft) 100%);
  --shadow: 0 22px 54px rgba(13, 21, 34, 0.13);
  --radius: 8px;
  --motion-fast: 260ms;
  --motion-medium: 560ms;
  --motion-slow: 720ms;
  --ease-out: cubic-bezier(0.2, 0.72, 0.24, 1);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  color: var(--ink);
  background: var(--panel-soft);
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
}

body {
  color: var(--ink);
  font-size: 16px;
  background:
    linear-gradient(180deg, rgba(247, 249, 252, 0.94), rgba(255, 255, 255, 0) 520px),
    linear-gradient(90deg, rgba(var(--brand-blue-rgb), 0.01) 1px, transparent 1px),
    linear-gradient(rgba(36, 54, 74, 0.016) 1px, transparent 1px),
    #ffffff;
  background-size: auto, 48px 48px, 48px 48px, auto;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: 100%;
  margin: 0 auto;
  padding: 14px clamp(18px, 4vw, 58px);
  color: #eaf4ff;
  background:
    linear-gradient(90deg, rgba(16, 26, 40, 0.98), rgba(15, 23, 34, 0.97)),
    rgba(16, 26, 40, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  background:
    linear-gradient(90deg, rgba(16, 26, 40, 0.99), rgba(15, 23, 34, 0.98)),
    rgba(16, 26, 40, 0.98);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 42px;
  padding: 5px;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

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

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  color: #ffffff;
  font-size: 16px;
  letter-spacing: 0.08em;
}

.brand small {
  margin-top: 3px;
  color: #9db0c4;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: #b8c8d9;
  font-size: 14px;
  font-weight: 650;
}

.site-nav a {
  position: relative;
  padding: 12px 0;
  white-space: nowrap;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 100%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--color-brand-hover), rgba(var(--color-accent-soft-rgb), 0.7));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #ffffff;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-quote {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 750;
  background: linear-gradient(135deg, var(--color-brand), var(--color-brand-active));
  border: 1px solid rgba(var(--color-accent-soft-rgb), 0.32);
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(var(--color-brand-rgb), 0.22);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.header-quote:hover,
.header-quote:focus-visible {
  background: linear-gradient(135deg, var(--color-brand-hover), var(--color-brand-active));
  box-shadow: 0 16px 30px rgba(var(--color-brand-rgb), 0.28);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: #ffffff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 1px;
}

.section-shell {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: clamp(72px, 7vw, 104px) 0;
}

.anchor-target {
  position: relative;
  top: -88px;
  display: block;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

#advantages {
  padding-top: 72px;
}

.section-muted {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(226, 233, 241, 0.38)),
    linear-gradient(135deg, rgba(36, 54, 74, 0.018) 0 1px, transparent 1px 14px),
    #f8fafc;
}

.section-dark {
  color: #ffffff;
  background:
    linear-gradient(115deg, rgba(13, 21, 34, 0.98), rgba(36, 54, 74, 0.94)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 18px),
    var(--dark);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-dark .eyebrow {
  color: #AAB8C7;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: 64px;
  line-height: 1.05;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(36px, 3.5vw, 48px);
  line-height: 1.14;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 14px;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.section-dark p {
  color: #b8c8d9;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(100vh, 920px);
  display: flex;
  align-items: center;
  padding: clamp(92px, 9vw, 128px) 0 clamp(78px, 8vw, 112px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8, 14, 24, 0.9) 0%, rgba(13, 21, 34, 0.74) 40%, rgba(20, 31, 45, 0.34) 70%, rgba(13, 21, 34, 0.14) 100%),
    url("/banners/banner1.webp") center center / cover no-repeat,
    var(--dark);
}

.hero .section-shell {
  width: min(100% - 16vw, 1420px);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 14, 24, 0.84), rgba(22, 34, 49, 0.58) 42%, transparent 76%),
    radial-gradient(circle at 18% 42%, rgba(60, 82, 105, 0.14), transparent 36%),
    linear-gradient(180deg, rgba(8, 14, 24, 0.1), rgba(8, 14, 24, 0.3));
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 20% 24%, rgba(98, 120, 145, 0.1), transparent 22%);
  background-size: 64px 64px, 64px 64px, 100% 100%, 420px 100%;
  mask-image: linear-gradient(90deg, #000, rgba(0, 0, 0, 0.78) 56%, transparent 88%);
  animation: gridDrift 22s linear infinite;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(760px, 0.56fr) minmax(0, 0.44fr);
  align-items: center;
  gap: clamp(64px, 6vw, 88px);
}

.hero-copy {
  position: absolute;
  top: 50%;
  left: clamp(72px, 8vw, 140px);
  translate: 0 -50%;
  max-width: 880px;
  padding: clamp(8px, 1vw, 14px) 0;
}

.hero h1 {
  max-width: 880px;
  margin-bottom: 24px;
  color: #ffffff;
  font-size: clamp(44px, 4.2vw, 68px);
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
  white-space: normal;
}

.hero-lede {
  max-width: 700px;
  margin-bottom: 22px;
  font-size: clamp(17px, 1.28vw, 19px);
  color: #d8dde5;
}

.hero-capability-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 760px;
  margin: 0 0 30px;
}

.hero-capability-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: #eef3f8;
  font-size: 12px;
  font-weight: 820;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}


.hero-actions .btn-primary {
  min-height: 54px;
  padding-inline: 28px;
  box-shadow: 0 18px 42px rgba(var(--brand-blue-rgb), 0.34);
}

.hero-actions .btn-secondary {
  color: #dbe5ef;
  background: rgba(13, 21, 34, 0.24);
  border-color: rgba(216, 225, 234, 0.22);
  box-shadow: none;
}

.hero .eyebrow {
  margin-bottom: 18px;
  color: #B5C4D4;
  font-size: 12px;
}

.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy .hero-lede,
.hero-copy .hero-capability-tags,
.hero-copy .hero-actions,
.hero-product-card {
  opacity: 0;
  transform: translateY(14px);
  animation: fadeSlideUp var(--motion-medium) var(--ease-out) forwards;
}

.hero-copy h1 {
  animation-delay: 90ms;
}

.hero-copy .hero-lede {
  animation-delay: 180ms;
}

.hero-copy .hero-capability-tags {
  animation-delay: 270ms;
}

.hero-copy .hero-actions {
  animation-delay: 360ms;
}

.hero-product-card {
  animation-delay: 450ms;
}

.hero-actions,
.cta-actions,
.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  font-weight: 780;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition:
    border-color var(--motion-fast) ease,
    background var(--motion-fast) ease,
    color var(--motion-fast) ease,
    transform var(--motion-fast) ease,
    box-shadow var(--motion-fast) ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-hover));
  border-color: rgba(var(--brand-blue-light-rgb), 0.28);
  box-shadow: 0 14px 28px rgba(var(--brand-blue-rgb), 0.26);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(135deg, var(--brand-blue-hover), var(--brand-blue-dark));
  box-shadow: 0 18px 34px rgba(var(--brand-blue-rgb), 0.34);
}

.btn-secondary {
  color: #ffffff;
  background: rgba(13, 21, 34, 0.42);
  border-color: rgba(216, 225, 234, 0.34);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(170, 184, 199, 0.58);
  background: rgba(36, 54, 74, 0.68);
}

.section:not(.section-dark) .btn-secondary,
.product-card .btn-secondary,
.category-page-section .btn-secondary {
  color: var(--ink);
  background: #ffffff;
  border-color: var(--line);
  box-shadow: none;
}

.section:not(.section-dark) .btn-secondary:hover,
.section:not(.section-dark) .btn-secondary:focus-visible,
.product-card .btn-secondary:hover,
.product-card .btn-secondary:focus-visible,
.category-page-section .btn-secondary:hover,
.category-page-section .btn-secondary:focus-visible {
  color: var(--brand-blue);
  background: #ffffff;
  border-color: rgba(var(--brand-blue-rgb), 0.38);
  box-shadow: 0 12px 24px rgba(13, 21, 34, 0.08);
}

.btn-small {
  min-height: 40px;
  padding: 0 14px;
  font-size: 13px;
}

.contact-widget {
  position: fixed;
  top: 50%;
  right: 22px;
  z-index: 70;
  transform: translateY(-50%);
}

.contact-widget-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 16px 0 12px;
  color: #ffffff;
  cursor: pointer;
  background: linear-gradient(135deg, #101A28, var(--ink-soft));
  border: 1px solid rgba(216, 225, 234, 0.22);
  border-radius: 999px;
  box-shadow: 0 16px 36px rgba(13, 21, 34, 0.22);
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-widget-toggle:hover,
.contact-widget-toggle:focus-visible,
.contact-widget.is-open .contact-widget-toggle {
  background: linear-gradient(135deg, var(--dark), #1A2A3D);
  border-color: rgba(var(--brand-blue-rgb), 0.34);
  box-shadow: 0 20px 48px rgba(13, 21, 34, 0.28);
  transform: translateX(-2px);
}

.contact-widget-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand-blue), #2C527E);
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
}

.contact-widget-panel {
  position: absolute;
  top: 50%;
  right: calc(100% + 14px);
  width: min(560px, calc(100vw - 120px));
  max-height: min(760px, calc(100vh - 48px));
  padding: 18px;
  overflow: auto;
  background: linear-gradient(180deg, #ffffff, #F8FAFD);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 30px 90px rgba(10, 18, 32, 0.24);
  transform: translateY(-50%);
}

.contact-widget-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 4px 4px 16px;
  border-bottom: 1px solid var(--line);
}

.contact-widget-header span,
.contact-channel-copy span {
  display: block;
  color: var(--accent-muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-widget-header strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.15;
}

.contact-widget-close {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #334155;
  cursor: pointer;
  background: var(--panel-soft);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 26px;
  line-height: 1;
}

.contact-channel-grid {
  display: grid;
  gap: 14px;
  padding-top: 16px;
}

.contact-channel-card {
  display: grid;
  gap: 14px;
  min-width: 0;
  padding: 18px;
  background: #F8FAFD;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.contact-channel-rfq {
  background:
    radial-gradient(circle at 92% 18%, rgba(101, 125, 150, 0.08), transparent 34%),
    #ffffff;
  border-color: rgba(178, 194, 212, 0.34);
}

.contact-channel-copy h2 {
  margin: 6px 0 8px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.18;
}

.contact-channel-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.contact-channel-action {
  justify-self: start;
  min-height: 42px;
}

.contact-outline-action,
.contact-mobile-chat {
  color: var(--ink);
  background: #ffffff;
  border-color: var(--line);
  box-shadow: none;
}

.contact-outline-action:hover,
.contact-outline-action:focus-visible,
.contact-mobile-chat:hover,
.contact-mobile-chat:focus-visible {
  color: var(--brand-blue);
  background: #ffffff;
  border-color: rgba(var(--brand-blue-rgb), 0.38);
  box-shadow: 0 12px 24px rgba(10, 18, 32, 0.08);
}

.contact-whatsapp-desktop {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contact-person-card {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-width: 0;
  padding: 12px;
  background: #ffffff;
  border: 1px solid #e6ebf0;
  border-radius: 12px;
}

.contact-qr-button {
  display: block;
  padding: 0;
  cursor: zoom-in;
  background: #ffffff;
  border: 1px solid #edf0f4;
  border-radius: 9px;
}

.contact-qr-button img {
  display: block;
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 8px;
}

.contact-person-card strong,
.contact-person-card span,
.contact-person-card a {
  display: block;
}

.contact-person-card strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.22;
}

.contact-person-card span {
  margin: 4px 0 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
}

.contact-person-card a {
  color: var(--brand-blue);
  font-size: 13px;
  font-weight: 850;
}

.contact-whatsapp-mobile {
  display: none;
}

.contact-qr-lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(8, 10, 13, 0.72);
}

.contact-qr-lightbox[hidden] {
  display: none !important;
}

.contact-qr-lightbox img {
  width: min(420px, 84vw);
  height: auto;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

.contact-qr-lightbox-close {
  position: fixed;
  top: 22px;
  right: 22px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #ffffff;
  cursor: pointer;
  background: rgba(17, 24, 39, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  font-size: 28px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.hero-proof span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px 0 34px;
  color: #d9e9f7;
  font-size: 12px;
  font-weight: 780;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.045));
  border: 1px solid rgba(185, 223, 255, 0.16);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-proof span::before {
  position: absolute;
  left: 14px;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(var(--brand-blue-rgb), 0.12);
}

.hero-visual {
  min-width: 0;
  justify-self: stretch;
}

.visual-frame {
  position: relative;
  overflow: visible;
  width: min(860px, 100%);
  min-height: clamp(560px, 42vw, 640px);
  max-width: none;
  margin-left: auto;
  margin-right: -24px;
  background:
    radial-gradient(ellipse at 60% 48%, rgba(101, 125, 150, 0.12), transparent 36%),
    radial-gradient(ellipse at 74% 74%, rgba(255, 255, 255, 0.14), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0));
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.visual-frame::before {
  position: absolute;
  inset: 8% 1% 9% 9%;
  z-index: 1;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(175, 220, 255, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 0 18%, rgba(176, 196, 218, 0.09) 18% 18.24%, transparent 18.24% 100%),
    linear-gradient(0deg, transparent 0 68%, rgba(255, 255, 255, 0.08) 68% 68.24%, transparent 68.24% 100%);
  opacity: 0.55;
  mask-image: linear-gradient(135deg, transparent 0 8%, #000 18% 82%, transparent 94%);
}

.hero-product-scene {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-product-card {
  position: absolute;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  padding: 28px 16px 14px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.026)),
    rgba(9, 21, 35, 0.42);
  border: 1px solid rgba(174, 216, 250, 0.11);
  border-radius: 8px;
  box-shadow:
    0 24px 54px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.hero-product-card::before {
  position: absolute;
  inset: auto 8% -30% 8%;
  z-index: -1;
  height: 70%;
  content: "";
  background: radial-gradient(ellipse, rgba(101, 125, 150, 0.14), transparent 68%);
  pointer-events: none;
}

.hero-product-label {
  position: absolute;
  top: 14px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  color: #DDE7F1;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(7, 17, 31, 0.48);
  border: 1px solid rgba(176, 196, 218, 0.18);
  border-radius: 8px;
}

.hero-panel-card {
  top: 0;
  left: 0;
  z-index: 2;
  width: 60%;
  height: 360px;
}

.hero-mini-card {
  right: 0;
  bottom: 2%;
  z-index: 3;
  width: 58%;
  height: 340px;
}

.scene-product {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  object-fit: contain;
  object-position: center;
  user-select: none;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.45));
}

.scene-panel {
  width: 100%;
  height: 100%;
  margin: 10px auto 0;
}

.scene-mini {
  width: 108%;
  height: 100%;
  margin: 12px auto 0;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.48));
}

.visual-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.04), transparent 34%),
    linear-gradient(0deg, rgba(7, 17, 31, 0.22), transparent 52%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent 18%);
}

.advantage-strip {
  color: #ffffff;
  background:
    linear-gradient(90deg, var(--dark), var(--ink-soft) 48%, var(--dark)),
    var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.strip-grid span {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 66px;
  padding: 14px 20px 14px 34px;
  color: #c6d5e4;
  font-size: 13px;
  font-weight: 760;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.strip-grid span::before {
  position: absolute;
  left: 16px;
  width: 6px;
  height: 24px;
  content: "";
  background: linear-gradient(180deg, #5E748C, #AAB8C7);
  border-radius: 4px;
}

.strip-grid span:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.section-heading {
  max-width: 840px;
  margin-bottom: clamp(32px, 4vw, 50px);
}

.section-heading p {
  max-width: 760px;
  font-size: 16px;
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 44px;
  max-width: none;
}

.text-link,
.card-action {
  color: var(--brand-blue);
  font-weight: 800;
}

.text-link:hover,
.text-link:focus-visible,
.card-action:hover,
.card-action:focus-visible {
  color: var(--brand-blue-hover);
}

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

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

.category-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

#featured {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%),
    #ffffff;
}

#featured::before {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  width: min(48vw, 720px);
  height: 340px;
  content: "";
  background:
    linear-gradient(90deg, rgba(42, 103, 177, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(42, 103, 177, 0.04) 1px, transparent 1px),
    linear-gradient(135deg, rgba(16, 26, 40, 0.045), rgba(255, 255, 255, 0));
  background-size: 34px 34px, 34px 34px, auto;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 76%);
}

#featured .section-shell {
  position: relative;
  z-index: 1;
}

#featured .section-heading-row {
  align-items: flex-start;
  padding-bottom: 22px;
  border-bottom: 1px solid #dfe6ee;
}

#featured .text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  color: #253142;
  background: #ffffff;
  border: 1px solid #d9e2ea;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(10, 18, 32, 0.05);
}

#featured .text-link:hover,
#featured .text-link:focus-visible {
  color: var(--brand-blue);
  border-color: #b8cce6;
}

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

.product-grid .product-card,
.product-grid .product-card-featured {
  grid-column: auto;
  grid-row: auto;
}

.feature-card,
.category-card,
.product-card,
.application-card,
.stat-card,
.process-panel,
.inquiry-form {
  border-radius: var(--radius);
}

.feature-card,
.category-card,
.application-card,
.stat-card {
  position: relative;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow:
    0 12px 30px rgba(10, 18, 32, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition:
    border-color var(--motion-fast) ease,
    transform var(--motion-fast) ease,
    box-shadow var(--motion-fast) ease;
}

.feature-card::before,
.category-card::before,
.application-card::before,
.stat-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, #CBD6E2, #EEF2F6, transparent);
  opacity: 0.62;
  transition: background var(--motion-fast) ease, opacity var(--motion-fast) ease;
}

.feature-card:hover::before,
.category-card:hover::before,
.application-card:hover::before,
.stat-card:hover::before {
  background: linear-gradient(90deg, var(--brand-blue), rgba(var(--brand-blue-rgb), 0.28), transparent);
  opacity: 0.9;
}

.feature-card:hover,
.category-card:hover,
.application-card:hover,
.product-card:hover,
.panel-series-card:hover {
  border-color: #b8cce6;
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transform: translateY(-4px);
}

.feature-card,
.application-card {
  padding: 36px;
}

#advantages .feature-card {
  padding: 26px;
  box-shadow: 0 8px 20px rgba(10, 18, 32, 0.035);
}

#advantages .feature-card::before {
  opacity: 0.38;
}

#advantages .card-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
}

.quality-section {
  position: relative;
  isolation: isolate;
}

.quality-grid {
  gap: 18px;
}

.quality-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  min-height: 84px;
  padding: 22px 24px;
  background: linear-gradient(180deg, #ffffff, #f7f9fb);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(10, 18, 32, 0.055);
  transition:
    border-color var(--motion-fast) ease,
    transform var(--motion-fast) ease,
    box-shadow var(--motion-fast) ease,
    background var(--motion-fast) ease;
}

.quality-card span {
  width: 12px;
  height: 12px;
  background: #5E748C;
  border: 3px solid #E0E7EF;
  border-radius: 50%;
  transition:
    transform var(--motion-fast) ease,
    box-shadow var(--motion-fast) ease;
}

.quality-card strong {
  color: #253142;
  font-size: 15px;
  line-height: 1.38;
}

.quality-card:hover {
  border-color: rgba(var(--brand-blue-rgb), 0.3);
  background: linear-gradient(180deg, #ffffff, #f4f7fa);
  box-shadow: 0 18px 42px rgba(10, 18, 32, 0.09);
  transform: translateY(-3px);
}

.quality-card:hover span {
  box-shadow: 0 0 0 5px rgba(var(--brand-blue-rgb), 0.1);
  transform: scale(1.08);
}

.count-number {
  font-variant-numeric: tabular-nums;
}

.card-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  color: #4F6C8A;
  background:
    linear-gradient(145deg, #ffffff, #f3f4f6),
    #f6f7f9;
  border: 1px solid #e1e5ea;
  border-radius: 8px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 10px 22px rgba(10, 18, 32, 0.045);
}

.icon {
  width: 24px;
  height: 24px;
}

.category-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 292px;
  padding: 32px;
  cursor: pointer;
}

.category-card-primary {
  grid-column: span 1;
  min-height: 510px;
  padding: 34px;
}

.category-card-supporting {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  min-height: 188px;
  padding: 24px;
  background:
    linear-gradient(180deg, #ffffff, #f7fafc),
    var(--panel);
  box-shadow:
    0 10px 24px rgba(10, 18, 32, 0.045),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.category-card > * {
  position: relative;
  z-index: 1;
}

.category-card:hover h3,
.product-card:hover h3,
.panel-series-card:hover h3 {
  color: var(--brand-blue);
}

.category-visual {
  height: 178px;
  margin: -8px -8px 26px;
}

.category-card-primary .category-visual {
  order: -1;
  height: 292px;
  margin: -12px -12px 28px;
  background:
    radial-gradient(circle at 54% 48%, rgba(var(--brand-blue-rgb), 0.08), transparent 42%),
    var(--product-surface);
}

.category-card-supporting .category-visual {
  height: 136px;
  margin: 0;
  opacity: 0.78;
  background:
    var(--product-surface);
}

.category-card-primary .swap-image {
  padding: 8px;
}

.category-card-supporting .swap-image {
  padding: 20px;
  filter: saturate(0.82) contrast(0.98);
}

.category-position {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 14px;
  padding: 0 10px;
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(var(--brand-blue-rgb), 0.07);
  border: 1px solid rgba(var(--brand-blue-rgb), 0.18);
  border-radius: 8px;
}

.category-card-supporting .category-position {
  color: #5b6472;
  background: rgba(17, 24, 39, 0.045);
  border-color: rgba(17, 24, 39, 0.12);
}

.category-card::after {
  position: absolute;
  right: -32px;
  bottom: -34px;
  width: 116px;
  height: 116px;
  content: "";
  background:
    linear-gradient(90deg, rgba(var(--brand-blue-rgb), 0.08) 1px, transparent 1px),
    linear-gradient(rgba(17, 24, 39, 0.06) 1px, transparent 1px);
  background-size: 16px 16px;
  transform: rotate(10deg);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  color: #3F5065;
  font-size: 12px;
  font-weight: 740;
  background: linear-gradient(180deg, #ffffff, #F1F4F7);
  border: 1px solid #DDE4EB;
  border-radius: 8px;
}

.category-card .card-action {
  position: relative;
  z-index: 3;
  margin-top: 28px;
}

.category-card-supporting .card-action {
  grid-column: 3;
  align-self: center;
  margin-top: 0;
}

.comparison-section {
  background:
    linear-gradient(180deg, #ffffff 0%, var(--panel-soft) 100%),
    var(--panel-soft);
}

.comparison-table-wrap {
  overflow-x: auto;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow:
    0 18px 44px rgba(10, 18, 32, 0.08),
    inset 0 2px 0 #D7E0EA;
}

.comparison-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 20px 22px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #e8edf2;
}

.comparison-table thead th {
  color: #111827;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: #f5f7fa;
}

.comparison-table tbody th {
  width: 210px;
  color: #111827;
  font-size: 17px;
}

.comparison-table td {
  color: #41536a;
  font-size: 15px;
  line-height: 1.55;
}

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

.product-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  cursor: pointer;
  background: #ffffff;
  border: 1px solid #d9e2ea;
  box-shadow:
    0 12px 26px rgba(10, 18, 32, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition:
    border-color var(--motion-fast) ease,
    transform var(--motion-fast) ease,
    box-shadow var(--motion-fast) ease;
}

.product-card::before {
  position: absolute;
  inset: 0 0 auto;
  z-index: 1;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, #CDD8E4, #EEF2F6, transparent);
  opacity: 0.7;
  transition: background var(--motion-fast) ease, opacity var(--motion-fast) ease;
}

.product-card:hover::before {
  background: linear-gradient(90deg, var(--brand-blue), rgba(var(--brand-blue-rgb), 0.3), transparent);
  opacity: 0.9;
}

.product-card-emphasis {
  border-color: #d9e2ea;
  box-shadow:
    0 12px 26px rgba(10, 18, 32, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.product-card-featured {
  border-color: #d9e2ea;
}

.product-card-featured .product-media {
  height: 236px;
  min-height: 236px;
}

.product-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 10px;
  color: var(--brand-blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(var(--brand-blue-rgb), 0.08);
  border: 1px solid rgba(var(--brand-blue-rgb), 0.2);
  border-radius: 8px;
}

.product-media {
  position: relative;
  display: grid;
  place-items: center;
  height: 236px;
  min-height: 236px;
  overflow: hidden;
  background:
    var(--product-surface);
  background-size: auto, 28px 28px, 28px 28px, auto;
}

.product-media::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.3), transparent 28%),
    linear-gradient(0deg, rgba(11, 13, 16, 0.06), transparent 58%);
}

.swap-visual {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 55% 40%, rgba(var(--brand-blue-rgb), 0.08), transparent 44%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0));
}

.swap-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition:
    opacity 240ms ease,
    transform 260ms ease,
    filter 260ms ease;
}

.swap-image.is-fallback {
  filter: saturate(0.9) contrast(1.02);
}

.swap-image-front {
  opacity: 1;
  transform: scale(1);
}

.swap-image-rear {
  opacity: 0;
  transform: scale(1.035);
}

.category-card:hover .swap-image-front,
.product-card:hover .swap-image-front {
  opacity: 0;
  transform: scale(0.985);
}

.category-card:hover .swap-image-rear,
.product-card:hover .swap-image-rear {
  opacity: 1;
  transform: scale(1);
}

.product-media > .product-code {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  padding: 7px 9px;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  background: rgba(11, 13, 16, 0.86);
  border: 1px solid rgba(var(--brand-blue-rgb), 0.36);
  border-radius: 8px;
}

.product-device {
  position: relative;
  z-index: 1;
  width: 80%;
  max-width: 260px;
  height: 132px;
  perspective: 900px;
}

.device-shadow {
  position: absolute;
  left: 8%;
  right: 2%;
  bottom: -18px;
  height: 28px;
  background: rgba(0, 0, 0, 0.36);
  border-radius: 50%;
  filter: blur(12px);
}

.device-body {
  position: absolute;
  inset: 14px 0 8px;
  display: block;
  overflow: hidden;
  background:
    linear-gradient(150deg, #303946, #111924 52%, #070d15),
    #111924;
  border: 1px solid rgba(214, 227, 240, 0.18);
  border-radius: 8px;
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset -20px 0 38px rgba(0, 0, 0, 0.2);
  transform: rotateX(58deg) rotateZ(-8deg) skewX(-8deg);
  transform-origin: center;
}

.device-body::before,
.device-body::after {
  position: absolute;
  content: "";
}

.device-body::before {
  inset: 14px 18px auto;
  height: 28px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.22) 0 2px, transparent 2px 9px),
    rgba(255, 255, 255, 0.025);
  border-radius: 6px;
  opacity: 0.75;
}

.device-body::after {
  left: 13px;
  bottom: 13px;
  width: 10px;
  height: 10px;
  background: var(--brand-blue);
  border-radius: 50%;
  box-shadow: 20px 0 0 rgba(224, 161, 40, 0.9), 40px 0 0 rgba(87, 197, 120, 0.9);
}

.device-fins {
  position: absolute;
  inset: 0 auto 0 28px;
  width: 42%;
  background: repeating-linear-gradient(90deg, transparent 0 9px, rgba(255, 255, 255, 0.13) 9px 12px);
}

.device-face {
  position: absolute;
  right: 10px;
  bottom: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.device-port {
  display: block;
  background: #0b0d10;
  border: 1px solid rgba(199, 221, 238, 0.3);
  border-radius: 3px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.24);
}

.device-port.lan {
  width: 18px;
  height: 14px;
}

.device-port.usb {
  width: 16px;
  height: 9px;
}

.device-port.com {
  width: 28px;
  height: 11px;
  border-radius: 6px;
}

.device-badge {
  position: absolute;
  top: 16px;
  right: 18px;
  color: #d7e8f8;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.product-device-rugged .device-body {
  background:
    linear-gradient(150deg, #414752, #151d28 50%, #090f17),
    #151d28;
}

.product-device-rugged .device-body::before {
  inset: 12px 14px auto;
  height: 34px;
}

.product-device-box .device-body {
  transform: rotateX(56deg) rotateZ(7deg) skewX(6deg);
}

.product-device-panel .device-body {
  inset: 5px 18px 4px;
  background:
    linear-gradient(145deg, #202936, #0b121b),
    #111924;
  transform: rotateX(48deg) rotateZ(-3deg);
}

.product-device-panel .device-body::before {
  inset: 13px 16px 18px;
  height: auto;
  background:
    linear-gradient(135deg, rgba(101, 125, 150, 0.16), rgba(255, 255, 255, 0.1)),
    #0b0d10;
  border: 1px solid rgba(176, 196, 218, 0.2);
}

.product-device-panel .device-fins,
.product-device-panel .device-face {
  display: none;
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.product-body h3 {
  display: -webkit-box;
  min-height: 48px;
  margin: 12px 0 12px;
  font-size: 19px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-positioning {
  display: -webkit-box;
  margin-bottom: 0;
  color: #26374d;
  font-weight: 760;
  line-height: 1.55;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

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

.product-spec-grid div {
  min-width: 0;
  padding: 9px 10px;
  background: #f8fafc;
  border: 1px solid #e3e9f0;
  border-radius: 8px;
}

.product-spec-grid dt {
  margin-bottom: 4px;
  color: var(--brand-blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-spec-grid dd {
  overflow: hidden;
  margin: 0;
  color: #26374d;
  font-size: 12px;
  font-weight: 760;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-body p,
.category-card p,
.feature-card p,
.application-card p {
  font-size: 16px;
}

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

.product-actions .btn-small {
  width: 100%;
  min-width: 0;
  padding-inline: 10px;
  white-space: nowrap;
}

.product-body > p:not(.product-positioning) {
  display: -webkit-box;
  min-height: 52px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-positioning {
  display: -webkit-box;
  min-height: 48px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.panel-series-block {
  margin-top: clamp(56px, 7vw, 92px);
  padding: clamp(34px, 4vw, 48px);
  background:
    linear-gradient(135deg, rgba(17, 24, 39, 0.035), rgba(255,255,255,0)),
    #f7f9fb;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.compact-heading {
  margin-bottom: 34px;
}

.compact-heading h2 {
  max-width: 760px;
  font-size: clamp(28px, 3vw, 40px);
}

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

.panel-series-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  cursor: pointer;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow:
    0 14px 32px rgba(10, 18, 32, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition:
    border-color var(--motion-fast) ease,
    transform var(--motion-fast) ease,
    box-shadow var(--motion-fast) ease;
}

.panel-series-card::before {
  position: absolute;
  inset: 0 0 auto;
  z-index: 1;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, #CDD8E4, #EEF2F6);
  opacity: 0.72;
  transition: background var(--motion-fast) ease, opacity var(--motion-fast) ease;
}

.panel-series-card:hover::before {
  background: linear-gradient(90deg, var(--brand-blue), rgba(var(--brand-blue-rgb), 0.32));
  opacity: 0.9;
}

.panel-series-media {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 54% 48%, rgba(var(--brand-blue-rgb), 0.06), transparent 42%),
    var(--product-surface);
  background-size: auto, 28px 28px, 28px 28px, auto;
}

.panel-series-media::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), transparent 24%),
    linear-gradient(0deg, rgba(11, 13, 16, 0.045), transparent 62%);
}

.panel-series-visual .swap-image {
  padding: 16px;
}

.panel-series-media > .product-code {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  padding: 7px 9px;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  background: rgba(11, 13, 16, 0.86);
  border: 1px solid rgba(var(--brand-blue-rgb), 0.36);
  border-radius: 8px;
}

.panel-series-body {
  padding: 30px;
}

.panel-series-card .product-actions {
  margin-top: 24px;
}

.panel-series-body h3 {
  font-size: 22px;
}

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

.series-columns strong {
  display: block;
  color: #25364d;
  font-size: 13px;
  text-transform: uppercase;
}

.spec-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.spec-list li {
  position: relative;
  padding-left: 22px;
  color: #41536a;
  font-size: 14px;
  line-height: 1.45;
}

.spec-list li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  background: #5E748C;
  border-radius: 50%;
}

.applications-section {
  position: relative;
  isolation: isolate;
  padding: clamp(78px, 7vw, 108px) 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f8fa 22%, #eef2f6 100%),
    #f6f7f9;
}

.applications-section .section-shell {
  width: min(100% - 56px, 1440px);
}

.applications-section::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(17, 24, 39, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 24, 39, 0.04) 1px, transparent 1px);
  background-size: 52px 52px;
}

.applications-panel {
  overflow: hidden;
  position: relative;
  padding: clamp(34px, 3.4vw, 48px);
  color: #ffffff;
  background:
    radial-gradient(circle at 16% 8%, rgba(var(--brand-blue-rgb), 0.11), transparent 30%),
    radial-gradient(circle at 86% 16%, rgba(255, 255, 255, 0.1), transparent 28%),
    linear-gradient(135deg, #18202a 0%, #1a1f27 48%, #24272e 100%);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px;
  box-shadow:
    0 40px 96px rgba(10, 18, 32, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.applications-panel::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 44px 44px;
}

.applications-panel > * {
  position: relative;
  z-index: 1;
}

.applications-panel .section-heading {
  margin-bottom: clamp(26px, 3vw, 38px);
}

.applications-panel .section-heading h2 {
  color: #ffffff;
}

.applications-panel .section-heading p {
  color: #c4ceda;
}

.applications-panel .eyebrow {
  color: #AAB8C7;
}

.section-dark .application-card {
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.078), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.04);
  border-color: rgba(176, 215, 247, 0.15);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.section-dark .application-card .card-icon {
  color: #AAB8C7;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.055);
  border-color: rgba(176, 196, 218, 0.18);
}

.application-card strong {
  display: block;
  margin-top: 18px;
  color: #B5C4D4;
  font-size: 13px;
}

.applications-section .application-grid {
  grid-template-columns: minmax(260px, 0.24fr) minmax(0, 1fr);
  align-items: stretch;
  gap: clamp(30px, 3.6vw, 50px);
}

.application-tabs {
  display: grid;
  gap: 14px;
}

.application-tab {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 14px;
  min-height: 68px;
  padding: 14px 16px;
  color: #d8e8f7;
  text-align: left;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.application-tab .icon {
  color: #AAB8C7;
}

.application-tab span {
  font-size: 15px;
  font-weight: 800;
}

.application-tab:hover,
.application-tab:focus-visible,
.application-tab.is-active {
  background:
    linear-gradient(90deg, rgba(var(--brand-blue-rgb), 0.12), rgba(255, 255, 255, 0.065)),
    rgba(255, 255, 255, 0.075);
  border-color: rgba(var(--brand-blue-rgb), 0.34);
  transform: translateX(4px);
}

.application-detail {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto auto;
  padding: 0;
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.application-detail::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  content: "";
  border-top: 2px solid rgba(176, 196, 218, 0.42);
}

.application-media {
  position: relative;
  z-index: 1;
  height: clamp(260px, 24vw, 340px);
  min-height: 260px;
  overflow: hidden;
  border-radius: 0 0 8px 8px;
  background:
    radial-gradient(circle at 18% 24%, rgba(101, 125, 150, 0.14), transparent 28%),
    linear-gradient(135deg, rgba(21, 30, 43, 0.9), rgba(9, 17, 29, 0.96));
}

.application-media::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  background:
    linear-gradient(180deg, rgba(11, 13, 16, 0.02), rgba(11, 13, 16, 0.24)),
    linear-gradient(90deg, rgba(11, 13, 16, 0.16), transparent 58%);
}

.application-media::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
}

.application-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.application-media img[hidden] {
  display: none;
}

.application-media-overlay {
  position: absolute;
  right: 22px;
  bottom: 20px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.application-media-overlay::before {
  width: 34px;
  height: 2px;
  content: "";
  background: var(--brand-blue);
}

.application-detail-body {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 20px;
  padding: clamp(34px, 3.2vw, 46px);
}

.application-detail-body .eyebrow {
  margin: 0 0 -6px;
  color: var(--brand-blue);
}

.application-detail h3 {
  margin: 0;
  max-width: 860px;
  font-size: clamp(36px, 3.25vw, 52px);
  line-height: 1.12;
}

.application-summary,
.application-description {
  max-width: 820px;
  margin: 0;
  color: #d7dce4;
  font-size: 17px;
  line-height: 1.72;
}

.application-need {
  border-color: rgba(255, 255, 255, 0.16);
}

.application-block {
  display: grid;
  gap: 12px;
}

.application-block > span,
.application-spec span {
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.application-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.application-tags span {
  padding: 9px 12px;
  color: #f6f7f9;
  font-size: 13px;
  font-weight: 750;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

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

.application-spec {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin-top: 0;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.082);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.application-fit {
  background:
    linear-gradient(90deg, rgba(101, 125, 150, 0.12), rgba(255, 255, 255, 0.055)),
    rgba(255, 255, 255, 0.055);
  border-color: rgba(176, 196, 218, 0.2);
}

.application-spec strong,
.application-spec p {
  margin: 0;
}

.application-spec strong {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.42;
}

.application-spec p {
  color: #d7dce4;
  font-size: 15px;
  line-height: 1.68;
}

.application-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.application-actions > span {
  color: #c4ceda;
  font-size: 13px;
  font-weight: 760;
}

.custom-grid,
.about-grid,
.contact-grid,
.cta-grid {
  display: grid;
  gap: clamp(42px, 6vw, 78px);
}

.custom-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.82fr);
  align-items: center;
}

.custom-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, #f3f6f9 100%),
    #ffffff;
}

.custom-section::before {
  position: absolute;
  inset: 9% auto 8% 0;
  z-index: -1;
  width: min(44vw, 560px);
  content: "";
  background:
    linear-gradient(90deg, rgba(36, 54, 74, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(17, 24, 39, 0.04) 1px, transparent 1px);
  background-size: 22px 22px;
  transform: skewY(-6deg);
}

.custom-copy p,
.about-copy p {
  max-width: 680px;
}

.custom-list,
.trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.custom-actions {
  margin-top: 28px;
}

.custom-assurance,
.rfq-promise {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.custom-assurance span,
.rfq-promise span {
  min-height: 34px;
  padding: 8px 11px;
  color: #31445d;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 820;
}

.custom-list span,
.trust-list span {
  position: relative;
  display: flex;
  align-items: flex-start;
  min-height: 54px;
  padding: 15px 16px 15px 42px;
  color: #26374d;
  font-size: 14px;
  font-weight: 720;
  line-height: 1.42;
  background: linear-gradient(180deg, #ffffff, #f3f7fb);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(10, 18, 32, 0.045);
}

.custom-list span::before,
.trust-list span::before {
  position: absolute;
  top: 18px;
  left: 15px;
  width: 10px;
  height: 10px;
  content: "";
  background: #5E748C;
  border: 2px solid #E0E7EF;
  border-radius: 50%;
}

.about-copy .trust-list {
  gap: 14px 18px;
  margin-top: 32px;
}

.about-copy .trust-list span {
  min-height: auto;
  padding: 0 0 0 26px;
  color: #31445d;
  font-size: 15px;
  font-weight: 680;
  line-height: 1.48;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.about-copy .trust-list span::before {
  top: 0.52em;
  left: 0;
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #506D88, #8FA3B8);
  border: 0;
  box-shadow: 0 0 0 5px rgba(36, 54, 74, 0.06);
}

.process-panel {
  position: relative;
  overflow: hidden;
  padding: 34px;
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(101, 125, 150, 0.13), rgba(255, 255, 255, 0.04)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 20px),
    var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 28px 62px rgba(10, 18, 32, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.11);
}

.process-panel::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(176, 196, 218, 0.55));
}

.process-panel::after {
  position: absolute;
  right: -42px;
  bottom: -50px;
  width: 180px;
  height: 180px;
  content: "";
  border: 1px solid rgba(176, 196, 218, 0.12);
  transform: rotate(28deg);
}

.process-header {
  display: grid;
  gap: 8px;
  margin-bottom: 30px;
}

.process-header span {
  color: #AAB8C7;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.process-header strong {
  font-size: 26px;
  line-height: 1.18;
}

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

.process-step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 14px;
  min-height: 74px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.process-step span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #AAB8C7;
  font-weight: 850;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(176, 196, 218, 0.18);
  border-radius: 8px;
}

.process-step strong {
  line-height: 1.25;
}

.about-grid {
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.86fr);
  align-items: center;
  gap: clamp(48px, 5vw, 64px);
}

.about-copy h2 {
  max-width: 760px;
}

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

.stat-card {
  min-height: 190px;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 251, 255, 0.9)),
    rgba(255, 255, 255, 0.86);
  border-color: rgba(179, 197, 217, 0.56);
  box-shadow:
    0 12px 28px rgba(10, 18, 32, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.stat-card::before {
  width: 54px;
  height: 2px;
  background: linear-gradient(90deg, #C7D3DF, #EDF1F5);
  opacity: 0.82;
}

.stat-card strong {
  display: block;
  margin-bottom: 14px;
  color: #13243a;
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.24;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.stat-card span {
  display: block;
  color: #506178;
  font-size: 15px;
  font-weight: 520;
  line-height: 1.62;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.cta-section {
  position: relative;
  isolation: isolate;
  padding: clamp(70px, 8vw, 104px) 0;
  overflow: hidden;
  background:
    linear-gradient(100deg, rgba(13, 21, 34, 0.99), rgba(36, 54, 74, 0.94)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 22px),
    var(--dark);
}

.cta-section::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, transparent 0 62%, rgba(176, 196, 218, 0.12) 62% 62.5%, transparent 62.5% 100%),
    linear-gradient(90deg, transparent 0 72%, rgba(255, 255, 255, 0.08) 72% 72.3%, transparent 72.3% 100%);
  opacity: 0.8;
}

.cta-grid {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding: clamp(34px, 5vw, 54px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.088), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(174, 216, 250, 0.16);
  border-radius: 8px;
  box-shadow:
    0 22px 52px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.cta-grid h2 {
  max-width: 760px;
}

.cta-grid p {
  max-width: 720px;
  margin-bottom: 0;
}

.contact-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(320px, 0.46fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(36px, 5vw, 72px);
  width: min(100% - 48px, 1280px);
  max-width: 1280px;
  margin: 0 auto;
}

.contact-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(180deg, #f5f7fa 0%, #ffffff 100%),
    var(--panel-soft);
}

.contact-section::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background:
    linear-gradient(135deg, #101A28 0%, #162233 56%, #1B2A3C 100%);
  clip-path: polygon(0 0, 59% 0, 50% 100%, 0 100%);
}

.contact-section::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(200, 210, 222, 0.085) 1px, transparent 1px),
    linear-gradient(rgba(200, 210, 222, 0.07) 1px, transparent 1px);
  background-size: 42px 42px;
  clip-path: polygon(0 0, 60% 0, 51% 100%, 0 100%);
  opacity: 0.72;
}

.rfq-heading {
  position: relative;
  max-width: 530px;
  color: #ffffff;
}

.rfq-heading h2 {
  max-width: 520px;
  color: #FFFFFF;
  font-size: clamp(34px, 3.35vw, 50px);
  line-height: 1.06;
}

.rfq-heading p {
  max-width: 500px;
  color: rgba(255,255,255,0.76);
  line-height: 1.68;
}

.rfq-heading .eyebrow {
  color: #C8D2DE;
}

.rfq-promise span {
  color: #DCE5EE;
  background: rgba(5, 12, 22, 0.32);
  border-color: rgba(200, 210, 222, 0.22);
}

.inquiry-form {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 20px;
  padding: clamp(32px, 4.5vw, 46px);
  width: min(100%, 1080px);
  max-width: 1080px;
  margin: 0 auto;
  background:
    linear-gradient(180deg, #ffffff, #FAFBFD),
    #ffffff;
  border: 1px solid var(--line);
  box-shadow:
    0 32px 80px rgba(13, 21, 34, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.inquiry-form::before {
  display: flex;
  align-items: center;
  min-height: 48px;
  margin: calc(clamp(32px, 4.5vw, 46px) * -1) calc(clamp(32px, 4.5vw, 46px) * -1) 8px;
  padding: 0 clamp(22px, 3vw, 32px);
  color: #ffffff;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  content: "RFQ FORM";
  background:
    linear-gradient(90deg, #101A28, #162233 76%, #1B2A3C),
    #101A28;
}

.rfq-intro {
  max-width: 760px;
  margin: 0 0 4px;
  color: #4b5565;
  font-size: 15px;
  line-height: 1.6;
}

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

label {
  display: grid;
  gap: 8px;
  color: #25364d;
  font-size: 13px;
  font-weight: 790;
}

.field-hint {
  color: #607085;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.45;
}

input,
select,
textarea {
  width: 100%;
  color: var(--ink);
  background: #F8FAFD;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

input,
select {
  min-height: 46px;
  padding: 0 13px;
}

textarea {
  min-height: 132px;
  padding: 13px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  background: #ffffff;
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 4px rgba(var(--brand-blue-rgb), 0.12);
}

.form-submit {
  width: fit-content;
}

.form-status {
  margin: 0;
  padding: 13px 14px;
  color: #0d5b3e;
  font-weight: 760;
  background: #e7f7ef;
  border: 1px solid #bde8cf;
  border-radius: 8px;
}

.form-status.is-error {
  color: #8a1f18;
  background: #fff0ef;
  border-color: #f2b8b5;
}

.form-status.is-success {
  color: #0d5b3e;
  background: #e7f7ef;
  border-color: #bde8cf;
}

.form-submit[disabled] {
  cursor: wait;
  opacity: 0.68;
}

.site-footer {
  padding: 56px 0 24px;
  color: #c8d7e6;
  background:
    radial-gradient(circle at 18% 0%, rgba(101, 125, 150, 0.12), transparent 34%),
    linear-gradient(180deg, var(--dark), #09111D);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: clamp(28px, 4vw, 54px);
}

.footer-brand p {
  max-width: 320px;
  margin-top: 18px;
}

.site-footer h3 {
  margin-bottom: 15px;
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
}

.site-footer a,
.site-footer span {
  display: block;
  margin: 9px 0;
  color: #9fb2c8;
  font-size: 14px;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom span,
.footer-bottom a {
  color: #8ea2b8;
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity var(--motion-medium) var(--ease-out),
    transform var(--motion-medium) var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Engineering Contrast redesign layer */
.section-heading h2,
.compact-heading h2 {
  letter-spacing: 0;
}

.hero {
  background:
    linear-gradient(90deg, rgba(8, 14, 24, 0.94) 0%, rgba(16, 26, 40, 0.82) 44%, rgba(16, 26, 40, 0.38) 72%, rgba(16, 26, 40, 0.12) 100%),
    url("/banners/banner1.webp") center center / cover no-repeat,
    #101A28;
}

.hero-copy {
  max-width: 820px;
}

.hero h1 {
  max-width: 800px;
  font-size: clamp(46px, 4.6vw, 72px);
  line-height: 1.01;
}

.hero-lede {
  max-width: 660px;
  color: #C8D2DE;
}

.hero-capability-tags span {
  color: #E8EEF5;
  background: rgba(5, 12, 22, 0.34);
  border-color: rgba(200, 210, 222, 0.2);
}

#advantages {
  background: #ffffff;
}

#advantages .feature-card {
  min-height: 210px;
  padding: 24px;
  background: #ffffff;
  border-color: #e3e9f0;
  box-shadow: 0 8px 18px rgba(10, 18, 32, 0.032);
}

#advantages .feature-card::before {
  height: 0;
}

#advantages .feature-card:hover {
  border-color: #b8cce6;
  box-shadow: 0 12px 24px rgba(10, 18, 32, 0.055);
  transform: translateY(-2px);
}

#advantages .card-icon {
  color: #4f6c8a;
  background: #f7f9fb;
  border-color: #d9e2ea;
  box-shadow: none;
}

.category-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
}

.category-card-primary {
  min-height: 560px;
  border-color: #d9e2ea;
  box-shadow: 0 18px 42px rgba(10, 18, 32, 0.075);
}

.category-card-primary h3 {
  font-size: clamp(26px, 2.5vw, 34px);
}

.category-card-primary .category-visual {
  height: 300px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
}

.category-card-supporting {
  grid-column: 1 / -1;
  min-height: 170px;
  opacity: 0.92;
}

.category-scene {
  margin: 12px 0 0;
  color: #506178;
  font-size: 14px;
  line-height: 1.55;
}

.product-card {
  border-color: #d9e2ea;
  box-shadow: 0 12px 28px rgba(10, 18, 32, 0.055);
}

.product-media {
  height: 236px;
  min-height: 236px;
  background:
    radial-gradient(circle at 50% 46%, rgba(42, 103, 177, 0.07), transparent 45%),
    linear-gradient(135deg, #fbfcfe, #e9eef5);
}

.product-kicker,
.series-kicker {
  color: #2A67B1;
  background: rgba(42, 103, 177, 0.08);
  border-color: rgba(42, 103, 177, 0.18);
}

.product-spec-grid div {
  background: #f8fafc;
  border-color: #dfe7ef;
}

.panel-series-block {
  background:
    linear-gradient(135deg, rgba(16, 26, 40, 0.05), rgba(255,255,255,0) 48%),
    #f5f7fa;
  border-color: #d9e2ea;
}

.panel-series-card {
  grid-template-columns: minmax(250px, 0.4fr) minmax(0, 1fr);
  border-color: #d9e2ea;
  box-shadow: 0 14px 32px rgba(10, 18, 32, 0.06);
}

.series-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  margin-bottom: 12px;
  padding: 0 10px;
  border: 1px solid;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.series-columns .tag-row {
  margin-top: 12px;
}

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

.applications-panel {
  background:
    radial-gradient(circle at 12% 8%, rgba(42, 103, 177, 0.13), transparent 28%),
    linear-gradient(135deg, #101A28 0%, #162233 55%, #1B2A3C 100%);
  border-radius: 22px;
}

.application-tab {
  background: rgba(5, 12, 22, 0.28);
  border-color: rgba(200, 210, 222, 0.16);
}

.application-detail {
  background:
    linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.045)),
    rgba(255,255,255,0.05);
  border-radius: 12px;
}

.application-actions .btn-primary {
  min-width: 150px;
}

.custom-section {
  color: #ffffff;
  background:
    linear-gradient(110deg, #101A28 0%, #162233 54%, #f5f7fa 54.2%, #ffffff 100%);
}

.custom-section::before {
  inset: 0;
  width: 58%;
  background:
    linear-gradient(90deg, rgba(200, 210, 222, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(200, 210, 222, 0.065) 1px, transparent 1px);
  background-size: 34px 34px;
  transform: none;
}

.custom-copy h2,
.custom-copy .eyebrow {
  color: #ffffff;
}

.custom-copy p {
  color: rgba(255,255,255,0.76);
}

.custom-list span {
  color: #E8EEF5;
  background: rgba(5, 12, 22, 0.34);
  border-color: rgba(200, 210, 222, 0.18);
  box-shadow: none;
}

.custom-list span::before {
  background: #C8D2DE;
  border-color: rgba(255,255,255,0.24);
}

.custom-assurance span {
  color: #DCE5EE;
  background: rgba(5, 12, 22, 0.28);
  border-color: rgba(200, 210, 222, 0.2);
}

.custom-section .btn-secondary {
  color: #ffffff;
  background: rgba(5, 12, 22, 0.34);
  border-color: rgba(200, 210, 222, 0.24);
}

.process-panel {
  background:
    linear-gradient(180deg, #ffffff, #f8fafc);
  color: #1D2735;
  border-color: #d9e2ea;
  box-shadow: 0 24px 58px rgba(10, 18, 32, 0.16);
}

.process-header span,
.process-step span {
  color: #2A67B1;
}

.process-header strong,
.process-step strong {
  color: #1D2735;
}

.process-step {
  background: #f8fafc;
  border-color: #d9e2ea;
}

.process-step span {
  background: #ffffff;
  border-color: #d9e2ea;
}

.rfq-heading h2 {
  max-width: 520px;
}

.rfq-heading p {
  color: rgba(255,255,255,0.76);
}

.inquiry-form {
  border-color: #d9e2ea;
}

@keyframes gridDrift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 56px 56px, 56px 56px;
  }
}

@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1120px) {
  .site-header {
    gap: 18px;
  }

  .site-nav {
    gap: 16px;
    font-size: 13px;
  }

  .custom-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    gap: 32px;
  }

  .contact-section {
    background:
      linear-gradient(180deg, #101A28 0%, #162233 44%, #f5f7fa 44.2%, #ffffff 100%);
  }

  .contact-section::before {
    inset: 0 0 auto;
    height: 46%;
    clip-path: none;
  }

  .contact-section::after {
    inset: 0 0 auto;
    height: 46%;
    clip-path: none;
  }

  .rfq-heading {
    max-width: 760px;
  }

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

  .product-grid .product-card,
  .product-grid .product-card:nth-child(4),
  .product-grid .product-card:nth-child(5),
  .product-grid .product-card-featured {
    grid-column: auto;
    grid-row: auto;
  }

  .visual-frame {
    min-height: 500px;
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: 86vh;
    padding: 96px 0 86px;
    background-position: center center;
  }

  .hero .section-shell {
    width: min(100% - 48px, 1180px);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .hero-copy {
    position: relative;
    top: auto;
    left: auto;
    translate: none;
    max-width: 760px;
  }

  .hero h1 {
    max-width: 640px;
    font-size: clamp(48px, 8vw, 66px);
    text-wrap: balance;
    white-space: normal;
  }

  .visual-frame {
    width: min(760px, 100%);
    min-height: 560px;
    margin-right: 0;
    margin-left: 0;
  }

  .hero-product-scene {
    inset: 0 0 0;
  }

  .hero-panel-card {
    width: 60%;
    height: 340px;
  }

  .hero-mini-card {
    width: 58%;
    height: 320px;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: inline-block;
    justify-self: end;
  }

  .site-nav {
    position: fixed;
    top: 68px;
    left: 18px;
    right: 18px;
    display: grid;
    gap: 2px;
    padding: 14px;
    background: rgba(7, 17, 31, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.32);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 14px 12px;
    border-radius: 8px;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: rgba(255, 255, 255, 0.07);
  }

  .site-nav a::after {
    display: none;
  }

  .header-quote {
    display: none;
  }

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

  .category-card-primary,
  .category-card-supporting {
    grid-column: span 2;
  }

  .category-card-supporting {
    grid-template-columns: minmax(160px, 0.35fr) minmax(0, 1fr);
  }

  .category-card-supporting .card-action {
    grid-column: 2;
    justify-self: start;
  }

  .panel-series-grid {
    grid-template-columns: 1fr;
  }

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

  .applications-section .application-grid {
    grid-template-columns: 1fr;
  }

  .applications-section .section-shell {
    width: min(100% - 40px, 1420px);
  }

  .applications-panel {
    padding: 40px;
    border-radius: 22px;
  }

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

  .application-tab {
    min-height: 74px;
  }

  .application-media {
    height: clamp(300px, 44vw, 380px);
    min-height: 300px;
  }

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

  .strip-grid span:nth-child(2) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }

  .section-heading-row,
  .cta-grid,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    display: flex;
  }

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

  .cta-grid {
    width: min(100% - 28px, 1180px);
  }
}

@media (max-width: 680px) {
  .section-shell {
    width: min(100% - 40px, 1180px);
  }

  .section {
    padding: clamp(72px, 15vw, 96px) 0;
  }

  .site-header {
    padding: 12px 14px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 14px;
  }

  .brand small {
    font-size: 11px;
  }

  .hero {
    min-height: 78vh;
    padding: 92px 0 58px;
    background-position: center center;
  }

  h1 {
    font-size: 42px;
    line-height: 1.08;
    letter-spacing: 0;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(38px, 11vw, 52px);
    line-height: 1.04;
    letter-spacing: 0;
    text-wrap: balance;
    white-space: normal;
  }

  .hero-lede {
    max-width: 560px;
    font-size: 16px;
  }

  h2 {
    font-size: clamp(30px, 9vw, 36px);
    line-height: 1.16;
  }

  .hero-actions,
  .cta-actions,
  .product-actions {
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .contact-widget {
    top: auto;
    right: 18px;
    bottom: 18px;
    left: 18px;
    transform: none;
  }

  .contact-widget-toggle {
    width: 100%;
    justify-content: center;
    min-height: 54px;
  }

  .contact-widget-panel {
    position: fixed;
    inset: auto 0 0;
    width: 100%;
    max-height: min(82vh, 720px);
    padding: 18px;
    border-radius: 20px 20px 0 0;
    transform: none;
  }

  .contact-channel-grid {
    gap: 12px;
  }

  .contact-channel-card {
    padding: 16px;
  }

  .contact-whatsapp-desktop {
    display: none;
  }

  .contact-whatsapp-mobile {
    display: grid;
    gap: 10px;
  }

  .contact-mobile-chat {
    width: 100%;
  }

  .btn-small {
    width: auto;
    flex: 1 1 150px;
  }

  .visual-frame {
    min-height: 0;
  }

  .visual-frame {
    width: 100%;
    min-height: 0;
    margin-right: 0;
  }

  .hero-product-scene {
    position: relative;
    inset: auto;
    display: grid;
    gap: 18px;
  }

  .hero-product-card {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    height: auto;
    min-height: 300px;
    padding: 28px 16px 14px;
  }

  .hero-panel-card,
  .hero-mini-card {
    width: 100%;
    height: auto;
  }

  .scene-panel,
  .scene-mini {
    width: min(100%, 520px);
    height: 250px;
    max-height: none;
    margin: 14px auto 0;
  }

  .scene-mini {
    width: min(108%, 560px);
  }

  .visual-frame::before {
    inset: 12px;
  }

  .advantages-grid,
  .category-grid,
  .application-grid,
  .product-grid,
  .panel-series-grid,
  .custom-list,
  .trust-list,
  .stats-grid,
  .form-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .product-grid .product-card,
  .product-grid .product-card:nth-child(4),
  .product-grid .product-card:nth-child(5) {
    grid-column: auto;
  }

  .category-card-primary,
  .category-card-supporting {
    grid-column: auto;
  }

  .category-card-supporting {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .category-card-primary .category-visual,
  .category-card-supporting .category-visual {
    height: 220px;
    margin: -4px -4px 24px;
  }

  .category-card-primary {
    min-height: 0;
  }

  .category-card-supporting {
    min-height: 0;
  }

  .product-card {
    display: flex;
    min-height: 0;
  }

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

  .strip-grid span,
  .strip-grid span:last-child,
  .strip-grid span:nth-child(2) {
    min-height: 54px;
    padding: 12px 14px 12px 28px;
    font-size: 12px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }

  .strip-grid span::before {
    left: 12px;
    width: 5px;
    height: 20px;
  }

  .feature-card,
  .category-card,
  .application-card {
    padding: 26px;
  }

  .product-media {
    height: 230px;
    min-height: 230px;
  }

  .panel-series-card {
    grid-template-rows: 260px 1fr;
  }

  .applications-section {
    padding: 76px 0;
  }

  .applications-section .section-shell {
    width: min(100% - 28px, 1180px);
  }

  .applications-panel {
    padding: 30px 18px;
    border-radius: 18px;
  }

  .application-tabs {
    display: flex;
    gap: 10px;
    padding-bottom: 4px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
  }

  .application-tab {
    flex: 0 0 min(78vw, 280px);
    scroll-snap-align: start;
  }

  .application-detail {
    grid-template-rows: auto auto;
    min-height: 0;
  }

  .application-media {
    height: 240px;
    min-height: 240px;
  }

  .application-detail-body {
    padding: 26px 20px;
  }

  .application-info-grid {
    grid-template-columns: 1fr;
  }

  .panel-series-body {
    padding: 26px;
  }

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

  .product-device {
    width: 82%;
    height: 108px;
  }

  .process-panel {
    padding: 26px;
  }

  .process-step {
    grid-template-columns: 48px 1fr;
  }

  .inquiry-form::before {
    margin: -32px -32px 6px;
    padding: 0 22px;
  }
}

@media (max-width: 420px) {
  .site-nav {
    left: 14px;
    right: 14px;
  }

  .hero-proof {
    display: flex;
  }

  .hero h1 {
    font-size: clamp(38px, 11vw, 46px);
  }

  .product-device {
    width: 88%;
  }

  .device-face {
    gap: 4px;
  }

  .device-port.com {
    width: 22px;
  }
}

@media (max-width: 1120px) {
  .custom-section {
    background:
      linear-gradient(180deg, #101A28 0%, #162233 52%, #f5f7fa 52.2%, #ffffff 100%);
  }

  .custom-section::before {
    width: 100%;
    height: 52%;
  }

  .process-panel {
    margin-top: 8px;
  }
}

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

  .category-card-primary,
  .category-card-supporting {
    grid-column: auto;
  }

  .panel-series-card {
    grid-template-columns: 1fr;
  }

  .applications-section .application-grid {
    grid-template-columns: 1fr;
  }
}

/* Engineering Contrast second pass: homepage module rebuild */
.hero {
  min-height: 760px;
  background:
    linear-gradient(90deg, rgba(7, 12, 21, 0.97) 0%, rgba(16, 26, 40, 0.9) 42%, rgba(16, 26, 40, 0.46) 70%, rgba(16, 26, 40, 0.14) 100%),
    linear-gradient(180deg, rgba(7, 12, 21, 0.22), rgba(7, 12, 21, 0.68)),
    url("/banners/banner1.webp") center center / cover no-repeat,
    #101A28;
}

.hero-copy {
  max-width: 860px;
  padding-top: 18px;
}

.hero h1 {
  max-width: 820px;
  color: #ffffff;
  font-size: clamp(50px, 5vw, 78px);
  font-weight: 900;
  line-height: 0.99;
}

.hero-lede {
  max-width: 690px;
  color: #D5DEE8;
  font-size: clamp(18px, 1.45vw, 22px);
}

.hero-capability-tags {
  gap: 12px;
}

.hero-capability-tags span {
  min-height: 38px;
  padding: 9px 13px;
  color: #EEF4FA;
  background: rgba(5, 12, 22, 0.46);
  border: 1px solid rgba(200, 210, 222, 0.26);
}

.hero-actions .btn-primary {
  min-width: 174px;
  box-shadow: 0 16px 34px rgba(42, 103, 177, 0.32);
}

.hero-actions .btn-secondary {
  color: #E8EEF5;
  background: rgba(5, 12, 22, 0.34);
  border-color: rgba(200, 210, 222, 0.26);
}

#advantages .section-heading h2,
#products .section-heading h2,
#featured .section-heading h2,
.compact-heading h2 {
  color: #101A28;
}

#advantages .section-heading p,
#products .section-heading p,
#featured .section-heading p,
.compact-heading p {
  color: #4F5F73;
}

#advantages .feature-card h3 {
  color: #162233;
  font-size: 18px;
}

#advantages .feature-card p {
  color: #5B6878;
}

#products {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, #EEF3F8 0%, #F8FAFC 42%, #E7EDF4 100%);
}

#products::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(42, 103, 177, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(42, 103, 177, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: 0.7;
}

#products .section-shell {
  position: relative;
  z-index: 1;
  width: min(100% - 56px, 1440px);
}

.product-line-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

.product-line-main-card,
.product-line-support-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid #C9D6E4;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.product-line-main-card {
  display: grid;
  grid-template-rows: auto minmax(310px, 1fr) auto;
  min-height: 640px;
  padding: clamp(28px, 3vw, 40px);
  background:
    radial-gradient(circle at 74% 40%, rgba(42, 103, 177, 0.12), transparent 34%),
    linear-gradient(145deg, #ffffff 0%, #F5F8FB 58%, #E7EEF6 100%);
  border-radius: 14px;
  box-shadow: 0 24px 58px rgba(16, 26, 40, 0.12);
}

.product-line-main-card::before,
.product-line-support-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, #162233, #2A67B1 62%, rgba(42, 103, 177, 0.1));
}

.product-line-main-card:hover,
.product-line-support-card:hover {
  border-color: #9FB9D8;
  box-shadow: 0 30px 72px rgba(16, 26, 40, 0.16);
  transform: translateY(-4px);
}

.product-line-copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 14px;
}

.product-line-copy h3,
.product-line-support-copy h3 {
  margin: 0;
  color: #101A28;
  font-weight: 900;
  line-height: 1.05;
}

.product-line-copy h3 {
  max-width: 430px;
  font-size: clamp(34px, 3.5vw, 48px);
}

.product-line-copy p,
.product-line-support-copy p {
  margin: 0;
  color: #4F5F73;
  line-height: 1.62;
}

.product-line-copy > p:first-of-type {
  max-width: 560px;
  color: #25364D;
  font-size: 17px;
  font-weight: 680;
}

.product-line-copy .category-scene {
  max-width: 560px;
  margin: 0;
  color: #5B6878;
}

.product-line-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 310px;
  margin: 10px -8px 0;
}

.product-line-media::before {
  position: absolute;
  inset: 12% 7% 6%;
  content: "";
  background:
    linear-gradient(90deg, rgba(16, 26, 40, 0.07) 1px, transparent 1px),
    linear-gradient(rgba(16, 26, 40, 0.055) 1px, transparent 1px),
    #EEF3F8;
  background-size: 30px 30px;
  border: 1px solid #D5E0EA;
  border-radius: 14px;
}

.product-line-visual {
  position: relative;
  z-index: 1;
  width: min(96%, 480px);
  min-height: 260px;
}

.product-line-visual .swap-image {
  object-fit: contain;
  padding: 10px;
}

.product-line-main-card .card-action,
.product-line-support-card .card-action {
  position: relative;
  z-index: 2;
  justify-self: start;
  min-height: 42px;
  padding: 0 16px;
  color: #ffffff;
  background: #2A67B1;
  border: 1px solid #2A67B1;
  border-radius: 8px;
}

.product-line-main-card .tag-row,
.product-line-support-card .tag-row {
  gap: 8px;
}

.product-line-main-card .tag,
.product-line-support-card .tag {
  color: #31465F;
  background: rgba(255, 255, 255, 0.72);
  border-color: #D4DFEA;
}

.product-line-support-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.34fr) auto;
  align-items: center;
  gap: 24px;
  min-height: 190px;
  padding: 28px 32px;
  background:
    linear-gradient(100deg, rgba(255,255,255,0.94), rgba(245,248,252,0.96)),
    #ffffff;
  border-radius: 12px;
  box-shadow: 0 14px 36px rgba(16, 26, 40, 0.08);
}

.product-line-support-copy {
  display: grid;
  gap: 10px;
}

.product-line-support-copy h3 {
  font-size: clamp(24px, 2.2vw, 32px);
}

.product-line-support-media {
  display: grid;
  place-items: center;
  min-height: 130px;
  background: #EEF3F8;
  border: 1px solid #D8E2EC;
  border-radius: 12px;
}

.product-line-visual-small {
  width: min(88%, 240px);
  min-height: 120px;
}

#featured {
  background:
    linear-gradient(180deg, #ffffff 0%, #F7FAFD 48%, #EEF3F8 100%);
}

#featured .section-shell {
  width: min(100% - 56px, 1500px);
}

#featured .section-heading-row {
  display: flex;
  align-items: flex-end;
  gap: 28px;
  justify-content: space-between;
  padding-bottom: 26px;
}

.recommended-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(260px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.recommended-product-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: 300px 1fr;
  min-height: 690px;
  background: #ffffff;
  border: 1px solid #D3DFEA;
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(16, 26, 40, 0.09);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.recommended-product-card:hover {
  border-color: #AFC4DE;
  box-shadow: 0 26px 62px rgba(16, 26, 40, 0.14);
  transform: translateY(-4px);
}

.recommended-product-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 300px;
  background:
    radial-gradient(circle at 50% 46%, rgba(42, 103, 177, 0.11), transparent 42%),
    linear-gradient(90deg, rgba(16, 26, 40, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(16, 26, 40, 0.045) 1px, transparent 1px),
    linear-gradient(135deg, #F9FBFD, #E6EDF5);
  background-size: auto, 32px 32px, 32px 32px, auto;
  border-bottom: 1px solid #DCE5EE;
}

.recommended-product-visual {
  width: min(92%, 310px);
  min-height: 250px;
}

.recommended-product-visual .swap-image {
  object-fit: contain;
  padding: 12px;
}

.recommended-product-media .product-code {
  position: absolute;
  right: 16px;
  bottom: 16px;
  color: #ffffff;
  background: rgba(16, 26, 40, 0.9);
  border-color: rgba(200, 210, 222, 0.22);
}

.recommended-product-body {
  display: grid;
  grid-template-rows: auto auto auto auto 1fr;
  gap: 14px;
  padding: 26px;
}

.recommended-product-body h3 {
  min-height: 58px;
  margin: 0;
  color: #101A28;
  font-size: 23px;
  font-weight: 900;
  line-height: 1.18;
}

.recommended-product-body .product-positioning {
  min-height: 52px;
  color: #506178;
}

.recommended-product-body .product-spec-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.recommended-product-body .product-spec-grid div {
  min-height: 66px;
  padding: 11px;
  background: #F7FAFD;
  border-color: #DCE5EE;
  border-radius: 8px;
}

.recommended-product-body .product-spec-grid dd {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.recommended-product-body .product-actions {
  align-self: end;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 8px;
}

.recommended-product-body .product-actions .btn-small {
  width: 100%;
  min-width: 0;
}

.panel-selector-section {
  position: relative;
  margin-top: clamp(72px, 8vw, 112px);
  padding: clamp(38px, 4.5vw, 58px);
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(42, 103, 177, 0.1), transparent 30%),
    linear-gradient(135deg, #162233 0%, #223247 42%, #F5F7FA 42.2%, #FFFFFF 100%);
  border: 1px solid #C9D6E4;
  border-radius: 20px;
  box-shadow: 0 30px 76px rgba(16, 26, 40, 0.14);
}

.panel-selector-section::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(200, 210, 222, 0.07) 1px, transparent 1px),
    linear-gradient(rgba(200, 210, 222, 0.06) 1px, transparent 1px);
  background-size: 38px 38px;
  clip-path: polygon(0 0, 45% 0, 37% 100%, 0 100%);
}

.panel-selector-section .compact-heading {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.panel-selector-section .compact-heading .eyebrow,
.panel-selector-section .compact-heading h2 {
  color: #ffffff;
}

.panel-selector-section .compact-heading p {
  color: #C8D2DE;
}

.panel-selector-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

.panel-selector-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(240px, 0.43fr) minmax(0, 1fr);
  min-height: 420px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #D3DFEA;
  border-radius: 14px;
  box-shadow: 0 20px 54px rgba(16, 26, 40, 0.12);
}

.panel-selector-media {
  position: relative;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 48%, rgba(42, 103, 177, 0.11), transparent 44%),
    #EEF3F8;
  border-right: 1px solid #DCE5EE;
}

.panel-selector-visual {
  width: min(92%, 270px);
  min-height: 270px;
}

.panel-selector-visual .swap-image {
  object-fit: contain;
  padding: 14px;
}

.panel-selector-media .product-code {
  position: absolute;
  right: 16px;
  bottom: 16px;
  color: #ffffff;
  background: rgba(16, 26, 40, 0.9);
}

.panel-selector-body {
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 14px;
  padding: 30px;
}

.panel-selector-body h3 {
  margin: 0;
  color: #101A28;
  font-size: clamp(24px, 2.1vw, 32px);
  line-height: 1.1;
}

.panel-selector-body p {
  margin: 0;
  color: #526277;
  line-height: 1.62;
}

.panel-selector-facts {
  display: grid;
  gap: 10px;
  margin: 4px 0 0;
}

.panel-selector-facts div {
  padding: 12px;
  background: #F7FAFD;
  border: 1px solid #DCE5EE;
  border-radius: 8px;
}

.panel-selector-facts dt {
  color: #2A67B1;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.panel-selector-facts dd {
  margin: 5px 0 0;
  color: #26374D;
  font-size: 13px;
  font-weight: 760;
  line-height: 1.42;
}

.panel-selector-body .product-actions {
  align-self: end;
}

.panel-size-matrix {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  color: #DCE5EE;
  background: rgba(5, 12, 22, 0.34);
  border: 1px solid rgba(200, 210, 222, 0.2);
  border-radius: 12px;
}

.panel-size-matrix > span {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.panel-size-matrix div {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.panel-size-matrix a {
  min-height: 34px;
  padding: 8px 12px;
  color: #101A28;
  background: #ffffff;
  border: 1px solid #DCE5EE;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 850;
}

.applications-section {
  margin-top: 0;
  padding: clamp(88px, 8vw, 128px) 0;
  background:
    linear-gradient(180deg, #EEF3F8 0%, #F8FAFC 18%, #FFFFFF 100%);
}

.applications-panel {
  border-radius: 24px;
  box-shadow: 0 34px 90px rgba(16, 26, 40, 0.22);
}

.custom-section {
  padding: clamp(92px, 8vw, 128px) 0;
  color: #ffffff;
  background:
    linear-gradient(112deg, #101A28 0%, #162233 50%, #EDF2F7 50.2%, #FFFFFF 100%);
}

.custom-section::before {
  width: 54%;
  background:
    linear-gradient(90deg, rgba(200, 210, 222, 0.09) 1px, transparent 1px),
    linear-gradient(rgba(200, 210, 222, 0.07) 1px, transparent 1px);
  background-size: 36px 36px;
}

.custom-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.84fr);
  gap: clamp(48px, 6vw, 86px);
}

.custom-copy h2 {
  max-width: 680px;
  font-size: clamp(36px, 4.2vw, 58px);
  line-height: 1.02;
}

.custom-copy > p {
  max-width: 600px;
  color: #C8D2DE;
  font-size: 17px;
}

.custom-list {
  max-width: 680px;
  gap: 12px;
}

.custom-list span {
  min-height: 58px;
  color: #EEF4FA;
  background: rgba(5, 12, 22, 0.34);
  border-color: rgba(200, 210, 222, 0.22);
}

.process-panel {
  padding: clamp(34px, 4vw, 46px);
  color: #101A28;
  background:
    linear-gradient(180deg, #ffffff, #F7FAFD);
  border: 1px solid #D3DFEA;
  border-radius: 16px;
  box-shadow: 0 30px 76px rgba(16, 26, 40, 0.18);
}

.process-step {
  background: #F7FAFD;
  border-color: #DCE5EE;
}

.process-step span {
  color: #2A67B1;
  background: #ffffff;
  border-color: #DCE5EE;
}

.contact-section {
  padding: clamp(92px, 8vw, 132px) 0;
  background:
    linear-gradient(180deg, #F5F7FA 0%, #FFFFFF 100%),
    #ffffff;
}

.contact-section::before {
  clip-path: polygon(0 0, 57% 0, 47% 100%, 0 100%);
}

.contact-section::after {
  clip-path: polygon(0 0, 58% 0, 48% 100%, 0 100%);
}

.contact-grid {
  grid-template-columns: minmax(330px, 0.42fr) minmax(0, 1fr);
  gap: clamp(46px, 6vw, 88px);
}

.rfq-heading {
  max-width: 480px;
}

.rfq-heading h2 {
  max-width: 470px;
  font-size: clamp(38px, 3.6vw, 56px);
  line-height: 1.05;
}

.rfq-heading p {
  max-width: 455px;
  color: #C8D2DE;
}

.rfq-promise span {
  color: #DCE5EE;
  background: rgba(5, 12, 22, 0.38);
  border-color: rgba(200, 210, 222, 0.24);
}

.inquiry-form {
  max-width: 1040px;
  border-radius: 16px;
  box-shadow:
    0 34px 86px rgba(13, 21, 34, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

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

  .recommended-product-card {
    min-height: 660px;
  }

  .panel-selector-card {
    grid-template-columns: 1fr;
  }

  .panel-selector-media {
    min-height: 260px;
    border-right: 0;
    border-bottom: 1px solid #DCE5EE;
  }
}

@media (max-width: 1120px) {
  .product-line-main-grid,
  .panel-selector-cards,
  .custom-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .custom-section {
    background:
      linear-gradient(180deg, #101A28 0%, #162233 54%, #EDF2F7 54.2%, #FFFFFF 100%);
  }

  .custom-section::before {
    width: 100%;
    height: 54%;
  }

  .contact-section {
    background:
      linear-gradient(180deg, #101A28 0%, #162233 38%, #F5F7FA 38.2%, #FFFFFF 100%);
  }

  .contact-section::before,
  .contact-section::after {
    inset: 0 0 auto;
    height: 40%;
    clip-path: none;
  }

  .rfq-heading {
    max-width: 760px;
  }
}

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

  .hero h1 {
    font-size: clamp(40px, 12vw, 52px);
  }

  #products .section-shell,
  #featured .section-shell,
  .applications-section .section-shell {
    width: min(100% - 36px, 1440px);
  }

  .product-line-main-card {
    min-height: 0;
    padding: 26px;
    grid-template-rows: auto minmax(250px, auto) auto;
  }

  .product-line-copy h3 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .product-line-media {
    min-height: 250px;
    margin-inline: -4px;
  }

  .product-line-visual {
    min-height: 220px;
  }

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

  .recommended-product-card {
    grid-template-rows: 270px 1fr;
    min-height: 744px;
  }

  .recommended-product-media {
    min-height: 270px;
  }

  .recommended-product-body {
    padding: 24px;
  }

  .recommended-product-body h3,
  .recommended-product-body .product-positioning {
    min-height: 0;
  }

  .panel-selector-section {
    padding: 28px 20px;
    background:
      linear-gradient(180deg, #101A28 0%, #162233 34%, #F5F7FA 34.2%, #FFFFFF 100%);
  }

  .panel-selector-section::before {
    clip-path: none;
    height: 34%;
  }

  .panel-size-matrix {
    grid-template-columns: 1fr;
  }

  .custom-section {
    background:
      linear-gradient(180deg, #101A28 0%, #162233 58%, #EDF2F7 58.2%, #FFFFFF 100%);
  }

  .custom-section::before {
    height: 58%;
  }

  .contact-section {
    background:
      linear-gradient(180deg, #101A28 0%, #162233 34%, #F5F7FA 34.2%, #FFFFFF 100%);
  }

  .contact-section::before,
  .contact-section::after {
    height: 36%;
  }

  .rfq-heading h2 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .inquiry-form {
    border-radius: 14px;
  }
}

/* Precision Industrial Layout: appearance-only correction */
:root {
  --precision-shell: 1200px;
  --precision-border: #d9e2ea;
  --precision-soft: #f5f7fa;
  --precision-text: #4b5a6d;
}

.section {
  padding-top: clamp(80px, 7vw, 100px);
  padding-bottom: clamp(80px, 7vw, 100px);
}

.section-shell,
#products .section-shell,
#featured .section-shell,
.applications-section .section-shell,
.contact-grid {
  width: min(100% - 48px, var(--precision-shell));
  max-width: var(--precision-shell);
}

.section-heading,
.compact-heading {
  margin-bottom: 34px;
}

.section-heading h2,
.compact-heading h2 {
  color: #101A28;
  letter-spacing: 0;
}

.section-heading p,
.compact-heading p {
  color: var(--precision-text);
  line-height: 1.68;
}

.eyebrow {
  color: #2A67B1;
}

.hero {
  min-height: 720px;
  background:
    linear-gradient(90deg, rgba(12, 20, 32, 0.88) 0%, rgba(16, 26, 40, 0.76) 46%, rgba(16, 26, 40, 0.32) 76%, rgba(16, 26, 40, 0.06) 100%),
    url("/banners/banner1.webp") center center / cover no-repeat,
    #101A28;
}

.hero .section-shell {
  width: min(100% - 48px, var(--precision-shell));
}

.hero-copy {
  max-width: 760px;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(46px, 4.6vw, 70px);
  line-height: 1.02;
}

.hero-lede {
  max-width: 640px;
  color: #d7e0ea;
}

.hero-capability-tags span {
  color: #edf3f8;
  background: rgba(13, 24, 38, 0.48);
  border-color: rgba(200, 210, 222, 0.24);
}

#advantages {
  background: #ffffff;
}

#advantages .feature-card {
  min-height: 188px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--precision-border);
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(10, 18, 32, 0.035);
}

#advantages .feature-card::before {
  display: none;
}

#advantages .feature-card:hover {
  border-color: #b8cce6;
  box-shadow: 0 12px 26px rgba(10, 18, 32, 0.055);
}

#advantages .card-icon {
  color: #2A67B1;
  background: #f7f9fb;
  border-color: var(--precision-border);
}

#products {
  background: var(--precision-soft);
}

#products::before {
  display: none;
}

.product-line-grid {
  gap: 28px;
}

.product-line-main-grid {
  gap: 28px;
}

.product-line-main-card,
.product-line-support-card {
  border: 1px solid var(--precision-border);
  border-radius: 12px;
  box-shadow: 0 18px 42px rgba(16, 26, 40, 0.08);
}

.product-line-main-card {
  grid-template-rows: auto 300px auto;
  min-height: 620px;
  padding: 32px;
  background: #ffffff;
}

.product-line-main-card::before,
.product-line-support-card::before {
  height: 3px;
  background: linear-gradient(90deg, #2A67B1, rgba(42, 103, 177, 0.12));
}

.product-line-copy h3 {
  font-size: clamp(30px, 3vw, 40px);
}

.product-line-copy > p:first-of-type {
  color: #25364d;
  font-size: 16px;
}

.product-line-media {
  min-height: 300px;
  margin: 8px 0 0;
}

.product-line-media::before {
  inset: 20px 0 8px;
  background:
    radial-gradient(circle at 50% 48%, rgba(42, 103, 177, 0.06), transparent 42%),
    #f7f9fb;
  border: 1px solid #e2e8f0;
}

.product-line-visual {
  width: min(94%, 420px);
  min-height: 260px;
}

.product-line-support-card {
  min-height: 170px;
  padding: 26px 30px;
  background: #ffffff;
}

.product-line-support-media {
  min-height: 118px;
  background: #f7f9fb;
}

#featured {
  background: #ffffff;
}

#featured::before {
  display: none;
}

#featured .section-heading-row {
  align-items: end;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--precision-border);
}

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

.recommended-product-card {
  grid-template-rows: 260px 1fr;
  min-height: 660px;
  border: 1px solid var(--precision-border);
  border-radius: 12px;
  box-shadow: 0 16px 38px rgba(16, 26, 40, 0.075);
}

.recommended-product-media {
  min-height: 260px;
  background:
    radial-gradient(circle at 50% 48%, rgba(42, 103, 177, 0.07), transparent 42%),
    #f7f9fb;
  border-bottom: 1px solid var(--precision-border);
}

.recommended-product-visual {
  width: min(92%, 280px);
  min-height: 220px;
}

.recommended-product-body {
  padding: 24px;
}

.recommended-product-body h3 {
  color: #101A28;
  font-size: 21px;
}

.recommended-product-body .product-spec-grid div {
  min-height: 62px;
  background: #f8fafc;
  border-color: #e0e7ef;
}

.panel-selector-section {
  margin-top: 88px;
  padding: 40px;
  background: var(--precision-soft);
  border: 1px solid var(--precision-border);
  border-radius: 14px;
  box-shadow: none;
}

.panel-selector-section::before {
  display: none;
}

.panel-selector-section .compact-heading {
  max-width: 760px;
}

.panel-selector-section .compact-heading .eyebrow {
  color: #2A67B1;
}

.panel-selector-section .compact-heading h2 {
  color: #101A28;
}

.panel-selector-section .compact-heading p {
  color: var(--precision-text);
}

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

.panel-selector-card {
  grid-template-columns: 1fr;
  min-height: 650px;
  background: #ffffff;
  border: 1px solid var(--precision-border);
  border-radius: 12px;
  box-shadow: 0 16px 38px rgba(16, 26, 40, 0.075);
}

.panel-selector-media {
  min-height: 270px;
  background: #f7f9fb;
  border-right: 0;
  border-bottom: 1px solid var(--precision-border);
}

.panel-selector-visual {
  width: min(90%, 360px);
  min-height: 230px;
}

.panel-selector-body {
  padding: 28px;
}

.panel-selector-facts div {
  background: #f8fafc;
  border-color: #e0e7ef;
}

.panel-size-matrix {
  grid-template-columns: auto 1fr;
  padding: 18px 20px;
  color: #25364d;
  background: #ffffff;
  border: 1px solid var(--precision-border);
  border-radius: 10px;
}

.panel-size-matrix > span::after {
  content: ":";
}

.panel-size-matrix a {
  min-height: 32px;
  color: #25364d;
  background: #f8fafc;
  border-color: #dfe7ef;
}

.applications-section {
  padding: clamp(80px, 7vw, 100px) 0;
  background: #ffffff;
}

.applications-section .section-shell {
  width: min(100% - 48px, var(--precision-shell));
}

.applications-section::before {
  display: none;
}

.applications-panel {
  padding: 40px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0)),
    linear-gradient(135deg, #101A28, #162233 60%, #1B2A3C);
  border-radius: 14px;
  box-shadow: 0 24px 62px rgba(16, 26, 40, 0.2);
}

.applications-section .application-grid {
  grid-template-columns: minmax(230px, 0.28fr) minmax(0, 1fr);
  gap: 28px;
}

.application-tab {
  border-radius: 8px;
}

.application-detail {
  border-radius: 10px;
}

.custom-section {
  padding: clamp(80px, 7vw, 100px) 0;
  background:
    linear-gradient(90deg, rgba(200,210,222,0.055) 1px, transparent 1px),
    linear-gradient(rgba(200,210,222,0.045) 1px, transparent 1px),
    linear-gradient(135deg, #101A28, #162233 58%, #1B2A3C);
  background-size: 40px 40px, 40px 40px, auto;
}

.custom-section::before {
  display: none;
}

.custom-grid {
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.86fr);
  gap: 48px;
}

.custom-copy h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
}

.custom-copy > p {
  color: #C8D2DE;
}

.custom-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.custom-list span {
  min-height: 54px;
  background: rgba(5, 12, 22, 0.28);
  border-color: rgba(200, 210, 222, 0.18);
}

.process-panel {
  background: #ffffff;
  border: 1px solid var(--precision-border);
  border-radius: 12px;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.22);
}

.contact-section:not(.detail-rfq-section) {
  padding: clamp(80px, 7vw, 100px) 0;
  background: var(--precision-soft);
}

.contact-section:not(.detail-rfq-section)::before,
.contact-section:not(.detail-rfq-section)::after {
  display: none;
}

.contact-section:not(.detail-rfq-section) .contact-grid {
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.38fr 0.62fr;
  gap: 0;
  align-items: stretch;
  background: #ffffff;
  border: 1px solid var(--precision-border);
  border-radius: 16px;
  box-shadow: 0 24px 62px rgba(16, 26, 40, 0.13);
}

.contact-section:not(.detail-rfq-section) .rfq-heading {
  align-self: stretch;
  display: grid;
  align-content: center;
  max-width: none;
  min-height: 100%;
  padding: clamp(34px, 3.2vw, 40px);
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(200,210,222,0.075) 1px, transparent 1px),
    linear-gradient(rgba(200,210,222,0.06) 1px, transparent 1px),
    linear-gradient(135deg, #101A28, #162233);
  background-size: 34px 34px, 34px 34px, auto;
}

.contact-section:not(.detail-rfq-section) .rfq-heading h2 {
  max-width: 390px;
  color: #ffffff;
  font-size: clamp(32px, 3vw, 46px);
}

.contact-section:not(.detail-rfq-section) .rfq-heading p {
  max-width: 420px;
  color: #C8D2DE;
}

.contact-section:not(.detail-rfq-section) .rfq-heading .eyebrow {
  color: #DCE5EE;
}

.contact-section:not(.detail-rfq-section) .inquiry-form {
  align-self: stretch;
  box-sizing: border-box;
  max-width: none;
  width: 100%;
  min-height: 100%;
  margin: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

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

@media (max-width: 900px) {
  .product-line-main-grid,
  .panel-selector-cards,
  .applications-section .application-grid,
  .custom-grid,
  .contact-section:not(.detail-rfq-section) .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-section:not(.detail-rfq-section) .rfq-heading {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .section-shell,
  #products .section-shell,
  #featured .section-shell,
  .applications-section .section-shell,
  .contact-grid {
    width: min(100% - 36px, var(--precision-shell));
  }

  .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .hero {
    min-height: 680px;
  }

  .product-line-main-card,
  .recommended-product-card,
  .panel-selector-card {
    min-height: 0;
  }

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

  .recommended-product-card {
    grid-template-rows: 250px 1fr;
    min-height: 711px;
  }

  .recommended-product-media {
    min-height: 250px;
  }

  .panel-selector-section,
  .applications-panel {
    padding: 24px;
  }

  .panel-size-matrix {
    grid-template-columns: 1fr;
  }

  .custom-list {
    grid-template-columns: 1fr;
  }

  .contact-section:not(.detail-rfq-section) .rfq-heading,
  .contact-section:not(.detail-rfq-section) .inquiry-form {
    padding: 28px;
  }
}

/* Visual energy pass: stronger applications, cleaner headings */
#featured .section-heading h2,
.panel-selector-section .compact-heading h2,
.applications-panel .section-heading h2,
.custom-copy h2,
.contact-section:not(.detail-rfq-section) .rfq-heading h2 {
  max-width: 820px;
  text-wrap: balance;
}

#featured .section-heading p,
.panel-selector-section .compact-heading p,
.applications-panel .section-heading p,
.custom-copy > p,
.contact-section:not(.detail-rfq-section) .rfq-heading p {
  max-width: 760px;
}

.applications-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(96px, 8vw, 132px) 0;
  background:
    linear-gradient(90deg, rgba(200, 210, 222, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(200, 210, 222, 0.045) 1px, transparent 1px),
    linear-gradient(135deg, #101A28 0%, #162233 56%, #1B2A3C 100%);
  background-size: 46px 46px, 46px 46px, auto;
}

.applications-section::before {
  display: block;
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    radial-gradient(circle at 18% 16%, rgba(42, 103, 177, 0.16), transparent 32%),
    radial-gradient(circle at 82% 24%, rgba(255, 255, 255, 0.08), transparent 30%);
}

.applications-section::after {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  width: min(34vw, 460px);
  height: 100%;
  content: "";
  background: rgba(255, 255, 255, 0.055);
  clip-path: polygon(28% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.applications-section .section-shell {
  position: relative;
  z-index: 1;
  width: min(100% - 56px, 1280px);
  max-width: 1280px;
}

.applications-panel {
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.applications-panel::before {
  display: none;
}

.applications-panel .section-heading {
  max-width: 850px;
  margin-bottom: 40px;
}

.applications-panel .section-heading h2 {
  color: #ffffff;
  font-size: clamp(38px, 4.1vw, 62px);
  line-height: 1.04;
}

.applications-panel .section-heading p {
  color: #C8D2DE;
  font-size: 17px;
}

.applications-panel .eyebrow {
  color: #DCE5EE;
}

.applications-section .application-grid {
  display: grid;
  grid-template-columns: minmax(230px, 0.24fr) minmax(0, 1fr);
  gap: 30px;
  align-items: stretch;
}

.application-tabs {
  gap: 12px;
}

.application-tab {
  min-height: 72px;
  background: rgba(5, 12, 22, 0.28);
  border-color: rgba(200, 210, 222, 0.18);
}

.application-tab:hover,
.application-tab:focus-visible,
.application-tab.is-active {
  background:
    linear-gradient(90deg, rgba(42, 103, 177, 0.2), rgba(255,255,255,0.07)),
    rgba(5, 12, 22, 0.34);
}

.application-detail {
  display: grid;
  grid-template-columns: minmax(520px, 0.6fr) minmax(0, 0.4fr);
  grid-template-rows: auto;
  min-height: 540px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.105), rgba(255,255,255,0.045)),
    rgba(255,255,255,0.05);
  border: 1px solid rgba(200, 210, 222, 0.18);
  border-radius: 14px;
  box-shadow: 0 30px 76px rgba(0, 0, 0, 0.28);
}

.application-media {
  height: auto;
  min-height: 540px;
  border-radius: 14px 0 0 14px;
}

.application-detail-body {
  align-content: center;
  padding: clamp(32px, 3.6vw, 52px);
}

.application-detail h3 {
  max-width: 520px;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.08;
  text-wrap: balance;
}

.application-summary,
.application-spec p,
.application-actions > span {
  color: #D6DEE8;
}

.application-info-grid {
  grid-template-columns: 1fr;
}

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

.custom-section::after {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  width: min(28vw, 390px);
  height: 100%;
  content: "";
  background: rgba(255,255,255,0.055);
  clip-path: polygon(32% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.custom-grid {
  position: relative;
  z-index: 1;
}

.custom-copy h2 {
  max-width: 680px;
  font-size: clamp(34px, 3.6vw, 52px);
  line-height: 1.08;
}

.custom-copy > p {
  max-width: 650px;
}

.custom-list {
  gap: 14px;
}

.custom-list span {
  min-height: 60px;
  line-height: 1.5;
}

.process-panel {
  align-self: center;
}

.contact-section:not(.detail-rfq-section) .rfq-heading {
  position: relative;
  overflow: hidden;
}

.contact-section:not(.detail-rfq-section) .rfq-heading::after {
  position: absolute;
  top: 0;
  right: -18%;
  width: 48%;
  height: 100%;
  content: "";
  background: rgba(255,255,255,0.06);
  clip-path: polygon(42% 0, 100% 0, 58% 100%, 0 100%);
  pointer-events: none;
}

.contact-section:not(.detail-rfq-section) .rfq-heading > * {
  position: relative;
  z-index: 1;
}

.contact-section:not(.detail-rfq-section) .rfq-heading h2 {
  max-width: 420px;
  font-size: clamp(32px, 2.9vw, 44px);
  line-height: 1.08;
}

.contact-section:not(.detail-rfq-section) .rfq-heading p {
  max-width: 455px;
}

.recommended-product-grid {
  gap: 26px;
}

.recommended-product-card {
  grid-template-rows: 240px 1fr;
  min-height: 690px;
}

.recommended-product-media {
  min-height: 240px;
}

.recommended-product-visual {
  width: min(85%, 300px);
  min-height: 210px;
}

.recommended-product-body {
  padding: 26px;
}

.recommended-product-body h3 {
  min-height: 52px;
  font-size: 22px;
  text-wrap: balance;
}

.recommended-product-body .product-positioning {
  min-height: 48px;
}

.recommended-product-body .product-spec-grid dd {
  max-width: 100%;
}

.panel-selector-card {
  min-height: 700px;
}

.panel-selector-media {
  min-height: 285px;
  background:
    radial-gradient(circle at 50% 48%, rgba(42,103,177,0.07), transparent 42%),
    #f8fafc;
}

.panel-selector-media .product-code,
.panel-selector-body .series-kicker {
  justify-self: start;
}

.panel-selector-body {
  gap: 16px;
}

.panel-size-matrix {
  background:
    linear-gradient(180deg, #ffffff, #f8fafc);
  box-shadow: 0 12px 30px rgba(16, 26, 40, 0.06);
}

.panel-size-matrix > span {
  color: #101A28;
}

.panel-size-matrix a {
  color: #2A67B1;
  border-color: rgba(42,103,177,0.18);
}

@media (max-width: 1180px) {
  .application-detail {
    grid-template-columns: 1fr;
  }

  .application-media {
    min-height: 430px;
    border-radius: 14px 14px 0 0;
  }
}

@media (max-width: 900px) {
  .applications-section .application-grid {
    grid-template-columns: 1fr;
  }

  .application-tabs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .application-tab {
    flex: 0 0 min(78vw, 280px);
  }

  .custom-section::after,
  .applications-section::after {
    opacity: 0.6;
  }
}

@media (max-width: 760px) {
  .applications-section .section-shell {
    width: min(100% - 36px, 1280px);
  }

  .applications-panel .section-heading h2 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .application-media {
    min-height: 300px;
  }

  .application-detail-body {
    padding: 26px;
  }

  .recommended-product-card {
    grid-template-rows: 240px 1fr;
    min-height: 700px;
  }

  .recommended-product-media {
    min-height: 240px;
  }

  .panel-selector-card {
    min-height: 0;
  }

  .panel-selector-media {
    min-height: 250px;
  }

  .contact-section:not(.detail-rfq-section) .rfq-heading h2 {
    font-size: clamp(32px, 9vw, 42px);
  }
}

/* Header + Hero product showcase refinement */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(22px, 3vw, 42px);
  width: 100%;
  min-height: 82px;
  padding: 14px clamp(28px, 5vw, 72px);
  color: #121b2a;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(16, 26, 40, 0.08);
  box-shadow: 0 18px 44px rgba(16, 26, 40, 0.06);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 48px rgba(16, 26, 40, 0.1);
}

.brand {
  gap: 12px;
}

.brand-mark {
  width: 50px;
  height: 42px;
  padding: 5px;
  background: #ffffff;
  border: 1px solid rgba(16, 26, 40, 0.08);
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(16, 26, 40, 0.08);
}

.brand strong {
  color: #101A28;
  font-size: 17px;
  letter-spacing: 0.13em;
}

.brand small {
  color: #56657a;
  font-size: 11px;
  letter-spacing: 0.18em;
}

.site-nav {
  gap: clamp(22px, 3vw, 42px);
  color: #273548;
  font-size: 15px;
  font-weight: 720;
}

.site-nav a {
  padding: 12px 0;
}

.site-nav a::after {
  bottom: 7px;
  height: 2px;
  background: #2A67B1;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #0f4fa3;
}

.header-quote {
  min-height: 48px;
  padding: 0 24px;
  color: #ffffff;
  font-size: 15px;
  border-color: rgba(42, 103, 177, 0.28);
  border-radius: 8px;
  background: #0f57c8;
  box-shadow: 0 14px 30px rgba(42, 103, 177, 0.24);
}

.header-quote:hover,
.header-quote:focus-visible {
  background: #0b4eb9;
  box-shadow: 0 18px 36px rgba(42, 103, 177, 0.3);
}

.nav-toggle {
  color: #101A28;
  border-color: rgba(16, 26, 40, 0.16);
}

.hero {
  min-height: calc(100vh - 82px);
  padding: clamp(72px, 7vw, 104px) 0 clamp(70px, 7vw, 104px);
  background:
    radial-gradient(circle at 76% 46%, rgba(42, 103, 177, 0.12), transparent 34%),
    linear-gradient(115deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.96) 46%, rgba(238, 243, 248, 0.92) 100%),
    #f8fafc;
}

.hero::before {
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82) 46%, rgba(244, 248, 252, 0.48) 100%),
    radial-gradient(circle at 70% 22%, rgba(42, 103, 177, 0.08), transparent 28%);
}

.hero::after {
  inset: auto 0 0 auto;
  z-index: -1;
  width: min(58vw, 980px);
  height: 100%;
  opacity: 1;
  background:
    linear-gradient(120deg, transparent 0 22%, rgba(232, 238, 245, 0.54) 22.2% 58%, transparent 58.2% 100%),
    linear-gradient(rgba(42, 103, 177, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42, 103, 177, 0.035) 1px, transparent 1px);
  background-size: 100% 100%, 48px 48px, 48px 48px;
  mask-image: linear-gradient(90deg, transparent, #000 22%, #000 100%);
  animation: none;
}

.hero .section-shell {
  width: min(1280px, calc(100% - 72px));
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: clamp(42px, 5vw, 82px);
}

.hero-copy {
  position: relative;
  top: auto;
  left: auto;
  translate: none;
  max-width: 650px;
  padding: 0;
}

.hero .eyebrow {
  margin-bottom: 20px;
  color: #2A67B1;
  font-size: 12px;
  letter-spacing: 0.18em;
}

.hero h1 {
  max-width: 650px;
  margin-bottom: 28px;
  color: #111b2b;
  font-size: clamp(52px, 4.55vw, 74px);
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero h1::after {
  display: block;
  width: 58px;
  height: 4px;
  margin-top: 28px;
  content: "";
  background: #0f57c8;
  border-radius: 999px;
}

.hero-lede {
  max-width: 560px;
  margin-bottom: 28px;
  color: #4c596b;
  font-size: clamp(18px, 1.35vw, 21px);
  line-height: 1.78;
}

.hero-capability-tags {
  gap: 10px;
  max-width: 620px;
  margin-bottom: 34px;
}

.hero-capability-tags span {
  min-height: 36px;
  padding: 8px 13px;
  color: #263548;
  font-size: 12px;
  font-weight: 760;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(42, 103, 177, 0.14);
  box-shadow: 0 10px 22px rgba(16, 26, 40, 0.05);
}

.hero-actions {
  gap: 16px;
}

.hero-actions .btn-primary {
  min-width: 172px;
  min-height: 56px;
  background: #0f57c8;
  box-shadow: 0 18px 34px rgba(42, 103, 177, 0.28);
}

.hero-actions .btn-secondary {
  min-width: 168px;
  min-height: 56px;
  color: #0f57c8;
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(42, 103, 177, 0.42);
  box-shadow: 0 12px 24px rgba(16, 26, 40, 0.04);
}

.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy .hero-lede,
.hero-copy .hero-capability-tags,
.hero-copy .hero-actions {
  color: inherit;
}

.hero-visual {
  position: relative;
  min-height: clamp(520px, 45vw, 640px);
}

.hero-product-composition {
  position: absolute;
  inset: 0;
  isolation: isolate;
}

.hero-product-composition::before {
  position: absolute;
  right: 6%;
  bottom: 3%;
  z-index: -2;
  width: 86%;
  height: 18%;
  content: "";
  background: radial-gradient(ellipse, rgba(16, 26, 40, 0.22), rgba(16, 26, 40, 0.08) 52%, transparent 72%);
  filter: blur(12px);
  transform: rotate(-2deg);
}

.hero-product-composition::after {
  position: absolute;
  right: 2%;
  top: 4%;
  z-index: -3;
  width: 78%;
  height: 82%;
  content: "";
  background: linear-gradient(135deg, rgba(255,255,255,0.46), rgba(226,233,241,0.48));
  border: 1px solid rgba(42,103,177,0.08);
  border-radius: 34px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.78);
}

.hero-panel-product,
.hero-box-product {
  position: absolute;
  display: block;
  height: auto;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
}

.hero-panel-product {
  top: 2%;
  right: -1%;
  z-index: 1;
  width: min(58%, 470px);
  filter: drop-shadow(0 28px 42px rgba(16, 26, 40, 0.18));
}

.hero-box-product {
  right: 16%;
  bottom: 4%;
  z-index: 2;
  width: min(82%, 670px);
  filter: drop-shadow(0 32px 42px rgba(16, 26, 40, 0.2));
}

@media (min-width: 1600px) {
  .hero .section-shell {
    width: min(1420px, calc(100% - 112px));
  }

  .hero-grid {
    grid-template-columns: minmax(520px, 0.88fr) minmax(720px, 1.12fr);
  }

  .hero h1 {
    max-width: 720px;
    font-size: 78px;
  }

  .hero-lede {
    max-width: 620px;
  }

  .hero-visual {
    min-height: 680px;
  }

  .hero-panel-product {
    width: min(56%, 520px);
  }

  .hero-box-product {
    width: min(82%, 760px);
  }
}

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

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    min-height: 520px;
    max-width: 820px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto auto;
    min-height: 72px;
    padding: 12px 20px;
  }

  .site-nav {
    top: 74px;
    left: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(16, 26, 40, 0.1);
    box-shadow: 0 22px 46px rgba(16, 26, 40, 0.16);
  }

  .site-nav a {
    color: #182436;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    color: #0f57c8;
    background: #f3f7fb;
  }

  .hero {
    min-height: auto;
    padding: 72px 0 68px;
  }

  .hero .section-shell {
    width: min(100% - 36px, 760px);
  }

  .hero h1 {
    max-width: 720px;
    font-size: clamp(42px, 9vw, 62px);
  }
}

@media (max-width: 620px) {
  .brand-mark {
    width: 42px;
    height: 36px;
  }

  .brand strong {
    font-size: 14px;
  }

  .brand small {
    font-size: 9px;
  }

  .hero {
    padding: 58px 0 56px;
  }

  .hero h1 {
    margin-bottom: 22px;
    font-size: clamp(38px, 10vw, 48px);
    line-height: 1.1;
  }

  .hero h1::after {
    width: 48px;
    height: 3px;
    margin-top: 22px;
  }

  .hero-lede {
    font-size: 17px;
    line-height: 1.68;
  }

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

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
    min-width: 0;
  }

  .hero-visual {
    min-height: 360px;
    margin-top: 4px;
  }

  .hero-product-composition::after {
    right: -4%;
    top: 8%;
    width: 92%;
    height: 76%;
    border-radius: 24px;
  }

  .hero-panel-product {
    top: 8%;
    right: -6%;
    width: 62%;
  }

  .hero-box-product {
    right: 12%;
    bottom: 8%;
    width: 90%;
  }
}

/* Clean premium hardware hero correction */
.hero {
  min-height: clamp(690px, calc(100vh - 82px), 840px);
  padding: clamp(64px, 6vw, 92px) 0 clamp(58px, 6vw, 88px);
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 45%, rgba(42, 103, 177, 0.1), transparent 34%),
    linear-gradient(110deg, #ffffff 0%, #ffffff 44%, #f4f7fb 100%);
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(255,255,255,0.96), rgba(255,255,255,0.72) 48%, rgba(244,247,251,0.12)),
    linear-gradient(rgba(42,103,177,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42,103,177,0.03) 1px, transparent 1px);
  background-size: 100% 100%, 64px 64px, 64px 64px;
}

.hero::after {
  right: 0;
  width: min(54vw, 920px);
  background:
    linear-gradient(118deg, transparent 0 32%, rgba(226, 234, 243, 0.48) 32.2% 62%, transparent 62.2% 100%);
  mask-image: none;
}

.hero .section-shell {
  width: min(1440px, calc(100% - 112px));
}

.hero-grid {
  grid-template-columns: minmax(510px, 0.82fr) minmax(620px, 1.18fr);
  gap: clamp(36px, 4vw, 70px);
}

.hero-copy {
  max-width: 680px;
  color: #101A28;
}

.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy .hero-lede,
.hero-copy .hero-capability-tags,
.hero-copy .hero-actions {
  opacity: 1;
  transform: none;
  animation: none;
}

.hero .eyebrow {
  color: #6b7686;
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.18em;
}

.hero h1 {
  display: grid;
  gap: 4px;
  max-width: 680px;
  margin-bottom: 24px;
  color: #101A28;
  font-size: clamp(48px, 4.1vw, 70px);
  font-weight: 560;
  line-height: 1.12;
  letter-spacing: 0;
  text-wrap: normal;
}

.hero h1 span {
  display: block;
}

.hero h1 em {
  color: #1558c9;
  font-style: normal;
  font-weight: 560;
}

.hero h1::after {
  width: 58px;
  height: 4px;
  margin-top: 22px;
  background: #1558c9;
}

.hero-lede {
  max-width: 560px;
  margin-bottom: 26px;
  color: #445163;
  font-size: clamp(17px, 1.15vw, 20px);
  line-height: 1.7;
}

.hero-capability-tags {
  margin-bottom: 30px;
}

.hero-capability-tags span {
  color: #253246;
  background: #ffffff;
  border-color: #d9e2ea;
  box-shadow: 0 8px 20px rgba(16, 26, 40, 0.05);
}

.hero-actions .btn-primary {
  background: #1558c9;
  box-shadow: 0 16px 32px rgba(21, 88, 201, 0.24);
}

.hero-actions .btn-secondary {
  color: #1558c9;
  background: #ffffff;
  border-color: rgba(21, 88, 201, 0.44);
}

.hero-visual {
  min-height: clamp(500px, 42vw, 630px);
}

.hero-product-composition::after {
  top: 10%;
  right: 0;
  width: 78%;
  height: 72%;
  background: rgba(255, 255, 255, 0.54);
  border-color: rgba(42, 103, 177, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    0 28px 70px rgba(16, 26, 40, 0.08);
}

.hero-panel-product {
  top: 7%;
  right: 2%;
  width: min(56%, 470px);
}

.hero-box-product {
  right: 11%;
  bottom: 7%;
  width: min(86%, 720px);
}

@media (min-width: 1600px) {
  .hero {
    min-height: 850px;
  }

  .hero-grid {
    grid-template-columns: minmax(620px, 0.82fr) minmax(760px, 1.18fr);
  }

  .hero h1 {
    max-width: 740px;
    font-size: 72px;
  }

  .hero-visual {
    min-height: 680px;
  }
}

@media (max-width: 1240px) {
  .hero .section-shell {
    width: min(100% - 56px, 1120px);
  }

  .hero-grid {
    grid-template-columns: minmax(440px, 0.88fr) minmax(480px, 1.12fr);
  }

  .hero h1 {
    font-size: clamp(42px, 4vw, 58px);
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    padding: 58px 0 64px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero h1 {
    max-width: 720px;
    font-size: clamp(42px, 7.2vw, 58px);
  }

  .hero-visual {
    min-height: 460px;
    max-width: 760px;
  }
}

@media (max-width: 620px) {
  .hero {
    padding: 40px 0 48px;
  }

  .hero .section-shell {
    width: min(100% - 32px, 520px);
  }

  .hero h1 {
    gap: 2px;
    max-width: 350px;
    margin-bottom: 18px;
    font-size: clamp(34px, 9vw, 42px);
    line-height: 1.12;
  }

  .hero h1::after {
    margin-top: 18px;
  }

  .hero-lede {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.58;
  }

  .hero-capability-tags {
    margin-bottom: 22px;
  }

  .hero-capability-tags span {
    min-height: 32px;
    font-size: 11px;
  }

  .hero-visual {
    min-height: 310px;
  }

  .hero-product-composition::after {
    top: 7%;
    right: -7%;
    width: 94%;
    height: 72%;
  }

  .hero-panel-product {
    top: 7%;
    right: -4%;
    width: 57%;
  }

  .hero-box-product {
    right: 8%;
    bottom: 8%;
    width: 92%;
  }
}

/* Reference-style clean hero: light header, white stage, real product composition */
.site-header {
  min-height: 118px;
  padding: 26px clamp(42px, 5.6vw, 82px) 18px;
  color: #101828;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 0;
  box-shadow: none;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 12px 32px rgba(16, 26, 40, 0.06);
}

.brand-mark {
  display: none;
}

.brand {
  gap: 0;
}

.brand strong {
  color: #101828;
  font-size: clamp(25px, 1.7vw, 34px);
  font-weight: 500;
  letter-spacing: 0.22em;
}

.brand small {
  margin-top: 8px;
  color: #101828;
  font-size: clamp(9px, 0.68vw, 12px);
  font-weight: 650;
  letter-spacing: 0.32em;
}

.site-nav {
  justify-self: end;
  gap: clamp(46px, 4vw, 78px);
  margin-right: clamp(22px, 2.6vw, 48px);
  color: #101828;
  font-size: clamp(17px, 1vw, 20px);
  font-weight: 450;
}

.site-nav a {
  padding: 14px 0;
}

.site-nav a::after {
  display: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #0f57c8;
}

.header-quote {
  min-height: 54px;
  padding: 0 31px;
  font-size: clamp(16px, 0.95vw, 19px);
  font-weight: 520;
  color: #ffffff;
  background: #0f57d6;
  border: 1px solid rgba(15, 87, 214, 0.35);
  border-radius: 6px;
  box-shadow: 0 12px 28px rgba(15, 87, 214, 0.18);
}

.header-quote:hover,
.header-quote:focus-visible {
  background: #0b4ec5;
}

.hero {
  min-height: calc(100vh - 118px);
  padding: clamp(68px, 7vw, 118px) 0 clamp(44px, 5vw, 78px);
  background:
    linear-gradient(90deg, #ffffff 0%, #ffffff 44%, rgba(246, 248, 251, 0.72) 100%),
    #ffffff;
}

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

.hero .section-shell {
  width: min(1680px, calc(100% - 112px));
}

.hero-grid {
  grid-template-columns: minmax(520px, 0.68fr) minmax(720px, 1.32fr);
  gap: clamp(30px, 3.5vw, 74px);
}

.hero-copy {
  max-width: 700px;
  align-self: center;
  color: #101828;
}

.hero-copy .eyebrow {
  display: none;
}

.hero h1 {
  display: block;
  max-width: 720px;
  margin: 0 0 28px;
  color: #101828;
  font-size: clamp(56px, 3.45vw, 74px);
  font-weight: 390;
  line-height: 1.17;
  letter-spacing: 0;
  text-wrap: normal;
}

.hero h1 span {
  display: inline;
}

.hero h1 span:first-child::after {
  content: "\A";
  white-space: pre;
}

.hero h1 em {
  color: #0f57d6;
  font-style: normal;
  font-weight: 390;
}

.hero h1::after {
  display: block;
  width: 60px;
  height: 4px;
  margin-top: 31px;
  content: "";
  background: #0f57d6;
  border-radius: 999px;
}

.hero-lede {
  max-width: 520px;
  margin: 0 0 56px;
  color: #404852;
  font-size: clamp(20px, 1.15vw, 24px);
  font-weight: 380;
  line-height: 1.58;
}

.hero-capability-tags {
  display: none;
}

.hero-actions {
  display: flex;
  gap: 28px;
}

.hero-actions .btn-primary,
.hero-actions .btn-secondary {
  min-width: 232px;
  min-height: 61px;
  padding: 0 29px;
  border-radius: 6px;
  font-size: clamp(17px, 1vw, 20px);
  font-weight: 430;
}

.hero-actions .btn-primary {
  color: #ffffff;
  background: #0f57d6;
  border-color: #0f57d6;
  box-shadow: 0 12px 26px rgba(15, 87, 214, 0.18);
}

.hero-actions .btn-primary::after,
.hero-actions .btn-secondary::after {
  margin-left: auto;
  content: ">";
  font-size: 24px;
  line-height: 1;
}

.hero-actions .btn-secondary {
  color: #0f57d6;
  background: #ffffff;
  border-color: rgba(15, 87, 214, 0.78);
  box-shadow: none;
}

.hero-visual {
  min-height: clamp(540px, 42vw, 690px);
  align-self: center;
}

.hero-product-composition::after {
  display: none;
}

.hero-product-composition::before {
  right: 0;
  bottom: 1%;
  z-index: -1;
  width: 88%;
  height: 20%;
  background: radial-gradient(ellipse, rgba(16, 26, 40, 0.2), rgba(16, 26, 40, 0.08) 46%, transparent 72%);
  filter: blur(14px);
}

.hero-panel-product {
  top: -1%;
  right: 2%;
  width: min(50%, 560px);
  filter: drop-shadow(0 30px 42px rgba(16, 26, 40, 0.16));
}

.hero-box-product {
  right: 31%;
  bottom: 3%;
  width: min(74%, 820px);
  filter: drop-shadow(0 32px 40px rgba(16, 26, 40, 0.18));
}

@media (min-width: 1700px) {
  .hero h1 {
    font-size: 76px;
  }

  .hero-lede {
    font-size: 24px;
  }

  .hero-visual {
    min-height: 700px;
  }

  .hero-panel-product {
    width: min(51%, 620px);
  }

  .hero-box-product {
    width: min(76%, 920px);
  }
}

@media (max-width: 1280px) {
  .site-header {
    min-height: 94px;
    padding-inline: 34px;
  }

  .site-nav {
    gap: 34px;
    margin-right: 18px;
    font-size: 16px;
  }

  .hero {
    min-height: calc(100vh - 94px);
  }

  .hero .section-shell {
    width: min(100% - 72px, 1180px);
  }

  .hero-grid {
    grid-template-columns: minmax(430px, 0.74fr) minmax(510px, 1.26fr);
  }

  .hero h1 {
    font-size: clamp(46px, 4.2vw, 58px);
  }

  .hero-lede {
    margin-bottom: 40px;
    font-size: 18px;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    min-width: 190px;
  }

  .hero-panel-product {
    width: 52%;
  }

  .hero-box-product {
    right: 25%;
    width: 78%;
  }
}

@media (max-width: 980px) {
  .site-header {
    min-height: 76px;
    grid-template-columns: auto auto;
    padding: 16px 22px;
  }

  .brand strong {
    font-size: 20px;
  }

  .brand small {
    font-size: 8px;
    margin-top: 5px;
  }

  .nav-toggle {
    color: #101828;
    border-color: rgba(16, 26, 40, 0.16);
  }

  .site-nav {
    top: 76px;
    left: 18px;
    right: 18px;
    display: grid;
    gap: 0;
    margin-right: 0;
    padding: 12px;
    background: #ffffff;
    border: 1px solid rgba(16, 26, 40, 0.1);
    border-radius: 10px;
    box-shadow: 0 20px 46px rgba(16, 26, 40, 0.14);
  }

  .site-nav a {
    color: #101828;
    padding: 14px 12px;
  }

  .header-quote {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 46px 0 54px;
  }

  .hero .section-shell {
    width: min(100% - 36px, 760px);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero h1 {
    max-width: 620px;
    font-size: clamp(40px, 7vw, 56px);
  }

  .hero-lede {
    max-width: 560px;
  }

  .hero-visual {
    min-height: 420px;
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 620px) {
  .hero {
    padding: 38px 0 44px;
  }

  .hero h1 {
    max-width: 350px;
    margin-bottom: 20px;
    font-size: clamp(35px, 10vw, 44px);
    line-height: 1.16;
  }

  .hero h1::after {
    width: 48px;
    height: 3px;
    margin-top: 20px;
  }

  .hero-lede {
    max-width: 340px;
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.58;
  }

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

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    min-width: 0;
    width: 100%;
    min-height: 52px;
    font-size: 16px;
  }

  .hero-visual {
    min-height: 300px;
  }

  .hero-panel-product {
    top: 0;
    right: -2%;
    width: 55%;
  }

  .hero-box-product {
    right: 16%;
    bottom: 4%;
    width: 88%;
  }
}

/* Final scoped homepage visual correction */
.site-header {
  box-sizing: border-box;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 72px;
  padding-block: 10px;
  padding-inline: max(24px, calc((100vw - 1280px) / 2));
  color: #101828;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(16, 26, 40, 0.06);
  box-shadow: 0 10px 28px rgba(16, 26, 40, 0.05);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 34px rgba(16, 26, 40, 0.08);
}

.brand-mark {
  display: none;
}

.brand strong {
  color: #101828;
  font-size: clamp(20px, 1.45vw, 28px);
  font-weight: 520;
  letter-spacing: 0.2em;
}

.brand small {
  margin-top: 4px;
  color: #273548;
  font-size: clamp(8px, 0.62vw, 10px);
  font-weight: 700;
  letter-spacing: 0.28em;
}

.site-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.1vw, 34px);
  margin-left: auto;
  margin-right: clamp(14px, 1.7vw, 28px);
  color: #101828;
  font-size: 15px;
  font-weight: 520;
}

.site-nav a {
  padding: 10px 0;
}

.site-nav a::after {
  display: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #0f57d6;
}

.header-quote {
  min-height: 44px;
  padding: 0 22px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 560;
  background: #0f57d6;
  border: 1px solid rgba(15, 87, 214, 0.22);
  border-radius: 6px;
  box-shadow: 0 10px 24px rgba(15, 87, 214, 0.18);
}

.header-quote:hover,
.header-quote:focus-visible {
  background: #0b4fc6;
  box-shadow: 0 14px 30px rgba(15, 87, 214, 0.23);
}

.hero {
  position: relative;
  min-height: clamp(650px, calc(100vh - 72px), 820px);
  padding: clamp(64px, 6.4vw, 100px) 0 clamp(54px, 5vw, 76px);
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 40%, rgba(16, 26, 40, 0.075), transparent 34%),
    linear-gradient(112deg, #ffffff 0%, #ffffff 46%, #f4f6f9 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: block;
  content: "";
  background:
    radial-gradient(circle at 74% 70%, rgba(16, 26, 40, 0.1), transparent 27%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(244, 247, 250, 0.64));
}

.hero::after {
  display: none;
}

.hero .section-shell {
  width: min(1560px, calc(100% - 112px));
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(620px, 0.9fr) minmax(680px, 1.1fr);
  align-items: center;
  gap: clamp(36px, 5vw, 76px);
}

.hero-copy {
  position: relative;
  top: auto;
  left: auto;
  translate: none;
  max-width: 660px;
  padding: 0;
}

.hero .eyebrow,
.hero-capability-tags {
  display: none;
}

.hero .reveal,
.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy .hero-lede,
.hero-copy .hero-actions,
.hero-product-card {
  opacity: 1;
  transform: none;
  animation: none;
}

.hero h1 {
  display: block;
  max-width: 820px;
  margin: 0 0 24px;
  color: #101828;
  font-size: clamp(44px, 3.45vw, 64px);
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: 0;
  text-wrap: normal;
}

.hero h1 span {
  display: inline;
}

.hero h1 span:first-child::after {
  content: "\A";
  white-space: pre;
}

.hero h1 em {
  color: #0f57d6;
  font-style: normal;
  font-weight: 400;
}

.hero h1::after {
  display: block;
  width: 58px;
  height: 4px;
  margin-top: 28px;
  content: "";
  background: #0f57d6;
  border-radius: 999px;
}

.hero-lede {
  max-width: 520px;
  margin: 0 0 46px;
  color: #424b57;
  font-size: clamp(18px, 1.2vw, 22px);
  font-weight: 390;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.hero-actions .btn-primary,
.hero-actions .btn-secondary {
  min-width: 218px;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 6px;
  font-size: 17px;
  font-weight: 520;
}

.hero-actions .btn-primary {
  color: #ffffff;
  background: #0f57d6;
  border-color: #0f57d6;
  box-shadow: 0 14px 28px rgba(15, 87, 214, 0.2);
}

.hero-actions .btn-secondary {
  color: #0f57d6;
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(15, 87, 214, 0.62);
  box-shadow: none;
}

.hero-actions .btn-primary::after,
.hero-actions .btn-secondary::after {
  margin-left: auto;
  content: "->";
  font-size: 18px;
  line-height: 1;
}

.hero-visual {
  position: relative;
  min-height: clamp(500px, 39vw, 650px);
}

.hero-product-composition {
  position: absolute;
  inset: 0;
  isolation: isolate;
}

.hero-product-composition::after {
  display: none;
}

.hero-product-composition::before {
  position: absolute;
  right: 1%;
  bottom: 0;
  z-index: -1;
  width: 92%;
  height: 22%;
  content: "";
  background: radial-gradient(ellipse, rgba(16, 26, 40, 0.24), rgba(16, 26, 40, 0.09) 48%, transparent 74%);
  filter: blur(14px);
  transform: rotate(-1deg);
}

.hero-panel-product,
.hero-box-product {
  position: absolute;
  display: block;
  height: auto;
  max-width: none;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

.hero-panel-product {
  top: 1%;
  right: -3%;
  z-index: 1;
  width: min(60%, 590px);
  filter: drop-shadow(0 30px 42px rgba(16, 26, 40, 0.15));
}

.hero-box-product {
  right: 14%;
  bottom: 5%;
  z-index: 2;
  width: min(86%, 860px);
  filter: drop-shadow(0 32px 38px rgba(16, 26, 40, 0.2));
}

#products {
  background:
    linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
}

#products .section-shell {
  width: min(1280px, calc(100% - 64px));
}

.product-line-main-grid {
  gap: 28px;
}

.product-line-main-card,
.product-line-support-card {
  border: 1px solid #d9e2ea;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(16, 26, 40, 0.07);
}

.product-line-main-card {
  min-height: 600px;
  padding: clamp(28px, 3vw, 38px);
  border-radius: 12px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.product-line-main-card::before,
.product-line-support-card::before {
  display: none;
}

.product-line-main-card:hover,
.product-line-support-card:hover {
  border-color: #b8cce0;
  box-shadow: 0 24px 58px rgba(16, 26, 40, 0.11);
  transform: translateY(-3px);
}

.product-line-copy h3,
.product-line-support-copy h3 {
  color: #101a28;
  font-weight: 760;
  line-height: 1.12;
}

.product-line-copy h3 {
  font-size: clamp(30px, 2.8vw, 42px);
}

.product-line-copy > p:first-of-type {
  color: #263548;
  font-size: 16px;
  font-weight: 560;
}

.product-line-copy p,
.product-line-support-copy p,
.product-line-copy .category-scene {
  color: #56657a;
  line-height: 1.62;
}

.product-line-media::before,
.product-line-support-media {
  background: #f4f7fa;
  border-color: #dfe7ef;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.product-line-main-card .tag,
.product-line-support-card .tag {
  color: #2e4968;
  background: #f1f5f9;
  border-color: #dce6ef;
}

.product-line-main-card .card-action,
.product-line-support-card .card-action {
  color: #ffffff;
  background: #1558c9;
  border-color: #1558c9;
  border-radius: 6px;
  box-shadow: 0 10px 22px rgba(21, 88, 201, 0.16);
}

.product-line-support-card {
  min-height: 176px;
  border-radius: 12px;
  background: #ffffff;
}

.applications-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(96px, 8vw, 136px) 0;
  background:
    linear-gradient(90deg, rgba(200, 210, 222, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(200, 210, 222, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 72% 18%, rgba(42, 103, 177, 0.2), transparent 28%),
    linear-gradient(135deg, #0f1927 0%, #142235 54%, #1c2d42 100%);
  background-size: 46px 46px, 46px 46px, auto, auto;
}

.applications-section .section-shell {
  width: min(1440px, calc(100% - 64px));
}

.applications-panel {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.applications-panel .section-heading {
  max-width: 940px;
  margin-bottom: 42px;
}

.applications-panel .section-heading h2 {
  max-width: 820px;
  color: #ffffff;
  font-size: clamp(40px, 4.4vw, 64px);
  line-height: 1.05;
}

.applications-panel .section-heading p {
  max-width: 800px;
  color: #c8d2de;
  font-size: 18px;
}

.applications-section .application-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.48fr) minmax(0, 2.1fr);
  gap: 28px;
  align-items: stretch;
}

.application-tabs {
  align-content: start;
  gap: 12px;
}

.application-tab {
  min-height: 66px;
  color: #dbe5ef;
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(200, 210, 222, 0.14);
  border-radius: 10px;
}

.application-tab.is-active {
  color: #ffffff;
  background: rgba(42, 103, 177, 0.24);
  border-color: rgba(134, 177, 226, 0.42);
}

.application-detail {
  display: grid;
  grid-template-columns: minmax(520px, 1.35fr) minmax(340px, 0.8fr);
  min-height: 540px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(200, 210, 222, 0.16);
  border-radius: 16px;
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.28);
}

.application-media {
  min-height: 540px;
  border-radius: 0;
}

.application-detail-body {
  align-content: center;
  padding: clamp(32px, 3.6vw, 54px);
  background: rgba(8, 15, 26, 0.72);
  border-left: 1px solid rgba(200, 210, 222, 0.12);
}

.application-detail h3 {
  color: #ffffff;
  font-size: clamp(28px, 2.4vw, 40px);
}

.application-detail-body p,
.application-spec p,
.application-spec strong,
#application-models {
  color: #d4deea;
}

.application-spec {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(200, 210, 222, 0.14);
}

.contact-section:not(.detail-rfq-section) {
  padding: clamp(90px, 8vw, 126px) 0;
  background: #f4f7fa;
}

.contact-section:not(.detail-rfq-section) .contact-grid {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(360px, 0.44fr) minmax(0, 0.56fr);
  gap: 0;
  width: min(1280px, calc(100% - 64px));
  background: #ffffff;
  border: 1px solid #d9e2ea;
  border-radius: 18px;
  box-shadow: 0 28px 74px rgba(16, 26, 40, 0.14);
}

.contact-section:not(.detail-rfq-section) .contact-grid::before {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 0;
  width: 52%;
  content: "";
  background:
    linear-gradient(90deg, rgba(200, 210, 222, 0.07) 1px, transparent 1px),
    linear-gradient(rgba(200, 210, 222, 0.055) 1px, transparent 1px),
    linear-gradient(135deg, #101a28 0%, #162233 100%);
  background-size: 34px 34px, 34px 34px, auto;
  clip-path: polygon(0 0, 84% 0, 100% 100%, 0 100%);
}

.contact-section:not(.detail-rfq-section) .rfq-heading,
.contact-section:not(.detail-rfq-section) .inquiry-form {
  position: relative;
  z-index: 1;
}

.contact-section:not(.detail-rfq-section) .rfq-heading {
  display: grid;
  align-content: center;
  min-height: 100%;
  padding: clamp(40px, 4.2vw, 64px) clamp(34px, 3.8vw, 54px);
  color: #ffffff;
  background: transparent;
}

.contact-section:not(.detail-rfq-section) .rfq-heading::after {
  display: none;
}

.contact-section:not(.detail-rfq-section) .rfq-heading h2 {
  max-width: 380px;
  color: #ffffff;
  font-size: clamp(38px, 4.1vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

.contact-section:not(.detail-rfq-section) .rfq-heading h2 span {
  display: block;
}

.contact-section:not(.detail-rfq-section) .rfq-heading p {
  max-width: 390px;
  color: #c8d2de;
}

.contact-section:not(.detail-rfq-section) .rfq-promise span {
  color: #e5edf5;
  background: rgba(5, 12, 22, 0.38);
  border-color: rgba(200, 210, 222, 0.2);
}

.contact-section:not(.detail-rfq-section) .inquiry-form {
  width: 100%;
  max-width: none;
  min-height: 100%;
  margin: 0;
  padding: clamp(34px, 3.8vw, 52px);
  background: #ffffff;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

@media (max-width: 1180px) {
  .hero-grid,
  .application-detail {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 460px;
    max-width: 780px;
    width: 100%;
    margin: 0 auto;
  }

  .application-media {
    min-height: 430px;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    min-height: 68px;
    padding-inline: 18px;
  }

  .nav-toggle {
    display: inline-block;
    justify-self: end;
    grid-column: 3;
    color: #101828;
    border-color: rgba(16, 26, 40, 0.16);
  }

  .site-nav {
    position: fixed;
    top: 72px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 0;
    margin: 0;
    padding: 12px;
    background: #ffffff;
    border: 1px solid rgba(16, 26, 40, 0.1);
    border-radius: 10px;
    box-shadow: 0 20px 46px rgba(16, 26, 40, 0.14);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 14px 12px;
  }

  .header-quote {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 54px 0 62px;
  }

  .hero .section-shell,
  #products .section-shell,
  .applications-section .section-shell,
  .contact-section:not(.detail-rfq-section) .contact-grid {
    width: min(100% - 36px, 760px);
  }

  .hero h1 {
    max-width: 700px;
    font-size: clamp(40px, 7vw, 58px);
  }

  .product-line-main-grid,
  .applications-section .application-grid,
  .contact-section:not(.detail-rfq-section) .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-section:not(.detail-rfq-section) .contact-grid::before {
    width: 100%;
    height: 48%;
    clip-path: none;
  }

  .contact-section:not(.detail-rfq-section) .rfq-heading {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  .brand strong {
    font-size: 18px;
  }

  .brand small {
    font-size: 8px;
  }

  .hero {
    padding-top: 42px;
  }

  .hero h1 {
    max-width: 350px;
    font-size: clamp(34px, 9.7vw, 42px);
    line-height: 1.16;
  }

  .hero-lede {
    max-width: 340px;
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.58;
  }

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

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
    min-width: 0;
    min-height: 52px;
  }

  .hero-visual {
    min-height: 320px;
  }

  .hero-panel-product {
    top: 3%;
    right: -4%;
    width: 56%;
  }

  .hero-box-product {
    right: 14%;
    bottom: 6%;
    width: 92%;
  }

  .product-line-main-card {
    min-height: 0;
  }

  .application-media {
    min-height: 300px;
  }

  .application-detail-body {
    padding: 26px;
  }

  .contact-section:not(.detail-rfq-section) .rfq-heading,
  .contact-section:not(.detail-rfq-section) .inquiry-form {
    padding: 28px;
  }

  .contact-section:not(.detail-rfq-section) .rfq-heading h2 {
    font-size: clamp(34px, 10vw, 44px);
  }
}

/* Client-provided banner hero */
.site-header {
  min-height: 72px;
  padding: 10px clamp(28px, 3.2vw, 58px);
  background: rgba(255, 255, 255, 0.97);
}

.brand strong {
  font-size: clamp(22px, 1.45vw, 30px);
  letter-spacing: 0.22em;
}

.brand small {
  margin-top: 5px;
  font-size: clamp(8px, 0.62vw, 11px);
  letter-spacing: 0.3em;
}

.site-nav {
  justify-self: end;
  gap: clamp(18px, 2.1vw, 34px);
  margin-left: auto;
  margin-right: clamp(14px, 1.7vw, 28px);
  font-size: clamp(15px, 0.96vw, 18px);
  font-weight: 500;
}

.header-quote {
  min-height: 50px;
  padding: 0 28px;
  font-size: clamp(15px, 0.92vw, 18px);
  border-radius: 6px;
}

.hero {
  min-height: 0;
  padding: 0;
  display: block;
  background: #ffffff;
  overflow: hidden;
}

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

.hero-accessible-title {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-banner-frame {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  background: #f4f5f7;
}

.hero-banner-image {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  transform: none;
}

.hero-banner-actions {
  position: absolute;
  top: 29vw;
  left: 12.36vw;
  z-index: 2;
  display: flex;
  gap: 1.33vw;
  isolation: isolate;
}

.hero-banner-actions::before {
  display: none;
}

.hero-banner-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  flex: 0 0 auto;
  width: 11.1vw;
  height: 3.02vw;
  padding: 0;
  color: transparent;
  font-size: 0;
  font-weight: 520;
  line-height: 1;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  box-shadow: none;
}

.hero-banner-link::after {
  content: none;
}

.hero-banner-link-primary {
  color: transparent;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.hero-banner-link-secondary {
  width: 12.1vw;
}

.hero-banner-link:focus-visible {
  outline: 2px solid #0f57d6;
  outline-offset: 4px;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    min-height: 68px;
    padding: 12px 20px;
  }

  .brand strong {
    font-size: 20px;
  }

  .brand small {
    font-size: 8px;
  }

  .nav-toggle {
    display: inline-block;
    justify-self: end;
    grid-column: 3;
  }

  .site-nav {
    top: 70px;
    margin: 0;
  }

  .hero-banner-frame {
    height: 470px;
  }

  .hero-banner-image {
    left: 0;
    width: 1080px;
    height: auto;
    transform: translateX(-48px);
  }

  .hero-banner-actions {
    top: 292px;
    left: 14px;
    gap: 15px;
  }

  .hero-banner-link {
    width: 128px;
    height: 32px;
    padding: 0 10px;
    font-size: 10px;
    border-radius: 4px;
  }

  .hero-banner-link::after {
    font-size: 11px;
  }

  .hero-banner-link-secondary {
    width: 138px;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding-inline: 20px;
  }

  .brand strong {
    font-size: 18px;
  }

  .hero-banner-frame {
    height: 420px;
  }

  .hero-banner-image {
    width: 980px;
    max-width: none;
    transform: translateX(-42px);
    transform-origin: left top;
  }

  .hero-banner-actions {
    top: 286px;
    left: 18px;
    right: 18px;
    display: flex;
  }

  .hero-banner-link {
    width: 126px;
  }

  .hero-banner-link-secondary {
    width: 136px;
  }
}

/* Targeted visual corrections: product lines, applications, OEM, RFQ */
#products .section-shell {
  width: min(1280px, calc(100% - 64px));
}

.product-line-grid {
  gap: 26px;
}

.product-line-main-grid {
  gap: 28px;
}

.product-line-main-card,
.product-line-support-card {
  border: 1px solid #d9e2ea;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(16, 26, 40, 0.065);
}

.product-line-main-card::before,
.product-line-support-card::before {
  display: none;
}

.product-line-main-card {
  display: grid;
  grid-template-rows: auto 300px auto;
  min-height: 580px;
  padding: clamp(28px, 3vw, 38px);
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.product-line-main-card:hover,
.product-line-support-card:hover {
  border-color: #b9c9da;
  box-shadow: 0 22px 50px rgba(16, 26, 40, 0.1);
  transform: translateY(-2px);
}

.product-line-copy,
.product-line-support-copy {
  display: grid;
  align-content: start;
}

.product-line-copy h3,
.product-line-support-copy h3 {
  color: #101a28;
  font-weight: 760;
  line-height: 1.12;
  letter-spacing: 0;
}

.product-line-copy h3 {
  margin-bottom: 12px;
  font-size: clamp(30px, 2.65vw, 40px);
}

.product-line-support-copy h3 {
  font-size: clamp(24px, 2vw, 30px);
}

.product-line-copy p,
.product-line-support-copy p,
.product-line-copy .category-scene {
  color: #526174;
  line-height: 1.64;
}

.product-line-copy > p:first-of-type {
  color: #263548;
  font-size: 16px;
  font-weight: 560;
}

.product-line-main-card .category-position,
.product-line-support-card .category-position {
  color: #2e4968;
  background: #eef4f9;
  border-color: #d8e4ee;
}

.product-line-main-card .tag,
.product-line-support-card .tag {
  color: #2f4d68;
  background: #f1f5f8;
  border-color: #dce6ef;
}

.product-line-media {
  min-height: 0;
  height: 300px;
  margin: 8px 0 0;
  overflow: hidden;
  border: 1px solid #dfe7ef;
  border-radius: 10px;
  background:
    radial-gradient(circle at 50% 48%, rgba(42, 103, 177, 0.055), transparent 42%),
    #f6f8fb;
}

.product-line-media::before {
  display: none;
}

.product-line-visual {
  width: min(92%, 430px);
  min-height: 0;
  height: 260px;
}

.product-line-visual .swap-image,
.product-line-support-media .swap-image {
  width: 100%;
  height: 100%;
  padding: 12px;
  object-fit: contain;
  object-position: center;
}

.product-line-main-card .card-action,
.product-line-support-card .card-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: end;
  justify-self: start;
  min-width: max-content;
  min-height: 44px;
  margin-top: 22px;
  padding: 0 22px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 760;
  background: #245f9f;
  border: 1px solid #245f9f;
  border-radius: 6px;
  box-shadow: 0 8px 18px rgba(36, 95, 159, 0.16);
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.product-line-support-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px auto;
  gap: 26px;
  align-items: center;
  min-height: 190px;
  padding: 26px 30px;
  border-radius: 12px;
  background: #ffffff;
}

.product-line-support-media {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 142px;
  height: 142px;
  overflow: hidden;
  background: #f6f8fb;
  border: 1px solid #dfe7ef;
  border-radius: 10px;
}

.product-line-visual-small {
  width: min(90%, 220px);
  min-height: 0;
  height: 120px;
}

.applications-section,
.custom-section {
  background:
    linear-gradient(90deg, rgba(200, 210, 222, 0.052) 1px, transparent 1px),
    linear-gradient(rgba(200, 210, 222, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 72% 18%, rgba(42, 103, 177, 0.18), transparent 28%),
    linear-gradient(135deg, #0f1927 0%, #142235 54%, #1c2d42 100%);
  background-size: 46px 46px, 46px 46px, auto, auto;
}

.applications-section {
  padding: clamp(96px, 8vw, 136px) 0;
}

.applications-section .section-shell {
  width: min(1520px, calc(100% - 48px));
  max-width: 1520px;
}

.applications-panel {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.applications-panel::before {
  display: none;
}

.applications-panel .section-heading {
  max-width: 980px;
  margin-bottom: 42px;
}

.applications-panel .section-heading h2 {
  max-width: 860px;
  color: #ffffff;
  font-size: clamp(40px, 4.1vw, 62px);
  line-height: 1.05;
}

.applications-panel .section-heading p {
  max-width: 840px;
  color: #c8d2de;
  font-size: 18px;
}

.applications-panel .eyebrow {
  color: #dce5ee;
}

.applications-section .application-grid {
  display: grid;
  grid-template-columns: minmax(220px, 260px) minmax(720px, 1fr) minmax(320px, 380px);
  gap: clamp(24px, 2vw, 32px);
  align-items: start;
}

.application-tabs {
  display: grid;
  align-content: start;
  gap: 12px;
  align-self: start;
  min-height: 0;
  padding-bottom: 0;
}

.application-tab {
  display: inline-flex;
  align-items: center;
  min-height: 68px;
  justify-content: flex-start;
  color: #dbe5ef;
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(200, 210, 222, 0.14);
  border-radius: 10px;
}

.application-tab.is-active {
  color: #ffffff;
  background: rgba(42, 103, 177, 0.24);
  border-color: rgba(134, 177, 226, 0.42);
}

.application-detail {
  display: contents;
}

.application-media {
  display: grid;
  place-items: center;
  align-self: start;
  min-width: 0;
  min-height: clamp(440px, 37vw, 560px);
  height: clamp(440px, 37vw, 560px);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 40%, rgba(42, 103, 177, 0.16), transparent 46%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    #111d2c;
  border: 1px solid rgba(200, 210, 222, 0.16);
  border-radius: 16px;
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.28);
}

.application-media img {
  width: 100%;
  height: 100%;
  padding: clamp(12px, 1.2vw, 18px);
  object-fit: contain;
  object-position: center;
}

.application-detail-body {
  align-self: start;
  align-content: center;
  padding: clamp(28px, 2.3vw, 38px);
  background: rgba(8, 15, 26, 0.76);
  border: 1px solid rgba(200, 210, 222, 0.14);
  border-radius: 16px;
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.22);
}

.application-detail h3 {
  color: #ffffff;
  font-size: clamp(28px, 2.3vw, 38px);
  line-height: 1.08;
}

.application-detail-body p,
.application-spec p,
.application-spec strong,
.application-actions > span,
#application-models {
  color: #d4deea;
}

.application-spec {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(200, 210, 222, 0.14);
}

.application-info-grid {
  grid-template-columns: 1fr;
}

.custom-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(92px, 8vw, 126px) 0;
  color: #ffffff;
}

.custom-section::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: auto;
  content: "";
  background:
    linear-gradient(90deg, rgba(200, 210, 222, 0.052) 1px, transparent 1px),
    linear-gradient(rgba(200, 210, 222, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: 0.72;
  transform: none;
}

.custom-section::after {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  width: min(24vw, 360px);
  height: 100%;
  content: "";
  background: rgba(255, 255, 255, 0.045);
  clip-path: polygon(34% 0, 100% 0, 100% 100%, 0 100%);
}

.custom-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: clamp(42px, 5vw, 72px);
  align-items: center;
}

.custom-copy h2 {
  max-width: 680px;
  color: #ffffff;
  font-size: clamp(34px, 3.5vw, 52px);
  line-height: 1.08;
}

.custom-copy p,
.custom-copy .eyebrow {
  color: #c8d2de;
}

.custom-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.custom-list span,
.custom-assurance span {
  color: #e3ebf4;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(200, 210, 222, 0.16);
}

.process-panel {
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  border-color: rgba(217, 226, 234, 0.92);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.26);
}

.contact-section:not(.detail-rfq-section) {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(90px, 8vw, 126px) 0;
  background: #f4f7fa;
}

.contact-section:not(.detail-rfq-section)::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  content: "";
  background:
    linear-gradient(90deg, rgba(200, 210, 222, 0.058) 1px, transparent 1px),
    linear-gradient(rgba(200, 210, 222, 0.048) 1px, transparent 1px),
    radial-gradient(circle at 24% 20%, rgba(42, 103, 177, 0.16), transparent 32%),
    linear-gradient(135deg, #101a28 0%, #162233 58%, #1b2a3c 100%);
  background-size: 42px 42px, 42px 42px, auto, auto;
  clip-path: polygon(0 0, 58% 0, 45% 100%, 0 100%);
}

.contact-section:not(.detail-rfq-section)::after {
  display: none;
}

.contact-section:not(.detail-rfq-section) .contact-grid {
  position: relative;
  z-index: 1;
  isolation: isolate;
  overflow: visible;
  display: grid;
  grid-template-columns: minmax(390px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(42px, 5.4vw, 82px);
  width: min(1380px, calc(100% - 64px));
  max-width: 1380px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.contact-section:not(.detail-rfq-section) .contact-grid::before {
  display: none;
}

.contact-section:not(.detail-rfq-section) .rfq-heading {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  min-height: 100%;
  padding: clamp(42px, 4.4vw, 66px) clamp(78px, 7vw, 112px) clamp(42px, 4.4vw, 66px) 0;
  overflow: visible;
  color: #ffffff;
  background: transparent;
  clip-path: none;
}

.contact-section:not(.detail-rfq-section) .rfq-heading::before {
  position: absolute;
  inset: 0 -60px 0 -999px;
  z-index: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(200, 210, 222, 0.058) 1px, transparent 1px),
    linear-gradient(rgba(200, 210, 222, 0.048) 1px, transparent 1px),
    linear-gradient(135deg, #101a28 0%, #162233 62%, #1b2a3c 100%);
  background-size: 42px 42px, 42px 42px, auto;
  clip-path: polygon(0 0, calc(100% - 84px) 0, 100% 100%, 0 100%);
}

.contact-section:not(.detail-rfq-section) .rfq-heading::after {
  display: none;
}

.contact-section:not(.detail-rfq-section) .rfq-heading > * {
  position: relative;
  z-index: 1;
}

.contact-section:not(.detail-rfq-section) .rfq-heading h2 {
  max-width: 420px;
  color: #ffffff;
  font-size: clamp(36px, 3.65vw, 52px);
  line-height: 1.03;
  letter-spacing: 0;
}

.contact-section:not(.detail-rfq-section) .rfq-heading h2 span {
  display: block;
  white-space: nowrap;
}

.contact-section:not(.detail-rfq-section) .rfq-heading p {
  max-width: 410px;
  color: #c8d2de;
}

.contact-section:not(.detail-rfq-section) .rfq-promise span {
  color: #e5edf5;
  background: rgba(5, 12, 22, 0.38);
  border-color: rgba(200, 210, 222, 0.2);
}

.contact-section:not(.detail-rfq-section) .inquiry-form {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  min-height: 100%;
  margin: 0;
  padding: clamp(34px, 3.8vw, 52px);
  background: #ffffff;
  border: 1px solid #d9e2ea;
  border-radius: 18px;
  box-shadow: 0 28px 74px rgba(16, 26, 40, 0.16);
}

@media (max-width: 1180px) {
  .applications-section .application-grid {
    grid-template-columns: minmax(200px, 240px) minmax(0, 1fr) minmax(300px, 340px);
  }

  .application-detail {
    display: contents;
  }

  .application-media {
    min-height: 420px;
    height: 420px;
  }
}

@media (max-width: 980px) {
  .product-line-main-grid,
  .product-line-support-card,
  .custom-grid,
  .contact-section:not(.detail-rfq-section) .contact-grid {
    grid-template-columns: 1fr;
  }

  .product-line-support-media {
    width: 100%;
  }

  .applications-section .section-shell,
  .contact-section:not(.detail-rfq-section) .contact-grid {
    width: min(100% - 36px, 760px);
  }

  .applications-section .application-grid {
    display: flex;
    flex-direction: column;
  }

  .application-detail {
    display: contents;
  }

  .application-media {
    order: 1;
    min-height: 0;
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 14px;
  }

  .application-tabs {
    order: 2;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .application-tab {
    min-width: 190px;
  }

  .application-detail-body {
    order: 3;
    border: 1px solid rgba(200, 210, 222, 0.14);
    border-radius: 14px;
  }

  .custom-section::after {
    opacity: 0.5;
  }

  .contact-section:not(.detail-rfq-section)::before {
    display: none;
  }

  .contact-section:not(.detail-rfq-section) .rfq-heading {
    overflow: hidden;
    clip-path: none;
    padding: 32px;
  }

  .contact-section:not(.detail-rfq-section) .rfq-heading::before {
    inset: 0;
    clip-path: none;
  }

  .contact-section:not(.detail-rfq-section) .inquiry-form {
    border-radius: 0 0 18px 18px;
  }
}

@media (max-width: 640px) {
  #products .section-shell {
    width: min(100% - 36px, 1280px);
  }

  .product-line-main-card {
    grid-template-rows: auto 240px auto;
    min-height: 0;
    padding: 24px;
  }

  .product-line-media {
    height: 240px;
  }

  .product-line-visual {
    height: 210px;
  }

  .application-media {
    min-height: 0;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .application-detail-body {
    padding: 26px;
  }

  .custom-list {
    grid-template-columns: 1fr;
  }

  .contact-section:not(.detail-rfq-section) .rfq-heading,
  .contact-section:not(.detail-rfq-section) .inquiry-form {
    padding: 28px;
  }

  .contact-section:not(.detail-rfq-section) .rfq-heading h2 {
    font-size: clamp(34px, 10vw, 44px);
  }
}

/* Precision Industrial Aesthetics final pass */
:root {
  --color-brand: #004BDB;
  --color-dark: #0D1117;
  --color-text: #1D1D1F;
  --color-muted: #86868B;
  --color-bg-soft: #F5F5F7;
  --color-white: #FFFFFF;
  --color-line: #E5E5E7;
  --color-signal: #00D384;
  --brand-blue: var(--color-brand);
  --brand-blue-rgb: 0, 75, 219;
  --ink: var(--color-text);
  --muted: var(--color-muted);
  --line: var(--color-line);
  --panel-soft: var(--color-bg-soft);
  --dark: var(--color-dark);
  --radius: 6px;
}

body {
  color: var(--color-text);
  background: #ffffff;
}

.section {
  padding-block: clamp(80px, 10vw, 160px);
}

.section-shell {
  max-width: 1280px;
}

.section-heading h2,
.compact-heading h2 {
  color: var(--color-text);
  font-size: clamp(34px, 3.4vw, 40px);
  line-height: 1.2;
  letter-spacing: 0;
}

.section-heading p,
.compact-heading p {
  color: var(--color-muted);
  line-height: 1.5;
}

.eyebrow {
  color: #3b4450;
  letter-spacing: 0.16em;
}

.btn,
.header-quote,
.card-action {
  border-radius: 6px;
}

.site-header {
  min-height: 68px;
  padding: 10px clamp(28px, 3.2vw, 58px);
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--color-line);
  box-shadow: none;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: none;
}

.brand {
  color: var(--color-text);
}

.brand strong {
  color: var(--color-text);
  letter-spacing: 0.28em;
}

.brand small {
  color: #4f5966;
  letter-spacing: 0.32em;
}

.site-nav {
  justify-self: end;
  margin-left: auto;
  gap: clamp(18px, 2.2vw, 34px);
}

.site-nav a {
  color: var(--color-text);
  font-size: 14px;
  font-weight: 500;
}

.site-nav a:hover {
  color: var(--color-brand);
}

.header-quote {
  min-height: 42px;
  padding: 0 22px;
  font-size: 14px;
  color: #ffffff;
  background: var(--color-brand);
  border-color: var(--color-brand);
  box-shadow: none;
}

.precision-hero {
  position: relative;
  min-height: clamp(620px, 74vh, 780px);
  padding: clamp(72px, 7vw, 112px) 0 clamp(74px, 8vw, 120px);
  overflow: hidden;
  color: var(--color-text);
  background:
    radial-gradient(circle at 75% 52%, rgba(0, 75, 219, 0.055), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%);
}

.precision-hero-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(520px, 1.14fr);
  gap: clamp(44px, 6vw, 84px);
  align-items: center;
}

.precision-hero-copy {
  display: grid;
  gap: 22px;
  max-width: 610px;
}

.precision-hero-copy .eyebrow {
  margin: 0 0 4px;
  color: #4b5663;
  font-size: 12px;
}

.precision-hero-copy h1 {
  max-width: 620px;
  margin: 0;
  color: var(--color-text);
  font-size: clamp(46px, 4.4vw, 56px);
  font-weight: 620;
  line-height: 1.1;
  letter-spacing: 0;
}

.precision-hero-copy p:not(.eyebrow) {
  max-width: 540px;
  margin: 0;
  color: #55565a;
  font-size: 16px;
  line-height: 1.55;
}

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

.precision-hero-actions .btn {
  min-height: 46px;
  padding: 0 24px;
  font-size: 15px;
  box-shadow: none;
}

.precision-hero-actions .btn-primary {
  background: var(--color-brand);
  border-color: var(--color-brand);
}

.precision-hero-actions .btn-secondary {
  color: var(--color-text);
  background: transparent;
  border-color: #bfc5cd;
}

.precision-hero-products {
  position: relative;
  min-height: clamp(420px, 38vw, 560px);
  isolation: isolate;
}

.precision-hero-products::before {
  position: absolute;
  right: 4%;
  bottom: 5%;
  z-index: -1;
  width: 82%;
  height: 18%;
  content: "";
  background: radial-gradient(ellipse, rgba(13, 17, 23, 0.22), transparent 68%);
  filter: blur(12px);
}

.precision-hero-panel,
.precision-hero-mini {
  position: absolute;
  display: block;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 22px 34px rgba(13, 17, 23, 0.16));
}

.precision-hero-panel {
  top: 0;
  right: 0;
  z-index: 1;
  max-width: min(58vw, 560px);
}

.precision-hero-mini {
  right: 18%;
  bottom: 2%;
  z-index: 2;
  max-width: min(62vw, 620px);
  filter: drop-shadow(0 26px 38px rgba(13, 17, 23, 0.2));
}
.precision-hero-combo {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: block;
  width: min(58vw, 650px);
  height: auto;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 24px 36px rgba(13, 17, 23, 0.18));
}

#products.section-muted {
  background: #ffffff;
}

#products .section-shell {
  width: min(1280px, calc(100% - 64px));
}

.product-line-main-card,
.product-line-support-card {
  border: 1px solid transparent;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: none;
}

.product-line-main-card:hover,
.product-line-support-card:hover {
  border-color: var(--color-line);
  box-shadow: 0 10px 28px rgba(13, 17, 23, 0.06);
  transform: none;
}

.product-line-main-card::before,
.product-line-support-card::before {
  display: none;
}

.product-line-main-card {
  grid-template-rows: auto 330px auto;
  min-height: 600px;
  padding: clamp(28px, 3vw, 40px);
}

.product-line-copy h3,
.product-line-support-copy h3 {
  color: var(--color-text);
  font-size: clamp(22px, 2.1vw, 28px);
  font-weight: 640;
}

.product-line-copy p,
.product-line-support-copy p,
.product-line-copy .category-scene {
  color: var(--color-muted);
}

.product-line-main-card .category-position,
.product-line-support-card .category-position,
.product-line-main-card .tag,
.product-line-support-card .tag {
  color: #344154;
  background: #f5f5f7;
  border-color: #ececef;
}

.product-line-media,
.product-line-support-media {
  background: #f5f5f7;
  border: 1px solid transparent;
  border-radius: 6px;
}

.product-line-media {
  height: 330px;
}

.product-line-visual {
  width: min(98%, 500px);
  height: 300px;
}

.product-line-main-card .card-action,
.product-line-support-card .card-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: end;
  justify-self: start;
  min-width: max-content;
  min-height: 42px;
  margin-top: 22px;
  padding: 0 18px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 650;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  background: var(--color-brand);
  border: 1px solid var(--color-brand);
  border-radius: 6px;
  box-shadow: none;
}

.product-line-support-card {
  grid-template-columns: minmax(0, 1fr) 230px auto;
  border-color: var(--color-line);
  min-height: 180px;
}

.applications-section,
.custom-section {
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    #0D1117;
  background-size: 52px 52px, 52px 52px, auto;
}

.applications-section {
  padding: clamp(96px, 9vw, 150px) 0;
}

.applications-section .section-shell {
  width: min(1440px, calc(100% - 48px));
  max-width: 1440px;
}

.applications-panel .section-heading h2,
.custom-copy h2 {
  color: #ffffff;
}

.applications-panel .section-heading p,
.custom-copy p,
.custom-copy .eyebrow {
  color: #aeb4bd;
}

.applications-section .application-grid {
  display: grid;
  grid-template-columns: minmax(220px, 260px) minmax(720px, 1fr) minmax(320px, 380px);
  gap: clamp(24px, 2vw, 32px);
  align-items: start;
}

.application-tabs {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 0;
}

.application-tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 62px;
  padding-left: 18px;
  color: #8f98a5;
  background: transparent;
  border: 1px solid rgba(229, 229, 231, 0.12);
  border-radius: 6px;
}

.application-tab svg {
  color: currentColor;
  opacity: 0.72;
}

.application-tab::before {
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 3px;
  content: "";
  background: transparent;
}

.application-tab.is-active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(229, 229, 231, 0.18);
}

.application-tab.is-active::before {
  background: var(--color-signal);
}

.application-detail {
  display: contents;
}

.application-media {
  display: grid;
  place-items: center;
  align-self: start;
  min-width: 0;
  height: clamp(440px, 36vw, 560px);
  min-height: 0;
  overflow: hidden;
  background: #111820;
  border: 1px solid rgba(229, 229, 231, 0.12);
  border-radius: 6px;
  box-shadow: none;
}

.application-media img {
  width: 100%;
  height: 100%;
  padding: clamp(10px, 1vw, 16px);
  object-fit: contain;
  object-position: center;
}

.application-detail-body {
  align-self: start;
  padding: clamp(26px, 2.4vw, 36px);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(229, 229, 231, 0.12);
  border-radius: 6px;
  box-shadow: none;
}

.application-detail h3 {
  color: #ffffff;
  font-size: clamp(24px, 2vw, 32px);
}

.application-spec {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(229, 229, 231, 0.12);
  border-radius: 6px;
}

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

.custom-grid {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  align-items: center;
}

.custom-list span,
.custom-assurance span {
  color: #dfe3e8;
  background: transparent;
  border-color: rgba(229, 229, 231, 0.14);
  border-radius: 6px;
}

.process-panel {
  border-radius: 6px;
  box-shadow: none;
}

.contact-section:not(.detail-rfq-section) {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(96px, 9vw, 150px) 0;
  background: #ffffff;
}

.contact-section:not(.detail-rfq-section)::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    #0D1117;
  background-size: 52px 52px, 52px 52px, auto;
  clip-path: polygon(0 0, 57% 0, 45% 100%, 0 100%);
}

.contact-section:not(.detail-rfq-section)::after {
  display: none;
}

.contact-section:not(.detail-rfq-section) .contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(390px, 0.4fr) minmax(0, 0.6fr);
  gap: clamp(44px, 6vw, 88px);
  width: min(1360px, calc(100% - 64px));
  max-width: 1360px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.contact-section:not(.detail-rfq-section) .rfq-heading {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 100%;
  padding: clamp(40px, 4.6vw, 68px) clamp(76px, 7vw, 112px) clamp(40px, 4.6vw, 68px) 0;
  overflow: visible;
  color: #ffffff;
  background: transparent;
  clip-path: none;
}

.contact-section:not(.detail-rfq-section) .rfq-heading::before {
  position: absolute;
  inset: 0 -70px 0 -999px;
  z-index: 0;
  content: "";
  background: #0D1117;
  clip-path: polygon(0 0, calc(100% - 86px) 0, 100% 100%, 0 100%);
}

.contact-section:not(.detail-rfq-section) .rfq-heading > * {
  position: relative;
  z-index: 1;
}

.contact-section:not(.detail-rfq-section) .rfq-heading h2 {
  max-width: 420px;
  color: #ffffff;
  font-size: clamp(36px, 3.6vw, 52px);
  line-height: 1.05;
}

.contact-section:not(.detail-rfq-section) .rfq-heading h2 span {
  display: block;
  white-space: nowrap;
}

.contact-section:not(.detail-rfq-section) .rfq-heading p {
  max-width: 410px;
  color: #aeb4bd;
}

.contact-section:not(.detail-rfq-section) .rfq-promise span {
  color: #dfe3e8;
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(229, 229, 231, 0.14);
  border-radius: 6px;
}

.contact-section:not(.detail-rfq-section) .inquiry-form {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(34px, 3.6vw, 52px);
  background: #ffffff;
  border: 1px solid var(--color-line);
  border-radius: 6px;
  box-shadow: 0 18px 44px rgba(13, 17, 23, 0.08);
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  border-color: var(--color-line);
  border-radius: 6px;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: var(--color-brand);
  box-shadow: none;
}

@media (max-width: 1180px) {
  .precision-hero-grid {
    grid-template-columns: 1fr;
  }

  .precision-hero-copy {
    max-width: 760px;
  }

  .precision-hero-products {
    min-height: 460px;
  }

  .applications-section .application-grid {
    grid-template-columns: minmax(190px, 230px) minmax(0, 1fr) minmax(280px, 330px);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    min-height: 68px;
    padding: 12px 20px;
  }

  .precision-hero {
    padding-top: 58px;
  }

  .precision-hero-products {
    min-height: 360px;
  }

  .precision-hero-panel {
    right: 4%;
    max-width: min(86vw, 470px);
  }

  .precision-hero-mini {
    right: 20%;
    max-width: min(88vw, 520px);
  }
  .precision-hero-combo {
    right: 50%;
    bottom: 0;
    width: min(86vw, 560px);
    transform: translateX(50%);
  }

  .applications-section .application-grid {
    display: flex;
    flex-direction: column;
  }

  .application-detail {
    display: contents;
  }

  .application-media {
    order: 1;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .application-tabs {
    order: 2;
    display: flex;
    gap: 10px;
    overflow-x: auto;
  }

  .application-tab {
    min-width: 190px;
  }

  .application-detail-body {
    order: 3;
  }

  .contact-section:not(.detail-rfq-section)::before {
    display: none;
  }

  .contact-section:not(.detail-rfq-section) .contact-grid {
    grid-template-columns: 1fr;
    width: min(100% - 36px, 760px);
    gap: 0;
  }

  .contact-section:not(.detail-rfq-section) .rfq-heading {
    padding: 32px;
    overflow: hidden;
    background: #0D1117;
    border-radius: 6px 6px 0 0;
  }

  .contact-section:not(.detail-rfq-section) .rfq-heading::before {
    display: none;
  }

  .contact-section:not(.detail-rfq-section) .inquiry-form {
    border-radius: 0 0 6px 6px;
  }
}

@media (max-width: 640px) {
  .precision-hero-copy h1 {
    font-size: clamp(38px, 11vw, 48px);
  }

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

  .precision-hero-products {
    min-height: 300px;
  }

  .precision-hero-panel {
    max-width: 76vw;
  }

  .precision-hero-mini {
    right: 12%;
    max-width: 82vw;
  }
  .precision-hero-combo {
    width: min(92vw, 430px);
  }

  .product-line-main-card {
    grid-template-rows: auto 260px auto;
    min-height: 0;
  }

  .product-line-media {
    height: 260px;
  }
}

/* Final logo and banner polish */
.brand {
  gap: 0;
}

.brand-mark {
  display: block !important;
  width: 172px;
  height: auto;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

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

.brand > span:not(.brand-mark) {
  display: none;
}

.site-footer .brand-mark {
  width: 150px;
}

.hero-banner,
.hero-banner-frame {
  background: #f5f5f7;
}

.hero-banner-image {
  mix-blend-mode: multiply;
}

@media (max-width: 900px) {
  .brand-mark {
    width: 150px;
  }
}

@media (max-width: 620px) {
  .brand-mark {
    width: 132px;
  }
}

/* Targeted cleanup: panel series, light applications/OEM, related products */
.panel-selector-media > .product-code,
.panel-series-media > .product-code {
  display: none !important;
}

.applications-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #1D1D1F;
  background:
    linear-gradient(90deg, rgba(13, 17, 23, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(13, 17, 23, 0.028) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%) !important;
  background-size: 56px 56px, 56px 56px, auto !important;
}

.applications-section::before {
  position: absolute;
  inset: 8% auto 10% 0;
  z-index: -1;
  display: block !important;
  width: min(34vw, 460px);
  content: "";
  background: #0D1117;
  clip-path: polygon(0 0, 76% 0, 100% 100%, 0 100%);
  opacity: 0.96;
}

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

.applications-panel,
.applications-panel::before {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.applications-panel .section-heading h2 {
  color: #1D1D1F !important;
}

.applications-panel .section-heading p,
.applications-panel .eyebrow {
  color: #60646c !important;
}

.application-tab {
  color: #3d4652 !important;
  background: rgba(255, 255, 255, 0.86) !important;
  border: 1px solid #E5E5E7 !important;
  border-radius: 6px !important;
  box-shadow: none !important;
}

.application-tab.is-active {
  color: #0D1117 !important;
  background: #ffffff !important;
  border-color: #bfc7d2 !important;
}

.application-tab.is-active::before {
  background: #004BDB !important;
}

.application-media {
  background: #ffffff !important;
  border: 1px solid #E5E5E7 !important;
  border-radius: 6px !important;
  box-shadow: 0 16px 38px rgba(13, 17, 23, 0.08) !important;
}

.application-media img {
  object-fit: contain !important;
}

.application-detail-body {
  color: #1D1D1F !important;
  background: rgba(255, 255, 255, 0.92) !important;
  border: 1px solid #E5E5E7 !important;
  border-radius: 6px !important;
  box-shadow: 0 16px 38px rgba(13, 17, 23, 0.07) !important;
}

.application-detail h3,
.application-spec strong {
  color: #1D1D1F !important;
}

.application-detail-body p,
.application-spec p,
.application-actions > span,
#application-models {
  color: #60646c !important;
}

.application-spec {
  background: #f8f8fa !important;
  border-color: #E5E5E7 !important;
  border-radius: 6px !important;
}

.custom-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #1D1D1F !important;
  background:
    linear-gradient(90deg, rgba(13, 17, 23, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(13, 17, 23, 0.028) 1px, transparent 1px),
    linear-gradient(180deg, #f5f5f7 0%, #ffffff 100%) !important;
  background-size: 56px 56px, 56px 56px, auto !important;
}

.custom-section::before {
  position: absolute;
  inset: 12% auto 12% 0;
  z-index: -1;
  display: block !important;
  width: min(36vw, 520px);
  content: "";
  background: #0D1117 !important;
  clip-path: polygon(0 0, 82% 0, 100% 100%, 0 100%);
  opacity: 0.96;
}

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

.custom-copy h2,
.custom-copy p,
.custom-copy .eyebrow {
  color: #ffffff !important;
}

.custom-list span,
.custom-assurance span {
  color: #1D1D1F !important;
  background: #ffffff !important;
  border: 1px solid #E5E5E7 !important;
  border-radius: 6px !important;
  box-shadow: none !important;
}

.custom-section .btn-secondary {
  color: #0D1117 !important;
  background: #ffffff !important;
  border-color: #E5E5E7 !important;
}

.process-panel {
  color: #1D1D1F !important;
  background: #ffffff !important;
  border: 1px solid #E5E5E7 !important;
  border-radius: 6px !important;
  box-shadow: 0 16px 38px rgba(13, 17, 23, 0.08) !important;
}

.related-product-detail-card {
  display: grid !important;
  grid-template-rows: 260px 1fr !important;
  min-height: 480px !important;
  overflow: hidden !important;
}

.related-product-image {
  display: grid !important;
  place-items: center !important;
  height: 260px !important;
  min-height: 260px !important;
  padding: 28px !important;
  overflow: hidden !important;
  background: linear-gradient(135deg, #ffffff, #f5f5f7) !important;
}

.related-product-image img {
  display: block !important;
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
}

.related-product-content {
  position: static !important;
  padding: 22px !important;
}

@media (max-width: 980px) {
  .applications-section::before,
  .custom-section::before {
    inset: 0 0 auto 0;
    width: 100%;
    height: 220px;
    clip-path: none;
    opacity: 0.05;
  }

  .custom-copy h2 {
    color: #1D1D1F !important;
  }

  .custom-copy p,
  .custom-copy .eyebrow {
    color: #60646c !important;
  }
}

/* Final refinement: lighter Applications and OEM transition */
.applications-section,
.custom-section {
  background:
    linear-gradient(90deg, rgba(13, 17, 23, 0.026) 1px, transparent 1px),
    linear-gradient(rgba(13, 17, 23, 0.022) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #f7f7f9 52%, #ffffff 100%) !important;
  background-size: 64px 64px, 64px 64px, auto !important;
}

.applications-section::before {
  inset: 120px auto 120px 0 !important;
  width: min(26vw, 360px) !important;
  background: #0D1117 !important;
  clip-path: polygon(0 0, 70% 0, 100% 100%, 0 100%) !important;
  opacity: 0.92 !important;
}

.custom-section::before {
  inset: 100px auto 100px 0 !important;
  width: min(30vw, 420px) !important;
  background: #0D1117 !important;
  clip-path: polygon(0 0, 76% 0, 100% 100%, 0 100%) !important;
  opacity: 0.92 !important;
}

.applications-panel .section-heading,
.custom-grid {
  position: relative;
  z-index: 1;
}

.applications-panel .section-heading h2,
.applications-panel .section-heading p,
.applications-panel .eyebrow {
  color: #1D1D1F !important;
}

.application-tabs,
.application-media,
.application-detail-body,
.custom-list,
.process-panel {
  position: relative;
  z-index: 2;
}

.application-tab,
.application-detail-body,
.custom-list span,
.process-panel,
.process-step {
  background-color: rgba(255, 255, 255, 0.96) !important;
  border-color: #E5E5E7 !important;
}

.application-media {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.94), rgba(245,245,247,0.98)) !important;
}

.custom-copy h2,
.custom-copy p,
.custom-copy .eyebrow {
  color: #1D1D1F !important;
}

.custom-copy {
  padding: clamp(28px, 3vw, 42px);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #E5E5E7;
  border-radius: 6px;
}

@media (max-width: 980px) {
  .applications-section::before,
  .custom-section::before {
    display: none !important;
  }

  .custom-copy {
    padding: 0;
    background: transparent;
    border: 0;
  }
}

/* Final targeted cleanup: keep Applications and OEM/ODM light, no dark side ornaments */
.applications-section,
.custom-section {
  overflow: hidden !important;
  background:
    linear-gradient(90deg, rgba(13, 17, 23, 0.018) 1px, transparent 1px),
    linear-gradient(rgba(13, 17, 23, 0.014) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #f7f8fa 54%, #ffffff 100%) !important;
  background-size: 72px 72px, 72px 72px, auto !important;
  color: #1d2733 !important;
}

.applications-section::before,
.applications-section::after,
.custom-section::before,
.custom-section::after {
  display: none !important;
  content: none !important;
  width: 0 !important;
  height: 0 !important;
  background: none !important;
  clip-path: none !important;
  opacity: 0 !important;
}

.applications-panel,
.custom-grid {
  position: relative !important;
  z-index: 1 !important;
}

.applications-panel .section-heading h2,
.custom-copy h2 {
  color: #111827 !important;
}

.applications-panel .section-heading p,
.custom-copy p {
  color: #596574 !important;
}

.applications-panel .eyebrow,
.custom-copy .eyebrow {
  color: #2a67b1 !important;
}

.application-media,
.application-tab,
.application-detail-body,
.application-spec,
.custom-list span,
.process-panel,
.process-step {
  border-color: #d9e2ea !important;
}

.application-media,
.application-detail-body,
.process-panel {
  background: linear-gradient(135deg, #ffffff 0%, #f6f8fb 100%) !important;
  box-shadow: 0 22px 48px rgba(16, 26, 40, 0.08) !important;
}

.application-tab,
.custom-list span,
.process-step {
  background: rgba(255, 255, 255, 0.92) !important;
  color: #253142 !important;
  box-shadow: 0 12px 28px rgba(16, 26, 40, 0.05) !important;
}

.application-tab.active {
  color: #ffffff !important;
  border-color: #1f5f9f !important;
  background: #1f5f9f !important;
}

/* RFQ visual unification: homepage follows product detail RFQ background language */
#contact.contact-section {
  position: relative !important;
  isolation: isolate !important;
  overflow: hidden !important;
  padding: clamp(86px, 8vw, 132px) 0 !important;
  background:
    linear-gradient(180deg, #f5f7fa 0%, #ffffff 100%),
    #f5f7fa !important;
}

#contact.contact-section::before {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  display: block !important;
  content: "" !important;
  background:
    linear-gradient(135deg, #101A28 0%, #162233 56%, #1B2A3C 100%) !important;
  clip-path: polygon(0 0, 59% 0, 50% 100%, 0 100%) !important;
  opacity: 1 !important;
}

#contact.contact-section::after {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  display: block !important;
  content: "" !important;
  pointer-events: none !important;
  background:
    linear-gradient(90deg, rgba(200, 210, 222, 0.085) 1px, transparent 1px),
    linear-gradient(rgba(200, 210, 222, 0.07) 1px, transparent 1px) !important;
  background-size: 42px 42px !important;
  clip-path: polygon(0 0, 60% 0, 51% 100%, 0 100%) !important;
  opacity: 0.72 !important;
}

#contact.contact-section .contact-grid {
  position: relative !important;
  z-index: 1 !important;
  overflow: visible !important;
  grid-template-columns: minmax(320px, 0.46fr) minmax(0, 1fr) !important;
  align-items: center !important;
  gap: clamp(36px, 5vw, 72px) !important;
  width: min(100% - 48px, 1280px) !important;
  max-width: 1280px !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

#contact.contact-section .contact-grid::before {
  display: none !important;
}

#contact.contact-section .rfq-heading {
  position: relative !important;
  z-index: 1 !important;
  max-width: 530px !important;
  min-height: auto !important;
  padding: 0 !important;
  overflow: visible !important;
  color: #ffffff !important;
  background: transparent !important;
  clip-path: none !important;
}

#contact.contact-section .rfq-heading::before,
#contact.contact-section .rfq-heading::after {
  display: none !important;
}

#contact.contact-section .rfq-heading h2 {
  max-width: 520px !important;
  color: #ffffff !important;
  font-size: clamp(34px, 3.35vw, 50px) !important;
  line-height: 1.06 !important;
}

#contact.contact-section .rfq-heading p {
  max-width: 500px !important;
  color: rgba(255, 255, 255, 0.76) !important;
  line-height: 1.68 !important;
}

#contact.contact-section .rfq-heading .eyebrow {
  color: #c8d2de !important;
}

#contact.contact-section .rfq-promise span {
  color: #dce5ee !important;
  background: rgba(5, 12, 22, 0.32) !important;
  border-color: rgba(200, 210, 222, 0.22) !important;
  border-radius: 6px !important;
}

#contact.contact-section .inquiry-form {
  position: relative !important;
  z-index: 2 !important;
  width: min(100%, 1080px) !important;
  max-width: 1080px !important;
  margin: 0 auto !important;
  padding: clamp(32px, 4.5vw, 46px) !important;
  background:
    linear-gradient(180deg, #ffffff, #fafbfd),
    #ffffff !important;
  border: 1px solid var(--line) !important;
  border-radius: 6px !important;
  box-shadow:
    0 32px 80px rgba(13, 21, 34, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
}

#contact.contact-section .inquiry-form::before {
  color: #ffffff !important;
  background:
    linear-gradient(90deg, #101A28, #162233 76%, #1B2A3C),
    #101A28 !important;
}

@media (max-width: 900px) {
  #contact.contact-section {
    padding: clamp(72px, 12vw, 96px) 0 !important;
    background:
      linear-gradient(180deg, #101A28 0%, #162233 34%, #f5f7fa 34.2%, #ffffff 100%) !important;
  }

  #contact.contact-section::before,
  #contact.contact-section::after {
    display: none !important;
  }

  #contact.contact-section .contact-grid {
    grid-template-columns: 1fr !important;
    width: min(100% - 36px, 760px) !important;
    gap: 0 !important;
  }

  #contact.contact-section .rfq-heading {
    padding: 32px !important;
    overflow: hidden !important;
    background:
      linear-gradient(135deg, #101A28 0%, #162233 58%, #1B2A3C 100%) !important;
    border-radius: 6px 6px 0 0 !important;
  }

  #contact.contact-section .inquiry-form {
    border-radius: 0 0 6px 6px !important;
  }
}

/* Header/Hero visual handoff: soft translucent header over light hero */
.site-header {
  background:
    linear-gradient(180deg, rgba(248, 249, 251, 0.94) 0%, rgba(248, 249, 251, 0.88) 100%) !important;
  border-bottom: 1px solid rgba(15, 23, 42, 0.04) !important;
  box-shadow: none !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
}

.site-header.is-scrolled,
body.nav-open .site-header {
  background: rgba(255, 255, 255, 0.96) !important;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06) !important;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.045) !important;
}

@media (max-width: 980px) {
  .site-nav {
    background: rgba(255, 255, 255, 0.98) !important;
    border-color: rgba(15, 23, 42, 0.08) !important;
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.08) !important;
  }
}

/* Header tone refinement: match banner off-white and blend logo white ground */
.site-header {
  background:
    linear-gradient(180deg, rgba(245, 245, 247, 0.96) 0%, rgba(245, 245, 247, 0.9) 100%) !important;
  border-bottom: 1px solid rgba(15, 23, 42, 0.035) !important;
}

.site-header.is-scrolled,
body.nav-open .site-header {
  background: rgba(245, 245, 247, 0.97) !important;
  border-bottom: 1px solid rgba(15, 23, 42, 0.055) !important;
}

.site-header .brand-mark {
  background: #f5f5f7 !important;
}

.site-header .brand-mark img {
  mix-blend-mode: multiply;
}

.site-header .site-nav {
  color: #1d2733 !important;
}

.site-header .site-nav a {
  color: #1d2733 !important;
}

.site-header .site-nav a:hover,
.site-header .site-nav a:focus-visible {
  color: #0f57d6 !important;
}

@media (max-width: 980px) {
  .site-header .site-nav {
    background: rgba(245, 245, 247, 0.98) !important;
  }
}

/* Unified first-screen stage: Header and Hero share one restrained industrial background */
.hero-stage {
  position: relative;
  isolation: isolate;
  overflow-x: clip;
  background: #ffffff;
}

.hero-stage::before {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: -1;
  height: clamp(560px, 49vw, 910px);
  content: "";
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76) 0%, rgba(255, 255, 255, 0.24) 42%, rgba(236, 238, 242, 0.62) 100%),
    linear-gradient(180deg, #f7f7f8 0%, #f3f4f6 48%, #eceef2 100%);
}

.hero-stage .site-header {
  background: transparent !important;
  border-bottom: 1px solid rgba(15, 23, 42, 0.05) !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.hero-stage .site-header.is-scrolled,
body.nav-open .hero-stage .site-header {
  background: rgba(255, 255, 255, 0.92) !important;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06) !important;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.045) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
}

.hero-stage .hero-banner,
.hero-stage .hero-banner-frame {
  background: transparent !important;
}

.hero-stage .brand-mark {
  background: transparent !important;
}

.hero-stage .brand-mark img {
  mix-blend-mode: multiply;
}

@media (max-width: 980px) {
  .hero-stage::before {
    height: clamp(500px, 130vw, 760px);
  }

  .hero-stage .site-nav {
    background: rgba(255, 255, 255, 0.96) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
}

/* Strict hero-stage background merge: Header and Hero share one canvas */
.hero-stage {
  background:
    radial-gradient(circle at 78% 42%, rgba(255,255,255,0.95) 0%, rgba(247,248,250,0.72) 34%, rgba(238,241,245,0.92) 72%, rgba(232,236,242,1) 100%),
    linear-gradient(180deg, #fafbfc 0%, #f6f7f9 34%, #eef1f5 78%, #e9edf3 100%) !important;
}

.hero-stage::before {
  display: none !important;
  content: none !important;
}

.hero-stage .site-header {
  background: transparent !important;
  border-bottom: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.hero-stage .site-header.is-scrolled,
body.nav-open .hero-stage .site-header {
  background: rgba(255, 255, 255, 0.92) !important;
  border-bottom: 1px solid rgba(15, 23, 42, 0.045) !important;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.045) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
}

.hero-stage .hero,
.hero-stage .hero-section,
.hero-stage .home-hero,
.hero-stage .hero-banner,
.hero-stage .hero-banner-frame {
  background: transparent !important;
}

/* Hard sync Header and Hero to the same light gray first-screen background */
.hero-stage,
.hero-stage::before,
.hero-stage .hero,
.hero-stage .hero-section,
.hero-stage .home-hero,
.hero-stage .hero-banner,
.hero-stage .hero-banner-frame,
.hero,
.hero-section,
.home-hero {
  background: #f3f4f6 !important;
}

.hero-stage::before {
  display: none !important;
  content: none !important;
}

header.site-header,
.site-header,
.site-header.is-scrolled,
.site-header.scrolled,
body.nav-open .site-header,
.header-inner,
.header-shell,
.navbar {
  background: #f3f4f6 !important;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06) !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.site-header .brand,
.site-header .brand-mark,
.site-header .brand-mark img,
.site-header .site-nav,
.site-header .nav-toggle {
  background-color: transparent !important;
  background-image: none !important;
}

@media (max-width: 980px) {
  .site-header .site-nav,
  .site-nav.is-open {
    background: #f3f4f6 !important;
    border-color: rgba(15, 23, 42, 0.08) !important;
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08) !important;
  }
}

/* Gemini-reference Header + Hero refinement: real HTML/CSS, light industrial canvas */
.hero-stage {
  background: #f8f9fa !important;
}

.hero-stage::before {
  display: none !important;
  content: none !important;
}

header.site-header,
.site-header,
.site-header.is-scrolled,
.site-header.scrolled,
body.nav-open .site-header {
  min-height: 72px !important;
  padding: 10px clamp(34px, 5vw, 72px) !important;
  background: #f5f5f7 !important;
  border-bottom: 1px solid rgba(15, 23, 42, 0.04) !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.site-header .brand {
  gap: 0 !important;
  min-width: 0 !important;
}

.site-header .brand-mark {
  display: block !important;
  width: clamp(88px, 7.2vw, 104px) !important;
  height: 52px !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.site-header .brand-mark img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  mix-blend-mode: normal !important;
}

.site-header .brand > span:not(.brand-mark) {
  display: none !important;
}

.site-header .site-nav {
  justify-self: end !important;
  gap: clamp(20px, 2.2vw, 34px) !important;
  margin-left: auto !important;
  margin-right: clamp(14px, 2vw, 28px) !important;
  color: #1d1d1f !important;
  font-size: 14px !important;
  font-weight: 500 !important;
}

.site-header .site-nav a {
  color: #1d1d1f !important;
  padding: 10px 0 !important;
}

.site-header .site-nav a:hover,
.site-header .site-nav a:focus-visible {
  color: #0f57d6 !important;
}

.site-header .header-quote {
  min-height: 40px !important;
  padding: 0 18px !important;
  border-radius: 6px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  box-shadow: 0 10px 20px rgba(15, 87, 214, 0.18) !important;
}

.hero-stage .hero,
.hero-stage .hero-banner,
.hero-stage .home-hero,
.hero-stage .hero-section {
  min-height: clamp(600px, 68vh, 700px) !important;
  padding: clamp(42px, 6vw, 70px) 0 clamp(48px, 6vw, 76px) !important;
  display: flex !important;
  align-items: center !important;
  background: #f8f9fa !important;
}

.hero-layout {
  display: grid !important;
  grid-template-columns: minmax(380px, 0.9fr) minmax(480px, 1.1fr) !important;
  align-items: center !important;
  gap: clamp(34px, 5vw, 76px) !important;
  width: min(100% - 72px, 1280px) !important;
  max-width: 1280px !important;
  margin: 0 auto !important;
}

.hero-stage .hero-copy {
  max-width: 580px !important;
  color: #101828 !important;
}

.hero-stage .hero-copy h1 {
  margin: 0 !important;
  color: #101828 !important;
  font-size: clamp(44px, 3.35vw, 52px) !important;
  font-weight: 520 !important;
  line-height: 1.14 !important;
  letter-spacing: 0 !important;
}

.hero-stage .hero-copy h1 span {
  display: block !important;
}

.hero-stage .hero-copy h1 strong {
  color: #0f57d6 !important;
  font-weight: 520 !important;
}

.hero-accent-line {
  display: block;
  width: 52px;
  height: 4px;
  margin: 25px 0 28px;
  background: #0f57d6;
  border-radius: 99px;
}

.hero-stage .hero-lede {
  max-width: 560px !important;
  margin: 0 !important;
  color: #3d4652 !important;
  font-size: 16px !important;
  line-height: 1.75 !important;
}

.hero-stage .hero-actions {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  margin-top: 34px !important;
}

.hero-action-primary,
.hero-action-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.hero-action-primary {
  color: #ffffff;
  background: #0f57d6;
  box-shadow: 0 12px 24px rgba(15, 87, 214, 0.2);
}

.hero-action-secondary {
  color: #0f57d6;
  background: rgba(255, 255, 255, 0.58);
  border-color: rgba(15, 87, 214, 0.48);
}

.hero-product-stage {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-width: 0;
}

.hero-product-combo {
  display: block;
  width: clamp(560px, 48vw, 720px);
  max-width: 100%;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 24px 30px rgba(15, 23, 42, 0.12));
}

@media (max-width: 980px) {
  header.site-header,
  .site-header,
  .site-header.is-scrolled,
  body.nav-open .site-header {
    grid-template-columns: auto 1fr auto !important;
    min-height: 68px !important;
    padding: 10px 18px !important;
  }

  .site-header .brand-mark {
    width: 86px !important;
    height: 46px !important;
  }

  .site-header .site-nav,
  .site-nav.is-open {
    background: #f5f5f7 !important;
  }

  .hero-stage .hero,
  .hero-stage .hero-banner,
  .hero-stage .home-hero {
    min-height: auto !important;
    padding: 48px 0 56px !important;
  }

  .hero-layout {
    grid-template-columns: 1fr !important;
    width: min(100% - 36px, 760px) !important;
    gap: 34px !important;
  }

  .hero-stage .hero-copy h1 {
    font-size: clamp(36px, 10vw, 46px) !important;
  }

  .hero-stage .hero-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    max-width: 320px !important;
  }

  .hero-product-stage {
    justify-content: center;
  }

  .hero-product-combo {
    width: min(100%, 420px);
  }
}

/* Restore Header + Hero normal horizontal composition; keep only light-gray background unification */
.hero-stage {
  background: #f8f9fa !important;
}

.hero-stage::before {
  display: none !important;
  content: none !important;
}

header.site-header,
.site-header,
.site-header.is-scrolled,
.site-header.scrolled,
body.nav-open .site-header,
.header-inner,
.header-shell,
.navbar {
  min-height: 74px !important;
  padding: 9px clamp(34px, 4.2vw, 64px) !important;
  background: #f5f5f7 !important;
  border-bottom: 1px solid rgba(15, 23, 42, 0.04) !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.site-header .brand {
  gap: 0 !important;
  min-width: max-content !important;
}

.site-header .brand-mark {
  display: block !important;
  width: clamp(140px, 10vw, 168px) !important;
  height: 56px !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.site-header .brand-mark img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  mix-blend-mode: normal !important;
}

.site-header .brand > span:not(.brand-mark) {
  display: none !important;
}

.site-header .site-nav {
  justify-self: end !important;
  margin-left: auto !important;
  margin-right: clamp(14px, 2vw, 30px) !important;
  gap: clamp(18px, 2.1vw, 34px) !important;
  color: #1d1d1f !important;
  font-size: 14px !important;
  font-weight: 500 !important;
}

.site-header .site-nav a {
  color: #1d1d1f !important;
  padding: 10px 0 !important;
}

.site-header .site-nav a:hover,
.site-header .site-nav a:focus-visible {
  color: #0f57d6 !important;
}

.site-header .header-quote {
  min-height: 40px !important;
  padding: 0 18px !important;
  border-radius: 6px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
}

.hero-stage .hero,
.hero-stage .hero-banner,
.hero-stage .home-hero,
.hero-stage .hero-section,
.hero,
.hero-banner,
.home-hero,
.hero-section {
  min-height: clamp(620px, 68vh, 700px) !important;
  padding: clamp(38px, 5vw, 62px) 0 clamp(44px, 5vw, 70px) !important;
  display: flex !important;
  align-items: center !important;
  background: #f8f9fa !important;
}

.hero-layout {
  display: grid !important;
  grid-template-columns: minmax(520px, 0.86fr) minmax(620px, 1.14fr) !important;
  align-items: center !important;
  gap: clamp(42px, 5vw, 82px) !important;
  width: min(100% - 80px, 1400px) !important;
  max-width: 1400px !important;
  margin: 0 auto !important;
}

.hero-stage .hero-copy {
  max-width: 620px !important;
  min-width: 0 !important;
  color: #101828 !important;
}

.hero-stage .hero-copy h1 {
  max-width: 620px !important;
  margin: 0 !important;
  color: #101828 !important;
  font-size: clamp(44px, 3.4vw, 52px) !important;
  font-weight: 520 !important;
  line-height: 1.14 !important;
  letter-spacing: 0 !important;
}

.hero-stage .hero-copy h1 span {
  display: block !important;
  white-space: nowrap !important;
}

.hero-stage .hero-copy h1 strong {
  color: #0f57d6 !important;
  font-weight: 520 !important;
}

.hero-accent-line {
  display: block !important;
  width: 52px !important;
  height: 4px !important;
  margin: 24px 0 28px !important;
  background: #0f57d6 !important;
  border-radius: 99px !important;
}

.hero-stage .hero-lede {
  max-width: 580px !important;
  margin: 0 !important;
  color: #3d4652 !important;
  font-size: 16px !important;
  line-height: 1.72 !important;
}

.hero-stage .hero-actions {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  margin-top: 34px !important;
}

.hero-action-primary,
.hero-action-secondary {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 14px !important;
  min-height: 44px !important;
  padding: 0 22px !important;
  border: 1px solid transparent !important;
  border-radius: 6px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  text-decoration: none !important;
}

.hero-action-primary {
  color: #ffffff !important;
  background: #0f57d6 !important;
  box-shadow: 0 12px 24px rgba(15, 87, 214, 0.2) !important;
}

.hero-action-secondary {
  color: #0f57d6 !important;
  background: rgba(255, 255, 255, 0.56) !important;
  border-color: rgba(15, 87, 214, 0.48) !important;
  box-shadow: none !important;
}

.hero-product-stage {
  position: relative !important;
  display: block !important;
  justify-self: end !important;
  width: min(52vw, 760px) !important;
  min-width: 620px !important;
  height: clamp(430px, 34vw, 540px) !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.hero-product-panel,
.hero-product-mini {
  position: absolute !important;
  display: block !important;
  height: auto !important;
  object-fit: contain !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  mix-blend-mode: multiply;
}

.hero-product-panel {
  top: 0 !important;
  right: 0 !important;
  z-index: 1 !important;
  width: min(48vw, 560px) !important;
  filter: drop-shadow(0 20px 28px rgba(15, 23, 42, 0.12)) !important;
}

.hero-product-mini {
  left: 0 !important;
  bottom: 3% !important;
  z-index: 2 !important;
  width: min(50vw, 650px) !important;
  filter: drop-shadow(0 26px 32px rgba(15, 23, 42, 0.16)) !important;
}

@media (max-width: 1180px) {
  .hero-layout {
    grid-template-columns: minmax(430px, 0.9fr) minmax(480px, 1.1fr) !important;
    width: min(100% - 52px, 1180px) !important;
  }

  .hero-product-stage {
    min-width: 500px !important;
    width: min(50vw, 620px) !important;
  }

  .hero-product-panel { width: min(45vw, 470px) !important; }
  .hero-product-mini { width: min(48vw, 540px) !important; }
}

@media (max-width: 980px) {
  header.site-header,
  .site-header,
  .site-header.is-scrolled,
  body.nav-open .site-header {
    grid-template-columns: auto 1fr auto !important;
    min-height: 68px !important;
    padding: 10px 18px !important;
  }

  .site-header .brand-mark {
    width: 132px !important;
    height: 48px !important;
  }

  .site-header .site-nav,
  .site-nav.is-open {
    background: #f5f5f7 !important;
  }

  .hero-stage .hero,
  .hero-stage .hero-banner,
  .hero-stage .home-hero,
  .hero {
    min-height: auto !important;
    padding: 46px 0 56px !important;
  }

  .hero-layout {
    grid-template-columns: 1fr !important;
    width: min(100% - 36px, 760px) !important;
    gap: 34px !important;
  }

  .hero-stage .hero-copy h1 {
    font-size: clamp(36px, 9vw, 46px) !important;
  }

  .hero-stage .hero-copy h1 span {
    white-space: normal !important;
  }

  .hero-stage .hero-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    max-width: 320px !important;
  }

  .hero-product-stage {
    justify-self: center !important;
    min-width: 0 !important;
    width: min(100%, 520px) !important;
    height: 360px !important;
  }

  .hero-product-panel {
    width: min(78vw, 390px) !important;
    right: 0 !important;
  }

  .hero-product-mini {
    width: min(82vw, 440px) !important;
    left: 0 !important;
  }
}

/* Final Header + image Hero: use supplied banner3.png, no product/text recomposition */
.hero-stage,
.hero-stage::before,
.hero-stage .hero,
.hero-stage .hero-banner,
.hero-stage .hero-banner-frame,
.hero,
.hero-banner,
.header-inner,
.header-shell,
.navbar {
  background: #f8f9fa !important;
}

.hero-stage::before {
  display: none !important;
  content: none !important;
}

header.site-header,
.site-header,
.site-header.is-scrolled,
.site-header.scrolled,
body.nav-open .site-header,
.header-inner,
.header-shell,
.navbar {
  min-height: 74px !important;
  padding: 9px clamp(34px, 4.2vw, 64px) !important;
  background: #f8f9fa !important;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06) !important;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.035) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.site-header .brand-mark {
  display: block !important;
  width: clamp(140px, 10vw, 168px) !important;
  height: 56px !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.site-header .brand-mark img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  mix-blend-mode: normal !important;
}

.site-header .brand > span:not(.brand-mark) {
  display: none !important;
}

.hero-banner {
  min-height: 0 !important;
  padding: 0 !important;
  display: block !important;
  overflow: hidden !important;
}

.hero-accessible-title {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.hero-banner-frame {
  position: relative !important;
  width: 100% !important;
  max-width: none !important;
  height: auto !important;
  overflow: hidden !important;
  margin: 0 !important;
  background: #f8f9fa !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.hero-banner-image {
  position: relative !important;
  left: auto !important;
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  height: auto !important;
  transform: none !important;
  object-fit: contain !important;
  object-position: center top !important;
  mix-blend-mode: normal !important;
}

.hero-banner-actions {
  position: absolute !important;
  top: 62.4% !important;
  left: 12.15% !important;
  z-index: 2 !important;
  display: flex !important;
  gap: 1.25% !important;
  width: 29% !important;
  height: 8.2% !important;
  pointer-events: none !important;
}

.hero-banner-link {
  display: block !important;
  height: 100% !important;
  padding: 0 !important;
  color: transparent !important;
  font-size: 0 !important;
  line-height: 0 !important;
  text-indent: -9999px !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  pointer-events: auto !important;
}

.hero-banner-link-primary {
  width: 44% !important;
}

.hero-banner-link-secondary {
  width: 52% !important;
}

.hero-banner-link:focus-visible {
  outline: 2px solid #0f57d6 !important;
  outline-offset: 4px !important;
}

@media (max-width: 980px) {
  header.site-header,
  .site-header,
  .site-header.is-scrolled,
  body.nav-open .site-header {
    min-height: 68px !important;
    padding: 10px 18px !important;
    background: #f8f9fa !important;
  }

  .site-header .brand-mark {
    width: 132px !important;
    height: 48px !important;
  }

  .site-header .site-nav,
  .site-nav.is-open {
    background: #f8f9fa !important;
  }
}

@media (max-width: 620px) {
  .hero-banner-frame {
    height: auto !important;
  }

  .hero-banner-image {
    width: 100% !important;
    min-width: 0 !important;
  }

  .hero-banner-actions {
    position: static !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    width: min(100% - 36px, 320px) !important;
    height: auto !important;
    margin: 18px auto 28px !important;
    pointer-events: auto !important;
  }

  .hero-banner-link {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    min-height: 44px !important;
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    text-indent: 0 !important;
    border-radius: 6px !important;
    background: #0f57d6 !important;
  }

  .hero-banner-link-secondary {
    color: #0f57d6 !important;
    background: rgba(255, 255, 255, 0.64) !important;
    border: 1px solid rgba(15, 87, 214, 0.48) !important;
  }
}

/* Targeted fixes: Applications alignment and OEM capability bullets */
.applications-section .application-grid {
  display: grid !important;
  grid-template-columns: 220px minmax(520px, 1fr) 320px !important;
  align-items: start !important;
  gap: 28px !important;
}

.applications-section .application-tabs,
.applications-section .application-media,
.applications-section .application-detail-body {
  align-self: start !important;
  margin-top: 0 !important;
  transform: none !important;
}

.applications-section .application-tabs {
  display: grid !important;
  gap: 10px !important;
}

.applications-section .application-tab {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 58px !important;
}

.applications-section .application-media {
  width: 100% !important;
  height: clamp(420px, 34vw, 560px) !important;
  min-height: 420px !important;
  overflow: hidden !important;
}

.applications-section .application-media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
}

.custom-list span::before {
  width: 9px !important;
  height: 9px !important;
  background: #2A67B1 !important;
  border: 0 !important;
  border-radius: 999px !important;
  box-shadow: none !important;
}

@media (max-width: 1100px) {
  .applications-section .application-grid {
    grid-template-columns: 210px minmax(420px, 1fr) 300px !important;
    gap: 22px !important;
  }
}

@media (max-width: 900px) {
  .applications-section .application-grid {
    grid-template-columns: 1fr !important;
  }

  .applications-section .application-media {
    order: 1 !important;
    min-height: 0 !important;
    height: auto !important;
    aspect-ratio: 16 / 10 !important;
  }

  .applications-section .application-tabs {
    order: 2 !important;
  }

  .applications-section .application-detail-body {
    order: 3 !important;
  }
}

/* Homepage Applications final layout: scoped B2B solution module */
.applications-section {
  padding-block: clamp(56px, 6vw, 88px) !important;
}

.applications-section .section-shell {
  width: min(1360px, calc(100% - 48px)) !important;
  max-width: 1360px !important;
}

.applications-panel {
  overflow: hidden !important;
  padding: clamp(28px, 3vw, 40px) !important;
  color: #1d2733 !important;
  background: #ffffff !important;
  border: 1px solid #dce3ea !important;
  border-radius: 12px !important;
  box-shadow: 0 18px 44px rgba(16, 26, 40, 0.06) !important;
}

.applications-panel::before,
.applications-panel::after {
  display: none !important;
  content: none !important;
}

.applications-panel .section-heading {
  max-width: 780px !important;
  margin-bottom: clamp(22px, 2vw, 30px) !important;
}

.applications-panel .section-heading h2 {
  color: #111827 !important;
}

.applications-panel .section-heading p {
  color: #596574 !important;
}

.applications-panel .eyebrow {
  color: #2a67b1 !important;
}

.applications-section .application-grid {
  display: grid !important;
  grid-template-columns: 220px minmax(560px, 1fr) 300px !important;
  gap: 20px !important;
  align-items: stretch !important;
}

.applications-section .application-detail {
  display: contents !important;
}

.applications-section .application-tabs {
  display: grid !important;
  grid-template-rows: repeat(8, minmax(0, 1fr)) !important;
  align-content: stretch !important;
  gap: 0 !important;
  min-width: 0 !important;
  height: 100% !important;
  min-height: 548px !important;
  padding: 0 !important;
  background: #ffffff !important;
  border: 1px solid #dce3ea !important;
  border-radius: 10px !important;
  box-shadow: none !important;
  overflow: hidden !important;
}

.applications-section .application-tab {
  position: relative !important;
  display: grid !important;
  grid-template-columns: 24px minmax(0, 1fr) !important;
  align-items: center !important;
  column-gap: 12px !important;
  min-height: 64px !important;
  height: 100% !important;
  padding: 12px 16px !important;
  color: #4b5563 !important;
  text-align: left !important;
  background: transparent !important;
  border: 0 !important;
  border-top: 1px solid #e5eaf0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transform: none !important;
}

.applications-section .application-tab:first-child {
  border-top: 0 !important;
}

.applications-section .application-tab::before {
  position: absolute !important;
  top: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 3px !important;
  content: "" !important;
  background: transparent !important;
  border-radius: 0 999px 999px 0 !important;
}

.applications-section .application-tab svg {
  width: 18px !important;
  height: 18px !important;
  color: currentColor !important;
  opacity: 0.58 !important;
}

.applications-section .application-tab span {
  color: inherit !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  letter-spacing: 0 !important;
}

.applications-section .application-tab:hover,
.applications-section .application-tab:focus-visible {
  color: #1f4f93 !important;
  background: #f8fafc !important;
  outline: 0 !important;
}

.applications-section .application-tab.is-active {
  color: #0f57d6 !important;
  background: #f4f7fb !important;
  border-color: #e5eaf0 !important;
  box-shadow: none !important;
}

.applications-section .application-tab.is-active::before {
  background: #0f57d6 !important;
}

.applications-section .application-tab.is-active svg {
  opacity: 0.9 !important;
}

.applications-section .application-media {
  position: relative !important;
  display: block !important;
  min-width: 0 !important;
  min-height: 0 !important;
  height: 100% !important;
  min-height: 548px !important;
  aspect-ratio: auto !important;
  align-self: stretch !important;
  overflow: hidden !important;
  background: #f3f5f7 !important;
  border: 1px solid #dce3ea !important;
  border-radius: 10px !important;
  box-shadow: none !important;
}

.applications-section .application-media::before,
.applications-section .application-media::after {
  display: none !important;
  content: none !important;
}

.applications-section .application-media img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  padding: 0 !important;
  object-fit: cover !important;
  object-position: center !important;
  transition: opacity 190ms ease, transform 190ms ease !important;
}

.applications-section .application-media img[hidden] {
  display: none !important;
}

.applications-section .application-media-overlay {
  position: absolute !important;
  right: 14px !important;
  bottom: 14px !important;
  z-index: 2 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0 !important;
  padding: 7px 10px !important;
  color: #ffffff !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  background: rgba(17, 24, 39, 0.62) !important;
  border-radius: 999px !important;
  backdrop-filter: blur(8px) !important;
}

.applications-section .application-media-overlay::before {
  display: none !important;
}

.applications-section .application-solution-card {
  display: flex !important;
  flex-direction: column !important;
  align-self: stretch !important;
  gap: 14px !important;
  min-width: 0 !important;
  padding: 22px !important;
  color: #1d2733 !important;
  background: #ffffff !important;
  border: 1px solid #dce3ea !important;
  border-radius: 10px !important;
  box-shadow: none !important;
}

.applications-section .application-solution-card .eyebrow {
  margin: 0 !important;
  color: #0f57d6 !important;
  font-size: 11px !important;
  font-weight: 850 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
}

.applications-section .application-detail h3 {
  margin: 0 !important;
  color: #111827 !important;
  font-size: clamp(22px, 1.8vw, 28px) !important;
  line-height: 1.16 !important;
}

.applications-section .application-summary {
  display: -webkit-box !important;
  max-width: none !important;
  margin: 0 !important;
  overflow: hidden !important;
  color: #566273 !important;
  font-size: 14px !important;
  line-height: 1.55 !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 3 !important;
}

.applications-section .application-summary-groups {
  display: grid !important;
  gap: 0 !important;
  margin-top: 2px !important;
  border-top: 1px solid #eef2f6 !important;
  border-bottom: 1px solid #eef2f6 !important;
}

.applications-section .application-spec {
  display: grid !important;
  gap: 7px !important;
  margin: 0 !important;
  padding: 13px 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-bottom: 1px solid #eef2f6 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.applications-section .application-spec:last-child {
  border-bottom: 0 !important;
}

.applications-section .application-spec > span,
.applications-section .application-models > span {
  color: #0f57d6 !important;
  font-size: 10px !important;
  font-weight: 850 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
}

.applications-section .application-spec p,
.applications-section .application-spec strong {
  display: grid !important;
  gap: 3px !important;
  margin: 0 !important;
  color: #222b38 !important;
  font-size: 14px !important;
  font-weight: 650 !important;
  line-height: 1.38 !important;
}

.applications-section .application-spec p span,
.applications-section .application-spec strong span {
  color: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.applications-section .application-actions {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 10px !important;
  align-items: center !important;
  margin-top: auto !important;
}

.applications-section .application-actions .btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 42px !important;
  padding: 0 14px !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  border-radius: 8px !important;
  box-shadow: none !important;
  white-space: nowrap !important;
}

.applications-section .application-actions .btn-primary {
  color: #ffffff !important;
  background: #0f57d6 !important;
  border-color: #0f57d6 !important;
}

.applications-section .application-actions .btn-secondary {
  color: #0f57d6 !important;
  background: #ffffff !important;
  border: 1px solid #b8c7dc !important;
}

.applications-section .application-models {
  display: grid !important;
  gap: 7px !important;
  margin-top: 0 !important;
  padding-top: 2px !important;
}

.applications-section .application-models p {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 5px 7px !important;
  align-items: center !important;
  margin: 0 !important;
  color: #667085 !important;
  font-size: 12px !important;
  line-height: 1.45 !important;
}

.applications-section .application-models a {
  color: #455468 !important;
  text-decoration: none !important;
}

.applications-section .application-models a:hover,
.applications-section .application-models a:focus-visible {
  color: #0f57d6 !important;
  text-decoration: underline !important;
}

@media (max-width: 1180px) {
  .applications-section .application-grid {
    grid-template-columns: 220px minmax(500px, 1fr) 300px !important;
    gap: 18px !important;
  }

  .applications-section .application-solution-card {
    padding: 20px !important;
  }
}

@media (max-width: 980px) {
  .applications-section .section-shell {
    width: min(100% - 32px, 920px) !important;
  }

  .applications-panel {
    padding: 24px !important;
  }

  .applications-section .application-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .applications-section .application-tabs {
    display: flex !important;
    order: 1 !important;
    gap: 0 !important;
    padding: 6px !important;
    height: auto !important;
    min-height: 0 !important;
    overflow-x: auto !important;
    scroll-snap-type: x proximity !important;
  }

  .applications-section .application-tab {
    flex: 0 0 auto !important;
    min-width: 168px !important;
    height: auto !important;
    border-right: 1px solid #eef2f6 !important;
    border-bottom: 0 !important;
    border-top: 0 !important;
    border-radius: 8px !important;
    scroll-snap-align: start !important;
  }

  .applications-section .application-tab::before {
    top: auto !important;
    right: 14px !important;
    bottom: 0 !important;
    left: 14px !important;
    width: auto !important;
    height: 3px !important;
    border-radius: 999px 999px 0 0 !important;
  }

  .applications-section .application-media {
    order: 2 !important;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 16 / 9 !important;
  }

  .applications-section .application-solution-card {
    order: 3 !important;
  }
}

@media (max-width: 640px) {
  .applications-section {
    padding-block: 44px !important;
  }

  .applications-section .section-shell {
    width: min(100% - 24px, 640px) !important;
  }

  .applications-panel {
    padding: 20px 14px !important;
    border-radius: 12px !important;
  }

  .applications-panel .section-heading {
    margin-bottom: 18px !important;
  }

  .applications-section .application-tabs {
    margin-inline: -2px !important;
  }

  .applications-section .application-tab {
    min-width: 156px !important;
    min-height: 52px !important;
  }

  .applications-section .application-solution-card {
    padding: 18px !important;
  }

  .applications-section .application-actions {
    grid-template-columns: 1fr !important;
  }

  .applications-section .application-actions .btn {
    width: 100% !important;
  }
}
