:root {
  --green: #147a55;
  --green-dark: #0f5f43;
  --green-soft: #e9f4ef;
  --ink: #20242a;
  --ink-soft: #344452;
  --muted: #687480;
  --bluegreen: #14516e;
  --line: #d9e4df;
  --paper: #ffffff;
  --soft: #f4f8f6;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(19, 35, 43, .12);
  --radius: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  text-rendering: geometricPrecision;
}
body.is-modal-open { overflow: hidden; }
button, input, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1230px, calc(100% - 64px)); margin: 0 auto; }

.service-bar {
  min-height: 30px;
  color: var(--white);
  background: var(--green);
  font-weight: 760;
  font-size: 13px;
  letter-spacing: .01em;
}
.service-bar__inner {
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid rgba(19,35,43,.08);
  box-shadow: 0 4px 18px rgba(19,35,43,.05);
  backdrop-filter: blur(14px);
}
.site-header__inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  min-width: 188px;
  color: var(--ink);
}
.brand__logo {
  width: 138px;
  height: auto;
  display: block;
}
.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  color: #294f63;
  font-size: 14px;
  font-weight: 780;
}
.site-nav a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}
.site-nav a:hover { border-color: rgba(20,122,85,.55); }
.header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.messenger-link {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d4e0dc;
  border-radius: 12px;
  background: #fff;
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}
.messenger-link:hover {
  transform: translateY(-1px);
  border-color: rgba(20,122,85,.45);
  box-shadow: 0 10px 22px rgba(19,35,43,.08);
}
.messenger-link img { width: 23px; height: 23px; object-fit: contain; }
.messenger-link--max img { width: 25px; height: 25px; }

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 0 28px;
  font-weight: 820;
  font-size: 14px;
  letter-spacing: .01em;
  cursor: pointer;
  transition: transform .16s ease, background-color .16s ease, border-color .16s ease, box-shadow .16s ease;
}
.button:hover { transform: translateY(-1px); }
.button--small {
  min-height: 42px;
  color: var(--white);
  background: var(--bluegreen);
}
.button--primary {
  min-width: 248px;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 14px 34px rgba(20,122,85,.2);
}
.button--primary:hover,
.button--submit:hover { background: var(--green-dark); }
.button--secondary {
  min-width: 216px;
  color: var(--bluegreen);
  background: var(--white);
  border-color: rgba(20,81,110,.42);
}
.button--light {
  min-width: 250px;
  color: var(--green-dark);
  background: var(--white);
  border-color: rgba(255,255,255,.6);
}
.button--submit {
  width: 100%;
  color: var(--white);
  background: var(--green);
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #f8fbfa 100%);
}
.hero__grid {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(500px, .98fr);
  align-items: stretch;
  gap: 48px;
}
.hero__copy {
  padding: 82px 0 86px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero__eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 12px;
  font-weight: 860;
  letter-spacing: .11em;
  line-height: 1.4;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 640px;
  margin: 0;
  color: #22262b;
  font-size: clamp(44px, 4.15vw, 60px);
  line-height: 1.06;
  letter-spacing: 0;
  overflow-wrap: break-word;
  word-break: normal;
}
.hero__lead {
  max-width: 610px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.58;
}
.hero__actions {
  margin-top: 36px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__image {
  position: relative;
  min-height: 620px;
  margin-right: calc((1230px - min(1230px, calc(100vw - 64px))) / -2);
  overflow: hidden;
  border-top-left-radius: 96px;
  background: #e5ece9;
  box-shadow: inset 0 0 0 1px rgba(19,35,43,.05);
}
.hero__image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255,255,255,.18), rgba(255,255,255,0) 32%), linear-gradient(0deg, rgba(7,20,24,.18), rgba(7,20,24,0) 44%);
  pointer-events: none;
}
.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__image-note {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 2;
  width: min(310px, calc(100% - 56px));
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 14px;
  color: #fff;
  background: rgba(8, 32, 38, .72);
  backdrop-filter: blur(10px);
}
.hero__image-note span {
  display: block;
  margin-bottom: 4px;
  color: rgba(255,255,255,.7);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.hero__image-note strong {
  display: block;
  font-size: 16px;
  line-height: 1.25;
}
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: -38px;
  z-index: 3;
  width: 78px;
  height: 78px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: #24282c;
  font-size: 32px;
  box-shadow: 0 16px 36px rgba(0,0,0,.18);
}

.benefits {
  padding: 82px 0 70px;
  background: var(--soft);
}
.benefits__grid {
  display: grid;
  grid-template-columns: 1.12fr repeat(3, 1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.benefits__intro,
.benefit-item {
  min-height: 210px;
  padding: 30px;
  border-right: 1px solid var(--line);
  background: #fff;
}
.benefit-item:last-child { border-right: 0; }
.benefits__intro strong,
.benefit-item strong {
  display: block;
  color: #26313a;
  font-size: 21px;
  line-height: 1.18;
}
.benefits__intro p:not(.section-label),
.benefit-item p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.5;
}
.benefit-item span {
  display: block;
  margin-bottom: 40px;
  color: var(--green);
  font-size: 12px;
  font-weight: 860;
  letter-spacing: .12em;
}

.equipment {
  padding: 76px 0;
  background: #fff;
}
.equipment__grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .78fr);
  gap: clamp(42px, 6vw, 84px);
  align-items: center;
}
.equipment__media img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.equipment h2,
.request-band h2 {
  margin: 0;
  color: #26313a;
  font-size: clamp(34px, 3.7vw, 54px);
  line-height: 1.08;
  letter-spacing: 0;
}
.equipment__copy > p:not(.section-label) {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}
.equipment ul {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}
.equipment li {
  position: relative;
  padding-left: 30px;
  color: #26313a;
  line-height: 1.45;
}
.equipment li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .2em;
  width: 18px;
  height: 18px;
  border: 2px solid var(--green);
  border-radius: 50%;
}

.request-band {
  padding: 70px 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(12,82,58,.98), rgba(20,122,85,.88)),
    url('/assets/wire-bender-detail.webp') center / cover no-repeat;
}
.request-band__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
}
.section-label--light { color: rgba(255,255,255,.76); }
.request-band h2 { color: #fff; }
.request-band p:not(.section-label) {
  max-width: 740px;
  margin: 16px 0 0;
  color: rgba(255,255,255,.82);
  font-size: 18px;
  line-height: 1.58;
}

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}
.lead-modal.is-open { display: flex; }
.lead-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 14, 13, .68);
  backdrop-filter: blur(8px);
}
.lead-modal__panel {
  position: relative;
  width: min(520px, 100%);
  max-height: min(720px, calc(100vh - 44px));
  overflow: auto;
  padding: 32px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(0,0,0,.32);
}
.lead-modal__panel h2 { margin: 0; font-size: 34px; line-height: 1.08; }
.lead-modal__panel > p { margin: 12px 0 22px; color: var(--muted); line-height: 1.55; }
.lead-modal__close {
  position: absolute;
  right: 16px;
  top: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: #536173;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.lead-form { display: grid; gap: 14px; }
.lead-form label { display: grid; gap: 7px; }
.lead-form label > span:not(.consent span) {
  color: #26313d;
  font-size: 13px;
  font-weight: 780;
}
.lead-form input[type="text"],
.lead-form input[type="tel"],
.lead-form textarea {
  width: 100%;
  border: 1px solid #d8e0e8;
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}
.lead-form input:focus,
.lead-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(20,122,85,.12);
}
.lead-form textarea { resize: vertical; min-height: 92px; }
.consent {
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px !important;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}
.consent input { margin-top: 2px; accent-color: var(--green); }
.form-status { min-height: 20px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.35; }
.form-status.is-ok { color: var(--green-dark); font-weight: 700; }
.form-status.is-error { color: #b42318; font-weight: 700; }

@media (max-width: 980px) {
  .container { width: min(100% - 32px, 680px); }
  .service-bar__inner { justify-content: center; text-align: center; }
  .service-bar a { display: none; }
  .site-nav { display: none; }
  .site-header__inner { min-height: 66px; gap: 14px; }
  .brand { min-width: 0; }
  .brand__logo { width: 124px; }
  .header-actions { gap: 8px; }
  .button--small { display: none; }
  .messenger-link { width: 38px; height: 38px; border-radius: 11px; }
  .messenger-link img { width: 21px; height: 21px; }
  .messenger-link--max img { width: 23px; height: 23px; }
  .hero__grid { min-height: auto; grid-template-columns: 1fr; gap: 0; }
  .hero__copy { padding: 56px 0 36px; }
  .hero h1 { font-size: clamp(36px, 9.4vw, 54px); }
  .hero__lead { font-size: 17px; }
  .hero__actions { gap: 12px; }
  .hero__actions .button { width: 100%; min-width: 0; }
  .hero__image { min-height: 340px; margin-right: 0; border-radius: 42px 0 0 0; }
  .hero__image-note { left: 18px; bottom: 18px; width: min(300px, calc(100% - 36px)); }
  .scroll-cue { display: none; }
  .benefits { padding: 42px 0; }
  .benefits__grid { grid-template-columns: 1fr; }
  .benefits__intro, .benefit-item { min-height: auto; padding: 24px; border-right: 0; border-bottom: 1px solid var(--line); }
  .benefit-item:last-child { border-bottom: 0; }
  .benefit-item span { margin-bottom: 18px; }
  .equipment { padding: 48px 0; }
  .equipment__grid { grid-template-columns: 1fr; }
  .request-band__inner { grid-template-columns: 1fr; }
  .request-band .button { width: 100%; }
}

@media (max-width: 430px) {
  .container { width: calc(100% - 28px); }
  .hero__copy { padding-top: 42px; }
  .hero h1 { font-size: 34px; }
  .hero__eyebrow { font-size: 11px; }
  .equipment h2,
  .request-band h2 { font-size: 30px; }
  .lead-modal__panel { padding: 26px 20px 22px; }
}

/* 2026 landing refinement: benefits visual system, footer, and cookie settings */
.scroll-cue { display: none !important; }
.benefits {
  padding: 86px 0 78px;
  background: var(--soft);
}
.benefits__grid { display: none; }
.benefits__layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1fr);
  gap: clamp(34px, 5vw, 74px);
  align-items: center;
}
.benefits__media {
  position: relative;
  min-height: 455px;
  overflow: hidden;
  border-radius: 22px;
  background: #dfe8e4;
  box-shadow: var(--shadow);
}
.benefits__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,30,34,0) 40%, rgba(8,30,34,.44));
}
.benefits__media img {
  width: 100%;
  height: 100%;
  min-height: 455px;
  object-fit: cover;
}
.benefits__media-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.36);
  border-radius: 16px;
  color: #fff;
  background: rgba(10, 38, 44, .76);
  backdrop-filter: blur(10px);
}
.benefits__media-card span {
  color: rgba(255,255,255,.72);
  font-size: 12px;
  font-weight: 840;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.benefits__media-card strong { font-size: 22px; line-height: 1.15; }
.benefits__content h2 {
  max-width: 620px;
  margin: 0;
  color: #26313a;
  font-size: clamp(34px, 3.6vw, 52px);
  line-height: 1.08;
  letter-spacing: 0;
}
.section-lead {
  max-width: 660px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}
.benefit-steps {
  margin-top: 30px;
  display: grid;
  gap: 14px;
}
.benefit-step {
  position: relative;
  display: grid;
  grid-template-columns: 52px 50px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(19,35,43,.06);
}
.benefit-step__number {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
}
.benefit-step__icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--green);
  background: var(--green-soft);
}
.benefit-step h3 {
  margin: 0;
  color: #26313a;
  font-size: 19px;
  line-height: 1.2;
}
.benefit-step p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.52;
}
.landing-footer {
  background: #f6faf8;
  border-top: 1px solid var(--line);
}
.landing-footer__grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.25fr) minmax(220px, .7fr) minmax(260px, .75fr);
  gap: clamp(28px, 5vw, 70px);
  padding: 50px 0 38px;
  align-items: start;
}
.landing-footer__brand img { width: 128px; margin-bottom: 18px; }
.landing-footer__brand p {
  max-width: 440px;
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.58;
}
.landing-footer__socials { justify-content: flex-start; margin-top: 18px; }
.landing-footer h2 {
  margin: 0 0 16px;
  color: #26313a;
  font-size: 16px;
  line-height: 1.2;
}
.landing-footer__contacts,
.landing-footer__legal {
  display: grid;
  gap: 10px;
}
.landing-footer__contacts a,
.landing-footer__legal a,
.landing-footer__legal button,
.landing-footer__bottom button {
  width: fit-content;
  border: 0;
  padding: 0;
  color: var(--ink-soft);
  background: transparent;
  font-weight: 720;
  font-size: 14px;
  line-height: 1.45;
  cursor: pointer;
}
.landing-footer__contacts a:hover,
.landing-footer__legal a:hover,
.landing-footer__legal button:hover,
.landing-footer__bottom button:hover { color: var(--green-dark); }
.landing-footer__bottom {
  border-top: 1px solid var(--line);
  background: #fff;
}
.landing-footer__bottom-inner {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #5f6d78;
  font-size: 13px;
}
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}
.cookie-modal.is-open { display: flex; }
.cookie-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 14, 13, .68);
  backdrop-filter: blur(8px);
}
.cookie-modal__panel {
  position: relative;
  width: min(520px, 100%);
  max-height: min(720px, calc(100vh - 44px));
  overflow: auto;
  padding: 32px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(0,0,0,.32);
}
.cookie-modal__panel h2 { margin: 0; font-size: 34px; line-height: 1.08; }
.cookie-modal__panel > p { margin: 12px 0 22px; color: var(--muted); line-height: 1.55; }
.cookie-option {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink-soft);
}
.cookie-option + .cookie-option { margin-top: 12px; }
.cookie-option input { margin-top: 3px; accent-color: var(--green); }
.cookie-option strong { display: block; margin-bottom: 4px; color: var(--ink); }
.cookie-option--disabled { background: #f7faf9; }
.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.cookie-policy-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--green-dark);
  font-weight: 760;
  font-size: 14px;
}
@media (max-width: 980px) {
  .benefits { padding: 48px 0; }
  .benefits__layout { grid-template-columns: 1fr; }
  .benefits__media { min-height: 320px; }
  .benefits__media img { min-height: 320px; }
  .benefit-step { grid-template-columns: 44px 44px minmax(0, 1fr); gap: 12px; padding: 16px; }
  .benefit-step__icon { width: 38px; height: 38px; }
  .landing-footer__grid { grid-template-columns: 1fr; padding: 38px 0 30px; }
  .landing-footer__bottom-inner { min-height: auto; padding: 16px 0; flex-direction: column; align-items: flex-start; }
}
@media (max-width: 430px) {
  .benefits__content h2 { font-size: 30px; }
  .benefit-step { grid-template-columns: 1fr; }
  .benefit-step__number { order: -2; }
  .benefit-step__icon { order: -1; }
  .cookie-modal__panel { padding: 26px 20px 22px; }
  .cookie-actions .button { width: 100%; }
}
.benefits, .equipment, .request-band { scroll-margin-top: 112px; }
@media (max-width: 980px) { .benefits, .equipment, .request-band { scroll-margin-top: 96px; } }

/* 20260629-5: brand, footer cleanup, and cookie banner parity with main site */
.brand {
  min-width: 210px;
  gap: 11px;
}
.brand__mark {
  width: 58px;
  height: 58px;
  object-fit: contain;
  flex: 0 0 auto;
}
.brand__logo { display: none; }
.brand__text {
  display: grid;
  gap: 1px;
  color: #0d1318;
  font-weight: 900;
  line-height: .98;
  letter-spacing: .01em;
  text-transform: uppercase;
}
.brand__text strong,
.brand__text span {
  display: block;
  font-size: 17px;
}
.messenger-link {
  border-radius: 50%;
}
.messenger-link img {
  width: 23px;
  height: 23px;
}
.messenger-link--max img {
  width: 21px;
  height: 21px;
}
.footer-brand-text {
  margin-bottom: 14px;
  color: #111820;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: .02em;
}
.landing-footer__brand > img {
  display: none;
}
.landing-footer__grid {
  grid-template-columns: minmax(280px, 1.2fr) minmax(180px, .55fr) minmax(180px, .55fr) minmax(250px, .75fr);
}
.landing-footer__socials {
  display: flex;
  gap: 10px;
  align-items: center;
}
.landing-footer__bottom-inner {
  justify-content: flex-start;
}
.cookie-modal { display: none !important; }
.cookie-consent {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  left: max(1rem, env(safe-area-inset-left));
  z-index: 10000;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.cookie-consent[hidden] { display: none; }
.cookie-consent__content {
  width: min(100%, 920px);
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid color-mix(in srgb, var(--green) 14%, var(--line));
  border-radius: 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.16);
  pointer-events: auto;
  backdrop-filter: blur(12px);
}
.cookie-consent__text { min-width: 0; }
.cookie-consent__title {
  margin: 0 0 .25rem;
  font-size: 1rem;
  line-height: 1.25;
  color: var(--ink);
  font-weight: 800;
}
.cookie-consent p {
  margin: 0;
  font-size: .9rem;
  line-height: 1.45;
  color: var(--muted);
}
.cookie-consent__links {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: .35rem;
}
.cookie-consent__link {
  display: inline-flex;
  font-size: .875rem;
  color: var(--green-dark);
  text-decoration: none;
  font-weight: 720;
}
.cookie-consent__link:hover { text-decoration: underline; }
.cookie-consent__settings {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
}
.cookie-consent__settings[hidden] { display: none; }
.cookie-consent__option {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  min-width: 0;
  padding: .75rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f8fbfa;
  cursor: pointer;
}
.cookie-consent__option input {
  width: 18px;
  height: 18px;
  margin-top: .15rem;
  flex: 0 0 auto;
  accent-color: var(--green);
}
.cookie-consent__option span { min-width: 0; }
.cookie-consent__option strong,
.cookie-consent__option small { display: block; }
.cookie-consent__option strong {
  color: var(--ink);
  font-size: .9rem;
}
.cookie-consent__option small {
  margin-top: .2rem;
  color: var(--muted);
  font-size: .8rem;
  line-height: 1.35;
}
.cookie-consent__option--locked {
  cursor: default;
  background: #f3f8f6;
}
.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: flex-end;
}
.cookie-consent__button {
  min-height: 44px;
  padding: .65rem .9rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  font: inherit;
  font-weight: 720;
  cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}
.cookie-consent__button--ghost {
  color: var(--ink);
  background: #fff;
}
.cookie-consent__button--ghost:hover {
  border-color: color-mix(in srgb, var(--green) 28%, var(--line));
}
.cookie-consent__button--primary {
  color: #fff;
  border-color: var(--green);
  background: var(--green);
}
.cookie-consent__button--primary:hover { background: var(--green-dark); }
@media (max-width: 980px) {
  .brand { min-width: 0; }
  .brand__mark { width: 52px; height: 52px; }
  .brand__text strong,
  .brand__text span { font-size: 14px; }
  .landing-footer__grid { grid-template-columns: 1fr; }
  .landing-footer__socials .messenger-link { width: 42px; height: 42px; }
  .cookie-consent {
    right: 0;
    bottom: 0;
    left: 0;
    padding: .75rem max(.75rem, env(safe-area-inset-right)) calc(.75rem + env(safe-area-inset-bottom)) max(.75rem, env(safe-area-inset-left));
    background: linear-gradient(to top, rgba(15, 23, 42, .14), rgba(15, 23, 42, 0));
  }
  .cookie-consent__content {
    grid-template-columns: 1fr;
    max-height: min(76vh, 540px);
    padding: .95rem;
    border-radius: 14px;
  }
  .cookie-consent__settings { grid-template-columns: 1fr; }
  .cookie-consent__actions { justify-content: stretch; }
  .cookie-consent__button { flex: 1 1 100%; }
}
@media (max-width: 430px) {
  .brand__mark { width: 46px; height: 46px; }
  .brand__text strong,
  .brand__text span { font-size: 12px; }
}

/* 20260629-6: use supplied Russian logo asset without generated text */
.brand.brand--image {
  min-width: 210px;
}
.brand__logo.brand__logo--user {
  display: block;
  width: 170px;
  height: 58px;
  object-fit: contain;
  object-position: left center;
}
.brand__mark,
.brand__text {
  display: none !important;
}
@media (max-width: 980px) {
  .brand.brand--image { min-width: 0; }
  .brand__logo.brand__logo--user {
    width: 150px;
    height: 54px;
  }
}
@media (max-width: 430px) {
  .brand__logo.brand__logo--user {
    width: 136px;
    height: 50px;
  }
}


/* 20260629-7: frame the supplied full-canvas logo so it is readable in the header */
.brand.brand--image {
  min-width: 238px;
  overflow: hidden;
}
.brand__logo.brand__logo--user {
  display: block;
  width: 230px;
  height: 72px;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 980px) {
  .brand.brand--image { min-width: 188px; }
  .brand__logo.brand__logo--user {
    width: 188px;
    height: 62px;
  }
}
@media (max-width: 430px) {
  .brand.brand--image { min-width: 158px; }
  .brand__logo.brand__logo--user {
    width: 158px;
    height: 54px;
  }
}

/* 20260629-8: header grid, engineering benefits, footer normalization */
.service-bar {
  position: relative;
  z-index: 12;
  min-height: 32px;
}
.service-bar__inner {
  min-height: 32px;
  line-height: 1.25;
}
.site-header {
  z-index: 30;
}
.site-header__inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: minmax(216px, 1fr) auto minmax(216px, 1fr);
  align-items: center;
  gap: 24px;
}
.brand.brand--image {
  width: 216px;
  min-width: 216px;
  height: 62px;
  overflow: hidden;
  justify-self: start;
}
.brand__logo.brand__logo--user {
  display: block;
  width: 206px;
  height: 62px;
  object-fit: cover;
  object-position: center;
}
.site-nav {
  justify-self: center;
  min-width: max-content;
}
.header-actions {
  justify-self: end;
}
.messenger-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border-color: #d7e3df;
  background: #fff;
}
.messenger-link img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.messenger-link--telegram img { width: 23px; height: 23px; }
.messenger-link--max img { width: 21px; height: 21px; }
.benefits__media {
  display: grid;
  min-height: 500px;
  padding: 0;
}
.benefits__media-main {
  grid-area: 1 / 1;
  min-height: 500px;
}
.benefits__media-thumbs {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 2;
  display: grid;
  gap: 10px;
  width: min(168px, 34%);
}
.benefits__media-thumbs img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.72);
  border-radius: 14px;
  box-shadow: 0 14px 28px rgba(7,20,24,.22);
}
.benefits__media-card {
  right: auto;
  width: min(390px, calc(100% - 48px));
}
.benefits__media-card strong {
  font-size: 20px;
}
.benefit-step {
  grid-template-columns: 48px 52px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}
.benefit-step__icon {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(20,122,85,.18);
  border-radius: 14px;
  background: #eef8f4;
}
.benefit-step__icon svg {
  width: 24px;
  height: 24px;
}
.landing-footer {
  background: #f7faf9;
}
.landing-footer__grid {
  grid-template-columns: minmax(300px, 1.25fr) minmax(160px, .55fr) minmax(160px, .55fr) minmax(250px, .75fr);
  gap: clamp(26px, 4vw, 56px);
}
.footer-brand-text {
  margin-bottom: 12px;
  color: #111820;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: .02em;
}
.landing-footer__socials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}
.landing-footer__socials .messenger-link {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
}
.landing-footer__socials .messenger-link img {
  width: 21px;
  height: 21px;
}
.landing-footer__socials .messenger-link--telegram img {
  width: 22px;
  height: 22px;
}
.landing-footer__socials .messenger-link--max img {
  width: 20px;
  height: 20px;
}
@media (max-width: 980px) {
  .service-bar { min-height: 30px; }
  .service-bar__inner { min-height: 30px; }
  .site-header__inner {
    min-height: 68px;
    display: grid;
    grid-template-columns: minmax(148px, 1fr) auto;
    gap: 12px;
  }
  .brand.brand--image {
    width: 158px;
    min-width: 148px;
    height: 54px;
  }
  .brand__logo.brand__logo--user {
    width: 158px;
    height: 54px;
  }
  .header-actions { justify-self: end; }
  .benefits__media,
  .benefits__media-main { min-height: 360px; }
  .benefits__media-thumbs { width: 132px; top: 16px; right: 16px; }
  .landing-footer__grid { grid-template-columns: 1fr; }
}
@media (max-width: 430px) {
  .service-bar { display: none; }
  .site-header__inner { min-height: 66px; }
  .brand.brand--image {
    width: 146px;
    min-width: 146px;
    height: 50px;
  }
  .brand__logo.brand__logo--user {
    width: 146px;
    height: 50px;
  }
  .messenger-link { width: 38px; height: 38px; }
  .benefits__media,
  .benefits__media-main { min-height: 330px; }
  .benefits__media-thumbs { display: none; }
  .benefits__media-card {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
  }
  .benefit-step {
    grid-template-columns: 44px minmax(0, 1fr);
  }
  .benefit-step__number {
    order: initial;
  }
  .benefit-step__icon {
    order: initial;
    grid-row: span 2;
  }
  .benefit-step > div:last-child {
    grid-column: 2;
  }
}


/* 20260629-9: improve MAX icon readability in compact social buttons */
.messenger-link--max img {
  width: 28px;
  height: 28px;
  border-radius: 8px;
}
.landing-footer__socials .messenger-link--max img {
  width: 26px;
  height: 26px;
}
@media (max-width: 430px) {
  .messenger-link--max img {
    width: 26px;
    height: 26px;
  }
}

/* 20260629-10: match main-site social icon contract and footer legal layout */
.messenger-link {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  background: transparent;
  border: 0;
  border-radius: 10px;
  box-shadow: none;
  text-decoration: none;
  transition: transform .2s ease, background-color .2s ease, opacity .2s ease;
}
.messenger-link:hover {
  transform: translateY(-1px);
  background: color-mix(in srgb, var(--green) 7%, transparent);
  box-shadow: none;
}
.messenger-link img {
  width: 23px;
  height: 23px;
  object-fit: contain;
}
.messenger-link--telegram { color: #0088cc; }
.messenger-link--max { color: #00a38a; }
.messenger-link--max img,
.landing-footer__socials .messenger-link--max img {
  width: 23px;
  height: 23px;
  border-radius: 6px;
}
.site-header .messenger-link {
  width: 38px;
  height: 38px;
}
.landing-footer__grid {
  grid-template-columns: minmax(320px, 1.25fr) minmax(190px, .55fr) minmax(220px, .7fr);
  gap: clamp(28px, 5vw, 72px);
}
.landing-footer__brand p {
  max-width: 480px;
}
.footer-brand-text { display: none; }
.landing-footer__contacts,
.landing-footer__sections {
  display: grid;
  gap: 10px;
}
.landing-footer__sections a,
.landing-footer__contacts a {
  width: fit-content;
  color: var(--ink-soft);
  font-weight: 720;
  font-size: 14px;
  line-height: 1.45;
}
.landing-footer__sections a:hover,
.landing-footer__contacts a:hover { color: var(--green-dark); }
.landing-footer__bottom-inner {
  min-height: 62px;
  justify-content: space-between;
  align-items: center;
}
.landing-footer__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 12px 18px;
}
.landing-footer__links a,
.landing-footer__links button {
  width: fit-content;
  border: 0;
  padding: 0;
  color: var(--ink-soft);
  background: transparent;
  font: inherit;
  font-weight: 720;
  font-size: 14px;
  line-height: 1.45;
  cursor: pointer;
}
.landing-footer__links a:hover,
.landing-footer__links button:hover { color: var(--green-dark); }
.lead-modal__panel {
  padding: 34px 32px 30px;
}
.lead-modal__panel h2 {
  padding-right: 52px;
}
.lead-modal__close {
  right: 18px;
  top: 18px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #52606b;
  background: #fff;
  font-size: 28px;
  line-height: 1;
}
@media (max-width: 980px) {
  .landing-footer__grid { grid-template-columns: 1fr; }
  .landing-footer__bottom-inner {
    min-height: auto;
    padding: 16px 0;
    flex-direction: column;
    align-items: flex-start;
  }
  .landing-footer__links {
    justify-content: flex-start;
  }
}
@media (max-width: 430px) {
  .site-header .messenger-link,
  .messenger-link {
    width: 38px;
    height: 38px;
  }
  .messenger-link img,
  .messenger-link--max img,
  .landing-footer__socials .messenger-link--max img {
    width: 22px;
    height: 22px;
  }
  .lead-modal__panel {
    padding: 28px 20px 22px;
  }
  .lead-modal__panel h2 {
    padding-right: 48px;
  }
  .lead-modal__close {
    right: 14px;
    top: 14px;
    width: 38px;
    height: 38px;
  }
}


/* 20260629-12: remove duplicate hero note and soften footer utility links */
.hero__image-note {
  display: none;
}
.landing-footer__contacts a,
.landing-footer__sections a {
  font-weight: 500;
}
.landing-footer__bottom-inner {
  font-size: 12.5px;
}
.landing-footer__links {
  gap: 10px 16px;
}
.landing-footer__links a,
.landing-footer__links button {
  font-size: 12.5px;
  font-weight: 500;
}


/* 20260629-13: compact centered mobile footer */
@media (min-width: 560px) and (max-width: 980px) {
  .landing-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    text-align: center;
    justify-items: center;
    gap: 28px 34px;
  }
  .landing-footer__brand {
    grid-column: 1 / -1;
    display: grid;
    justify-items: center;
  }
  .landing-footer__brand p {
    margin-inline: auto;
  }
  .landing-footer__socials {
    justify-content: center;
  }
  .landing-footer__contacts,
  .landing-footer__sections {
    justify-items: center;
  }
  .landing-footer__contacts a,
  .landing-footer__sections a {
    width: auto;
    text-align: center;
  }
}
@media (max-width: 559px) {
  .landing-footer__grid {
    text-align: center;
    justify-items: center;
    gap: 24px;
    padding: 34px 0 28px;
  }
  .landing-footer__brand {
    display: grid;
    justify-items: center;
  }
  .landing-footer__brand p {
    max-width: 330px;
    margin-inline: auto;
  }
  .landing-footer__socials {
    justify-content: center;
  }
  .landing-footer__contacts,
  .landing-footer__sections {
    justify-items: center;
    gap: 8px;
  }
  .landing-footer__contacts a,
  .landing-footer__sections a {
    width: auto;
    text-align: center;
  }
  .landing-footer__bottom-inner {
    align-items: center;
    text-align: center;
  }
  .landing-footer__links {
    justify-content: center;
  }
}
