@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;500;600;700&display=swap');

:root {
  --bg: #07131a;
  --bg-deep: #040b10;
  --panel: #0b181e;
  --panel-2: #101f26;
  --line: #2a3a41;
  --text: #eef5f7;
  --muted: #9aa9ae;
  --lime: #a8e900;
  --lime-dark: #79a900;
  --blue: #8ed8ff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 45% 0, rgba(24, 77, 91, .17), transparent 30rem),
    linear-gradient(110deg, #06141a, #071017 55%, #05131a);
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 14px;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }

.site-shell {
  width: min(1440px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 20% 80%;
  min-height: 100vh;
}

.left-rail {
  padding: 28px 12px 20px;
  border-right: 1px solid #304047;
  background: rgba(3, 13, 18, .58);
}
.brand { display: flex; align-items: center; gap: 10px; padding: 0 12px 28px; }
.brand > span:last-child { min-width: 0; }
.brand b { display: block; font-size: 24px; letter-spacing: .02em; white-space: nowrap; }
.brand b span { color: var(--lime); }
.brand small { display: block; font-size: 8px; line-height: 1.25; letter-spacing: .04em; white-space: nowrap; }
.logo-mark {
  width: 48px; height: 48px; flex: 0 0 48px;
  display: grid; place-items: center;
  color: var(--lime); font-weight: 800; font-size: 27px;
  border: 5px double #eaf4f5;
  border-radius: 13px 5px 13px 5px;
  transform: rotate(30deg);
  text-shadow: 0 0 13px rgba(168, 233, 0, .45);
}
.logo-mark::first-letter { transform: rotate(-30deg); }
.nav-panel, .rail-help, .side-panel, .panel {
  border: 1px solid var(--line);
  background: linear-gradient(140deg, rgba(14, 29, 36, .93), rgba(7, 18, 24, .96));
  border-radius: 9px;
}
.nav-panel { margin-bottom: 13px; padding: 10px 8px; }
.nav-panel h2, .side-panel h2 {
  margin: 0 4px 8px; padding: 5px 0 11px;
  font-size: 13px; border-bottom: 1px solid #25363d;
}
.nav-panel .accent { color: var(--lime); font-size: 12px; }
.nav-panel a {
  display: flex; align-items: center; gap: 8px;
  min-height: 35px; padding: 0 7px;
  color: #c7d0d3; border-bottom: 1px solid rgba(52, 69, 76, .45);
  transition: .2s ease;
}
.nav-panel a:last-child { border-bottom: 0; }
.nav-panel a span { flex: 1; }
.nav-panel a i { margin-left: auto; font-style: normal; color: #b5c2c6; }
.nav-panel a:hover, .nav-panel a.active { color: white; background: #13242b; border-radius: 5px; }
.nav-long a { padding-left: 3px; }
.manufacturers a { min-height: 29px; }
.rail-help { padding: 22px 10px; text-align: center; }
.rail-help h2 { font-size: 15px; margin: 0; }
.rail-help p { margin: 2px 0 12px; font-size: 12px; }
.rail-phone { display: block; color: var(--lime); font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.rail-help small { display: block; margin: 6px 0 13px; color: #b8c3c6; }
.menu-toggle { display: none; }

.page { min-width: 0; }
.hero {
  min-height: 228px;
  padding: 29px 34px 18px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(2, 8, 13, .98) 0%, rgba(3, 11, 17, .88) 27%, rgba(3, 11, 17, .06) 61%),
    url("/assets/images/hero-hdd.png") center / cover no-repeat;
  border-bottom: 1px solid #33434a;
}
.hero::after {
  content: ""; position: absolute; inset: auto 0 0; height: 55px;
  background: linear-gradient(transparent, rgba(4, 13, 18, .74));
  pointer-events: none;
}
.hero-copy { position: relative; z-index: 1; max-width: 560px; }
.eyebrow { display: none; }
.hero h1 { margin: 0; font-size: clamp(29px, 3.2vw, 36px); line-height: 1.03; letter-spacing: .01em; text-shadow: 0 2px 10px #000; }
.hero h1 span { color: #d8f3ff; text-shadow: 0 0 13px rgba(84, 184, 255, .85), 0 2px 5px #000; }
.hero-copy > p:last-child { margin: 7px 0; color: #e2eaed; font-size: 13px; }
.hero-facts {
  position: absolute; z-index: 2; left: 34px; right: 25px; bottom: 14px;
  display: grid; grid-template-columns: repeat(4, 1fr); max-width: 720px; gap: 14px;
}
.hero-facts div { display: flex; align-items: center; gap: 9px; font-size: 12px; }
.hero-facts b { color: var(--lime); font-size: 25px; font-weight: 400; }

.content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 22%; gap: 13px; padding: 13px; }
.main-column { min-width: 0; }
.panel { margin-bottom: 13px; }
.urgent { min-height: 125px; display: grid; grid-template-columns: 70px 1fr auto; align-items: center; gap: 16px; padding: 18px; }
.urgent-icon {
  display: grid; place-items: center; width: 68px; height: 68px;
  color: var(--lime); font-size: 38px; border-radius: 16px;
  background: radial-gradient(circle at 30% 30%, #405923, #162414);
  box-shadow: inset 0 0 0 1px rgba(168, 233, 0, .2);
}
.urgent h2 { margin: 0 0 7px; font-size: 19px; }
.urgent p { margin: 0 0 10px; color: #c9d3d6; line-height: 1.45; }
.urgent-number { min-width: 190px; text-align: right; white-space: nowrap; }
.urgent-number a { display: block; font-size: 21px; font-weight: 700; margin-bottom: 8px; line-height: 1.1; }
.urgent-number small { color: #a6b3b8; font-size: 14px; white-space: nowrap; }
.button {
  display: inline-flex; align-items: center; justify-content: center;
  border: 0; border-radius: 5px; padding: 10px 20px;
  background: linear-gradient(#b8f20e, #8cc700);
  color: #081200; font-weight: 800; font-size: 12px;
  box-shadow: 0 0 15px rgba(168, 233, 0, .11);
}
.section { padding: 16px 10px 9px; position: relative; }
.section-title {
  margin: -28px 0 11px; padding: 0 8px; display: table;
  background: var(--bg); font-size: 16px; line-height: 1.1;
}
.more { display: block; width: max-content; max-width: 100%; margin: 10px auto 0; color: var(--lime); text-align: center; }
.media-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 7px; }
.media-grid article, .prices-grid article {
  min-width: 0; min-height: 155px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 10px 5px; border: 1px solid #33464e; border-radius: 7px;
  background: linear-gradient(145deg, #15262e, #0b161c);
  text-align: center;
}
.media-grid article > a { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.media-grid article:hover { border-color: #71951b; transform: translateY(-1px); }
.media-grid i { height: 69px; display: grid; place-items: center; font-size: 45px; font-style: normal; filter: grayscale(.65); }
.media-grid img {
  width: calc(100% - 8px); height: 78px; display: block; margin: 0 auto 4px;
  object-fit: cover; object-position: center; border-radius: 5px;
}
.media-grid b { margin-top: 4px; font-size: 15px; }
.media-grid span { margin-top: 6px; color: #bac6c9; }

.lab-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; }
.lab-card {
  min-height: 108px; position: relative; overflow: hidden; border-radius: 5px;
  background:
    linear-gradient(0deg, rgba(2, 9, 13, .88), rgba(2, 9, 13, .03) 72%),
    url("/assets/images/equipment/pc3000.webp") center / cover no-repeat;
  border: 1px solid #40545c;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
  transition: transform .2s ease, border-color .2s ease, filter .2s ease;
}
.lab-card.microscope {
  background: linear-gradient(0deg, rgba(2,9,13,.88), rgba(2,9,13,.03) 72%), url("/assets/images/equipment/microscope.webp") center / cover no-repeat;
}
.lab-card.cleanroom {
  background: linear-gradient(0deg, rgba(2,9,13,.88), rgba(2,9,13,.03) 72%), url("/assets/images/equipment/clean-room.webp") center / cover no-repeat;
}
.lab-card.bench {
  background: linear-gradient(0deg, rgba(2,9,13,.88), rgba(2,9,13,.03) 72%), url("/assets/images/equipment/raid-bench.webp") center / cover no-repeat;
}
.lab-card:hover { transform: translateY(-2px); border-color: var(--lime-dark); filter: saturate(1.08); }
.lab-card span {
  position: absolute; bottom: 7px; left: 9px; right: 9px;
  color: #fff; font-weight: 700; text-shadow: 0 2px 5px #000;
}

.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.process-grid article { text-align: center; }
.process-grid i {
  width: 56px; height: 56px; margin: 0 auto 5px; display: grid; place-items: center;
  color: var(--lime); background: #172716; border-radius: 14px; font-style: normal; font-size: 32px;
}
.process-grid b { display: block; color: var(--lime); font-size: 17px; }
.process-grid span { display: block; margin-top: 5px; line-height: 1.15; }

.letters { display: grid; grid-template-columns: repeat(5, 1fr); gap: 11px; }
.letters article {
  position: relative; height: 164px; padding: 5px; overflow: hidden;
  border: 2px solid #87b51b; border-radius: 5px; background: #e8e7df;
  box-shadow: inset 0 0 0 4px #d9e0d5;
}
.letter-card { cursor: default; pointer-events: none; user-select: none; }
.letter-card::after {
  content: ""; position: absolute; inset: 5px; pointer-events: none;
  background: linear-gradient(145deg, rgba(255,255,255,.10), rgba(10,20,25,.12));
  box-shadow: inset 0 0 12px rgba(6,18,23,.16);
}
.letter-card img {
  display: block; width: 100%; height: 100%; object-fit: cover; object-position: center 12%;
  opacity: .76; filter: saturate(.72) contrast(.88) brightness(.97);
}

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.reviews-grid article { padding: 13px; min-height: 170px; background: linear-gradient(145deg,#14242b,#0a151b); border: 1px solid #34464d; border-radius: 7px; }
.reviews-grid h3 { margin: 0; font-size: 13px; }
.reviews-grid small { display: block; color: #9eacb0; margin: 3px 0 7px 23px; }
.reviews-grid b { color: var(--lime); letter-spacing: 2px; }
.reviews-grid p { margin-bottom: 0; color: #cbd3d6; line-height: 1.35; }

.news-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; }
.news-grid article { overflow: hidden; background: #14242b; border: 1px solid #34464d; border-radius: 6px; }
.news-image { height: 88px; display: grid; place-items: center; font-size: 27px; font-weight: 800; letter-spacing: .15em; text-shadow: 0 2px 6px #000; background: radial-gradient(circle,#56666e,#111c22 70%); }
.news-image.ssd { background: linear-gradient(145deg,#262f31,#74817d 48%,#131b1f 49% 100%); }
.news-image.hdd { background: radial-gradient(circle at 60% 42%,#dbe7ec 0 19%,#3b4a51 20% 27%,#121a1d 28%); }
.news-image.raid { background: repeating-linear-gradient(90deg,#162832 0 22px,#53646a 23px 32px,#071217 33px 39px); }
.news-image.erase { background: linear-gradient(135deg,#da3f28 0 27%,#252e33 28% 60%,#209bd3 61%); }
.news-grid h3 { font-size: 12px; margin: 8px 8px 2px; font-weight: 400; min-height: 29px; }
.news-grid small { display: block; margin: 0 8px 8px; color: #8e9da2; }

.faults-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.faults-grid article { display: flex; align-items: center; gap: 8px; }
.faults-grid i { color: var(--lime); font-size: 32px; font-style: normal; }
.faults-grid b, .faults-grid span { display: block; }
.faults-grid b { font-size: 11px; }
.faults-grid span { color: #9ba9ae; font-size: 9px; margin-top: 3px; }

.prices-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; }
.prices-grid article { min-height: 115px; }
.prices-grid span { align-self: flex-start; text-align: left; font-size: 11px; min-height: 29px; }
.prices-grid i { font-size: 29px; font-style: normal; margin: 6px 0; filter: grayscale(.6); }
.prices-grid img { width: 78px; height: 52px; margin: 5px 0; object-fit: cover; border-radius: 5px; }
.prices-grid b { color: var(--lime); font-size: 17px; }

.right-rail { min-width: 0; }
.side-panel { padding: 15px; margin-bottom: 13px; font-size: 15px; }
.side-panel h2 { font-size: 14px; }
.side-panel > a:not(.more):not(.outline-button) { display: block; color: #c7d1d4; margin: 15px 0; overflow-wrap: anywhere; }
.side-panel p { color: #b4c0c4; line-height: 1.45; }
#contact { padding-inline: 12px; font-size: 16px; }
#contact .contact-line {
  display: grid; grid-template-columns: 18px minmax(0, 1fr); align-items: start; gap: 8px;
  font-size: clamp(15px, 1.12vw, 16px); font-variant-numeric: tabular-nums;
  letter-spacing: -.01em; white-space: nowrap;
}
#contact a.contact-line { overflow-wrap: normal; }
#contact .contact-icon { width: 18px; display: inline-flex; justify-content: center; color: var(--muted); }
#contact .contact-address .contact-value { white-space: normal; }
.outline-button {
  display: flex; align-items: center; justify-content: center; width: 100%;
  padding: 9px 6px; color: var(--lime); border: 1px solid var(--lime-dark);
  border-radius: 20px; background: transparent; font-weight: 700; font-size: 11px;
}
.feature-list, .check-list { padding: 0; margin: 0; list-style: none; }
.feature-list li { display: flex; gap: 8px; margin: 15px 0; }
.feature-list i {
  width: 27px; height: 27px; flex: 0 0 27px; display: grid; place-items: center;
  color: var(--lime); border: 1px solid var(--lime); border-radius: 50%; font-style: normal;
}
.feature-list b, .feature-list small { display: block; }
#why { padding-inline: 11px; }
.feature-list b { font-size: 14px; white-space: nowrap; }
.feature-list small { color: #a3b0b4; margin-top: 3px; font-size: 13px; line-height: 1.35; white-space: nowrap; }
.specialists article { display: flex; gap: 8px; margin: 13px 0; align-items: center; }
.avatar {
  width: 50px; height: 50px; flex: 0 0 50px; display: grid; place-items: center;
  border-radius: 50%; color: #153646; font-weight: 800; object-fit: cover; object-position: center 28%;
  background: radial-gradient(circle at 50% 30%,#e2b09b 0 15%,transparent 16%),linear-gradient(120deg,#dae6e9,#73a7c1);
  border: 2px solid #bdd8e4;
}
.specialists b, .specialists span, .specialists small { display: block; }
.specialists b { font-size: 13px; }
.specialists span, .specialists small { color: #aab7bb; margin-top: 3px; font-size: 13px; }
.emergency { border-color: #83b400; text-align: center; padding: 19px 13px; }
.emergency > a {
  color: var(--lime) !important; font-size: 27px; line-height: 1.15; font-weight: 800;
}
.emergency .button { width: 100%; margin-top: 12px; }
.check-list li { margin: 12px 0; padding-left: 21px; position: relative; color: #c4ced1; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--lime); font-weight: 800; }
.requisites p { font-size: 13px; line-height: 1.55; }
.requisites .outline-button { border-radius: 5px; }

.seo-home {
  width: min(1160px, calc(100% - 32px)); margin: 30px auto; padding: 34px;
  border: 1px solid var(--line); border-radius: 12px;
  background: linear-gradient(140deg, rgba(13, 31, 39, .97), rgba(6, 17, 23, .98));
}
.article-kicker { margin: 0 0 8px; color: var(--lime); font-weight: 700; letter-spacing: .14em; font-size: 11px; }
.seo-home h2 { margin: 0 0 12px; font-size: clamp(28px, 4vw, 44px); }
.seo-lead { max-width: 1000px; color: #c8d3d6; font-size: 17px; line-height: 1.6; }
.seo-home strong, .seo-article strong { color: var(--lime); }
.seo-home u, .seo-article u { text-decoration-color: var(--lime); text-decoration-thickness: 2px; text-underline-offset: 3px; }
.seo-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 25px; }
.seo-columns article { padding: 20px; border: 1px solid #31454e; border-radius: 8px; background: #0c1b22; }
.seo-columns h3 { margin: 0 0 10px; font-size: 18px; }
.seo-columns p { margin: 0; color: #b7c4c8; line-height: 1.6; }
.seo-links { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.seo-links a { padding: 9px 14px; border: 1px solid #526d25; border-radius: 18px; color: var(--lime); }

.extended-footer {
  width: min(1440px, 100%); margin: 0 auto; padding: 30px;
  display: grid; grid-template-columns: minmax(250px, .8fr) minmax(330px, 1.05fr) minmax(360px, 1.25fr); align-items: stretch; gap: 25px;
  border-top: 1px solid #304047; background: #061117;
}
.extended-footer h2 { margin: 0 0 13px; font-size: 16px; }
.footer-brand { padding: 0 0 18px; }
.footer-brand b { font-size: 21px; }
.footer-company p { color: #9caab0; line-height: 1.55; }
.footer-company > strong { display: block; margin-top: 15px; color: white; }
.footer-phone { display: block; margin-top: 7px; color: var(--lime); font-size: 25px; font-weight: 700; }
.footer-bank-details {
  margin-top: 22px; padding: 14px 16px; border: 1px solid #30464f; border-radius: 9px;
  background: rgba(10, 26, 33, .72);
}
.footer-bank-details h3 { margin: 0 0 8px; color: #eef5f7; font-size: 14px; }
.footer-bank-details p { margin: 0; font-size: 12px; line-height: 1.6; overflow-wrap: anywhere; }
.footer-links { min-width: 0; }
.footer-service-links, .footer-brand-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 18px; }
.footer-brands-title { margin-top: 24px !important; }
.footer-links a { color: #aebbc0; }
.footer-links a:hover { color: var(--lime); }
.footer-map {
  align-self: start; padding: 16px; border: 1px solid #3d5159; border-radius: 13px;
  background: linear-gradient(145deg, #0d1d24, #08151b);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .28), inset 0 0 0 1px rgba(168, 233, 0, .06);
}
.footer-map iframe {
  width: 100%; height: 258px; display: block; border: 2px solid #526f28;
  border-radius: 10px; filter: saturate(.82) contrast(1.04);
  box-shadow: 0 0 0 4px rgba(168, 233, 0, .055);
}
.visit-notice {
  margin-top: 15px; padding: 13px 15px 13px 42px; position: relative;
  color: #b9c6ca; line-height: 1.45; border: 1px solid #40545c; border-radius: 8px;
  background: rgba(7, 20, 26, .86);
}
.visit-notice::before {
  content: "☎"; position: absolute; left: 15px; top: 13px;
  color: var(--lime); font-size: 18px; line-height: 1;
}
.visit-notice strong { color: var(--lime); }
.footer-bottom { grid-column: 1 / -1; padding-top: 18px; color: #78888e; border-top: 1px solid #23343b; text-align: center; font-size: 11px; }

.inner-page { background: #07131a; }
.inner-header {
  min-height: 92px; padding: 14px max(22px, calc((100% - 1180px) / 2));
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 26px;
  border-bottom: 1px solid #30434b; background: #061117;
}
.inner-header .brand { padding: 0; }
.inner-header .brand b { font-size: 20px; }
.inner-nav { display: flex; justify-content: center; flex-wrap: wrap; gap: 17px; color: #b9c6ca; }
.inner-nav a:hover { color: var(--lime); }
.header-phone { color: var(--lime); font-size: 18px; font-weight: 700; white-space: nowrap; }
.article-shell { width: min(1120px, calc(100% - 32px)); margin: 0 auto; padding: 25px 0 45px; }
.inner-content-grid { align-items: start; }
.inner-article-shell { width: 100%; margin: 0; padding: 0 0 32px; min-width: 0; }
.inner-site-shell .seo-article { padding: clamp(22px, 3vw, 38px); }
.inner-site-shell .seo-article h1 { font-size: clamp(31px, 3.4vw, 48px); overflow-wrap: anywhere; }
.inner-site-shell .seo-article h2 { font-size: clamp(23px, 2.2vw, 28px); }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 9px; color: #87989e; font-size: 12px; margin-bottom: 22px; }
.breadcrumbs a { color: var(--lime); }
.seo-article {
  padding: clamp(24px, 4vw, 48px); border: 1px solid var(--line); border-radius: 13px;
  background: linear-gradient(140deg, #0d1d24, #07151b);
}
.seo-article h1 { max-width: 850px; margin: 0 0 16px; font-size: clamp(34px, 5vw, 58px); line-height: 1.05; }
.seo-article .lead { max-width: 850px; margin: 0 0 35px; color: #c2cdd0; font-size: 18px; line-height: 1.6; }
.article-media {
  width: min(420px, 100%); height: 250px; display: block; margin: -8px 0 30px;
  object-fit: cover; border: 1px solid #30434b; border-radius: 10px;
}
.seo-article section { margin-top: 38px; }
.seo-article h2 { margin: 0 0 13px; font-size: 28px; }
.seo-article h3 { margin: 23px 0 8px; font-size: 19px; }
.seo-article p { color: #b8c5c9; line-height: 1.65; }
.article-grid { display: grid; grid-template-columns: minmax(0, 1fr) 310px; gap: 26px; align-items: start; }
.article-grid section { margin-top: 0; }
.seo-list { padding-left: 20px; color: #d9e1e3; line-height: 1.8; }
.seo-list li::marker { color: var(--lime); }
.article-cta { padding: 23px; border: 1px solid #688f16; border-radius: 9px; background: #0b191d; }
.article-cta span { display: block; color: #9cabaf; }
.article-cta > a:not(.button) { display: block; margin: 8px 0; color: var(--lime); font-size: 25px; font-weight: 700; }
.article-cta .button { width: 100%; margin-top: 7px; }
.article-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; }
.article-steps > div { padding: 21px; border: 1px solid #30434b; border-radius: 8px; background: #0a181e; }
.article-steps b { color: var(--lime); font-size: 25px; }
.article-steps h3 { margin-top: 8px; }
.seo-detail-block {
  padding: clamp(20px, 3vw, 30px); border: 1px solid #334950; border-radius: 10px;
  background: linear-gradient(135deg, rgba(156, 232, 0, .055), rgba(7, 19, 26, .35));
}
.seo-detail-block .article-kicker { margin: 0 0 8px; color: var(--lime); font-size: 11px; font-weight: 700; letter-spacing: .12em; }
.seo-fact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 20px; }
.seo-fact-grid article { padding: 16px; border: 1px solid #2e424a; border-radius: 8px; background: #09171d; }
.seo-fact-grid b { color: var(--lime); font-size: 20px; }
.seo-fact-grid p { margin: 8px 0 0; font-size: 13px; line-height: 1.5; }
.team-intro { max-width: 900px; }
.team-grid { display: grid; gap: 16px; margin-top: 24px; }
.team-card {
  display: grid; grid-template-columns: 176px minmax(0, 1fr); gap: 24px; padding: 20px;
  border: 1px solid #30454d; border-radius: 10px; background: linear-gradient(145deg,#102128,#09171d);
}
.team-card > img { width: 176px; height: 176px; border-radius: 9px; object-fit: cover; object-position: center 26%; border: 1px solid #4a626b; }
.team-card h3 { margin: 0 0 6px; font-size: 23px; }
.team-role { margin: 0 0 12px; color: var(--lime) !important; font-weight: 700; }
.team-meta { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 12px; }
.team-meta span { padding: 5px 9px; border: 1px solid #3c525a; border-radius: 16px; color: #d2dcdf; font-size: 12px; }
.team-card p:last-child { margin-bottom: 0; }
.team-principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.team-principles article { padding: 16px; border: 1px solid #2e424a; border-radius: 8px; background: #09171d; }
.team-principles b { display: block; margin-bottom: 8px; color: var(--lime); font-size: 19px; }
.location-article .lead { margin-bottom: 26px; }
.location-prices {
  margin-top: 26px; padding-top: 24px; border-top: 1px solid #2c4149;
}
.location-section-heading {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; margin-bottom: 15px;
}
.location-section-heading span {
  display: block; margin-bottom: 5px; color: var(--lime); font-size: 11px; font-weight: 800; letter-spacing: .08em;
}
.location-section-heading h2 { margin: 0; }
.location-section-heading > a { flex: 0 0 auto; color: var(--lime); font-weight: 700; }
.location-price-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.location-price-item {
  display: flex; align-items: center; justify-content: space-between; gap: 14px; min-height: 52px; padding: 11px 13px;
  border: 1px solid #30454d; border-radius: 7px; color: #d3dde0; background: linear-gradient(145deg, #102128, #09171d);
}
.location-price-item:hover { border-color: #6f9600; color: #f1f7f8; }
.location-price-item span { line-height: 1.3; }
.location-price-item b { flex: 0 0 auto; color: var(--lime); font-size: 15px; white-space: nowrap; }
.location-price-note { margin: 12px 0 0; color: #aebbc0; font-size: 13px; line-height: 1.55; }
.location-map-frame { background: #d9e1e3; }
.location-related { padding-top: 24px; border-top: 1px solid #2c4149; }
.location-link-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.location-link-grid a,
.location-directory a {
  display: block; padding: 10px 12px; border: 1px solid #30454d; border-radius: 6px;
  color: #c9d4d7; background: #0a181e; line-height: 1.3;
}
.location-link-grid a:hover,
.location-directory a:hover { color: var(--lime); border-color: #6f9600; }
.location-directory { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.seo-practical-note { margin: 18px 0 0; padding: 15px 17px; border-left: 3px solid var(--lime); background: rgba(0, 0, 0, .16); }
.seo-practical-note strong { color: #eef5f7; }
.seo-practical-note u { text-decoration-color: rgba(156, 232, 0, .6); text-underline-offset: 3px; }
.news-feed { padding: 0; }
.news-feed-heading {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 18px;
  padding-bottom: 18px; border-bottom: 1px solid var(--line);
}
.news-feed-heading h2 { margin-bottom: 0; }
.news-feed-heading > span {
  flex: 0 0 auto; padding: 7px 12px; color: var(--lime);
  border: 1px solid var(--lime-dark); border-radius: 18px; font-size: 12px; font-weight: 700;
}
.news-list { display: grid; }
.news-list-item {
  display: grid; grid-template-columns: 54px minmax(0, 1fr); gap: 18px;
  padding: 25px 0; border-bottom: 1px solid var(--line);
}
.news-index {
  width: 45px; height: 45px; display: grid; place-items: center;
  color: var(--lime); border: 1px solid var(--lime-dark); border-radius: 50%;
  background: color-mix(in srgb, var(--panel-2) 86%, transparent); font-size: 15px; font-weight: 800;
}
.news-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 9px; margin-bottom: 8px; }
.news-meta time { color: var(--muted); font-size: 12px; }
.news-meta span {
  padding: 4px 9px; color: var(--lime); background: color-mix(in srgb, var(--lime) 10%, transparent);
  border-radius: 12px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
}
.news-list-item h3 { margin: 0 0 9px; font-size: clamp(19px, 2.2vw, 25px); line-height: 1.2; }
.news-list-item p { max-width: 790px; margin: 0; }
.news-contact {
  display: flex; align-items: center; justify-content: space-between; gap: 22px;
  padding: 22px; border: 1px solid var(--line); border-radius: 9px; background: var(--panel-2);
}
.news-contact h2 { margin-bottom: 7px; }
.news-contact p { margin: 0; }
.news-contact .button { flex: 0 0 auto; }
.faq-block details { margin: 9px 0; padding: 16px 18px; border: 1px solid #30434b; border-radius: 7px; background: #0a181e; }
.faq-block summary { cursor: pointer; color: #eef5f7; font-weight: 700; }
.faq-block details p { margin-bottom: 0; }

.callback-modal {
  width: min(450px, calc(100% - 28px)); color: var(--text);
  background: #0a181f; border: 1px solid #48606a; border-radius: 12px; padding: 28px;
  box-shadow: 0 25px 80px #000;
}
.callback-modal::backdrop { background: rgba(0, 5, 8, .8); backdrop-filter: blur(4px); }
.callback-modal h2 { font-size: 25px; margin: 0 0 8px; }
.callback-modal p { color: #aebcc1; }
.callback-modal label { display: block; margin: 15px 0; color: #cbd6d9; }
.callback-modal input { width: 100%; margin-top: 6px; padding: 12px; border-radius: 5px; border: 1px solid #3c515a; color: white; background: #071219; }
.callback-modal .button { width: 100%; }
.callback-modal form small { display: block; color: #88989e; margin-top: 10px; }
.callback-modal form small a { color: var(--lime); }
.modal-close { position: absolute; right: 12px; top: 9px; border: 0; color: white; background: transparent; font-size: 25px; }
.form-success { padding: 24px 0 10px; color: var(--lime); font-size: 19px; text-align: center; }
.error-page, .legal-page { min-height: 100vh; display: grid; place-items: center; padding: 20px; }
.error-page main, .legal-page main { width: min(680px, 100%); padding: 40px; border: 1px solid var(--line); background: var(--panel); border-radius: 12px; }
.error-page main { text-align: center; }
.error-page .logo-mark { margin: auto; }
.error-page h1 { font-size: 70px; margin: 18px 0 0; color: var(--lime); }
.legal-page h1 { font-size: 35px; }
.legal-page p { line-height: 1.65; color: #c0cbcf; }
.back-link, .legal-page a { color: var(--lime); }

.theme-switcher {
  position: fixed; z-index: 1200; right: 16px; bottom: 16px;
  display: flex; gap: 4px; padding: 5px;
  border: 1px solid var(--line); border-radius: 24px;
  background: color-mix(in srgb, var(--panel) 92%, transparent);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .28);
  backdrop-filter: blur(10px);
}
.theme-switcher button {
  min-height: 34px; padding: 6px 11px; border: 0; border-radius: 18px;
  color: var(--muted); background: transparent; font-weight: 700; font-size: 12px;
}
.theme-switcher button:hover { color: var(--text); }
.theme-switcher button.active {
  color: #182000; background: linear-gradient(#c5f840, #93cf00);
  box-shadow: 0 2px 9px rgba(84, 112, 0, .28);
}

html[data-theme="metallic"] {
  color-scheme: dark;
  --bg: #3b4145;
  --bg-deep: #24292d;
  --panel: #454c51;
  --panel-2: #50585e;
  --line: #68737a;
  --text: #f4f6f7;
  --muted: #c0c8cc;
}
html[data-theme="metallic"] body,
html[data-theme="metallic"] .inner-page {
  background:
    radial-gradient(circle at 42% 0, rgba(255, 255, 255, .13), transparent 28rem),
    repeating-linear-gradient(115deg, rgba(255,255,255,.018) 0 1px, transparent 1px 7px),
    linear-gradient(115deg, #2b3034, #555d62 48%, #30363a);
}
html[data-theme="metallic"] .left-rail {
  background: linear-gradient(155deg, rgba(39, 44, 48, .98), rgba(75, 83, 88, .96));
  border-color: #747f85;
}
html[data-theme="metallic"] .nav-panel,
html[data-theme="metallic"] .rail-help,
html[data-theme="metallic"] .side-panel,
html[data-theme="metallic"] .panel,
html[data-theme="metallic"] .seo-home,
html[data-theme="metallic"] .seo-article {
  background: linear-gradient(145deg, rgba(83, 92, 98, .96), rgba(48, 54, 58, .98));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.09), 0 8px 18px rgba(0,0,0,.12);
}
html[data-theme="metallic"] .nav-panel a:hover,
html[data-theme="metallic"] .nav-panel a.active { background: #687279; }
html[data-theme="metallic"] .media-grid article,
html[data-theme="metallic"] .prices-grid article,
html[data-theme="metallic"] .reviews-grid article,
html[data-theme="metallic"] .news-grid article,
html[data-theme="metallic"] .seo-columns article,
html[data-theme="metallic"] .article-steps > div,
html[data-theme="metallic"] .seo-fact-grid article,
html[data-theme="metallic"] .faq-block details,
html[data-theme="metallic"] .article-cta {
  background: linear-gradient(145deg, #5a6368, #3f464a);
  border-color: #758087;
}
html[data-theme="metallic"] .extended-footer,
html[data-theme="metallic"] .footer-map,
html[data-theme="metallic"] .footer-bank-details,
html[data-theme="metallic"] .visit-notice {
  background: linear-gradient(145deg, #444b50, #2e3438);
  border-color: #707b82;
}

html[data-theme="white"] {
  color-scheme: light;
  --bg: #f4f6f7;
  --bg-deep: #e7ecee;
  --panel: #ffffff;
  --panel-2: #f0f3f4;
  --line: #c8d1d5;
  --text: #1d292e;
  --muted: #607078;
  --lime: #6e9e00;
  --lime-dark: #628c00;
}
html[data-theme="white"] body,
html[data-theme="white"] .inner-page {
  background:
    radial-gradient(circle at 42% 0, rgba(255,255,255,.95), transparent 32rem),
    linear-gradient(120deg, #eef2f3, #fafbfb 55%, #e8edef);
}
html[data-theme="white"] .left-rail {
  background: linear-gradient(155deg, #ffffff, #e9eef0);
  border-color: #bcc7cc;
}
html[data-theme="white"] .brand small,
html[data-theme="white"] .nav-panel a,
html[data-theme="white"] .nav-panel a i,
html[data-theme="white"] .rail-help small { color: #52636b; }
html[data-theme="white"] .logo-mark { border-color: #526169; }
html[data-theme="white"] .nav-panel,
html[data-theme="white"] .rail-help,
html[data-theme="white"] .side-panel,
html[data-theme="white"] .panel {
  background: linear-gradient(145deg, #ffffff, #edf1f2);
  border-color: #c1ccd0;
  box-shadow: 0 5px 16px rgba(32, 50, 58, .07);
}
html[data-theme="white"] .nav-panel h2,
html[data-theme="white"] .side-panel h2,
html[data-theme="white"] .nav-panel a { border-color: #d3dade; }
html[data-theme="white"] .nav-panel a:hover,
html[data-theme="white"] .nav-panel a.active { color: #172126; background: #dfe6e8; }
html[data-theme="white"] .section-title { background: var(--bg); }
html[data-theme="white"] .urgent p,
html[data-theme="white"] .urgent-number small,
html[data-theme="white"] .media-grid span,
html[data-theme="white"] .reviews-grid p,
html[data-theme="white"] .side-panel p,
html[data-theme="white"] .side-panel > a:not(.more):not(.outline-button),
html[data-theme="white"] .feature-list small,
html[data-theme="white"] .specialists span,
html[data-theme="white"] .specialists small,
html[data-theme="white"] .check-list li { color: #53636a; }
html[data-theme="white"] .media-grid article,
html[data-theme="white"] .prices-grid article,
html[data-theme="white"] .reviews-grid article,
html[data-theme="white"] .news-grid article {
  background: linear-gradient(145deg, #ffffff, #e9eef0);
  border-color: #c3cdd1;
}
html[data-theme="white"] .process-grid i { background: #eaf2db; }
html[data-theme="white"] .seo-home,
html[data-theme="white"] .seo-article {
  background: linear-gradient(145deg, #ffffff, #edf2f3);
  border-color: #c4ced2;
  box-shadow: 0 12px 32px rgba(44, 61, 68, .09);
}
html[data-theme="white"] .seo-lead,
html[data-theme="white"] .seo-columns p,
html[data-theme="white"] .seo-article .lead,
html[data-theme="white"] .seo-article p,
html[data-theme="white"] .article-cta span,
html[data-theme="white"] .seo-list { color: #485a62; }
html[data-theme="white"] .seo-columns article,
html[data-theme="white"] .article-steps > div,
html[data-theme="white"] .seo-fact-grid article,
html[data-theme="white"] .team-card,
html[data-theme="white"] .team-principles article,
html[data-theme="white"] .location-price-item,
html[data-theme="white"] .location-link-grid a,
html[data-theme="white"] .location-directory a,
html[data-theme="white"] .faq-block details,
html[data-theme="white"] .article-cta {
  background: #f7f9fa;
  border-color: #c6d0d4;
}
html[data-theme="white"] .seo-detail-block {
  background: linear-gradient(135deg, rgba(110,158,0,.08), rgba(236,241,243,.8));
  border-color: #bdc9ce;
}
html[data-theme="white"] .seo-practical-note { background: #edf2f3; }
html[data-theme="white"] .seo-practical-note strong,
html[data-theme="white"] .faq-block summary { color: #25333a; }
html[data-theme="white"] .extended-footer {
  color: #253238; background: linear-gradient(145deg, #f8fafb, #e2e8ea);
  border-color: #bac6ca;
}
html[data-theme="white"] .footer-company p,
html[data-theme="white"] .footer-links a,
html[data-theme="white"] .visit-notice { color: #56666d; }
html[data-theme="white"] .footer-company > strong,
html[data-theme="white"] .footer-bank-details h3 { color: #253238; }
html[data-theme="white"] .footer-map,
html[data-theme="white"] .footer-bank-details,
html[data-theme="white"] .visit-notice {
  background: rgba(255,255,255,.72); border-color: #bdc9cd;
  box-shadow: 0 8px 24px rgba(44,61,68,.08);
}
html[data-theme="white"] .callback-modal {
  color: #1d292e; background: #ffffff; border-color: #b9c5ca;
  box-shadow: 0 25px 80px rgba(22, 35, 42, .3);
}
html[data-theme="white"] .callback-modal p,
html[data-theme="white"] .callback-modal label { color: #52636b; }
html[data-theme="white"] .callback-modal input {
  color: #1d292e; background: #f4f7f8; border-color: #bac6cb;
}
html[data-theme="white"] .modal-close { color: #1d292e; }
html[data-theme="white"] .error-page main,
html[data-theme="white"] .legal-page main { background: #fff; border-color: #c5cfd3; }
html[data-theme="white"] .legal-page p { color: #475960; }
html[data-theme="white"] .menu-toggle { color: #1d292e; background: #fff; border-color: #b9c5ca; }

@media (max-width: 1100px) {
  .site-shell { grid-template-columns: 190px minmax(0, 1fr); }
  .content-grid { grid-template-columns: minmax(0, 1fr) 190px; }
  .brand { padding-left: 3px; padding-right: 3px; }
  .brand b { font-size: 17px; }
  .hero { padding-left: 24px; }
  .hero-facts { left: 24px; }
  .urgent-number { display: none; }
  .media-grid { grid-template-columns: repeat(3, 1fr); }
  .letters { gap: 5px; }
}

@media (max-width: 840px) {
  body { font-size: 15px; }
  .site-shell { display: block; }
  .left-rail { padding: 12px 14px; border-right: 0; border-bottom: 1px solid #304047; }
  .left-rail > .brand { padding: 0; }
  .brand b { font-size: 22px; }
  .menu-toggle {
    position: absolute; right: 14px; top: 20px; display: block;
    border: 1px solid #3a5059; border-radius: 5px; padding: 9px 12px; color: white; background: #0c1b22;
  }
  #rail-content { display: none; padding-top: 14px; }
  #rail-content.open { display: block; }
  .manufacturers, .rail-help { display: none; }
  .hero { min-height: 415px; padding: 30px 20px; background-position: 60% center; }
  .hero::before { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.22); }
  .hero-copy { position: relative; }
  .hero h1 { font-size: clamp(32px, 8vw, 48px); }
  .hero-facts { left: 20px; right: 20px; bottom: 20px; grid-template-columns: repeat(2, 1fr); }
  .content-grid { display: flex; flex-direction: column; padding: 10px; }
  .right-rail { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .side-panel { margin: 0; }
  .urgent { grid-template-columns: 62px 1fr; padding: 14px; }
  .lab-grid, .news-grid, .prices-grid { grid-template-columns: repeat(2, 1fr); }
  .letters { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .seo-columns { grid-template-columns: 1fr; }
  .extended-footer { grid-template-columns: 1fr 1fr; }
  .footer-map { grid-column: 1 / -1; }
  .inner-header { grid-template-columns: 1fr auto; }
  .inner-nav { grid-column: 1 / -1; grid-row: 2; justify-content: flex-start; }
  .article-grid { grid-template-columns: 1fr; }
  .article-steps { grid-template-columns: 1fr; }
  .seo-fact-grid { grid-template-columns: 1fr; }
  .team-principles { grid-template-columns: 1fr; }
  .location-price-grid { grid-template-columns: 1fr; }
  .location-directory { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 520px) {
  .hero { min-height: 495px; background-position: 66% center; }
  .hero h1 { font-size: 31px; }
  .hero-copy > p:last-child br { display: none; }
  .hero-facts { grid-template-columns: 1fr 1fr; gap: 7px; }
  .hero-facts div { font-size: 10px; }
  .urgent { display: block; text-align: center; }
  .urgent-icon { margin: 0 auto 10px; }
  .media-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); row-gap: 16px; }
  .process-grid article:last-child { grid-column: 1 / -1; }
  .letters { grid-template-columns: repeat(2, 1fr); }
  .letters article:last-child { grid-column: 1 / -1; }
  .faults-grid { grid-template-columns: 1fr 1fr; }
  .right-rail { grid-template-columns: 1fr; }
  .seo-home { width: calc(100% - 20px); padding: 23px 18px; }
  .extended-footer { grid-template-columns: 1fr; padding: 25px 18px; }
  .footer-map { grid-column: auto; }
  .footer-company, .footer-links { text-align: left; }
  .inner-header { display: flex; flex-wrap: wrap; padding: 14px; }
  .inner-nav { order: 3; width: 100%; justify-content: flex-start; gap: 12px; font-size: 13px; }
  .header-phone { margin-left: auto; font-size: 15px; }
  .seo-article { padding: 24px 18px; }
  .seo-article h1 { font-size: 34px; }
  .team-card { grid-template-columns: 1fr; padding: 14px; }
  .team-card > img { width: 100%; height: auto; aspect-ratio: 1; }
  .location-section-heading { display: block; }
  .location-section-heading > a { display: inline-block; margin-top: 10px; }
  .location-link-grid,
  .location-directory { grid-template-columns: 1fr; }
  .news-feed-heading { display: block; }
  .news-feed-heading > span { display: inline-block; margin-top: 12px; }
  .news-list-item { grid-template-columns: 38px minmax(0, 1fr); gap: 12px; padding: 21px 0; }
  .news-index { width: 36px; height: 36px; font-size: 12px; }
  .news-contact { display: block; }
  .news-contact .button { width: 100%; margin-top: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* RecoveryLAB unique heading qualifiers */
.heading-qualifier { color: #b8c7cb; font-size: .82em; font-weight: inherit; }
h1 .heading-qualifier { color: #d6e2e5; }
body.light-theme .heading-qualifier { color: #50636a; }
body.light-theme h1 .heading-qualifier { color: #33474f; }
/* End RecoveryLAB unique heading qualifiers */

/* RecoveryLAB contextual SEO interlinking */
.seo-interlinks {
  margin-top: 38px; padding-top: 28px; border-top: 1px solid #2c4149;
}
.seo-interlinks > h2 { margin-bottom: 18px; }
.seo-interlink-groups {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px;
}
.seo-interlink-groups > section {
  margin: 0; padding: 16px; border: 1px solid #30454d; border-radius: 9px;
  background: rgba(4, 18, 24, .72);
}
.seo-interlink-groups h3 { margin: 0 0 11px; color: #eff6f7; font-size: 17px; }
.seo-interlink-groups ul { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.seo-interlink-groups a { color: #bdcdd1; line-height: 1.35; text-decoration: none; }
.seo-interlink-groups a::after { content: "  →"; color: var(--lime); }
.seo-interlink-groups a:hover,
.seo-interlink-groups a:focus-visible { color: var(--lime); text-decoration: underline; text-underline-offset: 3px; }
.seo-interlinks-directory .seo-city-directory { grid-column: 1 / -1; }
.seo-city-directory ul { grid-template-columns: repeat(4, minmax(0, 1fr)); column-gap: 18px; }
body.light-theme .seo-interlink-groups > section { background: rgba(255, 255, 255, .72); }
body.light-theme .seo-interlink-groups h3 { color: #19262b; }
body.light-theme .seo-interlink-groups a { color: #40545c; }
body.light-theme .seo-interlink-groups a:hover,
body.light-theme .seo-interlink-groups a:focus-visible { color: #527b00; }
@media (max-width: 760px) {
  .seo-interlink-groups { grid-template-columns: 1fr; }
  .seo-interlinks-directory .seo-city-directory { grid-column: auto; }
  .seo-city-directory ul { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 420px) {
  .seo-city-directory ul { grid-template-columns: 1fr; }
}
/* End RecoveryLAB contextual SEO interlinking */
