:root {
  --blue: #0042B0;
  --blue-dark: #002F7D;
  --ink: #111827;
  --muted: #667085;
  --line: #d9e2ef;
  --surface: #f5f8fc;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

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

.siteHeader {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand img {
  display: block;
  width: 142px;
  height: auto;
}

nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #344054;
  font-size: 14px;
}

.headerCta,
.primaryButton,
.secondaryButton,
.quoteForm button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
}

.headerCta,
.primaryButton,
.quoteForm button {
  background: var(--blue);
  color: white;
  border: 1px solid var(--blue);
}

.secondaryButton {
  background: white;
  color: var(--blue-dark);
  border: 1px solid var(--line);
}

.hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(520px, 1.35fr);
  min-height: 690px;
  border-bottom: 1px solid var(--line);
}

.heroCopy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 74px clamp(22px, 5vw, 76px);
}

.smallLine {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

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

h1 {
  max-width: 640px;
  margin-bottom: 24px;
  font-size: clamp(44px, 5.6vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

.heroCopy > p:not(.smallLine) {
  max-width: 560px;
  color: #4b5563;
  font-size: 18px;
  line-height: 1.7;
}

.heroActions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.proofStrip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 560px;
  margin: 52px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
}

.proofStrip dt {
  color: var(--blue-dark);
  font-size: 31px;
  font-weight: 800;
}

.proofStrip dd {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.heroMedia {
  min-height: 540px;
  overflow: hidden;
  background: var(--surface);
}

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

.section {
  padding: 92px clamp(20px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
  background: var(--surface);
}

.intro h2,
.sectionHead h2,
.darkCopy h2,
.factoryCopy h2,
.contactPerson h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

.intro p,
.sectionHead p,
.darkCopy p,
.factoryCopy p,
.contactPerson p,
.productCard p,
.faqList p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.sectionHead {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.sectionHead p {
  max-width: 440px;
}

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

.productCard {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.productCard img {
  display: block;
  width: 100%;
  height: 178px;
  object-fit: cover;
}

.productCard div {
  padding: 24px;
}

.productCard h3,
.faqList h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.darkBand {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  padding: 96px clamp(20px, 5vw, 72px);
  background: linear-gradient(135deg, #071426 0%, #002F7D 62%, #0042B0 100%);
  color: white;
}

.darkCopy p {
  color: #d6e3f7;
}

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

.advantageItem {
  min-height: 120px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

.scenarioGrid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.scenarioGrid span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 86px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.factorySection {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 560px;
  background: var(--surface);
}

.factoryImage {
  overflow: hidden;
}

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

.factoryCopy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px clamp(20px, 5vw, 72px);
}

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

.miniStats span {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: white;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 700;
}

.faqSection {
  background: white;
}

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

.faqList article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contactSection {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  padding: 92px clamp(20px, 5vw, 72px);
  background: #071426;
  color: white;
}

.contactPerson {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 28px;
  align-items: center;
}

.contactPerson img {
  width: 150px;
  height: 184px;
  object-fit: cover;
  border-radius: 8px;
}

.contactPerson p {
  color: #d6e3f7;
}

.contactPerson a,
.contactPerson span {
  display: block;
  margin-top: 10px;
  color: white;
  font-weight: 700;
}

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

.quoteForm input,
.quoteForm select,
.quoteForm textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font: inherit;
}

.quoteForm textarea {
  grid-column: 1 / -1;
  padding-top: 13px;
  resize: vertical;
}

.quoteForm input::placeholder,
.quoteForm textarea::placeholder {
  color: #c7d5eb;
}

.quoteForm button {
  grid-column: 1 / -1;
  min-height: 52px;
  cursor: pointer;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

footer img {
  width: 118px;
  height: auto;
}

@media (max-width: 980px) {
  nav {
    display: none;
  }

  .hero,
  .intro,
  .darkBand,
  .factorySection,
  .contactSection {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .heroMedia {
    min-height: 360px;
  }

  .productGrid,
  .faqList {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .siteHeader {
    padding: 14px 18px;
  }

  .brand img {
    width: 112px;
  }

  .headerCta {
    min-height: 40px;
    padding: 0 14px;
  }

  .heroCopy {
    padding: 50px 20px;
  }

  .proofStrip,
  .advantageGrid,
  .quoteForm,
  .contactPerson {
    grid-template-columns: 1fr;
  }

  .section,
  .darkBand,
  .contactSection {
    padding: 62px 20px;
  }

  .sectionHead {
    display: block;
  }

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

  footer {
    display: block;
  }
}

.darkHome {
  min-height: 100vh;
  background: #05070b;
  color: #f7f9fc;
}

.darkHeader {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 20px clamp(20px, 5vw, 76px);
  background: rgba(5, 7, 11, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.darkHeader img {
  width: 132px;
  height: auto;
}

.darkHeader nav {
  color: #c9d3e2;
}

.darkCta,
.darkActions a,
.darkOem a,
.darkForm button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 4px;
  background: #0042B0;
  color: white;
  border: 1px solid #0042B0;
  font-size: 14px;
  font-weight: 800;
}

.darkHero {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  min-height: 720px;
  background:
    radial-gradient(circle at 78% 22%, rgba(0, 66, 176, 0.28), transparent 32%),
    linear-gradient(135deg, #05070b 0%, #0d1420 52%, #02040a 100%);
  overflow: hidden;
}

.darkHeroCopy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 88px clamp(22px, 5vw, 76px);
}

.darkHero h1 {
  max-width: 660px;
  margin-bottom: 28px;
  color: white;
  font-size: clamp(48px, 6.2vw, 92px);
  line-height: 0.94;
  letter-spacing: 0;
}

.darkHero p {
  max-width: 590px;
  color: #c7d3e4;
  font-size: 19px;
  line-height: 1.72;
}

.darkHero ul {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  color: #aebbd0;
  font-size: 14px;
}

.darkHero li {
  position: relative;
  padding-left: 22px;
}

.darkHero li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0042B0;
  box-shadow: 0 0 18px rgba(0, 66, 176, 0.8);
}

.darkActions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.darkActions a + a {
  background: transparent;
  color: #eaf1ff;
  border-color: rgba(255, 255, 255, 0.22);
}

.darkHeroMedia {
  display: flex;
  align-items: center;
  min-height: 560px;
  overflow: hidden;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.darkHeroMedia img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.08) brightness(0.76);
}

.darkStats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #080d14;
}

.darkStats div {
  min-height: 142px;
  padding: 34px clamp(20px, 4vw, 56px);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.darkStats strong {
  display: block;
  color: #4C7FD6;
  font-size: 36px;
  line-height: 1;
}

.darkStats span {
  display: block;
  margin-top: 10px;
  color: #aebbd0;
  font-size: 14px;
}

.darkSection {
  padding: 98px clamp(20px, 5vw, 76px);
  background: #05070b;
}

.darkSectionHead {
  display: flex;
  justify-content: space-between;
  gap: 42px;
  align-items: end;
  margin-bottom: 38px;
}

.darkSectionHead h2,
.darkOem h2,
.darkTech h2,
.darkContact h2 {
  max-width: 720px;
  margin-bottom: 16px;
  color: white;
  font-size: clamp(32px, 3.6vw, 54px);
  line-height: 1.06;
  letter-spacing: 0;
}

.darkSectionHead p,
.darkOem p,
.darkContact p,
.darkProductGrid p,
.darkQcRail p,
.darkTech p,
.darkFooter p {
  max-width: 560px;
  color: #9ba8bb;
  font-size: 16px;
  line-height: 1.7;
}

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

.darkProductGrid article {
  display: flex;
  flex-direction: column;
  min-height: 470px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: linear-gradient(180deg, #111823 0%, #0a0f17 100%);
}

.darkProductGrid h3 {
  margin-bottom: 12px;
  color: white;
  font-size: 24px;
}

.darkProductGrid img {
  width: 100%;
  height: 198px;
  object-fit: cover;
  margin-top: auto;
  border-radius: 6px;
  filter: saturate(0.9) brightness(0.82);
}

.darkOem {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 56px;
  padding: 104px clamp(20px, 5vw, 76px);
  background:
    linear-gradient(135deg, rgba(0, 66, 176, 0.24), transparent 42%),
    #0a1019;
}

.darkOem a {
  margin-top: 20px;
}

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

.darkOemGrid span {
  display: flex;
  align-items: end;
  min-height: 130px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: #eaf1ff;
  font-weight: 800;
}

.darkQcRail {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.darkQcRail article {
  min-height: 190px;
  padding: 24px;
  background: #0b111b;
}

.darkQcRail b {
  display: block;
  margin-bottom: 28px;
  color: #4C7FD6;
  font-size: 14px;
}

.darkQcRail h3 {
  color: white;
  font-size: 19px;
  line-height: 1.25;
}

.darkTech {
  padding: 98px clamp(20px, 5vw, 76px);
  background: #080d14;
}

.darkTech > div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.darkTech article {
  min-height: 210px;
  padding: 28px;
  border-left: 2px solid #0042B0;
  background: #0d1420;
}

.darkTech h3 {
  margin-bottom: 14px;
  color: white;
  font-size: 24px;
}

.darkContact {
  display: grid;
  grid-template-columns: 190px 1fr 220px;
  gap: 34px;
  align-items: center;
  padding: 98px clamp(20px, 5vw, 76px);
  background:
    radial-gradient(circle at 16% 20%, rgba(0, 66, 176, 0.18), transparent 24%),
    #05070b;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.darkContact > img {
  width: 180px;
  height: 230px;
  object-fit: cover;
  border-radius: 8px;
  filter: saturate(0.94) contrast(1.04);
}

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

.darkForm input,
.darkForm textarea {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  background: #0b111b;
  color: white;
  font: inherit;
}

.darkForm input::placeholder,
.darkForm textarea::placeholder {
  color: #7f8ca2;
}

.darkForm textarea {
  grid-column: 1 / -1;
  min-height: 112px;
  padding-top: 14px;
}

.darkForm button {
  grid-column: 1 / -1;
}

.darkContact aside {
  display: grid;
  gap: 10px;
}

.darkContact aside span {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.045);
  color: #c9d3e2;
  font-weight: 800;
}

.darkFooter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(20px, 5vw, 76px);
  background: #03050a;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.darkFooter img {
  width: 118px;
  height: auto;
}

@media (max-width: 980px) {
  .darkHero,
  .darkOem,
  .darkContact {
    grid-template-columns: 1fr;
  }

  .darkStats,
  .darkProductGrid,
  .darkTech > div {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 620px) {
  .darkHeader nav {
    display: none;
  }

  .darkHeroCopy,
  .darkSection,
  .darkOem,
  .darkTech,
  .darkContact {
    padding-left: 20px;
    padding-right: 20px;
  }

  .darkStats,
  .darkProductGrid,
  .darkQcRail,
  .darkOemGrid,
  .darkTech > div,
  .darkForm {
    grid-template-columns: 1fr;
  }

  .darkSectionHead {
    display: block;
  }
}

.productDetailPage {
  background: #ffffff;
  color: #111827;
  font-family: Arial, Helvetica, sans-serif;
}

.productDetailHeader {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 16px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid #dbe6f2;
  backdrop-filter: blur(18px);
}

.productDetailHeader img {
  width: 132px;
  height: auto;
}

.productDetailHeader nav {
  display: flex;
  gap: 24px;
  color: #344054;
  font-size: 14px;
}

.productTemplateHero {
  padding: 34px clamp(20px, 5vw, 72px) 70px;
  background:
    radial-gradient(circle at 82% 10%, rgba(0, 66, 176, 0.1), transparent 28%),
    linear-gradient(135deg, #f6f9fd 0%, #ffffff 54%, #edf4fb 100%);
}

.productBreadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
  color: #667085;
  font-size: 13px;
}

.productBreadcrumb a {
  color: #0042B0;
  font-weight: 700;
}

.productBreadcrumb strong {
  color: #101828;
}

.productTemplateGrid {
  display: grid;
  grid-template-columns: minmax(420px, 1.04fr) minmax(360px, 0.96fr);
  gap: 34px;
  align-items: start;
}

.productMediaColumn {
  display: grid;
  gap: 14px;
}

.mainProductImage {
  overflow: hidden;
  border: 1px solid #dbe6f2;
  border-radius: 12px;
  background: white;
  box-shadow: 0 24px 64px rgba(0, 66, 176, 0.1);
}

.mainProductImage img {
  display: block;
  width: 100%;
  height: auto;
}

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

.productThumbs img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 8px;
  border: 1px solid #dbe6f2;
  border-radius: 8px;
  background: white;
}

.productInfoPanel {
  position: sticky;
  top: 92px;
  padding: 30px;
  border: 1px solid #dbe6f2;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 70px rgba(0, 66, 176, 0.09);
  backdrop-filter: blur(18px);
}

.productInfoPanel > span {
  display: block;
  margin-bottom: 12px;
  color: #0042B0;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.productInfoPanel h1 {
  margin-bottom: 18px;
  color: #101828;
  font-size: clamp(34px, 3.4vw, 52px);
  line-height: 1.04;
  letter-spacing: 0;
}

.productInfoPanel p {
  color: #5d6b7c;
  font-size: 16px;
  line-height: 1.68;
}

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

.modelBadgeGrid strong {
  padding: 13px 14px;
  border: 1px solid #cfdced;
  border-radius: 8px;
  background: #f6f9fd;
  color: #00327F;
  font-size: 13px;
}

.quickSpecList {
  display: grid;
  gap: 0;
  margin: 0 0 24px;
  padding: 0;
  border-top: 1px solid #dbe6f2;
  list-style: none;
}

.quickSpecList li {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid #dbe6f2;
}

.quickSpecList span {
  color: #667085;
  font-size: 13px;
}

.quickSpecList b {
  color: #111827;
  font-size: 13px;
  line-height: 1.4;
}

.productPanelActions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.productPanelActions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 4px;
  border: 1px solid #0042B0;
  background: #0042B0;
  color: white;
  font-size: 14px;
  font-weight: 850;
}

.productPanelActions a + a {
  border-color: #25d366;
  background: #25d366;
  color: #082814;
}

.panelNote {
  margin: 16px 0 0;
  color: #667085;
  font-size: 13px !important;
}

.productTabs {
  position: sticky;
  top: 75px;
  z-index: 20;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-top: 1px solid #dbe6f2;
  border-bottom: 1px solid #dbe6f2;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
}

.productTabs a {
  min-height: 38px;
  padding: 10px 16px;
  border-radius: 999px;
  color: #344054;
  font-size: 13px;
  font-weight: 750;
}

.productTabs a:hover {
  background: #0042B0;
  color: white;
}

.productHeroDetail {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 38px;
  padding: 72px clamp(20px, 5vw, 72px) 82px;
  background:
    radial-gradient(circle at 84% 12%, rgba(0, 66, 176, 0.12), transparent 28%),
    linear-gradient(135deg, #f6f9fd 0%, #ffffff 54%, #edf4fb 100%);
}

.productHeroCopy > span,
.productSectionHead > span {
  display: block;
  margin-bottom: 14px;
  color: #0042B0;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.productHeroCopy h1 {
  max-width: 720px;
  margin-bottom: 22px;
  color: #101828;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
}

.productHeroCopy p,
.productIntroBand p,
.productGallery p,
.productSectionHead p,
.productQuoteSection p {
  color: #5d6b7c;
  font-size: 16px;
  line-height: 1.72;
}

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

.productHeroActions a,
.productQuoteSection button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 4px;
  background: #0042B0;
  color: white;
  border: 1px solid #0042B0;
  font-size: 14px;
  font-weight: 850;
}

.productHeroActions a + a {
  background: white;
  color: #0042B0;
  border-color: #cfdced;
}

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

.productHeroStats strong {
  padding: 16px;
  border: 1px solid #dbe6f2;
  border-radius: 8px;
  background: white;
  color: #0042B0;
  font-size: 16px;
}

.productHeroImage {
  overflow: hidden;
  border: 1px solid #dbe6f2;
  border-radius: 12px;
  background: white;
  box-shadow: 0 28px 70px rgba(0, 66, 176, 0.1);
}

.productHeroImage img {
  display: block;
  width: 100%;
  height: auto;
}

.productIntroBand {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 34px;
  align-items: center;
  padding: 86px clamp(20px, 5vw, 72px);
  background: #071426;
  color: white;
}

.productIntroBand h2,
.productSectionHead h2,
.productQuoteSection h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 3.3vw, 50px);
  line-height: 1.08;
  letter-spacing: 0;
}

.productIntroBand p {
  color: #d5e2f4;
}

.productIntroBand img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  border-radius: 10px;
}

.productGallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding: 90px clamp(20px, 5vw, 72px);
}

.productGallery article {
  overflow: hidden;
  border: 1px solid #dde7f3;
  border-radius: 8px;
  background: #fff;
}

.productGallery img {
  display: block;
  width: 100%;
  height: 330px;
  object-fit: contain;
  background: #f6f9fd;
}

.productGallery h3,
.productGallery p {
  margin-left: 24px;
  margin-right: 24px;
}

.productGallery h3 {
  margin-top: 24px;
  margin-bottom: 10px;
  color: #00327F;
  font-size: 22px;
}

.productGallery p {
  margin-bottom: 26px;
}

.applicationSection {
  padding: 88px clamp(20px, 5vw, 72px);
  background: #f4f7fb;
}

.productSectionHead {
  max-width: 760px;
  margin-bottom: 34px;
}

.applicationGrid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.applicationGrid span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 12px;
  border-radius: 8px;
  background: #0042B0;
  color: white;
  font-weight: 820;
  text-align: center;
}

.applicationSection > img {
  display: block;
  width: min(860px, 100%);
  height: auto;
  margin: 0 auto;
  border-radius: 10px;
  background: white;
}

.specSection {
  padding: 92px clamp(20px, 5vw, 72px);
}

.commonSpecGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 34px;
}

.commonSpecGrid div {
  padding: 18px 20px;
  border: 1px solid #dbe6f2;
  border-radius: 8px;
  background: #f8fbff;
}

.commonSpecGrid span {
  display: block;
  margin-bottom: 7px;
  color: #667085;
  font-size: 13px;
}

.commonSpecGrid strong {
  color: #111827;
  font-size: 15px;
  line-height: 1.45;
}

.modelTableWrap {
  overflow-x: auto;
  border: 1px solid #cbd9ea;
  border-radius: 8px;
}

.modelTable {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
  font-size: 14px;
}

.modelTable th {
  background: #0042B0;
  color: white;
  text-align: left;
}

.modelTable th,
.modelTable td {
  padding: 14px 16px;
  border-bottom: 1px solid #dbe6f2;
}

.modelTable tr:nth-child(even) td {
  background: #f4f8fd;
}

.productQuoteSection {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 38px;
  padding: 90px clamp(20px, 5vw, 72px);
  background: linear-gradient(135deg, #071426 0%, #002F7D 68%, #0042B0 100%);
  color: white;
}

.productQuoteSection p {
  color: #d8e5f7;
}

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

.productQuoteSection input,
.productQuoteSection select,
.productQuoteSection textarea {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font: inherit;
}

.productQuoteSection input::placeholder,
.productQuoteSection textarea::placeholder {
  color: #c7d5eb;
}

.productQuoteSection textarea {
  grid-column: 1 / -1;
  min-height: 120px;
  padding-top: 14px;
}

.productQuoteSection button {
  grid-column: 1 / -1;
  cursor: pointer;
}

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

  .productInfoPanel {
    position: static;
  }

  .productHeroDetail,
  .productIntroBand,
  .productQuoteSection {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .productDetailHeader nav {
    display: none;
  }

  .productHeroStats,
  .modelBadgeGrid,
  .productPanelActions,
  .productGallery,
  .applicationGrid,
  .commonSpecGrid,
  .productQuoteSection form {
    grid-template-columns: 1fr;
  }

  .productHeroDetail,
  .productTemplateHero,
  .productIntroBand,
  .productGallery,
  .applicationSection,
  .specSection,
  .productQuoteSection {
    padding-left: 20px;
    padding-right: 20px;
  }

  .productTabs {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .quickSpecList li {
    grid-template-columns: 1fr;
  }
}

.blueInquiryPage {
  min-height: 100vh;
  padding: 46px clamp(18px, 4vw, 64px);
  background:
    radial-gradient(circle at 8% 12%, rgba(0, 66, 176, 0.28), transparent 30%),
    radial-gradient(circle at 88% 16%, rgba(0, 66, 176, 0.22), transparent 28%),
    linear-gradient(135deg, #030712 0%, #07111f 48%, #02050b 100%);
  color: #f8fbff;
}

.blueInquiryShell {
  display: grid;
  grid-template-columns: minmax(310px, 0.82fr) minmax(520px, 1.18fr);
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
}

.blueInquiryBrand,
.blueInquiryPanel {
  border: 1px solid rgba(0, 66, 176, 0.28);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(20px) saturate(1.25);
}

.blueInquiryBrand {
  display: flex;
  flex-direction: column;
  min-height: 720px;
  padding: 34px;
  background:
    linear-gradient(145deg, rgba(0, 66, 176, 0.28), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
}

.blueInquiryBrand img {
  width: 140px;
  height: auto;
  padding: 10px 12px;
  border-radius: 10px;
  background: white;
}

.blueInquiryBrand h1 {
  margin: 58px 0 22px;
  color: white;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 0.98;
  letter-spacing: 0;
}

.blueInquiryBrand p,
.blueInquiryHead p,
.blueSecurityNote span {
  color: #aebbd0;
  font-size: 16px;
  line-height: 1.7;
}

.blueProofGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 38px;
}

.blueProofGrid span,
.blueDirectContact {
  border: 1px solid rgba(0, 66, 176, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.055);
}

.blueProofGrid span {
  min-height: 92px;
  padding: 18px;
  color: #4C7FD6;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.35;
}

.blueDirectContact {
  margin-top: auto;
  padding: 22px;
}

.blueDirectContact strong {
  display: block;
  margin-bottom: 10px;
  color: white;
}

.blueDirectContact a,
.blueDirectContact span {
  display: block;
  color: #4C7FD6;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.7;
}

.blueInquiryPanel {
  padding: 34px;
}

.blueInquiryHead {
  margin-bottom: 24px;
}

.blueInquiryHead > span {
  display: block;
  margin-bottom: 10px;
  color: #4C7FD6;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.blueInquiryHead h2 {
  margin-bottom: 10px;
  color: white;
  font-size: clamp(30px, 3vw, 44px);
  letter-spacing: 0;
}

.blueInquiryHead em {
  color: #4C7FD6;
  font-style: normal;
  font-weight: 900;
}

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

.blueHoneypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.blueInquiryField {
  display: grid;
  gap: 8px;
}

.blueInquiryField.wide {
  grid-column: 1 / -1;
}

.blueInquiryField span {
  color: #edf4ff;
  font-size: 13px;
  font-weight: 780;
}

.blueInquiryField em {
  margin-left: 4px;
  color: #4C7FD6;
  font-style: normal;
}

.blueInquiryField input,
.blueInquiryField select,
.blueInquiryField textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 15px;
  border: 1px solid rgba(0, 66, 176, 0.25);
  border-radius: 8px;
  outline: none;
  background: rgba(5, 11, 21, 0.84);
  color: white;
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.blueInquiryField textarea {
  min-height: 124px;
  padding-top: 14px;
  resize: vertical;
}

.blueInquiryField input::placeholder,
.blueInquiryField textarea::placeholder {
  color: #778399;
}

.blueInquiryField select {
  color: #dce7f8;
}

.blueInquiryField input:focus,
.blueInquiryField select:focus,
.blueInquiryField textarea:focus {
  border-color: #4C7FD6;
  background: rgba(6, 13, 26, 0.96);
  box-shadow: 0 0 0 4px rgba(0, 66, 176, 0.14);
}

.blueInquiryField [aria-invalid="true"] {
  border-color: #ff6b6b;
  box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.12);
}

.blueInquiryField small {
  color: #ff9b9b;
  font-size: 12px;
  line-height: 1.45;
}

.blueSecurityNote {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 15px;
  border: 1px dashed rgba(0, 66, 176, 0.32);
  border-radius: 8px;
  background: rgba(0, 66, 176, 0.07);
}

.blueSecurityNote strong {
  color: #4C7FD6;
  font-size: 13px;
}

.blueSecurityNote span {
  font-size: 13px;
}

.blueInquirySubmit {
  grid-column: 1 / -1;
  min-height: 56px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, #0042B0 0%, #0042B0 100%);
  color: white;
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 18px 36px rgba(0, 66, 176, 0.23);
}

.blueInquirySubmit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.blueFormStatus {
  grid-column: 1 / -1;
  margin: 0;
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 760;
}

.blueFormStatus.success {
  border: 1px solid rgba(66, 211, 146, 0.35);
  background: rgba(66, 211, 146, 0.12);
  color: #8ff0c6;
}

.blueFormStatus.error {
  border: 1px solid rgba(255, 107, 107, 0.35);
  background: rgba(255, 107, 107, 0.12);
  color: #ffb0b0;
}

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

  .blueInquiryBrand {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  .blueInquiryPage {
    padding: 18px;
  }

  .blueInquiryBrand,
  .blueInquiryPanel {
    padding: 22px;
  }

  .blueInquiryForm,
  .blueProofGrid {
    grid-template-columns: 1fr;
  }

  .blueSecurityNote {
    display: block;
  }
}

.variant {
  background: white;
  color: var(--ink);
}

.variantHeader {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px clamp(20px, 5vw, 76px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #e5edf7;
  backdrop-filter: blur(18px);
}

.premiumGlassHeader {
  display: grid;
  grid-template-columns: 170px minmax(420px, 1fr) minmax(238px, auto);
  align-items: center;
  padding-top: 14px;
  padding-bottom: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.82));
  box-shadow: 0 18px 44px rgba(15, 34, 62, 0.08);
}

.headerActionGroup {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

.formNavCta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid rgba(0, 66, 176, 0.22);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.72);
  color: #00327F;
  font-size: 14px;
  font-weight: 850;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.formNavCta:hover {
  border-color: #0042B0;
  background: #0042B0;
  color: white;
}

.megaNav {
  position: relative;
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 54px;
  padding: 6px;
  border: 1px solid rgba(207, 220, 237, 0.8);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86), 0 12px 34px rgba(35, 57, 88, 0.08);
  backdrop-filter: blur(22px) saturate(1.35);
}

.megaNav > a,
.megaItem > a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 17px;
  border-radius: 999px;
  color: #1f2a3d;
  font-size: 14px;
  font-weight: 650;
  white-space: nowrap;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.megaNav > a:hover,
.megaItem:hover > a,
.megaItem:focus-within > a {
  background: #0042B0;
  color: white;
  box-shadow: 0 10px 22px rgba(0, 66, 176, 0.2);
}

.megaItem {
  position: static;
}

.megaItem > a::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.megaPanel {
  position: fixed;
  top: 82px;
  left: clamp(20px, 5vw, 76px);
  z-index: 35;
  display: grid;
  gap: 18px;
  width: min(1120px, calc(66.666vw - 24px));
  min-height: 372px;
  padding: 26px;
  border: 1px solid rgba(205, 219, 236, 0.72);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(238, 246, 255, 0.76)),
    radial-gradient(circle at 92% 12%, rgba(0, 66, 176, 0.2), transparent 32%);
  box-shadow: 0 34px 90px rgba(20, 42, 76, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(34px) saturate(1.55);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.megaPanel::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: -1;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  pointer-events: none;
}

.megaPanel::after {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 18px;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 66, 176, 0.55), rgba(0, 66, 176, 0.08), transparent);
}

.megaItem:hover .megaPanel,
.megaItem:focus-within .megaPanel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.productMega {
  grid-template-columns: minmax(230px, 0.54fr) minmax(560px, 1.46fr);
  justify-content: start;
  align-items: stretch;
}

.solutionMega {
  grid-template-columns: minmax(230px, 0.58fr) minmax(420px, 1.05fr);
  justify-content: start;
  align-items: stretch;
}

.megaIntro {
  max-width: 330px;
  padding: 10px 4px 38px;
}

.megaIntro span {
  display: block;
  margin-bottom: 12px;
  color: #0042B0;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.megaIntro h3 {
  margin-bottom: 12px;
  color: #121b2b;
  font-size: 24px;
  line-height: 1.12;
}

.megaIntro p,
.megaFeature p {
  color: #5b687a;
  font-size: 14px;
  line-height: 1.6;
}

.megaStats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.megaStats strong {
  padding: 9px 11px;
  border: 1px solid rgba(0, 66, 176, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: #00327F;
  font-size: 12px;
  line-height: 1;
}

.megaLinks {
  display: grid;
  gap: 10px;
}

.megaLinks a,
.megaLinkMatrix a {
  display: block;
  padding: 15px 16px;
  border: 1px solid rgba(211, 223, 235, 0.82);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(248, 251, 255, 0.62));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.megaLinks a:hover,
.megaLinkMatrix a:hover {
  border-color: rgba(0, 66, 176, 0.42);
  background: white;
  box-shadow: 0 14px 30px rgba(0, 66, 176, 0.1);
  transform: translateY(-1px);
}

.megaLinks strong,
.megaLinkMatrix strong {
  display: block;
  color: #00327F;
  font-size: 15px;
}

.megaLinks small,
.megaLinkMatrix small {
  display: block;
  margin-top: 5px;
  color: #68778b;
  font-size: 12px;
  line-height: 1.45;
}

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

.megaLinkMatrix img {
  display: block;
  width: 100%;
  height: 94px;
  margin: 0 0 13px;
  border-radius: 10px;
  object-fit: cover;
  object-position: 46% center;
  box-shadow: 0 10px 24px rgba(20, 42, 76, 0.1);
}

.megaLinkMatrix a:first-child img {
  object-position: 42% center;
}

.megaLinkMatrix a:nth-child(2) img {
  object-position: 58% center;
}

.megaLinkMatrix a:nth-child(3) img {
  object-position: 58% center;
}

.megaLinkMatrix a:nth-child(4) img {
  object-position: center 38%;
}

.megaFeature {
  max-width: 300px;
  padding: 12px;
  border: 1px solid rgba(211, 223, 235, 0.82);
  border-radius: 16px;
  background: rgba(248, 251, 255, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.megaFeature img {
  display: block;
  width: 100%;
  height: 148px;
  object-fit: cover;
  border-radius: 10px;
}

.premiumGlassHeader .megaFeature img {
  width: 100%;
  height: 148px;
}

.megaFeature p {
  margin: 12px 2px 0;
}

.megaFeature a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin: 14px 2px 2px;
  padding: 0 13px;
  border-radius: 4px;
  background: #0042B0;
  color: white;
  font-size: 12px;
  font-weight: 850;
}

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

.solutionTiles a {
  display: flex;
  align-items: end;
  min-height: 148px;
  padding: 16px;
  border: 1px solid rgba(211, 223, 235, 0.82);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(0, 66, 176, 0.1), rgba(255, 255, 255, 0.78));
  color: #00327F;
  font-size: 14px;
  font-weight: 850;
}

.megaTrustBar {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 4px;
}

.megaTrustBar span {
  min-height: 34px;
  padding: 9px 12px;
  border: 1px solid rgba(0, 66, 176, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  color: #24405f;
  font-size: 12px;
  font-weight: 800;
}

.variantHeader img {
  width: 132px;
  height: auto;
}

.variantCta,
.variantActions a,
.premiumForm button,
.solutionForm button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 4px;
  background: var(--blue);
  color: white;
  border: 1px solid var(--blue);
  font-size: 14px;
  font-weight: 800;
}

.variantActions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.variantActions a + a {
  background: white;
  color: var(--blue-dark);
  border-color: #cfdced;
}

.premiumHero {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: stretch;
  min-height: 680px;
  background:
    linear-gradient(90deg, #ffffff 0%, #f6f9fd 48%, #eaf2fb 100%);
}

.premiumHeroCopy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 84px clamp(22px, 5vw, 76px);
}

.premiumHero h1,
.solutionHero h1 {
  max-width: 720px;
  margin-bottom: 26px;
  font-size: clamp(42px, 5vw, 74px);
  line-height: 1;
  letter-spacing: 0;
}

.premiumHero p,
.solutionHero p {
  max-width: 610px;
  color: #526070;
  font-size: 18px;
  line-height: 1.72;
}

.premiumHeroImage {
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.premiumHeroImage > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.premiumHeroCarousel {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 620px;
  overflow: hidden;
  background:
    linear-gradient(135deg, #f7fbff 0%, #e8f1fb 52%, #dce8f5 100%);
}

.carouselTrack {
  position: relative;
  width: 100%;
  height: 100%;
}

.carouselSlide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.018);
  animation: premiumHeroFade 15s infinite;
}

.carouselSlide:nth-child(2) {
  animation-delay: 5s;
}

.carouselSlide:nth-child(3) {
  animation-delay: 10s;
}

.carouselSlide img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: contain;
  object-position: 46% center;
}

.carouselSlide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.46), transparent 34%),
    linear-gradient(180deg, transparent 62%, rgba(13, 35, 68, 0.14));
  pointer-events: none;
}

.carouselSlide figcaption {
  position: absolute;
  right: 34px;
  bottom: 34px;
  z-index: 2;
  padding: 11px 15px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  color: #00327F;
  font-size: 13px;
  font-weight: 850;
  box-shadow: 0 14px 32px rgba(20, 42, 76, 0.14);
  backdrop-filter: blur(16px) saturate(1.35);
}

.carouselDots {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 3;
  display: flex;
  gap: 9px;
  transform: translateX(-50%);
}

.carouselDots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(0, 66, 176, 0.24);
  animation: premiumDot 15s infinite;
}

.carouselDots span:nth-child(2) {
  animation-delay: 5s;
}

.carouselDots span:nth-child(3) {
  animation-delay: 10s;
}

@keyframes premiumHeroFade {
  0% {
    opacity: 0;
    transform: scale(1.018);
  }
  5%,
  31% {
    opacity: 1;
    transform: scale(1);
  }
  36%,
  100% {
    opacity: 0;
    transform: scale(1.018);
  }
}

@keyframes premiumDot {
  0%,
  36%,
  100% {
    width: 8px;
    background: rgba(0, 66, 176, 0.24);
  }
  5%,
  31% {
    width: 24px;
    background: #0042B0;
  }
}

.premiumProof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #e2eaf5;
  border-bottom: 1px solid #e2eaf5;
}

.premiumProof div {
  min-height: 142px;
  padding: 32px clamp(20px, 4vw, 54px);
  border-right: 1px solid #e2eaf5;
}

.premiumProof strong {
  display: block;
  color: var(--blue);
  font-size: 34px;
  line-height: 1;
}

.premiumProof span {
  display: block;
  margin-top: 10px;
  color: #5e6b7a;
  font-size: 14px;
}

.premiumSystems,
.premiumProcess,
.solutionProducts {
  padding: 96px clamp(20px, 5vw, 76px);
}

.variantSectionHead {
  display: flex;
  justify-content: space-between;
  gap: 42px;
  align-items: end;
  margin-bottom: 36px;
}

.variantSectionHead h2,
.premiumManufacturing h2,
.premiumQuality h2,
.premiumContact h2,
.solutionSelector h2,
.solutionSeo h2,
.solutionLead h2 {
  max-width: 720px;
  margin-bottom: 14px;
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

.variantSectionHead p,
.premiumManufacturing p,
.premiumQuality p,
.premiumContact p,
.solutionSeo p,
.solutionLead p,
.technologyBand p {
  max-width: 570px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.premiumSystemGrid,
.solutionProductGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.premiumSystemGrid article,
.solutionProductGrid article {
  border: 1px solid #dde7f3;
  border-radius: 8px;
  background: white;
  overflow: hidden;
}

.premiumSystemGrid img,
.solutionProductGrid img {
  width: 100%;
  height: 204px;
  object-fit: cover;
  display: block;
}

.premiumSystemGrid h3,
.premiumSystemGrid p,
.solutionProductGrid h3,
.solutionProductGrid ul {
  margin-left: 24px;
  margin-right: 24px;
}

.premiumSystemGrid h3,
.solutionProductGrid h3 {
  margin-top: 24px;
  margin-bottom: 10px;
  color: var(--blue-dark);
  font-size: 22px;
}

.premiumSystemGrid p {
  margin-bottom: 26px;
  color: var(--muted);
  line-height: 1.65;
}

.systemProductLink {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 40px;
  margin: 0 24px 26px;
  padding: 0 16px;
  border: 1px solid rgba(0, 66, 176, 0.22);
  border-radius: 4px;
  background: rgba(0, 66, 176, 0.06);
  color: #0042B0;
  font-size: 13px;
  font-weight: 850;
}

.systemProductLink::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
}

.systemProductLink:hover {
  background: #0042B0;
  color: white;
}

.premiumManufacturing {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 56px;
  padding: 104px clamp(20px, 5vw, 76px);
  background: #f4f7fb;
}

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

.capabilityList span {
  min-height: 120px;
  padding: 24px;
  border: 1px solid #dbe6f2;
  border-radius: 8px;
  background: white;
  color: #243244;
  font-weight: 750;
  line-height: 1.5;
}

.processRail {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid #dbe6f2;
  border-radius: 8px;
  overflow: hidden;
}

.processRail div {
  min-height: 150px;
  padding: 24px;
  border-right: 1px solid #dbe6f2;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9fd 100%);
}

.processRail b {
  display: block;
  margin-bottom: 26px;
  color: var(--blue);
  font-size: 14px;
}

.processRail span {
  color: #202c3a;
  font-weight: 800;
  line-height: 1.35;
}

.premiumQuality {
  display: grid;
  grid-template-columns: minmax(680px, 1.26fr) minmax(420px, 0.74fr);
  align-items: stretch;
  background: #071426;
  color: white;
  overflow: hidden;
}

.premiumQuality img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: 46% center;
  background: #eef4fb;
}

.premiumQuality div {
  padding: 64px clamp(24px, 4vw, 62px);
}

.premiumQuality p {
  color: #d6e3f7;
}

.qualityTags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.qualityTags span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  color: white;
  font-size: 13px;
  font-weight: 800;
}

.premiumContact {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 32px;
  padding: 96px clamp(20px, 5vw, 76px);
  background: #f4f7fb;
}

.premiumMapCard {
  position: relative;
  grid-column: 1 / -1;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(205, 219, 236, 0.86);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(238, 246, 255, 0.7)),
    #eaf2fb;
  box-shadow: 0 26px 72px rgba(20, 42, 76, 0.12);
}

.premiumMapCard iframe {
  display: block;
  width: 100%;
  height: 430px;
  border: 0;
  filter: saturate(0.88) contrast(1.04);
}

.mapBrandPlate {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  display: grid;
  grid-template-columns: 118px minmax(260px, 1fr);
  gap: 18px;
  align-items: center;
  max-width: min(660px, calc(100% - 44px));
  padding: 16px 18px;
  border: 1px solid rgba(205, 219, 236, 0.76);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 20px 48px rgba(20, 42, 76, 0.16);
  backdrop-filter: blur(22px) saturate(1.35);
}

.mapBrandPlate img {
  width: 112px;
  height: auto;
}

.mapBrandPlate strong {
  display: block;
  color: #00327F;
  font-size: 14px;
  line-height: 1.35;
}

.mapBrandPlate span {
  display: block;
  margin-top: 6px;
  color: #526070;
  font-size: 12px;
  line-height: 1.55;
}

.premiumMapCard > a {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(0, 66, 176, 0.24);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.86);
  color: #00327F;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 14px 32px rgba(20, 42, 76, 0.14);
  backdrop-filter: blur(16px) saturate(1.25);
}

.premiumContactCard {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 28px;
  align-items: center;
}

.premiumContactCard img,
.solutionLead > img {
  width: 160px;
  height: 204px;
  object-fit: cover;
  border-radius: 8px;
}

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

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

.premiumForm input,
.premiumForm textarea,
.solutionForm input,
.solutionForm textarea {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid #d3dfeb;
  border-radius: 4px;
  background: white;
  color: var(--ink);
  font: inherit;
}

.premiumForm textarea,
.solutionForm textarea {
  grid-column: 1 / -1;
  min-height: 112px;
  padding-top: 14px;
}

.premiumForm button,
.solutionForm button {
  grid-column: 1 / -1;
}

.solutionHero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 34px;
  min-height: 680px;
  padding: 48px clamp(20px, 5vw, 76px) 58px;
  background: radial-gradient(circle at 84% 20%, #dcecff 0%, #ffffff 38%, #f7f9fc 100%);
}

.solutionHero img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border: 1px solid #dbe6f2;
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(0, 66, 176, 0.12);
}

.solutionStats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.solutionStats span {
  padding: 12px 15px;
  border: 1px solid #cfdced;
  border-radius: 4px;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 800;
}

.solutionSelector {
  padding: 82px clamp(20px, 5vw, 76px);
  background: #071426;
  color: white;
}

.solutionSelector > div {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.solutionSelector article {
  display: flex;
  align-items: end;
  min-height: 132px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
}

.solutionSelector span {
  font-weight: 800;
}

.solutionProductGrid ul {
  margin-bottom: 28px;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.technologyBand {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #dbe6f2;
  border-top: 1px solid #dbe6f2;
  border-bottom: 1px solid #dbe6f2;
}

.technologyBand article {
  min-height: 230px;
  padding: 34px;
  background: #f7f9fc;
}

.technologyBand h3 {
  margin-bottom: 14px;
  color: var(--blue-dark);
  font-size: 24px;
}

.solutionSeo {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 56px;
  padding: 96px clamp(20px, 5vw, 76px);
}

.accordionMock {
  border: 1px solid #dbe6f2;
  border-radius: 8px;
  overflow: hidden;
}

.accordionMock details {
  padding: 22px 24px;
  background: white;
  border-bottom: 1px solid #dbe6f2;
}

.accordionMock summary {
  color: #1f2a37;
  cursor: pointer;
  font-weight: 800;
}

.accordionMock p {
  color: var(--muted);
  line-height: 1.7;
}

.solutionLead {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 34px;
  align-items: center;
  padding: 88px clamp(20px, 5vw, 76px);
  background: linear-gradient(135deg, #eef4fb 0%, #ffffff 55%, #e8f1fb 100%);
}

.productSectionPreview {
  min-height: 100vh;
  background:
    linear-gradient(180deg, #f6f9fd 0%, #ffffff 46%, #eef4fb 100%);
  color: #111827;
}

.activeNav {
  background: #0042B0;
  color: white !important;
  box-shadow: 0 10px 22px rgba(0, 66, 176, 0.2);
}

.productSectionHero {
  display: grid;
  grid-template-columns: minmax(380px, 0.78fr) minmax(520px, 1.22fr);
  gap: 34px;
  align-items: center;
  min-height: 520px;
  padding: 54px clamp(20px, 5vw, 76px);
  background:
    radial-gradient(circle at 78% 16%, rgba(0, 66, 176, 0.13), transparent 31%),
    linear-gradient(120deg, #ffffff 0%, #f5f9fe 47%, #e6f0fb 100%);
  border-bottom: 1px solid #dbe6f2;
}

.productSectionHero span,
.productSectionHead span,
.packageBand span {
  display: block;
  margin-bottom: 13px;
  color: #0042B0;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.productSectionHero h1 {
  max-width: 720px;
  margin-bottom: 22px;
  color: #101828;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1;
  letter-spacing: 0;
}

.productSectionHero p {
  max-width: 620px;
  color: #526070;
  font-size: 18px;
  line-height: 1.72;
}

.productSectionHero img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(205, 219, 236, 0.86);
  border-radius: 18px;
  box-shadow: 0 34px 90px rgba(20, 42, 76, 0.16);
}

.productCatalogShell {
  display: grid;
  grid-template-columns: minmax(220px, 280px) 1fr;
  gap: 22px;
  padding: 34px clamp(20px, 5vw, 76px) 88px;
}

.productCategoryRail {
  position: sticky;
  top: 104px;
  align-self: start;
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(205, 219, 236, 0.82);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 22px 58px rgba(20, 42, 76, 0.08);
  backdrop-filter: blur(24px) saturate(1.35);
}

.productCategoryRail h2 {
  margin: 0 0 8px;
  color: #101828;
  font-size: 18px;
}

.productCategoryRail a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 13px;
  border: 1px solid transparent;
  border-radius: 10px;
  color: #344054;
  font-size: 13px;
  font-weight: 800;
}

.productCategoryRail a.selected,
.productCategoryRail a:hover {
  border-color: rgba(0, 66, 176, 0.18);
  background: #0042B0;
  color: white;
}

.productCatalogMain {
  display: grid;
  gap: 22px;
}

.productSectionHead {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: 26px;
  border: 1px solid rgba(205, 219, 236, 0.8);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 22px 58px rgba(20, 42, 76, 0.08);
  backdrop-filter: blur(24px) saturate(1.35);
}

.productSectionHead h2,
.packageBand h2,
.productSectionContact h2 {
  margin: 0;
  color: #101828;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.08;
}

.productSectionHead a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 6px;
  background: #0042B0;
  color: white;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

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

.productFamilyCard {
  overflow: hidden;
  border: 1px solid rgba(205, 219, 236, 0.82);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 64px rgba(20, 42, 76, 0.1);
  backdrop-filter: blur(22px) saturate(1.35);
}

.productFamilyCard img {
  display: block;
  width: 100%;
  height: 188px;
  object-fit: cover;
}

.productFamilyCard:first-child img {
  object-position: 42% center;
}

.productFamilyCard:nth-child(2) img {
  object-position: 58% center;
}

.productFamilyCard:nth-child(3) img {
  object-position: 60% center;
}

.productFamilyCard div {
  padding: 22px;
}

.productFamilyCard strong {
  display: block;
  color: #00327F;
  font-size: 21px;
  line-height: 1.18;
}

.productFamilyCard p {
  margin: 12px 0 16px;
  color: #526070;
  font-size: 14px;
  line-height: 1.62;
}

.productFamilyCard ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.productFamilyCard li {
  color: #344054;
  font-size: 13px;
  font-weight: 750;
}

.productFamilyCard li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 999px;
  background: #0042B0;
}

.emphasized {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(239, 246, 255, 0.78));
}

.darkProductCard {
  background: #071426;
}

.darkProductCard strong,
.darkProductCard li {
  color: white;
}

.darkProductCard p {
  color: #d6e3f7;
}

.darkProductCard li::before {
  background: #4C7FD6;
}

.packageBand {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) 1fr;
  gap: 24px;
  align-items: center;
  padding: 28px;
  border: 1px solid rgba(205, 219, 236, 0.82);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(238, 246, 255, 0.7)),
    radial-gradient(circle at 94% 14%, rgba(0, 66, 176, 0.16), transparent 28%);
  box-shadow: 0 24px 64px rgba(20, 42, 76, 0.1);
  backdrop-filter: blur(24px) saturate(1.35);
}

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

.packageGrid a {
  display: flex;
  align-items: end;
  min-height: 92px;
  padding: 17px;
  border: 1px solid rgba(0, 66, 176, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.64);
  color: #00327F;
  font-size: 14px;
  font-weight: 900;
}

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

.applicationStrip span {
  min-height: 38px;
  padding: 11px 14px;
  border: 1px solid rgba(0, 66, 176, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #24405f;
  font-size: 13px;
  font-weight: 850;
}

.productSectionContact {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) 1fr;
  gap: 30px;
  align-items: center;
  padding: 72px clamp(20px, 5vw, 76px);
  background: #071426;
  color: white;
}

.productSectionContact h2 {
  color: white;
}

.productSectionContact p {
  max-width: 620px;
  color: #d6e3f7;
  font-size: 16px;
  line-height: 1.7;
}

.productSectionContact form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) 150px;
  gap: 12px;
}

.productSectionContact input {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font: inherit;
}

.productSectionContact input::placeholder {
  color: #aebbd0;
}

.productSectionContact button {
  border: 0;
  border-radius: 6px;
  background: #0042B0;
  color: white;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.b2bInquiryPage {
  min-height: 100vh;
  background:
    radial-gradient(circle at 78% 12%, rgba(0, 66, 176, 0.14), transparent 30%),
    linear-gradient(135deg, #f7fbff 0%, #ffffff 46%, #e8f1fb 100%);
  color: #111827;
}

.b2bInquiryHero {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(520px, 1.18fr);
  gap: 34px;
  align-items: center;
  min-height: 100vh;
  padding: 44px clamp(20px, 5vw, 76px);
}

.b2bInquiryCopy {
  display: grid;
  align-content: center;
}

.b2bInquiryCopy img {
  width: 146px;
  height: auto;
  margin-bottom: 46px;
}

.b2bInquiryCopy > span,
.b2bInquiryHead > span {
  display: block;
  margin-bottom: 14px;
  color: #0042B0;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.b2bInquiryCopy h1 {
  max-width: 720px;
  margin-bottom: 24px;
  color: #101828;
  font-size: clamp(44px, 5.4vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

.b2bInquiryCopy p,
.b2bInquiryHead p {
  max-width: 620px;
  color: #526070;
  font-size: 17px;
  line-height: 1.72;
}

.b2bInquiryProof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.b2bInquiryProof strong {
  min-height: 38px;
  padding: 11px 14px;
  border: 1px solid rgba(0, 66, 176, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: #00327F;
  font-size: 13px;
  box-shadow: 0 12px 28px rgba(20, 42, 76, 0.07);
}

.b2bInquiryPanel {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(205, 219, 236, 0.82);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(240, 247, 255, 0.76)),
    radial-gradient(circle at 100% 0%, rgba(0, 66, 176, 0.13), transparent 35%);
  box-shadow: 0 34px 90px rgba(20, 42, 76, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(28px) saturate(1.45);
}

.b2bInquiryHead {
  margin-bottom: 24px;
}

.b2bInquiryHead h2 {
  margin-bottom: 12px;
  color: #101828;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.08;
}

.b2bInquiryHead em,
.b2bTemplateField em {
  color: #0042B0;
  font-style: normal;
}

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

.b2bHoneypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.b2bTemplateField {
  display: grid;
  gap: 8px;
}

.b2bTemplateField.wide {
  grid-column: 1 / -1;
}

.b2bTemplateField > span {
  color: #243244;
  font-size: 13px;
  font-weight: 850;
}

.b2bTemplateField input,
.b2bTemplateField select,
.b2bTemplateField textarea {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid #cfdced;
  border-radius: 10px;
  outline: none;
  background: rgba(255, 255, 255, 0.78);
  color: #111827;
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.b2bTemplateField textarea {
  min-height: 126px;
  padding-top: 14px;
  resize: vertical;
}

.b2bTemplateField input::placeholder,
.b2bTemplateField textarea::placeholder {
  color: #7a8797;
}

.b2bTemplateField input:focus,
.b2bTemplateField select:focus,
.b2bTemplateField textarea:focus {
  border-color: #0042B0;
  background: white;
  box-shadow: 0 0 0 4px rgba(0, 66, 176, 0.12);
}

.b2bTemplateField [aria-invalid="true"] {
  border-color: #d92d20;
  box-shadow: 0 0 0 4px rgba(217, 45, 32, 0.1);
}

.b2bTemplateField small {
  min-height: 16px;
  color: #d92d20;
  font-size: 12px;
  line-height: 1.35;
}

.b2bSecurityLine {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 15px;
  border: 1px dashed rgba(0, 66, 176, 0.26);
  border-radius: 12px;
  background: rgba(0, 66, 176, 0.06);
  color: #526070;
}

.b2bSecurityLine strong {
  color: #00327F;
  font-size: 13px;
}

.b2bSecurityLine span {
  font-size: 13px;
}

.b2bSubmitButton {
  grid-column: 1 / -1;
  min-height: 56px;
  border: 0;
  border-radius: 10px;
  background: #0042B0;
  color: white;
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 18px 36px rgba(0, 66, 176, 0.24);
}

.b2bSubmitButton:disabled {
  cursor: wait;
  opacity: 0.72;
}

.homeInquiryStatus {
  grid-column: 1 / -1;
  margin: 0;
  padding: 13px 15px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 850;
}

.homeInquiryStatus.success {
  border: 1px solid rgba(34, 197, 94, 0.3);
  background: rgba(34, 197, 94, 0.1);
  color: #157347;
}

.homeInquiryStatus.error {
  border: 1px solid rgba(217, 45, 32, 0.28);
  background: rgba(217, 45, 32, 0.08);
  color: #b42318;
}

.b2bFormStatus {
  grid-column: 1 / -1;
  margin: 0;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
}

.b2bFormStatus.success {
  border: 1px solid rgba(34, 197, 94, 0.3);
  background: rgba(34, 197, 94, 0.1);
  color: #157347;
}

.b2bFormStatus.error {
  border: 1px solid rgba(217, 45, 32, 0.28);
  background: rgba(217, 45, 32, 0.08);
  color: #b42318;
}

.contactPreviewPage {
  min-height: 100vh;
  background:
    radial-gradient(circle at 78% 10%, rgba(0, 66, 176, 0.12), transparent 30%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 44%, #eef4fb 100%);
  color: #111827;
}

.contactPreviewHeader {
  position: sticky;
  top: 0;
  z-index: 40;
}

.languageSwitcher {
  display: inline-grid;
  gap: 3px;
  min-width: 128px;
  padding: 6px 10px;
  border: 1px solid rgba(0, 66, 176, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.languageSwitcher span {
  color: #667085;
  font-size: 10px;
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
}

.languageSwitcher select {
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  color: #00327F;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.contactHero {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(420px, 0.78fr);
  gap: 34px;
  align-items: center;
  padding: 70px clamp(20px, 5vw, 76px) 58px;
}

.contactHeroCopy > span,
.contactInfoPanel > span,
.contactFormPanel > span,
.contactMapIntro > span,
.contactHeroCard span {
  display: block;
  margin-bottom: 13px;
  color: #0042B0;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contactHeroCopy h1 {
  max-width: 780px;
  margin-bottom: 22px;
  color: #101828;
  font-size: clamp(42px, 5.3vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

.contactHeroCopy p,
.contactHeroCard p,
.contactMapIntro p,
.contactInfoPanel dd {
  color: #526070;
  font-size: 16px;
  line-height: 1.72;
}

.contactTrustRow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.contactTrustRow strong {
  min-height: 38px;
  padding: 11px 14px;
  border: 1px solid rgba(0, 66, 176, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #00327F;
  font-size: 13px;
  box-shadow: 0 12px 28px rgba(20, 42, 76, 0.07);
}

.contactHeroCard,
.contactInfoPanel,
.contactFormPanel {
  border: 1px solid rgba(205, 219, 236, 0.82);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(240, 247, 255, 0.76)),
    radial-gradient(circle at 100% 0%, rgba(0, 66, 176, 0.12), transparent 34%);
  box-shadow: 0 26px 72px rgba(20, 42, 76, 0.12);
  backdrop-filter: blur(24px) saturate(1.35);
}

.contactHeroCard {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  align-items: center;
  padding: 24px;
}

.contactHeroCard img {
  width: 150px;
  height: 190px;
  object-fit: cover;
  border-radius: 12px;
}

.contactHeroCard h2,
.contactInfoPanel h2,
.contactFormPanel h2,
.contactMapIntro h2 {
  margin-bottom: 12px;
  color: #101828;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.08;
}

.contactHeroCard a,
.contactHeroCard strong,
.contactInfoPanel a {
  display: block;
  margin-top: 10px;
  color: #0042B0;
  font-weight: 900;
}

.contactContentGrid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 24px;
  padding: 0 clamp(20px, 5vw, 76px) 56px;
}

.contactInfoPanel,
.contactFormPanel {
  padding: 28px;
}

.contactInfoPanel dl {
  display: grid;
  gap: 18px;
  margin: 24px 0 0;
}

.contactInfoPanel dt {
  margin-bottom: 6px;
  color: #00327F;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.contactInfoPanel dd {
  margin: 0;
}

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

.contactPreviewForm label {
  display: grid;
  gap: 8px;
}

.contactPreviewForm label.wide,
.contactPreviewForm button,
.contactPreviewStatus {
  grid-column: 1 / -1;
}

.contactPreviewForm span {
  color: #243244;
  font-size: 13px;
  font-weight: 850;
}

.contactPreviewForm em {
  color: #0042B0;
  font-style: normal;
}

.contactPreviewForm input,
.contactPreviewForm select,
.contactPreviewForm textarea {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid #cfdced;
  border-radius: 10px;
  outline: none;
  background: rgba(255, 255, 255, 0.78);
  color: #111827;
  font: inherit;
}

.contactPreviewForm textarea {
  min-height: 126px;
  padding-top: 14px;
  resize: vertical;
}

.contactPreviewForm [aria-invalid="true"] {
  border-color: #d92d20;
  box-shadow: 0 0 0 4px rgba(217, 45, 32, 0.1);
}

.contactPreviewForm small {
  min-height: 16px;
  color: #d92d20;
  font-size: 12px;
}

.contactPreviewForm button {
  min-height: 54px;
  border: 0;
  border-radius: 10px;
  background: #0042B0;
  color: white;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  box-shadow: 0 18px 36px rgba(0, 66, 176, 0.24);
}

.contactPreviewStatus {
  margin: 0;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
}

.contactPreviewStatus.success {
  border: 1px solid rgba(34, 197, 94, 0.3);
  background: rgba(34, 197, 94, 0.1);
  color: #157347;
}

.contactPreviewStatus.error {
  border: 1px solid rgba(217, 45, 32, 0.28);
  background: rgba(217, 45, 32, 0.08);
  color: #b42318;
}

.contactMapSection {
  padding: 0 clamp(20px, 5vw, 76px) 80px;
}

.contactMapIntro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 24px;
}

.contactMapIntro p {
  max-width: 520px;
}

.contactMapCard {
  grid-column: auto;
}

.blogPreviewPage {
  min-height: 100vh;
  background:
    radial-gradient(circle at 76% 10%, rgba(0, 66, 176, 0.12), transparent 30%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 42%, #eef4fb 100%);
  color: #111827;
}

.blogHero {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(320px, 0.42fr);
  gap: 30px;
  align-items: center;
  padding: 76px clamp(20px, 5vw, 76px) 54px;
}

.blogHero span,
.blogSectionHead span,
.blogSeoBox span {
  display: block;
  margin-bottom: 13px;
  color: #0042B0;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.blogHero h1 {
  max-width: 880px;
  margin-bottom: 22px;
  color: #101828;
  font-size: clamp(42px, 5.2vw, 74px);
  line-height: 0.98;
}

.blogHero p,
.blogTopicGrid dd,
.blogArticle p,
.assetTable p,
.ctaPlanGrid p,
.blogPriority li {
  color: #526070;
  font-size: 16px;
  line-height: 1.72;
}

.blogHeroPanel,
.blogTopicGrid article,
.blogArticle,
.assetTable article,
.ctaPlanGrid article,
.blogPriority,
.blogSeoBox {
  border: 1px solid rgba(205, 219, 236, 0.82);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(240, 247, 255, 0.76)),
    radial-gradient(circle at 100% 0%, rgba(0, 66, 176, 0.1), transparent 34%);
  box-shadow: 0 24px 64px rgba(20, 42, 76, 0.1);
  backdrop-filter: blur(24px) saturate(1.35);
}

.blogHeroPanel {
  padding: 26px;
}

.blogHeroPanel strong {
  display: block;
  color: #00327F;
  font-size: 22px;
}

.blogHeroPanel a,
.blogInlineCta a,
.blogFinalCta a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-top: 14px;
  padding: 0 16px;
  border-radius: 6px;
  background: #0042B0;
  color: white;
  font-size: 13px;
  font-weight: 900;
}

.blogPlanning,
.blogArticleList,
.blogAssets,
.blogCtaPlan,
.blogPriority {
  margin: 0 clamp(20px, 5vw, 76px) 34px;
}

.blogSectionHead {
  margin-bottom: 22px;
}

.blogSectionHead h2 {
  max-width: 820px;
  color: #101828;
  font-size: clamp(30px, 3.3vw, 48px);
  line-height: 1.08;
}

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

.blogTopicGrid article,
.assetTable article,
.ctaPlanGrid article,
.blogPriority {
  padding: 24px;
}

.blogTopicGrid b {
  color: #0042B0;
  font-size: 14px;
}

.blogTopicGrid h3,
.assetTable h3,
.ctaPlanGrid h3 {
  margin: 12px 0;
  color: #00327F;
  font-size: 22px;
  line-height: 1.18;
}

.blogTopicGrid dl {
  margin: 0;
}

.blogTopicGrid dt {
  margin-top: 16px;
  color: #111827;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.blogTopicGrid dd {
  margin: 6px 0 0;
}

.blogArticleList {
  display: grid;
  gap: 28px;
}

.blogArticle {
  padding: clamp(24px, 4vw, 46px);
}

.blogArticle h1 {
  max-width: 920px;
  color: #101828;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.02;
}

.blogArticle h2 {
  margin-top: 34px;
  color: #00327F;
  font-size: clamp(24px, 2.6vw, 34px);
}

.blogArticle h3 {
  margin-top: 22px;
  color: #202c3a;
  font-size: 20px;
}

.blogIntro {
  font-size: 18px !important;
  color: #344054 !important;
}

.blogSeoBox {
  margin-bottom: 24px;
  padding: 18px;
}

.blogSeoBox p {
  margin: 8px 0;
  font-size: 14px;
}

.blogInlineCta {
  margin: 30px 0;
  padding: 22px;
  border-left: 4px solid #0042B0;
  border-radius: 12px;
  background: rgba(0, 66, 176, 0.07);
}

.blogInlineCta strong,
.blogInlineCta span {
  display: block;
}

.blogFinalCta {
  padding: 18px;
  border-radius: 12px;
  background: #071426;
  color: white !important;
}

.assetTable {
  display: grid;
  gap: 18px;
}

.blogPriority {
  margin-bottom: 80px;
}

.blogPriority ol {
  margin: 0;
  padding-left: 22px;
}

.whatsappFloatButton {
  position: fixed;
  right: clamp(18px, 2.4vw, 34px);
  bottom: clamp(18px, 2.4vw, 34px);
  z-index: 120;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.38), transparent 32%),
    linear-gradient(135deg, #2EE66B 0%, #16B653 54%, #0B8F3D 100%);
  color: white;
  box-shadow: 0 18px 44px rgba(10, 143, 61, 0.34), 0 6px 18px rgba(20, 42, 76, 0.16);
  backdrop-filter: blur(12px) saturate(1.25);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.whatsappFloatButton svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.whatsappFloatButton span {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  padding: 8px 10px;
  border: 1px solid rgba(205, 219, 236, 0.82);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #0B6F34;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 12px 28px rgba(20, 42, 76, 0.12);
  backdrop-filter: blur(14px) saturate(1.2);
  transition: opacity 180ms ease, transform 180ms ease;
}

.whatsappFloatButton:hover {
  transform: translateY(-3px) scale(1.06);
  filter: saturate(1.06);
  box-shadow: 0 24px 58px rgba(10, 143, 61, 0.42), 0 8px 24px rgba(20, 42, 76, 0.18);
}

.whatsappFloatButton:hover span {
  opacity: 1;
  transform: translateY(-50%) translateX(-2px);
}

@media (max-width: 620px) {
  .whatsappFloatButton {
    width: 56px;
    height: 56px;
    right: 16px;
    bottom: 16px;
  }

  .whatsappFloatButton svg {
    width: 30px;
    height: 30px;
  }

  .whatsappFloatButton span {
    display: none;
  }
}

@media (max-width: 980px) {
  .premiumHero,
  .premiumManufacturing,
  .premiumQuality,
  .premiumContact,
  .solutionHero,
  .solutionSeo,
  .solutionLead {
    grid-template-columns: 1fr;
  }

  .premiumProof,
  .premiumSystemGrid,
  .solutionProductGrid,
  .technologyBand,
  .productFamilyGrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .productSectionHero,
  .productCatalogShell,
  .packageBand,
  .productSectionContact {
    grid-template-columns: 1fr;
  }

  .productCategoryRail {
    position: static;
  }

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

  .productSectionContact button {
    min-height: 50px;
  }

  .processRail,
  .solutionSelector > div {
    grid-template-columns: repeat(3, 1fr);
  }

  .premiumGlassHeader {
    grid-template-columns: 140px 1fr minmax(210px, auto);
  }

  .headerActionGroup {
    gap: 8px;
  }

  .formNavCta,
  .headerActionGroup .variantCta {
    min-height: 42px;
    padding: 0 14px;
    font-size: 13px;
  }

  .languageSwitcher {
    min-width: 118px;
    padding: 5px 8px;
  }

  .megaNav {
    gap: 0;
  }

  .megaNav > a,
  .megaItem > a {
    padding: 0 10px;
    font-size: 13px;
  }

  .productMega,
  .solutionMega {
    grid-template-columns: 1fr;
    top: 76px;
    left: 20px;
    width: calc(100vw - 40px);
    max-height: calc(100vh - 76px);
    overflow: auto;
  }

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

  .premiumHeroCarousel,
  .carouselSlide img {
    min-height: 420px;
  }
}

@media (max-width: 620px) {
  .variantHeader nav {
    display: none;
  }

  .premiumGlassHeader {
    display: flex;
  }

  .megaPanel {
    left: 16px;
    width: calc(100vw - 32px);
    padding: 18px;
    border-radius: 14px;
  }

  .megaLinkMatrix,
  .solutionTiles {
    grid-template-columns: 1fr;
  }

  .megaFeature {
    max-width: none;
  }

  .premiumHeroCarousel,
  .carouselSlide img {
    min-height: 260px;
  }

  .premiumHeroCopy,
  .premiumSystems,
  .premiumProcess,
  .premiumManufacturing,
  .premiumContact,
  .solutionHero,
  .solutionProducts,
  .solutionSeo,
  .solutionLead,
  .solutionSelector {
    padding-left: 20px;
    padding-right: 20px;
  }

  .premiumProof,
  .premiumSystemGrid,
  .capabilityList,
  .processRail,
  .solutionProductGrid,
  .technologyBand,
  .solutionSelector > div,
  .premiumForm,
  .solutionForm,
  .premiumContactCard,
  .productFamilyGrid,
  .packageGrid,
  .productSectionContact form {
    grid-template-columns: 1fr;
  }

  .premiumMapCard,
  .premiumMapCard iframe {
    min-height: 360px;
    height: 360px;
  }

  .mapBrandPlate {
    left: 14px;
    right: 14px;
    top: 14px;
    grid-template-columns: 1fr;
    max-width: none;
    gap: 10px;
  }

  .mapBrandPlate img {
    width: 104px;
  }

  .premiumMapCard > a {
    right: 14px;
    bottom: 14px;
  }

  .productSectionHero,
  .productCatalogShell,
  .productSectionContact,
  .b2bInquiryHero,
  .contactHero,
  .contactContentGrid {
    padding-left: 20px;
    padding-right: 20px;
  }

  .b2bInquiryHero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .b2bInquiryCopy img {
    margin-bottom: 28px;
  }

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

  .contactHero,
  .contactContentGrid,
  .contactHeroCard,
  .contactPreviewForm,
  .blogHero,
  .blogTopicGrid,
  .ctaPlanGrid {
    grid-template-columns: 1fr;
  }

  .blogHero {
    padding-left: 20px;
    padding-right: 20px;
  }

  .blogPlanning,
  .blogArticleList,
  .blogAssets,
  .blogCtaPlan,
  .blogPriority {
    margin-left: 20px;
    margin-right: 20px;
  }

  .contactHero {
    padding-top: 40px;
  }

  .contactHeroCard img {
    width: 132px;
    height: 168px;
  }

  .contactMapSection {
    padding-left: 20px;
    padding-right: 20px;
  }

  .contactMapIntro {
    display: block;
  }

  .b2bSecurityLine {
    display: block;
  }

  .productSectionHero img {
    height: 240px;
  }

  .premiumQuality img {
    min-height: 0;
  }

  .productSectionHead {
    display: block;
  }

  .productSectionHead a {
    margin-top: 18px;
  }

  .variantSectionHead {
    display: block;
  }
}
