:root {
  --bosch-red: #ed0007;
  --bosch-red-dark: #b90005;
  --bosch-red-soft: #fff0f0;
  --ink: #111318;
  --ink-2: #262a33;
  --muted: #646b78;
  --line: #e5e8ee;
  --line-strong: #d6dae3;
  --bg: #f5f7fb;
  --paper: #ffffff;
  --dark: #12151b;
  --dark-2: #1e232c;
  --green: #16a34a;
  --shadow-sm: 0 10px 30px rgba(17, 19, 24, .08);
  --shadow-md: 0 18px 55px rgba(17, 19, 24, .12);
  --shadow-lg: 0 28px 90px rgba(17, 19, 24, .18);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --radius-xl: 44px;
  --container: 1200px;
  --header: 84px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.modal-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
::selection { color: #fff; background: var(--bosch-red); }

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 12px 16px;
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
  transition: transform .2s var(--ease);
}
.skip-link:focus { transform: translateY(0); }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}
.site-shell { min-height: 100vh; }

.topline {
  position: relative;
  z-index: 60;
  color: #fff;
  background: linear-gradient(90deg, #111318 0%, #2b2f38 42%, #ed0007 100%);
  isolation: isolate;
}
.topline::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, #004f9e, #00a1e0, #ed0007, #f7a600, #00884a);
  opacity: .95;
}
.topline__inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
}

.topline__badge {
display: inline-flex;
align-items: center;
gap: 14px;
min-width: max-content;
padding: 7px 12px;
border-radius: 999px;
background: rgba(255, 255, 255, .12);
border: 1px solid rgba(255, 255, 255, .18);
font-weight: 500;
letter-spacing: .01em;
text-transform: uppercase;
font-size: 11px;
}

.topline__badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 6px rgba(255,255,255,.15);
}
.topline__text { color: rgba(255,255,255,.86); }
.topline__quick {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}
.topline__quick a { font-weight: 800; }
.topline__quick span { color: rgba(255,255,255,.72); }

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(230,234,240,.82);
  transition: box-shadow .25s var(--ease), background .25s var(--ease);
}
.header.is-scrolled {
  background: rgba(255,255,255,.94);
  box-shadow: 0 10px 35px rgba(17,19,24,.08);
}
.header__inner {
  min-height: var(--header);
  display: flex;
  align-items: center;
  gap: 26px;
}
.brand {
  display: grid;
  gap: 6px;
  flex: 0 0 auto;
  width: 188px;
}
.brand__logo { width: 172px; height: auto; }
.brand__caption {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 2px;
}
.nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 750;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav a:hover,
.nav a:focus-visible { color: var(--bosch-red); background: var(--bosch-red-soft); outline: none; }
.header__contacts {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 9px;
}
.phone {
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -.02em;
  white-space: nowrap;
}
.messenger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--ink-2);
  background: #fff;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(17,19,24,.04);
transition: transform .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
  width: 100%;
max-width: 110px;
}
.messenger:hover { transform: translateY(-1px); border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.messenger::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}
.messenger--tg::before { background: #2aabee; }

.btn {
  --btn-bg: #fff;
  --btn-color: var(--ink);
  --btn-border: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid var(--btn-border);
  border-radius: 999px;
  color: var(--btn-color);
  background: var(--btn-bg);
  font-weight: 850;
  letter-spacing: -.01em;
  box-shadow: 0 14px 34px rgba(17,19,24,.08);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 22px 48px rgba(17,19,24,.14); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid rgba(237,0,7,.25); outline-offset: 3px; }
.btn--primary {
  --btn-bg: linear-gradient(135deg, #ff2a30 0%, #ed0007 44%, #b90005 100%);
  --btn-color: #fff;
  box-shadow: 0 18px 42px rgba(237,0,7,.28);
}
.btn--primary:hover { box-shadow: 0 24px 60px rgba(237,0,7,.35); }
.btn--ghost {
  --btn-bg: rgba(255,255,255,.08);
  --btn-color: #fff;
  --btn-border: rgba(255,255,255,.18);
  box-shadow: none;
}
.btn--ghost:hover { background: rgba(255,255,255,.14); box-shadow: none; }
.btn--light {
  --btn-bg: #fff;
  --btn-color: var(--ink);
}
.btn--small { min-height: 40px; padding: 0 15px; font-size: 13px; }
.btn--full { width: 100%; }

.burger {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  margin-left: auto;
  box-shadow: var(--shadow-sm);
}
.burger span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--ink);
  transition: transform .2s var(--ease), opacity .2s var(--ease);
}
.burger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-active span:nth-child(2) { opacity: 0; }
.burger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  color: #fff;
  background:
    radial-gradient(circle at 12% 10%, rgba(237,0,7,.45) 0, rgba(237,0,7,0) 34%),
    radial-gradient(circle at 78% 20%, rgba(255,255,255,.16) 0, rgba(255,255,255,0) 34%),
    linear-gradient(135deg, #101217 0%, #171b23 48%, #2a1012 100%);
  overflow: hidden;
  isolation: isolate;
}

.hero .bg{
background: url(../img/img_bg_top.webp) no-repeat center/cover;
padding: 86px 0 56px;
}


.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
linear-gradient(90deg, #0000005e 0 16%, rgb(0 0 0 / 0%) 16% 16.12%, #00000036 16.12% 32%, rgba(255, 255, 255, .05) 32% 32.12%, #00000038 32.12% 48%, rgba(255, 255, 255, .05) 48% 48.12%, #0000004a 48.12% 64%, rgba(255, 255, 255, .05) 64% 64.12%, #0000004d 64.12% 80%, rgba(255, 255, 255, .05) 80% 80.12%, #00000042 80.12% 100%);
  opacity: .7;
  pointer-events: none;
}
.hero__noise {
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image: radial-gradient(rgba(255,255,255,.55) 1px, transparent 1px);
  background-size: 18px 18px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,.12));
  pointer-events: none;
}
.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(430px, .86fr);
  gap: 46px;
  align-items: center;
}
.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--bosch-red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow {
  color: #fff;
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.09);
  backdrop-filter: blur(12px);
}
.eyebrow span,
.section-kicker::before {
  content: "";
  width: 22px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
}
.hero h1 {
  margin: 22px 0 20px;
  max-width: 780px;
  font-size: clamp(42px, 6vw, 62px);
  line-height: .94;
}
.hero__lead {
  margin: 0;
  max-width: 680px;
  color: rgba(255,255,255,.78);
  font-size: clamp(17px, 2.2vw, 21px);
  line-height: 1.55;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
  margin-top: 40px;
}
.hero__stats div {
  min-height: 112px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
}
.hero__stats strong {
  display: block;
  font-size: 30px;
  letter-spacing: -.04em;
}
.hero__stats span { color: rgba(255,255,255,.68); font-size: 14px; }
.hero__panel { display: grid; gap: 18px; }

.status-card {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 18% 12%, rgba(255,255,255,.20), transparent 36%),
    linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.045));
  box-shadow: 0 38px 95px rgba(0,0,0,.32);
  backdrop-filter: blur(20px);
}
.status-card::after {
  content: "";
  position: absolute;
  inset: auto -80px -140px;
  height: 260px;
  background: radial-gradient(circle, rgba(237,0,7,.6), rgba(237,0,7,0) 68%);
}
.status-card__top,
.status-card__bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.status-card__top {
  align-items: center;
  color: rgba(255,255,255,.84);
  font-size: 14px;
  font-weight: 800;
}
.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 8px rgba(34,197,94,.14);
  animation: pulse 1.8s infinite;
}
.status-card__device {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 254px;
}
.device-orbit {
  position: absolute;
  width: 240px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.14);
  animation: rotate 18s linear infinite;
}
.device-orbit span {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 24px rgba(255,255,255,.8);
}
.device-orbit span:nth-child(1) { left: 50%; top: -7px; }
.device-orbit span:nth-child(2) { right: 22px; bottom: 32px; background: var(--bosch-red); }
.device-orbit span:nth-child(3) { left: 10px; bottom: 74px; }
.device-core {
  width: 202px;
  height: 202px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  padding: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,.94);
  box-shadow: inset 0 -14px 28px rgba(17,19,24,.08), 0 20px 70px rgba(0,0,0,.28);
}
.device-core img { width: 140px; }
.device-core small { color: var(--muted); font-weight: 800; text-align: center; }
.status-card__bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 18px;
}
.status-card__bottom div { display: grid; gap: 4px; }
.status-card__bottom span { color: rgba(255,255,255,.58); font-size: 13px; }
.status-card__bottom strong { font-size: 18px; }

.lead-form {
  padding: 24px;
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
}
.lead-form--dark {
  color: #fff;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(18,21,27,.74);
  backdrop-filter: blur(18px);
}
.lead-form--light,
.lead-form--modal {
  color: var(--ink);
  border: 1px solid rgba(230,234,240,.92);
  background: #fff;
}
.lead-form p { margin: 6px 0 18px; color: rgba(255,255,255,.7); line-height: 1.45; }
.lead-form--light p,
.lead-form--modal p { color: var(--muted); }
.form-title {
  font-size: 24px;
  font-weight: 950;
  letter-spacing: -.035em;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.form-grid__wide { grid-column: 1 / -1; }
.lead-form label:not(.checkline):not(.hp-field) {
  display: grid;
  gap: 7px;
}
.lead-form label > span {
  color: currentColor;
  opacity: .74;
  font-size: 13px;
  font-weight: 500;
}
.lead-form input,
.lead-form textarea,
.lead-form select {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(230,234,240,.18);
  border-radius: 18px;
  padding: 14px 16px;
  color: #fff;
  background: rgba(255,255,255,.08);
  outline: none;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.lead-form select option { color: var(--ink); background: #fff; }
.lead-form textarea { min-height: 98px; resize: vertical; }
.lead-form input::placeholder,
.lead-form textarea::placeholder { color: rgba(255,255,255,.44); }
.lead-form input:focus,
.lead-form textarea:focus,
.lead-form select:focus {
  border-color: rgba(237,0,7,.75);
  box-shadow: 0 0 0 4px rgba(237,0,7,.18);
  background: rgba(255,255,255,.12);
}
.lead-form--light input,
.lead-form--light textarea,
.lead-form--light select,
.lead-form--modal input,
.lead-form--modal textarea,
.lead-form--modal select {
  color: var(--ink);
  border-color: var(--line);
  background: #f7f8fb;
}
.lead-form--light input::placeholder,
.lead-form--light textarea::placeholder,
.lead-form--modal input::placeholder,
.lead-form--modal textarea::placeholder { color: #9aa1ad; }
.lead-form--light input:focus,
.lead-form--light textarea:focus,
.lead-form--light select:focus,
.lead-form--modal input:focus,
.lead-form--modal textarea:focus,
.lead-form--modal select:focus {
  background: #fff;
}
.checkline {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 16px 0;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  line-height: 1.45;
}
.lead-form--light .checkline,
.lead-form--modal .checkline { color: var(--muted); }
.checkline input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 1px;
  accent-color: var(--bosch-red);
}
.checkline button,
.footer button {
  padding: 0;
  border: 0;
  color: var(--bosch-red);
  background: transparent;
  font-weight: 850;
  text-align: left;
}
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.trust-strip {
  position: relative;
  margin-top: -1px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 18px 0;
}
.trust-strip__inner div {
  position: relative;
  min-height: 82px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 14px 20px;
  border-radius: 24px;
  background: #fff;
}
.trust-strip__inner div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 3px;
  border-radius: 999px;
  background: var(--bosch-red);
}
.trust-strip b { font-size: 16px; letter-spacing: -.02em; }
.trust-strip span { color: var(--muted); font-size: 14px; }

.section { padding: 96px 0; }
.section-head {
  max-width: 940px;
  margin: 0 auto 38px;
  text-align: center;
}
.section-head--left { margin-inline: 0; text-align: left; }
.section-head h2,
.request-copy h2,
.about-text h2,
.about-card h2,
.note-grid h2,
.final-cta h2 {
  margin: 12px 0 14px;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
}
.section-head p,
.request-copy p,
.about-text p,
.about-card p,
.note-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}
.section-head code {
  padding: 2px 6px;
  border-radius: 7px;
  color: var(--bosch-red);
  background: var(--bosch-red-soft);
  font-size: .86em;
}
.appliances-section {
  background: linear-gradient(180deg, #fff 0%, #f5f7fb 100%);
}
.appliance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.appliance-card {
  position: relative;
  overflow: hidden;
  display: grid;
  border: 1px solid rgba(214,218,227,.82);
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
.appliance-card:hover {
  transform: translateY(-7px);
  border-color: rgba(237,0,7,.35);
  box-shadow: var(--shadow-md);
}
.appliance-card img {
  width: 100%;
  aspect-ratio: 16 / 10.8;
  object-fit: cover;
  background: #171b23;
}
.appliance-card__body {
  display: grid;
  gap: 12px;
  padding: 22px;
}
.appliance-card h3 {
  margin: 0;
  font-size: 21px;
  letter-spacing: -.03em;
}
.appliance-card p {
  min-height: 70px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}
.appliance-card button {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 0;
  padding: 0;
  color: var(--bosch-red);
  background: transparent;
  font-weight: 900;
}
.appliance-card button::after {
  content: "→";
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--bosch-red);
  transition: transform .2s var(--ease);
}
.appliance-card:hover button::after { transform: translateX(4px); }
.appliance-card--accent {
  color: #fff;
  background: linear-gradient(145deg, #191d25, #2d1012);
  border-color: rgba(237,0,7,.4);
}
.appliance-card--accent p { color: rgba(255,255,255,.72); }

.premium-block {
  color: #fff;
  background:
    radial-gradient(circle at 12% 18%, rgba(237,0,7,.42), transparent 32%),
    linear-gradient(145deg, #111318, #20242d 62%, #150b0c);
}
.premium-block .section-head p { color: rgba(255,255,255,.72); }
.premium-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 44px;
  align-items: start;
}
.benefit-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.benefit-card {
  min-height: 246px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 32px;
  background: rgba(255,255,255,.075);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 60px rgba(0,0,0,.22);
}
.benefit-card span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: #fff;
  background: var(--bosch-red);
  font-weight: 950;
}
.benefit-card h3 {
  margin: 22px 0 10px;
  font-size: 24px;
  letter-spacing: -.035em;
}
.benefit-card p {
  margin: 0;
  color: rgba(255,255,255,.72);
  line-height: 1.6;
}

.process-section { background: #fff; }
.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}
.process-line::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
}
.process-item {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.process-item span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  background: var(--bosch-red);
  font-weight: 950;
  box-shadow: 0 14px 34px rgba(237,0,7,.25);
}
.process-item h3 { margin: 0; font-size: 21px; letter-spacing: -.03em; }
.process-item p { margin: 0; color: var(--muted); line-height: 1.55; font-size: 14px; }

.request-band {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 80% 18%, rgba(237,0,7,.50), transparent 30%),
    linear-gradient(135deg, #14171d, #242935);
}
.request-band::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .14;
  background-image: radial-gradient(#fff 1px, transparent 1px);
  background-size: 22px 22px;
}
.request-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .82fr 1fr;
  gap: 48px;
  align-items: center;
}
.request-copy p { color: rgba(255,255,255,.72); }
.clean-list {
  display: grid;
  gap: 11px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255,255,255,.86);
  font-weight: 500;
}
.clean-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.clean-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--bosch-red);
  box-shadow: 0 0 0 7px rgba(237,0,7,.16);
}

.coverage { background: linear-gradient(180deg, #f5f7fb, #fff); }
.coverage-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.area-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 16px;
}
.area-tabs button {
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-2);
  background: #fff;
  font-weight: 850;
  transition: color .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.area-tabs button:hover { transform: translateY(-1px); }
.area-tabs button.is-active {
  color: #fff;
  border-color: var(--bosch-red);
  background: var(--bosch-red);
}
.area-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.area-card h3 { margin: 0 0 8px; font-size: 22px; letter-spacing: -.03em; }
.area-card p { margin: 0; color: var(--muted); line-height: 1.6; }
.map-card {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at center, rgba(237,0,7,.12), transparent 30%),
    linear-gradient(145deg, #fff, #edf1f7);
  box-shadow: var(--shadow-lg);
}
.map-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(17,19,24,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17,19,24,.05) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}
.map-card__rings,
.map-card__rings span {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.map-card__rings {
  width: 320px;
  aspect-ratio: 1;
  border: 2px solid rgba(237,0,7,.52);
  box-shadow: 0 0 0 42px rgba(237,0,7,.06), 0 0 0 92px rgba(237,0,7,.035), 0 0 0 156px rgba(17,19,24,.035);
}
.map-card__rings span:nth-child(1) { width: 430px; aspect-ratio: 1; border: 1px dashed rgba(237,0,7,.32); }
.map-card__rings span:nth-child(2) { width: 560px; aspect-ratio: 1; border: 1px dashed rgba(17,19,24,.14); }
.map-card__rings span:nth-child(3) { width: 690px; aspect-ratio: 1; border: 1px dashed rgba(17,19,24,.1); }
.map-card__center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 136px;
  height: 136px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--bosch-red), var(--bosch-red-dark));
  font-weight: 950;
  letter-spacing: -.03em;
  box-shadow: 0 24px 62px rgba(237,0,7,.35);
}
.map-pin {
  position: absolute;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255,255,255,.88);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
  font-weight: 900;
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease);
}
.map-pin::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--bosch-red);
}
.map-pin:hover,
.map-pin.is-active {
  transform: translateY(-3px);
  color: #fff;
  background: var(--bosch-red);
  box-shadow: 0 18px 44px rgba(237,0,7,.28);
}
.map-pin.is-active::before,
.map-pin:hover::before { background: #fff; }
.pin-1 { left: 44%; top: 36%; }
.pin-2 { left: 48%; top: 17%; }
.pin-3 { right: 12%; top: 42%; }
.pin-4 { left: 48%; bottom: 15%; }
.pin-5 { left: 10%; top: 44%; }
.pin-6 { right: 16%; bottom: 18%; }

.about-section { background: #fff; }
.about-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 34px;
  align-items: stretch;
}
.about-card {
  display: grid;
  align-content: end;
  min-height: 420px;
  padding: 34px;
  border-radius: var(--radius-xl);
  color: #fff;
  background:
    radial-gradient(circle at 80% 18%, rgba(237,0,7,.65), transparent 38%),
    linear-gradient(145deg, #12151b, #252a34);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.about-card img {
  width: 210px;
  padding: 20px;
  border-radius: 24px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
  margin-bottom: 58px;
}
.about-card p { color: rgba(255,255,255,.74); }
.about-text {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.about-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}
.about-metrics div {
  padding: 20px;
  border-radius: 24px;
  background: #f6f7fa;
  border: 1px solid var(--line);
}
.about-metrics b { display: block; color: var(--bosch-red); font-size: 30px; letter-spacing: -.05em; }
.about-metrics span { color: var(--muted); font-size: 14px; }

.warranty-note {
  padding: 64px 0;
  background: linear-gradient(135deg, var(--bosch-red-soft), #fff 55%);
}
.note-grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 34px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(237,0,7,.16);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow-sm);
}
.note-grid h2 { font-size: clamp(28px, 3vw, 44px); }
.note-grid p { color: var(--ink-2); }

.faq { background: #fff; }
.faq-grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 42px;
  align-items: start;
}
.faq-list {
  display: grid;
  gap: 12px;
}
details {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -.02em;
  list-style: none;
  cursor: pointer;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+";
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--bosch-red);
  font-size: 22px;
  line-height: 1;
  transition: transform .2s var(--ease);
}
details[open] summary::after { content: "−"; transform: rotate(180deg); }
details p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
  line-height: 1.65;
}

.final-cta {
  color: #fff;
  background: linear-gradient(135deg, #111318, #2b0f11 62%, #ed0007);
  padding: 70px 0;
}
.final-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.final-cta h2 { max-width: 760px; margin-bottom: 0; }
.final-cta__actions { display: flex; gap: 12px; flex-wrap: wrap; }

.footer {
  color: rgba(255,255,255,.78);
  background: #0f1116;
  padding: 58px 0 20px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr .9fr;
  gap: 30px;
}
.footer__brand img {
  width: 190px;
  padding: 14px;
  border-radius: 18px;
  background: #fff;
}
.footer p { margin: 18px 0 0; line-height: 1.6; }
.footer h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 16px;
}
.footer a,
.footer span,
.footer button {
  display: block;
  margin: 10px 0;
  color: rgba(255,255,255,.74);
}

.footer .iniline_b{
display: initial;
}

.footer a:hover,
.footer button:hover { color: #fff; }
.footer__bottom {
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 12px;
}
.footer__bottom p { color: rgba(255,255,255,.52); }

.mess_b{
text-align: right;
display: flex;
flex-direction: column;
gap: 3px;
}


.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 90;
  transform: translateX(-50%) translateY(calc(100% + 48px));
  width: min(calc(100% - 32px), 980px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 18px;
  border: 1px solid rgba(230,234,240,.9);
  border-radius: 28px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
  transition: transform .42s var(--ease);
}
.cookie-banner.is-visible { transform: translateX(-50%) translateY(0); }
.cookie-banner strong { display: block; margin-bottom: 4px; font-size: 17px; }
.cookie-banner p { margin: 0; color: var(--muted); line-height: 1.45; font-size: 13px; }
.cookie-banner__actions { display: flex; gap: 10px; }
.cookie-banner .btn--ghost { color: var(--ink); border-color: var(--line); background: #fff; }

.mobile-bottom-bar {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 82;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(230,234,240,.88);
  border-radius: 22px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
}
.mobile-bottom-bar a,
.mobile-bottom-bar button {
  min-height: 44px;
  border: 0;
  border-radius: 16px;
  color: #fff;
  background: var(--bosch-red);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 13px;
}
.mobile-bottom-bar a:nth-child(2) { background: #2aabee; }
.mobile-bottom-bar button { background: var(--ink); }

.modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}
.modal.is-open { display: flex; }
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,10,14,.68);
  backdrop-filter: blur(8px);
}
.modal__dialog {
  position: relative;
  width: min(100%, 780px);
  max-height: calc(100vh - 44px);
  overflow: auto;
  border-radius: 32px;
  background: #fff;
  box-shadow: var(--shadow-lg);
  animation: modalIn .24s var(--ease);
}
.modal__dialog--form { max-width: 620px; padding: 26px; }
.modal__dialog--text { padding: 30px; }
.modal__close {
  position: sticky;
  top: 18px;
  float: right;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: #f1f3f7;
font-size: 28px;
line-height: 1;
}

.modal__close span{
display: block;
position: relative;
bottom: 2px;
}

.modal__head { margin-bottom: 18px; }
.modal__head h2 {
  margin: 10px 0 8px;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -.05em;
  line-height: 1;
}
.modal__head p { margin: 0; color: var(--muted); line-height: 1.55; }
.prose {
  color: var(--ink-2);
  line-height: 1.72;
}
.prose p { margin: 0 0 16px; }
.prose strong { color: var(--ink); }

.toast {
  position: fixed;
  right: 22px;
  top: 108px;
  z-index: 130;
  display: grid;
  gap: 10px;
  width: min(420px, calc(100% - 44px));
  pointer-events: none;
}
.toast__item {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-lg);
  pointer-events: auto;
  animation: toastIn .26s var(--ease);
}
.toast__item::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--bosch-red);
  animation: toastLine 4.6s linear forwards;
}
.toast__icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: var(--bosch-red);
  font-weight: 950;
}
.toast__item--success .toast__icon { background: var(--green); }
.toast__item--success::before { background: var(--green); }
.toast__content strong { display: block; margin-bottom: 4px; }
.toast__content span { color: var(--muted); line-height: 1.4; font-size: 14px; }
.toast__close {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: #f1f3f7;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal--delay { transition-delay: .14s; }

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 8px rgba(34,197,94,.14); }
  50% { box-shadow: 0 0 0 14px rgba(34,197,94,.06); }
}
@keyframes rotate { to { transform: rotate(360deg); } }
@keyframes modalIn {
  from { opacity: 0; transform: translateY(18px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes toastIn {
  from { opacity: 0; transform: translateX(18px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes toastLine { to { transform: translateX(-100%); } }

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

@media (max-width: 1180px) {
  .header__contacts .messenger { display: none; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__panel { grid-template-columns: minmax(0, .9fr); }
  .status-card { min-height: 350px; }
  .appliance-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-line { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .process-line::before { display: none; }
}

@media (max-width: 1100px) {
header .btn--small{display: none;}
}



@media (max-width: 960px) {
  :root { --header: 74px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .topline__inner { flex-wrap: wrap; padding: 8px 0 10px; gap: 8px 12px; }
  .topline__quick { width: 100%; margin-left: 0; justify-content: space-between;display: none}
  .header__contacts { display: none; }
  .burger { display: block; }
  .brand { width: 166px; }
  .brand__logo { width: 152px; }
  .nav {
    position: fixed;
    left: 14px;
    right: 14px;
    top: calc(var(--header) + 56px);
    display: grid;
    gap: 8px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: rgba(255,255,255,.96);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .2s var(--ease), visibility .2s var(--ease), transform .2s var(--ease);
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav a { padding: 14px 16px; background: #f6f7fa; }
  .hero .bg{ padding: 58px 0 44px; }
  .hero__stats { grid-template-columns: 1fr; }
  .hero__stats div { min-height: auto; }
  .trust-strip__inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .section { padding: 74px 0; }
  .premium-grid,
  .request-grid,
  .coverage-grid,
  .about-grid,
  .note-grid,
  .faq-grid { grid-template-columns: 1fr; }
  .benefit-cards { grid-template-columns: 1fr; }
  .process-line { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .map-card { min-height: 470px; }
  .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cookie-banner { grid-template-columns: 1fr; }
  .cookie-banner__actions { justify-content: stretch; }
  .cookie-banner__actions .btn { flex: 1; }
  .mobile-bottom-bar { display: grid; }

.topline__text {
text-align: right;
max-width: 255px;
margin-left: auto;
}
.brand__caption,.topline__badge{font-size: 9px;}
.footer{padding-bottom: 80px;}

}

@media (max-width: 680px) {
  .topline__badge { width: 100%; justify-content: center; text-align: center; white-space: normal; line-height: 1.25; }
  .topline__text { font-size: 12px; }
  .topline__quick { font-size: 12px; }
  .header__inner { gap: 12px; }
  .brand { width: 142px; }
  .brand__logo { width: 136px; }
  .brand__caption { font-size: 9px; }
  .hero h1 { font-size: clamp(38px, 12vw, 56px); }
  .hero__actions .btn { width: 100%; }
  .hero__panel { grid-template-columns: 1fr; }
  .status-card { border-radius: 30px; min-height: 320px; padding: 18px; }
  .status-card__bottom { display: grid; }
  .device-core { width: 170px; height: 170px; }
  .device-core img { width: 116px; }
  .device-orbit { width: 202px; }
  .lead-form { padding: 18px; border-radius: 26px; }
  .form-grid { grid-template-columns: 1fr; }
  .trust-strip__inner { grid-template-columns: 1fr; }
  .appliance-grid { grid-template-columns: 1fr; }
  .appliance-card p { min-height: auto; }
  .process-line { grid-template-columns: 1fr; }
  .request-copy h2,
  .section-head h2,
  .about-text h2,
  .about-card h2,
  .note-grid h2,
  .final-cta h2 { letter-spacing: -.045em; }
  .about-text,
  .about-card,
  .note-grid { padding: 24px; border-radius: 30px; }
  .about-metrics { grid-template-columns: 1fr; }
  .map-card { min-height: 430px; border-radius: 30px; }
  .map-card__rings { width: 210px; }
  .map-card__rings span:nth-child(1) { width: 290px; }
  .map-card__rings span:nth-child(2) { width: 370px; }
  .map-card__rings span:nth-child(3) { width: 450px; }
  .map-card__center { width: 104px; height: 104px; font-size: 14px; }
  .map-pin { min-height: 36px; padding: 0 10px; font-size: 12px; }
  .pin-2 { top: 12%; left: 42%; }
  .pin-3 { right: 5%; }
  .pin-4 { bottom: 10%; left: 42%; }
  .pin-5 { left: 5%; }
  .pin-6 { right: 8%; bottom: 18%; }
  .final-cta__inner { display: grid; }
  .final-cta__actions .btn { flex: 1 1 100%; }
  .footer { padding-bottom: 118px; }
  .footer__grid { grid-template-columns: 1fr; }
  .modal { padding: 12px; }
  .modal__dialog--form,
  .modal__dialog--text { padding: 20px; border-radius: 26px; }
  .modal__close { top: 10px; }
  .toast { right: 12px; top: 88px; width: calc(100% - 24px); }
.topline__text {
text-align: center;
max-width: 100%;
margin-left: 0;
margin: 0 auto;
}

.topline__badge:before{display: none;}
.topline__badge{min-width: auto;}


}

@media (max-width: 420px) {
  .container { width: min(calc(100% - 22px), var(--container)); }
  .btn { min-height: 50px; padding-inline: 18px; }
  .section { padding: 62px 0; }
  .hero .bg{ padding-top: 46px; }
  .topline__quick span { display: none; }
 /* .cookie-banner { bottom: 86px; border-radius: 22px; }*/
}



