:root {
  --navy: #073d6f;
  --navy-deep: #082f54;
  --navy-dark: #061f38;
  --blue: #2698d2;
  --blue-light: #79c9ee;
  --cyan-pale: #eaf6fc;
  --ink: #13283b;
  --muted: #66798b;
  --line: #dce6ee;
  --paper: #ffffff;
  --surface: #f4f8fb;
  --warning: #f0a312;
  --shadow: 0 28px 70px rgba(7, 45, 78, .12);
  --radius: 24px;
  --container: 1220px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  padding: 10px 16px;
  color: #fff;
  background: var(--navy);
  border-radius: 8px;
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(17, 65, 102, .09);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease;
}

.site-header.is-scrolled { box-shadow: 0 12px 35px rgba(7, 47, 84, .1); }

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.brand { flex: 0 0 auto; }
.brand img { width: 194px; height: auto; }

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 14px;
  font-weight: 700;
  color: #294359;
}

.main-nav a { position: relative; padding-block: 30px; }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 21px;
  height: 2px;
  background: var(--blue);
  transition: right .2s ease;
}
.main-nav a:hover::after, .main-nav a:focus-visible::after { right: 0; }

.header-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  color: #fff;
  background: var(--navy);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.nav-toggle { display: none; }

.hero {
  position: relative;
  min-height: 730px;
  overflow: hidden;
  background:
    radial-gradient(circle at 77% 28%, rgba(60, 176, 224, .18), transparent 27%),
    radial-gradient(circle at 12% 82%, rgba(13, 86, 141, .09), transparent 31%),
    linear-gradient(145deg, #f8fbfd 0%, #eef6fa 60%, #f9fcfd 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -160px;
  bottom: -260px;
  width: 580px;
  height: 580px;
  border: 86px solid rgba(38, 152, 210, .055);
  border-radius: 50%;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  opacity: .26;
  background-image:
    linear-gradient(rgba(7, 61, 111, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 61, 111, .06) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,.75), transparent 72%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  align-items: center;
  gap: 64px;
  min-height: 730px;
  padding-block: 70px 78px;
}

.eyebrow {
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  line-height: 1.25;
  text-transform: uppercase;
}

.eyebrow > span { width: 34px; height: 3px; background: var(--blue); border-radius: 4px; }

.hero h1, .section h2, .quality h2, .contact-cta h2 {
  margin: 0;
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1.07;
}

.hero h1 { max-width: 690px; font-size: clamp(42px, 5.1vw, 70px); }
.hero h1 em, .section h2 em, .quality h2 em { color: var(--blue); font-style: normal; }

.hero-lead {
  max-width: 680px;
  margin: 26px 0 8px;
  color: #4f6578;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.7;
}

.hero-translation {
  margin: 0;
  color: #728598;
  font-size: 13px;
  font-weight: 650;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 31px; }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.2;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--navy); box-shadow: 0 12px 26px rgba(7, 61, 111, .19); }
.button-primary:hover { background: #0b4d86; box-shadow: 0 15px 30px rgba(7, 61, 111, .24); }
.button-ghost { color: var(--navy); background: rgba(255,255,255,.7); border-color: #c9dbe7; }
.button-ghost:hover { background: #fff; }
.button-white { color: var(--navy); background: #fff; box-shadow: 0 12px 28px rgba(0,0,0,.13); }
.button-small { min-height: 45px; padding-inline: 18px; font-size: 13px; }

.hero-metrics {
  margin: 43px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.hero-metrics > div {
  min-width: 138px;
  padding: 0 27px;
  border-left: 1px solid #cbdbe5;
}

.hero-metrics > div:first-child { padding-left: 0; border-left: 0; }
.hero-metrics dt { color: var(--navy); font-size: 27px; font-weight: 900; line-height: 1.15; }
.hero-metrics dd { margin: 4px 0 0; color: var(--muted); font-size: 12px; font-weight: 650; }

.hero-products { position: relative; min-height: 565px; }

.hero-orbit {
  position: absolute;
  inset: 45px 32px;
  border: 1px dashed rgba(21, 118, 173, .22);
  border-radius: 50%;
  transform: rotate(-13deg);
}

.hero-orbit::before, .hero-orbit::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--blue);
  border: 6px solid #d9f0fb;
  border-radius: 50%;
  box-sizing: content-box;
}
.hero-orbit::before { left: 8%; top: 20%; }
.hero-orbit::after { right: 9%; bottom: 18%; }

.hero-product {
  position: absolute;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(24, 97, 142, .12);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.hero-product img { width: 100%; height: 100%; object-fit: contain; }
.hero-product-label {
  position: absolute;
  z-index: 2;
  left: 15px;
  bottom: 14px;
  padding: 6px 10px;
  color: #fff;
  background: rgba(6, 43, 75, .88);
  border-radius: 7px;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .04em;
}

.hero-product-main { left: 5%; top: 18%; width: 65%; aspect-ratio: 1; transform: rotate(-3deg); }
.hero-product-top { right: 0; top: 2%; width: 40%; aspect-ratio: 1; transform: rotate(4deg); }
.hero-product-bottom { right: -1%; bottom: 3%; width: 42%; aspect-ratio: 1; transform: rotate(2deg); }
.hero-badge {
  position: absolute;
  z-index: 4;
  top: 40%;
  right: 3%;
  width: 94px;
  height: 94px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--blue);
  border: 8px solid #fff;
  border-radius: 50%;
  box-shadow: 0 16px 35px rgba(14, 105, 157, .3);
  transform: rotate(8deg);
}
.hero-badge strong { font-size: 20px; line-height: 1; letter-spacing: .08em; }
.hero-badge span { margin-top: 4px; font-size: 8px; font-weight: 800; text-transform: uppercase; }

.capability-bar { color: #fff; background: var(--navy); }
.capability-list {
  min-height: 69px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.capability-list i { flex: 1 1 40px; max-width: 92px; height: 1px; background: rgba(255,255,255,.23); }

.section { padding-block: 112px; }
.section-heading { margin-bottom: 54px; }
.section-heading h2, .quality h2, .contact-cta h2 { font-size: clamp(34px, 4vw, 53px); }
.section-heading > p:last-child { color: var(--muted); }
.split-heading { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: end; }
.split-heading > p { margin: 0 0 4px; font-size: 17px; line-height: 1.75; }

.production { background: #fff; }
.cycle-grid {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.cycle-grid li {
  position: relative;
  min-height: 292px;
  padding: 31px 31px 27px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: color .25s ease, background-color .25s ease, transform .25s ease;
}

.cycle-grid li:hover { z-index: 2; color: #fff; background: var(--navy); transform: translateY(-5px); }
.cycle-number { position: absolute; right: 22px; top: 16px; color: #dce7ef; font-size: 48px; font-weight: 900; line-height: 1; }
.cycle-grid li:hover .cycle-number { color: rgba(255,255,255,.13); }
.cycle-icon {
  width: 49px;
  height: 49px;
  display: grid;
  place-items: center;
  margin-bottom: 25px;
  color: var(--navy);
  background: var(--cyan-pale);
  border-radius: 13px;
  font-size: 26px;
  font-weight: 900;
}
.cycle-grid h3 { margin: 0 0 10px; font-size: 21px; line-height: 1.2; }
.cycle-grid p { margin: 0; color: var(--muted); font-size: 14px; }
.cycle-grid small { display: block; margin-top: 16px; color: var(--blue); font-size: 10px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.cycle-grid li:hover p { color: #c9dceb; }
.cycle-grid li:hover small { color: var(--blue-light); }

.products-section { background: var(--surface); }
.products-heading { max-width: 820px; }
.products-heading > p:last-child { max-width: 790px; margin: 20px 0 0; font-size: 17px; }
.product-grid { display: grid; gap: 32px; }

.product-card {
  display: grid;
  grid-template-columns: minmax(390px, .9fr) 1.1fr;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e0e9ef;
  border-radius: var(--radius);
  box-shadow: 0 18px 55px rgba(9, 55, 91, .07);
}

.product-gallery { padding: 26px; background: linear-gradient(145deg, #eaf3f7, #f8fbfd); border-right: 1px solid var(--line); }
.product-image-wrap { position: relative; aspect-ratio: 1.25; overflow: hidden; background: #fff; border-radius: 18px; }
.product-image-wrap .gallery-main { width: 100%; height: 100%; padding: 12px; object-fit: contain; transition: opacity .18s ease, transform .35s ease; }
.product-image-wrap:hover .gallery-main { transform: scale(1.025); }
.product-index { position: absolute; z-index: 2; left: 17px; top: 14px; color: rgba(7, 61, 111, .18); font-size: 44px; font-weight: 900; line-height: 1; }

.gallery-thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 13px; }
.gallery-thumbs button {
  aspect-ratio: 1.4;
  overflow: hidden;
  padding: 3px;
  background: #fff;
  border: 2px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  transition: border-color .2s ease, transform .2s ease;
}
.gallery-thumbs button:hover { transform: translateY(-2px); }
.gallery-thumbs button.is-active { border-color: var(--blue); }
.gallery-thumbs img { width: 100%; height: 100%; object-fit: contain; border-radius: 7px; }

.product-content { padding: 42px 44px 38px; }
.product-code { display: inline-flex; padding: 6px 10px; color: var(--navy); background: var(--cyan-pale); border-radius: 7px; font-size: 11px; font-weight: 900; letter-spacing: .08em; }
.product-content h3 { margin: 17px 0 4px; font-size: clamp(28px, 3vw, 38px); letter-spacing: -.035em; line-height: 1.15; }
.product-subtitle { margin: 0 0 24px; color: var(--muted); font-size: 16px; }

.product-specs { margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); border-block: 1px solid var(--line); }
.product-specs div { padding: 15px 14px 16px; border-left: 1px solid var(--line); }
.product-specs div:first-child { padding-left: 0; border-left: 0; }
.product-specs dt { color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.product-specs dd { margin: 5px 0 0; color: var(--navy); font-size: 13px; font-weight: 850; line-height: 1.35; }
.fitment { margin: 22px 0 0; color: #50677a; font-size: 14px; }
.fitment strong { color: var(--ink); }

.test-note, .compatibility-warning { margin-top: 15px; padding: 11px 13px; border-radius: 9px; font-size: 12px; line-height: 1.5; }
.test-note { color: #175879; background: #eaf7fc; border-left: 3px solid var(--blue); }
.compatibility-warning { color: #74520f; background: #fff7e4; border-left: 3px solid var(--warning); }
.product-actions { margin-top: 25px; display: flex; flex-wrap: wrap; align-items: center; gap: 21px; }
.text-link { color: var(--navy); font-size: 12px; font-weight: 850; }
.text-link span { color: var(--blue); font-size: 17px; }

.quality { position: relative; padding-block: 104px; overflow: hidden; color: #fff; background: var(--navy-dark); }
.quality::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 12%, rgba(38, 152, 210, .24), transparent 28%),
    linear-gradient(90deg, transparent 0 49.9%, rgba(255,255,255,.045) 50%, transparent 50.1%);
}
.quality-layout { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; gap: 96px; align-items: center; }
.eyebrow-light { color: #b7def1; }
.quality-copy > p:not(.eyebrow) { margin: 23px 0 31px; color: #bed0dd; font-size: 17px; }
.quality-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.15); }
.quality-list li { display: grid; grid-template-columns: 52px 1fr; gap: 18px; padding: 21px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.quality-list li > span { color: var(--blue-light); font-size: 13px; font-weight: 900; }
.quality-list strong { display: block; font-size: 17px; }
.quality-list p { margin: 3px 0 0; color: #adc4d4; font-size: 13px; }

.downloads { background: #fff; }
.download-list { border-top: 1px solid var(--line); }
.download-list > a {
  display: grid;
  grid-template-columns: 64px minmax(280px, 1fr) 170px 110px;
  align-items: center;
  gap: 22px;
  padding: 22px 10px;
  border-bottom: 1px solid var(--line);
  transition: background-color .2s ease, padding .2s ease;
}
.download-list > a:hover { padding-inline: 18px; background: var(--surface); }
.file-icon { width: 50px; height: 50px; display: grid; place-items: center; color: #fff; background: var(--navy); border-radius: 11px; font-size: 10px; font-weight: 900; letter-spacing: .08em; }
.file-name strong { display: block; color: var(--ink); font-size: 16px; }
.file-name small { display: block; margin-top: 2px; color: var(--muted); font-size: 12px; }
.file-meta { color: var(--muted); font-size: 12px; font-weight: 700; }
.file-action { justify-self: end; color: var(--navy); font-size: 13px; font-weight: 900; }
.file-action b { color: var(--blue); font-size: 18px; }

.contact-cta { padding-block: 68px; color: #fff; background: linear-gradient(110deg, var(--navy) 0%, #0b548c 100%); }
.contact-cta-inner { display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; align-items: center; }
.contact-cta h2 { max-width: 770px; font-size: clamp(31px, 4vw, 46px); }
.contact-cta-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.phone-link { color: #fff; font-size: 18px; font-weight: 850; }
.phone-link span { color: var(--blue-light); }

.site-footer { padding-top: 68px; color: #4f6476; background: #f1f6f9; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .8fr 1fr 1fr; gap: 60px; padding-bottom: 53px; }
.footer-brand img { width: 184px; mix-blend-mode: multiply; }
.footer-brand p { max-width: 340px; margin: 17px 0 0; font-size: 13px; }
.footer-grid h2 { margin: 6px 0 17px; color: var(--navy); font-size: 13px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.footer-grid > div:not(.footer-brand) a { display: block; width: fit-content; margin: 8px 0; font-size: 13px; font-weight: 700; }
.footer-grid a:hover { color: var(--blue); }
.footer-contact p { margin: 0 0 13px; font-size: 13px; }
.footer-bottom { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid #d5e1e8; font-size: 11px; }
.footer-bottom a { color: var(--navy); font-weight: 850; }
.footer-bottom a span { color: var(--blue); }

:focus-visible { outline: 3px solid rgba(38, 152, 210, .55); outline-offset: 3px; }

@media (max-width: 1120px) {
  .header-contact { display: none; }
  .main-nav { gap: 18px; }
  .hero-layout { grid-template-columns: 1.05fr .95fr; gap: 35px; }
  .hero-products { min-height: 500px; }
  .product-card { grid-template-columns: minmax(350px, .9fr) 1.1fr; }
  .product-content { padding: 35px 32px; }
  .product-specs { grid-template-columns: 1fr; }
  .product-specs div { padding: 10px 0; border-left: 0; border-top: 1px solid var(--line); }
  .product-specs div:first-child { border-top: 0; }
}

@media (max-width: 900px) {
  .container { width: min(calc(100% - 34px), var(--container)); }
  .header-inner { min-height: 74px; }
  .brand img { width: 164px; }
  .nav-toggle {
    width: 44px;
    height: 44px;
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    background: #eff6fa;
    border: 0;
    border-radius: 10px;
    cursor: pointer;
  }
  .nav-toggle span:not(.sr-only) { width: 21px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 17px 18px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 30px rgba(7, 47, 84, .12);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 13px 10px; border-bottom: 1px solid #e8eef2; }
  .main-nav a::after { display: none; }
  .hero-layout { grid-template-columns: 1fr; min-height: auto; padding-block: 70px 52px; }
  .hero-copy { max-width: 760px; }
  .hero-products { width: min(100%, 610px); min-height: 545px; margin-inline: auto; }
  .capability-list { overflow-x: auto; justify-content: flex-start; }
  .capability-list span { white-space: nowrap; }
  .capability-list i { min-width: 50px; }
  .section { padding-block: 86px; }
  .split-heading { grid-template-columns: 1fr; gap: 24px; }
  .cycle-grid { grid-template-columns: repeat(2, 1fr); }
  .product-card { grid-template-columns: 1fr; }
  .product-gallery { border-right: 0; border-bottom: 1px solid var(--line); }
  .quality-layout, .contact-cta-inner { grid-template-columns: 1fr; gap: 55px; }
  .download-list > a { grid-template-columns: 58px 1fr 95px; }
  .file-meta { display: none; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-contact { grid-column: 2 / 4; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 26px), var(--container)); }
  .hero { min-height: auto; }
  .hero-layout { padding-block: 54px 36px; gap: 18px; }
  .hero h1 { font-size: clamp(37px, 12vw, 52px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-metrics { gap: 17px 0; }
  .hero-metrics > div { min-width: 50%; padding-inline: 17px; }
  .hero-metrics > div:nth-child(3) { padding-left: 0; border-left: 0; }
  .hero-products { min-height: 390px; transform: scale(.96); }
  .hero-product-main { left: 1%; top: 19%; width: 64%; }
  .hero-product-top { right: 0; top: 3%; width: 41%; }
  .hero-product-bottom { right: 0; bottom: 3%; width: 43%; }
  .hero-badge { top: 39%; right: 1%; width: 75px; height: 75px; border-width: 6px; }
  .hero-badge strong { font-size: 16px; }
  .capability-list { min-height: 60px; }
  .section { padding-block: 69px; }
  .section-heading { margin-bottom: 36px; }
  .section-heading h2, .quality h2, .contact-cta h2 { font-size: 34px; }
  .cycle-grid { grid-template-columns: 1fr; }
  .cycle-grid li { min-height: 250px; }
  .product-grid { gap: 23px; }
  .product-card { border-radius: 18px; }
  .product-gallery { padding: 15px; }
  .product-image-wrap { aspect-ratio: 1.1; }
  .product-content { padding: 28px 22px 27px; }
  .product-content h3 { font-size: 29px; }
  .product-actions { align-items: stretch; flex-direction: column; gap: 13px; }
  .text-link { text-align: center; }
  .quality { padding-block: 72px; }
  .quality-layout { gap: 42px; }
  .download-list > a { grid-template-columns: 48px 1fr; gap: 14px; padding: 17px 5px; }
  .file-icon { width: 44px; height: 44px; }
  .file-action { grid-column: 2; justify-self: start; margin-top: -7px; }
  .contact-cta { padding-block: 58px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px 27px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-contact { grid-column: 1 / -1; }
  .footer-bottom { min-height: 90px; flex-direction: column; align-items: flex-start; justify-content: center; }
}

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


/* Языковой переключатель — dropdown (добавлено при интеграции раздела) */
.lang-switch{position:relative;margin-left:14px}
.lang-toggle{display:inline-flex;align-items:center;gap:7px;background:transparent;border:1px solid #d5dde8;border-radius:9px;padding:8px 12px;font:600 13px/1 inherit;color:#0a2340;cursor:pointer}
.lang-toggle:hover{border-color:#0b5cad;color:#0b5cad}
.lang-chev{width:7px;height:7px;border:solid currentColor;border-width:0 2px 2px 0;transform:rotate(45deg);margin-top:-3px;transition:transform .15s}
.lang-switch:hover .lang-chev,.lang-switch:focus-within .lang-chev{transform:rotate(225deg);margin-top:2px}
.lang-menu{position:absolute;right:0;top:calc(100% + 8px);min-width:158px;list-style:none;margin:0;padding:6px;background:#fff;border:1px solid #e2e8f0;border-radius:12px;box-shadow:0 16px 36px rgba(6,47,87,.18);opacity:0;visibility:hidden;transform:translateY(-6px);transition:opacity .15s,transform .15s,visibility .15s;z-index:50}
.lang-switch:hover .lang-menu,.lang-switch:focus-within .lang-menu{opacity:1;visibility:visible;transform:none}
.lang-menu a{display:block;padding:9px 12px;border-radius:8px;font-size:14px;font-weight:500;color:#0a2340;text-decoration:none}
.lang-menu a:hover{background:#eef4fb}
.lang-menu a.active{background:#0b5cad;color:#fff}
@media (max-width:900px){.lang-switch{margin:10px 0 0}.lang-menu{right:auto;left:0}}
