:root {
  --color-ink: #0b1422;
  --color-text: #344060;
  --color-muted: #637089;
  --color-soft: #9aabbd;
  --color-page: #f0f5fc;
  --color-surface: #fff;
  --color-surface-soft: #f8faff;
  --color-blue: #2461eb;
  --color-blue-light: #4b8bff;
  --color-blue-dark: #1a55d4;
  --color-orange: #e87220;
  --gradient-blue: linear-gradient(135deg, #4b8bff, #1a55d4);
  --gradient-orange: linear-gradient(135deg, #ff9040, #e06910);
  --shadow-header: 0 4px 28px rgba(11, 20, 34, 0.09);
  --shadow-blue: 0 4px 16px rgba(26, 85, 212, 0.3);
  --shadow-blue-lg: 0 8px 24px rgba(26, 85, 212, 0.3);
  --radius-pill: 999px;
  --container: 1320px;
  --container-pad: 24px;
}

/* Generated SEO pages */
.seo-page {
  background: var(--color-page);
  color: var(--color-ink);
}

.seo-hero {
  position: relative;
  overflow: hidden;
  padding: 16px 0 76px;
  background:
    linear-gradient(to right, #f0f5fc 42%, rgba(240, 245, 252, 0.84) 62%, rgba(240, 245, 252, 0.2) 100%),
    url('../uploads/freepik__background__67999 1-2.webp') right center / cover no-repeat;
}

.seo-hero__content {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  position: relative;
  z-index: 1;
}

.seo-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.75fr);
  gap: 38px;
  align-items: end;
}

.seo-hero__copy {
  max-width: 820px;
}

.seo-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 16px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(180, 210, 245, 0.5);
  color: var(--color-muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.seo-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gradient-blue);
}

.seo-title {
  margin: 0;
  max-width: 900px;
  font-size: clamp(36px, 6vw, 86px);
  line-height: 0.95;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.seo-title-stack,
.hero-title-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.hero-title-stack .hero-title {
  margin-bottom: 0;
}

.home-hero-section .hero-title-stack {
  margin-bottom: 28px;
}

.seo-title__accent {
  color: var(--color-blue);
}

.seo-lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--color-muted);
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.62;
}

.seo-hero .seo-lead {
  width: fit-content;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 44px rgba(11, 20, 34, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.seo-hero__panel {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(180, 210, 245, 0.42);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 20px 60px rgba(11, 20, 34, 0.11);
}

.seo-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.seo-stat {
  min-height: 96px;
  padding: 18px;
  border-radius: 18px;
  background: #f8faff;
  border: 1px solid rgba(180, 210, 245, 0.36);
}

.seo-stat__label {
  display: block;
  color: var(--color-soft);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.seo-stat__value {
  display: block;
  color: var(--color-ink);
  font-size: 18px;
  line-height: 1.24;
  font-weight: 800;
}

.seo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 26px;
}

.seo-section {
  padding: 92px 0;
}

.seo-section--white {
  background: #fff;
}

.seo-section__head {
  max-width: 760px;
  margin-bottom: 36px;
}

.seo-section__head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.seo-section-title {
  margin: 0;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 0.98;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.seo-section-lead {
  margin: 14px 0 0;
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.7;
}

.seo-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.seo-card-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.seo-card {
  min-height: 100%;
  padding: 24px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(180, 210, 245, 0.34);
  box-shadow: 0 8px 40px rgba(11, 20, 34, 0.07);
}

.seo-card[href] {
  display: block;
  color: inherit;
  text-decoration: none;
}

.seo-card--soft {
  background: #f8faff;
}

.seo-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  background: var(--gradient-blue);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
}

.seo-card__icon--orange {
  background: var(--gradient-orange);
}

.seo-card__title {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 800;
}

.seo-card__text {
  margin: 0;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.65;
}

.seo-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.seo-chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: var(--radius-pill);
  background: rgba(36, 97, 235, 0.08);
  color: var(--color-blue);
  font-size: 12px;
  font-weight: 800;
}

.seo-chip--orange {
  background: rgba(232, 114, 32, 0.1);
  color: var(--color-orange);
}

.seo-table {
  display: grid;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(180, 210, 245, 0.36);
  box-shadow: 0 8px 40px rgba(11, 20, 34, 0.07);
}

.seo-table__row {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) 1fr;
  gap: 20px;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(180, 210, 245, 0.28);
}

.seo-table__row:last-child {
  border-bottom: 0;
}

.seo-table__key {
  color: var(--color-soft);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.seo-table__value {
  color: var(--color-ink);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 700;
}

.seo-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.seo-step {
  padding: 24px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(180, 210, 245, 0.34);
}

.seo-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gradient-blue);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 18px;
}

.seo-step__title {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 800;
}

.seo-step__text {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.65;
}

.seo-faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
}

.seo-faq__item {
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(180, 210, 245, 0.34);
  overflow: hidden;
  box-shadow: 0 6px 34px rgba(11, 20, 34, 0.06);
}

.seo-faq__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  cursor: pointer;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 800;
}

.seo-faq__arr {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #fff;
  background: var(--gradient-blue);
  transition: transform .2s ease;
}

.seo-faq__item[open] .seo-faq__arr {
  transform: rotate(180deg);
}

.seo-faq__answer {
  padding: 0 24px 22px;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.7;
}

.seo-order {
  padding: 92px 0;
  background: url('../img/Фон-8-1-scaled.webp') center / cover no-repeat;
}

.seo-order__box {
  max-width: 620px;
  padding: 30px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 60px rgba(11, 20, 34, 0.14);
}

.seo-order__title {
  margin: 0 0 12px;
  font-size: clamp(28px, 3.8vw, 48px);
  line-height: 0.98;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.seo-order__text {
  margin: 0 0 24px;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.65;
}

.seo-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.seo-input,
.seo-select,
.seo-textarea {
  width: 100%;
  min-width: 0;
  border: 1.5px solid rgba(0, 0, 0, 0.09);
  border-radius: 16px;
  background: #f7f9fc;
  color: var(--color-ink);
  outline: none;
  font-size: 15px;
}

.seo-input,
.seo-select {
  height: 58px;
  padding: 0 20px;
}

.seo-textarea {
  grid-column: 1 / -1;
  min-height: 112px;
  padding: 18px 20px;
  resize: vertical;
}

.seo-form__submit {
  height: 58px;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--gradient-blue);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: var(--shadow-blue);
}

.seo-form__note {
  margin: 12px 0 0;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.5;
}

.seo-related {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.seo-related__card {
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(180, 210, 245, 0.34);
  color: var(--color-ink);
  font-weight: 800;
  transition: border-color .18s, transform .18s;
}

.seo-related__card:hover {
  border-color: rgba(36, 97, 235, 0.36);
  transform: translateY(-2px);
}

@media (max-width: 1020px) {
  .seo-hero__grid,
  .seo-card-grid,
  .seo-card-grid--4,
  .seo-process,
  .seo-related {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .seo-hero {
    padding-bottom: 56px;
    background: #f0f5fc;
  }

  .seo-hero__grid,
  .seo-card-grid,
  .seo-card-grid--4,
  .seo-process,
  .seo-faq,
  .seo-form,
  .seo-related {
    grid-template-columns: 1fr;
  }

  .seo-section,
  .seo-order {
    padding: 64px 0;
  }

  .seo-title {
    font-size: clamp(36px, 12vw, 58px);
  }

  .seo-title-stack,
  .hero-title-stack {
    gap: 14px;
  }

  .yandex-reviews-btn {
    min-height: 42px;
    padding-right: 16px;
    font-size: 12px;
  }

  .yandex-reviews-btn__icon {
    width: 26px;
    height: 26px;
    font-size: 15px;
  }

  .yandex-reviews-panel {
    padding: 14px;
    border-radius: 22px;
  }

  .yandex-reviews-title {
    font-size: 20px;
  }

  .yandex-reviews-frame {
    height: calc(100vh - 138px);
    min-height: 430px;
    border-radius: 14px;
  }

  .yandex-reviews-frame iframe {
    border-radius: 14px;
  }

  .seo-table__row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .seo-textarea {
    grid-column: auto;
  }
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  background: var(--color-page);
  color: var(--color-ink);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
@supports not (overflow: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; font-family: inherit; }
details > summary { list-style: none; }
details > summary::-webkit-details-marker { display: none; }

.site-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section-white {
  padding: 96px 0;
  background: #fff;
}

.section-soft {
  padding: 96px 0;
  background: var(--color-page);
}

.order-section {
  padding: 96px 0;
  background: url('../img/Фон-8-1-scaled.webp') center / cover no-repeat;
}

.section-title {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  line-height: 0.95;
}

.section-title--center {
  text-align: center;
}

.section-title--home {
  font-size: clamp(32px, 4vw, 52px);
}

.section-title--inner {
  font-size: clamp(28px, 3.5vw, 48px);
}

.section-title--product {
  font-size: clamp(26px, 3.2vw, 44px);
}

.section-title--calc {
  font-size: clamp(26px, 3vw, 40px);
}

.section-title--order {
  font-size: clamp(32px, 4vw, 56px);
  color: var(--color-ink);
}

.section-title--mb-8 { margin-bottom: 8px; }
.section-title--mb-20 { margin-bottom: 20px; }
.section-title--mb-24 { margin-bottom: 24px; }
.section-title--mb-32 { margin-bottom: 32px; }
.section-title--mb-36 { margin-bottom: 36px; }
.section-title--mb-40 { margin-bottom: 40px; }
.section-title--mb-42 { margin-bottom: 42px; }

.section-title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 24px;
}

.section-title-row .section-title {
  margin-bottom: 0;
}

.section-title-row--reviews {
  margin-bottom: 40px;
}

.content-grid {
  display: grid;
}

.content-grid--2 { grid-template-columns: repeat(2, 1fr); }
.content-grid--3 { grid-template-columns: repeat(3, 1fr); }
.content-grid--4 { grid-template-columns: repeat(4, 1fr); }
.content-grid--service { grid-template-columns: min(380px, 38%) 1fr; }
.content-grid--offset-fit { grid-template-columns: 1.3fr 1fr 1fr; }
.content-grid--calc { grid-template-columns: 1fr 380px; }
.content-grid--footer { grid-template-columns: auto 1fr auto; }
.content-grid--gap-12 { gap: 12px; }
.content-grid--gap-14 { gap: 14px; }
.content-grid--gap-16 { gap: 16px; }
.content-grid--gap-18 { gap: 18px; }
.content-grid--gap-20 { gap: 20px; }
.content-grid--gap-28 { gap: 28px; }
.content-grid--gap-32 { gap: 32px; }
.content-grid--start { align-items: start; }
.content-grid--center { align-items: center; }
.content-grid--stretch { align-items: stretch; }

.footer-layout {
  padding-top: 12px;
  margin-bottom: 20px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-muted);
  margin-bottom: 28px;
}

.breadcrumbs__sep {
  color: #b0bdd0;
}

.breadcrumbs__current {
  color: var(--color-ink);
  font-weight: 600;
}

.hero-shell {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  position: relative;
  z-index: 2;
}

.home-hero-section {
  min-height: 100vh;
  padding: 16px 0 56px;
  background:
    linear-gradient(to right, #f0f5fc 36%, rgba(240, 245, 252, 0.82) 52%, transparent 68%),
    url('../img/Фон-9-scaled.webp') center top / cover no-repeat;
}

.inner-hero-section {
  position: relative;
  overflow: hidden;
  padding: 16px 0 72px;
}

.inner-hero-bg {
  position: absolute;
  right: -2%;
  bottom: -35px;
  width: 64%;
  transform: rotate(4deg);
  transform-origin: 50% 100%;
  pointer-events: none;
  z-index: 0;
}

.inner-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #f0f5fc 40%, rgba(240, 245, 252, 0.8) 56%, rgba(240, 245, 252, 0.15) 78%);
  z-index: 1;
  pointer-events: none;
}

.hero-home-content {
  max-width: 840px;
  padding-top: 48px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.hero-badge {
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(0, 0, 0, 0.07);
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-muted);
}

.hero-badge--dot {
  position: relative;
}

.hero-badge__dot {
  position: absolute;
  left: -10px;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-blue);
  transform: translateY(-50%);
}

.hero-title-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 28px 40px;
  align-items: end;
  margin-bottom: 0;
}

.hero-title-grid > .hero-lead {
  width: fit-content;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 44px rgba(11, 20, 34, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero-title-grid--spaced {
  gap: 32px 48px;
  margin-bottom: 32px;
}

.hero-title {
  margin: 0;
  font-size: clamp(40px, 5.2vw, 80px);
  font-weight: 800;
  letter-spacing: -0.055em;
  text-transform: uppercase;
  line-height: 0.93;
  text-wrap: pretty;
}

.yandex-reviews-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 18px 0 10px;
  border: 1px solid rgba(255, 204, 0, 0.72);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-ink);
  box-shadow: 0 10px 28px rgba(11, 20, 34, 0.08);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.yandex-reviews-btn:hover {
  border-color: #ffcc00;
  box-shadow: 0 14px 34px rgba(11, 20, 34, 0.13);
  transform: translateY(-1px);
}

.yandex-reviews-btn:focus-visible {
  outline: 3px solid rgba(255, 204, 0, 0.45);
  outline-offset: 3px;
}

.yandex-reviews-btn__icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ffcc00;
  color: #111;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.yandex-reviews-btn__text {
  white-space: nowrap;
}

.yandex-reviews-overlay {
  position: fixed;
  inset: 0;
  z-index: 3400;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(11, 20, 34, 0.78);
  backdrop-filter: blur(18px);
}

.yandex-reviews-overlay.is-open {
  display: flex;
}

.yandex-reviews-panel {
  display: flex;
  flex-direction: column;
  width: min(760px, 100%);
  max-height: calc(100dvh - 32px);
  padding: 18px;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.34);
  animation: formIn .28s cubic-bezier(.22, 1, .36, 1);
}

.yandex-reviews-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 4px 4px 16px;
}

.yandex-reviews-kicker {
  margin-bottom: 6px;
  color: var(--color-soft);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.yandex-reviews-title {
  margin: 0;
  color: var(--color-ink);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0;
}

.yandex-reviews-close {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1.5px solid rgba(11, 20, 34, 0.08);
  border-radius: 50%;
  background: #f8faff;
  color: var(--color-muted);
  cursor: pointer;
  font: inherit;
  font-size: 22px;
  line-height: 1;
}

.yandex-reviews-close:hover {
  background: #f0f5fc;
  color: var(--color-ink);
}

.yandex-reviews-frame {
  flex: 1 1 auto;
  position: relative;
  width: min(680px, 100%);
  height: min(860px, calc(100dvh - 112px));
  min-height: 620px;
  margin: 0 auto;
  overflow-y: auto;
  overflow-x: hidden;
  border-radius: 18px;
  background: #f0f5fc;
  -webkit-overflow-scrolling: touch;
  scrollbar-gutter: stable;
}

.yandex-reviews-frame iframe {
  display: block;
  width: 100%;
  height: 1180px;
  min-height: 100%;
  border: 1px solid #e6e6e6;
  border-radius: 18px;
  box-sizing: border-box;
  background: #fff;
}

.yandex-reviews-source-link {
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  max-height: 14px;
  padding: 0 16px;
  box-sizing: border-box;
  overflow: hidden;
  color: #b3b3b3;
  font-family: "YS Text", Manrope, sans-serif;
  font-size: 10px;
  text-align: center;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 720px) {
  .seo-title-stack,
  .hero-title-stack {
    gap: 14px;
  }

  .yandex-reviews-btn {
    min-height: 42px;
    padding-right: 16px;
    font-size: 12px;
  }

  .yandex-reviews-btn__icon {
    width: 26px;
    height: 26px;
    font-size: 15px;
  }

  .yandex-reviews-panel {
    width: 100%;
    max-height: calc(100dvh - 24px);
    padding: 14px;
    border-radius: 22px;
  }

  .yandex-reviews-title {
    font-size: 20px;
  }

  .yandex-reviews-frame {
    width: 100%;
    height: calc(100dvh - 126px);
    min-height: 0;
    border-radius: 14px;
  }

  .yandex-reviews-frame iframe {
    height: 1040px;
    border-radius: 14px;
  }
}

.hero-title--home {
  margin-bottom: 20px;
  font-size: clamp(48px, 5.5vw, 80px);
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: var(--color-ink);
}

.hero-lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-muted);
  padding-bottom: 6px;
}

.hero-title-grid > .hero-lead {
  padding: 16px 18px;
}

.hero-lead-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 720px;
  margin-bottom: 30px;
}

.hero-lead-arrow {
  width: 28px;
  flex-shrink: 0;
  margin-top: 5px;
}

.hero-lead--home {
  font-size: 17px;
  line-height: 1.58;
  letter-spacing: -0.01em;
  padding-bottom: 0;
}

.hero-after-title {
  margin-top: 28px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.hero-stats--icon {
  gap: 12px;
  margin-bottom: 32px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 16px;
  backdrop-filter: blur(6px);
}

.hero-stat--icon {
  flex-direction: row;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(180, 210, 245, 0.4);
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(11, 20, 34, 0.06);
}

.hero-stat__label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-soft);
  margin-bottom: 3px;
}

.hero-stat--icon .hero-stat__label {
  font-weight: 700;
  margin-bottom: 2px;
}

.hero-stat__value {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-ink);
}

.hero-stat--icon .hero-stat__value {
  font-size: 22px;
  letter-spacing: -0.04em;
  line-height: 1;
}

.hero-stat__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--gradient-blue);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.hero-stat__icon--orange {
  background: var(--gradient-orange);
}

.hero-stat__icon svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.hero-stat__icon svg[data-stroke] {
  fill: none;
  stroke: #fff;
  stroke-width: 2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions--home {
  margin-bottom: 28px;
}

.hero-phone-line {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.hero-phone-line__icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  margin-top: 3px;
}

.hero-phone-line__label {
  display: block;
  margin-bottom: 4px;
  color: var(--color-muted);
  font-size: 14px;
}

.hero-phone-line__number {
  display: block;
  color: var(--color-ink);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.035em;
}

.hero-phone-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 24px;
  height: 56px;
  background: #fff;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-pill);
  color: var(--color-ink);
  font-size: 16px;
  font-weight: 700;
}

.hero-phone-cta img {
  width: 18px;
  height: 18px;
}

.site-header {
  position: relative;
  z-index: 20;
  padding: 0 24px;
  margin-bottom: 24px;
}

.site-header--inner {
  z-index: 2;
  margin-bottom: 28px;
}

.site-header__shell {
  max-width: var(--container);
  margin: 0 auto;
}

.site-header__pill {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 15px 12px 12px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-header);
  backdrop-filter: blur(12px);
}

.site-menu-btn {
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  border-radius: 50%;
}

.site-menu-btn__icon {
  width: 42px;
  height: 42px;
}

.site-logo-link {
  flex-shrink: 0;
}

.site-logo {
  width: 154px;
  height: auto;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 14px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  flex: 1;
  color: var(--color-text);
}

.site-header-actions {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
}

.site-header-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-header-icon img {
  width: 38px;
  height: 38px;
}

.site-header-phone {
  font-size: 15px;
  font-weight: 700;
  margin-left: 3px;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  font-weight: 800;
  border: 0;
  cursor: pointer;
  white-space: nowrap;
}

.btn svg {
  flex-shrink: 0;
  fill: currentColor;
}

.btn__icon--eye {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.btn--header {
  gap: 7px;
  padding: 0 20px;
  height: 42px;
  background: var(--gradient-blue);
  color: #fff;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: var(--shadow-blue);
  flex-shrink: 0;
}

.btn--header svg {
  width: 14px;
  height: 14px;
}

.btn--primary {
  gap: 9px;
  min-height: 56px;
  padding: 0 28px;
  background: var(--gradient-blue);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow: var(--shadow-blue-lg);
  transition: transform .2s, box-shadow .2s;
}

.btn--primary svg {
  display: block;
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
}

.btn--hero {
  gap: 9px;
  padding: 0 30px;
  height: 56px;
  background: var(--gradient-blue);
  color: #fff;
  font-size: 16px;
  letter-spacing: -0.01em;
  box-shadow: var(--shadow-blue-lg);
  transition: transform .2s, box-shadow .2s;
}

.btn--hero-lg {
  height: 58px;
}

.btn--calc-submit {
  height: 52px;
  font-size: 15px;
  box-shadow: 0 6px 20px rgba(26, 85, 212, 0.35);
}

.btn--hero svg {
  width: 16px;
  height: 16px;
}

.btn--hero-orange {
  background: var(--gradient-orange);
  box-shadow: 0 8px 24px rgba(224, 105, 16, 0.28);
}

.btn--outline-blue {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  height: 42px;
  min-width: 148px;
  padding: 0 24px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--color-blue);
  color: var(--color-blue);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: all .2s;
}

.btn--outline-blue svg {
  width: 13px;
  height: 13px;
}

.btn--outline-orange {
  border-color: var(--color-orange);
  color: var(--color-orange);
}

.btn--submit {
  height: 58px;
  padding: 0 24px;
  background: var(--gradient-blue);
  color: #fff;
  font-size: 16px;
  gap: 9px;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(26, 85, 212, 0.3);
  transition: transform .2s;
}

.btn--submit svg {
  display: block;
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11, 20, 34, 0.5);
  backdrop-filter: blur(8px);
  z-index: 999;
}

.mobile-menu-overlay.is-open { display: block; }

.mobile-menu-panel {
  width: min(400px, calc(100% - 24px));
  margin: 16px auto 0;
  background: #fff;
  border-radius: 26px;
  padding: 26px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
}

.mobile-menu-nav {
  display: grid;
  gap: 14px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
}

.mobile-menu-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 56px;
  background: var(--gradient-blue);
  border-radius: var(--radius-pill);
  color: #fff;
  font-size: 17px;
  font-weight: 800;
}

.mobile-menu-cta svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.faq-list summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 16px;
  user-select: none;
}

details[data-faq] > summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 16px;
  user-select: none;
}

details[data-faq] > summary [data-arr] {
  transition: transform .22s ease;
  flex-shrink: 0;
}

details[data-faq][open] > summary [data-arr] {
  transform: rotate(180deg);
}

@keyframes openAns {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: none; }
}

details[data-faq][open] > [data-ans] {
  animation: openAns .2s ease;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 22px;
  align-items: start;
}

.faq-item {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 20px;
  overflow: hidden;
}

.faq-item--shadow {
  border-color: rgba(180, 210, 245, 0.28);
  box-shadow: 0 6px 40px rgba(11, 20, 34, 0.07);
}

.faq-item--soft {
  background: var(--color-surface-soft);
  border-color: rgba(180, 210, 245, 0.28);
  box-shadow: 0 6px 40px rgba(11, 20, 34, 0.06);
}

.faq-summary {
  padding: 22px 26px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.faq-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
}

.faq-answer {
  padding: 0 26px 22px;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.65;
}

.site-footer {
  padding: 20px 0 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.site-footer--blue {
  background: #e8eef8;
}

.site-footer--light {
  background: var(--color-surface-soft);
}

.footer-logo {
  width: 190px;
}

.footer-contact-icon {
  width: 16px;
  height: 16px;
  opacity: 0.55;
}

.footer-contacts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
}

.footer-contact {
  display: flex;
  gap: 11px;
  align-items: flex-start;
}

.footer-contact__icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.06);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.footer-contact__icon img {
  width: 16px;
  height: 16px;
  opacity: 0.55;
}

.footer-contact__icon img[src$="max-gr.png"] {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  opacity: 1;
  object-fit: cover;
}

.footer-contact__icon img[data-small-icon] {
  width: 14px;
  height: 14px;
}

.footer-contact__title {
  display: block;
  font-size: 13px;
  color: var(--color-ink);
  margin-bottom: 3px;
}

.footer-contact__text {
  font-size: 13px;
  color: var(--color-muted);
}

.footer-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
  height: 52px;
  background: var(--gradient-blue);
  border-radius: var(--radius-pill);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 18px rgba(26, 85, 212, 0.35);
  white-space: nowrap;
  flex-shrink: 0;
}

.footer-cta svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  border: 1.5px solid rgba(0, 0, 0, 0.09);
  border-radius: 16px;
  background-color: #f7f9fc;
  color: var(--color-ink);
  font-size: 15px;
  outline: none;
}

.form-input,
.form-select {
  height: 58px;
  padding: 0 20px;
}

.form-select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #637089 50%),
    linear-gradient(135deg, #637089 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% + 2px),
    calc(100% - 16px) calc(50% + 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  cursor: pointer;
}

.form-textarea {
  min-height: 116px;
  padding: 18px;
  resize: vertical;
}

.form-checkbox {
  margin-top: 2px;
  accent-color: var(--color-blue);
}

.order-card {
  position: relative;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 24px;
  padding: 28px 28px 24px;
}

.order-card__arrow {
  position: absolute;
  top: 18px;
  right: 24px;
  font-size: 24px;
  color: #b0bdd0;
}

.order-card__title {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  line-height: 1.2;
  padding-right: 40px;
}

.order-card__lead {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 22px;
  margin-top: 14px;
}

.order-card__lead-icon {
  width: 20px;
  flex-shrink: 0;
  margin-top: 3px;
}

.order-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.consent-label {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 14px;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.5;
  cursor: pointer;
}

.chip {
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
}

.chip--blue {
  padding: 5px 12px;
  background: #eef2fb;
  color: #4b6da0;
}

.chip--orange {
  padding: 5px 12px;
  background: #fff0e6;
  color: #9c4e10;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.hub-product-card {
  background: var(--color-surface-soft);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 22px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow .2s;
}

.hub-product-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--gradient-blue);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
}

.hub-product-card__title {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.case-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 2px 16px rgba(11, 20, 34, 0.06);
}

.case-card--soft {
  background: var(--color-surface-soft);
  border-color: rgba(180, 210, 245, 0.28);
  box-shadow: 0 6px 40px rgba(11, 20, 34, 0.06);
}

.case-tags {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.case-chip {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 12px;
  border-radius: var(--radius-pill);
  background: #f2f5fa;
  border: 1px solid #e4eaf4;
  color: #6b7a99;
  font-size: 13px;
  font-weight: 600;
}

.case-chip--product {
  height: 30px;
  background: #eef2fb;
  border-color: #dce6f7;
}

.case-marker {
  margin-left: auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7a8395, #50586a);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 16px;
  flex-shrink: 0;
}

.case-marker--blue {
  background: var(--gradient-blue);
}

.case-marker--orange {
  background: linear-gradient(135deg, #ffb18e, #ec7f2f);
}

.case-marker--product {
  width: 36px;
  height: 36px;
  font-size: 14px;
}

.case-title {
  margin: 0 0 12px;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 1.1;
}

.card-title {
  margin: 0 0 12px;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 1.1;
}

.case-title--product {
  margin-bottom: 10px;
  font-size: 18px;
}

.case-lead-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
}

.case-lead-arrow {
  width: 22px;
  flex-shrink: 0;
  margin-top: 4px;
}

.case-text {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.58;
  color: var(--color-muted);
}

.case-image {
  height: 210px;
  border-radius: 16px;
  overflow: hidden;
}

.case-image--product {
  height: 200px;
  border-radius: 14px;
}

.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-card {
  background: var(--color-surface-soft);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 2px 16px rgba(11, 20, 34, 0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-card--white {
  background: #fff;
  border-color: rgba(180, 210, 245, 0.28);
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 6px 40px rgba(11, 20, 34, 0.06);
  gap: 14px;
}

.review-stars {
  display: flex;
  gap: 3px;
  color: var(--color-orange);
  font-size: 18px;
}

.review-card--white .review-stars {
  font-size: 17px;
}

.review-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-text);
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.review-card--white .review-author {
  padding-top: 14px;
  border-top-color: rgba(180, 210, 245, 0.3);
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-blue);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  flex-shrink: 0;
}

.review-card--white .review-avatar {
  font-size: 15px;
}

.review-avatar--orange {
  background: var(--gradient-orange);
}

.review-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-ink);
}

.review-meta {
  font-size: 12.5px;
  color: var(--color-muted);
}

.related-card {
  background: var(--color-surface-soft);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 20px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow .2s;
}

.related-card--white {
  background: #fff;
  border-color: rgba(180, 210, 245, 0.28);
  box-shadow: 0 4px 20px rgba(11, 20, 34, 0.05);
}

.related-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--gradient-blue);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
}

.related-card__icon--orange {
  background: var(--gradient-orange);
}

.related-card--white .related-card__icon {
  font-size: 15px;
}

.related-card__title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--color-ink);
}

.related-card__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-muted);
}

.related-card__more {
  margin-top: auto;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-blue);
  display: flex;
  align-items: center;
  gap: 5px;
}

.related-card__more--orange {
  color: var(--color-orange);
}

.advantages-section {
  padding: 96px 0;
  background: var(--color-surface-soft);
}

.advantages-grid {
  display: grid;
  grid-template-columns: min(380px, 38%) 1fr;
  gap: 16px;
  align-items: stretch;
}

.advantage-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 2px 16px rgba(11, 20, 34, 0.06);
  display: flex;
  flex-direction: column;
}

.advantage-card--big {
  border-radius: 26px;
  padding: 24px 22px 28px;
  min-height: 600px;
  box-shadow: 0 4px 32px rgba(11, 20, 34, 0.07);
}

.advantage-card--small {
  border-radius: 22px;
  padding: 20px 18px;
  min-height: 200px;
  overflow: hidden;
}

.advantage-card--delivery {
  border-radius: 22px;
  padding: 22px 260px 22px 22px;
  min-height: 184px;
  overflow: visible;
  grid-column: 1 / -1;
  justify-content: center;
}

.advantage-side-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.card-index {
  display: block;
  color: #b0bdd0;
  font-weight: 300;
}

.card-index--big {
  font-size: 13px;
  letter-spacing: 0.02em;
}

.card-index--small {
  font-size: 12px;
}

.card-index--service {
  margin-bottom: 10px;
  font-size: 11px;
  letter-spacing: 0.02em;
}

.card-index--with-gap {
  margin-bottom: auto;
}

.advantage-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
}

.advantage-icon--big {
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
}

.advantage-visual {
  border-radius: 18px;
  background: linear-gradient(150deg, #6aa0ff, #1f5ee0);
  min-height: 280px;
  position: relative;
  overflow: visible;
  margin-top: 44px;
  flex-shrink: 0;
}

.advantage-certificate {
  position: absolute;
  top: -54px;
  left: -34px;
  width: 118%;
  max-width: none;
  transform: rotate(-9deg);
  pointer-events: none;
}

.advantage-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-self: flex-end;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  background: rgba(244, 248, 254, 0.95);
  margin: 20px 0 16px auto;
  width: fit-content;
  color: #7b8a9c;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.advantage-tag-dot {
  position: relative;
}

.advantage-tag-dot::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #4f86f6;
  transform: translateY(-50%);
}

.advantage-title {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 1.04;
}

.advantage-title--big {
  font-size: 22px;
  line-height: 1;
}

.advantage-title--small {
  margin-top: 44px;
  padding-right: 48px;
}

.advantage-title--delivery {
  margin-top: 8px;
  font-size: 20px;
}

.advantage-text {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.5;
}

.advantage-text--big {
  font-size: 15px;
  line-height: 1.55;
}

.advantage-courier {
  position: absolute;
  top: -36px;
  right: 52px;
  height: calc(100% + 36px);
  width: auto;
  max-width: none;
  pointer-events: none;
}

.services-container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.service-card {
  display: grid;
  grid-template-columns: 38% 1fr;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(11, 20, 34, 0.07);
  border: 1px solid rgba(0, 0, 0, 0.06);
  min-height: 310px;
  color: inherit;
  text-decoration: none;
}

a.service-card {
  cursor: pointer;
}

a.service-card:focus-visible {
  outline: 3px solid rgba(36, 97, 235, 0.32);
  outline-offset: 4px;
}

.service-card--catalog {
  display: flex;
  position: relative;
}

.service-card__body {
  background: #fff;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-card__body--overlay {
  position: relative;
  z-index: 1;
  flex: 0 0 38%;
  background: rgba(255, 255, 255, 0.97);
}

.service-title {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  line-height: 1;
}

.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px 12px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  color: var(--color-text);
  font-size: 14px;
}

.service-list li::before {
  content: "";
  flex-shrink: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-soft);
  margin-top: 7px;
}

.service-meta {
  background: #182232;
  border-radius: 14px;
  padding: 11px 12px 11px 52px;
  position: relative;
  flex-shrink: 0;
}

.service-meta__icon {
  position: absolute;
  left: 8px;
  top: 50%;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gradient-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
}

.service-meta__icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.service-meta__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 6px;
  font-size: 12.5px;
}

.service-meta__row + .service-meta__row {
  margin-top: 5px;
  padding-top: 5px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.service-meta__label {
  color: rgba(255, 255, 255, 0.55);
  flex-shrink: 0;
}

.service-meta__value {
  color: #fff;
  font-weight: 700;
  text-align: right;
}

.service-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  background: var(--gradient-blue);
  border-radius: var(--radius-pill);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 5px 14px rgba(26, 85, 212, 0.26);
  flex-shrink: 0;
  transition: transform .2s;
}

.service-cta svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.service-media {
  overflow: hidden;
  position: relative;
}

.service-media__img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: right center;
}

.service-media__img--offset {
  width: 800px;
  height: 476px;
  left: 54px;
  top: -13px;
}

.service-media__img--digital {
  width: 788px;
  height: 471px;
  left: 64px;
  top: -4px;
}

.service-media__img--screen {
  width: 797px;
  height: 471px;
  left: 52px;
  top: -18px;
}

.service-media__img--wide {
  width: 861px;
  height: 465px;
  left: 34px;
  top: -29px;
}

.service-media__img--flexo {
  width: 782px;
  height: 465px;
  left: 63px;
  top: -20px;
}

.service-media__img--pos {
  width: 807px;
  height: 470px;
  left: 30px;
  top: 1px;
}

.catalog-media {
  position: absolute;
  inset: 0;
  width: 1399px;
  height: 472px;
  object-fit: cover;
  left: -4px;
  top: -26px;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.process-card {
  background: #fff;
  border: 1px solid rgba(180, 210, 245, 0.28);
  border-radius: 24px;
  padding: 26px 24px;
  box-shadow: 0 6px 40px rgba(11, 20, 34, 0.07);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
}

.process-visual {
  position: relative;
  flex-shrink: 0;
  padding-bottom: 30px;
}

.process-visual img {
  width: 96px;
  height: 96px;
  object-fit: contain;
}

.process-time {
  position: absolute;
  right: 0;
  bottom: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 30px;
  padding: 0 11px;
  background: var(--gradient-blue);
  border-radius: var(--radius-pill);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.process-time svg {
  width: 11px;
  height: 11px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.5;
}

.calc-panel {
  background: var(--color-surface-soft);
  border: 1px solid rgba(180, 210, 245, 0.3);
  border-radius: 28px;
  padding: 36px;
  box-shadow: 0 6px 40px rgba(11, 20, 34, 0.06);
}

.calc-group {
  margin-bottom: 28px;
}

.calc-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.calc-label {
  color: var(--color-soft);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.calc-label--spaced {
  margin-bottom: 12px;
}

.calc-current {
  color: var(--color-ink);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.calc-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.calc-opt {
  cursor: pointer;
  padding: 10px 16px;
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  background: #fff;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: all .18s;
}

.calc-opt.active {
  background: var(--gradient-blue);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 14px rgba(26, 85, 212, 0.28);
}

.calc-result {
  position: sticky;
  top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.calc-summary {
  background: var(--color-ink);
  border-radius: 24px;
  padding: 28px;
  color: #fff;
}

.calc-summary__label {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.calc-summary__price {
  margin-bottom: 4px;
  color: #fff;
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
}

.calc-summary__unit {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 14px;
}

.calc-summary__rows {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.calc-summary__row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.calc-summary__row span:first-child {
  color: rgba(255, 255, 255, 0.5);
}

.calc-summary__row span:last-child {
  color: #fff;
  font-weight: 600;
}

.calc-summary__row--accent span:last-child {
  color: var(--color-blue-light);
}

.calc-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border: 1px solid rgba(180, 210, 245, 0.3);
  border-radius: 20px;
  padding: 18px 20px;
  box-shadow: 0 4px 20px rgba(11, 20, 34, 0.06);
}

.calc-note__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient-blue);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.calc-note__icon svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}

.calc-note__text {
  margin: 0;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.6;
}

.section-lead {
  margin: 0 0 36px;
  color: var(--color-muted);
  font-size: 16px;
}

.section-lead--mb-40 {
  margin-bottom: 40px;
}

.product-config-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  border: 1px solid rgba(180, 210, 245, 0.28);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 6px 40px rgba(11, 20, 34, 0.06);
}

.product-config-card--featured {
  position: relative;
  overflow: hidden;
  background: var(--color-ink);
  border-color: rgba(255, 255, 255, 0.05);
  box-shadow: 0 6px 40px rgba(11, 20, 34, 0.18);
}

.product-config-card__badge {
  position: absolute;
  top: 16px;
  right: 60px;
  padding: 4px 12px;
  background: linear-gradient(135deg, #ff9040, #e87220);
  border-radius: var(--radius-pill);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-config-card__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.product-config-card__kicker {
  margin-bottom: 6px;
  color: var(--color-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-config-card--featured .product-config-card__kicker {
  color: rgba(255, 255, 255, 0.35);
}

.product-config-card__title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.product-config-card--featured .product-config-card__title {
  color: #fff;
}

.product-config-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--gradient-blue);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.product-config-card__icon--orange {
  background: linear-gradient(135deg, #ff9040, #e87220);
}

.product-config-card__icon svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.product-config-card__list {
  display: grid;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-config-card__item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text);
  font-size: 14px;
}

.product-config-card--featured .product-config-card__item {
  color: rgba(255, 255, 255, 0.7);
}

.product-config-card__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-blue-light);
  flex-shrink: 0;
}

.product-config-card__dot--orange {
  background: var(--color-orange);
}

.product-config-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid #edf2f9;
}

.product-config-card--featured .product-config-card__footer {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.product-config-card__price-label {
  margin-bottom: 2px;
  color: var(--color-soft);
  font-size: 11px;
}

.product-config-card--featured .product-config-card__price-label {
  color: rgba(255, 255, 255, 0.35);
}

.product-config-card__price {
  color: var(--color-ink);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.product-config-card--featured .product-config-card__price {
  color: #fff;
}

.product-config-card__cta {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 42px;
  padding: 0 18px;
  background: var(--gradient-blue);
  border-radius: var(--radius-pill);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.product-config-card__cta--orange {
  background: linear-gradient(135deg, #ff9040, #e87220);
}

.material-card {
  background: #fff;
  border: 1px solid rgba(180, 210, 245, 0.28);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 6px 40px rgba(11, 20, 34, 0.06);
}

.material-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--gradient-blue);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.material-card__icon--orange {
  background: linear-gradient(135deg, #ff9040, #e87220);
}

.material-card__icon svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

.material-card__title {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.material-list {
  display: grid;
  gap: 7px;
}

.material-list__item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text);
  font-size: 14px;
}

.material-list__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-soft);
  flex-shrink: 0;
}

.material-list__dot--orange {
  background: var(--color-orange);
}

.price-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(180, 210, 245, 0.28);
  border-radius: 20px;
  box-shadow: 0 6px 40px rgba(11, 20, 34, 0.06);
}

.price-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  background: #fff;
}

.price-table thead tr {
  background: var(--color-page);
}

.price-table th {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(180, 210, 245, 0.3);
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.price-table th:first-child {
  text-align: left;
}

.price-table td {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(180, 210, 245, 0.2);
  color: var(--color-text);
  font-size: 14px;
  text-align: center;
}

.price-table tr:last-child td {
  border-bottom: 0;
}

.price-table__row--highlight {
  background: rgba(240, 245, 252, 0.5);
}

.price-table__label {
  color: var(--color-ink) !important;
  font-weight: 700;
  text-align: left !important;
}

.price-table__value--accent {
  color: var(--color-blue) !important;
  font-weight: 700;
}

.price-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: #eef2fb;
  color: #4b6da0;
  font-size: 12px;
  font-weight: 700;
}

.price-badge--accent {
  background: var(--gradient-blue);
  color: #fff;
}

.section-note {
  margin: 14px 0 0;
  color: var(--color-soft);
  font-size: 13px;
}

.text-accent {
  color: var(--color-blue);
}

.text-strong {
  color: var(--color-text);
  font-weight: 700;
}

.order-content {
  max-width: 580px;
}

.footer-legal {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--color-soft);
  font-size: 13px;
}

.seo-copy-section {
  padding: 76px 0;
  background: #eef4fd;
}

.seo-copy-section--white {
  background: #eef4fd;
}

.seo-copy-card {
  display: grid;
  grid-template-columns: minmax(230px, 320px) minmax(0, 1fr);
  gap: clamp(48px, 7vw, 112px);
  align-items: start;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.seo-copy-card__head {
  position: sticky;
  top: 112px;
  align-self: start;
}

.seo-copy-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
  margin-bottom: 18px;
  padding: 0 14px;
  border: 1px solid #c7dcff;
  border-radius: var(--radius-pill);
  background: rgba(245, 249, 255, 0.74);
  color: var(--color-blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.seo-copy-kicker::before {
  content: "i";
  width: 13px;
  height: 13px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--color-blue);
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
  text-transform: lowercase;
}

.seo-copy-title {
  margin: 0;
  max-width: 270px;
  color: var(--color-ink);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 0.92;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.seo-copy-lead {
  margin: 20px 0 0;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.62;
}

.seo-copy-content {
  min-width: 0;
  padding: clamp(26px, 3.2vw, 42px) clamp(26px, 3.4vw, 44px);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 54px rgba(34, 70, 120, 0.09);
}

.seo-copy-preview {
  display: grid;
  gap: 18px;
}

.seo-copy-preview p {
  margin: 0;
  color: #2f3d5a;
  font-size: 16px;
  line-height: 1.78;
}

.seo-copy-preview strong,
.seo-copy-body strong {
  color: var(--color-ink);
  font-weight: 800;
}

.seo-copy-details {
  margin-top: 24px;
  border-radius: 0;
  background: transparent;
  border: 0;
  overflow: visible;
}

.seo-copy-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid #bdd5ff;
  border-radius: 12px;
  background: #edf5ff;
  color: var(--color-blue);
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  list-style: none;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.seo-copy-summary::-webkit-details-marker {
  display: none;
}

.seo-copy-summary:hover {
  border-color: #8fb6ff;
  background: #e5f0ff;
}

.seo-copy-summary span {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--color-blue);
  background: transparent;
  font-size: 15px;
  line-height: 1;
  transition: transform .22s ease;
}

.seo-copy-details[open] .seo-copy-summary span {
  transform: rotate(180deg);
}

.seo-copy-body {
  display: grid;
  gap: 18px;
  padding: 24px 0 0;
}

.seo-copy-body p {
  margin: 0;
  color: #2f3d5a;
  font-size: 16px;
  line-height: 1.78;
}

.seo-copy-list {
  display: grid;
  gap: 12px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}

.seo-copy-list li {
  position: relative;
  padding-left: 20px;
  color: #2f3d5a;
  font-size: 15px;
  line-height: 1.68;
}

.seo-copy-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.74em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-blue-light);
}

.articles-hero {
  padding: 16px 0 86px;
  background:
    radial-gradient(circle at 82% 14%, rgba(75, 139, 255, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(240, 245, 252, 0.99) 0%, rgba(240, 245, 252, 0.9) 52%, rgba(232, 238, 248, 0.78) 100%),
    url('../uploads/freepik__background__67999 1-2.webp') right center / cover no-repeat;
}

.articles-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.72fr);
  gap: 38px;
  align-items: end;
}

.articles-title {
  margin: 0;
  max-width: 920px;
  color: var(--color-ink);
  font-size: clamp(42px, 6vw, 86px);
  line-height: 0.94;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.articles-lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--color-muted);
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.66;
}

.articles-hero__panel,
.expert-panel {
  padding: 26px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(180, 210, 245, 0.45);
  box-shadow: 0 20px 60px rgba(11, 20, 34, 0.11);
}

.expert-panel {
  display: grid;
  gap: 18px;
}

.expert-panel__top {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: center;
}

.expert-panel__avatar {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--gradient-blue);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
}

.expert-panel__name {
  margin: 0;
  color: var(--color-ink);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
}

.expert-panel__role {
  display: block;
  margin-top: 4px;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.45;
}

.expert-panel__text {
  margin: 0;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.66;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.article-tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 13px;
  border-radius: var(--radius-pill);
  background: rgba(36, 97, 235, 0.08);
  color: var(--color-blue);
  font-size: 12px;
  font-weight: 800;
}

.article-tag--orange {
  background: rgba(232, 114, 32, 0.1);
  color: var(--color-orange);
}

.articles-section {
  padding: 86px 0;
}

.articles-section--white {
  background: #fff;
}

.info-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px;
  border-radius: 24px;
  color: #fff;
  background: #0b1422;
}

.info-cta__title {
  margin: 0;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.05;
  font-weight: 800;
  text-transform: uppercase;
}

.info-cta__text {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.6;
}

.info-cta .btn--primary {
  min-width: 260px;
  min-height: 56px;
  flex: 0 0 auto;
  text-decoration: none;
}

.info-cta .btn--primary svg {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
}

.articles-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 34px;
}

.articles-head__copy {
  max-width: 780px;
}

.articles-head__title {
  margin: 0;
  color: var(--color-ink);
  font-size: clamp(30px, 4vw, 54px);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.articles-head__lead {
  margin: 14px 0 0;
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.7;
}

.article-filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 24px;
}

.article-filter {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: var(--radius-pill);
  background: #fff;
  border: 1px solid rgba(180, 210, 245, 0.5);
  color: var(--color-text);
  font-size: 13px;
  font-weight: 800;
}

.article-filter.is-active {
  color: #fff;
  border-color: transparent;
  background: var(--gradient-blue);
  box-shadow: var(--shadow-blue);
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.article-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 24px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(180, 210, 245, 0.34);
  box-shadow: 0 8px 40px rgba(11, 20, 34, 0.07);
  color: inherit;
  text-decoration: none;
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.article-card:hover {
  border-color: rgba(36, 97, 235, 0.28);
  transform: translateY(-2px);
  box-shadow: 0 14px 46px rgba(11, 20, 34, 0.1);
}

.article-card--featured {
  grid-column: span 2;
  min-height: 360px;
  padding: 30px;
  color: #fff;
  background:
    radial-gradient(circle at 84% 20%, rgba(75, 139, 255, 0.3), transparent 34%),
    linear-gradient(135deg, #0b1422 0%, #17243a 100%);
  border-color: rgba(255, 255, 255, 0.12);
}

.article-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
}

.article-card__tag,
.article-card__time {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: var(--radius-pill);
  background: rgba(36, 97, 235, 0.08);
  color: var(--color-blue);
  font-size: 11px;
  font-weight: 800;
}

.article-card__time {
  background: rgba(11, 20, 34, 0.05);
  color: var(--color-muted);
}

.article-card--featured .article-card__tag,
.article-card--featured .article-card__time {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.84);
}

.article-card__title {
  margin: 0;
  color: var(--color-ink);
  font-size: 22px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.article-card--featured .article-card__title {
  color: #fff;
  max-width: 640px;
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 0.98;
}

.article-card__text {
  margin: 14px 0 0;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.68;
}

.article-card--featured .article-card__text {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
}

.article-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.article-card__service {
  color: var(--color-text);
  font-size: 12px;
  font-weight: 800;
}

.article-card--featured .article-card__service {
  color: rgba(255, 255, 255, 0.78);
}

.article-card__more {
  margin-top: auto;
  padding-top: 24px;
  color: var(--color-blue);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.article-card--featured .article-card__more {
  color: #fff;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: start;
}

.article-aside {
  display: grid;
  gap: 16px;
  align-self: start;
}

@media (min-width: 1021px) {
  .article-aside {
    position: sticky;
    top: 104px;
    max-height: calc(100vh - 128px);
    overflow: auto;
    padding-right: 4px;
  }

  .article-aside::-webkit-scrollbar {
    width: 4px;
  }

  .article-aside::-webkit-scrollbar-thumb {
    border-radius: var(--radius-pill);
    background: rgba(99, 112, 137, 0.24);
  }
}

.article-toc,
.article-service-box {
  padding: 22px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(180, 210, 245, 0.34);
  box-shadow: 0 8px 40px rgba(11, 20, 34, 0.07);
}

.article-toc__title,
.article-service-box__title {
  margin: 0 0 14px;
  color: var(--color-ink);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.article-toc__list,
.article-service-box__list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-toc__list a,
.article-service-box__list a {
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
}

.article-toc__list a:hover,
.article-service-box__list a:hover {
  color: var(--color-blue);
}

.article-content {
  min-width: 0;
  padding: clamp(28px, 4vw, 48px);
  border-radius: 26px;
  background: #fff;
  border: 1px solid rgba(180, 210, 245, 0.34);
  box-shadow: 0 18px 54px rgba(11, 20, 34, 0.08);
}

.article-content h2 {
  margin: 0 0 18px;
  color: var(--color-ink);
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.04;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.article-content h2:not(:first-child) {
  margin-top: 42px;
}

.article-content h3 {
  margin: 28px 0 10px;
  color: var(--color-ink);
  font-size: 22px;
  line-height: 1.2;
  font-weight: 800;
}

.article-content p {
  margin: 0 0 18px;
  color: #2f3d5a;
  font-size: 17px;
  line-height: 1.78;
}

.article-content ul {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.article-content li {
  position: relative;
  padding-left: 22px;
  color: #2f3d5a;
  font-size: 16px;
  line-height: 1.66;
}

.article-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-blue-light);
}

.article-callout {
  margin: 28px 0;
  padding: 22px 24px;
  border-radius: 20px;
  background: #edf5ff;
  border: 1px solid #bdd5ff;
  color: #2f3d5a;
  font-size: 16px;
  line-height: 1.66;
}

.article-callout strong {
  color: var(--color-ink);
}

.article-table {
  display: grid;
  margin: 28px 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(180, 210, 245, 0.48);
}

.article-table__row {
  display: grid;
  grid-template-columns: minmax(140px, 0.35fr) 1fr;
  gap: 18px;
  padding: 16px 18px;
  background: #fff;
  border-bottom: 1px solid rgba(180, 210, 245, 0.32);
}

.article-table__row:nth-child(odd) {
  background: #f8faff;
}

.article-table__row:last-child {
  border-bottom: 0;
}

.article-table__key {
  color: var(--color-ink);
  font-size: 14px;
  font-weight: 800;
}

.article-table__value {
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.58;
}

.article-checklist {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.article-check {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px;
  border-radius: 18px;
  background: #f8faff;
  border: 1px solid rgba(180, 210, 245, 0.42);
}

.article-check__mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gradient-blue);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.article-check__title {
  display: block;
  margin-bottom: 4px;
  color: var(--color-ink);
  font-size: 15px;
  line-height: 1.25;
  font-weight: 800;
}

.article-check__text {
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.58;
}

.article-note-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0;
}

.article-note {
  padding: 20px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(180, 210, 245, 0.42);
  box-shadow: 0 8px 34px rgba(11, 20, 34, 0.06);
}

.article-note__title {
  display: block;
  margin-bottom: 8px;
  color: var(--color-ink);
  font-size: 16px;
  line-height: 1.25;
  font-weight: 800;
}

.article-note__text {
  margin: 0;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.62;
}

.expert-comment {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  margin: 34px 0;
  padding: 24px;
  border-radius: 22px;
  background: #0b1422;
  color: #fff;
}

.expert-comment__avatar {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--gradient-orange);
  color: #fff;
  font-weight: 800;
}

.expert-comment__name {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}

.expert-comment__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.7;
}

.related-articles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.related-article-link {
  min-height: 100%;
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(180, 210, 245, 0.34);
  color: var(--color-ink);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 800;
}

.related-article-link:hover {
  color: var(--color-blue);
  border-color: rgba(36, 97, 235, 0.3);
}

.home-articles-band {
  padding: 84px 0;
  background: var(--color-page);
}

@media (max-width: 1020px) {
  .articles-hero__grid,
  .article-layout {
    grid-template-columns: 1fr;
  }
  .articles-grid,
  .related-articles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .info-cta {
    align-items: stretch;
    flex-direction: column;
  }
  .info-cta .btn--primary {
    width: 100%;
    min-width: 0;
  }
  .article-card--featured {
    grid-column: auto;
  }
  .article-aside {
    position: static;
  }
}

@media (max-width: 720px) {
  .articles-section,
  .home-articles-band {
    padding: 62px 0;
  }
  .articles-head {
    display: grid;
    gap: 16px;
  }
  .articles-grid,
  .related-articles {
    grid-template-columns: 1fr;
  }
  .article-card,
  .article-card--featured,
  .article-content {
    padding: 22px;
    border-radius: 22px;
  }
  .article-table__row,
  .expert-comment,
  .article-check,
  .article-note-grid {
    grid-template-columns: 1fr;
  }
  .article-content p {
    font-size: 16px;
  }
}

.cookie-banner {
  position: fixed;
  left: max(18px, env(safe-area-inset-left));
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 9998;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 18px 18px 22px;
  border: 1px solid rgba(180, 210, 245, 0.45);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 60px rgba(11, 20, 34, 0.16);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .22s ease, transform .22s ease;
}

.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cookie-banner.is-hiding {
  opacity: 0;
  transform: translateY(18px);
}

.cookie-banner__text {
  display: grid;
  gap: 5px;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.55;
}

.cookie-banner__text strong {
  color: var(--color-ink);
  font-size: 16px;
  line-height: 1.25;
}

.cookie-banner__text a {
  color: var(--color-blue);
  font-weight: 700;
  text-decoration: none;
}

.cookie-banner__text a:hover {
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.cookie-banner__primary,
.cookie-banner__secondary {
  height: 44px;
  border: 0;
  border-radius: var(--radius-pill);
  padding: 0 18px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
}

.cookie-banner__primary {
  color: #fff;
  background: var(--gradient-blue);
  box-shadow: var(--shadow-blue);
}

.cookie-banner__secondary {
  color: var(--color-text);
  background: #eef4ff;
}

.trust-section {
  padding: 96px 0;
  background: var(--color-surface-soft);
}

.trust-layout {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 18px;
  align-items: start;
}

.trust-logo-card {
  min-height: 150px;
  padding: 22px 14px 16px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(11, 20, 34, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.trust-logo-card__img {
  max-width: 110px;
  max-height: 52px;
  object-fit: contain;
}

.trust-logo-card__text {
  margin: 12px 0 0;
  color: var(--color-muted);
  font-size: 12.5px;
  line-height: 1.35;
}

.trust-feature {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  padding: 26px 22px 0;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 24px;
  box-shadow: 0 2px 16px rgba(11, 20, 34, 0.06);
}

.trust-feature__star {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ffb18e, #ec7f2f);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 22px;
}

.trust-feature__title {
  margin: 0 0 14px;
  padding-right: 60px;
  color: var(--color-ink);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
  text-transform: uppercase;
}

.trust-feature__lead {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.trust-feature__arrow {
  width: 22px;
  flex-shrink: 0;
  margin-top: 3px;
}

.trust-feature__text {
  margin: 0;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.56;
}

.trust-feature__media {
  position: relative;
  min-height: 240px;
  margin-top: 16px;
}

.trust-feature__package {
  position: absolute;
  width: 442px;
  height: 429px;
  left: 24px;
  top: -122px;
}

.trust-feature__envelope {
  position: absolute;
  top: 0;
  right: 8px;
  width: 33%;
  opacity: 0.85;
}

.hub-price-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 2px 16px rgba(11, 20, 34, 0.06);
}

.hub-price-card__kicker {
  color: var(--color-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hub-price-card__spec {
  margin-bottom: 4px;
  color: var(--color-text);
  font-size: 14px;
}

.hub-price-card__meta {
  color: var(--color-muted);
  font-size: 13px;
}

.hub-price-card__price {
  color: var(--color-ink);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.hub-price-card__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 40px;
  margin-top: auto;
  background: var(--gradient-blue);
  border-radius: var(--radius-pill);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.hub-price-card__cta svg,
.related-card__more svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

.fit-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--color-surface-soft);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 2px 16px rgba(11, 20, 34, 0.06);
}

.fit-card--dark {
  gap: 18px;
  background: var(--color-ink);
  border: 0;
  box-shadow: none;
}

.fit-card__number {
  color: #fff;
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
}

.fit-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gradient-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fit-card__icon--orange {
  background: var(--gradient-orange);
}

.fit-card__icon svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

.fit-card__title {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.fit-card--dark .fit-card__title {
  color: #fff;
}

.fit-card__text {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.6;
}

.fit-card--dark .fit-card__text {
  color: rgba(255, 255, 255, 0.55);
}

.fit-card__note {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
}

.fit-card__note a {
  color: var(--color-blue-light);
}

.check-list {
  display: grid;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list__item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text);
  font-size: 13px;
}

.check-list__mark {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-blue);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.check-list__mark--orange {
  background: var(--color-orange);
}

.check-list__mark svg {
  width: 8px;
  height: 8px;
  fill: #fff;
}

.prepress-lead {
  margin: 0 0 24px;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.65;
}

.prepress-list {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.prepress-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: #fff;
  border: 1px solid rgba(180, 210, 245, 0.28);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(11, 20, 34, 0.05);
}

.prepress-item__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient-blue);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.prepress-item__icon--orange {
  background: var(--gradient-orange);
}

.prepress-item__icon svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}

.prepress-item__icon svg[data-stroke] {
  fill: none;
  stroke: #fff;
  stroke-width: 2;
}

.prepress-item__title {
  display: block;
  margin-bottom: 4px;
  color: var(--color-ink);
  font-size: 15px;
  font-weight: 700;
}

.prepress-item__text {
  color: var(--color-muted);
  font-size: 14px;
}

.requirements-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--color-ink);
  border-radius: 24px;
  padding: 32px;
}

.requirements-card__title {
  margin: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  text-transform: uppercase;
}

.requirements-list {
  display: grid;
  gap: 12px;
}

.requirements-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
}

.requirements-row:last-child {
  border-bottom: 0;
}

.requirements-row span {
  color: rgba(255, 255, 255, 0.45);
}

.requirements-row strong {
  color: #fff;
}

.requirements-download {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 46px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-pill);
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 600;
}

.requirements-download svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.delivery-card {
  background: var(--color-surface-soft);
  border: 1px solid rgba(180, 210, 245, 0.28);
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 6px 40px rgba(11, 20, 34, 0.06);
}

.delivery-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--gradient-blue);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

.delivery-card__icon--orange {
  background: var(--gradient-orange);
}

.delivery-card__icon svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

.delivery-card__title {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.delivery-card__text {
  margin: 0 0 16px;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.6;
}

.delivery-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  background: #eef2fb;
  color: #4b6da0;
  font-size: 13px;
  font-weight: 700;
}

.delivery-badge--orange {
  background: #fff0e6;
  color: #9c4e10;
}

.card-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.58;
  color: var(--color-muted);
}

.hub-product-card__icon--orange {
  background: var(--gradient-orange);
}

.icon-bullet-list {
  display: grid;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.icon-bullet-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--color-text);
}

.icon-bullet-list__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-blue-light);
  flex-shrink: 0;
}

.text-muted {
  color: var(--color-muted);
}

@media (max-width: 1120px) {
  [data-lg-hide] { display: none !important; }
}

@media (max-width: 1319px) and (min-width: 1121px) {
  .site-nav {
    display: none;
  }
}

@media (max-width: 900px) {
  body { overflow-x: hidden; }
  [data-mob-1] { grid-template-columns: 1fr !important; }
  .calc-result { position: static !important; }
  .services-container {
    padding: 0 12px;
  }
  #services .content-grid {
    gap: 20px;
  }
  .service-card,
  .service-card--catalog {
    display: block;
    min-height: 0;
    border-radius: 22px;
  }
  .service-card__body,
  .service-card__body--overlay {
    width: 100%;
    min-height: 0;
    padding: 26px 24px 28px;
    gap: 16px;
  }
  .service-media,
  .catalog-media {
    display: none;
  }
  .service-list {
    flex: 0 0 auto;
  }
  .service-meta {
    width: 100%;
    padding: 13px 14px 13px 58px;
  }
  .service-meta__row {
    gap: 14px;
  }
  .service-cta {
    width: 100%;
  }
  .seo-copy-section {
    padding: 54px 0;
  }
  .seo-copy-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .seo-copy-card__head {
    position: static;
  }
  .seo-copy-title {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .site-logo { width: 118px !important; }
  [data-header-actions] { margin-left: auto !important; }
  .services-container {
    padding: 0 12px;
  }
  #services .section-title {
    margin-bottom: 36px;
  }
  .service-card {
    border-radius: 22px;
  }
  .service-card__body,
  .service-card__body--overlay {
    padding: 24px;
  }
  .service-title {
    font-size: 22px;
  }
  .service-list {
    grid-template-columns: 1fr 1fr;
    gap: 7px 14px;
  }
  .service-list li {
    font-size: 14px;
    line-height: 1.25;
  }
  .service-meta {
    border-radius: 14px;
  }
  .service-meta__row {
    font-size: 13px;
  }
  .service-cta {
    height: 44px;
    align-self: stretch;
  }
  .seo-copy-section {
    padding: 42px 0;
  }
  .seo-copy-content {
    padding: 24px 18px;
    border-radius: 20px;
  }
  .seo-copy-title {
    font-size: 34px;
  }
  .seo-copy-lead,
  .seo-copy-preview p,
  .seo-copy-body p {
    font-size: 15px;
  }
  .seo-copy-list li {
    font-size: 14px;
  }
  .cookie-banner {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px;
    border-radius: 20px;
  }
  .cookie-banner__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .cookie-banner__primary,
  .cookie-banner__secondary {
    width: 100%;
  }
  .hero-stats--icon > div { padding: 10px 16px !important; }
  .hero-actions { gap: 10px !important; }
  .btn--hero { padding: 0 20px !important; font-size: 14px !important; height: 52px !important; }
  .hero-phone-line__number { font-size: 22px !important; }
  .order-form { grid-template-columns: 1fr !important; }
  .calc-panel { padding: 24px !important; }
  .calc-opt { padding: 8px 12px !important; font-size: 13px !important; }
  .calc-summary { padding: 22px !important; }
  .calc-summary__price { font-size: 36px !important; }
  details[data-faq] > summary {
    padding: 18px 18px !important;
    font-size: 15px !important;
  }
  details[data-faq] > [data-ans] {
    padding: 0 18px 16px !important;
    font-size: 14px !important;
  }
  details[data-faq] > summary [data-arr] {
    width: 36px !important;
    height: 36px !important;
    font-size: 18px !important;
    flex-shrink: 0 !important;
  }
  form[style*="1fr 1fr"] { grid-template-columns: 1fr !important; }
  footer [style*="auto 1fr auto"] { grid-template-columns: 1fr !important; }
  footer a[style*="height:52px"] {
    width: 100% !important;
    justify-content: center !important;
    display: flex !important;
    align-items: center !important;
    text-align: center !important;
  }
  .footer-cta {
    width: 100% !important;
    justify-content: center !important;
    display: flex !important;
    align-items: center !important;
    text-align: center !important;
  }
  footer [style*="justify-content:center;gap:40px"] {
    gap: 16px !important;
    flex-direction: column !important;
    align-items: center !important;
  }
}
