:root {
  --blue: #0072ce;
  --blue-dark: #003d73;
  --ink: #223041;
  --muted: #667486;
  --line: #e4e8ee;
  --paper: #f5f7fa;
  --soft-blue: #f0f7fd;
  --white: #ffffff;
  --shadow: 0 14px 34px rgba(28, 45, 68, 0.1);
  --shadow-soft: 0 1px 2px rgba(28, 45, 68, 0.06), 0 10px 24px rgba(28, 45, 68, 0.07);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.lead-modal-open {
  overflow: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 8px clamp(20px, 5vw, 64px);
  border-bottom: 1px solid rgba(228, 232, 238, 0.9);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 rgba(16, 34, 52, 0.03);
  backdrop-filter: blur(12px);
}

.logo img {
  width: 206px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  position: relative;
  color: #2d3a4b;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 100%;
  height: 3px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus,
.site-nav a.is-active {
  color: var(--blue);
}

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

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  height: min(680px, calc(100vh - 82px));
  min-height: 540px;
  overflow: hidden;
  background:
    linear-gradient(115deg, #071b2f 0%, #0f2740 48%, #eef4f9 48%, #ffffff 100%);
}

.hero-slides,
.hero-slide {
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 1.02fr);
  gap: clamp(24px, 5vw, 74px);
  align-items: center;
  padding: clamp(44px, 8vw, 92px) clamp(20px, 7vw, 96px);
  opacity: 0;
  transition: opacity 450ms ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide::after {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 79% 31%, rgba(0, 114, 206, 0.12), transparent 28%),
    linear-gradient(90deg, rgba(0, 32, 64, 0.62), rgba(0, 32, 64, 0.06) 47%, rgba(255, 255, 255, 0.58));
  content: "";
}

.hero-caption {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
  color: var(--white);
}

.hero-caption .kicker {
  color: rgba(255, 255, 255, 0.82);
}

.hero-caption h1 {
  margin: 10px 0 18px;
  font-size: 4.4rem;
  line-height: 1;
  letter-spacing: 0;
}

.hero-caption p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.12rem;
  line-height: 1.6;
}

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

.hero-visual {
  position: relative;
  z-index: 2;
  width: min(620px, 100%);
  justify-self: center;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 390px;
  padding: clamp(18px, 3vw, 34px);
  border: 1px solid rgba(209, 219, 231, 0.72);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 253, 0.94)),
    var(--white);
  box-shadow: var(--shadow-soft);
}

.hero-visual::before {
  position: absolute;
  inset: clamp(12px, 2vw, 22px);
  border: 1px solid rgba(0, 114, 206, 0.08);
  border-radius: calc(var(--radius) - 2px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(239, 246, 252, 0.42));
  content: "";
}

.hero-visual img {
  position: relative;
  z-index: 1;
  width: min(520px, 92%);
  height: 330px;
  object-fit: contain;
  padding: 0;
  filter: drop-shadow(0 18px 24px rgba(18, 35, 54, 0.14));
}

.hero-visual--scene {
  overflow: hidden;
  padding: 0;
}

.hero-visual--scene::before {
  display: none;
}

.hero-visual--scene img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  border-radius: calc(var(--radius) - 2px);
  filter: none;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius);
  padding: 0 20px;
  background: var(--blue);
  color: var(--white);
  font-weight: 800;
  transition: background-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.button:hover,
.button:focus {
  background: #005fae;
  box-shadow: 0 8px 20px rgba(0, 114, 206, 0.22);
  transform: translateY(-1px);
}

.secondary-button {
  border: 1px solid rgba(255, 255, 255, 0.66);
  background: rgba(255, 255, 255, 0.12);
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue);
  font-weight: 800;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.56);
  color: var(--white);
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.slider-arrow.prev {
  left: 20px;
}

.slider-arrow.next {
  right: 20px;
}

.slider-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.slider-dots button {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}

.slider-dots button.is-active {
  background: var(--white);
}

section {
  scroll-margin-top: 98px;
}

.intro,
.products,
.featured-products,
.brand-detail,
.page-hero,
.catalog-intro,
.product-directory,
.product-territory,
.applications,
.news,
.partners,
.contact {
  padding: clamp(56px, 8vw, 96px) clamp(20px, 6vw, 80px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
  padding-top: clamp(56px, 7vw, 86px);
  padding-bottom: clamp(56px, 7vw, 86px);
  background: var(--white);
}

.about-copy p,
.about-panel p,
.contact p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-copy {
  display: grid;
  gap: 18px;
}

.about-copy h2 {
  font-size: 2.65rem;
}

.about-panel {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.about-points {
  display: grid;
  gap: 12px;
}

.about-points article {
  display: grid;
  gap: 6px;
  padding: 16px;
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--white);
}

.about-points strong {
  color: var(--blue-dark);
  font-size: 1rem;
}

.about-points span {
  color: var(--muted);
  line-height: 1.6;
}

.kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  font-size: 3rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.page-hero {
  display: grid;
  min-height: 360px;
  align-items: end;
  background: linear-gradient(90deg, rgba(0, 45, 84, 0.86), rgba(0, 45, 84, 0.36)),
    url("assets/banner/laser-photonics.jpeg") center / cover;
  color: var(--white);
}

.page-hero div {
  width: min(860px, 100%);
}

.page-hero .kicker,
.page-hero p {
  color: rgba(255, 255, 255, 0.82);
}

.page-hero h1 {
  margin: 0;
  font-size: 4.3rem;
  line-height: 1;
  letter-spacing: 0;
}

.page-hero p {
  width: min(680px, 100%);
  margin: 18px 0 0;
  font-size: 1.08rem;
  line-height: 1.7;
}

.catalog-intro {
  padding-top: clamp(48px, 7vw, 78px);
  padding-bottom: clamp(30px, 4vw, 46px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(240, 247, 253, 0.9), rgba(255, 255, 255, 0.96) 55%),
    var(--white);
}

.catalog-intro h1 {
  margin: 0;
  color: var(--ink);
  font-size: 3rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.catalog-intro p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.product-subpage-intro {
  padding-bottom: clamp(32px, 5vw, 52px);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--blue);
  font-weight: 800;
}

.back-link::before {
  content: "<";
}

.product-hero {
  min-height: 520px;
}

.category-nav {
  position: sticky;
  top: 82px;
  z-index: 15;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 14px clamp(20px, 6vw, 80px);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 12px rgba(20, 42, 66, 0.04);
  scrollbar-width: thin;
}

.category-nav a {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--blue-dark);
  font-size: 0.86rem;
  font-weight: 800;
  background: var(--white);
  transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.lineup-nav a {
  max-width: min(360px, 84vw);
  text-align: center;
  white-space: normal;
}

.category-nav a:hover,
.category-nav a:focus,
.category-nav a.is-active {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--soft-blue);
}

.subpage-nav {
  position: static;
  top: auto;
  justify-content: flex-start;
}

.lineup-nav {
  padding-top: 10px;
  border-top: 0;
  background: var(--paper);
}

.lineup-nav a:hover,
.lineup-nav a:focus,
.lineup-nav a.is-active {
  border-color: var(--blue);
  color: var(--blue);
  background: #f3f9ff;
}

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

.section-heading h2 {
  max-width: 1000px;
}

.centered {
  text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 275px), 1fr));
  gap: 20px;
}

.product-grid article {
  display: grid;
  align-content: start;
  grid-template-rows: auto auto 1fr auto;
  min-height: 230px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.product-grid article > img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: contain;
  padding: 18px;
  border-bottom: 1px solid var(--line);
  background: #f7f9fb;
}

.product-grid article h3,
.product-grid article p,
.product-grid article .text-link {
  margin-left: 24px;
  margin-right: 24px;
}

.product-grid article h3 {
  margin-top: 22px;
}

.product-grid article .text-link {
  margin-bottom: 24px;
}

.product-grid h3,
.news-card h3 {
  margin: 0 0 12px;
  color: var(--blue-dark);
  font-size: 1.22rem;
}

.product-grid p,
.brand-detail p,
.news-card p,
.application-row span,
.contact-card span {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.product-grid article h3 {
  margin-top: 22px;
}

.section-heading p {
  width: min(760px, 100%);
  margin: 16px 0 0;
}

.brand-detail {
  background: #fff;
}

.featured-products {
  background: var(--paper);
}

.featured-grid .catalog-card img {
  aspect-ratio: 1.35 / 1;
}

.product-directory {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  background: var(--paper);
}

.territory-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #111;
}

.territory-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transition: opacity 180ms ease, transform 220ms ease;
}

.territory-card span {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  color: var(--white);
  font-size: 1.16rem;
  font-weight: 800;
}

.territory-card:hover img,
.territory-card:focus img {
  opacity: 0.9;
  transform: scale(1.04);
}

.product-territory {
  background: var(--white);
}

.product-territory:nth-of-type(even) {
  background: var(--paper);
}

.family-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 285px), 1fr));
  justify-content: start;
  gap: 20px;
}

.family-card {
  display: grid;
  grid-template-rows: 245px 1fr;
  height: 100%;
  min-height: 485px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(20, 42, 66, 0.04);
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.family-card:hover,
.family-card:focus {
  border-color: rgba(0, 114, 206, 0.42);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.family-card img {
  width: 100%;
  height: 245px;
  object-fit: contain;
  padding: clamp(18px, 2vw, 24px);
  background: #f7f9fb;
}

.family-card h3 {
  margin: 0;
  color: var(--blue-dark);
  font-size: 1.1rem;
  line-height: 1.35;
}

.catalog-card {
  grid-template-rows: 245px 1fr;
}

.catalog-card img {
  border-bottom: 1px solid var(--line);
}

#oem .family-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 285px), 360px));
}

.compact-oem-card img {
  padding: clamp(18px, 2vw, 24px);
}

.compact-oem-card .family-body {
  padding: 20px;
}

.ivim-grid .catalog-card img {
  aspect-ratio: 1.35 / 1;
}

.family-body {
  display: grid;
  align-content: start;
  gap: 12px;
  grid-template-rows: auto auto 1fr auto auto;
  padding: 22px;
}

.family-body p {
  margin: 0;
  color: var(--muted);
  display: -webkit-box;
  overflow: hidden;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.family-body strong {
  align-self: end;
  margin-top: 2px;
  color: var(--blue);
  font-size: 0.92rem;
  line-height: 1.25;
}

.family-card:not([href="index.html#contact"]) .family-body > strong::after {
  content: " →";
}

.family-card[href="index.html#contact"] .family-body > strong {
  display: inline-flex;
  min-height: 38px;
  width: fit-content;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: var(--radius);
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(0, 114, 206, 0.16);
  transition: background-color 160ms ease, box-shadow 160ms ease;
}

.family-card[href="index.html#contact"]:hover .family-body > strong,
.family-card[href="index.html#contact"]:focus .family-body > strong {
  background: #005fae;
  box-shadow: 0 10px 22px rgba(0, 114, 206, 0.22);
}

.brand-name {
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag-row span {
  padding: 6px 9px;
  border-radius: 999px;
  background: #edf5fb;
  color: var(--blue-dark);
  font-size: 0.76rem;
  font-weight: 700;
}

.territory-detail,
.compact-territories {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 26px;
}

.territory-detail div,
.compact-territories article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(20, 42, 66, 0.04);
}

.territory-detail h3,
.compact-territories h2 {
  margin: 0 0 14px;
  color: var(--blue-dark);
  font-size: 1.18rem;
  line-height: 1.35;
}

.territory-detail ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.55;
}

.brand-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.35fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}

.catalog-brand-layout {
  align-items: start;
}

.brand-panel {
  display: grid;
  align-content: start;
  gap: 20px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.brand-panel img {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: contain;
  padding: 12px;
  border-radius: var(--radius);
  background: var(--white);
}

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

.detail-grid article {
  min-height: 190px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(20, 42, 66, 0.04);
}

.detail-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.detail-grid h3,
.detail-columns h3 {
  margin: 0 0 12px;
  color: var(--blue-dark);
  font-size: 1.2rem;
}

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

.detail-columns div {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--paper);
}

.detail-columns ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.55;
}

.product-territory h2 {
  width: min(980px, 100%);
  font-size: 2.25rem;
  line-height: 1.14;
}

.product-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(56px, 8vw, 92px) clamp(20px, 6vw, 80px);
  background: var(--blue-dark);
  color: var(--white);
}

.product-contact .kicker,
.product-contact p {
  color: rgba(255, 255, 255, 0.78);
}

.product-contact h2 {
  margin: 0;
  font-size: 2.75rem;
  line-height: 1.08;
}

.product-contact p {
  width: min(720px, 100%);
  margin: 18px 0 0;
  line-height: 1.7;
}

.contact-form-panel {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.16);
}

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

.contact-form-panel input,
.contact-form-panel textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--ink);
  font: inherit;
}

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

.product-list-page {
  display: grid;
  gap: clamp(24px, 4vw, 44px);
}

.classification-section-heading {
  display: grid;
  gap: 12px;
  scroll-margin-top: 160px;
}

.classification-section-heading h2 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.14;
}

.classification-section-heading p {
  width: min(820px, 100%);
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.classification-detail-panel {
  display: grid;
  gap: clamp(22px, 4vw, 36px);
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-top: 4px solid var(--blue);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  scroll-margin-top: 160px;
}

.list-page-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
}

.list-page-heading h2 {
  margin: 0;
}

.list-page-heading p {
  width: min(820px, 100%);
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.product-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(20, 42, 66, 0.04);
}

.product-list-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.product-list-table th,
.product-list-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.product-list-table th {
  background: #eef5fb;
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-list-table td {
  color: var(--muted);
  line-height: 1.5;
}

.product-list-table td strong {
  display: block;
  color: var(--blue-dark);
}

.product-list-table td span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.82rem;
}

.product-list-table tr:last-child td {
  border-bottom: 0;
}

.product-list-table tbody tr:hover td {
  background: #fbfdff;
}

.product-list-table.compact {
  min-width: 760px;
}

.product-list-table.compact td:first-child {
  color: var(--blue-dark);
  font-weight: 800;
}

.model-ask-link,
.model-summary-cta {
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  text-decoration: none;
}

.model-ask-link {
  color: var(--blue);
  white-space: nowrap;
}

.model-summary-cta {
  width: fit-content;
  margin-top: 16px;
  padding: 11px 16px;
  border: 1px solid var(--blue);
  border-radius: 8px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.88rem;
  line-height: 1;
}

.model-ask-link:hover,
.model-summary-cta:hover {
  color: var(--blue-dark);
}

.model-summary-cta:hover {
  background: var(--white);
}

.oxxius-model-table {
  min-width: 1040px;
  table-layout: fixed;
}

.oxxius-model-table th:nth-child(1),
.oxxius-model-table td:nth-child(1) {
  width: 25%;
}

.oxxius-model-table th:nth-child(2),
.oxxius-model-table td:nth-child(2) {
  width: 12%;
}

.oxxius-model-table th:nth-child(3),
.oxxius-model-table td:nth-child(3) {
  width: 17%;
}

.oxxius-model-table th:nth-child(4),
.oxxius-model-table td:nth-child(4) {
  width: 18%;
}

.oxxius-model-table th:nth-child(5),
.oxxius-model-table td:nth-child(5) {
  width: 28%;
  overflow-wrap: anywhere;
}

.model-table-block {
  display: grid;
  gap: 18px;
}

.model-family-summary {
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(20, 42, 66, 0.04);
}

.model-family-summary img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: contain;
  padding: 18px;
  border-right: 1px solid var(--line);
  background: #f7f9fb;
}

.model-family-summary > div {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: clamp(22px, 4vw, 34px);
}

.model-family-summary h2 {
  margin: 0;
  font-size: 2.2rem;
  line-height: 1.14;
}

.model-family-summary p {
  width: min(760px, 100%);
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.applications,
.news {
  background: var(--paper);
}

.featured-products + .applications {
  background: var(--white);
}

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

.application-row div {
  display: grid;
  gap: 10px;
  padding: 28px;
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(20, 42, 66, 0.04);
}

.application-row strong {
  color: var(--blue-dark);
  font-size: 1.08rem;
}

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

.news-card {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 22px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.news-card time {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 96px;
  border-radius: var(--radius);
  background: var(--blue);
  color: var(--white);
  text-align: center;
}

.news-card time span {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.news-card time strong {
  font-size: 1.8rem;
}

.news-card div > span {
  color: var(--blue-dark);
  font-weight: 700;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
  gap: 16px;
}

.partner-grid img {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: contain;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.partner-grid img:hover {
  border-color: rgba(0, 114, 206, 0.32);
  box-shadow: var(--shadow-soft);
  transform: translateY(-1px);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
  gap: clamp(28px, 5vw, 76px);
  background: var(--blue-dark);
  color: var(--white);
}

.contact .kicker,
.contact p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-card {
  display: grid;
  gap: 10px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.16);
}

.contact-card strong {
  color: var(--blue-dark);
}

.contact-card a {
  color: var(--blue);
  font-size: 1.2rem;
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 34px clamp(20px, 6vw, 80px);
  background: #182536;
  color: var(--white);
}

.site-footer a {
  font-weight: 700;
}

.expanded-footer {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(220px, 1.4fr) minmax(220px, 1.4fr) auto;
  align-items: start;
}

.expanded-footer div {
  display: grid;
  gap: 8px;
}

.expanded-footer strong {
  color: var(--white);
}

.expanded-footer span,
.expanded-footer small {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

@media (max-width: 1020px) {
  .site-nav {
    gap: 16px;
  }

  .site-nav a {
    letter-spacing: 0.08em;
  }

  .product-grid,
  .product-directory,
  .application-row,
  .territory-detail,
  .compact-territories,
  .detail-grid,
  .detail-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 780px) {
  .site-header {
    min-height: 70px;
  }

  .logo img {
    width: 170px;
  }

  .nav-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
  }

  .nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--ink);
  }

  .site-nav {
    position: absolute;
    top: 70px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 14px;
  }

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

  .hero {
    height: auto;
    min-height: 640px;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    gap: 20px;
    align-content: center;
    padding: 42px 20px 76px;
  }

  .hero-slide::after {
    background: linear-gradient(180deg, rgba(0, 32, 64, 0.78), rgba(0, 32, 64, 0.24), rgba(255, 255, 255, 0.64));
  }

  .hero-caption h1 {
    font-size: 2.7rem;
  }

  .hero-visual {
    min-height: 220px;
    padding: 18px;
  }

  .hero-visual img {
    height: 220px;
    max-height: 240px;
  }

  .category-nav {
    top: 70px;
    padding: 12px 20px;
  }

  .slider-arrow {
    width: 44px;
    height: 44px;
    font-size: 1.8rem;
  }

  .intro,
  .contact,
  .product-contact,
  .brand-layout,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .intro {
    gap: 24px;
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .about-copy,
  .about-panel {
    gap: 16px;
  }

  .about-copy h2 {
    font-size: 2.15rem;
  }

  .about-copy p,
  .about-panel p {
    font-size: 1rem;
    line-height: 1.65;
  }

  .about-panel {
    padding: 18px;
  }

  .about-points article {
    padding: 14px;
  }

  .list-page-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .catalog-intro h1 {
    font-size: 2.35rem;
  }

  .product-subpage-intro {
    padding-bottom: 30px;
  }

  .family-body {
    padding: 18px;
  }

  .classification-detail-panel {
    padding: 20px;
  }
}

@media (max-width: 560px) {
  .product-grid,
  .product-directory,
  .application-row,
  .territory-detail,
  .compact-territories,
  .detail-grid,
  .detail-columns,
  .family-grid {
    grid-template-columns: 1fr;
  }

  .intro,
  .products,
  .featured-products,
  .brand-detail,
  .page-hero,
  .catalog-intro,
  .product-directory,
  .product-territory,
  .applications,
  .news,
  .partners,
  .contact {
    padding-left: 18px;
    padding-right: 18px;
  }

  .category-nav a {
    min-height: 38px;
    padding: 10px 13px;
    font-size: 0.8rem;
  }

  .hero-caption p {
    font-size: 0.98rem;
  }

  .button {
    width: 100%;
  }

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

  .news-card time {
    width: 96px;
  }

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

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

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

.model-family-summary img {
    min-height: 190px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

.lead-modal[hidden] {
  display: none;
}

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
}

.lead-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 20, 34, 0.72);
  backdrop-filter: blur(7px);
}

.lead-modal__dialog {
  position: relative;
  width: min(540px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 28px 80px rgba(8, 26, 44, 0.34);
}

.lead-modal__dialog h2 {
  margin: 8px 0 10px;
  color: var(--ink);
  font-size: clamp(1.9rem, 5vw, 2.65rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.lead-modal__dialog p,
.lead-modal__dialog small {
  color: var(--muted);
  line-height: 1.55;
}

.lead-modal__dialog small {
  display: block;
  margin-top: 16px;
  font-size: 0.78rem;
}

.lead-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--white);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.lead-modal__close:hover,
.lead-modal__close:focus {
  color: var(--blue);
  border-color: rgba(0, 114, 206, 0.35);
}

.lead-modal__form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.lead-modal__form label {
  display: grid;
  gap: 7px;
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead-modal__form input,
.lead-modal__form textarea {
  width: 100%;
  border: 1px solid #d8e0ea;
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  letter-spacing: 0;
  text-transform: none;
}

.lead-modal__form input[readonly] {
  color: var(--blue-dark);
  background: var(--soft-blue);
  font-weight: 700;
}

.lead-modal__form input:focus,
.lead-modal__form textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(0, 114, 206, 0.16);
}

.lead-modal__error {
  margin: 0;
  padding: 10px 12px;
  border: 1px solid rgba(178, 46, 46, 0.25);
  border-radius: 6px;
  color: #9c2222 !important;
  background: #fff3f3;
  font-weight: 700;
}

.lead-modal__form .button {
  width: 100%;
  justify-content: center;
  border: 0;
  cursor: pointer;
}
