:root {
  --c-bg: #f6f9fb;
  --c-bg-soft: #eef8fb;
  --c-surface: #ffffff;
  --c-surface-subtle: #fbfdff;
  --c-text: #17212b;
  --c-muted: #667085;
  --c-muted-strong: #475467;
  --c-border: #d9e2ec;
  --c-border-strong: #b9c7d6;
  --c-primary: #147d8f;
  --c-primary-hover: #0f6b7b;
  --c-primary-soft: #e4f5f7;
  --c-primary-contrast: #ffffff;
  --c-accent: #2f80ed;
  --c-success: #36b37e;
  --c-success-soft: #e8f7f0;
  --c-warning: #f59e0b;

  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --shadow: 0 20px 44px rgba(23, 33, 43, 0.12);
  --shadow-soft: 0 10px 26px rgba(23, 33, 43, 0.08);
  --shadow-button: 0 10px 22px rgba(20, 125, 143, 0.22);

  --container-max: 1120px;
  --container-pad: 16px;
  --space-2: 8px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background:
    radial-gradient(circle at 12% 8%, rgba(47, 128, 237, 0.12), transparent 300px),
    radial-gradient(circle at 88% 16%, rgba(54, 179, 126, 0.13), transparent 280px),
    linear-gradient(rgba(20, 125, 143, 0.068) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 125, 143, 0.068) 1px, transparent 1px),
    var(--c-bg);
  background-size: auto, auto, 36px 36px, 36px 36px, auto;
  color: var(--c-text);
  line-height: 1.6;
  padding-bottom: 112px;
  min-width: 320px;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: var(--c-primary);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:not(.button):not(.icon-btn):hover {
  color: var(--c-primary-hover);
}

button {
  font: inherit;
  border: none;
  background: none;
  padding: 0;
}

:focus-visible {
  outline: 2px solid var(--c-primary);
  outline-offset: 3px;
}

.page {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.main {
  flex: 1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(246, 249, 251, 0.84));
}

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

.section {
  padding: 54px 0;
}

.section--tight {
  padding: 36px 0;
}

.section--surface {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(238, 248, 251, 0.88));
  border-top: 1px solid rgba(217, 226, 236, 0.7);
  border-bottom: 1px solid rgba(217, 226, 236, 0.7);
}

.section__header {
  max-width: 68ch;
  margin-bottom: 28px;
}

.section__title {
  font-size: clamp(1.45rem, 2.4svw, 1.95rem);
  line-height: 1.18;
  margin: 0 0 10px;
  font-weight: 700;
  letter-spacing: 0;
}

.section__lead {
  margin: 0;
  color: var(--c-muted);
  font-size: 1.02rem;
}

.section__lead+.section__lead {
  margin-top: 8px;
}

.section__body {
  display: grid;
  gap: 16px;
}

.section__actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid--2,
.grid--3 {
  grid-template-columns: 1fr;
}

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

.list__item {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--c-muted);
  min-width: 0;
}

.list__item strong {
  color: var(--c-text);
  font-weight: 600;
}

.list__item a {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
}

.card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.card:hover {
  transform: translateY(-2px);
  border-color: var(--c-border-strong);
  box-shadow: var(--shadow);
}

.card--elevated {
  border-color: rgba(20, 125, 143, 0.24);
  box-shadow: var(--shadow);
}

.card__icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
  border-radius: 14px;
  padding: 10px;
  background: var(--c-primary-soft);
  border: 1px solid rgba(20, 125, 143, 0.16);
}

.card__icon--placeholder {
  border: 1px dashed var(--c-border-strong);
  background: var(--c-surface-subtle);
  font-size: 14px;
}

.card__icon--social {
  border: 1px solid var(--c-border);
  background: var(--c-surface);
  padding: 9px;
}

.card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.card__title {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.25;
  font-weight: 700;
}

.card__text {
  margin: 0;
  color: var(--c-muted);
}

.card__link {
  margin-top: auto;
  color: var(--c-primary);
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease,
    color 180ms ease, border-color 180ms ease;
}

.button--primary {
  background: var(--c-primary);
  color: var(--c-primary-contrast);
  box-shadow: var(--shadow-button);
}

.button--primary:hover {
  background: var(--c-primary-hover);
}

.button--secondary {
  background: var(--c-primary-soft);
  border-color: rgba(20, 125, 143, 0.28);
  color: var(--c-primary-hover);
}

.button--secondary:hover {
  background: #d7eef2;
  border-color: rgba(20, 125, 143, 0.42);
}

.button--ghost {
  background: var(--c-surface);
  border-color: var(--c-border);
  color: var(--c-text);
}

.button--ghost:hover {
  background: var(--c-bg-soft);
  border-color: var(--c-border-strong);
}

.button:hover {
  transform: translateY(-1px);
}

.button:active {
  transform: translateY(0);
}

.button__icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: inline-block;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.badge--accent {
  background: var(--c-success-soft);
  color: #227a58;
}

.badge--outline {
  border: 1px solid var(--c-border);
  background: var(--c-surface);
  color: var(--c-muted-strong);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--c-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.site-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  padding: 7px 16px;
  flex-wrap: nowrap;
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.92rem;
  font-weight: 700;
  flex-shrink: 0;
  text-decoration: none;
  color: var(--c-text);
  min-width: 0;
}

.site-header__brand span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-header__logo {
  width: 26px;
  height: 26px;
  object-fit: contain;
  transition: transform 0.2s ease;
  flex: 0 0 26px;
}

.site-header__brand:hover .site-header__logo {
  transform: scale(1.04);
}

.site-header__nav {
  display: none;
}

.site-header__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.site-header__nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 9px;
  border-radius: 999px;
  font-size: 0.88rem;
  line-height: 1;
  color: var(--c-muted);
  text-decoration: none;
  white-space: nowrap;
  transition: color 180ms ease, background-color 180ms ease;
}

.site-header__nav-link:hover {
  color: var(--c-text);
  background: var(--c-bg-soft);
}

.site-header__nav-link--active {
  color: var(--c-primary-hover);
  font-weight: 700;
  background: var(--c-primary-soft);
}

.site-header__contact {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.78rem;
  color: var(--c-muted);
  min-width: 0;
  flex: 0 1 auto;
  text-align: right;
}

.site-header__phone {
  font-weight: 700;
  color: var(--c-text);
  text-decoration: none;
  white-space: nowrap;
}

.site-header__contact span {
  display: none;
}

.site-header__langs {
  display: flex;
  gap: 4px;
  align-items: center;
  flex: 0 0 auto;
}

.site-header__lang {
  font-size: 0.78rem;
  line-height: 1.1;
  padding: 4px 7px;
  border-radius: 999px;
  border: 1px solid var(--c-border);
  color: var(--c-muted);
  text-decoration: none;
  background: var(--c-surface);
}

.site-header__lang--active {
  border-color: rgba(20, 125, 143, 0.36);
  color: var(--c-primary-hover);
  background: var(--c-primary-soft);
}

.site-nav {
  border-bottom: 1px solid var(--c-border);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.site-nav__panel {
  padding: 8px var(--container-pad) 10px;
}

.site-nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.site-nav__link {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.92rem;
  color: var(--c-muted);
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease;
}

.site-nav__link:hover {
  color: var(--c-text);
  background: var(--c-bg-soft);
}

.site-nav__link--active {
  color: var(--c-primary-hover);
  font-weight: 700;
  background: var(--c-primary-soft);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.96) 0%, rgba(238, 248, 251, 0.9) 58%, rgba(228, 245, 247, 0.82) 100%),
    linear-gradient(rgba(20, 125, 143, 0.078) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 125, 143, 0.078) 1px, transparent 1px);
  background-size: auto, 42px 42px, 42px 42px;
  border-bottom: 1px solid var(--c-border);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 58%, rgba(20, 125, 143, 0.12) 58% 58.5%, transparent 58.5%),
    radial-gradient(circle at 84% 30%, rgba(47, 128, 237, 0.18), transparent 230px);
}

.hero__layout {
  position: relative;
  display: grid;
  gap: 34px;
  align-items: center;
  padding: clamp(36px, 6svw, 70px) var(--container-pad);
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  max-width: 720px;
  text-align: left;
}

.hero__title {
  margin: 0;
  font-size: clamp(1.9rem, 3.4svw, 3rem);
  line-height: 1.09;
  font-weight: 700;
  letter-spacing: 0;
}

.hero__lead {
  margin: 0;
  color: var(--c-muted);
  font-size: clamp(1rem, 1.6svw, 1.16rem);
  max-width: 62ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-start;
}

.hero__chips .badge {
  min-height: 32px;
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(20, 125, 143, 0.2);
  box-shadow: 0 8px 18px rgba(23, 33, 43, 0.06);
}

.hero__note {
  margin: 4px 0 0;
  color: var(--c-muted);
  font-size: 0.95rem;
}

.hero__media {
  position: relative;
  z-index: 0;
  margin: 0;
  padding: 10px;
  border-radius: var(--radius-lg);
  overflow: visible;
  border: 1px solid rgba(20, 125, 143, 0.22);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(228, 245, 247, 0.86));
  box-shadow: var(--shadow);
}

.hero__media::before {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 48%;
  height: 42%;
  border: 1px solid rgba(20, 125, 143, 0.18);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(rgba(20, 125, 143, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 125, 143, 0.12) 1px, transparent 1px);
  background-size: 18px 18px;
  z-index: 0;
}

.hero__media::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--c-primary), var(--c-accent), var(--c-success));
  z-index: 2;
}

.hero__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 8px);
  box-shadow: 0 14px 30px rgba(23, 33, 43, 0.12);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.section--brands .badge-row {
  padding: 18px;
  border: 1px solid rgba(20, 125, 143, 0.14);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(238, 248, 251, 0.78));
  box-shadow: var(--shadow-soft);
}

.section--brands .badge {
  background: rgba(255, 255, 255, 0.78);
}

.search-phrases__groups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.search-phrases__group {
  min-width: 0;
}

.search-phrases__group-title {
  margin: 0 0 10px;
  font-size: 0.98rem;
  line-height: 1.3;
  font-weight: 700;
}

.search-phrases__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.search-phrases__chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  max-width: 100%;
  padding: 6px 12px;
  border: 1px solid var(--c-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--c-muted-strong);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.25;
  overflow-wrap: anywhere;
  text-decoration: none;
}

a.search-phrases__chip:hover {
  border-color: var(--c-border-strong);
  background: var(--c-primary-soft);
  color: var(--c-primary-hover);
}

.service-card,
.benefit-card,
.guide-card {
  position: relative;
  overflow: hidden;
}

.service-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 253, 0.96));
}

.service-card::before,
.benefit-card::before,
.guide-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--c-primary), var(--c-accent), var(--c-success));
  opacity: 0.78;
}

.service-card.card--elevated::before {
  opacity: 1;
}

.benefit-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(232, 247, 240, 0.72));
}

.guide-card {
  border-style: dashed;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(228, 245, 247, 0.7));
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
}

.steps__item {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 12px;
  align-items: flex-start;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(238, 248, 251, 0.78));
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-soft);
}

.steps__item::after {
  content: "";
  position: absolute;
  right: -18px;
  top: 16px;
  width: 92px;
  height: 42px;
  border: 1px solid rgba(20, 125, 143, 0.16);
  border-radius: var(--radius-sm);
  transform: rotate(-12deg);
}

.steps__index {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--c-primary);
  color: var(--c-primary-contrast);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.steps__text {
  margin: 0;
  color: var(--c-muted);
}

.price-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid rgba(20, 125, 143, 0.2);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 253, 255, 0.96));
  box-shadow: var(--shadow);
}

.price-panel {
  position: relative;
  z-index: 0;
}

.price-panel::before {
  content: "";
  position: absolute;
  inset: 14px -10px -10px 14px;
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(20, 125, 143, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 125, 143, 0.12) 1px, transparent 1px);
  background-size: 18px 18px;
  z-index: -1;
}

.price-list__item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 16px;
  align-items: baseline;
  padding: 15px 18px;
  border-bottom: 1px solid var(--c-border);
  transition: background-color 180ms ease;
}

.price-list__item:last-child {
  border-bottom: 0;
}

.price-list__item:hover {
  background: var(--c-bg-soft);
}

.price-list__item strong {
  font-weight: 600;
}

.price-list__item span {
  color: var(--c-primary);
  text-align: right;
  white-space: nowrap;
  font-weight: 700;
}

.price-groups {
  display: grid;
  gap: 22px;
}

.price-group__title {
  margin: 0 0 12px;
  font-size: 1.08rem;
  line-height: 1.3;
}

.price-list+.card,
.price-groups+.card {
  margin-top: 18px;
}

.faq {
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--c-surface);
  box-shadow: var(--shadow-soft);
}

.faq[open] {
  border-color: rgba(20, 125, 143, 0.28);
}

.faq+.faq {
  margin-top: 12px;
}

.faq__summary {
  display: flex;
  gap: 8px;
  align-items: baseline;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq__summary::-webkit-details-marker {
  display: none;
}

.faq__summary::before {
  content: "►";
  flex: 0 0 auto;
}

.faq[open] .faq__summary::before {
  transform: rotate(90deg);
}

.faq__content {
  margin-top: 10px;
  color: var(--c-muted);
}

.messenger-row {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 4px;
  flex-wrap: wrap;
}

.contact-layout {
  display: grid;
  gap: 18px;
}

.contact-nap,
.contact-map,
.contact-trust {
  min-width: 0;
}

.map-embed {
  overflow: hidden;
  margin-top: 14px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  background: var(--c-surface-subtle);
  aspect-ratio: 4 / 3;
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.fact-grid {
  display: grid;
  gap: 12px;
}

.fact {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  background: var(--c-surface-subtle);
}

.fact strong {
  color: var(--c-text);
}

.fact span,
.fact a {
  color: var(--c-muted);
}

.section__meta {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0;
  color: var(--c-muted);
  font-size: 0.95rem;
}

.review-card__source {
  margin-top: auto;
  margin-bottom: 0;
  font-weight: 700;
  color: var(--c-text);
}

.job-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  background: var(--c-surface);
  box-shadow: var(--shadow-soft);
}

.job-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.job-photo figcaption {
  padding: 12px 14px;
  color: var(--c-muted);
  font-size: 0.92rem;
}

.form {
  display: grid;
  gap: 12px;
}

.form__row {
  display: grid;
  gap: 6px;
}

.form__label {
  font-weight: 700;
}

.form__input {
  width: 100%;
  padding: 11px 13px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--c-border);
  font: inherit;
  background: var(--c-surface);
  color: var(--c-text);
  resize: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.form__input::placeholder {
  color: #98a2b3;
}

.form__input:focus-visible {
  outline: none;
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(20, 125, 143, 0.14);
}

.form__phone-group {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.form__contact-methods {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.form__contact-method-input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}

.form__contact-method {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--c-border);
  background: var(--c-surface);
  cursor: pointer;
  user-select: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease,
    border-color 180ms ease;
}

.form__contact-method:hover {
  transform: translateY(-1px);
}

.form__contact-method:active {
  transform: translateY(0);
}

.form__contact-method-input:focus-visible+.form__contact-method {
  outline: none;
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(20, 125, 143, 0.14);
}

.form__contact-method-input:checked+.form__contact-method {
  border-color: var(--c-primary);
  background: var(--c-primary-soft);
  box-shadow: 0 0 0 3px rgba(20, 125, 143, 0.1);
}

.form__contact-methods-note {
  flex-basis: 100%;
  align-self: center;
  color: var(--c-muted);
  font-size: 0.95rem;
  line-height: 1.2;
  margin-bottom: 4px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.form__input--phone {
  letter-spacing: 0;
}

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

.review-card {
  border-left: 0;
}

.review-card--cta {
  align-items: center;
  justify-content: center;
  min-height: 170px;
  text-align: center;
}

.review-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid var(--c-border);
}

.review-card__name {
  margin: 0;
  font-weight: 700;
}

.review-card__stars {
  margin: 0;
  color: var(--c-warning);
  font-weight: 700;
}

.review-card__text {
  margin: 0;
  color: var(--c-muted);
}

.service-standard {
  display: grid;
  gap: 24px;
  align-items: center;
  padding: 20px;
  border: 1px solid rgba(20, 125, 143, 0.18);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(238, 248, 251, 0.78));
  box-shadow: var(--shadow-soft);
}

.service-standard__media {
  position: relative;
  min-height: 300px;
}

.service-standard__media::before {
  content: "";
  position: absolute;
  inset: 20px 22px 0 0;
  border: 1px solid rgba(20, 125, 143, 0.18);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(rgba(20, 125, 143, 0.105) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 125, 143, 0.105) 1px, transparent 1px);
  background-size: 20px 20px;
}

.service-standard__photo {
  position: absolute;
  width: min(78%, 430px);
  height: 76%;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.service-standard__photo--main {
  left: 0;
  top: 0;
}

.service-standard__photo--detail {
  right: 0;
  bottom: 0;
  width: min(58%, 310px);
  height: 52%;
}

.service-standard__content {
  display: grid;
  gap: 14px;
}

.service-standard__eyebrow {
  margin: 0;
  color: var(--c-primary);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.service-standard__intro {
  margin: 0;
  color: var(--c-muted-strong);
}

.service-standard__facts {
  display: grid;
  gap: 10px;
}

.service-standard__fact {
  padding: 14px;
  border: 1px solid rgba(20, 125, 143, 0.16);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.78);
}

.service-standard__fact-label {
  display: block;
  margin-bottom: 4px;
  color: var(--c-primary);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.service-standard__fact p {
  margin: 0;
  color: var(--c-muted);
}

.service-standard__fact strong {
  color: var(--c-text);
}

.cta-section {
  background: var(--c-surface);
  border: 1px solid rgba(20, 125, 143, 0.24);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}

.site-footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(20, 125, 143, 0.18);
  padding: 34px 0 48px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(238, 248, 251, 0.88)),
    linear-gradient(rgba(20, 125, 143, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 125, 143, 0.07) 1px, transparent 1px);
  background-size: auto, 34px 34px, 34px 34px;
}

.footer-hero {
  display: grid;
  gap: 24px;
  padding: 20px;
  border: 1px solid rgba(20, 125, 143, 0.18);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(228, 245, 247, 0.8));
  box-shadow: var(--shadow-soft);
}

.footer-hero__content {
  display: grid;
  gap: 16px;
  align-content: start;
}

.footer-eyebrow {
  margin: 0;
  color: var(--c-primary);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-hero__title {
  margin: 0;
  font-size: clamp(1.45rem, 2.4svw, 2.2rem);
  line-height: 1.12;
  font-weight: 700;
}

.footer-hero__lead {
  max-width: 62ch;
  margin: 0;
  color: var(--c-muted);
  font-size: 1.02rem;
}

.footer-actions,
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.footer-contact-grid {
  display: grid;
  gap: 10px;
}

.footer-contact-item {
  display: grid;
  gap: 3px;
  padding: 13px 14px;
  border: 1px solid rgba(20, 125, 143, 0.14);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.68);
}

.footer-contact-item span {
  color: var(--c-muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-contact-item p,
.footer-contact-item a {
  margin: 0;
  color: var(--c-text);
  font-weight: 600;
  text-decoration: none;
  overflow-wrap: break-word;
  word-break: break-word;
}

.footer-contact-item a:hover {
  color: var(--c-primary);
}

.footer-form-panel {
  padding: 20px;
  border: 1px solid rgba(20, 125, 143, 0.22);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.footer-form-panel__title {
  margin: 0 0 8px;
  font-size: 1.16rem;
  line-height: 1.25;
  font-weight: 700;
}

.footer-form-panel__text {
  margin: 0 0 16px;
  color: var(--c-muted);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
  color: var(--c-muted);
  font-size: 0.95rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom__meta,
.footer-bottom__langs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.footer-bottom__meta {
  gap: 10px 14px;
  color: var(--c-muted);
}

.footer-bottom__meta a {
  color: var(--c-muted-strong);
  font-weight: 600;
}

.footer-bottom__meta a:hover {
  color: var(--c-primary-hover);
}

.footer-bottom__langs {
  gap: 6px;
}

.legal-page {
  max-width: 820px;
}

.legal-page__section {
  padding: 22px 0;
  border-bottom: 1px solid var(--c-border);
}

.legal-page__section:first-child {
  padding-top: 0;
}

.legal-page__section:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.legal-page__title {
  margin: 0 0 10px;
  font-size: 1.12rem;
  line-height: 1.3;
}

.legal-page p {
  margin: 0;
  color: var(--c-muted-strong);
}

.legal-page__list {
  margin: 0;
  padding-left: 20px;
  color: var(--c-muted-strong);
}

.legal-page__list li + li {
  margin-top: 6px;
}

.cookie-notice {
  position: fixed;
  left: var(--container-pad);
  right: var(--container-pad);
  bottom: 76px;
  z-index: 109;
  max-width: 460px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 10px 8px 12px;
  border: 1px solid rgba(217, 226, 236, 0.9);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.92);
  color: var(--c-muted-strong);
  box-shadow: var(--shadow-soft);
  font-size: 0.82rem;
  line-height: 1.35;
  text-align: center;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.cookie-notice--hidden {
  display: none;
}

.cookie-notice:hover {
  border-color: var(--c-border-strong);
  color: var(--c-text);
}

.cookie-notice a {
  color: inherit;
  font-weight: 700;
}

.cookie-notice a:hover {
  color: var(--c-primary-hover);
}

.cookie-notice__close {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--c-primary-soft);
  color: var(--c-primary-hover);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 28px;
  padding-bottom: 2px;
}

.cookie-notice:hover .cookie-notice__close {
  background: var(--c-primary);
  color: var(--c-primary-contrast);
}

.cta-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px var(--container-pad);
  background: rgba(255, 255, 255, 0.94);
  border-top: 1px solid var(--c-border);
  display: flex;
  gap: 8px;
  justify-content: center;
  z-index: 110;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.cta-bar__button {
  width: 48px;
  height: 48px;
  padding: 0;
  flex: 0 0 48px;
}

.cta-dock {
  display: none;
}

.cta-dock__button {
  width: 48px;
  height: 48px;
  padding: 0;
  flex: 0 0 48px;
}

@media (max-width: 719px) {
  .section {
    padding-top: 0;
  }

  .page--subpage .main>.section:first-child {
    padding-top: 24px;
  }

  .page--home .main>.section:not(.hero)>.container>.section__header {
    padding-top: 18px;
  }

  .site-header__brand {
    flex: 1 1 auto;
    max-width: 34%;
  }

  .site-header__contact {
    flex: 0 0 auto;
  }

  .site-header__phone {
    font-size: 0.76rem;
    letter-spacing: 0;
  }

  .site-nav__list {
    padding-top: 2px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__media::before {
    display: none;
  }

  .footer-actions .button {
    width: 100%;
  }

  .price-list__item {
    grid-template-columns: 1fr;
    row-gap: 4px;
  }

  .price-list__item span {
    text-align: left;
    white-space: normal;
  }
}

@media (min-width: 720px) {
  :root {
    --container-pad: 24px;
  }

  .site-header__row {
    gap: 10px;
    padding: 9px var(--container-pad);
    flex-wrap: nowrap;
  }

  .site-header__brand {
    gap: 8px;
  }

  .site-header__logo {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .site-header__nav {
    display: block;
    flex: 1 1 auto;
    min-width: 0;
  }

  .site-header__nav-list {
    justify-content: center;
    gap: 4px;
    min-width: 0;
  }

  .site-header__nav-link {
    font-size: 0.84rem;
    padding: 7px 8px;
  }

  .site-header__contact {
    gap: 3px;
    font-size: 0.84rem;
    text-align: left;
  }

  .site-header__langs {
    gap: 5px;
  }

  .site-header__lang {
    font-size: 0.84rem;
    padding: 5px 9px;
  }

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

  .contact-layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  }

  .contact-trust {
    grid-column: 1 / -1;
  }

  .service-standard {
    grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
    padding: 28px;
  }

  .service-standard__media {
    min-height: 370px;
  }

  .site-nav {
    display: none;
  }

  .footer-hero {
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
    padding: 28px;
  }

  .footer-contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-contact-item--wide {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 920px) {
  body {
    padding-bottom: 0;
  }

  .site-footer {
    padding-bottom: 44px;
  }

  .hero__layout {
    grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
  }

  .hero__media img {
    min-height: 380px;
  }

  .cta-bar {
    display: none;
  }

  .cta-dock {
    position: fixed;
    top: 50%;
    right: 16px;
    z-index: 110;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(217, 226, 236, 0.9);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-soft);
    transform: translateY(-50%);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .cookie-notice {
    left: auto;
    right: 16px;
    bottom: 16px;
    margin: 0;
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .section {
    padding: 70px 0;
  }
}
