@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@500;600;700&display=swap');

:root {
  --primary: #0057b8;
  --primary-dark: #003f88;
  --secondary: #0aa6c2;
  --accent: #f4b63f;
  --ink: #071a3d;
  --muted: #5f6f89;
  --line: #dce6f4;
  --soft: #f4f8fd;
  --white: #fff;
  --radius: 8px;
  --shadow: 0 18px 50px rgba(4, 35, 82, .13);
  font-family: Quicksand, Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.site-header.compact { position: static; }
.topbar {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  padding: 7px clamp(16px, 4vw, 48px);
  color: var(--muted);
  font-size: 13px;
  border-bottom: 1px solid #edf3fa;
}
.topbar span, .topbar button, .quote-btn, .btn, .feature-grid span, .support-icons span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.topbar svg { width: 15px; }
.search-trigger {
  border: 0;
  background: transparent;
  color: var(--primary);
  cursor: pointer;
}
.navbar {
  min-height: 70px;
  padding: 0 clamp(16px, 4vw, 48px);
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 178px;
}
.brand-logo {
  display: block;
  width: 148px;
  height: 38px;
  object-fit: cover;
}
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 78px;
  height: 42px;
  border: 2px solid #d4e0f0;
  color: #e5242a;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0;
  transform: skew(-8deg);
}
.brand strong {
  display: block;
  color: #e5242a;
  font-size: 15px;
  line-height: 1;
}
.brand small {
  display: block;
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
}
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex: 1;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
.nav-links a:hover { color: var(--primary); }
.quote-btn {
  background: var(--primary);
  color: var(--white);
  border-radius: 6px;
  padding: 13px 18px;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
}
.quote-btn svg, .btn svg { width: 18px; }
.menu-toggle {
  display: none;
  margin-left: auto;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 6px;
  width: 44px;
  height: 44px;
}

.hero {
  position: relative;
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: stretch;
  overflow: hidden;
  background: linear-gradient(90deg, #f8fbff 0%, #eef6ff 42%, #e8f2fb 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: var(--line);
}
.hero-copy {
  position: relative;
  z-index: 2;
  padding: clamp(54px, 8vw, 100px) clamp(22px, 7vw, 104px);
}
.eyebrow {
  display: inline-block;
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hero h1 {
  max-width: 620px;
  margin: 0;
  font-size: 58px;
  line-height: .98;
  letter-spacing: 0;
}
.hero p {
  max-width: 470px;
  margin: 24px 0;
  color: #11284e;
  font-size: 19px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 34px;
}
.btn {
  min-height: 48px;
  border-radius: 6px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  border: 1px solid transparent;
}
.btn.primary { background: var(--primary); color: var(--white); }
.btn.secondary { background: var(--white); color: var(--primary); border-color: #b8ccea; }
.btn.light { background: var(--white); color: var(--primary-dark); }
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.trust-badges > img {
  width: 350px;
  height: 48px;
  object-fit: cover;
}
.trust-badges span {
  color: var(--primary-dark);
  border: 1px dashed #9ab4d5;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 900;
  background: rgba(255,255,255,.75);
}
.hero-visual {
  position: relative;
  min-height: 520px;
  isolation: isolate;
}
.hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .62;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #eef6ff 0%, rgba(238,246,255,.35) 28%, rgba(255,255,255,.16));
  z-index: 1;
}
.device-card {
  position: absolute;
  z-index: 3;
  left: 13%;
  top: 18%;
  width: min(390px, 58vw);
  height: 390px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--primary) 0 23%, #f9fbfd 23% 100%);
  box-shadow: var(--shadow);
  border: 1px solid #d7e3ef;
  display: grid;
  place-items: center;
  color: #0d3d79;
  font-size: 34px;
  text-align: center;
}
.device-card::after {
  content: "";
  position: absolute;
  right: -22px;
  top: 45px;
  width: 24px;
  height: 300px;
  background: #e7edf4;
  border-radius: 0 8px 8px 0;
}
.device-screen {
  position: absolute;
  left: 36px;
  top: 70px;
  width: 48px;
  height: 64px;
  background: #061d3e;
  border-radius: 5px;
  border: 4px solid #193d72;
}
.experience-badge {
  position: absolute;
  z-index: 4;
  right: 12%;
  bottom: 23%;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--white);
  display: grid;
  place-items: center;
  text-align: center;
  box-shadow: var(--shadow);
  color: var(--primary);
  text-transform: uppercase;
}
.experience-badge strong { font-size: 40px; line-height: 1; }
.experience-badge span { font-size: 14px; font-weight: 900; color: var(--ink); }

.section {
  padding: 36px clamp(16px, 5vw, 70px) 28px;
}
.section-title {
  text-align: center;
  margin-bottom: 26px;
}
h2 {
  margin: 0 0 18px;
  font-size: 27px;
  color: var(--ink);
}
.section-title h2::after {
  content: "";
  display: block;
  width: 62px;
  height: 3px;
  margin: 10px auto 0;
  background: var(--primary);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}
.product-card {
  position: relative;
  min-height: 295px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 8px 26px rgba(11,45,91,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.product-visual {
  width: 100%;
  height: 145px;
  background: linear-gradient(145deg, #f9fbff, #dfeaf7);
  position: relative;
}
.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-visual:has(img)::before,
.product-visual:has(img)::after { display: none; }
.product-visual::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  width: 84px;
  height: 108px;
  border-radius: 6px;
  background: linear-gradient(90deg, #dbe4ed 0 23%, #fff 23% 100%);
  border: 1px solid #bccadd;
  box-shadow: 0 14px 24px rgba(24, 53, 90, .16);
}
.product-visual::after {
  content: "";
  position: absolute;
  left: calc(50% - 20px);
  top: 48px;
  width: 22px;
  height: 28px;
  border-radius: 4px;
  background: #09295b;
}
.product-visual.peroxide::before { height: 122px; width: 72px; }
.product-visual.passbox::before { width: 110px; height: 96px; }
.product-visual.washer::before { width: 118px; background: linear-gradient(90deg, #cbd5e2, #fff 50%, #dbe8f5); }
.product-visual.cssd::before { width: 120px; height: 112px; }
.product-visual.operating::before {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff, #cdd9e8);
}
.product-icon {
  width: 52px;
  height: 52px;
  margin-top: -26px;
  border: 5px solid var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: var(--white);
  z-index: 1;
}
.product-icon svg { width: 22px; }
.product-card h3 {
  min-height: 48px;
  padding: 0 12px;
  margin: 18px 0 12px;
  font-size: 14px;
  line-height: 1.25;
  text-transform: uppercase;
}
.product-card small {
  margin-top: auto;
  margin-bottom: 20px;
  color: var(--primary);
  font-weight: 900;
  text-transform: uppercase;
}

.why {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
  background: var(--soft);
}
.why > img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}
.why-content {
  padding: clamp(34px, 5vw, 70px);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}
.feature-grid span {
  color: #173056;
  font-weight: 800;
}
.feature-grid svg {
  width: 34px;
  height: 34px;
  color: var(--primary);
  stroke-width: 1.6;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: linear-gradient(90deg, var(--primary-dark), var(--primary));
  color: var(--white);
}
.stats div {
  min-height: 120px;
  display: grid;
  place-items: center;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.2);
}
.stats strong {
  display: block;
  font-size: 38px;
  line-height: 1;
}
.stats span {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.media-area, .news-support {
  padding: 38px clamp(16px, 5vw, 70px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr) minmax(0, .9fr);
  gap: 24px;
}
.video-card {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 22px;
  align-items: center;
}
.video-card p { color: var(--muted); }
.video-thumb {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 220px;
}
.video-thumb img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  filter: saturate(.8);
}
.video-thumb span {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--white);
  color: var(--primary);
}
.logo-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: var(--white);
}
.logo-grid, .cert-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.cert-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.logo-grid span, .cert-grid span {
  min-height: 68px;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--primary-dark);
  font-weight: 900;
  font-size: 12px;
  background: #fbfdff;
}
.logo-grid img,
.cert-grid img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
}
.news-support {
  grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
  align-items: stretch;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.news-grid a {
  min-height: 150px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, #f9fbff, #fff);
}
.news-grid a > img {
  width: calc(100% + 32px);
  height: 78px;
  margin: -16px -16px 8px;
  object-fit: cover;
}
.news-grid span {
  align-self: flex-start;
  padding: 4px 8px;
  border-radius: 4px;
  background: var(--primary);
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.news-grid strong { font-size: 15px; line-height: 1.3; }
.news-grid small { margin-top: 12px; color: var(--muted); }
.support {
  border-radius: var(--radius);
  padding: 32px;
  color: var(--white);
  background: linear-gradient(90deg, #00458f 0%, rgba(0,76,157,.96) 64%, rgba(0,72,150,.48) 100%), url("../img/reference/support-agent.jpg") right center/auto 100% no-repeat;
}
.support h2 { color: var(--white); }
.support-icons {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 28px 0;
}
.support-icons span {
  flex-direction: column;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
}
.support-icons svg { width: 34px; height: 34px; }

.footer {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 34px;
  padding: 36px clamp(16px, 5vw, 70px);
  background: #00346f;
  color: var(--white);
}
.footer h3 { margin: 0 0 12px; font-size: 16px; }
.footer a, .footer p {
  display: block;
  color: rgba(255,255,255,.82);
  margin: 7px 0;
  font-size: 14px;
}
.footer .brand-mark {
  background: var(--white);
  margin-bottom: 14px;
}
.footer-logo {
  width: 146px;
  height: 49px;
  object-fit: cover;
  margin-bottom: 12px;
}

.search-modal {
  width: min(680px, calc(100vw - 28px));
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}
.search-modal::backdrop { background: rgba(4, 20, 46, .5); }
.search-modal form {
  display: flex;
  justify-content: flex-end;
}
.search-modal form button {
  border: 0;
  background: transparent;
  cursor: pointer;
}
.search-modal label span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
}
.search-modal input {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 14px;
}
.quick-search {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.quick-search button {
  border: 1px solid var(--line);
  background: var(--soft);
  border-radius: 999px;
  padding: 8px 12px;
}

.product-detail {
  padding: 34px clamp(16px, 5vw, 70px) 60px;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 14px;
}
.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .75fr);
  gap: 38px;
  align-items: start;
}
.gallery-main {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--soft);
}
.gallery-main img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}
.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 12px;
}
.gallery-thumbs button {
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  padding: 0;
  background: var(--white);
}
.gallery-thumbs img {
  width: 100%;
  height: 96px;
  object-fit: cover;
}
.product-summary {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 10px 32px rgba(11,45,91,.08);
}
.product-summary h1 {
  margin: 0 0 16px;
  font-size: 38px;
  line-height: 1.05;
}
.summary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}
.spec-list {
  padding-left: 20px;
  color: var(--muted);
}
.tabs {
  margin-top: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.tab-list {
  display: flex;
  gap: 0;
  overflow-x: auto;
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}
.tab-list button {
  min-height: 56px;
  white-space: nowrap;
  padding: 0 18px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  font-weight: 900;
  cursor: pointer;
}
.tab-list button.active {
  color: var(--primary);
  background: var(--white);
}
.tab-panel {
  display: none;
  padding: 26px;
}
.tab-panel.active { display: block; }
.tab-panel table {
  width: 100%;
  border-collapse: collapse;
}
.tab-panel th, .tab-panel td {
  border: 1px solid var(--line);
  padding: 13px;
  text-align: left;
}
.tab-panel th { background: var(--soft); }

.admin-flow-body { background: #eef4fb; }
.admin-flow {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 260px 1fr;
}
.admin-flow aside {
  background: #002d62;
  color: var(--white);
  padding: 24px;
}
.admin-flow aside strong {
  display: block;
  font-size: 22px;
  margin-bottom: 28px;
}
.admin-flow aside a {
  display: block;
  padding: 12px 0;
  color: rgba(255,255,255,.82);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.admin-flow section { padding: 36px; }
.admin-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.admin-cards article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}

.page-hero {
  padding: clamp(25px, 1vw, 4px) clamp(16px, 2vw, 70px);
  background: linear-gradient(110deg, #f8fbff, #eaf4ff);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  /* max-width: 860px; */
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
}
.page-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.filter-bar button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 15px;
  background: var(--white);
  color: var(--primary-dark);
  font-weight: 800;
}
.filter-bar button.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.catalog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.project-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 8px 26px rgba(11,45,91,.06);
}
.project-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}
.project-card div {
  padding: 18px;
}
.project-card span {
  color: var(--primary);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
}
.project-card h2 {
  margin: 8px 0;
  font-size: 21px;
}
.project-card p {
  color: var(--muted);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 34px;
}
.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.video-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.video-list article {
  min-height: 150px;
  display: grid;
  align-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: var(--soft);
}
.video-list svg {
  width: 38px;
  height: 38px;
  color: var(--primary);
}
.video-list strong {
  font-size: 18px;
}
.video-list span {
  color: var(--muted);
}
.contact-layout {
  padding: 42px clamp(16px, 5vw, 70px);
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 24px;
}
.contact-info,
.request-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  background: var(--white);
  box-shadow: 0 8px 26px rgba(11,45,91,.06);
}
.contact-info p {
  display: flex;
  gap: 10px;
  color: var(--muted);
}
.contact-info svg {
  width: 20px;
  color: var(--primary);
  flex: 0 0 auto;
}
.request-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.request-form h2,
.request-form label:nth-of-type(6),
.request-form button {
  grid-column: 1 / -1;
}
.request-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
}
.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 9px 12px;
}
.request-form textarea {
  min-height: 120px;
}
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.status-page {
  min-height: calc(100vh - 72px);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 16px;
  text-align: center;
  padding: 48px clamp(16px, 5vw, 70px);
  background: linear-gradient(120deg, #f8fbff, #eaf4ff);
}
.status-page h1 {
  margin: 0;
  font-size: clamp(36px, 6vw, 62px);
  line-height: 1;
}
.status-page p {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
}
.status-icon {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e6f6ee;
  color: #15803d;
}
.status-icon.warning {
  background: #fff7ed;
  color: #b45309;
}
.status-icon svg {
  width: 46px;
  height: 46px;
}
.search-page {
  display: grid;
  gap: 22px;
}
.search-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--white);
  box-shadow: 0 8px 26px rgba(11,45,91,.06);
}
.search-panel label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
}
.search-panel input {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 14px;
}
.search-results {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.search-results a {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--white);
}
.search-results a.is-hidden {
  display: none;
}
.search-results strong,
.search-results span {
  display: block;
}
.search-results span {
  margin: 6px 0;
  color: var(--primary);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
}
.legal-page {
  max-width: 920px;
  margin: 0 auto;
  padding: 42px clamp(16px, 5vw, 70px);
  color: #243a5e;
}
.legal-page h2 {
  margin-top: 28px;
}
.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: none;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  max-width: 920px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.cookie-banner.is-visible {
  display: grid;
}
.cookie-banner p {
  margin: 4px 0 0;
  color: var(--muted);
}
.cookie-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.cookie-actions a,
.cookie-actions button {
  min-height: 38px;
  border-radius: 6px;
  padding: 0 12px;
  font-weight: 900;
}
.cookie-actions a {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
}
.cookie-actions button {
  border: 1px solid var(--primary);
  background: var(--primary);
  color: var(--white);
  cursor: pointer;
}
.article-grid,
.certificate-list,
.service-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.article-card,
.certificate-list article,
.service-steps article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: var(--white);
  box-shadow: 0 8px 26px rgba(11,45,91,.06);
}
.article-card span {
  display: inline-block;
  padding: 5px 9px;
  border-radius: 4px;
  background: var(--primary);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.article-card h2 {
  margin-top: 16px;
  font-size: 23px;
}
.article-card p,
.service-steps p {
  color: var(--muted);
}
.article-card small {
  color: var(--primary-dark);
  font-weight: 900;
}
.certificate-list {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.certificate-list article {
  min-height: 190px;
  display: grid;
  align-content: center;
  gap: 9px;
  text-align: center;
}
.certificate-list svg,
.service-steps svg {
  width: 40px;
  height: 40px;
  color: var(--primary);
}
.certificate-list svg {
  margin: 0 auto;
}
.certificate-list strong,
.service-steps strong {
  font-size: 18px;
}
.certificate-list span {
  color: var(--muted);
  font-size: 13px;
}
.certificate-list a {
  color: var(--primary);
  font-weight: 900;
}
.service-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 22px;
}
.service-cta {
  margin-top: 6px;
}
.download-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.download-grid article {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--white);
  box-shadow: 0 8px 26px rgba(11,45,91,.06);
}
.download-grid svg {
  width: 42px;
  height: 42px;
  color: var(--primary);
}
.download-grid strong {
  font-size: 20px;
}
.download-grid span {
  color: var(--muted);
}
.download-grid a {
  color: var(--primary);
  font-weight: 900;
}
.faq-list {
  display: grid;
  gap: 10px;
}
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 14px;
  background: var(--soft);
}
.faq-list summary {
  cursor: pointer;
  font-weight: 900;
  color: var(--primary-dark);
}
.faq-list p {
  color: var(--muted);
}

@media (max-width: 1180px) {
  .nav-links { gap: 14px; font-size: 12px; }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .media-area { grid-template-columns: 1fr; }
  .certificate-list,
  .service-steps,
  .download-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .topbar { display: none; }
  .hero-arrow, .slider-dots { display: none; }
  .navbar { min-height: 64px; gap: 12px; }
  .menu-toggle { display: inline-grid; place-items: center; }
  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 70px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 8px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px; }
  .quote-btn { margin-left: auto; padding: 11px 12px; }
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }
  .hero-copy { padding: 42px 18px 26px; }
  .hero h1 { font-size: 42px; }
  .hero p { font-size: 17px; }
  .hero-visual { min-height: 380px; }
  .device-card {
    left: 10%;
    top: 14%;
    width: 260px;
    height: 260px;
    font-size: 24px;
  }
  .device-card::after { height: 195px; }
  .experience-badge {
    right: 7%;
    bottom: 12%;
    width: 112px;
    height: 112px;
  }
  .why, .detail-grid, .news-support, .admin-flow {
    grid-template-columns: 1fr;
  }
  .project-grid, .gallery-grid, .video-list, .contact-layout {
    grid-template-columns: 1fr;
  }
  .article-grid {
    grid-template-columns: 1fr;
  }
  .search-results {
    grid-template-columns: 1fr;
  }
  .support-icons { grid-template-columns: repeat(2, 1fr); }
  .footer { grid-template-columns: 1fr 1fr; }
  .admin-flow aside { display: none; }
}

@media (max-width: 640px) {
  .brand { min-width: auto; }
  .brand-mark { width: 64px; height: 36px; font-size: 23px; }
  .brand strong { font-size: 13px; }
  .brand small { font-size: 10px; }
  .quote-btn { font-size: 0; width: 44px; height: 44px; justify-content: center; padding: 0; }
  .quote-btn svg { width: 20px; }
  .hero h1 { font-size: 36px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .product-grid, .feature-grid, .stats, .news-grid, .footer, .admin-cards {
    grid-template-columns: 1fr;
  }
  .request-form {
    grid-template-columns: 1fr;
  }
  .search-panel,
  .cookie-banner {
    grid-template-columns: 1fr;
  }
  .certificate-list,
  .service-steps,
  .download-grid {
    grid-template-columns: 1fr;
  }
  .cookie-actions {
    justify-content: stretch;
  }
  .cookie-actions a,
  .cookie-actions button {
    flex: 1;
    justify-content: center;
  }
  .stats div { min-height: 92px; }
  .video-card { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-main img { height: 300px; }
  .product-summary h1 { font-size: 30px; }
}

/* Reference-matched home layout */
@media (min-width: 901px) {
  .site-header { box-shadow: 0 2px 10px rgba(10, 35, 70, .06); }
  .topbar { display: none; }
  .navbar { min-height: 52px; padding: 0 10px; gap: 20px; }
  .brand { min-width: 146px; }
  .brand-logo { width: 148px; height: 38px; }
  .brand-mark { width: 88px; height: 35px; font-size: 26px; border-color: #d9e3f0; }
  .brand strong { font-size: 13px; }
  .brand small { font-size: 9px; }
  .nav-links { gap: 25px; font-size: 8px; letter-spacing: 0; white-space: nowrap; }
  .nav-links a { flex: 0 0 auto; white-space: nowrap; }
  .nav-links a.is-current { color: var(--primary); }
  .nav-links a[href="en.html"] { display: none; }
  .quote-btn { min-height: 38px; padding: 0 16px; border-radius: 5px; font-size: 12px; }

  .hero {
    min-height: 386px;
    height: 386px;
    grid-template-columns: 47% 53%;
    background: linear-gradient(90deg, #f6fbff 0%, #eef6ff 52%, #eaf3fb 100%);
    border-bottom: 1px solid #e7eef8;
  }
  .hero-copy { padding: 48px 0 0 82px; }
  .hero h1 { max-width: 410px; font-size: 40px; line-height: 1.05; font-weight: 900; }
  .hero p { max-width: 330px; margin: 18px 0 18px; font-size: 16px; line-height: 1.32; }
  .hero-actions { gap: 12px; margin: 18px 0 24px; }
  .btn { min-height: 39px; padding: 0 18px; border-radius: 5px; font-size: 12px; }
  .trust-badges { display: block; width: 350px; height: 48px; overflow: hidden; }
  .trust-badges > img { width: 350px; height: 48px; }
  .trust-badges span {
    width: 62px;
    min-height: 48px;
    display: grid;
    place-items: center;
    gap: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #0057b8;
    text-align: center;
    text-transform: uppercase;
  }
  .trust-badges span::before {
    content: "";
    width: 37px;
    height: 37px;
    display: block;
    border: 2px solid #0057b8;
    border-radius: 50%;
    margin-bottom: 4px;
    background: radial-gradient(circle, #fff 45%, #dbeeff 46%);
  }
  .trust-badges strong { font-size: 11px; line-height: 1; }
  .trust-badges small { font-size: 9px; font-weight: 800; color: #163866; }

  .hero-visual { min-height: 386px; }
  .hero-visual img { opacity: 1; filter: none; object-position: center; }
  .hero-visual::before {
    background: linear-gradient(90deg, #eef6ff 0%, rgba(238,246,255,.18) 15%, transparent 34%);
  }
  .device-card, .experience-badge { display: none; }
  .device-card {
    left: 12%;
    top: 49px;
    width: 245px;
    height: 268px;
    font-size: 25px;
    border-radius: 4px;
    background: linear-gradient(90deg, #0057b8 0 25%, #f9fbfd 25% 100%);
  }
  .device-card::after {
    right: -58px;
    top: 18px;
    width: 60px;
    height: 220px;
    border-radius: 0 4px 4px 0;
    background: linear-gradient(90deg, #dfe7f0, #f8fbff);
    border: 1px solid #c8d5e3;
  }
  .device-screen { left: 25px; top: 52px; width: 33px; height: 48px; border-width: 3px; }
  .experience-badge { right: 12%; bottom: 90px; width: 111px; height: 111px; }
  .experience-badge strong { font-size: 32px; }
  .experience-badge span { max-width: 78px; font-size: 12px; }

  .hero-arrow {
    position: absolute;
    z-index: 6;
    top: 50%;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #fff;
    color: #0057b8;
    box-shadow: 0 5px 16px rgba(10, 35, 70, .14);
  }
  .hero-arrow.left { left: 8px; }
  .hero-arrow.right { right: 8px; }
  .hero-arrow svg { width: 18px; }
  .slider-dots {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
  }
  .slider-dots span, .slider-dots button { width: 16px; height: 4px; padding: 0; border: 0; border-radius: 999px; background: #d7e1ed; cursor: pointer; }
  .slider-dots span.active, .slider-dots button.active { background: #0057b8; }

  .section { padding: 6px 54px 10px; }
  .section-title { margin-bottom: 4px; }
  h2 { font-size: 19px; }
  .section-title h2::after { width: 54px; height: 2px; margin-top: 7px; }
  .product-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 14px; }
  .product-card { min-height: 238px; border-color: #e0e8f2; box-shadow: 0 7px 20px rgba(11,45,91,.045); }
  .product-visual { height: 136px; background: #f4f8fd; }
  .product-visual img { object-fit: cover; }
  .product-visual::before { width: 72px; height: 90px; bottom: 14px; }
  .product-visual::after { top: 43px; width: 18px; height: 24px; }
  .product-icon { width: 38px; height: 38px; margin-top: -19px; border-width: 3px; }
  .product-icon svg { width: 17px; }
  .product-card h3 { margin: 8px 0 4px; min-height: 34px; font-size: 10px; }
  .product-card small { margin-bottom: 8px; font-size: 8px; }

  .why { grid-template-columns: 46.5% 53.5%; height: 191px; margin-top: 0; overflow: hidden; }
  .why > img { min-height: 191px; height: 191px; }
  .why-content { padding: 20px 42px 16px; }
  .why-content h2 { margin-bottom: 14px; }
  .feature-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); column-gap: 24px; row-gap: 12px; }
  .feature-grid span { align-items: flex-start; gap: 8px; font-size: 11px; line-height: 1.25; }
  .feature-grid svg { width: 29px; height: 29px; flex: 0 0 auto; }

  .stats, .stats div { min-height: 85px; }
  .stats strong { font-size: 32px; }
  .stats span { font-size: 12px; }

  .media-area { grid-template-columns: 49% 17% 34%; gap: 14px; padding: 14px 24px 7px; }
  .video-card { grid-template-columns: 34% 66%; gap: 18px; height: 170px; overflow: hidden; }
  .video-card h2, .logo-panel h2 { font-size: 18px; margin-bottom: 11px; }
  .video-card p { font-size: 12px; }
  .video-thumb, .video-thumb img { height: 170px; min-height: 170px; }
  .logo-panel { height: 170px; padding: 0; overflow: hidden; border-color: transparent; box-shadow: none; }
  .logo-panel h2 { margin-bottom: 6px; }
  .logo-grid, .cert-grid { gap: 8px; }
  .logo-grid span, .cert-grid span { min-height: 66px; font-size: 9px; }
  .logo-grid img { height: 66px; object-fit: cover; }
  .cert-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .cert-grid img { height: 91px; object-fit: cover; }

  .news-support { grid-template-columns: 49% 51%; gap: 18px; padding: 10px 24px 2px; }
  .news h2 { font-size: 19px; }
  .news-grid { gap: 9px; }
  .news-grid a { height: 128px; min-height: 128px; padding: 8px; overflow: hidden; justify-content: flex-start; }
  .news-grid a > img { width: calc(100% + 16px); height: 52px; margin: -8px -8px 5px; }
  .news-grid span { font-size: 8px; margin: -2px 0 4px; }
  .news-grid strong { font-size: 10px; }
  .news-grid small { margin-top: 4px; font-size: 8px; }
  .support { height: 182px; min-height: 182px; padding: 14px 30px; overflow: hidden; }
  .support h2 { margin-bottom: 10px; font-size: 24px; }
  .support p { margin-top: -6px; font-size: 13px; }
  .support-icons { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 10px; margin: 8px 0; }
  .support-icons svg { width: 25px; height: 25px; }
  .support-icons span { gap: 3px; font-size: 8px; }
  .support .btn { min-height: 31px; padding: 0 14px; font-size: 10px; }

  .footer { grid-template-columns: 1.35fr repeat(5, 1fr); gap: 18px; padding: 10px 24px; }
  .footer .brand-mark { width: 146px; height: 54px; font-size: 42px; }
  .footer h3 { margin-bottom: 6px; font-size: 10px; }
  .footer a, .footer p { margin: 3px 0; font-size: 8px; line-height: 1.35; }
}

/* Professional constrained desktop layout */
@media (min-width: 901px) {
  body {
    background: #edf2f7;
  }

  .site-header {
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 4px 20px rgba(12, 42, 78, .08);
  }

  .topbar {
    width: min(1280px, calc(100% - 48px));
    max-width: 1280px;
    min-height: 34px;
    margin: 0 auto;
    padding: 6px 0;
    display: flex;
    border-bottom-color: #e5edf6;
    font-size: 12px;
  }

  .navbar {
    width: min(1280px, calc(100% - 48px));
    max-width: 1280px;
    min-height: 76px;
    margin: 0 auto;
    padding: 0;
    gap: 20px;
  }

  .brand {
    min-width: 176px;
  }

  .brand-logo {
    width: 176px;
    height: 45px;
    object-fit: cover;
  }

  .nav-links {
    gap: 16px;
    font-size: 10px;
    line-height: 1;
  }

  .nav-links a[href="en.html"] {
    display: inline-flex;
    color: var(--primary);
  }

  .quote-btn {
    min-height: 42px;
    padding: 0 17px;
    font-size: 11px;
    white-space: nowrap;
  }

  main {
    width: min(1280px, calc(100% - 48px));
    max-width: 1280px;
    margin: 20px auto 32px;
    overflow: hidden;
    border: 1px solid #dce6f1;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 55px rgba(13, 44, 82, .10);
  }

  .hero {
    height: 470px;
    min-height: 470px;
    grid-template-columns: 46% 54%;
  }

  .hero-copy {
    padding: 62px 36px 34px 68px;
  }

  .hero h1 {
    max-width: 480px;
    font-size: 48px;
    line-height: 1.03;
  }

  .hero p {
    max-width: 430px;
    margin: 22px 0;
    font-size: 17px;
    line-height: 1.5;
  }

  .hero-actions {
    margin: 24px 0 28px;
  }

  .hero .btn {
    min-height: 44px;
    padding: 0 20px;
    font-size: 11px;
  }

  .hero-visual {
    min-height: 470px;
  }

  .hero-visual img {
    object-position: center;
  }

  .hero-arrow.left { left: 16px; }
  .hero-arrow.right { right: 16px; }

  .section {
    padding: 34px 36px 36px;
  }

  .section-title {
    margin-bottom: 24px;
  }

  .section-title h2 {
    font-size: 23px;
  }

  .product-grid {
    gap: 16px;
  }

  .product-card {
    min-height: 278px;
  }

  .product-visual {
    height: 150px;
  }

  .product-icon {
    width: 44px;
    height: 44px;
    margin-top: -22px;
    border-width: 4px;
  }

  .product-icon svg { width: 19px; }

  .product-card h3 {
    min-height: 42px;
    margin: 13px 0 7px;
    font-size: 11px;
  }

  .product-card small {
    margin-bottom: 14px;
    font-size: 9px;
  }

  .why {
    height: 230px;
    grid-template-columns: 46% 54%;
  }

  .why > img {
    height: 230px;
    min-height: 230px;
  }

  .why-content {
    padding: 30px 42px;
  }

  .why-content h2 {
    margin-bottom: 22px;
    font-size: 23px;
  }

  .feature-grid {
    column-gap: 24px;
    row-gap: 22px;
  }

  .feature-grid span {
    font-size: 11px;
  }

  .feature-grid svg {
    width: 31px;
    height: 31px;
  }

  .stats,
  .stats div {
    min-height: 105px;
  }

  .stats strong { font-size: 34px; }
  .stats span { font-size: 11px; }

  .media-area {
    grid-template-columns: 48% 18% 34%;
    gap: 20px;
    padding: 30px 28px;
  }

  .video-card,
  .logo-panel {
    height: 200px;
  }

  .video-card {
    grid-template-columns: 35% 65%;
    gap: 18px;
  }

  .video-card h2,
  .logo-panel h2 {
    margin-bottom: 12px;
    font-size: 18px;
  }

  .video-card p {
    font-size: 12px;
  }

  .video-thumb,
  .video-thumb img {
    height: 200px;
    min-height: 200px;
  }

  .logo-grid img {
    height: 76px;
    object-fit: cover;
  }

  .cert-grid img {
    height: 108px;
    object-fit: cover;
  }

  .news-support {
    grid-template-columns: 48% 52%;
    gap: 20px;
    padding: 12px 28px 30px;
  }

  .news h2 {
    margin-bottom: 16px;
    font-size: 21px;
  }

  .news-grid a {
    height: 158px;
    min-height: 158px;
    padding: 10px;
  }

  .news-grid a > img {
    width: calc(100% + 20px);
    height: 68px;
    margin: -10px -10px 7px;
  }

  .news-grid strong { font-size: 11px; }
  .news-grid small { font-size: 9px; }

  .support {
    height: 210px;
    min-height: 210px;
    padding: 23px 30px;
  }

  .support h2 { font-size: 25px; }
  .support-icons { margin: 16px 0; }
  .support-icons svg { width: 28px; height: 28px; }
  .support-icons span { font-size: 9px; }
  .support .btn { min-height: 36px; font-size: 10px; }

  .footer {
    width: min(1280px, calc(100% - 48px));
    max-width: 1280px;
    margin: 0 auto 24px;
    gap: 24px;
    padding: 26px 30px;
    border-radius: 8px;
    box-shadow: 0 14px 40px rgba(0, 41, 88, .16);
  }

  .footer-logo {
    width: 160px;
    height: 54px;
  }

  .footer h3 {
    margin-bottom: 10px;
    font-size: 12px;
  }

  .footer a,
  .footer p {
    margin: 5px 0;
    font-size: 10px;
    line-height: 1.45;
  }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .topbar,
  .navbar,
  main,
  .footer {
    width: calc(100% - 32px);
  }

  .navbar { gap: 13px; }
  .brand { min-width: 158px; }
  .brand-logo { width: 158px; height: 41px; }
  .nav-links { gap: 10px; font-size: 9px; }
  .quote-btn { padding: 0 12px; font-size: 10px; }
  .hero-copy { padding-left: 54px; }
  .hero h1 { font-size: 44px; }
}

/* Nexus-inspired corporate navigation typography and language switcher */
.language-switcher {
  position: relative;
  flex: 0 0 auto;
  font-family: Quicksand, Arial, sans-serif;
}

.language-switcher summary {
  min-width: 72px;
  height: 42px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid #d7e2ef;
  border-radius: 7px;
  background: #f8fafc;
  color: #0f284d;
  font-size: 14px;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
  transition: border-color .2s ease, background-color .2s ease, color .2s ease;
}

.language-switcher summary::-webkit-details-marker { display: none; }
.language-switcher summary:hover,
.language-switcher[open] summary {
  border-color: #9ab7da;
  background: #fff;
  color: var(--primary);
}

.language-switcher summary > svg {
  width: 16px;
  height: 16px;
}

.language-switcher .language-chevron {
  width: 14px;
  height: 14px;
  transition: transform .2s ease;
}

.language-switcher[open] .language-chevron { transform: rotate(180deg); }

.language-menu {
  position: absolute;
  z-index: 50;
  top: calc(100% + 9px);
  right: 0;
  width: 142px;
  padding: 7px;
  display: grid;
  gap: 3px;
  border: 1px solid rgba(15, 40, 77, .10);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(12, 42, 78, .16);
}

.language-menu a {
  min-height: 44px;
  padding: 7px 9px;
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 8px;
  border-radius: 6px;
  color: #0f284d;
}

.language-menu a:hover,
.language-menu a.is-active {
  background: #f1f6fc;
  color: var(--primary);
}

.language-menu span {
  font-size: 14px;
  font-weight: 700;
}

.language-menu small {
  font-size: 11px;
  font-weight: 600;
  color: #6b7e98;
}

@media (min-width: 901px) {
  .navbar { min-height: 82px; gap: 19px; }
  .brand { min-width: 190px; }
  .brand-logo { width: 190px; height: 49px; }

  .nav-links {
    gap: 14px;
    font-family: Quicksand, Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
  }

  .nav-links a {
    position: relative;
    padding: 17px 0;
  }

  .nav-links a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 10px;
    left: 0;
    height: 2px;
    transform: scaleX(0);
    transform-origin: center;
    background: var(--primary);
    transition: transform .2s ease;
  }

  .nav-links a:hover::after,
  .nav-links a.is-current::after { transform: scaleX(1); }

  .quote-btn {
    min-height: 44px;
    font-family: Quicksand, Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .brand { min-width: 164px; }
  .brand-logo { width: 164px; height: 42px; }
  .nav-links { gap: 9px; font-size: 10px; }
  .language-switcher summary { min-width: 62px; padding: 0 7px; }
}

@media (max-width: 900px) {
  .language-switcher { margin-left: auto; }

  .language-switcher summary {
    width: 44px;
    min-width: 44px;
    padding: 0;
    font-size: 0;
  }

  .language-switcher summary > svg:first-child {
    width: 19px;
    height: 19px;
  }

  .language-switcher .language-chevron { display: none; }
  .language-menu { right: 0; }
}

/* Requested desktop width, navigation weight and certificate-focused media band */
@media (min-width: 901px) {
  .topbar,
  .navbar,
  main,
  .footer {
    width: min(1295px, calc(100% - 33px));
    max-width: 1295px;
  }

  .nav-links {
    gap: 15px;
    font-family: Quicksand, Arial, sans-serif;
    font-size: 13px;
    font-weight: 650;
    text-transform: uppercase;
  }

  .media-area {
    grid-template-columns: 35% 65%;
    gap: 24px;
  }

  .media-area .video-card {
    display: none;
  }

  .media-area .logo-panel {
    height: 200px;
  }

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

  .media-area .logo-grid img {
    height: 126px;
    object-fit: contain;
  }

  .media-area .cert-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .media-area .cert-grid img {
    height: 154px;
    object-fit: contain;
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .topbar,
  .navbar,
  main,
  .footer {
    width: calc(100% - 17px);
  }

  .nav-links {
    gap: 15px;
    font-family: Quicksand, Arial, sans-serif;
    font-size: 13px;
    font-weight: 650;
    text-transform: uppercase;
  }
}

/* Final requested width and certificate-only homepage band */
@media (min-width: 901px) {
  .topbar,
  .navbar,
  main,
  .footer {
    width: min(1310px, calc(100% - 18px));
    max-width: 1310px;
  }

  .media-area {
    grid-template-columns: 1fr;
  }

  .media-area #sertifikalar {
    width: 100%;
    height: 210px;
    padding: 4px 18px 0;
  }

  .media-area #sertifikalar h2 {
    text-align: center;
  }

  .media-area #sertifikalar .cert-grid {
    max-width: 880px;
    margin: 0 auto;
    gap: 16px;
  }

  .media-area #sertifikalar .cert-grid img {
    height: 160px;
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .topbar,
  .navbar,
  main,
  .footer {
    width: calc(100% - 2px);
  }
}

/* Wider shell, technology statistics and professional certificate showcase */
@media (min-width: 901px) {
  .topbar,
  .navbar,
  main,
  .footer {
    width: min(1330px, 100%);
    max-width: 1330px;
  }
}

.stats {
  position: relative;
  overflow: hidden;
  background-color: #07182f;
  background-image:
    linear-gradient(rgba(111, 180, 225, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111, 180, 225, .07) 1px, transparent 1px);
  background-size: 28px 28px;
  border-top: 1px solid rgba(158, 222, 255, .22);
  border-bottom: 1px solid rgba(158, 222, 255, .22);
}

.stats .stat-item {
  min-width: 0;
  min-height: 132px;
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) 48px;
  align-items: center;
  column-gap: 14px;
  text-align: left;
  border-right: 1px solid rgba(158, 222, 255, .15);
}

.stats .stat-item:last-child { border-right: 0; }

.stat-ring {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border: 3px solid #c8efff;
  border-radius: 50%;
  background: rgba(25, 58, 91, .66);
  box-shadow:
    0 0 0 7px rgba(84, 187, 238, .10),
    0 0 22px rgba(116, 211, 255, .72),
    inset 0 0 16px rgba(120, 211, 255, .30);
}

.stats .stat-ring strong {
  font-size: 16px;
  line-height: 1;
  color: #d9f4ff;
}

.stat-copy {
  min-width: 0;
  display: grid;
  gap: 7px;
}

.stats .stat-copy strong {
  font-size: 27px;
  line-height: 1;
  color: #fff;
}

.stats .stat-copy span {
  margin: 0;
  font-size: 10px;
  line-height: 1.25;
  color: #d3deec;
  white-space: normal;
}

.stat-icon {
  width: 45px;
  height: 45px;
  color: #6da7ce;
  stroke-width: 1.25;
  filter: drop-shadow(0 0 8px rgba(105, 184, 232, .28));
}

.certificate-showcase {
  padding: 28px 32px 32px;
  border: 1px solid #dbe6f2;
  border-radius: 8px;
  background: #f7faff;
}

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

.certificate-heading > div > span {
  display: block;
  margin-bottom: 5px;
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.certificate-heading h2 {
  margin: 0 0 7px;
  font-size: 24px;
}

.certificate-heading p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.certificate-heading > a {
  min-height: 40px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #c7d7e9;
  border-radius: 6px;
  background: #fff;
  color: var(--primary-dark);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.certificate-heading > a svg { width: 16px; }

.certificate-showcase .cert-grid {
  display: grid;
  gap: 14px;
}

.certificate-card {
  min-width: 0;
  min-height: 166px;
  padding: 18px 14px 14px;
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center;
  border: 1px solid #d8e3ef;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(20, 54, 92, .06);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.certificate-card:hover {
  transform: translateY(-3px);
  border-color: #9fbcdc;
  box-shadow: 0 14px 30px rgba(20, 54, 92, .11);
}

.certificate-symbol {
  width: 48px;
  height: 48px;
  margin-bottom: 10px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eaf3fd;
  color: var(--primary);
}

.certificate-symbol svg { width: 25px; height: 25px; }
.certificate-card > strong { font-size: 16px; color: var(--primary-dark); }
.certificate-card > small { min-height: 32px; margin-top: 4px; color: #667892; font-size: 10px; }

.certificate-status {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #247251;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.certificate-status svg { width: 13px; height: 13px; }

.certificate-card .certificate-symbol {
  min-height: 48px;
  border: 0;
}

.certificate-card .certificate-status {
  min-height: 0;
  border: 0;
  background: transparent;
}

@media (min-width: 901px) {
  .stats,
  .stats .stat-item { min-height: 132px; }

  .media-area #sertifikalar.certificate-showcase {
    width: 100%;
    height: auto;
    padding: 28px 32px 32px;
  }

  .certificate-showcase .cert-grid {
    max-width: none;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin: 0;
  }

  .media-area #sertifikalar.certificate-showcase .cert-grid {
    max-width: none;
  }
}

@media (max-width: 900px) {
  .stats .stat-item {
    min-height: 118px;
    grid-template-columns: 72px minmax(0, 1fr) 42px;
    padding: 16px 20px;
  }

  .stat-ring { width: 66px; height: 66px; }
  .certificate-showcase { padding: 24px 18px; }
  .certificate-heading { align-items: flex-start; flex-direction: column; }
  .certificate-showcase .cert-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  .stats .stat-item { grid-template-columns: 68px minmax(0, 1fr) 38px; }
  .stats .stat-copy strong { font-size: 23px; }
  .certificate-showcase .cert-grid { grid-template-columns: 1fr; }
}

/* Balanced responsive shell, refreshed logo and restored corporate counters */
@media (min-width: 1181px) {
  .topbar,
  .navbar {
    width: min(1360px, calc(100% - 32px));
    max-width: 1360px;
  }

  main,
  .footer {
    width: min(1280px, calc(100% - 40px));
    max-width: 1280px;
  }

  .brand { min-width: 195px; }
  .brand-logo { width: 195px; height: 54px; object-fit: contain; }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .topbar { display: none; }

  .navbar,
  main,
  .footer {
    width: calc(100% - 32px);
    max-width: none;
  }

  .navbar {
    position: relative;
    min-height: 76px;
    gap: 10px;
  }

  .brand { min-width: 174px; }
  .brand-logo { width: 174px; height: 48px; object-fit: contain; }

  .menu-toggle {
    margin-left: auto;
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    z-index: 45;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px; font-size: 12px; }
  .language-switcher { margin-left: 0; }
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: visible;
  background-color: #0758ad;
  background-image: none;
  border-top: 0;
  border-bottom: 0;
}

.stats > div {
  min-height: 108px;
  padding: 18px 14px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.24);
}

.stats > div:last-child { border-right: 0; }

.stats > div > strong {
  font-size: 34px;
  line-height: 1;
  color: #fff;
}

.stats > div > span {
  margin: 0;
  color: rgba(255,255,255,.92);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-logo {
  width: 190px;
  height: 53px;
  object-fit: contain;
}

@media (max-width: 900px) {
  .navbar { gap: 8px; }
  .brand { min-width: 150px; }
  .brand-logo { width: 150px; height: 42px; object-fit: contain; }
  .language-switcher { margin-left: 0; }
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats > div:nth-child(2) { border-right: 0; }
  .stats > div { min-height: 98px; }
}

@media (max-width: 560px) {
  .brand { min-width: 132px; }
  .brand-logo { width: 132px; height: 37px; }
  .stats { grid-template-columns: 1fr; }
  .stats > div { min-height: 86px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.2); }
  .stats > div:last-child { border-bottom: 0; }
  .stats > div > strong { font-size: 29px; }
}

/* Approved corporate factory, strengths and statistics concept */
.why-eyebrow {
  display: block;
  width: max-content;
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.why-eyebrow::after {
  content: "";
  display: block;
  width: 54px;
  height: 2px;
  margin-top: 8px;
  background: var(--primary);
}

@media (min-width: 901px) {
  .why {
    height: 320px;
    grid-template-columns: 43% 57%;
    background: #f5f8fc;
  }

  .why > img {
    width: 100%;
    height: 320px;
    min-height: 320px;
    object-fit: cover;
  }

  .why-content {
    padding: 32px 46px 28px;
  }

  .why-content h2 {
    margin-bottom: 18px;
    font-size: 31px;
    line-height: 1.1;
  }

  .why .feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid #dce6f1;
    border-left: 1px solid #dce6f1;
  }

  .why .feature-grid span {
    min-width: 0;
    min-height: 86px;
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-right: 1px solid #dce6f1;
    border-bottom: 1px solid #dce6f1;
    color: #102b52;
    font-size: 10px;
    line-height: 1.25;
    text-align: center;
  }

  .why .feature-grid svg {
    width: 34px;
    height: 34px;
    color: var(--primary);
    stroke-width: 1.65;
  }
}

.stats {
  position: relative;
  background-color: #06294f;
  background-image:
    linear-gradient(rgba(104, 177, 221, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(104, 177, 221, .07) 1px, transparent 1px);
  background-size: 32px 32px;
  border-top: 1px solid rgba(158, 222, 255, .18);
  border-bottom: 1px solid rgba(158, 222, 255, .18);
}

.stats > div {
  min-height: 150px;
  padding: 20px 14px;
  gap: 8px;
  border-right-color: rgba(182, 224, 250, .26);
}

.stats > div > svg {
  width: 38px;
  height: 38px;
  color: #a6d9f5;
  stroke-width: 1.35;
}

.stats > div > strong {
  font-size: 38px;
}

.stats > div > span {
  color: #e5f0fa;
  font-size: 11px;
}

@media (max-width: 900px) {
  .why {
    background: #f5f8fc;
  }

  .why > img {
    width: 100%;
    height: 260px;
    min-height: 260px;
    object-fit: cover;
  }

  .why-content {
    padding: 28px 20px 30px;
  }

  .why-content h2 {
    margin-bottom: 18px;
    font-size: 27px;
  }

  .why .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid #dce6f1;
    border-left: 1px solid #dce6f1;
  }

  .why .feature-grid span {
    min-height: 104px;
    padding: 13px 9px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-right: 1px solid #dce6f1;
    border-bottom: 1px solid #dce6f1;
    font-size: 11px;
    text-align: center;
  }

  .why .feature-grid svg { width: 31px; height: 31px; }
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats > div { min-height: 124px; }
}

@media (max-width: 560px) {
  .why > img { height: 220px; min-height: 220px; }
  .why-content { padding: 24px 16px 26px; }
  .why-content h2 { font-size: 24px; }
  .why .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .why .feature-grid span { min-height: 112px; font-size: 10px; }
  .stats { grid-template-columns: 1fr; }
  .stats > div { min-height: 112px; }
  .stats > div > svg { width: 32px; height: 32px; }
  .stats > div > strong { font-size: 32px; }
}

/* Requested 200px wider desktop shell */
@media (min-width: 1181px) {
  .topbar,
  .navbar {
    width: min(1560px, calc(100% - 32px));
    max-width: 1560px;
  }

  main,
  .footer {
    width: min(1480px, calc(100% - 40px));
    max-width: 1480px;
  }
}

/* Additional requested 150px desktop width */
@media (min-width: 1181px) {
  .topbar,
  .navbar {
    width: min(1710px, calc(100% - 32px));
    max-width: 1710px;
  }

  main,
  .footer {
    width: min(1630px, calc(100% - 40px));
    max-width: 1630px;
  }
}

/* Reference-matched news and technical support band */
.news h2 {
  display: flex;
  align-items: center;
  gap: 8px;
}

.news h2 > svg {
  width: 20px;
  height: 20px;
  color: #6f91b5;
  stroke-width: 1.5;
}

.news-grid a > time {
  display: block;
  margin: 0 0 5px;
  color: #79889c;
  font-size: 9px;
}

.news-grid span > svg {
  width: 11px;
  height: 11px;
}

@media (min-width: 901px) {
  .news-support {
    grid-template-columns: 55% 45%;
    gap: 14px;
    padding: 18px 24px 24px;
    align-items: start;
  }

  .news h2 {
    margin-bottom: 12px;
    font-size: 20px;
  }

  .news-grid {
    gap: 10px;
  }

  .news-grid a {
    height: 158px;
    min-height: 158px;
    padding: 8px 10px 10px;
    display: flex;
    justify-content: flex-start;
    border-color: #d8e3ef;
    background: #fff;
  }

  .news-grid a > img {
    width: calc(100% + 20px);
    height: 54px;
    margin: -8px -10px 5px;
    object-fit: cover;
  }

  .news-grid span {
    width: max-content;
    margin: 0 0 5px;
    padding: 3px 6px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 8px;
  }

  .news-grid strong {
    font-size: 10px;
    line-height: 1.25;
  }

  .news-grid small {
    margin-top: auto;
    color: #8492a5;
    font-size: 8px;
  }

  .support {
    height: 190px;
    min-height: 190px;
    padding: 18px 24px;
    border-radius: 7px;
    background:
      linear-gradient(90deg, #064e9c 0%, rgba(4,80,158,.96) 64%, rgba(5,71,139,.42) 100%),
      url("../img/reference/support-agent.jpg") right center / auto 100% no-repeat;
  }

  .support h2 {
    margin-bottom: 6px;
    font-size: 20px;
  }

  .support p {
    margin: 0;
    font-size: 10px;
  }

  .support-icons {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    margin: 13px 0 12px;
  }

  .support-icons span {
    gap: 4px;
    font-size: 8px;
  }

  .support-icons svg {
    width: 27px;
    height: 27px;
  }

  .support .btn {
    min-height: 32px;
    padding: 0 16px;
    border-color: rgba(255,255,255,.88);
    border-radius: 999px;
    background: transparent;
    color: #fff;
    font-size: 9px;
  }
}

@media (max-width: 900px) {
  .news-support {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 16px;
  }

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

  .news-grid a {
    min-height: 190px;
  }

  .support {
    min-height: 250px;
    padding: 24px 20px;
  }
}

/* Exact supplied technical support panel on desktop */
@media (min-width: 901px) {
  .news-support .support {
    position: relative;
    height: auto;
    min-height: 0;
    padding: 0;
    aspect-ratio: 435 / 166;
    overflow: hidden;
    border-radius: 7px;
    background: #0755a5 url("../img/reference/support-panel-exact.png") center / 100% 100% no-repeat;
  }

  .news-support .support > h2,
  .news-support .support > p,
  .news-support .support > .support-icons {
    opacity: 0;
    pointer-events: none;
  }

  .news-support .support > .btn {
    position: absolute;
    left: 3.5%;
    bottom: 7%;
    width: 35%;
    height: 24%;
    min-height: 0;
    padding: 0;
    opacity: 0;
  }

  .news-grid a {
    height: auto;
    min-height: 0;
    aspect-ratio: 1.37 / 1;
  }
}

/* Align header logo with the main content edge */
@media (min-width: 1181px) {
  .topbar,
  .navbar {
    width: min(1630px, calc(100% - 40px));
    max-width: 1630px;
  }
}

/* Corporate navigation and About page */
.nav-dropdown {
  position: relative;
  flex: 0 0 auto;
}

.nav-dropdown summary {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 17px 0;
  color: var(--ink);
  font: inherit;
  font-weight: 650;
  text-transform: uppercase;
  white-space: nowrap;
  list-style: none;
  cursor: pointer;
}

.nav-dropdown summary::-webkit-details-marker { display: none; }
.nav-dropdown summary svg { width: 14px; height: 14px; transition: transform .2s ease; }
.nav-dropdown[open] summary svg { transform: rotate(180deg); }
.nav-dropdown[open] summary,
.nav-dropdown.is-current summary { color: var(--primary); }

.nav-submenu {
  position: absolute;
  z-index: 80;
  top: calc(100% + 5px);
  left: -18px;
  display: grid;
  width: 225px;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(4, 35, 71, .16);
}

.nav-links .nav-submenu a {
  padding: 11px 12px;
  border-radius: 5px;
  color: #20364f;
  font-size: 12px;
  line-height: 1.25;
  text-transform: none;
}

.nav-links .nav-submenu a::after { display: none; }
.nav-links .nav-submenu a:hover,
.nav-links .nav-submenu a.is-current { color: var(--primary); background: #eef5fc; }

.home-about {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
  padding: clamp(30px, 4vw, 58px) clamp(22px, 4vw, 70px);
  background: #fff;
  border-top: 1px solid var(--line);
}

.home-about h2 {
  max-width: 680px;
  margin: 8px 0 0;
  color: #052a55;
  font-size: clamp(26px, 2.5vw, 40px);
  line-height: 1.12;
}

.home-about p { max-width: 720px; margin: 0 0 18px; color: var(--muted); font-size: 16px; line-height: 1.75; }
.home-about a { display: inline-flex; align-items: center; gap: 8px; color: var(--primary); font-weight: 750; }
.home-about a svg { width: 17px; }

.about-hero { background: linear-gradient(110deg, #f8fbff, #eaf4ff); }
.about-intro { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 76px); align-items: center; }
.about-intro-image { position: relative; min-height: 420px; overflow: hidden; }
.about-intro-image > img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; }
.about-image-note { position: absolute; right: 0; bottom: 0; display: grid; min-width: 210px; padding: 22px 26px; color: #fff; background: var(--primary); }
.about-image-note strong { font-size: 32px; line-height: 1; }
.about-image-note span { margin-top: 6px; font-size: 12px; font-weight: 650; }
.about-intro-copy h2,
.section-heading-left h2,
.quality-policy h2,
.career-strip h2 { margin: 8px 0 18px; color: #052a55; font-size: clamp(27px, 3vw, 42px); line-height: 1.14; }
.about-intro-copy p { margin: 0 0 15px; color: #4c6178; font-size: 15px; line-height: 1.8; }
.about-intro-copy p a { color: var(--primary); }
.about-intro-copy .btn { margin-top: 8px; }

.about-expertise { background: #f5f8fc; }
.section-heading-left { max-width: 850px; margin-bottom: 28px; }
.section-heading-left p { color: var(--muted); line-height: 1.7; }
.expertise-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid #d8e4f0; border-bottom: 1px solid #d8e4f0; }
.expertise-grid article { padding: 30px 26px; border-right: 1px solid #d8e4f0; }
.expertise-grid article:last-child { border-right: 0; }
.expertise-grid svg { width: 32px; height: 32px; color: var(--primary); stroke-width: 1.6; }
.expertise-grid h3 { margin: 18px 0 10px; color: #082f5d; font-size: 17px; line-height: 1.35; }
.expertise-grid p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }

.corporate-principles { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; padding-top: 0; padding-bottom: 0; background: #c9d9e9; }
.corporate-principles article { position: relative; min-height: 260px; padding: 46px clamp(28px, 4vw, 64px); background: #fff; }
.corporate-principles article > span { position: absolute; top: 25px; right: 30px; color: #dce7f2; font-size: 52px; font-weight: 800; }
.corporate-principles svg { width: 34px; height: 34px; color: var(--primary); }
.corporate-principles h2 { margin: 20px 0 10px; color: #052a55; }
.corporate-principles p { max-width: 600px; margin: 0; color: var(--muted); line-height: 1.75; }

.quality-policy { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, .8fr); gap: clamp(35px, 6vw, 90px); align-items: center; background: #062b54; color: #fff; }
.quality-policy h2 { color: #fff; }
.quality-policy p { margin: 0; color: #cbdbea; line-height: 1.8; }
.quality-policy ul { display: grid; gap: 2px; margin: 0; padding: 0; list-style: none; }
.quality-policy li { display: flex; align-items: center; gap: 13px; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.quality-policy li svg { flex: 0 0 auto; width: 21px; color: #75c9ff; }

.career-strip { display: flex; align-items: center; justify-content: space-between; gap: 30px; background: #0871c7; color: #fff; }
.career-strip h2 { margin-bottom: 10px; color: #fff; }
.career-strip p { margin: 0; color: #e2f2ff; }
.career-strip .eyebrow { color: #bce5ff; }
.career-strip .btn { flex: 0 0 auto; }

@media (max-width: 1180px) {
  .nav-dropdown { width: 100%; }
  .nav-dropdown summary { justify-content: space-between; width: 100%; padding: 13px 0; }
  .nav-submenu { position: static; width: 100%; margin: 0 0 7px; padding: 3px 0 3px 12px; border: 0; border-left: 2px solid var(--primary); border-radius: 0; box-shadow: none; }
  .nav-links .nav-submenu a { padding: 10px 12px; }
  .expertise-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .expertise-grid article:nth-child(2) { border-right: 0; }
  .expertise-grid article:nth-child(-n+2) { border-bottom: 1px solid #d8e4f0; }
}

@media (max-width: 760px) {
  .home-about,
  .about-intro,
  .quality-policy { grid-template-columns: 1fr; }
  .home-about { gap: 16px; }
  .about-intro-image,
  .about-intro-image > img { min-height: 280px; }
  .about-image-note { min-width: 175px; padding: 17px 20px; }
  .expertise-grid,
  .corporate-principles { grid-template-columns: 1fr; }
  .expertise-grid article { border-right: 0; border-bottom: 1px solid #d8e4f0; }
  .expertise-grid article:last-child { border-bottom: 0; }
  .quality-policy { gap: 24px; }
  .career-strip { display: grid; }
  .career-strip .btn { justify-self: start; }
}

/* Standalone corporate pages */
.corporate-page-hero p { max-width: 800px; }
.corporate-principles-page { margin-top: clamp(30px, 4vw, 58px); margin-bottom: clamp(30px, 4vw, 58px); }
.corporate-values { background: #f5f8fc; }
.value-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid #d8e4f0; border-bottom: 1px solid #d8e4f0; }
.value-grid article { padding: 30px; border-right: 1px solid #d8e4f0; }
.value-grid article:last-child { border-right: 0; }
.value-grid svg { width: 31px; height: 31px; color: var(--primary); stroke-width: 1.7; }
.value-grid h3 { margin: 17px 0 9px; color: #082f5d; font-size: 18px; }
.value-grid p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.corporate-cta,
.hr-application { display: flex; align-items: center; justify-content: space-between; gap: 35px; color: #fff; background: #0871c7; }
.corporate-cta h2,
.hr-application h2 { max-width: 900px; margin: 8px 0 0; color: #fff; font-size: clamp(25px, 3vw, 40px); line-height: 1.15; }
.corporate-cta .eyebrow,
.hr-application .eyebrow { color: #c4e8ff; }
.corporate-cta .btn,
.hr-application .btn { flex: 0 0 auto; }
.quality-policy-page { margin: clamp(30px, 4vw, 58px) 0 0; }
.hr-intro { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(32px, 5vw, 78px); align-items: center; }
.hr-intro h2 { margin: 8px 0 18px; color: #052a55; font-size: clamp(28px, 3vw, 43px); line-height: 1.14; }
.hr-intro p { color: var(--muted); line-height: 1.8; }
.hr-visual { min-height: 390px; overflow: hidden; }
.hr-visual img { width: 100%; height: 100%; min-height: 390px; object-fit: cover; }
.hr-application p { max-width: 790px; margin: 11px 0 0; color: #e2f2ff; line-height: 1.7; }

@media (max-width: 760px) {
  .value-grid,
  .hr-intro { grid-template-columns: 1fr; }
  .value-grid article { border-right: 0; border-bottom: 1px solid #d8e4f0; }
  .value-grid article:last-child { border-bottom: 0; }
  .corporate-cta,
  .hr-application { display: grid; }
  .corporate-cta .btn,
  .hr-application .btn { justify-self: start; }
  .hr-visual,
  .hr-visual img { min-height: 280px; }
}

/* Managed page templates */
.cms-section { padding:64px clamp(20px,5vw,76px); border-bottom:1px solid var(--line); background:#fff; }
.cms-section-inner { width:100%; max-width:1280px; margin:0 auto; }
.cms-section h2 { margin:0 0 14px; color:#06234b; font-size:36px; line-height:1.15; }
.cms-lead { max-width:820px; margin:0 0 30px; color:#58708c; font-size:18px; line-height:1.7; }
.cms-rich-section .rich-content { max-width:900px; color:#314b68; font-size:16px; line-height:1.85; }
.cms-image-text .cms-section-inner { display:grid; grid-template-columns:minmax(0,1fr) minmax(0,1fr); align-items:center; gap:clamp(36px,6vw,86px); }
.cms-image-text.is-reverse figure { order:2; }
.cms-image-text figure { margin:0; min-height:360px; aspect-ratio:4/3; overflow:hidden; border-radius:6px; background:#edf3f9; }
.cms-image-text figure img { width:100%; height:100%; object-fit:cover; display:block; }
.cms-image-text .rich-content { color:#415b76; font-size:16px; line-height:1.8; }
.cms-image-text .btn { margin-top:20px; }
.cms-features { background:#f7fafe; }
.cms-feature-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:1px; margin-top:30px; border:1px solid #dce7f2; background:#dce7f2; }
.cms-feature-grid article { display:flex; gap:16px; min-height:148px; padding:26px; background:#fff; }
.cms-feature-grid article > svg { flex:0 0 auto; width:30px; height:30px; color:var(--primary); }
.cms-feature-grid h3 { margin:0 0 8px; color:#082b59; font-size:17px; }
.cms-feature-grid p { margin:0; color:#61758c; line-height:1.6; }
.cms-stats { color:#fff; background:#07264b; }
.cms-stats h2 { color:#fff; }
.cms-stat-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); }
.cms-stat-grid > div { display:grid; grid-template-columns:auto 1fr; grid-template-rows:auto auto; gap:2px 14px; align-items:center; min-height:130px; padding:24px 30px; border-right:1px solid rgba(255,255,255,.16); }
.cms-stat-grid > div:last-child { border-right:0; }
.cms-stat-grid svg { grid-row:1/3; width:34px; height:34px; color:#65c9ee; }
.cms-stat-grid strong { font-size:32px; line-height:1; }
.cms-stat-grid span { color:#c6d8eb; font-size:13px; text-transform:uppercase; }
.cms-cta { color:#fff; background:#075eb5; }
.cms-cta .cms-section-inner { display:flex; align-items:center; justify-content:space-between; gap:30px; }
.cms-cta h2 { color:#fff; }
.cms-cta p { margin:0; color:#dcecff; font-size:17px; }
.cms-cta .btn { flex:0 0 auto; }
.cms-faq-list { max-width:960px; margin-top:24px; border-top:1px solid #dce6f0; }
.cms-faq-list details { border-bottom:1px solid #dce6f0; }
.cms-faq-list summary { display:flex; justify-content:space-between; align-items:center; gap:20px; padding:20px 4px; color:#0a315f; font-weight:700; cursor:pointer; list-style:none; }
.cms-faq-list summary::-webkit-details-marker { display:none; }
.cms-faq-list summary svg { width:20px; color:var(--primary); }
.cms-faq-list details[open] summary svg { transform:rotate(45deg); }
.cms-faq-list details p { margin:0; padding:0 34px 22px 4px; color:#5b7189; line-height:1.75; }
@media (max-width:900px){.cms-section{padding:42px 20px}.cms-image-text .cms-section-inner{grid-template-columns:1fr;gap:28px}.cms-image-text.is-reverse figure{order:0}.cms-image-text figure{min-height:260px}.cms-feature-grid{grid-template-columns:1fr}.cms-stat-grid{grid-template-columns:repeat(2,1fr)}.cms-stat-grid>div:nth-child(2){border-right:0}.cms-cta .cms-section-inner{align-items:flex-start;flex-direction:column}}
@media (max-width:520px){.cms-stat-grid{grid-template-columns:1fr}.cms-stat-grid>div{border-right:0;border-bottom:1px solid rgba(255,255,255,.16)}.cms-stat-grid>div:last-child{border-bottom:0}.cms-feature-grid article{min-height:0;padding:22px}.cms-section h2{font-size:28px}}

.cms-section.cms-width-normal .cms-section-inner { max-width:960px; }
.cms-section.cms-theme-soft { background:#f3f7fb; }
.cms-section.cms-theme-dark { color:#fff; background:#071f3d; }
.cms-section.cms-theme-brand { color:#fff; background:var(--primary); }
.cms-section.cms-theme-dark h2,.cms-section.cms-theme-dark h3,.cms-section.cms-theme-dark .cms-lead,.cms-section.cms-theme-dark .rich-content,.cms-section.cms-theme-brand h2,.cms-section.cms-theme-brand h3,.cms-section.cms-theme-brand .cms-lead,.cms-section.cms-theme-brand .rich-content { color:inherit; }
.cms-section.cms-theme-dark .eyebrow,.cms-section.cms-theme-brand .eyebrow { color:#9bd3ff; }
.cms-feature-grid,.cms-stat-grid { grid-template-columns:repeat(var(--cms-columns,3),minmax(0,1fr)); }
@media (max-width:900px){.cms-feature-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.cms-stat-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media (max-width:560px){.cms-feature-grid,.cms-stat-grid{grid-template-columns:1fr}}

/* Dynamic product detail */
.product-page { padding:0 0 42px; background:#fff; }
.product-page .product-detail { width:100%; margin:0; padding:22px 20px 42px; background:#fff; border:0; border-radius:0; box-shadow:none; }
.product-page .breadcrumb { margin-bottom:28px; font-size:13px; }
.product-page .breadcrumb a { color:#526b86; }
.product-page .breadcrumb strong { color:#24476c; }
.product-page .detail-grid { grid-template-columns:minmax(0,1.35fr) minmax(360px,1fr); gap:34px; }
.product-page .gallery-main { display:grid; place-items:center; width:100%; height:430px; padding:0; border:1px solid #d5e2ef; border-radius:7px; overflow:hidden; background:#f6f9fc; cursor:zoom-in; }
.product-page .gallery-main img { width:100%; height:100%; object-fit:cover; }
.product-image-empty { display:grid; place-items:center; width:100%; height:100%; color:#8ca3b8; }
.product-image-empty svg { width:54px; height:54px; }
.product-page .gallery-thumbs { grid-template-columns:repeat(3,minmax(0,1fr)); }
.product-page .gallery-thumbs button { height:90px; cursor:pointer; transition:border-color .15s,box-shadow .15s; }
.product-page .gallery-thumbs button.active { border-color:var(--primary); box-shadow:0 0 0 2px rgba(0,87,184,.12); }
.product-page .gallery-thumbs img { width:100%; height:100%; object-fit:cover; }
.product-page .product-summary { min-height:336px; padding:30px 28px; border-radius:7px; box-shadow:0 12px 34px rgba(11,45,91,.08); }
.product-page .product-summary .eyebrow { display:block; margin-bottom:14px; color:var(--primary); font-size:12px; font-weight:800; }
.product-page .product-summary h1 { margin:0 0 16px; font-size:clamp(28px,2.2vw,38px); line-height:1.12; }
.product-page .product-summary > p { margin:0; color:#173451; line-height:1.65; }
.product-page .summary-actions .btn { min-height:42px; padding:0 17px; border-radius:5px; font-size:12px; }
.product-page .spec-list { display:grid; gap:5px; margin:0; color:#60738a; font-size:14px; line-height:1.45; }
.product-page .tabs { margin-top:38px; border-radius:7px; }
.product-page .tab-list { scrollbar-width:thin; }
.product-page .tab-list button { min-height:52px; padding:0 18px; font-size:13px; }
.product-page .tab-panel { min-height:124px; padding:26px; }
.product-page .tab-panel h2:first-child,.product-page .tab-panel h3:first-child { margin-top:0; }
.product-documents { gap:10px; }
.product-documents.active { display:grid; }
.product-documents a { display:grid; grid-template-columns:auto 1fr auto; gap:14px; align-items:center; padding:15px; border:1px solid var(--line); border-radius:6px; }
.product-documents a > svg { width:22px; color:var(--primary); }
.product-documents span strong,.product-documents span small { display:block; }
.product-documents span small { margin-top:3px; color:var(--muted); }
.product-videos.active { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:16px; }
.product-videos video { width:100%; background:#061b35; border-radius:6px; }
.product-lightbox { width:min(94vw,1500px); max-width:none; padding:0; overflow:hidden; background:#071426; border:0; border-radius:7px; }
.product-lightbox::backdrop { background:rgba(2,12,25,.88); }
.product-lightbox > button { position:absolute; z-index:2; top:12px; right:12px; display:grid; place-items:center; width:42px; height:42px; color:#fff; background:rgba(2,15,30,.74); border:1px solid rgba(255,255,255,.3); border-radius:50%; cursor:pointer; }
.product-lightbox > img { width:100%; max-height:90vh; object-fit:contain; }
@media (max-width:1050px){.product-page .product-detail{padding:20px 18px 36px}.product-page .detail-grid{grid-template-columns:1fr}.product-page .gallery-main{height:min(58vw,520px)}.product-page .product-summary{min-height:0}}
@media (max-width:600px){.product-page{padding:12px 0 36px}.product-page .product-detail{width:calc(100% - 20px);padding:20px 14px 30px}.product-page .gallery-main{height:270px}.product-page .gallery-thumbs{gap:7px}.product-page .gallery-thumbs button{height:68px}.product-page .product-summary{padding:22px 18px}.product-page .summary-actions{align-items:stretch;flex-direction:column}.product-page .summary-actions .btn{justify-content:center}.product-page .tab-panel{padding:20px 16px}.product-videos.active{grid-template-columns:1fr}}
