:root {
  --blue: #009fe9;
  --blue-dark: #007bb8;
  --ink: #111214;
  --muted: #5e646d;
  --line: rgba(17, 18, 20, 0.12);
  --soft: #f5f6f7;
  --white: #ffffff;
  --steel: #8ba2b3;
  --cyan: #76d4ff;
  --radius: 8px;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.16);
  --font-num: "Oswald", "Montserrat", sans-serif;
  --font: "Montserrat", "PingFang SC", "Noto Sans SC", "Microsoft YaHei", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  overflow-x: hidden;
  max-width: 100vw;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }
.honeypot { position: absolute; left: -9999px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: background 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--line);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.08);
}
.header-inner {
  width: min(1460px, calc(100% - 40px));
  min-height: 78px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
}
.brand-block {
  align-self: stretch;
  width: 124px;
  min-height: 96px;
  margin-bottom: -18px;
  display: grid;
  place-items: center;
  background: var(--blue);
  box-shadow: 0 18px 46px rgba(0, 159, 233, 0.34);
  position: relative;
  overflow: hidden;
  transition: background 260ms ease, box-shadow 260ms ease, min-height 260ms ease;
}
.brand-block::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--cyan), #fff, var(--cyan));
  opacity: 0.55;
}
.brand-logo { grid-area: 1 / 1; display: grid; place-items: center; padding: 12px; }
.brand-logo img { width: 96px; max-height: 78px; object-fit: contain; }
.brand-logo-blue { opacity: 0; }
.site-header.is-scrolled .brand-block {
  min-height: 82px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.1);
}
.site-header.is-scrolled .brand-logo-white { opacity: 0; }
.site-header.is-scrolled .brand-logo-blue { opacity: 1; }
.primary-nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 1.6vw, 25px);
}
.primary-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 800;
  padding: 29px 0;
  white-space: nowrap;
}
.site-header.is-scrolled .primary-nav a { color: var(--ink); }
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}
.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a.is-active::after { transform: scaleX(1); }
.header-actions {
  display: inline-flex;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}
.site-header.is-scrolled .header-actions {
  border-color: var(--line);
  background: rgba(245, 246, 247, 0.84);
}
.lang-btn {
  width: 38px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 900;
  font-size: 13px;
}
.site-header.is-scrolled .lang-btn { color: var(--ink); }
.lang-btn.is-active { background: var(--blue); color: #fff; }
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.12);
  place-items: center;
  cursor: pointer;
}
.nav-toggle span {
  grid-area: 1 / 1;
  width: 20px;
  height: 2px;
  background: var(--white);
  transition: transform 200ms ease;
}
.nav-toggle span:first-child { transform: translateY(-6px); }
.nav-toggle span:last-child { transform: translateY(6px); }
.site-header.is-scrolled .nav-toggle span { background: var(--ink); }
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(0) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(0) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  background: #090b0e;
}
.hero-video,
.inner-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}
.hero-video { animation: heroZoom 18s ease-in-out infinite alternate; }
.hero::before,
.inner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.48) 48%, rgba(0, 0, 0, 0.22) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.72));
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  animation: gridDrift 16s linear infinite;
}
.hero-scan {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(110deg, transparent 18%, rgba(255, 255, 255, 0.18) 48%, transparent 72%);
  width: 46%;
  transform: skewX(-16deg) translateX(-140%);
  animation: scanMove 7.5s ease-in-out infinite;
}
.hero-content {
  position: relative;
  z-index: 5;
  width: min(1400px, calc(100% - 40px));
  min-height: calc(100svh - 92px);
  margin: 0 auto;
  padding-top: 150px;
  padding-bottom: 60px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.45fr);
  align-items: center;
  gap: clamp(36px, 6vw, 80px);
}
.hero-copy { max-width: 880px; }
.eyebrow {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.96;
  letter-spacing: 0;
}
.hero-char { display: inline-block; opacity: 0; animation: heroCharIn 0.5s cubic-bezier(0.22, 0.61, 0.36, 1) forwards; }
.hero-lead {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 2vw, 22px);
  opacity: 0;
  transform: translateY(32px);
}
.hero-lead.animate-in { animation: heroLeadIn 0.85s cubic-bezier(0.22, 0.61, 0.36, 1) forwards; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.btn:hover, .btn:focus-visible { transform: translateY(-2px); }
.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(0, 159, 233, 0.28);
}
.btn-primary:hover, .btn-primary:focus-visible { background: var(--blue-dark); }
.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}
.glass {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.46);
  backdrop-filter: blur(22px) saturate(1.18);
  box-shadow: var(--shadow);
}
.hero-panel {
  color: var(--white);
  background: rgba(10, 14, 18, 0.44);
  border-color: rgba(255, 255, 255, 0.22);
  padding: 26px;
  align-self: end;
  position: relative;
  overflow: hidden;
}
.hero-panel::before { content: ""; position: absolute; inset: 0; border-top: 3px solid var(--blue); pointer-events: none; }
.panel-kicker, .panel-note { margin: 0; color: rgba(255, 255, 255, 0.7); font-size: 13px; }
.hero-panel h2 { margin: 10px 0 22px; font-size: 28px; line-height: 1.08; }
.readiness-meter { height: 6px; background: rgba(255, 255, 255, 0.15); overflow: hidden; }
.readiness-meter span { display: block; width: 82%; height: 100%; background: linear-gradient(90deg, var(--blue), var(--cyan)); animation: meterPulse 2.8s ease-in-out infinite; }
.chip-list { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0; padding: 0; }
.chip-list li { padding: 8px 10px; background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.16); font-size: 12px; font-weight: 800; }
.hero-metrics {
  position: relative;
  z-index: 5;
  width: min(1400px, calc(100% - 40px));
  margin: -58px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  border-top: 4px solid var(--blue);
  box-shadow: var(--shadow);
}
.hero-metrics div { min-height: 116px; padding: 24px; border-right: 1px solid var(--line); }
.hero-metrics div:last-child { border-right: 0; }
.hero-metrics strong,
.quality-stat h3,
.country-metrics strong,
.performance-card strong,
.index-stat strong {
  display: block;
  font-size: 38px;
  line-height: 1;
  font-family: var(--font-num);
  font-weight: 700;
}
.hero-metrics span { display: block; margin-top: 8px; color: var(--muted); font-weight: 700; }

.section-pad, .section { padding: clamp(78px, 10vw, 132px) 0; }
.section-head,
.intro-layout,
.product-grid,
.material-board,
.certificate-strip,
.feature-split,
.performance-cards,
.control-flow,
.download-list-home,
.news-grid,
.contact-band,
.listing-section > *,
.detail-layout,
.related-section .content-grid,
.about-overview,
.values-band .value-grid,
.about-matrix .matrix-grid,
.site-footer > * {
  width: min(1400px, calc(100% - 40px));
  margin-inline: auto;
}
.section-head { margin-bottom: 36px; }
.section-head-row { display: flex; align-items: end; justify-content: space-between; gap: 24px; }
.section-head h2 { max-width: 920px; margin: 0; font-size: clamp(32px, 5vw, 60px); line-height: 1; letter-spacing: 0; }
.text-link { color: var(--blue); font-weight: 900; display: inline-flex; align-items: center; gap: 8px; }
.text-link.on-dark { color: var(--cyan); }

.intro { background: linear-gradient(180deg, #fff 0%, #f5f6f7 100%); }
.intro-layout { display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr); gap: clamp(28px, 5vw, 68px); align-items: center; }
.intro-media { position: relative; overflow: hidden; }
.intro-media::after { content: ""; position: absolute; inset: auto 0 0; height: 5px; background: linear-gradient(90deg, var(--blue), var(--cyan)); }
.intro-media img { width: 100%; aspect-ratio: 16 / 8.2; object-fit: cover; transition: transform 700ms ease; }
.intro-media:hover img { transform: scale(1.04); }
.intro-text { font-size: 18px; color: #262a30; }
.intro-text p { margin: 0 0 20px; }
.source-strip { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.source-strip span { padding: 9px 11px; background: #e9edf0; color: #21262b; font-size: 12px; font-weight: 900; }

.products, .performance-home { background: var(--ink); color: var(--white); }
.products .section-head h2,
.performance-home .section-head h2 { color: var(--white); }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255, 255, 255, 0.16); }
.product-card { min-height: 440px; background: #181a1e; position: relative; overflow: hidden; display: flex; flex-direction: column; }
.product-card img { width: 100%; height: 220px; object-fit: cover; opacity: 0.82; transition: transform 650ms ease, opacity 650ms ease; }
.product-card:hover img { transform: scale(1.06); opacity: 1; }
.product-card div { padding: 24px; }
.card-index { color: var(--blue); font-weight: 900; margin: 0 0 34px; }
.product-card h3 { margin: 0 0 14px; font-size: 24px; line-height: 1.1; }
.product-card p:last-child { margin: 0; color: rgba(255, 255, 255, 0.72); }

.materials { background: linear-gradient(90deg, rgba(0, 159, 233, 0.06), transparent 34%), #fff; }
.material-board { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.material-board article { min-height: 230px; padding: clamp(24px, 4vw, 42px); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(245, 246, 247, 0.82)); transition: transform 220ms ease, box-shadow 220ms ease; }
.material-board article:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08); }
.material-board h3 { margin: 0 0 18px; font-size: 26px; }
.material-board p { margin: 0; color: var(--muted); }

.cert-home, .downloads-home { background: #fff; }
.certificate-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.certificate-mini { min-height: 260px; padding: 28px; border: 1px solid var(--line); background: linear-gradient(145deg, #fff, #f4f7f9); display: grid; align-content: space-between; position: relative; overflow: hidden; transition: transform 220ms ease, border-color 220ms ease; }
.certificate-mini::before { content: ""; position: absolute; inset: 0 0 auto; height: 5px; background: var(--blue); }
.certificate-mini:hover { transform: translateY(-5px); border-color: rgba(0,159,233,.42); }
.certificate-mini span { color: var(--blue); font-size: 12px; font-weight: 900; }
.certificate-mini strong { font-size: 24px; line-height: 1.1; }
.certificate-mini em { color: var(--muted); font-style: normal; }

.equipment-home { background: #eef1f3; }
.feature-split { display: grid; grid-template-columns: 1.1fr 0.8fr; align-items: center; gap: clamp(24px, 5vw, 68px); }
.feature-split figure { margin: 0; overflow: hidden; }
.feature-split img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.feature-copy { padding: clamp(26px, 4vw, 46px); color: var(--ink); }
.feature-copy h3 { margin: 0 0 16px; font-size: clamp(30px, 4vw, 46px); line-height: 1.05; }
.feature-copy p { color: #343941; }

.performance-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.performance-card { min-height: 320px; padding: 28px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(18px); display: grid; align-content: space-between; }
.performance-card span { color: var(--cyan); font-weight: 900; }
.performance-card strong { color: #fff; font-size: 48px; }
.performance-card h3 { margin: 0 0 10px; font-size: 22px; }
.performance-card p { margin: 0; color: rgba(255,255,255,.68); }

.quality {
  background: radial-gradient(circle at 30% 40%, #0d1a2d, #02070d);
  color: var(--white);
  padding: 0;
  min-height: 100vh;
  display: flex;
}
.quality-container { position: relative; width: 100%; min-height: 100vh; overflow: hidden; }
.quality-map-area { position: absolute; inset: 0; background: #02070d; }
.quality-map-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .9; filter: saturate(.9) brightness(.9); }
.quality-title-overlay { position: absolute; top: 9%; left: 5%; z-index: 10; max-width: 460px; }
.quality-title-overlay h2 { color: var(--white); font-size: clamp(28px, 3.5vw, 48px); line-height: 1.12; margin: 0 0 12px; }
.quality-title-overlay .accent { color: var(--blue); }
.quality-title-overlay p:not(.eyebrow) { color: rgba(255,255,255,.68); font-size: 15px; }
.quality-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  margin-left: -5px;
  margin-top: -5px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 14px var(--blue), 0 0 28px rgba(0,159,233,0.4);
  z-index: 5;
  animation: qualityDotBreathe 2s ease-in-out infinite;
}
.quality-dot span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  margin-left: -5px;
  margin-top: -5px;
  border-radius: 50%;
  border: 1.5px solid var(--blue);
  animation: qualityRipple 2.5s ease-out infinite;
  opacity: 0;
}
.quality-dot span:nth-child(2) { animation-delay: .5s; }
.quality-dot span:nth-child(3) { animation-delay: 1s; }
.quality-stats { position: absolute; bottom: 5%; left: 5%; display: flex; gap: clamp(16px, 3vw, 40px); z-index: 10; flex-wrap: wrap; }
.quality-stat h3 { font-size: 24px; color: var(--blue); margin: 0; }
.quality-stat span { font-size: 11px; color: rgba(255,255,255,.62); text-transform: uppercase; }

.control-home { background: #f3f5f6; }
.control-flow { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--line); }
.flow-node { min-height: 170px; padding: 24px; background: #fff; display: grid; align-content: space-between; }
.flow-node span { color: var(--blue); font-weight: 900; }
.flow-node strong { font-size: 20px; }
.download-list-home { display: grid; gap: 12px; }
.download-row { min-height: 86px; padding: 16px 20px; border: 1px solid var(--line); display: grid; grid-template-columns: 70px 1fr auto; gap: 18px; align-items: center; background: #fff; transition: transform 220ms ease, border-color 220ms ease; }
.download-row:hover { transform: translateY(-3px); border-color: var(--blue); }
.file-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  border-radius: 6px;
  box-shadow: 0 12px 28px rgba(0,159,233,.22);
}
.file-xlsx { background: #168556; }
.file-docx { background: #225fc7; }
.download-row em { color: var(--muted); font-style: normal; font-weight: 800; }

.news { background: #fff; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.news-item { min-height: 210px; padding: 26px; border: 1px solid var(--line); display: flex; flex-direction: column; justify-content: space-between; transition: transform 220ms ease, border-color 220ms ease; }
.news-item:hover { transform: translateY(-4px); border-color: var(--blue); }
.news-item time { color: var(--muted); font-size: 13px; font-weight: 800; }
.news-item h3 { margin: 30px 0 0; font-size: 26px; line-height: 1.12; }
.contact { background: linear-gradient(135deg, rgba(118, 212, 255, 0.18), transparent 34%), linear-gradient(315deg, rgba(0, 159, 233, 0.14), transparent 40%), #eef1f3; }
.contact-band { display: grid; grid-template-columns: 0.8fr 0.62fr; gap: clamp(28px, 5vw, 68px); align-items: start; }
.contact-band h2 { margin: 0; font-size: clamp(34px, 5vw, 62px); line-height: 1; }
.contact-band p:not(.eyebrow) { max-width: 620px; color: #343941; font-size: 18px; }
.quote-form { padding: 28px; display: grid; gap: 16px; }
.quote-form label, .captcha-form label { display: grid; gap: 8px; font-weight: 900; }
.quote-form input, .quote-form textarea, .captcha-form input {
  width: 100%;
  border: 1px solid rgba(17, 18, 20, 0.18);
  background: rgba(255, 255, 255, 0.82);
  padding: 13px 14px;
  outline: none;
}
.quote-form input:focus, .quote-form textarea:focus, .captcha-form input:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(0,159,233,.12); }
.quote-form .btn, .captcha-form .btn { width: 100%; border: 0; }
.form-success { padding: 12px 14px; background: rgba(22, 133, 86, .12); color: #168556; font-weight: 800; }
.form-errors { padding: 12px 14px; background: rgba(180, 29, 29, .1); color: #b41d1d; font-weight: 800; }

.inner-hero {
  position: relative;
  min-height: 72svh;
  overflow: hidden;
  color: #fff;
  background: #090b0e;
}
.inner-hero-copy {
  position: relative;
  z-index: 6;
  width: min(1200px, calc(100% - 40px));
  min-height: 72svh;
  margin: 0 auto;
  padding-top: 150px;
  padding-bottom: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.inner-hero-copy h1 { max-width: 860px; margin: 0; font-size: clamp(42px, 6vw, 78px); line-height: .98; }
.inner-hero-copy > p { max-width: 760px; color: rgba(255,255,255,.8); font-size: clamp(17px, 2vw, 22px); }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 24px; color: rgba(255,255,255,.7); font-size: 13px; font-weight: 800; }
.breadcrumbs a { color: #fff; }

.listing-section { background: #fff; }
.category-filter { margin-bottom: 34px; padding: 12px; border: 1px solid var(--line); display: flex; flex-wrap: wrap; align-items: center; gap: 10px; background: rgba(245,246,247,.72); backdrop-filter: blur(14px); }
.category-filter span { font-weight: 900; color: var(--muted); margin-right: 8px; }
.category-filter a { padding: 9px 13px; background: #fff; border: 1px solid var(--line); font-weight: 800; }
.category-filter a.is-active, .category-filter a:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.listing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.listing-card, .content-card, .market-card { border: 1px solid var(--line); background: #fff; overflow: hidden; transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease; }
.listing-card:hover, .content-card:hover, .market-card:hover { transform: translateY(-5px); border-color: rgba(0,159,233,.38); box-shadow: 0 18px 45px rgba(0,0,0,.08); }
.listing-media img, .content-card img, .market-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.listing-card > div, .content-card .card-copy, .market-card > div { padding: 24px; }
.listing-card h2, .market-card h2 { margin: 0 0 12px; font-size: 26px; line-height: 1.1; }
.listing-card p, .market-card p { color: var(--muted); }
.pagination-wrap { margin-top: 36px; }

.table-shell { overflow-x: auto; border: 1px solid var(--line); box-shadow: var(--shadow); background: #fff; }
.material-table { width: 100%; min-width: 1040px; border-collapse: collapse; }
.material-table th { background: #0e1a24; color: #fff; padding: 18px; text-align: left; font-size: 13px; text-transform: uppercase; }
.material-table td { padding: 20px 18px; border-bottom: 1px solid var(--line); vertical-align: top; color: #333941; }
.material-table tr:nth-child(even) td { background: #f7fafc; }
.material-table tr:hover td { background: rgba(0,159,233,.07); }
.material-table td:first-child { min-width: 230px; }
.material-table strong { display: block; font-size: 18px; color: var(--ink); }
.material-table span { display: block; margin-top: 8px; color: var(--blue); font-size: 12px; font-weight: 900; }

.certificate-page-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.certificate-card { min-height: 330px; padding: 26px; border: 1px solid var(--line); background: linear-gradient(145deg, #fff, #f4f8fb); display: grid; grid-template-columns: 170px 1fr; gap: 24px; align-items: center; }
.certificate-paper { width: 150px; min-height: 210px; padding: 18px; background: #fff; box-shadow: 0 16px 36px rgba(0,0,0,.1); border-top: 6px solid var(--blue); display: grid; align-content: space-between; }
.certificate-paper span { color: var(--blue); font-size: 12px; font-weight: 900; }
.certificate-paper strong { font-size: 14px; }
.certificate-card h2 { margin: 0 0 12px; font-size: 30px; line-height: 1.05; }
.certificate-card p { color: var(--muted); }

.performance-dashboard { display: grid; gap: 26px; }
.performance-summary { padding: clamp(26px, 4vw, 50px); color: var(--ink); }
.performance-summary h2 { max-width: 800px; margin: 0 0 16px; font-size: clamp(30px, 4vw, 52px); line-height: 1; }
.country-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.country-card { padding: 28px; background: #0e1a24; color: #fff; position: relative; overflow: hidden; }
.country-card::after { content: ""; position: absolute; right: -40px; top: -40px; width: 160px; height: 160px; background: rgba(0,159,233,.18); border-radius: 50%; }
.country-card > span { color: var(--cyan); font-weight: 900; }
.country-card h2 { margin: 12px 0; font-size: 30px; }
.country-card p { color: rgba(255,255,255,.7); }
.country-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 24px; }
.country-metrics div { padding: 14px; background: rgba(255,255,255,.08); }
.country-metrics strong { color: #fff; font-size: 32px; }
.country-metrics em { color: rgba(255,255,255,.6); font-style: normal; font-size: 12px; }

.market-map-large { height: 76vh; min-height: 580px; margin-bottom: 26px; }
.market-card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.market-card { display: grid; grid-template-columns: 220px 1fr; }
.market-card img { height: 100%; min-height: 220px; aspect-ratio: auto; }

.download-library { display: grid; gap: 18px; }
.download-card { padding: 24px; border: 1px solid var(--line); display: grid; grid-template-columns: 74px 1fr auto; gap: 22px; align-items: center; background: #fff; transition: transform 220ms ease, border-color 220ms ease; }
.download-card:hover { transform: translateY(-4px); border-color: var(--blue); }
.download-card h2 { margin: 0 0 10px; font-size: 26px; }
.download-card p { color: var(--muted); }
.download-meta { display: flex; flex-wrap: wrap; gap: 18px; margin: 14px 0 0; }
.download-meta div { display: flex; gap: 6px; }
.download-meta dt { color: var(--muted); font-weight: 800; }
.download-meta dd { margin: 0; font-weight: 900; }

.control-landing { display: grid; gap: 36px; }
.control-panel { padding: clamp(28px, 5vw, 58px); display: grid; grid-template-columns: 1fr .74fr; gap: 34px; align-items: center; color: var(--ink); }
.control-panel h2 { margin: 0 0 16px; font-size: clamp(34px, 5vw, 64px); line-height: .98; }
.control-panel p { color: #343941; }
.control-panel img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.control-process { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--line); }
.control-process article { min-height: 230px; padding: 24px; background: #fff; display: grid; align-content: space-between; }
.control-process span { color: var(--blue); font-weight: 900; }
.control-process h3 { margin: 0; font-size: 22px; line-height: 1.1; }
.control-process p { color: var(--muted); }
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.benefit-card { padding: 24px; background: #0e1a24; color: #fff; min-height: 120px; display: grid; align-items: end; }
.control-copy { padding: clamp(28px, 5vw, 58px); background: #eef7fb; }
.control-copy h2 { max-width: 760px; margin: 0 0 16px; font-size: clamp(32px, 4vw, 54px); line-height: 1; }
.control-copy p { max-width: 820px; color: #343941; }

.detail-layout, .about-overview { display: grid; grid-template-columns: 320px 1fr; gap: clamp(28px, 5vw, 70px); align-items: start; }
.detail-aside, .editorial-index { position: sticky; top: 120px; padding: 26px; border: 1px solid var(--line); background: #fff; }
.detail-aside dl, .download-summary dl { display: grid; gap: 14px; margin: 0 0 24px; }
.detail-aside dt, .download-summary dt { color: var(--muted); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.detail-aside dd, .download-summary dd { margin: 0; font-weight: 800; }
.rich-content { max-width: 920px; font-size: 18px; color: #2b3036; }
.rich-content h2 { margin: 0 0 18px; font-size: clamp(30px, 4vw, 48px); line-height: 1.05; color: var(--ink); }
.rich-content h3 { margin: 34px 0 12px; font-size: 26px; color: var(--ink); }
.rich-content p { margin: 0 0 20px; }
.rich-content ul { padding-left: 22px; }
.rich-content li { margin: 10px 0; }
.related-section { background: #f3f5f6; }
.content-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.index-stat { padding: 18px 0; border-top: 1px solid var(--line); }
.index-stat strong { color: var(--blue); }
.index-stat span { color: var(--muted); font-weight: 800; }
.value-grid, .matrix-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.value-grid article, .matrix-card { min-height: 240px; padding: 26px; border: 1px solid var(--line); background: #fff; }
.value-grid span { color: var(--blue); font-weight: 900; }
.value-grid h3 { font-size: 24px; }
.value-grid p, .matrix-card span { color: var(--muted); }
.about-matrix { background: #f3f5f6; }
.matrix-card { display: grid; align-content: space-between; }
.matrix-card strong { font-size: 24px; }

.verify-layout { display: grid; grid-template-columns: .7fr 1fr; gap: 34px; align-items: start; }
.download-summary { padding: 28px; color: var(--ink); }
.download-summary .file-icon { margin-bottom: 20px; }
.captcha-form { padding: 28px; border: 1px solid var(--line); background: #fff; display: grid; gap: 18px; }
.captcha-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.captcha-row img { width: 190px; height: 64px; border: 1px solid var(--line); border-radius: 8px; }

.site-footer {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: #fff;
  background: #0758b7;
  isolation: isolate;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.68;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 120px, transparent 120px 260px, rgba(255, 255, 255, 0.025) 260px 360px, transparent 360px 100%) 0 0 / 520px 210px,
    linear-gradient(180deg, transparent 0 58px, rgba(0, 44, 119, 0.14) 58px 150px, transparent 150px 100%) 0 0 / 430px 255px;
}
.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(120deg, rgba(0, 45, 120, 0.18), transparent 46%),
    linear-gradient(0deg, rgba(1, 29, 78, 0.16), transparent 42%);
}
.site-footer .footer-inner {
  width: min(1680px, calc(100% - 96px));
  margin-inline: auto;
  padding: clamp(82px, 8vw, 126px) 0 62px;
}
.footer-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: clamp(42px, 8vw, 120px);
  align-items: start;
}
.footer-slogan span {
  display: inline-flex;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
.footer-slogan h2 {
  margin: 0;
  max-width: 760px;
  color: #fff;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 1.05;
  letter-spacing: 0;
}
.footer-callback {
  align-self: start;
  padding-top: 8px;
}
.footer-callback label {
  display: block;
  margin: 0 0 22px;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
}
.footer-phone-field {
  min-height: 62px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 6px 8px 6px 22px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.footer-phone-field span {
  font-size: 11px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.86);
}
.footer-phone-field input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: #fff;
  background: transparent;
  font-weight: 700;
}
.footer-phone-field input::placeholder { color: rgba(255, 255, 255, 0.45); }
.footer-phone-field button {
  height: 48px;
  min-width: 112px;
  padding: 0 30px;
  border: 0;
  border-radius: 999px;
  color: #0758b7;
  background: #fff;
  cursor: pointer;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.footer-phone-field button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(0, 28, 78, 0.22);
}
.footer-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 600px);
  gap: clamp(44px, 8vw, 120px);
  margin-top: clamp(72px, 10vw, 132px);
  align-items: start;
}
.footer-nav-grid {
  max-width: 840px;
  display: grid;
  grid-template-columns: repeat(4, minmax(122px, 1fr));
  gap: 32px 58px;
}
.footer-nav-grid a,
.footer-cookie-link {
  display: inline-flex;
  width: fit-content;
  color: rgba(255, 255, 255, 0.94);
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  text-align: left;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.35;
}
.footer-nav-grid a:hover,
.footer-cookie-link:hover { color: #ccecff; }
.footer-contact-panel {
  margin: 0;
  font-style: normal;
}
.footer-contact-panel dl {
  display: grid;
  gap: 32px;
  margin: 0;
}
.footer-contact-panel div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 18px;
}
.footer-contact-panel dt {
  color: #fff;
  font-size: 20px;
  font-weight: 900;
}
.footer-contact-panel dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(18px, 1.55vw, 23px);
  font-weight: 800;
  line-height: 1.45;
}
.footer-contact-panel a:hover { color: #ccecff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  margin-top: clamp(70px, 9vw, 118px);
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.footer-brand-line {
  display: flex;
  align-items: center;
  gap: 28px;
  min-width: 0;
}
.footer-brand-line img {
  width: 156px;
  max-height: 62px;
  object-fit: contain;
}
.footer-brand-line p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
}
.footer-socials {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 900;
  white-space: nowrap;
}
.footer-socials a {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  font-size: 13px;
  font-weight: 900;
  transition: background 180ms ease, transform 180ms ease;
}
.footer-socials a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.22);
}
.site-footer .footer-float-actions {
  position: fixed;
  right: 28px;
  bottom: 104px;
  z-index: 46;
  width: auto;
  margin: 0;
  display: grid;
  justify-items: center;
  padding: 12px 9px;
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 46px rgba(7, 31, 72, 0.18);
  backdrop-filter: blur(16px);
}
.footer-float-actions a {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-bottom: 1px solid rgba(17, 18, 20, 0.12);
  color: #111214;
  font-size: 10px;
  font-weight: 900;
}
.footer-float-actions a:last-child { border-bottom: 0; }
.footer-float-actions .is-primary {
  width: 58px;
  height: 58px;
  margin: 7px -4px;
  border: 5px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: #0758b7;
  box-shadow: 0 12px 26px rgba(0, 42, 120, 0.26);
}

.cookie-layer { position: fixed; inset: 0; z-index: 100; display: grid; align-items: start; padding: 20px; background: rgba(0, 0, 0, 0.72); backdrop-filter: blur(8px); }
.cookie-layer[hidden] { display: none !important; }
.cookie-dialog { position: relative; width: min(1000px, 100%); max-height: calc(100svh - 40px); overflow: auto; margin: 0 auto; padding: clamp(26px, 5vw, 40px); background: #fff; border-radius: 6px; box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34); }
.cookie-close { position: absolute; right: 18px; top: 14px; border: 0; background: transparent; font-size: 30px; cursor: pointer; }
.cookie-dialog h2 { margin: 0 0 16px; font-size: 30px; }
.cookie-dialog p { max-width: 900px; margin: 0 0 24px; color: #33373d; }
.cookie-options { display: grid; gap: 20px; }
.cookie-options label { display: grid; grid-template-columns: 18px 1fr; gap: 10px; align-items: start; }
.cookie-options input { width: 20px; height: 20px; margin: 3px 0 0; accent-color: #5b5ce2; }
.cookie-options strong, .cookie-options small { display: block; }
.cookie-options small { color: #42464d; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.cookie-btn { min-height: 42px; padding: 0 20px; border: 2px solid var(--ink); border-radius: 999px; background: #fff; color: var(--ink); cursor: pointer; font-weight: 900; }
.cookie-btn-primary { border-color: var(--blue); background: var(--blue); color: #fff; }
.noscript { position: fixed; left: 20px; bottom: 20px; z-index: 101; max-width: 420px; padding: 14px 16px; background: #fff; box-shadow: var(--shadow); }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

@keyframes heroZoom { from { transform: scale(1.04) translateY(0); } to { transform: scale(1.11) translateY(-1.4%); } }
@keyframes gridDrift { from { background-position: 0 0; } to { background-position: 72px 72px; } }
@keyframes scanMove {
  0%, 38% { transform: skewX(-16deg) translateX(-150%); opacity: 0; }
  50% { opacity: .75; }
  72%, 100% { transform: skewX(-16deg) translateX(320%); opacity: 0; }
}
@keyframes meterPulse { 0%, 100% { filter: brightness(1); } 50% { filter: brightness(1.35); } }
@keyframes heroCharIn { 0% { opacity: 0; transform: translateY(26px); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes heroLeadIn { 0% { opacity: 0; transform: translateY(32px); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes qualityRipple { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(12); opacity: 0; } }
@keyframes qualityDotBreathe { 0%, 100% { opacity: .65; transform: scale(1); } 50% { opacity: 1; transform: scale(1.3); } }

@media (max-width: 1160px) {
  .header-inner { grid-template-columns: auto auto 1fr; }
  .nav-toggle { display: grid; order: 3; justify-self: end; }
  .header-actions { order: 2; }
  .primary-nav {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 88px;
    display: grid;
    gap: 0;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 200ms ease, transform 200ms ease;
  }
  .primary-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .primary-nav a, .site-header.is-scrolled .primary-nav a { color: var(--ink); padding: 15px 20px; border-bottom: 1px solid var(--line); }
  .primary-nav a::after { display: none; }
  .hero-content, .intro-layout, .feature-split, .contact-band, .control-panel, .detail-layout, .about-overview, .verify-layout { grid-template-columns: 1fr; }
  .hero-panel { align-self: auto; }
  .product-grid, .performance-cards, .certificate-strip { grid-template-columns: repeat(2, 1fr); }
  .control-flow, .control-process { grid-template-columns: repeat(3, 1fr); }
  .value-grid, .matrix-grid, .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-aside, .editorial-index { position: relative; top: auto; }
}

@media (max-width: 760px) {
  .header-inner { width: min(100% - 28px, 1400px); min-height: 66px; gap: 8px; }
  .brand-block { width: 86px; min-height: 74px; margin-bottom: -10px; }
  .brand-logo img { width: 68px; max-height: 54px; }
  .header-actions { max-width: 88px; }
  .lang-btn { width: 34px; height: 28px; font-size: 12px; }
  .hero-content { width: min(100% - 28px, 1400px); min-height: auto; padding-top: 120px; padding-bottom: 44px; grid-template-columns: 1fr; }
  .hero h1, .inner-hero-copy h1 { font-size: 32px; }
  .hero-metrics, .product-grid, .material-board, .news-grid, .listing-grid, .certificate-page-grid, .country-grid, .market-card-grid, .download-card, .download-row, .footer-main { grid-template-columns: 1fr; }
  .hero-metrics { width: calc(100% - 28px); margin-top: 0; }
  .hero-metrics div { min-height: 96px; border-right: 0; border-bottom: 1px solid var(--line); }
  .section-head-row { align-items: start; flex-direction: column; }
  .section-pad, .section { padding: 58px 0; }
  .section-head, .intro-layout, .product-grid, .material-board, .certificate-strip, .feature-split, .performance-cards, .control-flow, .download-list-home, .news-grid, .contact-band, .listing-section > *, .detail-layout, .related-section .content-grid, .about-overview, .values-band .value-grid, .about-matrix .matrix-grid, .site-footer > * { width: calc(100% - 28px); }
  .inner-hero, .inner-hero-copy { min-height: 62svh; }
  .inner-hero-copy { width: calc(100% - 28px); padding-top: 118px; }
  .quality, .quality-container { min-height: 620px; }
  .quality-title-overlay { top: 9%; left: 16px; right: 16px; max-width: none; }
  .quality-stats { left: 16px; right: 16px; bottom: 22px; gap: 14px; }
  .market-map-large { min-height: 540px; height: 70vh; }
  .market-card { grid-template-columns: 1fr; }
  .certificate-card { grid-template-columns: 1fr; }
  .control-flow, .control-process, .value-grid, .matrix-grid, .benefit-grid, .content-grid { grid-template-columns: 1fr; }
  .download-card .btn { width: 100%; }
  .footer-legal { flex-direction: column; }
  .cookie-layer { align-items: end; padding: 12px; }
  .cookie-actions { display: grid; }
}

@media (max-width: 420px) {
  .section-head h2 { font-size: 26px; }
  .hero h1, .inner-hero-copy h1 { font-size: 28px; }
  .hero-lead, .inner-hero-copy > p { font-size: 15px; }
  .brand-block { width: 78px; }
  .brand-logo img { width: 62px; }
  .country-metrics { grid-template-columns: 1fr; }
}

@media (max-width: 1120px) {
  .footer-hero,
  .footer-body {
    grid-template-columns: 1fr;
  }
  .footer-callback {
    max-width: 640px;
  }
  .footer-nav-grid {
    grid-template-columns: repeat(3, minmax(130px, 1fr));
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .site-footer {
    min-height: auto;
  }
  .site-footer .footer-inner {
    width: calc(100% - 28px);
    padding: 66px 0 112px;
  }
  .footer-slogan span {
    margin-bottom: 12px;
    font-size: 11px;
  }
  .footer-slogan h2 {
    font-size: 36px;
  }
  .footer-callback label {
    margin-bottom: 14px;
    font-size: 15px;
  }
  .footer-phone-field {
    grid-template-columns: auto minmax(0, 1fr);
    border-radius: 24px;
    padding: 14px;
  }
  .footer-phone-field button {
    grid-column: 1 / -1;
    width: 100%;
  }
  .footer-body {
    margin-top: 54px;
  }
  .footer-nav-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 18px;
  }
  .footer-nav-grid a,
  .footer-cookie-link {
    font-size: 15px;
  }
  .footer-contact-panel dl {
    gap: 22px;
  }
  .footer-contact-panel div {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }
  .footer-contact-panel div:last-child {
    border-bottom: 0;
  }
  .footer-contact-panel dt,
  .footer-contact-panel dd {
    font-size: 16px;
  }
  .footer-bottom {
    margin-top: 52px;
    gap: 22px;
  }
  .footer-brand-line {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }
  .footer-brand-line img {
    width: 138px;
  }
  .footer-socials {
    flex-wrap: wrap;
    white-space: normal;
  }
  .footer-socials a {
    width: 42px;
    height: 42px;
  }
  .site-footer .footer-float-actions {
    left: 14px;
    right: 14px;
    bottom: 12px;
    grid-template-columns: repeat(4, 1fr);
    padding: 6px;
    border-radius: 999px;
  }
  .footer-float-actions a {
    width: 100%;
    height: 42px;
    border-right: 1px solid rgba(17, 18, 20, 0.12);
    border-bottom: 0;
  }
  .footer-float-actions a:last-child {
    border-right: 0;
  }
  .footer-float-actions .is-primary {
    width: 42px;
    height: 42px;
    margin: 0 auto;
    border-width: 0;
  }
}

@media (max-width: 520px) {
  .footer-nav-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-phone-field {
    gap: 10px;
  }
  .footer-phone-field input {
    font-size: 14px;
  }
}

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