:root {
  --white: #FFFFFF;
  --page: #FFFFFF;
  --ink: #1F2937;
  --navy: #0B1F3A;
  --graphite: #1F2937;
  --muted: #6B7280;
  --line: #E2E8F0;
  --soft: #F5F7FA;
  --color-brand-blue: #0063F6;
  --blue: var(--color-brand-blue);
  --blue-strong: var(--color-brand-blue);
  --yellow: #FFC928;
  --surface: #F5F7FA;
  --surface-strong: #EEF3F8;
  --steel: #CBD5E1;
  --border: rgba(11, 31, 58, .12);
  --border-strong: rgba(11, 31, 58, .18);
  --glass: rgba(255, 255, 255, .08);
  --glass-border: rgba(255, 255, 255, .16);
  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius: 16px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-control: 12px;
  --radius-control-sm: 10px;
  --shadow-xs: 0 1px 2px rgba(11, 31, 58, .06);
  --shadow-soft: 0 12px 34px rgba(11, 31, 58, .08);
  --shadow: 0 22px 70px rgba(11, 31, 58, .14);
  --shadow-strong: 0 34px 110px rgba(4, 13, 28, .24);
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --container-sm: 960px;
  --container-md: 1120px;
  --container-lg: 1280px;
  --container-xl: 1440px;
  --container-wide: 1640px;
  --container-ultra: 1840px;
  --container: min(var(--container-lg), calc(100% - 56px));
  --font: Inter, Manrope, "SF Pro Display", "Segoe UI", Arial, sans-serif;
  --transition-fast: 160ms ease;
  --transition: 240ms ease;
  --transition-slow: 420ms ease;
  --z-header: 80;
  --z-menu: 90;
  --z-modal: 140;
  --z-toast: 160;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0%, var(--surface) 100%);
  line-height: 1.7;
  position: relative;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at top right, rgba(0, 99, 246, .16), transparent 32%), linear-gradient(135deg, rgba(11, 31, 58, .03), transparent 60%);
  z-index: -1;
}
body.is-locked,
body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color .2s ease, opacity .2s ease, transform .2s ease; }
button, input, select, textarea { font: inherit; }
:focus-visible { outline: 3px solid rgba(0,99,246,.34); outline-offset: 3px; }
::selection { background: rgba(0,99,246,.24); color: var(--navy); }

.skip-link {
  position: absolute;
  left: -999px;
  top: 16px;
  z-index: 160;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
}
.skip-link:focus { left: 16px; }

.container { width: var(--container); margin-inline: auto; }
.section { padding: clamp(80px, 10vw, 128px) 0; position: relative; }
.section-head { max-width: 840px; margin-bottom: 40px; }
.section-dark { background: var(--navy); color: var(--white); }
.section-muted { background: linear-gradient(180deg, #f8fafc 0%, #f3f7fc 100%); }
.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--navy), var(--blue-strong));
  color: var(--white);
  box-shadow: var(--shadow);
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.back-to-top.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { transform: translateY(-3px); }

.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;
}
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: -0.02em; color: inherit; }
h1 { font-size: clamp(44px, 7vw, 84px); max-width: 980px; }
h2 { font-size: clamp(32px, 4.4vw, 54px); }
h3 { font-size: 22px; }
p { margin: 14px 0 0; color: var(--muted); }
.section-dark p, .section-dark .lead { color: rgba(255,255,255,.76); }
.lead { font-size: clamp(18px, 2vw, 22px); max-width: 760px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(221,230,240,.9);
  backdrop-filter: blur(20px);
  transition: padding .25s ease, background .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.98);
  box-shadow: 0 16px 48px rgba(11, 31, 58, .08);
}
.site-header.is-scrolled .header__inner { height: 72px; }
.header__inner {
  height: 86px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: height .25s ease;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.logo img {
  width: auto;
  height: 46px;
  max-width: 62px;
  flex-shrink: 0;
  object-fit: contain;
}
.logo__mark--light-bg { display: none; }
body[data-page="home"] .site-header .logo__mark--dark-bg { display: none; }
body[data-page="home"] .site-header .logo__mark--light-bg { display: block; }
.site-footer .logo__mark--light-bg { display: none; }
.site-footer .logo__mark--dark-bg,
.site-footer .logo__mark { display: block; }
.header__desktop {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
  min-width: 0;
  flex-wrap: nowrap;
}
.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--graphite);
  letter-spacing: .08em;
  text-transform: uppercase;
  flex-wrap: nowrap;
}
.nav a { position: relative; padding: 8px 12px; transition: color .2s ease; border-radius: 999px; white-space: nowrap; }
.nav a::after {
  content: "";
  position: absolute; left: 12px; bottom: 4px; width: calc(100% - 24px); height: 2px;
  border-radius: 999px; background: var(--blue); transform: scaleX(0); transform-origin: left; transition: transform .2s ease;
}
.nav a[aria-current="page"], .nav a:hover { color: var(--blue); background: rgba(0,99,246,.08); }
.nav a[aria-current="page"]::after, .nav a:hover::after { transform: scaleX(1); }
.header__meta { display: flex; flex-direction: column; gap: 2px; font-size: 12px; color: var(--muted); }
.header__meta a { color: var(--navy); font-weight: 800; }
.header__actions {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  align-items: center;
}
.header__actions .btn--sm { white-space: nowrap; }
.btn--sm { min-height: 44px; padding: 10px 16px; }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border: 0;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
}
.menu-toggle span { display: block; width: 18px; height: 2px; margin: 4px auto; background: currentColor; transition: transform .25s ease, opacity .2s ease; }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-menu {
  position: fixed; top: 86px; right: 24px; z-index: 70;
  display: none; flex-direction: column; gap: 18px;
  min-width: min(320px, calc(100vw - 48px));
  padding: 22px;
  border: 1px solid rgba(221,230,240,.9);
  border-radius: 20px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 26px 80px rgba(11,31,58,.16);
}
.mobile-menu.is-open { display: flex; }
.mobile-menu__nav { display: grid; gap: 8px; }
.mobile-menu__nav a { padding: 10px 0; border-bottom: 1px solid var(--line); font-weight: 800; color: var(--navy); }
.mobile-menu__contacts { display: grid; gap: 8px; color: var(--muted); font-size: 14px; }
.mobile-menu__contacts a { color: var(--navy); font-weight: 800; }
.mobile-menu__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.mobile-menu__actions .btn { width: 100%; justify-content: center; }

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border: 0;
  border-radius: 999px;
  font-weight: 850;
  cursor: pointer;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  box-shadow: var(--shadow-soft);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--accent { background: linear-gradient(135deg, var(--yellow), #ffd95a); color: #111827; }
.btn--dark { background: linear-gradient(135deg, var(--navy), var(--blue-strong)); color: var(--white); }
.btn--ghost { border: 1px solid rgba(255,255,255,.28); color: var(--white); background: rgba(255,255,255,.08); box-shadow: none; }
.btn--light { border: 1px solid var(--line); color: var(--navy); background: var(--white); box-shadow: none; }
.text-link { display: inline-flex; margin-top: 22px; color: var(--blue); font-weight: 850; }

.hero, .page-hero {
  position: relative;
  padding: 132px 0 72px;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(circle at top left, rgba(0,99,246,.16), transparent 34%), linear-gradient(135deg, rgba(255,255,255,.98), rgba(245,250,255,.96));
}
.page-hero { min-height: 74vh; }
.hero::after, .page-hero::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -16%;
  width: min(32vw, 420px);
  height: min(32vw, 420px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,201,40,.2), transparent 70%);
  pointer-events: none;
}
.hero__grid, .page-hero__grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(320px, .98fr); gap: clamp(36px, 6vw, 84px); align-items: center; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero__actions .btn { min-height: 52px; }
.hero__media, .page-hero__grid > img {
  position: relative;
  margin: 0;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  background: rgba(255,255,255,.06);
  box-shadow: 0 34px 110px rgba(11,31,58,.24);
  overflow: hidden;
  transform: translateY(-4px);
}

.stats-band { padding: 30px 0; border-bottom: 1px solid var(--line); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stats-grid div { padding: 24px; border-left: 3px solid var(--blue); background: var(--white); border-radius: 18px; box-shadow: 0 10px 30px rgba(11,31,58,.05); }
.stats-grid strong { display: block; color: var(--navy); font-size: clamp(32px, 4vw, 54px); line-height: 1; }
.stats-grid span { color: var(--muted); font-weight: 700; }

.card-grid, .project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.info-card, .service-card, .product-card, .project-card, .article-card, .equipment-card {
  position: relative;
  min-height: 100%;
  padding: 24px;
  border: 1px solid rgba(221,230,240,.95);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 14px 42px rgba(11,31,58,.06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  overflow: hidden;
}
.info-card::before, .service-card::before, .product-card::before, .project-card::before, .article-card::before, .equipment-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,99,246,.08), transparent 58%);
  pointer-events: none;
}
.info-card:hover, .service-card:hover, .product-card:hover, .project-card:hover, .article-card:hover, .equipment-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(0,99,246,.34);
  box-shadow: var(--shadow);
}
.card-icon { width: 52px; height: 52px; margin-bottom: 22px; transition: transform .25s ease; }
.service-card:hover .card-icon, .product-card:hover .card-icon { transform: rotate(6deg) scale(1.05); }
.project-card img, .article-card img, .equipment-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: 18px; margin-bottom: 20px; background: var(--soft); }
.project-card__meta, .article-card__meta { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 8px; }
.tag { padding: 6px 10px; border-radius: 999px; background: rgba(0,99,246,.10); color: var(--color-brand-blue); font-size: 12px; font-weight: 800; }
.projects-hero { padding: 132px 0 72px; }
.projects-hero__grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(320px, .98fr); gap: clamp(32px, 6vw, 76px); align-items: center; }
.projects-hero__visual { position: relative; }
.projects-hero__visual img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; border-radius: var(--radius); }
.projects-hero__stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 32px; }
.projects-hero__stats div { padding: 18px; border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius); background: rgba(255,255,255,.08); }
.projects-hero__stats strong { display: block; color: var(--yellow); font-size: 30px; line-height: 1; }
.projects-hero__stats span { color: rgba(255,255,255,.74); font-weight: 750; }
.projects-toolbar { display: flex; justify-content: flex-end; margin-top: 18px; }
.projects-toolbar p { margin: 0; color: var(--muted); font-weight: 800; }
.projects-toolbar strong { color: var(--navy); }
.projects-filters { display: grid; grid-template-columns: 1.15fr repeat(7, minmax(0, .8fr)) 90px; gap: 12px; align-items: end; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.projects-filters label { margin: 0; color: var(--graphite); }
.projects-filters input, .projects-filters select { background: var(--soft); border-color: var(--line); }
.projects-filters__actions { display: flex; align-items: end; }
.case-feature-list { display: grid; gap: 22px; }
.case-feature { display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px; padding: 22px; border-radius: var(--radius); background: linear-gradient(135deg, rgba(15,35,69,.96), rgba(0,99,246,.16)); color: var(--white); box-shadow: var(--shadow); }
.case-feature__media { display: grid; grid-template-columns: 1.15fr .85fr; gap: 12px; }
.case-feature__media img { width: 100%; height: 100%; min-height: 140px; object-fit: cover; border-radius: var(--radius); }
.case-feature__media img:nth-child(3) { grid-column: 1 / -1; min-height: 170px; }
.case-feature__content { display: flex; flex-direction: column; justify-content: center; gap: 12px; }
.case-feature__content p { color: rgba(255,255,255,.8); }
.projects-masonry { column-count: 3; column-gap: 20px; }
.project-media-card { display: inline-block; width: 100%; margin: 0 0 20px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); overflow: hidden; box-shadow: 0 10px 36px rgba(15,35,69,.08); transition: transform .25s ease, box-shadow .25s ease; break-inside: avoid; }
.project-media-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.project-media-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .35s ease; }
.project-media-card:hover img { transform: scale(1.04); }
.project-media-card__body { padding: 20px; }
.project-media-card__meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.project-media-card__footer { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 16px; }
.meta-date { color: var(--muted); font-size: 13px; font-weight: 800; }
.project-media-card[hidden] { display: none; }
.project-video-shell { display: grid; grid-template-columns: 1.2fr .8fr; gap: 22px; }
.project-video-frame { position: relative; padding: 12px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.project-video-frame video { display: block; width: 100%; aspect-ratio: 16 / 9; border-radius: var(--radius); background: #071226; object-fit: cover; }
.project-video-overlay { position: absolute; left: 28px; right: 28px; bottom: 28px; padding: 16px 18px; border-radius: var(--radius); background: rgba(255,255,255,.9); color: var(--navy); box-shadow: var(--shadow); }
.project-video-list { display: grid; gap: 14px; }
.project-video-pill { display: flex; align-items: center; gap: 14px; padding: 16px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 8px 28px rgba(15,35,69,.08); }
.project-video-pill img { width: 72px; height: 72px; border-radius: var(--radius); object-fit: cover; }
.project-gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.project-gallery__item { padding: 0; border: 0; border-radius: var(--radius); overflow: hidden; background: var(--white); box-shadow: var(--shadow); cursor: pointer; }
.project-gallery__item img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .3s ease; }
.project-gallery__item:hover img { transform: scale(1.05); }
.live-journal { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.live-journal__card { display: grid; gap: 12px; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 8px 28px rgba(15,35,69,.08); }
.live-journal__card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: var(--radius); }
.live-journal__meta { color: var(--blue); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.live-hero { padding: 132px 0 72px; }
.live-hero__grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr); gap: clamp(30px, 6vw, 70px); align-items: center; }
.live-hero__panel { padding: 24px; border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius); background: rgba(255,255,255,.08); box-shadow: 0 28px 90px rgba(0,0,0,.24); }
.live-hero__meta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 12px; }
.live-filters { grid-template-columns: 1.2fr .95fr .95fr .95fr 110px; }
.live-layout { display: grid; grid-template-columns: 1.35fr .65fr; gap: 24px; align-items: start; }
.live-feed { display: grid; gap: 18px; }
.live-entry { padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 10px 32px rgba(15,35,69,.08); }
.live-entry--featured { border-color: rgba(0,99,246,.32); box-shadow: 0 18px 50px rgba(15,35,69,.12); }
.live-entry--case { background: linear-gradient(135deg, #fff, #f3f8ff); }
.live-entry__top { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 12px; }
.live-entry__date { color: var(--muted); font-size: 13px; font-weight: 850; }
.live-entry__media { margin: 18px 0; }
.live-entry__media img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: var(--radius); }
.live-entry__meta { display: flex; flex-wrap: wrap; gap: 10px; margin: 14px 0 18px; color: var(--graphite); font-size: 13px; font-weight: 800; }
.live-entry[hidden] { display: none; }
.live-sidebar { display: grid; gap: 16px; position: sticky; top: 100px; }
.live-sidebar__block { padding: 20px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 10px 32px rgba(15,35,69,.08); }
.live-sidebar__block ul { margin: 12px 0 0; padding-left: 18px; display: grid; gap: 10px; }
.live-sidebar__block li a { color: var(--navy); font-weight: 800; }
.live-sidebar__tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.project-case-hero { padding: 132px 0 72px; }
.project-case-hero__grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(320px, .98fr); gap: clamp(30px, 6vw, 70px); align-items: center; }
.project-case-hero__meta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.project-case-hero__meta span { padding: 10px 12px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; background: rgba(255,255,255,.08); color: rgba(255,255,255,.84); font-size: 13px; font-weight: 800; }
.project-case-hero__media img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; border-radius: var(--radius); box-shadow: 0 28px 90px rgba(0,0,0,.24); }
.project-case-facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.project-case-facts article, .project-case-notes article { padding: 20px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.project-case-facts strong, .project-case-notes strong { display: block; color: var(--navy); margin-bottom: 6px; }
.project-case-facts span, .project-case-notes span { color: var(--muted); }
.project-case-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.project-case-notes { display: grid; gap: 14px; }
.project-timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.project-gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.project-gallery figure { margin: 0; border-radius: var(--radius); overflow: hidden; background: var(--white); box-shadow: var(--shadow); }
.project-gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.project-gallery figcaption { padding: 12px 14px; color: var(--navy); font-weight: 850; }
@media (max-width: 1100px) {
  .live-layout { grid-template-columns: 1fr; }
  .live-sidebar { position: static; }
}
@media (max-width: 760px) {
  .live-filters { grid-template-columns: 1fr; }
  .live-entry__top { flex-direction: column; align-items: flex-start; }
  .project-case-grid, .project-gallery, .project-case-facts, .project-timeline { grid-template-columns: 1fr; }
  .project-case-hero__grid, .project-video-shell { grid-template-columns: 1fr; }
}
@media (max-width: 1100px) {
  .projects-filters { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .projects-hero__grid, .case-feature, .project-video-shell, .split { grid-template-columns: 1fr; }
  .projects-masonry { column-count: 2; }
  .live-journal { grid-template-columns: 1fr; }
  .calculators-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .projects-hero__stats, .projects-masonry, .project-gallery { grid-template-columns: 1fr; column-count: 1; }
  .projects-filters { grid-template-columns: 1fr; }
  .case-feature__media { grid-template-columns: 1fr; }
  .project-video-shell { grid-template-columns: 1fr; }
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 36px;
  align-items: start;
  padding: 32px 0 80px;
}
.article-content {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}
.article-hero {
  padding: 132px 0 48px;
  background: linear-gradient(135deg, rgba(15,35,69,.98), rgba(0,99,246,.2));
  color: var(--white);
}
.article-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 36px;
  align-items: center;
}
.article-cover {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 28px 90px rgba(0,0,0,.24);
  border: 1px solid rgba(255,255,255,.16);
}
.article-cover img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 0;
  color: rgba(255,255,255,.8);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.article-toc {
  position: sticky;
  top: 100px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}
.article-toc h3 {
  margin-bottom: 14px;
  font-size: 18px;
}
.article-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.article-toc a {
  display: block;
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--graphite);
  font-weight: 800;
}
.article-toc a.is-active {
  background: rgba(0,99,246,.12);
  color: var(--blue);
}
.article-section {
  scroll-margin-top: 100px;
  padding-top: 8px;
}
.article-content h2 {
  font-size: clamp(26px, 3.2vw, 34px);
  margin: 34px 0 12px;
  color: var(--navy);
}
.article-content h3 {
  font-size: 21px;
  margin: 28px 0 10px;
  color: var(--navy);
}
.article-content p,
.article-content li,
.article-content td {
  color: var(--graphite);
  font-size: 17px;
}
.article-content ul,
.article-content ol {
  padding-left: 20px;
  display: grid;
  gap: 10px;
}
.article-quote,
.article-tip,
.article-warning,
.article-note {
  padding: 20px 22px;
  border-radius: var(--radius);
  margin: 24px 0;
}
.article-quote {
  border-left: 4px solid var(--blue);
  background: #f6fbff;
}
.article-tip {
  border-left: 4px solid var(--yellow);
  background: #fff9e6;
}
.article-warning {
  border-left: 4px solid #e11d48;
  background: #fff1f2;
}
.article-note {
  border-left: 4px solid #10b981;
  background: #ecfdf5;
}
.article-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  overflow: hidden;
  border-radius: var(--radius);
}
.article-table th,
.article-table td {
  padding: 12px 14px;
  border: 1px solid var(--line);
  text-align: left;
}
.article-table th {
  background: var(--soft);
  color: var(--navy);
}
.article-figure,
.article-video {
  margin: 28px 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}
.article-figure img,
.article-video video {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
}
.article-figcaption {
  margin-top: 10px;
  font-size: 14px;
  color: var(--muted);
}
.article-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 24px 0;
}
.article-grid > article,
.article-card-compact {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}
.article-card-compact h4 {
  margin-bottom: 8px;
  color: var(--navy);
}
.article-card-compact p {
  margin: 0;
}
.article-share,
.article-subscribe,
.article-faq,
.article-cta {
  margin-top: 32px;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--soft);
}
.article-share__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}
.article-share__buttons a {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  font-weight: 800;
}
.article-related-grid,
.article-similar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}
.article-related-grid article,
.article-similar-grid article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}
.article-related-grid img,
.article-similar-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 12px;
}
.knowledge-grid,
.projects-grid,
.live-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.knowledge-card,
.project-card,
.live-entry-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.knowledge-card:hover,
.project-card:hover,
.live-entry-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0,99,246,.32);
  box-shadow: 0 22px 60px rgba(15,35,69,.12);
}
.knowledge-card img,
.project-card img,
.live-entry-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 16px;
}
.knowledge-card__meta,
.project-card__meta,
.live-entry-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 14px;
}
.empty-state {
  padding: 24px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  text-align: center;
}
.show-more {
  margin-top: 22px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
}

@media (max-width: 980px) {
  .article-shell { grid-template-columns: 1fr; }
  .article-toc { position: static; }
  .article-grid,
  .article-related-grid,
  .article-similar-grid,
  .knowledge-grid,
  .projects-grid,
  .live-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 980px) {
  .header__desktop { display: none; }
  .menu-toggle { display: inline-flex; flex-direction: column; justify-content: center; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@media (max-width: 760px) {
  .error-page__grid {
    grid-template-columns: 1fr;
  }
  .article-hero__grid,
  .article-grid,
  .article-related-grid,
  .article-similar-grid,
  .knowledge-grid,
  .projects-grid,
  .live-grid {
    grid-template-columns: 1fr;
  }
  .article-content { padding: 22px; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__subscribe form { flex-direction: column; }
  .footer__subscribe input { min-width: 0; }
}

timeline, .feature-list { display: grid; gap: 14px; }
.timeline div, .feature-list div {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.timeline b, .feature-list b { color: var(--blue); font-size: 24px; }
.timeline span, .feature-list span { font-weight: 750; color: var(--graphite); }

.cta-panel { padding-top: 0; }
.cta-panel__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(28px, 5vw, 56px);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy), #15355f);
  color: var(--white);
  box-shadow: 0 28px 70px rgba(11,31,58,.22);
  overflow: hidden;
}
.cta-panel__inner::before {
  content: "";
  position: absolute;
  inset: auto -12% -22% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,201,40,.18), transparent 70%);
  pointer-events: none;
}
.cta-panel__inner .btn { min-height: 48px; }

.material-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.material-card { padding: 22px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); }
.material-card span { display: block; width: 34px; height: 34px; margin-bottom: 14px; border-radius: 50%; border: 6px solid var(--blue); background: var(--yellow); }

.product-detail-hero { padding: 132px 0 64px; }
.product-detail-hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 56px); align-items: center; }
.product-detail-hero__media img { width: 100%; border-radius: var(--radius); background: var(--soft); }
.product-detail-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.product-detail-gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--line); background: var(--soft); }
.product-specs { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.product-specs article, .product-timeline article { padding: 20px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.product-specs strong, .product-timeline strong { display: block; color: var(--navy); margin-bottom: 6px; }
.product-specs span, .product-timeline span { color: var(--muted); }
.material-compare { display: grid; gap: 18px; }
.material-compare__switcher { display: flex; flex-wrap: wrap; gap: 10px; }
.material-compare__switcher button { border: 1px solid var(--line); background: var(--white); color: var(--graphite); padding: 10px 14px; border-radius: 999px; cursor: pointer; }
.material-compare__switcher button.is-active { background: var(--navy); color: var(--white); }
.material-compare__card { padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.material-compare__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.material-compare__grid div { padding: 12px; border-radius: var(--radius); background: var(--soft); }
.material-compare__grid strong { display: block; color: var(--navy); margin-bottom: 6px; }
.model-card { padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, var(--white), var(--soft)); box-shadow: var(--shadow); }
.model-card__visual { position: relative; height: 260px; margin-top: 16px; border-radius: var(--radius); overflow: hidden; background: radial-gradient(circle at top left, rgba(0,99,246,.18), rgba(255,255,255,0)); border: 1px solid var(--line); }
.model-card__visual::before { content: ''; position: absolute; inset: 18px; border: 2px solid rgba(15,35,69,.2); transform: perspective(700px) rotateX(58deg) rotateZ(-18deg); border-radius: 26px; }
.model-card__visual::after { content: '3D'; position: absolute; inset: auto 24px 24px auto; padding: 10px 14px; border-radius: 999px; background: var(--navy); color: var(--white); font-weight: 800; }
.product-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }

.calc-layout, .contact-layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items: start; }
.form, .calculator, .calc-result, .contact-card {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(221,230,240,.95);
  border-radius: 24px;
  background: linear-gradient(145deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: var(--shadow);
}
label { display: grid; gap: 8px; margin-bottom: 16px; color: var(--graphite); font-weight: 800; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 15px;
  color: var(--ink);
  background: var(--white);
}
textarea { min-height: 132px; resize: vertical; }
.check { display: flex; align-items: center; gap: 10px; }
.check input { width: auto; }
.form-message {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: #fff6dc;
  color: #7a4b00;
  font-weight: 750;
}
.form-message--success {
  background: #e7f8ef;
  color: #12633d;
}
.modal-form-source { display: none; }

/* Reusable specialist assistance CTA */
.help-cta-section { padding: 28px 0; background: #f4f8fb; }
.help-cta { display: grid; grid-template-columns: 54px minmax(0, 1fr) auto; gap: 22px; align-items: center; padding: 26px 30px; border: 1px solid #d9e3ec; border-radius: 14px; background: #f8fbfd; box-shadow: 0 12px 30px rgba(11,31,58,.07); }
.help-cta__icon { display: grid; width: 54px; height: 54px; place-items: center; border: 1px solid rgba(0,99,246,.22); border-radius: 12px; color: #0063f6; background: #eef6ff; }
.help-cta__icon svg { width: 27px; height: 27px; }
.help-cta__eyebrow { margin: 0 0 6px; color: #0063f6; font-size: 10px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.help-cta h2 { margin: 0; color: var(--navy); font-size: clamp(24px,2.2vw,32px); line-height: 1.12; }
.help-cta__copy > p:last-child { max-width: 690px; margin: 9px 0 0; color: #59677b; font-size: 15px; line-height: 1.55; }
.help-cta__actions { display: flex; align-items: center; gap: 18px; }
.help-cta__actions .btn { min-height: 48px; white-space: nowrap; }
.help-cta__actions .btn:hover { border-color: #0063f6; color: #0063f6; background: transparent; box-shadow: none; transform: translateY(-1px); }
.help-cta__actions .btn:focus-visible, .help-cta__actions a:focus-visible { outline: 2px solid #0063f6; outline-offset: 3px; }
.help-cta__actions .btn:active { transform: translateY(0); }
.help-cta__actions > div { display: grid; gap: 2px; min-width: 150px; }
.help-cta__actions span { color: #7a8798; font-size: 11px; }
.help-cta__actions > div > a { color: var(--navy); font-size: 16px; font-weight: 900; white-space: nowrap; }
.help-cta__actions > div > a:hover { color: #0063f6; }
.help-cta-section--vertical { padding: 0; background: transparent; }
.help-cta-section--vertical .help-cta { display: flex; min-height: 390px; max-width: 400px; flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 18px; padding: 30px; border-color: #d8e4ef; background: #f5f9fd; box-shadow: 0 14px 32px rgba(11,31,58,.08); }
.help-cta-section--vertical .help-cta__icon { flex: 0 0 auto; }
.help-cta-section--vertical .help-cta__copy > p:last-child { font-size: 15px; }
.help-cta-section--vertical .help-cta__actions { display: grid; margin-top: auto; gap: 22px; text-align: center; }
.help-cta-section--vertical .help-cta__actions .btn { width: 100%; }
.help-cta-section--vertical .help-cta__actions > div { justify-items: center; }
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(7, 18, 38, .76);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}
.modal-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}
.modal-card {
  width: min(760px, 100%);
  max-height: min(90vh, 920px);
  overflow: auto;
  padding: 28px;
  border-radius: 20px;
  background: linear-gradient(145deg, var(--white), #f7faff);
  border: 1px solid rgba(217,226,239,.9);
  box-shadow: 0 28px 90px rgba(15,35,69,.24);
  transform: translateY(16px) scale(.98);
  transition: transform .25s ease;
}
.modal-backdrop.is-open .modal-card {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: sticky;
  top: 0;
  float: right;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: var(--soft);
  color: var(--navy);
  cursor: pointer;
}
.modal-header { margin-bottom: 18px; }
.modal-header h3 { font-size: clamp(24px, 3vw, 32px); margin-top: 8px; }
.modal-header p { margin: 0; }
.modal-progress { height: 8px; border-radius: 999px; background: var(--soft); overflow: hidden; margin-bottom: 18px; }
.modal-progress span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--blue), var(--yellow)); transition: width .25s ease; }
.modal-step { display: none; }
.modal-step.is-active { display: block; animation: modalFade .25s ease; }
.modal-step-grid { display: grid; gap: 12px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.modal-step-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  transition: border-color .2s ease, transform .2s ease;
}
.modal-step-card:hover { transform: translateY(-2px); border-color: rgba(0,99,246,.32); }
.modal-step-card.is-selected { border-color: var(--blue); background: #f5fbff; }
.modal-steps-actions, .modal-actions { display: flex; justify-content: space-between; gap: 10px; margin-top: 22px; }
.modal-actions { justify-content: flex-end; }
.modal-upload-zone {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px dashed rgba(0,99,246,.35);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(0,99,246,.08), rgba(255,193,7,.08));
  text-align: center;
}
.modal-upload-zone.is-dragover { border-color: var(--navy); background: rgba(15,35,69,.08); }
.modal-upload-list { display: flex; flex-wrap: wrap; gap: 8px; }
.file-pill {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 800;
}
.modal-success {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(16,185,129,.12), rgba(0,99,246,.08));
  border: 1px solid rgba(16,185,129,.22);
}
.modal-success strong { font-size: 26px; color: var(--navy); }
.modal-success p { margin: 0; }
.calc-result strong { display: block; margin: 8px 0 14px; color: var(--navy); font-size: clamp(38px, 5vw, 64px); line-height: 1; }
.calc-result span { color: var(--blue); font-weight: 900; text-transform: uppercase; letter-spacing: .1em; font-size: 12px; }

.faq { display: grid; gap: 12px; }
.faq details { border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); padding: 20px 22px; }
.faq summary { cursor: pointer; font-weight: 850; color: var(--navy); }
.logo-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.logo-row span { padding: 22px; text-align: center; text-transform: uppercase; letter-spacing: .08em; font-size: 12px; font-weight: 900; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); color: var(--graphite); }

.site-footer { background: linear-gradient(135deg, #08162b 0%, #0B1F3A 100%); color: var(--white); position: relative; overflow: hidden; }
.site-footer::before {
  content: "";
  position: absolute;
  inset: -20% auto auto 60%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,99,246,.22), transparent 70%);
  pointer-events: none;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr 1fr;
  gap: 30px;
  padding: 66px 0;
}
.footer__brand p, .footer__links a, .footer__links p, .footer__subscribe p { color: rgba(255,255,255,.76); margin: 8px 0 0; }
.footer__brand .logo { color: var(--white); margin-bottom: 16px; }
.footer__links h3, .footer__subscribe h3 { font-size: 16px; margin-bottom: 14px; }
.footer__links a { display: block; margin-top: 8px; }
.social-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--white);
  transition: transform .2s ease, background .2s ease;
}
.social-links a:hover { transform: translateY(-2px); background: rgba(0,99,246,.18); }
.footer__subscribe form { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.footer__subscribe input { min-width: 220px; border-color: rgba(255,255,255,.16); background: rgba(255,255,255,.08); color: var(--white); }
.footer__subscribe input::placeholder { color: rgba(255,255,255,.56); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255,255,255,.62);
  flex-wrap: wrap;
}
.footer__bottom a { color: inherit; }

.preloader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: var(--navy);
  transition: opacity .45s ease, visibility .45s ease;
}
.preloader span { width: 54px; height: 54px; border: 4px solid rgba(255,255,255,.2); border-top-color: var(--yellow); border-radius: 50%; animation: spin 1s linear infinite; }
body.is-loaded .preloader { opacity: 0; visibility: hidden; }

.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
}
.error-page__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, .98fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}
.error-page__links {
  margin-top: 28px;
  padding: 20px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
}
.error-page__links h3 { margin-bottom: 12px; font-size: 18px; }
.error-page__links-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.error-page__links-list a {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  color: var(--white);
  font-weight: 800;
}
.error-page__visual {
  display: flex;
  justify-content: center;
}
.error-page__illustration {
  position: relative;
  width: min(430px, 100%);
  aspect-ratio: 1;
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(0,99,246,.06));
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 24px 80px rgba(0,0,0,.24);
  overflow: hidden;
  animation: floatDecor 6s ease-in-out infinite;
}
.error-page__orbit {
  position: absolute;
  inset: 24px;
  border: 2px dashed rgba(255,255,255,.24);
  border-radius: 50%;
  animation: spin 16s linear infinite;
}
.error-page__panel {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  display: grid;
  gap: 6px;
  padding: 24px 28px;
  border-radius: 24px;
  background: rgba(255,255,255,.94);
  color: var(--navy);
  text-align: center;
  box-shadow: 0 18px 60px rgba(15,35,69,.16);
}
.error-page__panel span { font-size: 44px; font-weight: 900; line-height: 1; }
.error-page__panel strong { font-size: 18px; }

.home-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 132px 0 64px;
  overflow: hidden;
}
.home-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  background: linear-gradient(180deg, rgba(11,31,58,0), rgba(245,247,250,.12));
  pointer-events: none;
}
.home-hero__decor {
  position: absolute;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(0,99,246,.26);
  transform: rotate(22deg);
  animation: floatDecor 8s ease-in-out infinite;
}
.home-hero__decor--one { top: 12%; right: -180px; }
.home-hero__decor--two { left: -220px; bottom: -180px; border-color: rgba(255,201,40,.24); animation-delay: -3s; }
.home-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, .97fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
}
.home-hero__proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: rgba(255,255,255,.86);
  font-weight: 850;
}
.home-hero__proof span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
}
.home-hero__visual {
  position: relative;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
  box-shadow: 0 34px 110px rgba(0,0,0,.32);
}
.home-hero__visual img { width: 100%; border-radius: 20px; }
.hero-badge {
  position: absolute;
  min-width: 150px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 16px;
  background: rgba(255,255,255,.95);
  color: var(--navy);
  box-shadow: var(--shadow);
}
.hero-badge strong { display: block; font-size: 28px; line-height: 1; }
.hero-badge span { color: var(--muted); font-size: 12px; font-weight: 800; }
.hero-badge--top { top: 34px; left: -34px; }
.hero-badge--bottom { right: -24px; bottom: 34px; }

.trust-strip { padding: 28px 0; background: var(--white); border-bottom: 1px solid var(--line); }
.trust-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.trust-strip__grid div { padding: 24px; border-radius: 18px; background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%); border: 1px solid rgba(221,230,240,.95); box-shadow: 0 10px 30px rgba(11,31,58,.05); }
.trust-strip__grid strong { display: block; color: var(--navy); font-size: clamp(30px, 4vw, 52px); line-height: 1; }
.trust-strip__grid span { color: var(--muted); font-weight: 750; }

.advantage-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.advantage-card {
  padding: 24px;
  min-height: 250px;
  border: 1px solid rgba(221,230,240,.95);
  border-radius: 22px;
  background: linear-gradient(145deg, #ffffff 0%, #f7fbff 100%);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.advantage-card:hover { transform: translateY(-6px); border-color: rgba(0,99,246,.34); box-shadow: var(--shadow); }
.advantage-card img { width: 48px; height: 48px; margin-bottom: 22px; transition: transform .25s ease; }
.advantage-card:hover img { transform: rotate(6deg) scale(1.08); }

.direction-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.direction-card {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 24px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}
.direction-card--dark { background: var(--navy); color: var(--white); border-color: rgba(255,255,255,.16); }
.direction-card img { border-radius: var(--radius); aspect-ratio: 1 / 1; object-fit: cover; }
.direction-card span { color: var(--blue); font-weight: 950; }
.direction-card .btn { margin-top: 24px; }

.image-panel { margin: 0; padding: 12px; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.image-panel img { width: 100%; border-radius: var(--radius); }

.production-gallery {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 18px;
}
.production-gallery figure {
  position: relative;
  margin: 0;
  min-height: 250px;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,.08);
}
.production-gallery__large { grid-row: span 2; }
.production-gallery img { width: 100%; height: 100%; object-fit: cover; }
.production-gallery figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.9);
  color: var(--navy);
  font-weight: 850;
}
.production-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 26px;
}
.production-note p { max-width: 760px; }

.material-showcase { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.material-reveal {
  position: relative;
  min-height: 260px;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease, background .28s ease;
}
.material-reveal::after {
  content: "";
  position: absolute;
  inset: auto -20% -42% -20%;
  height: 70%;
  background: linear-gradient(135deg, rgba(0,99,246,.18), rgba(255,193,7,.34));
  transition: transform .28s ease;
}
.material-reveal span { position: relative; z-index: 1; color: var(--blue); font-weight: 950; }
.material-reveal h3, .material-reveal p { position: relative; z-index: 1; }
.material-reveal p { max-height: 0; opacity: 0; overflow: hidden; transition: max-height .28s ease, opacity .28s ease; }
.material-reveal:hover { transform: translateY(-8px); box-shadow: var(--shadow); background: #fbfdff; }
.material-reveal:hover::after { transform: translateY(-34px); }
.material-reveal:hover p { max-height: 180px; opacity: 1; }

.home-slider {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  gap: 16px;
  align-items: center;
}
.home-slider__track, .review-slider { position: relative; min-height: 360px; }
.home-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateX(18px);
  transition: opacity .35s ease, transform .35s ease;
}
.home-slide.is-active { opacity: 1; pointer-events: auto; transform: translateX(0); }
.home-slide img { width: 100%; border-radius: var(--radius); background: var(--white); }
.home-slide h3 { margin-top: 18px; font-size: clamp(28px, 4vw, 46px); }
.slider-btn {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
  color: var(--white);
  font-size: 34px;
  cursor: pointer;
}

.live-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.live-card {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 28px rgba(15,35,69,.06);
}
.live-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: var(--radius); }
.live-card time { display: block; margin-top: 16px; color: var(--blue); font-size: 12px; font-weight: 900; }

.calculator--mini { box-shadow: var(--shadow); }
.mini-result {
  margin: 8px 0 18px;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--soft);
}
.mini-result span { color: var(--muted); font-weight: 850; }
.mini-result strong { display: block; color: var(--navy); font-size: 38px; line-height: 1; margin-top: 8px; }

.catalog-panel {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 36px;
  align-items: center;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  background: rgba(255,255,255,.07);
}
.catalog-form { box-shadow: none; }

.production-timeline {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border: 1px solid rgba(255,255,255,.14);
  background:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px),
    rgba(255,255,255,.04);
  background-size: 44px 44px;
}
.production-step {
  position: relative;
  min-height: 250px;
  padding: 28px 22px;
  border-right: 1px solid rgba(255,255,255,.14);
}
.production-step:last-child { border-right: 0; }
.production-step::after {
  content: "";
  position: absolute;
  top: 42px;
  right: -8px;
  width: 14px;
  height: 14px;
  border-top: 1px solid rgba(255,255,255,.46);
  border-right: 1px solid rgba(255,255,255,.46);
  transform: rotate(45deg);
  background: var(--navy);
  z-index: 1;
}
.production-step:last-child::after { display: none; }
.production-step span {
  display: block;
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .12em;
}
.production-step i {
  display: block;
  width: 38px;
  height: 38px;
  margin: 32px 0 28px;
  border: 1px solid rgba(0,99,246,.52);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(255,255,255,.45) calc(50% - 1px), rgba(255,255,255,.45) calc(50% + 1px), transparent calc(50% + 1px)),
    linear-gradient(transparent calc(50% - 1px), rgba(255,255,255,.45) calc(50% - 1px), rgba(255,255,255,.45) calc(50% + 1px), transparent calc(50% + 1px));
}
.production-step h3 {
  color: var(--white);
  font-size: 18px;
  line-height: 1.22;
}
.production-step p {
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.55;
}

.materials-section .material-reveal {
  min-height: 0;
  padding: 0;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 8px 28px rgba(11,31,58,.06);
}
.materials-section .material-reveal::after { display: none; }
.materials-section .material-reveal img {
  width: 100%;
  height: 138px;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  transition: transform var(--transition-slow);
}
.materials-section .material-reveal span,
.materials-section .material-reveal h3,
.materials-section .material-reveal p {
  position: relative;
  z-index: 1;
}
.materials-section .material-reveal span {
  display: block;
  margin: 18px 20px 10px;
  color: var(--blue);
  font-size: 12px;
  letter-spacing: .12em;
}
.materials-section .material-reveal h3 {
  margin: 0 20px 10px;
  font-size: 19px;
}
.materials-section .material-reveal p {
  max-height: none;
  min-height: 62px;
  margin: 0 20px 22px;
  opacity: 1;
  color: var(--muted);
  font-size: 14px;
}
.materials-section .material-reveal:hover {
  transform: translateY(-5px);
  border-color: rgba(0,99,246,.34);
}
.materials-section .material-reveal:hover img { transform: scale(1.04); }

.home-card-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.home-card-grid .service-card,
.home-card-grid .product-card {
  padding: 0;
  overflow: hidden;
}
.home-card-grid .service-card::before,
.home-card-grid .product-card::before { display: none; }
.home-card-grid .service-card > img,
.home-card-grid .product-card > img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 0;
  margin: 0;
  transition: transform var(--transition-slow);
}
.home-card-grid .service-card:hover > img,
.home-card-grid .product-card:hover > img { transform: scale(1.04); }
.home-card-grid .service-card h3,
.home-card-grid .product-card h3 {
  margin: 22px 22px 10px;
  font-size: 20px;
}
.home-card-grid .service-card p,
.home-card-grid .product-card p {
  margin: 0 22px 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.home-card-grid .text-link {
  margin: auto 22px 24px;
}

.live-card {
  overflow: hidden;
}
.live-card img {
  border-radius: 12px;
}
.live-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}
.live-card__meta time {
  margin: 0;
}
.live-card__meta span {
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--navy);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.live-card h3 {
  margin-top: 12px;
  font-size: 19px;
}
.live-card p {
  color: var(--muted);
  font-size: 14px;
}

.document-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.document-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 20px;
  align-items: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 8px 28px rgba(11,31,58,.06);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.document-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,99,246,.34);
  box-shadow: var(--shadow);
}
.document-card img {
  width: 96px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}
.document-card span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
}
.document-card h3 {
  margin: 8px 0 8px;
  font-size: 20px;
}
.document-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.review-slider { min-height: 270px; }
.review-card {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: scale(.98);
  transition: opacity .35s ease, transform .35s ease;
}
.review-card.is-active { opacity: 1; transform: scale(1); }
.review-card p { font-size: clamp(22px, 3vw, 34px); line-height: 1.25; color: var(--navy); }
.review-card strong { margin-top: 22px; color: var(--graphite); }
.review-card span { color: var(--muted); }

.certificate-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.certificate-card {
  margin: 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.certificate-card img { width: 100%; border-radius: var(--radius); }
.certificate-card figcaption { margin-top: 14px; color: var(--navy); font-weight: 850; }
.cta-panel__inner--big { padding-block: clamp(44px, 7vw, 86px); }
.contact-map img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }

@keyframes floatDecor {
  0%, 100% { transform: translateY(0) rotate(22deg); }
  50% { transform: translateY(-18px) rotate(27deg); }
}

.about-hero {
  min-height: 86vh;
  display: flex;
  align-items: center;
  padding: 128px 0 64px;
  overflow: hidden;
}
.about-hero__grid {
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}
.about-hero__media {
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
  box-shadow: 0 34px 110px rgba(0,0,0,.32);
}
.about-hero__media img { width: 100%; border-radius: var(--radius); }

.story-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(32px, 6vw, 78px);
}
.story-timeline {
  display: grid;
  gap: 18px;
  position: relative;
}
.story-timeline::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: var(--line);
}
.story-timeline article {
  position: relative;
  padding: 0 0 0 58px;
}
.story-timeline span {
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--navy);
  font-size: 11px;
  font-weight: 950;
}

.mission-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 22px; }
.mission-card {
  min-height: 360px;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}
.mission-card--dark { background: var(--navy); color: var(--white); border-color: rgba(255,255,255,.14); }
.value-list { display: grid; gap: 14px; }
.value-list div {
  display: grid;
  gap: 5px;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--soft);
}
.value-list b { color: var(--navy); font-size: 22px; }
.value-list span { color: var(--muted); font-weight: 750; }

.production-deep__grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 28px;
}
.production-video {
  padding: 12px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
  box-shadow: 0 28px 90px rgba(0,0,0,.25);
}
.production-video video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  background: #071226;
}
.feature-list--dark div {
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
}
.feature-list--dark span { color: rgba(255,255,255,.86); }
.production-gallery--wide { grid-template-columns: 1.25fr 1fr 1fr; }

.equipment-spec-grid { display: grid; gap: 18px; }
.equipment-spec {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 26px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 28px rgba(15,35,69,.06);
  transition: transform .25s ease, box-shadow .25s ease;
}
.equipment-spec:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.equipment-spec img { width: 100%; border-radius: var(--radius); background: var(--soft); }
.equipment-spec ul { margin: 18px 0 0; padding-left: 20px; color: var(--graphite); font-weight: 750; }
.equipment-spec li + li { margin-top: 8px; }

.quality-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.quality-timeline article {
  position: relative;
  min-height: 300px;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
}
.quality-timeline article::after {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 0;
  height: 5px;
  background: var(--blue);
}
.quality-timeline span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 950;
}

.certificate-card--button {
  display: grid;
  text-align: left;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
}
.certificate-card--button:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.certificate-card--button span { margin-top: 14px; color: var(--navy); font-weight: 850; }
.calculators-hero { padding: 132px 0 72px; }
.calculators-hero__grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr); gap: clamp(30px, 6vw, 70px); align-items: center; }
.calculators-hero__panel { padding: 24px; border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius); background: rgba(255,255,255,.08); box-shadow: 0 28px 90px rgba(0,0,0,.24); }
.calculators-hero__stats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 20px; }
.calculators-hero__stats div { padding: 16px; border-radius: var(--radius); background: rgba(255,255,255,.08); }
.calculators-hero__stats strong { display: block; color: var(--yellow); font-size: 28px; line-height: 1; }
.calculators-hero__stats span { color: rgba(255,255,255,.74); font-weight: 800; }
.calculators-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.calc-card { padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 12px 36px rgba(15,35,69,.08); }
.calc-card__head { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 18px; }
.calc-card form { display: grid; gap: 12px; }
.calc-card .btn { margin-top: 4px; }
.calc-result { margin-top: 18px; padding: 18px; border-radius: var(--radius); background: var(--soft); }
.calc-result strong { display: block; margin-top: 8px; color: var(--navy); font-size: clamp(28px, 4vw, 44px); line-height: 1; }
.image-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(7,18,38,.78);
}
.image-modal.is-open { display: grid; }
.image-modal__dialog {
  position: relative;
  width: min(680px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 34px 110px rgba(0,0,0,.32);
}
.image-modal__dialog img { width: 100%; border-radius: var(--radius); background: var(--soft); }
.image-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
}

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.team-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 28px rgba(15,35,69,.06);
}
.team-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: var(--radius); background: var(--soft); margin-bottom: 18px; }
.team-card p { color: var(--blue); font-weight: 850; }
.team-card span { display: block; margin-top: 10px; color: var(--muted); font-weight: 700; }
.partners-deep .logo-row { grid-template-columns: repeat(2, 1fr); }

.vacancy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.vacancy-card {
  display: grid;
  align-content: start;
  min-height: 320px;
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 8px 28px rgba(15,35,69,.06);
}
.vacancy-card span { color: var(--blue); font-size: 12px; font-weight: 950; text-transform: uppercase; letter-spacing: .1em; }
.vacancy-card .btn { margin-top: auto; }

.catalog-hero {
  padding: 132px 0 64px;
}
.catalog-hero__grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(28px, 6vw, 70px);
  align-items: end;
}
.service-filter {
  display: grid;
  grid-template-columns: 1.1fr .95fr .95fr;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
  box-shadow: 0 28px 90px rgba(0,0,0,.22);
}
.service-filter label { color: rgba(255,255,255,.88); margin: 0; }
.service-filter input, .service-filter select { border-color: rgba(255,255,255,.18); }
.catalog-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}
.catalog-toolbar strong {
  color: var(--navy);
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1;
}
.catalog-toolbar span { color: var(--muted); font-weight: 800; }
.service-catalog-grid { display: grid; gap: 20px; }
.service-catalog-card {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 26px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 28px rgba(15,35,69,.06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-catalog-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0,99,246,.35);
  box-shadow: var(--shadow);
}
.service-catalog-card[hidden] { display: none; }
.service-catalog-card > img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--soft);
}
.service-catalog-card__body {
  display: grid;
  align-content: start;
}
.service-catalog-card h2 {
  margin-top: 12px;
  font-size: clamp(28px, 3.5vw, 44px);
}
.service-catalog-card dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 22px 0;
}
.service-catalog-card dl div {
  padding: 14px;
  border-radius: var(--radius);
  background: var(--soft);
}
.service-catalog-card dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.service-catalog-card dd {
  margin: 6px 0 0;
  color: var(--navy);
  font-weight: 850;
}
.service-catalog-card .btn { justify-self: start; }
.empty-state {
  margin-top: 20px;
  padding: 34px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  text-align: center;
}

.service-detail-hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 132px 0 64px;
}
.service-detail-hero__grid {
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}
.service-detail-hero__media {
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
  box-shadow: 0 34px 110px rgba(0,0,0,.32);
}
.service-detail-hero__media img { width: 100%; border-radius: var(--radius); }
.service-detail-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 26px;
}
.service-detail-facts div {
  padding: 16px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
}
.service-detail-facts strong { display: block; color: var(--yellow); font-size: 24px; line-height: 1; }
.service-detail-facts span { color: rgba(255,255,255,.74); font-size: 13px; font-weight: 750; }

.service-intro {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(30px, 6vw, 78px);
  align-items: center;
}
.service-intro__images {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 16px;
}
.service-intro__images img {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--soft);
  box-shadow: var(--shadow);
}
.service-intro__images img:nth-child(2) { margin-top: 42px; }

.application-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.application-card {
  position: relative;
  min-height: 260px;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 8px 28px rgba(15,35,69,.06);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.application-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.application-card img { width: 100%; aspect-ratio: 16 / 11; object-fit: cover; border-radius: var(--radius); background: var(--soft); }
.application-card h3 { margin-top: 18px; }
.material-showcase--dark .material-reveal { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.14); color: var(--white); }
.material-showcase--dark .material-reveal p { color: rgba(255,255,255,.76); }

.tech-compare {
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  gap: 18px;
}
.compare-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 28px rgba(15,35,69,.06);
}
.compare-card--featured { background: var(--navy); color: var(--white); border-color: rgba(255,255,255,.14); }
.compare-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: var(--radius); margin-bottom: 18px; background: var(--soft); }
.compare-card ul { margin: 18px 0 0; padding-left: 20px; color: inherit; font-weight: 750; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.process-grid article {
  padding: 16px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
}
.process-grid img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: var(--radius); background: var(--white); margin-bottom: 18px; }
.process-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 950;
  margin-bottom: 14px;
}

/* Industrial Premium foundation layer */
html { scroll-padding-top: 104px; }
body {
  color: var(--ink);
  background: var(--page);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body::before {
  background:
    linear-gradient(90deg, rgba(11,31,58,.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(11,31,58,.028) 1px, transparent 1px),
    radial-gradient(circle at 82% 0%, rgba(0,99,246,.12), transparent 30%);
  background-size: 72px 72px, 72px 72px, auto;
  opacity: .7;
}
.container { width: var(--container); margin-inline: auto; }
.section { padding: clamp(88px, 9vw, 136px) 0; }
.section-head { max-width: 900px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-muted { background: var(--soft); }
.section-dark {
  background:
    radial-gradient(circle at 12% 0%, rgba(0,99,246,.16), transparent 30%),
    linear-gradient(135deg, #07162a 0%, var(--navy) 58%, #061225 100%);
}
h1, h2, h3 {
  letter-spacing: -0.035em;
  color: inherit;
}
h1 {
  font-size: clamp(48px, 7.2vw, 92px);
  line-height: .98;
  max-width: 1060px;
}
h2 {
  font-size: clamp(34px, 4.6vw, 62px);
  line-height: 1.02;
}
h3 {
  font-size: clamp(20px, 2.1vw, 26px);
  line-height: 1.16;
}
p { color: var(--muted); }
.lead {
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
  max-width: 800px;
}
.eyebrow {
  color: var(--blue);
  font-weight: 900;
  letter-spacing: .18em;
}
a:hover { color: var(--blue); }
img { border-style: none; }

.site-header {
  z-index: var(--z-header);
  background: rgba(7, 18, 38, .78);
  border-bottom: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 60px rgba(4,13,28,.12);
  backdrop-filter: blur(22px) saturate(140%);
}
.site-header.is-scrolled {
  background: rgba(7, 18, 38, .92);
  box-shadow: 0 22px 80px rgba(4,13,28,.24);
}
.site-header.is-scrolled .header__inner { height: 76px; }
.header__inner { height: 92px; gap: var(--space-6); }
.logo { color: var(--white); letter-spacing: .14em; }
.logo span { color: var(--white); }
.header__desktop {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: var(--space-5);
  margin-left: var(--space-8);
}
.nav {
  justify-content: center;
  color: rgba(255,255,255,.78);
  gap: 8px;
}
.nav a {
  padding: 10px 12px;
  border: 1px solid transparent;
  color: inherit;
}
.nav a::after { display: none; }
.nav a[aria-current="page"], .nav a:hover {
  color: var(--white);
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.12);
}
.header__meta {
  color: rgba(255,255,255,.62);
  text-align: right;
}
.header__meta a { color: var(--white); }
.menu-toggle {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: var(--white);
}
.mobile-menu {
  z-index: var(--z-menu);
  top: 98px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(7,18,38,.96);
  color: var(--white);
  box-shadow: var(--shadow-strong);
}
.mobile-menu__nav a,
.mobile-menu__contacts a {
  color: var(--white);
  border-bottom-color: rgba(255,255,255,.12);
}
.mobile-menu__contacts { color: rgba(255,255,255,.66); }

.btn {
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 900;
  letter-spacing: .01em;
  box-shadow: none;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition),
    background var(--transition),
    color var(--transition),
    opacity var(--transition);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}
.btn:active { transform: translateY(0); }
.btn:disabled,
.btn[disabled],
.btn.is-disabled {
  opacity: .48;
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
}
.btn--accent {
  background: linear-gradient(135deg, var(--yellow) 0%, #FFE071 100%);
  color: #111827;
  border-color: rgba(255,201,40,.7);
}
.btn--accent:hover {
  background: linear-gradient(135deg, #FFD447 0%, var(--yellow) 100%);
  color: #111827;
  box-shadow: 0 18px 44px rgba(255,201,40,.26);
}
.btn--dark {
  background: linear-gradient(135deg, var(--navy) 0%, #102D52 100%);
  color: var(--white);
  border-color: rgba(0,99,246,.22);
}
.btn--dark:hover {
  color: var(--white);
  border-color: rgba(0,99,246,.5);
  box-shadow: 0 18px 48px rgba(11,31,58,.22);
}
.btn--light {
  background: var(--white);
  color: var(--navy);
  border-color: var(--border);
}
.btn--light:hover {
  background: var(--soft);
  color: var(--navy);
  border-color: rgba(0,99,246,.35);
}
.btn--ghost {
  color: var(--white);
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.2);
}
.btn--ghost:hover {
  color: var(--white);
  background: rgba(255,255,255,.12);
  border-color: rgba(0,99,246,.38);
  box-shadow: 0 18px 44px rgba(4,13,28,.2);
}
.btn--sm {
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 13px;
}

.info-card,
.service-card,
.product-card,
.project-card,
.article-card,
.equipment-card,
.advantage-card,
.certificate-card,
.team-card,
.vacancy-card,
.calc-card,
.contact-card,
.service-catalog-card,
.equipment-spec,
.compare-card,
.application-card,
.live-card,
.review-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition),
    background var(--transition);
}
.info-card:hover,
.service-card:hover,
.product-card:hover,
.project-card:hover,
.article-card:hover,
.equipment-card:hover,
.advantage-card:hover,
.certificate-card:hover,
.team-card:hover,
.vacancy-card:hover,
.calc-card:hover,
.contact-card:hover,
.service-catalog-card:hover,
.equipment-spec:hover,
.compare-card:hover,
.application-card:hover,
.live-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,99,246,.36);
  box-shadow: var(--shadow);
}
.project-card img,
.article-card img,
.equipment-card img,
.team-card img,
.certificate-card img,
.service-catalog-card > img,
.equipment-spec img,
.compare-card img,
.application-card img,
.live-card img,
.process-grid img {
  overflow: hidden;
  transition: transform var(--transition-slow), filter var(--transition);
}
.project-card:hover img,
.article-card:hover img,
.equipment-card:hover img,
.team-card:hover img,
.certificate-card:hover img,
.service-catalog-card:hover > img,
.equipment-spec:hover img,
.compare-card:hover img,
.application-card:hover img,
.live-card:hover img,
.process-grid article:hover img {
  transform: scale(1.035);
}
.card-icon { border-radius: 12px; background: var(--soft); padding: 8px; }
.tag {
  background: rgba(0,99,246,.12);
  color: var(--color-brand-blue);
  border: 1px solid rgba(0,99,246,.22);
}

.form,
.calculator,
.calc-result,
.contact-card,
.modal-card,
.modal-upload-zone {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
label {
  color: var(--graphite);
  font-weight: 850;
  letter-spacing: -.01em;
}
input,
select,
textarea {
  min-height: 50px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #FFFFFF;
  color: var(--ink);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
input:hover,
select:hover,
textarea:hover { border-color: rgba(0,99,246,.35); }
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0,99,246,.16);
}
input::placeholder,
textarea::placeholder { color: #9CA3AF; }
input[type="checkbox"] {
  min-height: auto;
  width: 18px;
  height: 18px;
  accent-color: var(--yellow);
}
.check { align-items: flex-start; }
.modal-backdrop {
  z-index: var(--z-modal);
  background: rgba(3, 10, 24, .72);
  backdrop-filter: blur(12px);
}
.modal-card {
  border-color: rgba(255,255,255,.2);
  box-shadow: var(--shadow-strong);
}
.modal-close {
  border-radius: 10px;
  background: var(--navy);
  color: var(--white);
}
.modal-upload-zone {
  border-style: dashed;
  border-color: rgba(0,99,246,.45);
  background: linear-gradient(135deg, rgba(0,99,246,.08), rgba(255,201,40,.08));
}

.site-footer {
  background:
    radial-gradient(circle at 78% 0%, rgba(0,99,246,.18), transparent 30%),
    linear-gradient(135deg, #07162A 0%, var(--navy) 62%, #061225 100%);
  border-top: 1px solid rgba(255,255,255,.1);
}
.footer__grid {
  grid-template-columns: 1.3fr .75fr .75fr 1.15fr;
  gap: clamp(24px, 4vw, 52px);
  padding: clamp(64px, 8vw, 92px) 0;
}
.footer__brand .logo { color: var(--white); }
.footer__links h3,
.footer__subscribe h3 {
  color: var(--white);
  letter-spacing: -.01em;
}
.footer__brand p,
.footer__links a,
.footer__links p,
.footer__subscribe p {
  color: rgba(255,255,255,.7);
}
.footer__links a:hover { color: var(--blue); }
.footer__subscribe form {
  padding: 10px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
}
.footer__subscribe input {
  min-width: min(260px, 100%);
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.14);
  color: var(--white);
}
.footer__bottom {
  color: rgba(255,255,255,.62);
  border-top-color: rgba(255,255,255,.12);
}

/* Home top redesign: ITAS reference direction */
body[data-page="home"] {
  overflow-x: hidden;
}
body[data-page="home"] .site-header {
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(226,232,240,.95);
  box-shadow: 0 12px 34px rgba(11,31,58,.08);
  backdrop-filter: blur(18px) saturate(150%);
}
body[data-page="home"] .site-header.is-scrolled {
  background: rgba(255,255,255,.98);
  box-shadow: 0 18px 48px rgba(11,31,58,.12);
}
body[data-page="home"] .site-header .logo,
body[data-page="home"] .site-header .logo span,
body[data-page="home"] .site-header .nav,
body[data-page="home"] .site-header .header__meta,
body[data-page="home"] .site-header .header__meta a {
  color: var(--navy);
}
body[data-page="home"] .site-header .nav a {
  color: rgba(11,31,58,.76);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: .04em;
}
body[data-page="home"] .site-header .nav a[aria-current="page"],
body[data-page="home"] .site-header .nav a:hover {
  color: var(--navy);
  background: rgba(11,31,58,.045);
  border-color: rgba(11,31,58,.08);
}
body[data-page="home"] .site-header .btn--ghost,
body[data-page="home"] .site-header .btn--light {
  color: var(--navy);
  background: var(--white);
  border-color: rgba(11,31,58,.18);
}
body[data-page="home"] .site-header .btn--ghost:hover,
body[data-page="home"] .site-header .btn--light:hover {
  color: var(--navy);
  background: var(--soft);
  border-color: rgba(0,99,246,.36);
}
body[data-page="home"] .site-header .header__actions [data-modal="drawing"] { order: 1; }
body[data-page="home"] .site-header .header__actions [data-modal="estimate"] { order: 2; }
body[data-page="home"] .site-header .header__meta {
  display: block;
  min-width: 142px;
  white-space: nowrap;
}
body[data-page="home"] .site-header .header__meta a {
  display: none;
}
body[data-page="home"] .site-header .header__meta a[href^="tel:"] {
  display: block;
  font-size: 13px;
  font-weight: 900;
}
body[data-page="home"] .site-header .menu-toggle {
  color: var(--navy);
  background: var(--white);
  border-color: rgba(11,31,58,.16);
}

/* Compact desktop header: a single-line phone number without an e-mail block. */
@media (min-width: 981px) {
  .site-header .header__desktop {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 14px;
  }
  .site-header .nav { gap: 2px; font-size: 11px; letter-spacing: .035em; }
  .site-header .nav a { padding: 9px 9px; }
  .site-header .header__meta {
    display: flex;
    align-items: center;
    min-width: max-content;
    color: rgba(255,255,255,.78);
    font-size: 12px;
    line-height: 1;
    text-align: left;
    white-space: nowrap;
  }
  .site-header .header__meta a { color: inherit; }
  .site-header .header__actions { gap: 8px; }
  .site-header .header__actions .btn--sm { min-height: 40px; padding: 9px 13px; font-size: 12px; }
}

/* About keeps the home header's proportions, with a dark industrial colorway. */
body[data-page="about"] .site-header .nav a { color: rgba(255,255,255,.78); }
body[data-page="about"] .site-header .nav a[aria-current="page"],
body[data-page="about"] .site-header .nav a:hover { color: var(--yellow); }
body[data-page="about"] .site-header .header__meta { color: rgba(255,255,255,.82); }

body[data-page="home"] .home-hero {
  min-height: 720px;
  padding: 96px 0 0;
  background:
    linear-gradient(90deg, rgba(4,14,30,.98) 0%, rgba(7,21,42,.9) 42%, rgba(7,21,42,.5) 66%, rgba(7,21,42,.2) 100%),
    linear-gradient(180deg, #07162A 0%, #0B1F3A 100%);
}
body[data-page="home"] .home-hero::after {
  height: 1px;
  background: rgba(255,255,255,.16);
}
body[data-page="home"] .home-hero__grid {
  min-height: 624px;
  grid-template-columns: minmax(470px, .9fr) minmax(430px, 1.1fr);
  gap: clamp(20px, 3vw, 48px);
  align-items: stretch;
}
body[data-page="home"] .home-hero__content {
  align-self: center;
  padding: clamp(38px, 5vw, 70px) 0 clamp(34px, 5vw, 64px);
  min-width: 0;
}
body[data-page="home"] .home-hero .eyebrow {
  color: rgba(255,255,255,.72);
  letter-spacing: .16em;
}
body[data-page="home"] .home-hero h1 {
  max-width: 760px;
  margin-top: 18px;
  font-size: clamp(44px, 5.2vw, 78px);
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: normal;
  text-wrap: balance;
}
body[data-page="home"] .home-hero .lead {
  max-width: 600px;
  margin-top: 26px;
  color: rgba(255,255,255,.82);
  font-size: clamp(16px, 1.15vw, 20px);
}
body[data-page="home"] .home-hero .hero__actions {
  margin-top: 34px;
  gap: 14px;
}
body[data-page="home"] .home-hero .btn {
  min-width: 210px;
  justify-content: center;
}
body[data-page="home"] .home-hero .btn--accent {
  background: rgba(11,31,58,.62);
  color: var(--white);
  border-color: rgba(0,99,246,.5);
  box-shadow: none;
}
body[data-page="home"] .home-hero .btn--accent:hover {
  background: var(--yellow);
  color: #111827;
  border-color: var(--yellow);
}
body[data-page="home"] .home-hero .btn--ghost {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.45);
}
body[data-page="home"] .home-hero__visual {
  align-self: stretch;
  display: flex;
  margin-right: calc(50% - 50vw);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}
body[data-page="home"] .home-hero__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7,21,42,.72) 0%, rgba(7,21,42,.2) 20%, rgba(7,21,42,.03) 54%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(0,0,0,.22));
  pointer-events: none;
}
body[data-page="home"] .home-hero__visual img {
  width: 100%;
  min-height: 100%;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  filter: saturate(.9) contrast(1.08);
}
body[data-page="home"] .home-hero__slider {
  display: inline-grid;
  grid-template-columns: auto 72px auto;
  align-items: center;
  gap: 12px;
  margin-top: clamp(34px, 5vw, 58px);
  color: rgba(255,255,255,.82);
  font-size: 13px;
  font-weight: 850;
}
body[data-page="home"] .home-hero__slider i {
  display: block;
  height: 1px;
  background: rgba(255,255,255,.56);
}

body[data-page="home"] .trust-strip {
  padding: 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
body[data-page="home"] .trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
body[data-page="home"] .trust-strip__item {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 98px;
  padding: 18px 22px;
  border-right: 1px solid var(--line);
}
body[data-page="home"] .trust-strip__item:last-child { border-right: 0; }
body[data-page="home"] .trust-strip__item img {
  width: 30px;
  height: 30px;
  opacity: .92;
}
body[data-page="home"] .trust-strip__item h3 {
  margin: 0;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.2;
  text-transform: uppercase;
}
body[data-page="home"] .trust-strip__item p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

body[data-page="home"] .direction-section {
  padding-top: clamp(42px, 5vw, 68px);
  padding-bottom: clamp(40px, 5vw, 72px);
  background: var(--white);
}
body[data-page="home"] .direction-section .section-head {
  margin-bottom: 24px;
}
body[data-page="home"] .direction-section .section-head h2,
body[data-page="home"] .about-home h2 {
  color: var(--navy);
  font-size: clamp(30px, 3.4vw, 48px);
  text-transform: uppercase;
}
body[data-page="home"] .direction-grid {
  gap: 20px;
}
body[data-page="home"] .direction-card {
  display: block;
  padding: 0;
  overflow: hidden;
  border-radius: 8px;
  border-color: rgba(203,213,225,.9);
  background: var(--white);
  box-shadow: none;
}
body[data-page="home"] .direction-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,99,246,.38);
  box-shadow: 0 18px 48px rgba(11,31,58,.1);
}
body[data-page="home"] .direction-card img {
  width: 100%;
  height: clamp(190px, 18vw, 260px);
  aspect-ratio: auto;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
  transition: transform var(--transition-slow);
}
body[data-page="home"] .direction-card:hover img { transform: scale(1.04); }
body[data-page="home"] .direction-card div {
  padding: 28px 32px 30px;
}
body[data-page="home"] .direction-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  text-transform: uppercase;
  font-size: 22px;
}
body[data-page="home"] .direction-card p {
  max-width: 460px;
  margin-bottom: 18px;
}

body[data-page="home"] .about-home {
  padding-top: clamp(42px, 5vw, 72px);
  padding-bottom: clamp(52px, 6vw, 86px);
  background: var(--white);
}
body[data-page="home"] .about-home .split {
  grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr);
  gap: clamp(28px, 5vw, 66px);
  align-items: center;
}
body[data-page="home"] .about-home p {
  max-width: 620px;
  color: var(--muted);
}
body[data-page="home"] .about-home .btn {
  margin-top: 16px;
}
body[data-page="home"] .about-home .image-panel {
  padding: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: none;
}
body[data-page="home"] .about-home .image-panel img {
  display: block;
  width: 100%;
  min-height: 300px;
  border-radius: 0;
  object-fit: cover;
}

body[data-page="home"] .production-timeline {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border: 1px solid rgba(255,255,255,.14);
  background:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px),
    rgba(255,255,255,.04);
  background-size: 44px 44px;
}
body[data-page="home"] .production-step {
  position: relative;
  min-height: 250px;
  padding: 28px 22px;
  border-right: 1px solid rgba(255,255,255,.14);
}
body[data-page="home"] .production-step:last-child { border-right: 0; }
body[data-page="home"] .production-step::after {
  content: "";
  position: absolute;
  top: 42px;
  right: -8px;
  width: 14px;
  height: 14px;
  border-top: 1px solid rgba(255,255,255,.46);
  border-right: 1px solid rgba(255,255,255,.46);
  transform: rotate(45deg);
  background: var(--navy);
}
body[data-page="home"] .production-step:last-child::after { display: none; }
body[data-page="home"] .production-step span {
  display: block;
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .12em;
}
body[data-page="home"] .production-step i {
  display: block;
  width: 38px;
  height: 38px;
  margin: 32px 0 28px;
  border: 1px solid rgba(0,99,246,.52);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(255,255,255,.45) calc(50% - 1px), rgba(255,255,255,.45) calc(50% + 1px), transparent calc(50% + 1px)),
    linear-gradient(transparent calc(50% - 1px), rgba(255,255,255,.45) calc(50% - 1px), rgba(255,255,255,.45) calc(50% + 1px), transparent calc(50% + 1px));
}
body[data-page="home"] .production-step h3 {
  color: var(--white);
  font-size: 18px;
}
body[data-page="home"] .production-step p {
  color: rgba(255,255,255,.72);
  font-size: 14px;
}

body[data-page="home"] .materials-section .material-reveal {
  min-height: 0;
  padding: 0;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 8px 28px rgba(11,31,58,.06);
}
body[data-page="home"] .materials-section .material-reveal::after { display: none; }
body[data-page="home"] .materials-section .material-reveal img {
  width: 100%;
  height: 138px;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  transition: transform var(--transition-slow);
}
body[data-page="home"] .materials-section .material-reveal span {
  display: block;
  margin: 18px 20px 10px;
  color: var(--blue);
  font-size: 12px;
  letter-spacing: .12em;
}
body[data-page="home"] .materials-section .material-reveal h3 {
  margin: 0 20px 10px;
  font-size: 19px;
}
body[data-page="home"] .materials-section .material-reveal p {
  max-height: none;
  min-height: 62px;
  margin: 0 20px 22px;
  opacity: 1;
  color: var(--muted);
  font-size: 14px;
}
body[data-page="home"] .materials-section .material-reveal:hover img { transform: scale(1.04); }

body[data-page="home"] .home-card-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
body[data-page="home"] .home-card-grid .service-card,
body[data-page="home"] .home-card-grid .product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 0;
  overflow: hidden;
}
body[data-page="home"] .home-card-grid .service-card::before,
body[data-page="home"] .home-card-grid .product-card::before { display: none; }
body[data-page="home"] .home-card-grid .service-card > img,
body[data-page="home"] .home-card-grid .product-card > img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 0;
  margin: 0;
  transition: transform var(--transition-slow);
}
body[data-page="home"] .home-card-grid .service-card:hover > img,
body[data-page="home"] .home-card-grid .product-card:hover > img { transform: scale(1.04); }
body[data-page="home"] .home-card-grid .service-card h3,
body[data-page="home"] .home-card-grid .product-card h3 {
  margin: 22px 22px 10px;
  font-size: 20px;
}
body[data-page="home"] .home-card-grid .service-card p,
body[data-page="home"] .home-card-grid .product-card p {
  margin: 0 22px 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
body[data-page="home"] .home-card-grid .text-link { margin: auto 22px 24px; }

body[data-page="home"] .live-card { overflow: hidden; }
body[data-page="home"] .live-card img { border-radius: 12px; }
body[data-page="home"] .live-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}
body[data-page="home"] .live-card__meta time { margin: 0; }
body[data-page="home"] .live-card__meta span {
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--navy);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
body[data-page="home"] .live-card h3 { margin-top: 12px; font-size: 19px; }
body[data-page="home"] .live-card p { color: var(--muted); font-size: 14px; }

body[data-page="home"] .document-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
body[data-page="home"] .document-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 20px;
  align-items: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 8px 28px rgba(11,31,58,.06);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
body[data-page="home"] .document-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,99,246,.34);
  box-shadow: var(--shadow);
}
body[data-page="home"] .document-card img {
  width: 96px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}
body[data-page="home"] .document-card span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
}
body[data-page="home"] .document-card h3 { margin: 8px 0; font-size: 20px; }
body[data-page="home"] .document-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

body[data-page="home"] .materials-section {
  padding-top: clamp(64px, 7vw, 104px);
  background: var(--white);
}
body[data-page="home"] .material-showcase {
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 14px;
}
body[data-page="home"] .materials-section .material-reveal {
  border-radius: 8px;
}
body[data-page="home"] .materials-section .material-reveal img {
  height: 122px;
}
body[data-page="home"] .materials-section .material-reveal h3 {
  font-size: 17px;
}
body[data-page="home"] .materials-section .material-reveal p {
  min-height: 86px;
  font-size: 13px;
}

body[data-page="home"] .projects-preview {
  padding-block: clamp(76px, 8vw, 116px);
}
body[data-page="home"] .projects-preview__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 30px;
}
body[data-page="home"] .projects-preview__head h2 {
  max-width: 820px;
}
body[data-page="home"] .text-link--light {
  color: var(--white);
}
body[data-page="home"] .projects-magazine {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, .82fr);
  gap: 18px;
}
body[data-page="home"] .project-feature,
body[data-page="home"] .project-teaser {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
}
body[data-page="home"] .project-feature {
  min-height: 560px;
  border-radius: 10px;
}
body[data-page="home"] .project-feature img,
body[data-page="home"] .project-teaser img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9) contrast(1.06);
  transition: transform var(--transition-slow);
}
body[data-page="home"] .project-feature:hover img,
body[data-page="home"] .project-teaser:hover img { transform: scale(1.04); }
body[data-page="home"] .project-feature::after,
body[data-page="home"] .project-teaser::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,18,38,.04), rgba(7,18,38,.88));
}
body[data-page="home"] .project-feature div,
body[data-page="home"] .project-teaser div {
  position: absolute;
  z-index: 1;
  left: 24px;
  right: 24px;
  bottom: 24px;
}
body[data-page="home"] .project-feature span,
body[data-page="home"] .project-teaser span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}
body[data-page="home"] .project-feature h3,
body[data-page="home"] .project-teaser h3 {
  color: var(--white);
  letter-spacing: 0;
}
body[data-page="home"] .project-feature h3 {
  max-width: 620px;
  font-size: clamp(30px, 4vw, 52px);
}
body[data-page="home"] .project-feature p,
body[data-page="home"] .project-teaser p {
  max-width: 620px;
  color: rgba(255,255,255,.78);
}
body[data-page="home"] .project-stack {
  display: grid;
  gap: 18px;
}
body[data-page="home"] .project-teaser {
  min-height: 174px;
  border-radius: 8px;
}
body[data-page="home"] .project-teaser h3 {
  font-size: 22px;
}
body[data-page="home"] .project-teaser p {
  margin-bottom: 0;
  font-size: 14px;
}

body[data-page="home"] .reviews-section {
  background: var(--white);
}
body[data-page="home"] .review-slider {
  min-height: 300px;
}
body[data-page="home"] .review-card {
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow);
}
body[data-page="home"] .review-card span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}
body[data-page="home"] .review-card p {
  max-width: 900px;
  color: var(--ink);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.45;
}
body[data-page="home"] .review-card strong {
  display: block;
  margin-top: 24px;
  color: var(--navy);
  font-size: 18px;
}
body[data-page="home"] .review-card small {
  color: var(--muted);
  font-weight: 800;
}

body[data-page="home"] .certificate-grid--home {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
body[data-page="home"] .certificate-grid--home .certificate-card {
  padding: 22px;
  border-radius: 10px;
  background: var(--white);
}
body[data-page="home"] .certificate-grid--home img {
  width: 100%;
  max-height: 220px;
  object-fit: contain;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
body[data-page="home"] .certificate-grid--home figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  color: var(--navy);
}

body[data-page="home"] .calc-tool {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
body[data-page="home"] .calc-tool__text p {
  max-width: 620px;
}
body[data-page="home"] .calc-tool__text .btn {
  margin-top: 18px;
}
body[data-page="home"] .calc-tool__form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow);
}
body[data-page="home"] .calc-tool__form label,
body[data-page="home"] .catalog-cta__form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 900;
}
body[data-page="home"] .calc-tool__form .mini-result,
body[data-page="home"] .calc-tool__form .btn {
  grid-column: 1 / -1;
}
body[data-page="home"] .calc-tool__form .mini-result {
  margin: 4px 0 0;
}

body[data-page="home"] .catalog-section {
  padding-block: clamp(64px, 7vw, 102px);
}
body[data-page="home"] .catalog-cta {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .85fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    rgba(255,255,255,.05);
  background-size: 48px 48px;
}
body[data-page="home"] .catalog-cta h2 {
  max-width: 780px;
}
body[data-page="home"] .catalog-cta p {
  color: rgba(255,255,255,.76);
}
body[data-page="home"] .catalog-cta__form {
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 10px;
  background: rgba(255,255,255,.08);
}
body[data-page="home"] .catalog-cta__form label {
  color: var(--white);
}
body[data-page="home"] .catalog-cta__form input {
  background: rgba(255,255,255,.95);
}
body[data-page="home"] .catalog-cta__form .check {
  display: flex;
  color: rgba(255,255,255,.76);
}

body[data-page="home"] .contacts-home {
  padding-block: clamp(62px, 7vw, 96px);
  background: var(--white);
}
body[data-page="home"] .contacts-compact {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(360px, 1.12fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: stretch;
}
body[data-page="home"] .contacts-compact__info {
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--soft);
}
body[data-page="home"] .contacts-compact dl {
  display: grid;
  gap: 16px;
  margin: 24px 0;
}
body[data-page="home"] .contacts-compact dl div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
body[data-page="home"] .contacts-compact dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}
body[data-page="home"] .contacts-compact dd {
  margin: 0;
  color: var(--navy);
  font-weight: 900;
}
body[data-page="home"] .contacts-compact__map {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--soft);
}
body[data-page="home"] .contacts-compact__map img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

body[data-page="home"] .trust-strip--premium {
  padding: 0;
  background: #fff;
  border-block: 1px solid var(--line);
}
body[data-page="home"] .trust-strip--premium .trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
}
body[data-page="home"] .trust-strip--premium .trust-strip__item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 118px;
  padding: 26px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 0;
  background: #fff;
}
body[data-page="home"] .trust-strip--premium .trust-strip__item:last-child { border-right: 0; }
body[data-page="home"] .trust-strip__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(11,31,58,.18);
  border-radius: 50%;
}
body[data-page="home"] .trust-strip__icon img {
  width: 24px;
  height: 24px;
  opacity: .9;
}
body[data-page="home"] .trust-strip--premium h3 {
  margin: 0;
  color: var(--navy);
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: .02em;
  text-transform: uppercase;
}
body[data-page="home"] .trust-strip--premium p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

body[data-page="home"] .material-showcase--engineering {
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
}
body[data-page="home"] .material-showcase--engineering .material-reveal {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: none;
}
body[data-page="home"] .material-showcase--engineering .material-reveal img {
  height: 76px;
  border: 1px solid var(--line);
  border-radius: 6px;
  object-fit: cover;
  filter: saturate(.72) contrast(1.08);
}
body[data-page="home"] .material-showcase--engineering .material-reveal span {
  margin: 14px 0 8px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .08em;
}
body[data-page="home"] .material-showcase--engineering .material-reveal h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 16px;
  letter-spacing: 0;
}
body[data-page="home"] .material-showcase--engineering .material-reveal ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}
body[data-page="home"] .material-showcase--engineering .material-reveal li {
  position: relative;
  padding-left: 13px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}
body[data-page="home"] .material-showcase--engineering .material-reveal li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
}

body[data-page="home"] .review-slider--premium {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  gap: 18px;
  align-items: center;
  min-height: auto;
}
body[data-page="home"] .review-slider__viewport {
  position: relative;
  min-height: 360px;
}
body[data-page="home"] .review-slider--premium .review-card {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(24px) scale(.96);
  pointer-events: none;
  padding: clamp(30px, 4vw, 52px);
  border: 1px solid rgba(11,31,58,.12);
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(0,99,246,.08) 1px, transparent 1px),
    linear-gradient(rgba(0,99,246,.08) 1px, transparent 1px),
    #fff;
  background-size: 56px 56px;
  box-shadow: 0 24px 70px rgba(11,31,58,.12);
  transition: opacity .35s ease, transform .35s ease;
}
body[data-page="home"] .review-slider--premium .review-card.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}
body[data-page="home"] .review-slider--premium .review-card span {
  display: inline-flex;
  margin: 0 12px 22px 0;
  color: var(--navy);
  font-size: 14px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}
body[data-page="home"] .review-slider--premium .review-card em {
  display: inline-flex;
  padding: 6px 10px;
  border: 1px solid rgba(0,99,246,.3);
  border-radius: 999px;
  color: var(--blue);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}
body[data-page="home"] .review-slider--premium .review-card p {
  max-width: 900px;
  color: var(--ink);
  font-size: clamp(21px, 2.2vw, 31px);
  line-height: 1.42;
}
body[data-page="home"] .review-slider__arrow {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  font-size: 30px;
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}
body[data-page="home"] .review-slider__arrow:hover {
  transform: translateY(-2px);
  border-color: rgba(0,99,246,.4);
  background: var(--soft);
}
body[data-page="home"] .review-slider__dots {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 9px;
}
body[data-page="home"] .review-slider__dots button {
  width: 34px;
  height: 3px;
  border: 0;
  border-radius: 999px;
  background: #CBD5E1;
  cursor: pointer;
}
body[data-page="home"] .review-slider__dots button.is-active {
  background: var(--navy);
}

body[data-page="home"] .certificate-grid--home .certificate-card {
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 10px 32px rgba(11,31,58,.07);
}
body[data-page="home"] .certificate-grid--home img {
  max-height: 330px;
  padding: 0;
  border-radius: 8px;
  object-fit: cover;
  object-position: top;
  background: #fff;
}
body[data-page="home"] .catalog-cta--compact {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  padding: clamp(26px, 4vw, 44px);
  border-radius: 10px;
}
body[data-page="home"] .catalog-cta--compact .catalog-cta__form {
  padding: 18px;
}

body[data-page="home"] .contacts-compact--premium {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
}
body[data-page="home"] .contacts-compact--premium .contacts-compact__info {
  padding: clamp(24px, 4vw, 36px);
  border-radius: 8px;
  background: #fff;
}
body[data-page="home"] .contacts-compact--premium .contacts-compact__map {
  border-radius: 8px;
}
body[data-page="home"] .contacts-compact--premium .contacts-compact__map img {
  min-height: 320px;
  filter: saturate(.82) contrast(1.04);
}

/* Final premium replacements for selected home sections */
body[data-page="home"] .materials-section {
  padding-block: clamp(48px, 6vw, 82px);
}
body[data-page="home"] .materials-section .section-head {
  margin-bottom: 24px;
}
body[data-page="home"] .material-showcase--engineering {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
}
body[data-page="home"] .material-showcase--engineering .material-reveal {
  min-height: 0;
  padding: 10px;
  border: 1px solid rgba(203,213,225,.9);
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
}
body[data-page="home"] .material-showcase--engineering .material-reveal:hover {
  transform: translateY(-3px);
  border-color: rgba(0,99,246,.38);
  box-shadow: 0 14px 34px rgba(11,31,58,.08);
}
body[data-page="home"] .material-showcase--engineering .material-reveal img {
  display: block;
  width: 100%;
  height: 54px;
  border: 1px solid var(--line);
  border-radius: 6px;
  object-fit: cover;
  filter: saturate(.68) contrast(1.08);
}
body[data-page="home"] .material-showcase--engineering .material-reveal span {
  display: block;
  margin: 10px 0 5px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .08em;
}
body[data-page="home"] .material-showcase--engineering .material-reveal h3 {
  margin: 0 0 7px;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.15;
  letter-spacing: 0;
}
body[data-page="home"] .material-showcase--engineering .material-reveal ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
body[data-page="home"] .material-showcase--engineering .material-reveal li {
  display: none;
}
body[data-page="home"] .material-showcase--engineering .material-reveal li:first-child {
  display: block;
  position: relative;
  padding-left: 12px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.3;
}
body[data-page="home"] .material-showcase--engineering .material-reveal li:first-child::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
}

body[data-page="home"] .materials-section {
  padding-block: clamp(46px, 5vw, 72px);
}
body[data-page="home"] .section-head--materials-mini {
  margin-bottom: 16px;
}
body[data-page="home"] .section-head--materials-mini h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.2;
  letter-spacing: .01em;
  text-transform: uppercase;
}

body[data-page="home"] .materials-mini {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid #DDE5EF;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 26px rgba(11,31,58,.04);
}
body[data-page="home"] .materials-mini__item {
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 190px;
  padding: 18px 12px 16px;
  border-right: 1px solid #E6ECF4;
  text-align: center;
}
body[data-page="home"] .materials-mini__item:last-child {
  border-right: 0;
}
body[data-page="home"] .materials-mini__item h3 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: 0;
}
body[data-page="home"] .materials-mini__sample {
  width: 70px;
  height: 48px;
  margin-bottom: 18px;
  transform: skewY(-22deg) rotate(-8deg);
  border: 1px solid rgba(11,31,58,.12);
  box-shadow: 0 10px 18px rgba(11,31,58,.13);
}
body[data-page="home"] .materials-mini__sample--steel {
  background: linear-gradient(135deg, #6b7280 0%, #cbd5e1 48%, #374151 100%);
}
body[data-page="home"] .materials-mini__sample--stainless {
  background: linear-gradient(135deg, #f8fafc 0%, #aab4c0 44%, #ffffff 67%, #64748b 100%);
}
body[data-page="home"] .materials-mini__sample--aluminum {
  background: linear-gradient(135deg, #f8fafc 0%, #d7dee8 44%, #ffffff 66%, #9aa7b6 100%);
}
body[data-page="home"] .materials-mini__sample--brass {
  border-radius: 50%;
  transform: none;
  background: radial-gradient(circle at 38% 28%, #ffe8a3 0%, #d39a24 48%, #8c5512 100%);
}
body[data-page="home"] .materials-mini__sample--copper {
  border-radius: 50%;
  transform: none;
  background: radial-gradient(circle at 38% 28%, #ffd0a8 0%, #c66a3d 45%, #7c351e 100%);
}
body[data-page="home"] .materials-mini__sample--titanium {
  border-radius: 50%;
  transform: none;
  background: radial-gradient(circle at 38% 28%, #e5e7eb 0%, #7b8492 52%, #2f3a4a 100%);
}
body[data-page="home"] .materials-mini__scale {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 86px;
  margin: 0 0 14px;
}
body[data-page="home"] .materials-mini__scale::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: #D8E0EA;
}
body[data-page="home"] .materials-mini__scale span {
  position: relative;
  z-index: 1;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--navy);
}
body[data-page="home"] .materials-mini__item p {
  margin: 0;
  color: #64748B;
  font-size: 11px;
  line-height: 1.35;
}
body[data-page="home"] .materials-mini__item strong {
  color: var(--navy);
  font-weight: 950;
}

body[data-page="home"] .reviews-section {
  padding-block: clamp(58px, 7vw, 96px);
}
body[data-page="home"] .review-slider--premium {
  grid-template-columns: 48px minmax(0, 1fr) 48px;
}
body[data-page="home"] .review-slider__viewport {
  position: relative;
  min-height: 360px;
  overflow: hidden;
}
body[data-page="home"] .review-slider--premium .review-card {
  left: 50%;
  right: auto;
  width: min(820px, 78%);
  opacity: 0;
  transform: translateX(-50%) scale(.88);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 26px 70px rgba(11,31,58,.14);
}
body[data-page="home"] .review-slider--premium .review-card.is-active {
  z-index: 3;
  opacity: 1;
  transform: translateX(-50%) scale(1);
}
body[data-page="home"] .review-slider--premium .review-card.is-prev,
body[data-page="home"] .review-slider--premium .review-card.is-next {
  z-index: 1;
  opacity: .32;
  pointer-events: none;
}
body[data-page="home"] .review-slider--premium .review-card.is-prev {
  transform: translateX(-94%) scale(.84);
}
body[data-page="home"] .review-slider--premium .review-card.is-next {
  transform: translateX(-6%) scale(.84);
}

body[data-page="home"] .certificates-section {
  padding-block: clamp(44px, 5vw, 72px);
}
body[data-page="home"] .section-head--certificates {
  margin-bottom: 18px;
}
body[data-page="home"] .section-head--certificates h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.2;
  letter-spacing: .01em;
  text-transform: uppercase;
}
body[data-page="home"] .certificate-grid--home {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(16px, 2.4vw, 24px);
  border: 1px solid #DDE5EF;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(11,31,58,.04);
}
body[data-page="home"] .certificate-grid--home .certificate-card {
  display: grid;
  gap: 14px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
}
body[data-page="home"] .certificate-card__preview {
  display: grid;
  place-items: center;
  min-height: 190px;
  padding: 16px;
  border: 1px solid #E1E8F0;
  border-radius: 8px;
  background: #F8FAFC;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
body[data-page="home"] .certificate-card__preview img {
  width: auto;
  height: 150px;
  max-width: 100%;
  padding: 0;
  border: 6px solid #0B3B75;
  border-radius: 2px;
  background: #fff;
  object-fit: cover;
  object-position: top;
  box-shadow: 0 12px 22px rgba(11,31,58,.16);
}
body[data-page="home"] .certificate-card__preview--green img { border-color: #3D7657; }
body[data-page="home"] .certificate-card__preview--gold img { border-color: #B9873B; }
body[data-page="home"] .certificate-card__preview--silver img { border-color: #AAB3BF; }
body[data-page="home"] .certificate-card--document:hover .certificate-card__preview {
  transform: translateY(-3px);
  border-color: rgba(0,99,246,.42);
  box-shadow: 0 14px 28px rgba(11,31,58,.08);
}
body[data-page="home"] .certificate-grid--home figcaption {
  display: grid;
  gap: 8px;
  margin: 0;
}
body[data-page="home"] .certificate-grid--home figcaption strong {
  color: var(--navy);
  font-size: 13px;
  line-height: 1.25;
  font-weight: 950;
}
body[data-page="home"] .certificate-grid--home figcaption span {
  min-height: 30px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}
body[data-page="home"] .certificate-card__download {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  color: #0B3B75;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
}
body[data-page="home"] .certificate-card__download svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body[data-page="home"] .catalog-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(60px, 6vw, 92px);
  background: #041427;
}
body[data-page="home"] .catalog-bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/home/catalog-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
body[data-page="home"] .catalog-cta__media {
  position: relative;
  margin: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  align-self: stretch;
  min-height: 320px;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(rgba(148,163,184,.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148,163,184,.1) 1px, transparent 1px);
  background-size: 34px 34px;
}
body[data-page="home"] .catalog-cta__media img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: saturate(.86) contrast(1.05);
}
body[data-page="home"] .catalog-cta--compact h2 {
  margin: 0 0 24px;
  color: var(--white);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.12;
}
body[data-page="home"] .catalog-book {
  position: relative;
  z-index: 2;
  margin: 0;
  align-self: center;
}
body[data-page="home"] .catalog-book img {
  display: block;
  width: min(100%, 560px);
  height: auto;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, .35));
}
body[data-page="home"] .catalog-cta__content {
  max-width: 500px;
}
body[data-page="home"] .catalog-cta__form {
  display: grid;
  gap: 14px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}
body[data-page="home"] .catalog-cta__form label {
  display: grid;
  gap: 6px;
  color: rgba(255,255,255,.78);
  font-size: 13px;
}
body[data-page="home"] .catalog-cta__form label > span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
body[data-page="home"] .catalog-cta__form input {
  min-height: 58px;
  color: var(--white);
  border: 1px solid rgba(148,163,184,.38);
  border-radius: 8px;
  background: rgba(2,9,23,.42);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.03);
}
body[data-page="home"] .catalog-cta__form input::placeholder {
  color: rgba(255,255,255,.56);
}
body[data-page="home"] .catalog-cta__form input:focus {
  border-color: rgba(0,99,246,.78);
  box-shadow: 0 0 0 3px rgba(0,99,246,.14);
}
body[data-page="home"] .catalog-cta__form .check {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.78);
  font-size: 14px;
}
body[data-page="home"] .catalog-cta__form .check input {
  width: 22px;
  height: 22px;
  min-height: 0;
  accent-color: var(--yellow);
}
body[data-page="home"] .catalog-cta__form .btn {
  min-height: 64px;
  justify-content: center;
  gap: 18px;
  width: 100%;
  margin-top: 8px;
  border-color: rgba(255,201,40,.88);
  border-radius: 8px;
  color: #111827;
  font-size: 16px;
  font-weight: 950;
  box-shadow: 0 16px 34px rgba(255,201,40,.18);
}
body[data-page="home"] .catalog-cta__form .btn span {
  font-size: 28px;
  line-height: 1;
}

body[data-page="home"] .catalog-banner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 52% 48%;
  align-items: center;
  min-height: 560px;
  max-width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
body[data-page="home"] .catalog-banner .catalog-form {
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  padding: 34px clamp(44px, 4vw, 60px) 34px 0;
}
body[data-page="home"] .catalog-banner .catalog-form h2 {
  max-width: 430px;
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(30px, 2.1vw, 36px);
  line-height: 1.14;
  font-weight: 850;
}
body[data-page="home"] .catalog-banner .catalog-form > .btn {
  display: none;
}
body[data-page="home"] .catalog-banner .catalog-cta__form {
  gap: 0;
  width: 100%;
  padding: clamp(22px, 2.5vw, 30px);
  border: 1px solid rgba(118,151,190,.24);
  border-radius: 12px;
  background: rgba(1, 10, 22, .16);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.018);
}
body[data-page="home"] .catalog-banner .catalog-cta__form input[type="text"],
body[data-page="home"] .catalog-banner .catalog-cta__form input[type="tel"],
body[data-page="home"] .catalog-banner .catalog-cta__form input[type="email"],
body[data-page="home"] .catalog-banner .catalog-cta__form input:not([type]) {
  width: 100%;
  height: 54px;
  min-height: 54px;
  margin-bottom: 12px;
  padding: 0 20px;
  color: #fff;
  background: rgba(2, 12, 24, .45);
  border: 1px solid rgba(118, 151, 190, .38);
  border-radius: 8px;
  font-size: 16px;
  box-sizing: border-box;
}
body[data-page="home"] .catalog-banner .catalog-cta__form input::placeholder {
  color: rgba(255,255,255,.55);
}
body[data-page="home"] .catalog-banner .catalog-cta__form .check {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 6px 0 20px;
  color: rgba(255,255,255,.85);
  font-size: 14px;
}
body[data-page="home"] .catalog-banner .catalog-cta__form .check input {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  min-height: 0;
  margin: 0;
}
body[data-page="home"] .catalog-banner .catalog-cta__form .btn {
  width: 100%;
  height: 60px;
  min-height: 60px;
  margin: 0;
  border: none;
  border-radius: 8px;
  background: linear-gradient(180deg, #FFD84A 0%, #F4B800 100%);
  color: #07111F;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(244,184,0,.18);
}

body[data-page="home"] .contacts-home {
  padding-block: clamp(50px, 6vw, 78px);
}
body[data-page="home"] .contacts-compact--premium {
  grid-template-columns: minmax(0, .9fr) minmax(320px, 520px);
  gap: 18px;
}
body[data-page="home"] .contacts-compact--premium .contacts-compact__info {
  border-radius: 8px;
  box-shadow: 0 12px 36px rgba(11,31,58,.06);
}
body[data-page="home"] .contacts-compact--premium .contacts-compact__map img {
  min-height: 300px;
  object-fit: cover;
  filter: saturate(.82) contrast(1.06);
}

body[data-page="home"] .contacts-home {
  padding-block: clamp(38px, 5vw, 66px);
  background: var(--white);
}
body[data-page="home"] .contacts-compact--premium {
  display: grid;
  grid-template-columns: minmax(260px, 330px) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid #DDE5EF;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(11,31,58,.04);
}
body[data-page="home"] .contacts-compact--premium .contacts-compact__info {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
body[data-page="home"] .contacts-compact--premium h2 {
  margin: 0 0 28px;
  color: var(--navy);
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.2;
  letter-spacing: .01em;
  text-transform: uppercase;
}
body[data-page="home"] .contacts-list {
  display: grid;
  gap: 22px;
  margin: 0 0 28px;
}
body[data-page="home"] .contacts-list div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  padding: 0;
  border: 0;
}
body[data-page="home"] .contacts-list dt {
  display: contents;
}
body[data-page="home"] .contacts-list dt > span:last-child {
  grid-column: 2;
  color: var(--navy);
  font-size: 15px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: none;
}
body[data-page="home"] .contacts-list__icon {
  grid-column: 1;
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: #F3F6FA;
}
body[data-page="home"] .contacts-list__icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: #334155;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
body[data-page="home"] .contacts-list dd {
  grid-column: 2;
  margin: 4px 0 0;
  color: #5F6B7A;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 700;
}
body[data-page="home"] .contacts-list dd a {
  color: inherit;
}
body[data-page="home"] .contacts-compact__button {
  width: min(100%, 210px);
  justify-content: space-between;
  min-height: 54px;
  color: var(--navy);
  border-color: #D7DFEA;
  background: var(--white);
  box-shadow: 0 8px 18px rgba(11,31,58,.04);
}
body[data-page="home"] .contacts-compact__button span {
  font-size: 24px;
  line-height: 1;
}
body[data-page="home"] .contacts-compact--premium .contacts-compact__map {
  margin: 0;
  overflow: hidden;
  border: 1px solid #DDE5EF;
  border-radius: 10px;
  background: #F8FAFC;
  box-shadow: none;
}
body[data-page="home"] .contacts-compact--premium .contacts-compact__map img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  filter: none;
}

body[data-page="home"] .contacts-home {
  padding-block: clamp(50px, 6vw, 82px);
  background: #F7F9FC;
}
body[data-page="home"] .contacts-compact--premium {
  display: block;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
body[data-page="home"] .contacts-home__title {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.15;
  letter-spacing: .01em;
  text-transform: uppercase;
}
body[data-page="home"] .contacts-map {
  width: 100%;
  height: 260px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(15,35,60,.08);
  border-radius: 16px;
  background: #EEF3F8;
}
body[data-page="home"] .contacts-map img,
body[data-page="home"] .contacts-map iframe,
body[data-page="home"] .contacts-map ymaps,
body[data-page="home"] .contacts-map > * {
  width: 100%;
  height: 100%;
}
body[data-page="home"] .contacts-map img {
  display: block;
  object-fit: cover;
}
body[data-page="home"] .contacts-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}
body[data-page="home"] .home-contact-card {
  min-height: 130px;
  padding: 22px;
  border: 1px solid rgba(15,35,60,.08);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15,35,60,.04);
}
body[data-page="home"] .home-contact-card__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
body[data-page="home"] .home-contact-card__icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: #F1F5F9;
}
body[data-page="home"] .home-contact-card__icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #334155;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
body[data-page="home"] .home-contact-card h3 {
  margin: 0;
  color: #1D2B3A;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 900;
}
body[data-page="home"] .home-contact-card p {
  margin: 0;
  color: #344256;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 650;
}
body[data-page="home"] .home-contact-card a {
  color: #0B1F3A;
  font-weight: 850;
}
body[data-page="home"] .home-contact-card > a {
  display: inline-flex;
  margin-top: 12px;
  color: #0B3B75;
  font-size: 13px;
}

body[data-page="home"] .trust-strip--premium {
  background: linear-gradient(180deg, #fff 0%, #fbfcfe 100%);
  border-block: 1px solid rgba(203,213,225,.72);
}
body[data-page="home"] .trust-strip--premium .trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
}
body[data-page="home"] .trust-strip--premium .trust-strip__item {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 132px;
  padding: 28px 26px;
  border-right: 1px solid rgba(203,213,225,.72);
  background: transparent;
}

/* Home page corporate refinement */
body[data-page="home"] .about-home--refined {
  padding-block: clamp(58px, 7vw, 96px);
  background: linear-gradient(180deg, #fff 0%, #F7F9FC 100%);
}
body[data-page="home"] .about-home__inner {
  display: grid;
  gap: clamp(26px, 4vw, 44px);
}
body[data-page="home"] .about-home__copy {
  max-width: 860px;
}
body[data-page="home"] .about-home__copy h2 {
  max-width: 760px;
  margin-bottom: 18px;
}
body[data-page="home"] .about-home__copy p {
  max-width: 760px;
}
body[data-page="home"] .about-home__copy .btn {
  width: fit-content;
  margin-top: 16px;
}
.about-home__action,
.projects-preview__mobile-action { display: none; }
body[data-page="home"] .about-home__image {
  width: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(11,31,58,.12);
  border-radius: 18px;
  background: #E8EEF6;
  box-shadow: 0 22px 58px rgba(11,31,58,.12);
}
body[data-page="home"] .about-home__image img {
  width: 100%;
  min-height: clamp(320px, 38vw, 520px);
  object-fit: cover;
}

body[data-page="home"] .materials-section--cards {
  padding-block: clamp(58px, 7vw, 92px);
  background: #fff;
}
body[data-page="home"] .section-head--materials {
  max-width: 760px;
  margin-bottom: 28px;
}
body[data-page="home"] .section-head--materials h2,
body[data-page="home"] .section-head--certificates h2 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.12;
  letter-spacing: 0;
  text-transform: none;
}
body[data-page="home"] .section-head--materials p,
body[data-page="home"] .section-head--certificates p {
  max-width: 720px;
  color: var(--muted);
}
body[data-page="home"] .materials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
body[data-page="home"] .material-card {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 18px;
  min-height: 218px;
  padding: 22px;
  border: 1px solid rgba(11,31,58,.11);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.98) 0%, rgba(248,250,252,.96) 100%);
  box-shadow: 0 12px 32px rgba(11,31,58,.06);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
body[data-page="home"] .material-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,99,246,.32);
  box-shadow: 0 22px 50px rgba(11,31,58,.11);
}
body[data-page="home"] .material-card__visual {
  position: relative;
  align-self: start;
  height: 118px;
  overflow: hidden;
  border: 1px solid rgba(11,31,58,.12);
  border-radius: 10px;
  background: #E2E8F0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.42), 0 16px 24px rgba(11,31,58,.12);
}
body[data-page="home"] .material-card__visual::before {
  content: "";
  position: absolute;
  inset: 18px 18px 28px;
  transform: skewY(-18deg) rotate(-5deg);
  border: 1px solid rgba(255,255,255,.34);
  box-shadow: 0 18px 28px rgba(11,31,58,.2);
}
body[data-page="home"] .material-card__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 28%, rgba(255,255,255,.55) 32%, transparent 38% 100%),
    linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: auto, 100% 18px;
  opacity: .7;
}
body[data-page="home"] .material-card__visual--steel { background: linear-gradient(135deg, #334155 0%, #CBD5E1 52%, #475569 100%); }
body[data-page="home"] .material-card__visual--stainless { background: linear-gradient(135deg, #F8FAFC 0%, #94A3B8 42%, #FFFFFF 62%, #64748B 100%); }
body[data-page="home"] .material-card__visual--aluminum { background: linear-gradient(135deg, #F8FAFC 0%, #D7DEE8 48%, #FFFFFF 68%, #8FA0B3 100%); }
body[data-page="home"] .material-card__visual--brass { background: linear-gradient(135deg, #6B3F08 0%, #D69A24 45%, #FFE39B 68%, #9A650F 100%); }
body[data-page="home"] .material-card__visual--copper { background: linear-gradient(135deg, #743014 0%, #C86F3F 45%, #FFC19B 68%, #8E3D20 100%); }
body[data-page="home"] .material-card__visual--titanium { background: linear-gradient(135deg, #1F2937 0%, #7B8492 45%, #E5E7EB 70%, #3B4656 100%); }
body[data-page="home"] .material-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.2;
}
body[data-page="home"] .material-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}
body[data-page="home"] .material-card li {
  padding: 5px 8px;
  border: 1px solid rgba(11,31,58,.1);
  border-radius: 999px;
  color: #334155;
  background: #F8FAFC;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 850;
}
body[data-page="home"] .material-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

body[data-page="home"] .reviews-section {
  padding-block: clamp(46px, 6vw, 76px);
  background: #F7F9FC;
}
body[data-page="home"] .reviews-section .section-head {
  margin-bottom: 22px;
}
body[data-page="home"] .review-slider__viewport {
  min-height: 294px;
}
body[data-page="home"] .review-slider--premium .review-card {
  width: min(860px, 82%);
  padding: clamp(24px, 3vw, 34px);
  border-radius: 12px;
  background: linear-gradient(145deg, #fff 0%, #F9FBFE 100%);
}
body[data-page="home"] .review-card__top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
body[data-page="home"] .review-card__logo {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(145deg, #0B1F3A 0%, #0B3B75 100%);
  font-size: 14px;
  font-weight: 950;
  letter-spacing: .04em;
}
body[data-page="home"] .review-slider--premium .review-card span:not(.review-card__logo) {
  margin: 0 0 8px;
}
body[data-page="home"] .review-slider--premium .review-card p {
  margin: 0 0 20px;
  color: var(--ink);
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.48;
}
body[data-page="home"] .review-slider--premium .review-card mark {
  padding: 0 4px;
  color: var(--navy);
  background: rgba(255,201,40,.32);
  border-radius: 4px;
}
body[data-page="home"] .review-slider--premium .review-card strong {
  display: block;
  color: var(--navy);
  font-size: 16px;
}
body[data-page="home"] .review-slider--premium .review-card small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

body[data-page="home"] .certificates-section {
  padding-block: clamp(56px, 7vw, 92px);
}
body[data-page="home"] .section-head--certificates {
  margin-bottom: 28px;
}
body[data-page="home"] .certificate-grid--home {
  gap: 22px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
body[data-page="home"] .certificate-grid--home .certificate-card {
  padding: clamp(18px, 2.2vw, 26px);
  border: 1px solid rgba(11,31,58,.11);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(11,31,58,.07);
}
body[data-page="home"] .certificate-card__preview {
  min-height: 258px;
  padding: 22px;
  border-radius: 12px;
}
body[data-page="home"] .certificate-card__preview img {
  height: 208px;
}
body[data-page="home"] .certificate-grid--home figcaption strong {
  font-size: 15px;
}
body[data-page="home"] .certificate-grid--home figcaption span {
  min-height: 0;
  font-size: 13px;
}
body[data-page="home"] .certificates-action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

body[data-page="home"] .estimate-section {
  padding-block: clamp(58px, 7vw, 90px);
  background: linear-gradient(180deg, #EEF3F8 0%, #F7F9FC 100%);
}
body[data-page="home"] .calc-tool--brief {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, .86fr) minmax(560px, 1.14fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: stretch;
  padding: clamp(26px, 4vw, 42px);
  overflow: hidden;
  border: 1px solid rgba(11,31,58,.12);
  border-radius: 18px;
  background: linear-gradient(135deg, #0B1F3A 0%, #0B3B75 100%);
  box-shadow: 0 28px 80px rgba(11,31,58,.18);
}
body[data-page="home"] .calc-tool--brief::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: .35;
}
body[data-page="home"] .calc-tool--brief > * {
  position: relative;
  z-index: 1;
}
body[data-page="home"] .calc-tool--brief .eyebrow,
body[data-page="home"] .calc-tool--brief h2,
body[data-page="home"] .calc-tool--brief .calc-tool__text p {
  color: #fff;
}
body[data-page="home"] .calc-tool--brief .calc-tool__text p {
  color: rgba(255,255,255,.78);
}
body[data-page="home"] .calc-tool__benefits {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
body[data-page="home"] .calc-tool__benefits li {
  position: relative;
  padding-left: 22px;
  color: rgba(255,255,255,.88);
  font-weight: 800;
}
body[data-page="home"] .calc-tool__benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--yellow);
}
body[data-page="home"] .calc-tool--brief .calc-tool__form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-self: center;
  padding: clamp(20px, 2.6vw, 30px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 24px 58px rgba(4,13,28,.22);
}
body[data-page="home"] .calc-tool--brief .calc-tool__form label {
  gap: 7px;
  color: #1D2B3A;
  font-size: 13px;
}
body[data-page="home"] .calc-tool--brief .calc-tool__form input,
body[data-page="home"] .calc-tool--brief .calc-tool__form select {
  min-height: 52px;
  border-radius: 8px;
  background: #F8FAFC;
}
body[data-page="home"] .calc-tool--brief .mini-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 10px;
}
body[data-page="home"] .calc-tool--brief .mini-result strong {
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
}
body[data-page="home"] .calc-tool--brief .btn {
  min-height: 58px;
  justify-content: center;
  border-radius: 8px;
}
body[data-page="home"] .calc-tool--brief .calc-tool__form .btn {
  grid-column: auto;
}
body[data-page="home"] .calc-tool--brief .calc-tool__form .mini-result {
  grid-column: 1 / -1;
}
body[data-page="home"] .calc-tool--brief .calc-tool__form .calc-tool__upload {
  grid-column: auto;
}

body[data-page="home"] .catalog-section {
  padding-block: clamp(42px, 5vw, 68px);
}
body[data-page="home"] .catalog-banner {
  grid-template-columns: minmax(280px, .88fr) minmax(440px, .92fr);
  min-height: 420px;
  max-width: min(1180px, calc(100% - 40px));
}
body[data-page="home"] .catalog-book img {
  width: min(100%, 440px);
}
body[data-page="home"] .catalog-banner .catalog-form {
  max-width: 520px;
  padding-block: 28px;
}
body[data-page="home"] .catalog-form .eyebrow {
  color: var(--yellow);
}
body[data-page="home"] .catalog-form > p:not(.eyebrow) {
  margin: -8px 0 22px;
  color: rgba(255,255,255,.72);
  line-height: 1.55;
}
body[data-page="home"] .catalog-banner .catalog-cta__form {
  padding: 22px;
  background: rgba(2,12,24,.28);
}

/* Compact catalog CTA */
body[data-page="home"] .catalog-section {
  padding-block: clamp(34px, 4.5vw, 58px);
  background: #F7F9FC;
}
body[data-page="home"] .catalog-section .catalog-bg {
  display: none;
}
body[data-page="home"] .catalog-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
  min-height: 320px;
  max-width: var(--container);
  padding: clamp(26px, 3.6vw, 42px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(135deg, #07172C 0%, #0B1F3A 58%, #0B3B75 100%);
  background-size: 42px 42px, 42px 42px, auto;
  box-shadow: 0 22px 58px rgba(11,31,58,.16);
}
body[data-page="home"] .catalog-banner .catalog-form {
  max-width: none;
  margin: 0;
  padding: 0;
}
body[data-page="home"] .catalog-form .eyebrow {
  margin-bottom: 10px;
  color: var(--yellow);
}
body[data-page="home"] .catalog-banner .catalog-form h2 {
  max-width: 720px;
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(28px, 2.8vw, 40px);
  line-height: 1.12;
  font-weight: 900;
}
body[data-page="home"] .catalog-form > p:not(.eyebrow) {
  max-width: 640px;
  margin: 0 0 20px;
  color: rgba(255,255,255,.76);
  font-size: 16px;
  line-height: 1.55;
}
body[data-page="home"] .catalog-banner .catalog-cta__form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 10px;
  align-items: center;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
body[data-page="home"] .catalog-banner .catalog-cta__form label:not(.check) {
  min-width: 0;
}
body[data-page="home"] .catalog-banner .catalog-cta__form input[type="text"],
body[data-page="home"] .catalog-banner .catalog-cta__form input[type="tel"],
body[data-page="home"] .catalog-banner .catalog-cta__form input[type="email"],
body[data-page="home"] .catalog-banner .catalog-cta__form input:not([type]) {
  height: 50px;
  min-height: 50px;
  margin: 0;
  padding: 0 16px;
  color: #fff;
  border: 1px solid rgba(203,213,225,.32);
  border-radius: 8px;
  background: rgba(2,12,24,.42);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.025);
}
body[data-page="home"] .catalog-banner .catalog-cta__form input::placeholder {
  color: rgba(255,255,255,.58);
}
body[data-page="home"] .catalog-banner .catalog-cta__form .btn {
  width: auto;
  min-width: 178px;
  height: 50px;
  min-height: 50px;
  margin: 0;
  padding-inline: 22px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(180deg, #FFD84A 0%, #F4B800 100%);
  color: #07111F;
  font-size: 15px;
  font-weight: 950;
  white-space: nowrap;
  box-shadow: 0 12px 24px rgba(244,184,0,.18);
}
body[data-page="home"] .catalog-banner .catalog-cta__form .check {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 2px 0 0;
  color: rgba(255,255,255,.68);
  font-size: 12px;
  line-height: 1.35;
}
body[data-page="home"] .catalog-banner .catalog-cta__form .check input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  min-height: 0;
  margin: 0;
  accent-color: var(--yellow);
}
body[data-page="home"] .catalog-book {
  justify-self: end;
  align-self: center;
  margin: 0;
}
body[data-page="home"] .catalog-book img {
  width: min(100%, 280px);
  max-height: 260px;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.28));
}

/* Compact secondary catalog strip */
body[data-page="home"] .catalog-section {
  padding-block: clamp(24px, 3vw, 38px);
  background: #F7F9FC;
}
body[data-page="home"] .catalog-section .catalog-bg,
body[data-page="home"] .catalog-book {
  display: none;
}
body[data-page="home"] .catalog-banner {
  display: block;
  min-height: 0;
  max-width: var(--container);
  padding: clamp(20px, 2.4vw, 28px) clamp(22px, 3.2vw, 34px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  background: linear-gradient(135deg, #0A1A30 0%, #0B1F3A 100%);
  box-shadow: none;
}
body[data-page="home"] .catalog-banner .catalog-form {
  display: grid;
  grid-template-columns: minmax(260px, .7fr) minmax(560px, 1fr);
  gap: clamp(20px, 3vw, 36px);
  align-items: center;
  max-width: none;
  margin: 0;
  padding: 0;
}
body[data-page="home"] .catalog-form .eyebrow {
  margin: 0 0 6px;
  color: var(--yellow);
  font-size: 11px;
}
body[data-page="home"] .catalog-banner .catalog-form h2 {
  max-width: 520px;
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.15;
  font-weight: 900;
}
body[data-page="home"] .catalog-form > p:not(.eyebrow) {
  max-width: 520px;
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.45;
}
body[data-page="home"] .catalog-banner .catalog-cta__form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 8px;
  align-items: center;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
body[data-page="home"] .catalog-banner .catalog-cta__form label:not(.check) {
  min-width: 0;
}
body[data-page="home"] .catalog-banner .catalog-cta__form input[type="text"],
body[data-page="home"] .catalog-banner .catalog-cta__form input[type="tel"],
body[data-page="home"] .catalog-banner .catalog-cta__form input[type="email"],
body[data-page="home"] .catalog-banner .catalog-cta__form input:not([type]) {
  height: 44px;
  min-height: 44px;
  margin: 0;
  padding: 0 14px;
  color: #fff;
  border: 1px solid rgba(203,213,225,.28);
  border-radius: 6px;
  background: rgba(2,12,24,.36);
  box-shadow: none;
}
body[data-page="home"] .catalog-banner .catalog-cta__form input::placeholder {
  color: rgba(255,255,255,.58);
}
body[data-page="home"] .catalog-banner .catalog-cta__form .btn {
  width: auto;
  min-width: 166px;
  height: 44px;
  min-height: 44px;
  margin: 0;
  padding-inline: 18px;
  border: 0;
  border-radius: 6px;
  background: #FFC928;
  color: #07111F;
  font-size: 14px;
  font-weight: 950;
  white-space: nowrap;
  box-shadow: none;
}
body[data-page="home"] .catalog-banner .catalog-cta__form .check {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  margin: 2px 0 0;
  color: rgba(255,255,255,.58);
  font-size: 11px;
  line-height: 1.25;
}
body[data-page="home"] .catalog-banner .catalog-cta__form .check input {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  min-height: 0;
  margin: 0;
  accent-color: var(--yellow);
}

/* Lower home: catalog strip + stacked contacts */
body[data-page="home"] .catalog-section {
  padding: clamp(34px, 4vw, 52px) 0 0;
  background: #F7F9FC;
}
body[data-page="home"] .catalog-section .catalog-bg {
  display: none;
}
body[data-page="home"] .catalog-banner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(180px, 280px) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
  min-height: 210px;
  max-width: min(var(--container-xl), calc(100% - 56px));
  padding: 24px clamp(28px, 4vw, 56px) 22px;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, #07172C 0%, #0B1F3A 72%, #0A2E5F 100%);
  box-shadow: none;
}
body[data-page="home"] .catalog-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: .45;
}
body[data-page="home"] .catalog-banner > * {
  position: relative;
  z-index: 1;
}
body[data-page="home"] .catalog-banner__media {
  display: block;
  align-self: stretch;
  margin: -34px 0 -38px -76px;
  pointer-events: none;
}
body[data-page="home"] .catalog-banner__media img {
  width: min(360px, 34vw);
  height: 100%;
  min-height: 250px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 22px 34px rgba(0,0,0,.34));
}
body[data-page="home"] .catalog-banner .catalog-form {
  display: grid;
  grid-template-columns: minmax(250px, .52fr) minmax(520px, 1fr);
  gap: clamp(18px, 3vw, 36px);
  align-items: center;
  max-width: none;
  margin: 0;
  padding: 0;
}
body[data-page="home"] .catalog-banner .catalog-form h2 {
  max-width: 420px;
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.12;
  font-weight: 900;
}
body[data-page="home"] .catalog-form > p:not(.eyebrow) {
  max-width: 430px;
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.45;
}
body[data-page="home"] .catalog-banner .catalog-cta__form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 8px;
  align-items: center;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
body[data-page="home"] .catalog-banner .catalog-cta__form input[type="text"],
body[data-page="home"] .catalog-banner .catalog-cta__form input[type="tel"],
body[data-page="home"] .catalog-banner .catalog-cta__form input[type="email"],
body[data-page="home"] .catalog-banner .catalog-cta__form input:not([type]) {
  height: 44px;
  min-height: 44px;
  margin: 0;
  padding: 0 14px;
  color: #fff;
  border: 1px solid rgba(203,213,225,.28);
  border-radius: 6px;
  background: rgba(2,12,24,.38);
  box-shadow: none;
}
body[data-page="home"] .catalog-banner .catalog-cta__form .btn {
  width: auto;
  min-width: 166px;
  height: 44px;
  min-height: 44px;
  margin: 0;
  padding-inline: 18px;
  border: 0;
  border-radius: 6px;
  background: #FFC928;
  color: #07111F;
  font-size: 14px;
  font-weight: 950;
  white-space: nowrap;
  box-shadow: none;
}
body[data-page="home"] .catalog-banner .catalog-cta__form .check {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 2px 0 0;
  color: rgba(255,255,255,.58);
  font-size: 11px;
  line-height: 1.25;
}
body[data-page="home"] .catalog-banner .catalog-cta__form .check input {
  width: 16px;
  height: 16px;
  min-height: 0;
}

body[data-page="home"] .contacts-home--stacked {
  padding: clamp(42px, 5vw, 70px) 0 clamp(46px, 6vw, 78px);
  background: #F7F9FC;
}
body[data-page="home"] .contacts-final--stacked {
  display: block;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
body[data-page="home"] .contacts-home--stacked .contacts-home__title {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.12;
  letter-spacing: 0;
  text-transform: none;
}
body[data-page="home"] .contacts-home--stacked .contacts-map {
  width: 100%;
  height: clamp(280px, 28vw, 390px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(11,31,58,.1);
  border-radius: 12px;
  background: #EAF0F6;
  box-shadow: 0 14px 34px rgba(11,31,58,.07);
}
body[data-page="home"] .contacts-home--stacked .contacts-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.94) contrast(1.02);
}
body[data-page="home"] .contacts-home--stacked .contacts-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}
body[data-page="home"] .contacts-home--stacked .home-contact-card {
  display: grid;
  align-content: start;
  min-height: 126px;
  padding: 18px;
  border: 1px solid rgba(11,31,58,.1);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(11,31,58,.045);
}
body[data-page="home"] .contacts-home--stacked .home-contact-card__head {
  gap: 9px;
  margin-bottom: 10px;
}
body[data-page="home"] .contacts-home--stacked .home-contact-card__icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #EEF3F8;
}
body[data-page="home"] .contacts-home--stacked .home-contact-card h3 {
  color: var(--navy);
  font-size: 13px;
}
body[data-page="home"] .contacts-home--stacked .home-contact-card p {
  color: #334155;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 650;
}

/* Studio lower conversion system */
body[data-page="home"] .estimate-section--studio {
  padding: clamp(52px, 6vw, 78px) 0 0;
  background: linear-gradient(180deg, #F7F9FC 0%, #EEF3F8 100%);
}
body[data-page="home"] .estimate-section--studio .calc-tool--brief {
  grid-template-columns: minmax(320px, .78fr) minmax(620px, 1.22fr);
  gap: clamp(24px, 3.5vw, 48px);
  min-height: 0;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.038) 1px, transparent 1px),
    linear-gradient(135deg, #07172C 0%, #0B1F3A 66%, #0B315F 100%);
  background-size: 46px 46px, 46px 46px, auto;
  box-shadow: 0 24px 70px rgba(11,31,58,.2);
}
body[data-page="home"] .estimate-section--studio .calc-tool--brief::before {
  display: none;
}
body[data-page="home"] .estimate-section--studio .calc-tool__text h2 {
  max-width: 620px;
  margin-bottom: 14px;
  font-size: clamp(30px, 3vw, 44px);
}
body[data-page="home"] .estimate-section--studio .calc-tool__text p {
  max-width: 620px;
  margin-bottom: 0;
  line-height: 1.55;
}
body[data-page="home"] .estimate-section--studio .calc-tool__benefits {
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 20px;
}
body[data-page="home"] .estimate-section--studio .calc-tool__benefits li {
  color: rgba(255,255,255,.82);
  font-size: 14px;
}
body[data-page="home"] .estimate-section--studio .calc-tool--brief .calc-tool__form {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
body[data-page="home"] .estimate-section--studio .calc-tool__form label {
  grid-column: span 2;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  line-height: 1.2;
}
body[data-page="home"] .estimate-section--studio .calc-tool__form label:nth-child(3),
body[data-page="home"] .estimate-section--studio .calc-tool__form label:nth-child(4),
body[data-page="home"] .estimate-section--studio .calc-tool__form label:nth-child(5) {
  grid-column: span 2;
}
body[data-page="home"] .estimate-section--studio .calc-tool__form input,
body[data-page="home"] .estimate-section--studio .calc-tool__form select {
  width: 100%;
  min-height: 48px;
  color: #fff;
  border: 1px solid rgba(203,213,225,.26);
  border-radius: 6px;
  background: rgba(2,12,24,.36);
  box-shadow: none;
}
body[data-page="home"] .estimate-section--studio .calc-tool__form input::placeholder {
  color: rgba(255,255,255,.48);
}
body[data-page="home"] .estimate-section--studio .mini-result {
  grid-column: span 2;
  min-height: 52px;
  margin: 0;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 6px;
  background: rgba(255,255,255,.08);
}
body[data-page="home"] .estimate-section--studio .mini-result span {
  color: rgba(255,255,255,.62);
  font-size: 10px;
}
body[data-page="home"] .estimate-section--studio .mini-result strong {
  color: #fff;
  font-size: 24px;
}
body[data-page="home"] .estimate-section--studio .calc-tool__form .btn {
  grid-column: span 2;
  min-height: 52px;
  border-radius: 6px;
  box-shadow: none;
}
body[data-page="home"] .estimate-section--studio .calc-tool__form .calc-tool__upload {
  color: #fff;
  border-color: rgba(255,255,255,.24);
  background: rgba(255,255,255,.08);
}

body[data-page="home"] .catalog-section--studio {
  padding: 12px 0 0;
  background: #EEF3F8;
}
body[data-page="home"] .catalog-section--studio .catalog-bg,
body[data-page="home"] .catalog-section--studio .catalog-banner__media,
body[data-page="home"] .catalog-section--studio .catalog-book {
  display: none;
}
body[data-page="home"] .catalog-section--studio .catalog-banner {
  display: block;
  min-height: 0;
  max-width: var(--container);
  padding: 18px 22px;
  border: 1px solid rgba(11,31,58,.08);
  border-radius: 8px;
  background: #0B1F3A;
  box-shadow: none;
}
body[data-page="home"] .catalog-section--studio .catalog-form {
  display: grid;
  grid-template-columns: minmax(260px, .58fr) minmax(620px, 1fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  max-width: none;
  margin: 0;
  padding: 0;
}
body[data-page="home"] .catalog-section--studio .catalog-form h2 {
  max-width: 430px;
  margin: 0 0 6px;
  color: #fff;
  font-size: clamp(21px, 1.8vw, 28px);
  line-height: 1.16;
}
body[data-page="home"] .catalog-section--studio .catalog-form > p {
  max-width: 460px;
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: 13px;
  line-height: 1.45;
}
body[data-page="home"] .catalog-section--studio .catalog-cta__form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 8px;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
}
body[data-page="home"] .catalog-section--studio .catalog-cta__form input[type="text"],
body[data-page="home"] .catalog-section--studio .catalog-cta__form input[type="tel"],
body[data-page="home"] .catalog-section--studio .catalog-cta__form input[type="email"],
body[data-page="home"] .catalog-section--studio .catalog-cta__form input:not([type]) {
  height: 42px;
  min-height: 42px;
  margin: 0;
  border-radius: 5px;
  background: rgba(255,255,255,.08);
}
body[data-page="home"] .catalog-section--studio .catalog-cta__form .btn {
  min-width: 158px;
  height: 42px;
  min-height: 42px;
  border-radius: 5px;
  background: var(--yellow);
  box-shadow: none;
}
body[data-page="home"] .catalog-section--studio .catalog-cta__form .check {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255,255,255,.52);
  font-size: 10.5px;
}

body[data-page="home"] .contacts-home--studio {
  padding: clamp(42px, 5vw, 66px) 0 clamp(48px, 6vw, 78px);
  background: linear-gradient(180deg, #EEF3F8 0%, #F8FAFC 100%);
}
body[data-page="home"] .contacts-home--studio .contacts-final--stacked {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  gap: clamp(20px, 3vw, 34px);
  align-items: start;
}
body[data-page="home"] .contacts-home--studio .contacts-home__title {
  grid-column: 1;
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.1;
}
body[data-page="home"] .contacts-home--studio .contacts-home__lead {
  grid-column: 1;
  max-width: 540px;
  margin: -14px 0 0;
  color: #64748B;
  line-height: 1.55;
}
body[data-page="home"] .contacts-home--studio .contacts-map {
  grid-column: 2;
  grid-row: 1 / span 3;
  height: 100%;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(11,31,58,.12);
  border-radius: 10px;
  background: #EAF0F6;
  box-shadow: 0 16px 36px rgba(11,31,58,.07);
}
body[data-page="home"] .contacts-home--studio .contacts-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body[data-page="home"] .contacts-home--studio .contacts-grid {
  grid-column: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 0;
}
body[data-page="home"] .contacts-home--studio .home-contact-card {
  min-height: 112px;
  padding: 16px;
  border: 1px solid rgba(11,31,58,.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
}
body[data-page="home"] .contacts-home--studio .home-contact-card:first-child {
  grid-column: 1 / -1;
}
body[data-page="home"] .contacts-home--studio .home-contact-card__head {
  margin-bottom: 9px;
}
body[data-page="home"] .contacts-home--studio .home-contact-card h3 {
  font-size: 13px;
}
body[data-page="home"] .contacts-home--studio .home-contact-card p {
  font-size: 13px;
  line-height: 1.45;
}

body[data-page="home"] .contacts-home--final {
  padding-block: clamp(58px, 7vw, 92px);
  background: #F7F9FC;
}
body[data-page="home"] .contacts-final {
  display: grid;
  grid-template-columns: minmax(320px, .82fr) minmax(460px, 1.18fr);
  gap: clamp(26px, 4vw, 54px);
  align-items: stretch;
  padding: clamp(24px, 3.5vw, 38px);
  border: 1px solid rgba(11,31,58,.11);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 22px 58px rgba(11,31,58,.08);
}
body[data-page="home"] .contacts-final__info {
  display: grid;
  align-content: start;
}
body[data-page="home"] .contacts-final h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.12;
}
body[data-page="home"] .contacts-final__info > p:not(.eyebrow) {
  margin: 0 0 22px;
  color: var(--muted);
}
body[data-page="home"] .contacts-final__list {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid rgba(11,31,58,.1);
}
body[data-page="home"] .contacts-final__list div {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(11,31,58,.1);
}
body[data-page="home"] .contacts-final__list dt {
  color: #64748B;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
body[data-page="home"] .contacts-final__list dd {
  margin: 0;
  color: #1D2B3A;
  font-weight: 800;
}
body[data-page="home"] .contacts-final__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
body[data-page="home"] .contacts-final__map {
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(11,31,58,.12);
  border-radius: 14px;
  background: #EEF3F8;
}
body[data-page="home"] .contacts-final__map img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

/* Unified catalog and contacts panel on the homepage. */
body[data-page="home"] .home-contacts-panel {
  padding: clamp(44px, 6vw, 76px) 0;
  background: #f4f7fa;
}
body[data-page="home"] .home-contacts-panel__card {
  display: grid;
  grid-template-columns: minmax(330px, .34fr) minmax(0, .66fr);
  overflow: hidden;
  border: 1px solid rgba(11, 31, 58, .08);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(11, 31, 58, .08);
}
body[data-page="home"] .home-catalog-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: clamp(30px, 3.2vw, 48px) clamp(26px, 3vw, 42px);
  overflow: hidden;
  color: #fff;
  background: #0b1f3a;
}
body[data-page="home"] .home-catalog-card::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: radial-gradient(circle at 88% 8%, rgba(255, 255, 255, .05), transparent 34%), linear-gradient(135deg, rgba(255, 255, 255, .025), transparent 60%);
}
body[data-page="home"] .home-catalog-card > * { position: relative; z-index: 1; }
body[data-page="home"] .home-catalog-card__accent {
  width: 36px;
  height: 2px;
  margin-bottom: 24px;
  background: var(--yellow);
}
body[data-page="home"] .home-catalog-card__eyebrow,
body[data-page="home"] .home-contacts-panel__eyebrow {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}
body[data-page="home"] .home-catalog-card__eyebrow { color: var(--yellow); }
body[data-page="home"] .home-catalog-card h2 {
  max-width: 310px;
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(26px, 2.1vw, 34px);
  line-height: 1.18;
}
body[data-page="home"] .home-catalog-card > p:not(.home-catalog-card__eyebrow) {
  max-width: 330px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, .75);
  font-size: 14px;
  line-height: 1.6;
}
body[data-page="home"] .home-catalog-card__form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: auto;
}
body[data-page="home"] .home-catalog-card__form label:not(.check) { min-width: 0; }
body[data-page="home"] .home-catalog-card__form label > span { display: none; }
body[data-page="home"] .home-catalog-card__form input[type="text"],
body[data-page="home"] .home-catalog-card__form input[type="tel"],
body[data-page="home"] .home-catalog-card__form input[type="email"] {
  width: 100%;
  min-width: 0;
  height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 5px;
  outline: 0;
  color: #fff;
  background: rgba(255, 255, 255, .035);
  font-size: 12px;
}
body[data-page="home"] .home-catalog-card__form input::placeholder { color: rgba(255, 255, 255, .72); }
body[data-page="home"] .home-catalog-card__form input:focus { border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(255, 201, 40, .16); }
body[data-page="home"] .home-catalog-card__form .check {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 5px 0 10px;
  color: rgba(255, 255, 255, .72);
  font-size: 11px;
  line-height: 1.35;
}
body[data-page="home"] .home-catalog-card__form .check input { width: 16px; height: 16px; margin: 0; accent-color: var(--yellow); }
body[data-page="home"] .home-catalog-card__form .btn {
  grid-column: 2 / 4;
  justify-self: end;
  min-width: 170px;
  min-height: 42px;
  border-radius: 5px;
  font-size: 12px;
  box-shadow: none;
}
body[data-page="home"] .home-contacts-panel__content { min-width: 0; padding: clamp(22px, 2.6vw, 34px); }
body[data-page="home"] .home-contacts-panel__header { position: relative; min-height: 174px; padding: 0 22px; overflow: hidden; }
body[data-page="home"] .home-contacts-panel__eyebrow { position: relative; z-index: 1; color: #64748b; }
body[data-page="home"] .home-contacts-panel__header h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--navy);
  font-size: clamp(26px, 2.3vw, 34px);
  line-height: 1.2;
}
body[data-page="home"] .home-contacts-panel__photo { position: absolute; inset: 0; z-index: 0; margin: 0; background: #dce3e9; }
body[data-page="home"] .home-contacts-panel__photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, .95) 0%, rgba(255, 255, 255, .79) 28%, rgba(255, 255, 255, .16) 75%, rgba(255, 255, 255, .06) 100%);
}
body[data-page="home"] .home-contacts-panel__photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(.86) brightness(1.12); }
body[data-page="home"] .home-contacts-panel__list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 22px;
  border-top: 1px solid #e7edf3;
}
body[data-page="home"] .home-contacts-panel .home-contact-card {
  min-width: 0;
  min-height: 136px;
  padding: 25px 20px 12px;
  border: 0;
  border-right: 1px solid #e7edf3;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
body[data-page="home"] .home-contacts-panel .home-contact-card:last-child { border-right: 0; }
body[data-page="home"] .home-contacts-panel .home-contact-card__head { display: block; margin: 0 0 10px; }
body[data-page="home"] .home-contacts-panel .home-contact-card__icon {
  display: block;
  width: 23px;
  height: 23px;
  margin: 0 0 13px;
  border-radius: 0;
  color: #586879;
  background: transparent;
}
body[data-page="home"] .home-contacts-panel .home-contact-card__icon svg { width: 100%; height: 100%; stroke: currentColor; stroke-width: 1.75; fill: none; }
body[data-page="home"] .home-contacts-panel .home-contact-card h3 {
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
}
body[data-page="home"] .home-contacts-panel .home-contact-card p,
body[data-page="home"] .home-contacts-panel .home-contact-card a {
  overflow-wrap: anywhere;
  color: #536171;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.55;
}
body[data-page="home"] .home-contacts-panel .home-contact-card a:hover { color: var(--blue-strong); }

.site-footer .footer-main {
  position: relative;
  z-index: 1;
}
.site-footer .footer__grid--clean {
  grid-template-columns: 1.35fr .72fr .92fr .82fr;
  gap: clamp(24px, 4vw, 46px);
  padding: clamp(46px, 6vw, 70px) 0 38px;
}
.site-footer .footer__grid--clean .footer__brand p {
  max-width: 360px;
}
.site-footer .footer__grid--clean .footer__links p {
  line-height: 1.5;
}
.site-footer .footer__grid--clean a:hover {
  color: var(--yellow);
}

/* Corporate footer */
.site-footer {
  background: linear-gradient(135deg, #07162a 0%, #0b1f3a 62%, #061225 100%);
}
.site-footer::before { display: none; }
.site-footer .footer-main { position: relative; z-index: 1; padding-top: 72px; }
.footer__top {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, .85fr);
  gap: clamp(48px, 7vw, 112px);
  align-items: start;
}
.footer__brand .logo { display: inline-flex; margin: 0 0 18px; color: var(--white); }
.footer__brand > p { max-width: 500px; margin: 0; color: rgba(255,255,255,.72); font-size: 16px; line-height: 1.65; }
.footer__socials { display: flex; gap: 10px; margin-top: 24px; }
.footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 12px;
  color: var(--white);
  background: rgba(255,255,255,.04);
  transition: color var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast), transform var(--transition-fast);
}
.footer__social svg { width: 20px; height: 20px; }
.footer__social:hover { color: #111827; background: var(--yellow); border-color: var(--yellow); transform: translateY(-2px); }
.footer__subscribe {
  padding: 26px 28px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  background: rgba(255,255,255,.055);
}
.footer__subscribe h2 { margin: 0; color: var(--white); font-size: clamp(20px, 1.8vw, 26px); line-height: 1.18; }
.footer__subscribe > p { margin: 12px 0 0; color: rgba(255,255,255,.72); font-size: 15px; line-height: 1.55; }
.footer__subscribe .footer-form { display: flex; gap: 10px; margin-top: 20px; padding: 0; border: 0; border-radius: 0; background: none; }
.footer__subscribe input {
  width: 100%;
  min-width: 0;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 10px;
  background: rgba(0,0,0,.13);
  color: var(--white);
}
.footer__subscribe .btn { flex: 0 0 auto; min-height: 46px; padding-inline: 18px; }
.footer__subscribe .footer__consent { margin-top: 10px; color: rgba(255,255,255,.56); font-size: 12px; line-height: 1.45; }
.footer__form-status { min-height: 20px; color: var(--yellow) !important; font-size: 13px !important; font-weight: 700; }
.footer__nav {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 48px);
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.footer__column h3 { margin: 0 0 16px; color: var(--white); font-size: 16px; line-height: 1.3; font-weight: 700; }
.footer__column a, .footer__column p { display: block; margin: 0 0 10px; color: rgba(255,255,255,.72); font-size: 15px; line-height: 1.5; }
.footer__column a { transition: color var(--transition-fast); }
.footer__column a:hover { color: var(--yellow); }
.footer__contacts a { font-weight: 700; color: rgba(255,255,255,.9); }
.footer__bottom {
  margin-top: 48px;
  padding: 20px 0 28px;
  border-top: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.6);
  font-size: 14px;
}
.footer__bottom > div { display: flex; flex-wrap: wrap; gap: 6px 20px; }
.footer__bottom a { color: rgba(255,255,255,.72); transition: color var(--transition-fast); }
.footer__bottom a:hover { color: var(--yellow); }
body[data-page="home"] .trust-strip--premium .trust-strip__item:last-child {
  border-right: 0;
}
body[data-page="home"] .trust-strip--premium .trust-strip__item::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0,99,246,.55), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
body[data-page="home"] .trust-strip--premium .trust-strip__item:hover::before {
  opacity: 1;
}
body[data-page="home"] .trust-strip--premium .trust-strip__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(11,31,58,.16);
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(11,31,58,.06) 1px, transparent 1px),
    linear-gradient(rgba(11,31,58,.06) 1px, transparent 1px),
    #fff;
  background-size: 12px 12px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.72);
}
body[data-page="home"] .trust-strip--premium .trust-strip__icon img {
  width: 30px;
  height: 30px;
  opacity: 1;
}
body[data-page="home"] .trust-strip--premium h3 {
  margin: 0;
  color: var(--navy);
  font-size: 13px;
  line-height: 1.18;
  letter-spacing: .035em;
  text-transform: uppercase;
}
body[data-page="home"] .trust-strip--premium p {
  max-width: 190px;
  margin: 7px 0 0;
  color: #64748B;
  font-size: 12px;
  line-height: 1.35;
}

body[data-page="home"] .trust-strip--premium {
  background: #fff;
  border-top: 1px solid rgba(203,213,225,.78);
  border-bottom: 1px solid rgba(203,213,225,.78);
}
body[data-page="home"] .trust-strip--premium .trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
}
body[data-page="home"] .trust-strip--premium .trust-strip__item {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 104px;
  padding: 24px 28px;
  border-right: 1px solid rgba(203,213,225,.78);
  background: transparent;
}
body[data-page="home"] .trust-strip--premium .trust-strip__item:last-child {
  border-right: 0;
}
body[data-page="home"] .trust-strip--premium .trust-strip__item::before {
  display: none;
}
body[data-page="home"] .trust-strip--premium .trust-strip__icon {
  display: block;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
body[data-page="home"] .trust-strip--premium .trust-strip__icon img {
  display: block;
  width: 30px;
  height: 30px;
}
body[data-page="home"] .trust-strip--premium h3 {
  margin: 0;
  color: var(--navy);
  font-size: 12px;
  line-height: 1.22;
  font-weight: 950;
  letter-spacing: .025em;
  text-transform: uppercase;
}
body[data-page="home"] .trust-strip--premium p {
  max-width: none;
  margin: 5px 0 0;
  color: #64748B;
  font-size: 11px;
  line-height: 1.35;
}

body[data-page="home"] .trust-strip--cards {
  padding: 18px 0;
  background: #fff;
  border-top: 1px solid rgba(226,232,240,.95);
  border-bottom: 1px solid rgba(226,232,240,.95);
}
body[data-page="home"] .trust-strip--cards .trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
body[data-page="home"] .trust-strip--cards .trust-strip__item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 104px;
  padding: 18px 18px;
  border: 1px solid rgba(203,213,225,.82);
  border-radius: 8px;
  background: #fff;
}
body[data-page="home"] .trust-strip--cards .trust-strip__item:last-child {
  border-right: 1px solid rgba(203,213,225,.82);
}
body[data-page="home"] .trust-strip--cards .trust-strip__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
}
body[data-page="home"] .trust-strip--cards .trust-strip__icon img {
  width: 42px;
  height: 42px;
}
body[data-page="home"] .trust-strip--cards h3 {
  margin: 0;
  color: var(--navy);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: none;
}
body[data-page="home"] .trust-strip--cards p {
  margin: 5px 0 0;
  color: #667085;
  font-size: 10.5px;
  line-height: 1.32;
}

body[data-page="home"] .hero-benefits {
  padding: 18px 0 20px;
  background: #fff;
  border-top: 1px solid #E5EAF1;
  border-bottom: 1px solid #E5EAF1;
}
body[data-page="home"] .hero-benefits__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}
body[data-page="home"] .hero-benefits__item {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  min-height: 108px;
  padding: 18px 18px;
  border: 1px solid #DDE5EF;
  border-radius: 7px;
  background: #fff;
  box-shadow: none;
}
body[data-page="home"] .hero-benefits__item img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
body[data-page="home"] .hero-benefits__item h3 {
  margin: 0;
  color: #0B1F3A;
  font-size: 11px;
  line-height: 1.18;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: none;
}
body[data-page="home"] .hero-benefits__item p {
  margin: 5px 0 0;
  color: #667085;
  font-size: 10.5px;
  line-height: 1.32;
}

@media (max-width: 900px) {
  .help-cta { grid-template-columns: 54px minmax(0, 1fr); }
  .help-cta__actions { grid-column: 1 / -1; justify-content: space-between; padding-top: 4px; }
}
@media (max-width: 600px) {
  .help-cta-section { padding: 20px 0; }
  .help-cta { grid-template-columns: 1fr; gap: 16px; padding: 22px 18px; }
  .help-cta__icon { width: 46px; height: 46px; }
  .help-cta h2 { font-size: 25px; }
  .help-cta__copy > p:last-child { font-size: 16px; }
  .help-cta__actions { display: grid; gap: 14px; padding-top: 0; }
  .help-cta__actions .btn { width: 100%; }
  .help-cta-section--vertical { padding: 0; }
}
/* Sticky section navigation shared by page templates. */
.is-sticky-section-nav{position:sticky!important;z-index:30!important;top:var(--header-height,76px)!important}.is-sticky-section-nav a.is-active,.is-sticky-section-nav a[aria-current="location"]{color:#0767e9!important}.back-to-top{right:24px!important;bottom:24px!important;z-index:80!important}

/* Product and service request forms: compact, stable layout. */
body[data-page="products"],body[data-page="services"]{overflow-x:clip}
body[data-page="products"] main,body[data-page="services"] main{min-width:0}
body[data-page="products"] :is(.ps-request-grid,.construction-request-shell,.lighting-request,.targeted-request,.platform-contact-panel,.pd-request-form,.sd-request-form),
body[data-page="services"] :is(.sd-calculation__grid,.sd-request-form){min-width:0}
body[data-page="products"] :is(.ps-request,.targeted-request,.lighting-request,.platform-contact-panel){padding:22px!important;border-radius:16px!important}
body[data-page="products"] :is(.ps-request h2,.targeted-request__head h2,.lighting-request__head h2){font-size:clamp(28px,3vw,40px)!important}
body[data-page="products"] :is(.ps-request>p,.targeted-request__head,.lighting-request__head){margin-bottom:18px!important}
body[data-page="products"] :is(.ps-request form,.targeted-request__form,.lighting-request__form,.construction-request-form,.platform-contact-form,.pd-request-form,form.form[data-form]){gap:12px!important}
body[data-page="products"] :is(.targeted-request__form,.construction-request-form,.platform-contact-form){grid-template-columns:repeat(2,minmax(0,1fr))!important}
body[data-page="products"] .lighting-form-group{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:12px!important;padding:15px!important}
body[data-page="products"] :is(.targeted-request__details-grid,.construction-extra__grid){grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:12px!important}
body[data-page="products"] :is(.pd-request-form,.construction-request-form),body[data-page="services"] .sd-request-form{padding:22px!important;border-radius:14px!important}
body[data-page="products"] form.form[data-form]{display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr));padding:22px;border:1px solid #d8e3ee;border-radius:14px;background:#fff;box-shadow:0 12px 30px rgba(11,31,58,.06)}
body[data-page="products"] form.form[data-form] label:has(textarea),body[data-page="products"] form.form[data-form] button{grid-column:1/-1}
body[data-page="products"] :is(.ps-request form,.targeted-request__form,.lighting-request__form,.construction-request-form,.platform-contact-form,.pd-request-form,form.form[data-form]) :is(input:not([type="checkbox"]):not([type="radio"]):not([type="file"]):not([type="hidden"]),select),
body[data-page="services"] .sd-request-form :is(input:not([type="checkbox"]):not([type="radio"]):not([type="file"]):not([type="hidden"]),select){min-height:42px!important;padding:9px 11px!important;border-radius:8px!important}
body[data-page="products"] :is(.ps-request form,.targeted-request__form,.lighting-request__form,.construction-request-form,.platform-contact-form,.pd-request-form,form.form[data-form]) textarea,
body[data-page="services"] .sd-request-form textarea{min-height:82px!important;padding:10px 11px!important;border-radius:8px!important}
body[data-page="products"] :is(.ps-upload,.targeted-request__upload,.lighting-upload),body[data-page="services"] .sd-upload{min-height:auto!important;padding:12px 14px!important;border-radius:10px!important}
body[data-page="products"] .pd-upload label{min-height:88px!important;padding:14px!important}
body[data-page="products"] :is(.ps-upload,.targeted-request__upload,.lighting-upload) input[type="file"]{min-height:38px!important;padding:6px!important;font-size:12px!important}
body[data-page="products"] :is(.ps-upload,.targeted-request__upload,.lighting-upload) input[type="file"]::file-selector-button{min-height:30px;margin-right:10px;padding:6px 10px;border:1px solid #c6d4e2;border-radius:7px;background:#fff;color:#0b1f3a;font-weight:800;cursor:pointer}
body[data-page="products"] :is(.ps-request form,.targeted-request__form,.lighting-request__form,.construction-request-form,.platform-contact-form,.pd-request-form,form.form[data-form]) label:has(input[type="checkbox"]),
body[data-page="services"] .sd-request-form label:has(input[type="checkbox"]){display:flex!important;grid-template-columns:none!important;align-items:flex-start!important;gap:9px!important;min-height:auto!important;padding:0!important}
body[data-page="products"] :is(.ps-request form,.targeted-request__form,.lighting-request__form,.construction-request-form,.platform-contact-form,.pd-request-form,form.form[data-form]) input[type="checkbox"],
body[data-page="services"] .sd-request-form input[type="checkbox"]{flex:0 0 18px!important;width:18px!important;height:18px!important;min-height:18px!important;margin:2px 0 0!important;padding:0!important}
body[data-page="products"] :is(.ps-form-actions,.targeted-request__footer,.lighting-form-footer,.pd-form-footer),body[data-page="services"] .sd-request-form>button[type="submit"]{margin-top:2px!important}
body[data-page="products"] :is(.ps-form-actions,.targeted-request__footer,.lighting-form-footer,.pd-form-footer){gap:12px!important;padding-top:2px!important}
body[data-page="products"] .pd-form-footer p{max-width:520px;font-size:12px!important;line-height:1.45}
body[data-page="services"] .sd-request-form{gap:12px!important}
body[data-page="services"] .sd-form-row{gap:12px!important}
body[data-page="services"] .sd-upload{min-height:92px!important}
body[data-page="services"] .sd-form-status{min-height:18px!important}
body[data-page="products"] .ps-page{overflow-x:clip}
body[data-page="products"] .ps-anchor__inner{overscroll-behavior-inline:contain}
@media(max-width:700px){
  body[data-page="products"] :is(.targeted-request__form,.construction-request-form,.platform-contact-form,.lighting-form-group,.targeted-request__details-grid,.construction-extra__grid,.pd-request-form,form.form[data-form]){grid-template-columns:1fr!important}
  body[data-page="products"] form.form[data-form] label:has(textarea),body[data-page="products"] form.form[data-form] button{grid-column:auto}
  body[data-page="products"] :is(.ps-request,.targeted-request,.lighting-request,.platform-contact-panel,.pd-request-form,.construction-request-form),body[data-page="services"] .sd-request-form{padding:18px!important}
  body[data-page="products"] :is(.ps-form-actions,.targeted-request__footer,.lighting-form-footer,.pd-form-footer){align-items:stretch!important;flex-direction:column!important}
  body[data-page="products"] :is(.ps-form-actions,.targeted-request__footer,.lighting-form-footer,.pd-form-footer) .btn{width:100%!important}
}

/* release-prep-itas-pro */
.site-breadcrumbs{display:flex;flex-wrap:wrap;gap:8px;align-items:center;padding-top:18px;padding-bottom:10px;color:#65758a;font-size:13px}.site-breadcrumbs a{color:#34506f;text-decoration:none}.site-breadcrumbs a:hover{color:#0063f6}.site-breadcrumbs span[aria-current="page"]{color:#7b8797}.local-seo-note{padding:48px 0;background:#f6f9fc}.local-seo-note__inner{display:grid;grid-template-columns:minmax(0,.7fr) minmax(0,1.3fr);gap:clamp(24px,5vw,72px);align-items:start}.local-seo-note h2{margin:0;color:var(--navy);font-size:clamp(28px,3vw,42px);line-height:1.08}.local-seo-note p{margin:0;color:#59697c;line-height:1.7}.contacts-extra-phones{display:grid;grid-template-columns:1fr;gap:7px;margin-top:16px;padding-top:16px;border-top:1px solid #dbe5ef}.contacts-extra-phones span{color:#738196;font-size:12px;font-weight:800;text-transform:uppercase;letter-spacing:.08em}.contacts-extra-phones a{color:#0b1f3a;font-weight:850}.footer__social svg{width:21px;height:21px}.footer__socials a.footer__social{display:grid;place-items:center}.help-cta-section--vertical{width:min(100%,400px);margin-inline:auto}.help-cta-section--vertical .help-cta{min-height:515px}.article-breadcrumbs[aria-label="Хлебные крошки"]{flex-wrap:wrap}.knowledge-tabs{scrollbar-width:thin}.knowledge-tabs button[data-knowledge-category="dictionary"]{border-color:rgba(0,99,246,.18)}@media(max-width:767px){.local-seo-note__inner{grid-template-columns:1fr}.site-breadcrumbs{padding-inline:16px}.help-cta-section--vertical{width:100%}.help-cta-section--vertical .help-cta{min-height:0}}@media(prefers-reduced-motion:reduce){::view-transition-old(root),::view-transition-new(root){animation:none!important}}
@view-transition{navigation:auto}::view-transition-old(root),::view-transition-new(root){animation-duration:.22s;animation-timing-function:ease-out}
.anchor-target{position:absolute;display:block;transform:translateY(-140px);visibility:hidden;pointer-events:none}

/* Final contact contrast and reusable specialist-card layouts. */
.contacts-quick .contacts-extra-phones{border-top-color:rgba(255,255,255,.2)}
.contacts-quick .contacts-extra-phones>span{color:rgba(255,255,255,.62)}
.contacts-quick .contacts-extra-phones a{color:#f7faff;text-decoration:none}
.contacts-quick .contacts-extra-phones a:hover,.contacts-quick .contacts-extra-phones a:focus-visible{color:#ffd044}
.contacts-quick .contacts-extra-phones a:focus-visible{outline:2px solid #ffd044;outline-offset:3px}
.expert-help-card{position:sticky;top:calc(var(--header-height,76px) + 72px);display:flex;width:100%;max-width:365px;min-height:430px;align-self:start;flex-direction:column;padding:28px;border:1px solid #cfe0ef;border-radius:15px;background:#f4f9fe;box-shadow:0 15px 34px rgba(11,31,58,.08)}
.expert-help-card__icon{display:grid;width:54px;height:54px;place-items:center;margin-bottom:18px;border:1px solid #99c5fa;border-radius:12px;color:#0063f6;background:#f7fbff}
.expert-help-card__icon svg{width:27px;height:27px}
.expert-help-card__eyebrow{margin:0 0 9px;color:#0063f6;font-size:10px;font-weight:950;letter-spacing:.14em;text-transform:uppercase}
.expert-help-card h2{margin:0 0 10px;color:#0b1f3a;font-size:32px;line-height:1.08}
.expert-help-card>p:not(.expert-help-card__eyebrow){margin:0;color:#63758b;font-size:15px;line-height:1.58}
.expert-help-card__bottom{display:grid;gap:21px;margin-top:auto;text-align:center}
.expert-help-card .btn{display:flex;width:100%;min-height:54px;align-items:center;justify-content:center;border:1px solid #f6b700;border-radius:10px;color:#081a30;background:linear-gradient(90deg,#ffbf18,#ffdc60);font-weight:950}
.expert-help-card small{display:block;margin-bottom:4px;color:#8795a7}
.expert-help-card a[href^="tel"]{color:#0b1f3a;font-size:16px;font-weight:950}
.calc-layout--with-specialist{grid-template-columns:minmax(0,1fr) 365px}
.calc-layout--with-specialist>div:first-child{grid-column:1/-1}
.calc-layout--with-specialist>.calculator{grid-column:1}
.calc-layout--with-specialist>.expert-help-card{grid-column:2;grid-row:2}
.product-help-layout{display:grid;grid-template-columns:minmax(0,1fr) 365px;gap:28px;align-items:start}
.product-help-layout>.expert-help-card{grid-column:2}
.product-help-layout>.pd-calculation,.product-help-layout>.construction-request-shell{grid-column:1;min-width:0}
@media(max-width:1080px){.calc-layout--with-specialist,.product-help-layout{grid-template-columns:1fr}.calc-layout--with-specialist>div:first-child,.calc-layout--with-specialist>.calculator,.calc-layout--with-specialist>.expert-help-card,.product-help-layout>.expert-help-card,.product-help-layout>.pd-calculation,.product-help-layout>.construction-request-shell{grid-column:1}.expert-help-card{position:static;max-width:420px;min-height:410px;justify-self:center}}
@media(max-width:600px){.expert-help-card{max-width:none;min-height:0;padding:24px}.expert-help-card h2{font-size:28px}.expert-help-card__bottom{margin-top:34px}}
