:root {
  --bg: #f4f7fb;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --ink: #031732;
  --ink-soft: #415066;
  --line: rgba(3, 23, 50, 0.1);
  --brand: #007eef;
  --brand-strong: #0084fb;
  --gold: #d4af7f;
  --dark: #031732;
  --dark-soft: #0a2549;
  --shadow: 0 24px 60px rgba(3, 23, 50, 0.12);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--ink);
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(0, 126, 239, 0.16), transparent 24%),
    radial-gradient(circle at top right, rgba(212, 175, 127, 0.18), transparent 22%),
    linear-gradient(180deg, #f4f8fc 0%, #ffffff 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

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

.page-shell {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  padding: 20px 0 48px;
}

.topbar {
  position: sticky;
  top: 14px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px 24px 0 0;
  background: linear-gradient(180deg, rgba(8, 18, 49, 0.92) 0%, rgba(12, 28, 71, 0.8) 100%);
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 44px rgba(3, 23, 50, 0.28);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  color: #ffffff;
  font-weight: 800;
  font-size: 18px;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  font-weight: 500;
}

.phone-link {
  white-space: nowrap;
  padding: 13px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(239, 229, 226, 0.96) 100%);
  color: #13284f;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(255, 228, 220, 0.18);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(390px, 1.08fr);
  gap: 42px;
  margin-top: 0;
  min-height: 680px;
  padding: 46px 56px 48px;
  border-radius: 0 0 34px 34px;
  background:
    radial-gradient(circle at 52% 36%, rgba(88, 126, 255, 0.18), transparent 26%),
    radial-gradient(circle at 82% 24%, rgba(255, 214, 177, 0.12), transparent 18%),
    radial-gradient(circle at 24% 82%, rgba(104, 144, 255, 0.12), transparent 22%),
    linear-gradient(135deg, #07173f 0%, #0a1e56 42%, #112c72 100%);
  box-shadow: 0 28px 80px rgba(3, 23, 50, 0.22);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.14) 0 1px, transparent 1px),
    radial-gradient(circle at 56% 66%, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px),
    radial-gradient(circle at 74% 48%, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px);
  background-size: 180px 180px, 220px 220px, 200px 200px;
  opacity: 0.4;
}

.hero__content,
.hero__visual {
  position: relative;
  z-index: 1;
}

.hero__content {
  grid-column: 1;
  grid-row: 1;
}

.hero__visual {
  grid-column: 2;
  grid-row: 1;
}

.hero__tag,
.section-heading__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: #d4af7f;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.audit-box h2,
.footer h2 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.hero h1 {
  max-width: 680px;
  color: #ffffff;
  font-size: clamp(58px, 6.4vw, 92px);
  line-height: 0.94;
}

.hero__subtitle {
  max-width: 620px;
  margin-top: 18px;
  color: #f0c78f;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.hero__lead {
  max-width: 600px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.65;
  font-weight: 600;
}

.hero__mobile-chips {
  display: none;
}

.hero__location-line {
  display: none;
}

.hero__media-proof {
  display: none;
}

.hero__desktop-panel {
  display: none;
}

.hero__actions,
.audit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: inherit;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: linear-gradient(135deg, #1d7cff 0%, #1d96ff 100%);
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(29, 124, 255, 0.32);
}

.hero__main-cta-icon,
.hero__main-cta-arrow {
  display: none;
}

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.btn--secondary {
  border-color: rgba(3, 23, 50, 0.12);
  background: #f3f7fb;
  color: var(--ink);
}

.hero__metrics {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 4px;
}

.metric,
.card,
.benefit,
.step {
  border-radius: var(--radius-md);
}

.metric {
  padding: 20px 20px 18px;
  border: 1px solid rgba(164, 193, 255, 0.22);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(99, 131, 217, 0.12) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 14px 34px rgba(0, 11, 48, 0.18);
  backdrop-filter: blur(16px);
}

.metric strong,
.card h3,
.benefit strong,
.step h3 {
  display: block;
  margin-bottom: 10px;
  font-weight: 800;
  line-height: 1.28;
}

.metric strong {
  color: #ffffff;
  font-size: 22px;
}

.metric span,
.card p,
.benefit p,
.step p,
.section-heading p,
.audit-box p,
.footer p {
  color: var(--ink-soft);
  line-height: 1.7;
  font-weight: 600;
}

.hero__visual {
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.metric span {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}

.hero__expert-card {
  display: flex;
  flex-direction: column;
  width: min(100%, 520px);
  padding: 0 0 18px;
  border: 1px solid rgba(194, 214, 255, 0.24);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(87, 120, 210, 0.08) 100%);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.hero__photo-card {
  overflow: hidden;
  margin: 0 0 18px;
  border-radius: 28px 28px 0 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero__photo-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center 18%;
}

.hero__expert-info {
  padding: 0 24px;
}

.hero__expert-info strong {
  display: block;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 800;
}

.hero__expert-info span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}

.hero__expert-note {
  margin: 18px 18px 0;
  padding: 18px 20px;
  border: 1px solid rgba(163, 194, 255, 0.22);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(31, 111, 231, 0.2) 0%, rgba(255, 255, 255, 0.08) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.hero__expert-note strong {
  display: block;
  color: #f0c78f;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 800;
}

.hero__expert-note span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 500;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.trust-strip__item {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(14px);
  font-size: 15px;
  font-weight: 800;
}

.client-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 28px;
  align-items: center;
  margin-top: 22px;
  padding: 30px;
  border: 1px solid rgba(0, 126, 239, 0.12);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.client-proof__copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.client-proof__copy p {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 600;
}

.client-proof__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 20px;
  padding: 0 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-strong) 100%);
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(0, 126, 239, 0.22);
}

.client-proof__photos {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: repeat(2, 190px);
  gap: 12px;
}

.client-proof__photos figure {
  overflow: hidden;
  margin: 0;
  border-radius: 22px;
  background: var(--surface-strong);
  box-shadow: 0 16px 34px rgba(3, 23, 50, 0.12);
}

.client-proof__photos figure:first-child {
  grid-row: 1 / -1;
}

.client-proof__photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-work {
  position: relative;
  overflow: hidden;
  margin-top: 18px;
  padding: 38px;
  border: 1px solid rgba(180, 205, 255, 0.16);
  border-radius: 30px;
  background:
    radial-gradient(circle at 18% 14%, rgba(0, 126, 239, 0.2), transparent 34%),
    linear-gradient(180deg, #061946 0%, #031235 100%);
  box-shadow: 0 24px 70px rgba(3, 17, 47, 0.28);
}

.client-work::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.12;
}

.client-work > * {
  position: relative;
  z-index: 1;
}

.client-work__intro {
  max-width: 720px;
  margin-bottom: 24px;
}

.client-work__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(239, 194, 126, 0.28);
  border-radius: 999px;
  background: rgba(239, 194, 126, 0.1);
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.client-work__intro h2 {
  margin: 14px 0 0;
  color: #ffffff;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.client-work__intro p {
  max-width: 560px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 600;
}

.client-work__gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.client-work__gallery figure {
  overflow: hidden;
  min-height: 132px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  cursor: zoom-in;
  box-shadow: 0 16px 34px rgba(0, 8, 32, 0.18);
}

.client-work__gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.28s ease, filter 0.28s ease;
}

.client-work__gallery figure:hover img {
  filter: saturate(1.08);
  transform: scale(1.045);
}

.client-work__hero-photo {
  grid-column: span 3;
  grid-row: span 3;
  min-height: 428px !important;
  border-radius: 26px !important;
}

.client-work__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  min-height: 44px;
  margin-top: 20px;
  padding: 0 18px;
  border: 1px solid rgba(180, 205, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(1, 9, 28, 0.92);
  backdrop-filter: blur(14px);
}

.photo-lightbox.is-open {
  display: flex;
}

.photo-lightbox__image {
  max-width: min(100%, 1180px);
  max-height: 88svh;
  border-radius: 18px;
  object-fit: contain;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.5);
  touch-action: pan-y;
  user-select: none;
}

.photo-lightbox.is-hinting .photo-lightbox__image {
  animation: lightbox-photo-nudge 1.3s ease-in-out 0.22s 2;
}

.photo-lightbox__close {
  position: fixed;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.photo-lightbox__caption {
  position: fixed;
  right: 24px;
  bottom: 18px;
  left: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.objects-map-section {
  position: relative;
  overflow: hidden;
  margin-top: 18px;
  padding: 42px;
  border: 1px solid rgba(180, 205, 255, 0.16);
  border-radius: 34px;
  background:
    radial-gradient(circle at 82% 12%, rgba(240, 199, 143, 0.15), transparent 28%),
    radial-gradient(circle at 16% 22%, rgba(29, 150, 255, 0.2), transparent 32%),
    linear-gradient(145deg, #071b4a 0%, #061842 46%, #031235 100%);
  box-shadow: 0 28px 80px rgba(3, 17, 47, 0.3);
}

.objects-map-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.12;
}

.objects-map-section > * {
  position: relative;
  z-index: 1;
}

.objects-map__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.56fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 26px;
}

.objects-map__intro {
  max-width: 780px;
}

.objects-map__intro h2 {
  margin: 14px 0 0;
  color: #ffffff;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.objects-map__intro p {
  max-width: 620px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 600;
}

.objects-map__summary {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 10px;
}

.objects-map__summary-card {
  position: relative;
  overflow: hidden;
  min-height: 104px;
  padding: 18px;
  border: 1px solid rgba(180, 205, 255, 0.18);
  border-radius: 22px;
  background:
    radial-gradient(circle at 86% 18%, rgba(29, 150, 255, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.055));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.13),
    0 18px 44px rgba(3, 17, 47, 0.18);
}

.objects-map__summary-card::after {
  content: "";
  position: absolute;
  right: -22px;
  bottom: -34px;
  width: 105px;
  height: 105px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.055);
}

.objects-map__summary-card i {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(240, 199, 143, 0.34);
  border-radius: 14px;
  background:
    rgba(240, 199, 143, 0.1)
    var(--objects-map-icon)
    center / 24px 24px
    no-repeat;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.objects-map__summary-card--total {
  --objects-map-icon: url("./images/ui-icon-building-clean.png");
}

.objects-map__summary-card--sale {
  --objects-map-icon: url("./images/ui-icon-sale-tag.svg");
}

.objects-map__summary-card--rent {
  --objects-map-icon: url("./images/ui-icon-rent-calendar.svg");
}

.objects-map__summary strong {
  position: relative;
  z-index: 1;
  display: block;
  color: #ffffff;
  font-size: 36px;
  line-height: 0.92;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.objects-map__summary span {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  line-height: 1.25;
  font-weight: 800;
}

.objects-map {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 330px);
  gap: 18px;
  min-height: 580px;
}

.objects-map__map-wrap {
  position: relative;
  overflow: hidden;
  min-height: 580px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 22px 58px rgba(1, 10, 31, 0.22);
}

.objects-map__map-toolbar {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 9px 12px;
  border: 1px solid rgba(7, 23, 63, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #102756;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(3, 23, 50, 0.16);
  backdrop-filter: blur(14px);
}

.objects-map__map-toolbar b {
  padding: 6px 10px;
  border-radius: 999px;
  background: #1d96ff;
  color: #ffffff;
  font-size: 11px;
}

.objects-map__map {
  overflow: hidden;
  width: 100%;
  height: 100%;
  min-height: 580px;
  background: rgba(255, 255, 255, 0.08);
}

.objects-map__panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.objects-map__legend,
.objects-map__selected,
.objects-map__hint {
  border: 1px solid rgba(180, 205, 255, 0.18);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.055));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.13),
    0 18px 44px rgba(3, 17, 47, 0.18);
}

.objects-map__selected span,
.objects-map__selected p,
.objects-map__legend,
.objects-map__hint {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.objects-map__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px;
  font-size: 14px;
}

.objects-map__legend span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.objects-map__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #ffffff;
}

.objects-map__dot--sale {
  background: #1687ff;
}

.objects-map__dot--rent {
  background: #9c44ff;
}

.objects-map__selected {
  position: relative;
  overflow: hidden;
  flex: 1;
  min-height: 318px;
  padding: 24px;
}

.objects-map__selected::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 23, 63, 0.98) 0%, rgba(7, 23, 63, 0.9) 48%, rgba(7, 23, 63, 0.46) 100%),
    linear-gradient(180deg, rgba(7, 23, 63, 0.2), rgba(7, 23, 63, 0.84)),
    url("./images/tild6165-3237-4736-a466-633232343633__photo_54092788489583.jpg") right center / cover no-repeat;
  opacity: 0.92;
}

.objects-map__selected::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 14%, rgba(240, 199, 143, 0.22), transparent 28%),
    radial-gradient(circle at 18% 82%, rgba(29, 150, 255, 0.18), transparent 32%);
}

.objects-map__selected > * {
  position: relative;
  z-index: 1;
}

.objects-map__selected-kicker,
.objects-map__selected span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 11px;
  border: 1px solid rgba(240, 199, 143, 0.34);
  border-radius: 999px;
  background: rgba(240, 199, 143, 0.09);
  color: #f0c78f;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.objects-map__selected strong {
  display: block;
  margin-top: 16px;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.objects-map__selected p {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.5;
}

.objects-map__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 50px;
  margin-top: 20px;
  padding: 0 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, #1687ff 0%, #1d96ff 100%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(29, 124, 255, 0.28);
}

.objects-map__button::after {
  content: "↗";
  font-size: 18px;
  line-height: 1;
}

.objects-map__hint {
  padding: 20px;
}

.objects-map__hint span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  font-weight: 900;
}

.objects-map__hint p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
}

.objects-map-marker {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 62px;
  height: 32px;
  padding: 0 10px;
  border: 2px solid #ffffff;
  border-radius: 999px;
  background: #1687ff;
  color: #ffffff;
  font: 900 13px/1 "Montserrat", Arial, sans-serif;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(3, 23, 50, 0.28);
  transform: translate(-50%, -100%);
}

.objects-map-marker::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-top: 8px solid #1687ff;
}

.objects-map-marker--rent {
  background: #9c44ff;
}

.objects-map-marker--rent::after {
  border-top-color: #9c44ff;
}

.objects-map-balloon {
  max-width: 280px;
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.35;
}

.objects-map-balloon h3 {
  margin: 0 0 8px;
  color: #031732;
  font-size: 16px;
  line-height: 1.2;
}

.objects-map-balloon p {
  margin: 6px 0;
  color: #415066;
  font-size: 13px;
  font-weight: 600;
}

.objects-map-balloon a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  margin-top: 10px;
  padding: 0 14px;
  border-radius: 999px;
  background: #1687ff;
  color: #ffffff;
  font-weight: 900;
  text-decoration: none;
}

.video-showcase {
  position: relative;
  overflow: hidden;
  margin-top: 18px;
  padding: 42px;
  border: 1px solid rgba(180, 205, 255, 0.16);
  border-radius: 34px;
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 54, 54, 0.16), transparent 24%),
    radial-gradient(circle at 84% 14%, rgba(240, 199, 143, 0.13), transparent 28%),
    linear-gradient(145deg, #11102c 0%, #071842 42%, #031235 100%);
  box-shadow: 0 28px 80px rgba(3, 17, 47, 0.3);
}

.video-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.1;
}

.video-showcase > * {
  position: relative;
  z-index: 1;
}

.video-showcase__head {
  display: block;
  margin-bottom: 26px;
}

.video-showcase__intro {
  max-width: 820px;
}

.video-showcase__intro h2 {
  margin: 14px 0 0;
  color: #ffffff;
  font-size: clamp(38px, 4.8vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.video-showcase__intro p {
  max-width: 620px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 600;
}

.video-showcase__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}

.video-showcase__spotlight {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 330px);
  gap: 18px;
}

.video-showcase__main,
.video-card {
  position: relative;
  overflow: hidden;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(0, 8, 32, 0.22);
}

.video-showcase__main {
  aspect-ratio: 16 / 9;
  border-radius: 26px;
}

.video-showcase__main::after,
.video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(2, 10, 30, 0.28) 45%, rgba(2, 10, 30, 0.88) 100%);
  pointer-events: none;
}

.video-showcase__main img,
.video-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.video-showcase__main:hover img,
.video-card:hover img {
  filter: saturate(1.08);
  transform: scale(1.045);
}

.video-showcase__play {
  position: absolute;
  top: 28px;
  right: 28px;
  z-index: 2;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: #ff2f2f;
  box-shadow: 0 20px 46px rgba(255, 47, 47, 0.34);
}

.video-showcase__play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 22px solid #ffffff;
}

.video-showcase__main-copy {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  z-index: 2;
}

.video-showcase__main-copy span,
.video-card__tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 47, 47, 0.16);
  color: #ffc1c1;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.video-showcase__main-copy strong {
  display: block;
  max-width: 560px;
  margin-top: 14px;
  color: #ffffff;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.video-showcase__main-copy small {
  display: block;
  max-width: 520px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 700;
}

.video-showcase__rail {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.video-showcase__rail-card,
.video-showcase__rail-button {
  border: 1px solid rgba(180, 205, 255, 0.18);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.055));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.13),
    0 18px 44px rgba(3, 17, 47, 0.18);
}

.video-showcase__rail-card {
  padding: 22px;
}

.video-showcase__rail-card span {
  display: inline-flex;
  width: fit-content;
  padding: 8px 11px;
  border: 1px solid rgba(240, 199, 143, 0.34);
  border-radius: 999px;
  background: rgba(240, 199, 143, 0.09);
  color: #f0c78f;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.video-showcase__rail-card strong {
  display: block;
  margin-top: 14px;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.video-showcase__rail-card p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.48;
  font-weight: 700;
}

.video-showcase__rail-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 18px;
  background: linear-gradient(135deg, #1687ff 0%, #1d96ff 100%);
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(29, 124, 255, 0.3);
}

.video-showcase__rail-button::before {
  content: "";
  width: 16px;
  height: 16px;
  clip-path: polygon(20% 10%, 20% 90%, 88% 50%);
  background: currentColor;
}

.video-showcase__cards {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.video-card {
  aspect-ratio: 16 / 9;
  border-radius: 20px;
}

.video-card__tag,
.video-card strong {
  position: relative;
  z-index: 2;
}

.video-card__tag {
  margin: 18px 18px 0;
}

.video-card strong {
  display: block;
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  margin: 0;
  font-size: 18px;
  line-height: 1.18;
  letter-spacing: -0.02em;
  font-weight: 900;
}

.video-showcase__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
}

.video-showcase__actions .btn--primary::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-right: 10px;
  clip-path: polygon(20% 10%, 20% 90%, 88% 50%);
  background: currentColor;
}

.video-showcase__channel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
}

.telegram-section {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(360px, 0.58fr) minmax(620px, 1fr);
  gap: 34px;
  align-items: center;
  margin-top: 18px;
  padding: 48px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 24% 20%, rgba(35, 158, 217, 0.28), transparent 34%),
    radial-gradient(circle at 76% 30%, rgba(212, 175, 127, 0.16), transparent 24%),
    radial-gradient(circle at 58% 92%, rgba(27, 122, 255, 0.2), transparent 36%),
    linear-gradient(135deg, #06163a 0%, #0a2458 56%, #0b3470 100%);
  box-shadow: 0 28px 80px rgba(3, 23, 50, 0.18);
}

.telegram-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 28%, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px),
    radial-gradient(circle at 64% 72%, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px);
  background-size: 180px 180px, 220px 220px;
  opacity: 0.42;
}

.telegram-section::after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 58%;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(6, 22, 58, 0.96) 0%, rgba(6, 22, 58, 0.55) 46%, rgba(6, 22, 58, 0.2) 100%),
    linear-gradient(180deg, rgba(6, 22, 58, 0.26), rgba(6, 22, 58, 0.72)),
    url("./images/telegram/post-303.jpg") center / cover no-repeat;
  opacity: 0.34;
  filter: saturate(1.05) contrast(1.06);
}

.telegram-section > * {
  position: relative;
  z-index: 2;
}

.telegram-section__intro {
  align-self: center;
}

.telegram-section__intro h2 {
  max-width: 560px;
  margin: 14px 0 0;
  color: #ffffff;
  font-size: clamp(38px, 4.4vw, 62px);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 900;
}

.telegram-section__intro p {
  max-width: 520px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.52;
  font-weight: 600;
}

.telegram-section__button {
  width: min(100%, 360px);
  min-height: 62px;
  background: linear-gradient(135deg, #229ed9 0%, #1d96ff 100%);
  box-shadow: 0 18px 38px rgba(34, 158, 217, 0.34);
}

.telegram-section__button::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-right: 10px;
  clip-path: polygon(0 46%, 100% 0, 78% 100%, 48% 64%, 28% 82%);
  background: #ffffff;
}

.telegram-section__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
}

.telegram-section__chips span {
  min-height: 34px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 900;
}

.telegram-dashboard {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06)),
    rgba(13, 36, 78, 0.7);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 28px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.telegram-dashboard__sidebar,
.telegram-dashboard__feed {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(5, 18, 48, 0.58);
}

.telegram-dashboard__sidebar {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 14px;
  border-radius: 24px;
}

.telegram-dashboard__profile {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.09);
}

.telegram-feed__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 17px;
  background: linear-gradient(135deg, #229ed9 0%, #1d7cff 100%);
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
}

.telegram-dashboard__profile strong {
  display: block;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.08;
}

.telegram-dashboard__profile span {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 700;
}

.telegram-dashboard__topics {
  display: grid;
  gap: 9px;
  margin-top: auto;
}

.telegram-dashboard__topics span {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 66px;
  padding: 8px 12px 8px 8px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 900;
}

.telegram-dashboard__topics b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.18));
}

.telegram-dashboard__topics img {
  display: block;
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.telegram-dashboard__feed {
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 24px;
}

.telegram-dashboard__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.telegram-dashboard__bar span {
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
}

.telegram-dashboard__bar small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 800;
}

.telegram-message {
  overflow: hidden;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 116px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(12, 30, 70, 0.78);
  color: #ffffff;
}

.telegram-message--featured {
  grid-template-columns: 168px minmax(0, 1fr);
  min-height: 154px;
  background:
    radial-gradient(circle at 88% 20%, rgba(34, 158, 217, 0.2), transparent 36%),
    rgba(12, 30, 70, 0.86);
}

.telegram-message img {
  width: 112px;
  height: 92px;
  border-radius: 16px;
  object-fit: cover;
}

.telegram-message--featured img {
  width: 168px;
  height: 130px;
  border-radius: 18px;
}

.telegram-message__tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(34, 158, 217, 0.18);
  color: #8ed8ff;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.telegram-message strong {
  display: block;
  padding: 0;
  margin-top: 8px;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.14;
}

.telegram-message--featured strong {
  font-size: 24px;
  line-height: 1.05;
}

.telegram-message p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.34;
  font-weight: 600;
}

.telegram-message small {
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
  font-weight: 800;
}

.telegram-dashboard__footer {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 2px;
}

@media (max-width: 1180px) {
  .telegram-section {
    grid-template-columns: 1fr;
  }

  .telegram-section__intro h2,
  .telegram-section__intro p {
    max-width: 720px;
  }

  .telegram-dashboard {
    grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  }
}

.photo-lightbox__swipe-hint {
  position: fixed;
  left: 50%;
  bottom: 64px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(8, 18, 43, 0.72);
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
}

.photo-lightbox__swipe-hint span {
  color: #f0c78f;
  font-size: 20px;
  line-height: 1;
}

.photo-lightbox.is-hinting .photo-lightbox__swipe-hint {
  animation: lightbox-swipe-hint 2.45s ease forwards;
}

@keyframes lightbox-photo-nudge {
  0%,
  100% {
    transform: translateX(0);
  }

  28% {
    transform: translateX(-18px) rotate(-0.4deg);
  }

  56% {
    transform: translateX(18px) rotate(0.4deg);
  }
}

@keyframes lightbox-swipe-hint {
  0% {
    opacity: 0;
    transform: translate(-50%, 12px);
  }

  16%,
  78% {
    opacity: 1;
    transform: translate(-50%, 0);
  }

  38% {
    transform: translate(calc(-50% - 16px), 0);
  }

  58% {
    transform: translate(calc(-50% + 16px), 0);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, 8px);
  }
}

.owner-fit-section {
  padding-top: 72px;
}

.owner-fit {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
  gap: 28px;
  align-items: stretch;
  padding: 36px;
  border: 1px solid rgba(0, 126, 239, 0.12);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 10% 12%, rgba(0, 126, 239, 0.1), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(245, 249, 255, 0.96) 100%);
  box-shadow: var(--shadow);
}

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

.owner-fit-card,
.package-point,
.faq-list details {
  border: 1px solid rgba(3, 23, 50, 0.1);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 40px rgba(3, 23, 50, 0.08);
}

.owner-fit-card {
  display: flex;
  flex-direction: column;
  min-height: 270px;
  padding: 24px;
  border-radius: 24px;
}

.owner-fit-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  border-radius: 15px;
  background: linear-gradient(135deg, #1d7cff 0%, #1d96ff 100%);
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
}

.owner-fit-card strong,
.package-point strong,
.control-list strong,
.faq-list summary {
  color: var(--ink);
  font-weight: 800;
  line-height: 1.28;
}

.owner-fit-card strong {
  font-size: 20px;
}

.owner-fit-card p,
.package-card p,
.package-point p,
.control-list span,
.faq-list p {
  color: var(--ink-soft);
  line-height: 1.65;
  font-weight: 600;
}

.owner-fit-card p {
  margin: 14px 0 0;
  font-size: 15px;
}

.section {
  padding: 84px 0 0;
}

.section-heading {
  max-width: 760px;
}

.section-heading h2,
.audit-box h2,
.footer h2 {
  font-size: clamp(32px, 4vw, 52px);
}

.section-heading p {
  margin-top: 18px;
  font-size: 18px;
}

.service-grid,
.benefit-grid,
.steps {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}

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

.service-section {
  position: relative;
  overflow: hidden;
  width: min(calc(100vw - 48px), 1380px);
  max-width: none;
  margin-top: 88px;
  margin-left: 50%;
  transform: translateX(-50%);
  padding: 94px 54px 96px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 214, 163, 0.12), transparent 18%),
    radial-gradient(circle at 84% 10%, rgba(255, 226, 188, 0.28), transparent 24%),
    radial-gradient(circle at 57% 27%, rgba(158, 197, 255, 0.16), transparent 18%),
    radial-gradient(circle at 74% 58%, rgba(255, 232, 194, 0.12), transparent 22%),
    linear-gradient(180deg, #07132b 0%, #0b1b3f 36%, #0b1f4e 68%, #08152c 100%);
  box-shadow: 0 30px 70px rgba(3, 23, 50, 0.38);
}

.service-section::before,
.service-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.service-section::before {
  background-image:
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.95) 0 1px, transparent 1.5px),
    radial-gradient(circle at 28% 42%, rgba(255, 255, 255, 0.78) 0 1.2px, transparent 1.8px),
    radial-gradient(circle at 43% 24%, rgba(255, 255, 255, 0.9) 0 1px, transparent 1.6px),
    radial-gradient(circle at 66% 17%, rgba(255, 255, 255, 0.75) 0 1px, transparent 1.7px),
    radial-gradient(circle at 82% 34%, rgba(255, 255, 255, 0.82) 0 1.2px, transparent 1.8px),
    radial-gradient(circle at 20% 82%, rgba(255, 255, 255, 0.7) 0 1px, transparent 1.5px),
    radial-gradient(circle at 56% 76%, rgba(255, 255, 255, 0.78) 0 1.3px, transparent 1.9px),
    radial-gradient(circle at 91% 80%, rgba(255, 255, 255, 0.9) 0 1px, transparent 1.6px),
    radial-gradient(circle at 71% 22%, rgba(255, 244, 220, 0.55) 0 2px, transparent 3px),
    radial-gradient(circle at 10% 48%, rgba(178, 218, 255, 0.4) 0 2px, transparent 3px);
  opacity: 0.9;
}

.service-section::after {
  background:
    radial-gradient(circle at 22% 38%, rgba(88, 159, 255, 0.35), transparent 26%),
    radial-gradient(circle at 78% 72%, rgba(255, 194, 136, 0.16), transparent 28%);
  mix-blend-mode: screen;
}

.service-section > * {
  position: relative;
  z-index: 1;
}

.service-intro {
  max-width: 1120px;
}

.service-intro .section-heading__tag {
  color: #d9b27d;
}

.service-intro h2,
.service-intro p {
  color: #ffffff;
}

.service-intro p {
  max-width: 1240px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.45;
  font-weight: 500;
}

.service-intro p span {
  display: block;
  white-space: nowrap;
}

.service-intro p span:first-child {
  display: block;
}

.service-intro p span:last-child {
  display: block;
  white-space: nowrap;
}

.service-intro h2 {
  max-width: 1120px;
  font-size: clamp(34px, 4.25vw, 72px);
  line-height: 1.04;
}

.service-intro {
  width: 100%;
}

.service-intro h2 span {
  display: block;
  white-space: nowrap;
}

.service-grid--showcase {
  gap: 38px 34px;
  margin-top: 56px;
  grid-template-columns: repeat(3, minmax(380px, 1fr));
}

.service-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  min-height: 224px;
  padding: 24px 28px 26px;
  border-radius: 28px;
  border: 1px solid rgba(207, 225, 255, 0.26);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08)),
    rgba(37, 54, 94, 0.48);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 24px 44px rgba(3, 13, 31, 0.34);
  backdrop-filter: blur(18px);
}

.service-card::before {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  top: -2px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(92, 176, 255, 0), rgba(207, 235, 255, 0.95), rgba(92, 176, 255, 0));
  box-shadow: 0 0 26px rgba(166, 219, 255, 0.9);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 16px auto;
  width: 148px;
  height: 82px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 200, 141, 0.18), transparent 72%);
  pointer-events: none;
}

.service-card__body {
  align-self: stretch;
  max-width: 100%;
}

.service-card__top {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
}

.service-card__icon-image {
  display: block;
  width: 108px;
  height: 108px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 12px 18px rgba(3, 23, 50, 0.28));
}

.service-card h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(20px, 1.4vw, 24px);
  line-height: 1.14;
  letter-spacing: -0.03em;
  font-weight: 700;
  max-width: 100%;
}

.service-card h3 span {
  display: block;
  white-space: nowrap;
}

.service-card__body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 500;
  max-width: 340px;
}

.card {
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.card h3,
.benefit strong,
.step h3 {
  font-size: 22px;
}

.card p,
.benefit p,
.step p,
.metric span {
  font-size: 16px;
}

.section--dark {
  margin-top: 84px;
  padding: 56px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top left, rgba(212, 175, 127, 0.2), transparent 24%),
    linear-gradient(135deg, #031732 0%, #0b2a52 100%);
}

.section-heading--light h2,
.section-heading--light p,
.section--dark .benefit strong,
.section--dark .benefit p {
  color: #ffffff;
}

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

.package-section {
  padding-top: 84px;
}

.package-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 22px;
  align-items: stretch;
}

.package-card,
.package-point {
  border-radius: 28px;
}

.package-card--main {
  padding: 42px;
  background:
    radial-gradient(circle at 84% 16%, rgba(255, 226, 188, 0.24), transparent 28%),
    linear-gradient(135deg, #07173f 0%, #0b2a52 100%);
  box-shadow: 0 28px 64px rgba(3, 23, 50, 0.28);
}

.package-card h2 {
  margin: 0;
  max-width: 720px;
  color: #ffffff;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.package-card p {
  max-width: 680px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.package-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.package-card .btn--secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.package-points {
  display: grid;
  gap: 16px;
}

.package-point {
  padding: 26px;
}

.package-point strong {
  display: block;
  font-size: 22px;
}

.package-point p {
  margin: 10px 0 0;
  font-size: 16px;
}

.ratings-section {
  overflow: hidden;
  margin-top: 0;
  padding: 72px 38px 42px;
  background:
    radial-gradient(circle at 18% 18%, rgba(0, 126, 239, 0.18), transparent 35%),
    radial-gradient(circle at 82% 12%, rgba(212, 175, 127, 0.12), transparent 32%),
    linear-gradient(135deg, #07173f 0%, #0a1e56 48%, #102c6f 100%);
  border-radius: 36px;
}

.youtube-section {
  position: relative;
  overflow: hidden;
  margin-top: 88px;
  padding: 78px 42px 84px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 18% 18%, rgba(90, 132, 255, 0.18), transparent 24%),
    radial-gradient(circle at 84% 16%, rgba(255, 116, 88, 0.18), transparent 22%),
    radial-gradient(circle at 70% 74%, rgba(255, 212, 168, 0.12), transparent 18%),
    linear-gradient(180deg, #110f28 0%, #1a1738 34%, #1b214e 66%, #101e44 100%);
  box-shadow: 0 30px 70px rgba(8, 15, 40, 0.34);
}

.youtube-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.95) 0 1px, transparent 1.5px),
    radial-gradient(circle at 24% 40%, rgba(255, 255, 255, 0.68) 0 1px, transparent 1.8px),
    radial-gradient(circle at 48% 24%, rgba(255, 255, 255, 0.85) 0 1px, transparent 1.6px),
    radial-gradient(circle at 64% 54%, rgba(255, 255, 255, 0.7) 0 1.2px, transparent 1.9px),
    radial-gradient(circle at 86% 20%, rgba(255, 255, 255, 0.86) 0 1.2px, transparent 1.8px),
    radial-gradient(circle at 76% 80%, rgba(255, 255, 255, 0.72) 0 1px, transparent 1.6px);
  opacity: 0.75;
  pointer-events: none;
}

.youtube-section > * {
  position: relative;
  z-index: 1;
}

.youtube-intro {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.youtube-intro__copy {
  max-width: 920px;
}

.youtube-intro h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(34px, 4.3vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.youtube-intro p {
  margin: 16px 0 0;
  color: rgba(193, 206, 255, 0.92);
  font-size: 22px;
  line-height: 1.45;
  font-weight: 500;
}

.youtube-badge {
  flex: none;
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  border-radius: 28px;
  background: radial-gradient(circle at 30% 30%, #ff7f73 0%, #ff3927 70%);
  box-shadow: 0 0 26px rgba(255, 79, 54, 0.55);
  transform: rotate(8deg);
}

.youtube-badge__play,
.youtube-feature__play {
  position: relative;
  display: block;
  width: 0;
  height: 0;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 24px solid #ffffff;
  margin-left: 8px;
}

.youtube-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(320px, 0.95fr);
  gap: 22px;
  align-items: stretch;
}

.youtube-feature,
.youtube-side {
  border: 1px solid rgba(196, 217, 255, 0.22);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  backdrop-filter: blur(18px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 18px 40px rgba(8, 15, 40, 0.24);
}

.youtube-feature {
  padding: 22px;
}

.youtube-feature__frame {
  padding: 18px;
  border: 1px solid rgba(196, 217, 255, 0.18);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(22, 24, 51, 0.38), rgba(16, 23, 51, 0.46));
}

.youtube-feature__media {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 24px;
  min-height: 360px;
  background: linear-gradient(135deg, rgba(255, 117, 66, 0.26), rgba(50, 85, 180, 0.24));
}

.youtube-feature__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 14, 32, 0.1), rgba(8, 14, 32, 0.38));
}

.youtube-feature__media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.youtube-feature__tag {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 135, 67, 0.96), rgba(255, 194, 82, 0.94));
  color: #24140f;
  font-size: 16px;
  font-weight: 800;
}

.youtube-feature__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 118px;
  height: 82px;
  margin: -41px 0 0 -59px;
  border-radius: 28px;
  background: linear-gradient(180deg, #ff4230 0%, #ff1f0f 100%);
  box-shadow: 0 0 28px rgba(255, 61, 38, 0.45);
}

.youtube-feature__play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  margin: -15px 0 0 -8px;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 24px solid #ffffff;
}

.youtube-feature__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
}

.youtube-feature__meta-copy strong,
.youtube-side__intro strong,
.youtube-mini-card__copy strong {
  display: block;
  color: #ffffff;
  font-weight: 800;
}

.youtube-feature__meta-copy strong {
  font-size: 24px;
}

.youtube-feature__meta-copy span {
  display: block;
  margin-top: 8px;
  color: rgba(226, 232, 255, 0.86);
  font-size: 18px;
  line-height: 1.45;
}

.youtube-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 166px;
  padding: 14px 22px;
  border: 1px solid rgba(171, 203, 255, 0.28);
  border-radius: 999px;
  background: rgba(27, 42, 94, 0.68);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.youtube-feature__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 22px;
  padding: 0 12px 8px;
}

.youtube-feature__footer p {
  margin: 0;
  max-width: 420px;
  color: rgba(226, 232, 255, 0.9);
  font-size: 20px;
  line-height: 1.45;
}

.youtube-feature__footer strong {
  color: #ffffff;
}

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

.btn--ghost-light {
  border-color: rgba(187, 207, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.youtube-side {
  padding: 22px;
}

.youtube-side__intro {
  padding: 8px 4px 14px;
}

.youtube-side__intro strong {
  font-size: 24px;
}

.youtube-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(226, 232, 255, 0.9);
  font-size: 18px;
  line-height: 1.55;
}

.youtube-list li + li {
  margin-top: 10px;
}

.youtube-list li::before {
  content: "— ";
}

.youtube-mini-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 164px;
  gap: 16px;
  align-items: stretch;
  margin-top: 16px;
  padding: 16px;
  border: 1px solid rgba(196, 217, 255, 0.18);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 117, 66, 0.12), rgba(51, 70, 130, 0.18));
}

.youtube-mini-card__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.youtube-mini-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: #f2c67f;
  font-size: 16px;
  font-weight: 800;
}

.youtube-mini-card__copy strong {
  font-size: 18px;
  line-height: 1.25;
}

.youtube-mini-card img {
  width: 100%;
  height: 100%;
  min-height: 128px;
  border-radius: 18px;
  object-fit: cover;
}

.youtube-mini-card .youtube-chip {
  min-width: 0;
  margin-top: 14px;
  padding: 10px 18px;
}

.ratings-intro {
  text-align: center;
}

.ratings-intro h2 {
  margin: 16px 0 0;
  color: #ffffff;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.ratings-intro p {
  max-width: 860px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 20px;
  line-height: 1.7;
  font-weight: 600;
}

.ratings-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 1px solid rgba(0, 126, 239, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand);
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 14px 36px rgba(3, 23, 50, 0.08);
}

.ratings-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}

.rating-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 26px 26px 24px;
  border: 2px solid rgba(3, 23, 50, 0.08);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 24px 48px rgba(3, 23, 50, 0.12);
}

.rating-card__top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  min-height: 54px;
}

.rating-card__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  height: 54px;
  overflow: visible;
}

.rating-card__logo-img {
  width: auto;
  height: 42px;
  object-fit: contain;
  display: block;
}

.rating-card__logo-img--2gis {
  height: 40px;
}

.rating-card__logo-img--yandex {
  height: 36px;
}

.rating-card__logo-img--google {
  height: 52px;
  max-width: 210px;
  transform: none;
}

.rating-card__score {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(3, 23, 50, 0.08);
  min-height: 78px;
}

.rating-card__score strong {
  color: #1e335d;
  font-size: 56px;
  line-height: 0.9;
  font-weight: 800;
}

.rating-card__score span {
  color: #8fa2c0;
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
}

.rating-card__stars span {
  color: #f5b402;
  font-size: 18px;
  letter-spacing: 2px;
  line-height: 1;
  font-weight: 800;
}

.rating-card p {
  flex: 1;
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 600;
  min-height: 120px;
}

.rating-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-strong) 100%);
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 14px 26px rgba(0, 126, 239, 0.22);
  align-self: center;
  min-width: 220px;
}

.ratings-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 28px auto 0;
  padding: 14px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(3, 23, 50, 0.08);
  text-align: center;
  width: fit-content;
}

.ratings-note__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  background: transparent;
}

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

.benefit {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
}

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

.clients-gallery {
  columns: 4;
  column-gap: 18px;
  margin-top: 32px;
}

.clients-gallery__item {
  break-inside: avoid;
  margin: 0 0 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.clients-gallery__item img {
  width: 100%;
  height: auto;
  transition: transform 0.25s ease;
}

.clients-gallery__item:hover img {
  transform: scale(1.03);
}

.step {
  padding: 28px 24px;
  border: 1px solid var(--line);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-strong) 100%);
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
}

.control-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 28px;
  align-items: center;
  padding: 42px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 18% 18%, rgba(212, 175, 127, 0.18), transparent 28%),
    linear-gradient(135deg, #031732 0%, #0d2b55 100%);
  box-shadow: 0 28px 64px rgba(3, 23, 50, 0.26);
}

.control-panel__copy h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(30px, 3.8vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.control-list {
  display: grid;
  gap: 14px;
}

.control-list div {
  padding: 20px 22px;
  border: 1px solid rgba(190, 215, 255, 0.18);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.control-list strong {
  display: block;
  color: #ffffff;
  font-size: 20px;
}

.control-list span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
}

.faq-section {
  padding-top: 76px;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.faq-list details {
  padding: 0;
  overflow: hidden;
  border-radius: 22px;
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 26px;
  font-size: 19px;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--brand);
  font-size: 24px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin: 0;
  padding: 0 26px 24px;
  font-size: 16px;
}

.audit-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 40px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at right center, rgba(0, 126, 239, 0.15), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(245, 249, 255, 0.96) 100%);
  border: 1px solid rgba(0, 126, 239, 0.12);
  box-shadow: var(--shadow);
}

.audit-actions {
  margin-top: 0;
  min-width: max-content;
}

.footer {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  margin-top: 18px;
  padding: 42px;
  border-radius: 0 0 34px 34px;
  background:
    radial-gradient(circle at 16% 20%, rgba(0, 126, 239, 0.22), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(212, 175, 127, 0.18), transparent 28%),
    linear-gradient(135deg, #06163a 0%, #0a2458 100%);
  color: #ffffff;
  box-shadow: 0 28px 80px rgba(3, 23, 50, 0.18);
}

.footer__content {
  max-width: 760px;
}

.footer__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(212, 175, 127, 0.32);
  border-radius: 999px;
  background: rgba(212, 175, 127, 0.12);
  color: #f0c78f;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer__portrait {
  position: relative;
  overflow: hidden;
  width: min(100%, 420px);
  aspect-ratio: 4 / 5;
  margin: 24px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 64px rgba(0, 8, 32, 0.28);
}

.footer__portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 16, 45, 0) 54%, rgba(3, 16, 45, 0.34) 100%);
  pointer-events: none;
}

.footer__portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.footer h2 {
  max-width: 760px;
  margin-top: 18px;
  color: #ffffff;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 0.98;
}

.footer p {
  max-width: 700px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.footer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.footer__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
}

.footer__cta--primary {
  border-color: transparent;
  background: linear-gradient(135deg, #1d7cff 0%, #1d96ff 100%);
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(29, 124, 255, 0.28);
}

.footer__cta--phone {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.footer__contact-cards,
.footer__social {
  display: grid;
  gap: 12px;
}

.footer__links {
  display: contents;
}

.footer__bottom {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(227, 237, 255, 0.58);
  font-size: 13px;
  font-weight: 700;
}

.footer__contact-cards {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  align-items: stretch;
}

.footer__social {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2px;
}

.footer-social-card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 104px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.footer-social-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.26;
  pointer-events: none;
}

.footer-social-card--instagram::before {
  background: radial-gradient(circle at 18% 18%, #ffd36f, transparent 30%),
    radial-gradient(circle at 76% 28%, #ff4f87, transparent 34%),
    linear-gradient(135deg, #7b3cff, #ff5b7e 55%, #f0c78f);
}

.footer-social-card--tiktok::before {
  background: radial-gradient(circle at 20% 22%, #25f4ee, transparent 28%),
    radial-gradient(circle at 82% 78%, #fe2c55, transparent 30%),
    linear-gradient(135deg, #071022, #111827);
}

.footer-social-card--vk::before {
  background: radial-gradient(circle at 16% 24%, #8ed8ff, transparent 32%),
    linear-gradient(135deg, #2476ff, #1450c8);
}

.footer-social-card--telegram::before,
.footer-social-card--telegram-channel::before {
  background: radial-gradient(circle at 18% 18%, #8ed8ff, transparent 32%),
    linear-gradient(135deg, #229ed9, #1d7cff);
}

.footer-social-card--whatsapp::before {
  background: radial-gradient(circle at 82% 20%, #a9ffca, transparent 32%),
    linear-gradient(135deg, #25d366, #128c4a);
}

.footer-social-card--phone::before {
  background: radial-gradient(circle at 18% 18%, #ffffff, transparent 28%),
    linear-gradient(135deg, #f0c78f, #7a8fbd);
}

.footer-social-card--youtube::before {
  background: radial-gradient(circle at 18% 18%, #ffadad, transparent 30%),
    linear-gradient(135deg, #ff1f3d, #a70f25);
}

.footer-social-card__icon,
.footer-social-card > span:last-child {
  position: relative;
  z-index: 1;
}

.footer-social-card > span:last-child {
  min-width: 0;
}

.footer-social-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  overflow: hidden;
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.footer-social-card__icon img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: contain;
}

.footer-social-card strong,
.footer-social-card small {
  display: block;
}

.footer-social-card strong {
  color: #ffffff;
  font-size: 20px;
  line-height: 1;
  font-weight: 900;
}

.footer-social-card small {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
  overflow-wrap: anywhere;
  word-break: normal;
}

.quick-contact {
  position: fixed;
  right: max(22px, env(safe-area-inset-right));
  bottom: max(22px, env(safe-area-inset-bottom));
  z-index: 920;
}

.quick-contact__toggle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
}

.quick-contact__icon {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quick-contact__icon--chat {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(29, 124, 255, 0.36));
}

.quick-contact__icon--close {
  display: none;
}

.quick-contact.is-open .quick-contact__toggle {
  background: linear-gradient(135deg, #1d7cff 0%, #1d96ff 100%);
  box-shadow: 0 18px 42px rgba(29, 124, 255, 0.42);
}

.quick-contact.is-open .quick-contact__icon--chat {
  display: none;
}

.quick-contact.is-open .quick-contact__icon--close {
  display: block;
}

.quick-contact__panel {
  position: absolute;
  right: 0;
  bottom: 78px;
  display: grid;
  width: min(370px, calc(100vw - 32px));
  gap: 11px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 4%, rgba(38, 151, 255, 0.22), transparent 38%),
    radial-gradient(circle at 100% 100%, rgba(240, 199, 143, 0.12), transparent 44%),
    rgba(5, 17, 48, 0.98);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.44), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(0.98);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.quick-contact.is-open .quick-contact__panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.quick-contact__eyebrow {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 13px;
  border: 1px solid rgba(240, 199, 143, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #f0c78f;
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quick-contact__panel .quick-contact__title {
  color: #ffffff;
  font-size: 25px;
  line-height: 1.02;
  font-weight: 900;
}

.quick-contact__panel p {
  margin: -3px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14.5px;
  line-height: 1.36;
  font-weight: 600;
}

.quick-contact__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 1px 0 3px;
}

.quick-contact__chips span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 800;
}

.quick-contact__action {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  min-height: 68px;
  gap: 13px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  text-align: left;
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.quick-contact__action:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.quick-contact__action-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.quick-contact__action-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quick-contact__action--telegram .quick-contact__action-icon svg,
.quick-contact__action--whatsapp .quick-contact__action-icon svg {
  fill: currentColor;
  stroke-width: 0;
}

.quick-contact__action b,
.quick-contact__action small {
  display: block;
}

.quick-contact__action b {
  color: inherit;
  font-size: 19px;
  line-height: 1.05;
  font-weight: 900;
}

.quick-contact__action small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.73);
  font-size: 12.5px;
  line-height: 1.15;
  font-weight: 800;
}

.quick-contact__panel button.quick-contact__action {
  width: 100%;
  border: 0;
  font-family: inherit;
  cursor: pointer;
}

.quick-contact__action--telegram {
  background: linear-gradient(135deg, #1977f2 0%, #2da8df 100%);
  color: #ffffff;
}

.quick-contact__action--whatsapp {
  background: linear-gradient(135deg, #1fc967 0%, #16806c 100%);
  color: #ffffff;
}

.quick-contact__action--phone {
  background: linear-gradient(135deg, #f8fbff 0%, #e8edf5 100%);
  color: #082456;
}

.quick-contact__action--phone small {
  color: rgba(8, 36, 86, 0.68);
}

.quick-contact__action--phone .quick-contact__action-icon {
  background: rgba(8, 36, 86, 0.1);
}

.quick-contact__action--request {
  background: linear-gradient(135deg, #fff8eb 0%, #f2c888 100%);
  color: #07173f;
}

.quick-contact__action--request small {
  color: rgba(7, 23, 63, 0.67);
}

.quick-contact__action--request .quick-contact__action-icon {
  background: rgba(7, 23, 63, 0.1);
}

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 980;
  display: grid;
  place-items: center;
  padding: 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.lead-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

body.is-lead-modal-open {
  overflow: hidden;
}

.lead-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 10, 30, 0.72);
  backdrop-filter: blur(12px);
}

.lead-form {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(440px, calc(100vw - 28px));
  max-height: calc(100vh - 28px);
  overflow-x: hidden;
  overflow-y: auto;
  gap: 13px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 26px;
  background:
    radial-gradient(circle at 18% 8%, rgba(29, 124, 255, 0.22), transparent 32%),
    linear-gradient(180deg, #07173f 0%, #071f55 100%);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  color: #ffffff;
}

.lead-form__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.lead-form__eyebrow {
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid rgba(240, 199, 143, 0.32);
  border-radius: 999px;
  background: rgba(240, 199, 143, 0.1);
  color: #f0c78f;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead-form h2 {
  max-width: 340px;
  margin: 0;
  color: #ffffff;
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
}

.lead-form p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 600;
}

.lead-form label,
.lead-form fieldset {
  display: grid;
  gap: 7px;
  margin: 0;
}

.lead-form label span,
.lead-form legend {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 800;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font: inherit;
  font-size: 15px;
  outline: none;
}

.lead-form input {
  min-height: 50px;
  padding: 0 14px;
}

.lead-form textarea {
  resize: vertical;
  min-height: 92px;
  padding: 12px 14px;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.44);
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: rgba(29, 150, 255, 0.78);
  box-shadow: 0 0 0 3px rgba(29, 150, 255, 0.16);
}

.lead-form fieldset {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 0;
  padding: 0;
}

.lead-form legend {
  grid-column: 1 / -1;
}

.lead-form fieldset label {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
}

.lead-form fieldset input {
  position: absolute;
  width: 1px;
  min-height: 0;
  height: 1px;
  padding: 0;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.lead-form fieldset label:has(input:checked) {
  border-color: rgba(240, 199, 143, 0.62);
  background: rgba(240, 199, 143, 0.18);
  color: #f0c78f;
}

.lead-form input[name="website"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  min-height: 0;
  height: 1px;
  padding: 0;
  border: 0;
  opacity: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  pointer-events: none;
}

.lead-form__submit {
  min-height: 54px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, #1d7cff 0%, #1d96ff 100%);
  color: #ffffff;
  font-family: inherit;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(29, 124, 255, 0.32);
}

.lead-form__submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.lead-form__status {
  min-height: 20px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 1100px) {
  .video-showcase__head,
  .video-showcase__spotlight {
    grid-template-columns: 1fr;
  }

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

  .topbar {
    border-radius: 22px 22px 0 0;
  }

  .menu {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: 0;
    padding: 30px 28px 34px;
    border-radius: 0 0 28px 28px;
  }

  .hero__metrics,
  .service-grid,
  .steps,
  .trust-strip,
  .owner-fit__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .owner-fit,
  .client-proof,
  .package-layout,
  .control-panel {
    grid-template-columns: 1fr;
  }

  .client-proof__photos {
    grid-template-rows: repeat(2, 170px);
  }

  .owner-fit-card {
    min-height: auto;
  }

  .service-card {
    min-height: 0;
    padding: 24px;
  }

  .service-card__top {
    grid-template-columns: 102px minmax(0, 1fr);
    gap: 14px;
  }

  .service-card__icon-image {
    width: 96px;
    height: 96px;
  }

  .service-card h3 {
    max-width: 200px;
    font-size: 21px;
  }

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

  .clients-gallery {
    columns: 3;
  }

  .youtube-layout {
    grid-template-columns: 1fr;
  }

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

  .youtube-side__intro {
    grid-column: 1 / -1;
  }

  .youtube-mini-card {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    justify-content: center;
  }

  .hero__expert-card {
    width: 100%;
    max-width: 520px;
  }

  .audit-box,
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .audit-actions,
  .footer__contact-cards {
    align-items: flex-start;
    min-width: auto;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(calc(100% - 18px), var(--container));
    padding-top: 8px;
  }

  .topbar {
    position: static;
    flex-wrap: nowrap;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 22px 22px 0 0;
  }

  .brand span {
    font-size: 13px;
    line-height: 1.1;
  }

  .brand {
    gap: 9px;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .phone-link {
    width: auto;
    flex: none;
    padding: 10px 12px;
    text-align: center;
    font-size: 12px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    padding: 14px 14px 18px;
    gap: 14px;
    border-radius: 0 0 28px 28px;
    background:
      radial-gradient(circle at 50% 18%, rgba(255, 217, 175, 0.18), transparent 34%),
      radial-gradient(circle at 20% 60%, rgba(29, 124, 255, 0.16), transparent 34%),
      linear-gradient(180deg, #07173f 0%, #0a2159 100%);
  }

  .hero__visual {
    order: 1;
    justify-content: center;
  }

  .hero__content {
    order: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__metrics {
    order: 3;
    display: none;
  }

  .hero__expert-card {
    width: 100%;
    max-width: none;
    padding: 0;
    overflow: hidden;
    border-radius: 26px;
    background: #132b67;
    box-shadow: 0 24px 48px rgba(3, 23, 50, 0.28);
  }

  .hero__photo-card {
    margin: 0;
    border-radius: 26px;
    border-bottom: 0;
  }

  .hero__photo-card img {
    height: clamp(330px, 48vh, 430px);
    object-position: center 16%;
  }

  .hero__expert-info,
  .hero__expert-note {
    display: none;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(40px, 12vw, 50px);
    line-height: 0.96;
    letter-spacing: 0;
  }

  .hero__subtitle {
    max-width: 94%;
    margin-top: 12px;
    color: #f0c78f;
    font-size: clamp(22px, 7.4vw, 32px);
    line-height: 1.08;
  }

  .hero__lead,
  .section-heading p,
  .audit-box p,
  .ratings-intro p {
    font-size: 16px;
  }

  .hero__lead {
    max-width: 96%;
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.55;
  }

  .hero__tag {
    margin-bottom: 10px;
    font-size: 11px;
    line-height: 1.25;
    letter-spacing: 0.1em;
  }

  .hero__mobile-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
  }

  .hero__mobile-chips span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid rgba(185, 210, 255, 0.24);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    font-weight: 800;
  }

  .hero__actions {
    width: 100%;
    margin-top: 18px;
  }

  .hero__actions .btn {
    width: 100%;
    min-height: 54px;
  }

  .hero__actions .btn--ghost {
    display: none;
  }

  .hero__metrics,
  .service-grid,
  .benefit-grid,
  .steps,
  .trust-strip,
  .owner-fit__grid {
    grid-template-columns: 1fr;
  }

  .client-proof {
    padding: 22px 16px;
    border-radius: 24px;
  }

  .client-proof__photos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 210px 120px;
    gap: 8px;
  }

  .client-proof__photos figure:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .client-proof__photos figure {
    border-radius: 16px;
  }

  .owner-fit,
  .package-card--main,
  .control-panel {
    padding: 28px 18px;
    border-radius: 28px;
  }

  .package-layout {
    grid-template-columns: 1fr;
  }

  .package-card p {
    font-size: 16px;
  }

  .package-card__actions .btn {
    width: 100%;
  }

  .control-list div,
  .package-point,
  .owner-fit-card {
    padding: 20px 18px;
    border-radius: 20px;
  }

  .faq-list summary {
    padding: 20px 18px;
    font-size: 17px;
  }

  .faq-list p {
    padding: 0 18px 20px;
  }

  .ratings-grid {
    grid-template-columns: 1fr;
  }

  .youtube-section {
    padding: 34px 18px 36px;
    border-radius: 28px;
  }

  .youtube-intro {
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
  }

  .youtube-intro h2 {
    font-size: clamp(28px, 10vw, 42px);
  }

  .youtube-intro p {
    font-size: 16px;
    margin-top: 12px;
  }

  .youtube-badge {
    width: 66px;
    height: 66px;
    border-radius: 20px;
  }

  .youtube-badge__play {
    border-top-width: 10px;
    border-bottom-width: 10px;
    border-left-width: 16px;
    margin-left: 6px;
  }

  .youtube-feature,
  .youtube-side {
    padding: 16px;
    border-radius: 24px;
  }

  .youtube-feature__frame {
    padding: 12px;
    border-radius: 22px;
  }

  .youtube-feature__media,
  .youtube-feature__media img {
    min-height: 220px;
  }

  .youtube-feature__tag {
    top: 12px;
    left: 12px;
    padding: 8px 12px;
    font-size: 13px;
  }

  .youtube-feature__play {
    width: 84px;
    height: 58px;
    margin: -29px 0 0 -42px;
    border-radius: 20px;
  }

  .youtube-feature__play::after {
    margin: -11px 0 0 -6px;
    border-top-width: 11px;
    border-bottom-width: 11px;
    border-left-width: 18px;
  }

  .youtube-feature__meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .youtube-feature__meta-copy strong {
    font-size: 20px;
  }

  .youtube-feature__meta-copy span {
    font-size: 15px;
  }

  .youtube-chip {
    padding: 11px 16px;
    font-size: 15px;
  }

  .youtube-feature__footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
  }

  .youtube-feature__footer p {
    max-width: none;
    font-size: 17px;
  }

  .youtube-feature__actions {
    width: 100%;
  }

  .youtube-feature__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .youtube-side {
    display: block;
  }

  .youtube-side__intro strong {
    font-size: 22px;
  }

  .youtube-list {
    font-size: 16px;
  }

  .youtube-mini-card {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px;
  }

  .youtube-mini-card img {
    min-height: 160px;
  }

  .service-section {
    width: auto;
    max-width: none;
    margin-top: 64px;
    margin-left: 0;
    transform: none;
    padding: 70px 22px;
    border-radius: 28px;
  }

  .service-grid--showcase {
    gap: 20px;
    margin-top: 32px;
    grid-template-columns: 1fr;
  }

  .service-intro p span,
  .service-intro p span:last-child {
    white-space: normal;
  }

  .service-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px 18px 24px;
    border-radius: 24px;
  }

  .service-card::before {
    left: 18px;
    right: 18px;
  }

  .service-card__top {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
  }

  .service-card__icon-image {
    width: 82px;
    height: 82px;
  }

  .service-card h3 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 0.24em;
    row-gap: 0.04em;
    max-width: none;
    font-size: 18px;
    line-height: 1.14;
  }

  .service-card h3 span {
    display: inline-block;
    white-space: normal;
  }

  .service-card h3 span + span::before {
    content: none;
  }

  .service-card__body p {
    font-size: 16px;
    max-width: none;
    line-height: 1.5;
  }

  .service-card {
    gap: 14px;
    padding: 18px 16px 20px;
    border-radius: 22px;
  }

  .service-card::after {
    width: 120px;
    height: 64px;
    right: 10px;
    bottom: 12px;
  }

  .service-card__body {
    padding-right: 2px;
  }

  .service-card__top {
    margin-bottom: 4px;
  }

  .rating-card {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .rating-card__logo-img {
    height: 32px;
  }

  .rating-card__score {
    min-height: 64px;
  }

  .rating-card p {
    min-height: auto;
  }

  .rating-card__button {
    min-width: 100%;
  }

  .rating-card__score strong {
    font-size: 46px;
  }

  .rating-card__score span {
    font-size: 20px;
  }

  .rating-card__stars span {
    font-size: 18px;
  }

  .clients-gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    columns: unset;
    column-gap: 0;
  }

  .clients-gallery__item {
    margin: 0;
    border-radius: 10px;
  }

  .clients-gallery__item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }

  .clients-gallery__item:first-child {
    grid-column: 1 / -1;
    border-radius: 18px;
    margin-bottom: 8px;
  }

  .clients-gallery__item:first-child img {
    aspect-ratio: 0.78 / 1;
    object-fit: cover;
  }

  .section {
    padding-top: 60px;
  }

  .section--dark,
  .audit-box {
    padding: 28px 18px;
    border-radius: 28px;
  }

  .card,
  .benefit,
  .step,
  .metric {
    padding: 22px 18px;
  }
}

@media (max-width: 720px) {
  body {
    background: #06163a;
  }

  .page-shell {
    position: relative;
    width: 100%;
    padding: 0;
  }

  .topbar {
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    z-index: 30;
    display: grid;
    grid-template-columns: 156px minmax(0, auto) 30px;
    gap: 7px;
    align-items: center;
    padding: 9px 10px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(9, 18, 38, 0.92) 0%, rgba(18, 34, 73, 0.92) 100%);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
  }

  .brand {
    gap: 6px;
    min-width: 0;
  }

  .brand img {
    width: 28px;
    height: 28px;
  }

  .brand span {
    overflow: hidden;
    color: #ffffff;
    font-size: 10px;
    line-height: 1.05;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .phone-link {
    width: auto;
    min-height: 36px;
    padding: 0 9px;
    border-radius: 999px;
    background: linear-gradient(135deg, #fffefd 0%, #eee8e8 100%);
    color: #0b1b3f;
    font-size: 10px;
    font-weight: 900;
    box-shadow: none;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .menu-toggle span {
    display: block;
    width: 21px;
    height: 2px;
    border-radius: 999px;
    background: #ffffff;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: 100svh;
    padding: 0 0 32px;
    gap: 0;
    border-radius: 0;
    background:
      radial-gradient(circle at 50% 70%, rgba(23, 113, 255, 0.22), transparent 34%),
      linear-gradient(180deg, #071943 0%, #06183f 48%, #03112f 100%);
    box-shadow: none;
  }

  .hero::before {
    opacity: 0.22;
  }

  .hero__visual {
    order: 1;
    width: 100%;
  }

  .hero__expert-card {
    width: 100%;
    max-width: none;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .hero__photo-card {
    margin: 0;
    border: 0;
    border-radius: 0;
  }

  .hero__photo-card img {
    width: 100%;
    height: clamp(250px, 32svh, 310px);
    object-fit: cover;
    object-position: center 8%;
  }

  .hero__expert-info,
  .hero__expert-note,
  .hero__tag,
  .hero__lead,
  .hero__metrics,
  .hero__actions .btn--ghost {
    display: none;
  }

  .hero__content {
    order: 2;
    display: block;
    padding: 22px 28px 0;
  }

  .hero h1 {
    max-width: 100%;
    color: #ffffff;
    font-size: clamp(42px, 12vw, 52px);
    line-height: 0.91;
    letter-spacing: -0.055em;
  }

  .hero__subtitle {
    max-width: 100%;
    margin-top: 14px;
    color: #efc27e;
    font-size: 0;
    line-height: 1.12;
    letter-spacing: -0.03em;
  }

  .hero__subtitle::before {
    content: "Доверительное управление квартирой";
    font-size: clamp(28px, 8vw, 35px);
  }

  .hero__mobile-chips {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    margin-top: 16px;
  }

  .hero__mobile-chips span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 42px;
    padding: 0 5px;
    border: 1px solid rgba(180, 205, 255, 0.22);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.045);
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(8.6px, 2.35vw, 10.2px);
    font-weight: 600;
    line-height: 1.1;
    white-space: nowrap;
  }

  .hero__mobile-chips span::before {
    content: "";
    flex: 0 0 auto;
    width: 15px;
    height: 15px;
    margin-right: 4px;
    background: #efc27e;
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
  }

  .hero__mobile-chips span:nth-child(1)::before {
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7Zm0 9.5A2.5 2.5 0 1 1 12 6a2.5 2.5 0 0 1 0 5.5Z'/%3E%3C/svg%3E");
  }

  .hero__mobile-chips span:nth-child(2)::before {
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 14a4 4 0 1 1 3.46-6H22v4h-3v3h-3v3h-4.54A4 4 0 0 1 7 14Zm0-2a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z'/%3E%3C/svg%3E");
  }

  .hero__mobile-chips span:nth-child(3)::before {
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2 4 5v6c0 5.55 3.84 10.74 8 12 4.16-1.26 8-6.45 8-12V5l-8-3Zm0 3.2 5 1.88V11c0 3.74-2.37 7.35-5 8.72C9.37 18.35 7 14.74 7 11V7.08l5-1.88Zm3.6 5.08-4.25 4.25-2-2-1.42 1.42 3.42 3.42 5.67-5.67-1.42-1.42Z'/%3E%3C/svg%3E");
  }

  .hero__actions {
    width: 100%;
    margin-top: 16px;
  }

  .hero__main-cta {
    width: 100%;
    min-height: 58px;
    justify-content: space-between;
    padding: 0 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, #1687ff 0%, #1d96ff 58%, #1686ff 100%);
    box-shadow: 0 18px 34px rgba(12, 115, 255, 0.34);
    font-size: clamp(17px, 4.8vw, 21px);
    letter-spacing: -0.015em;
  }

  .hero__main-cta-icon,
  .hero__main-cta-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
  }

  .hero__main-cta-icon {
    width: 28px;
    height: 28px;
    background: #ffffff;
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 21V4h10v17h-2v-4H6v4H4Zm2-6h2v-2H6v2Zm0-4h2V9H6v2Zm0-4h2V5H6v2Zm4 8h2v-2h-2v2Zm0-4h2V9h-2v2Zm0-4h2V5h-2v2Zm6 14V10h4v11h-4Zm2-2h1v-2h-1v2Zm0-4h1v-2h-1v2Z'/%3E%3C/svg%3E");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
  }

  .hero__main-cta-arrow {
    font-size: 30px;
    line-height: 1;
    transform: translateY(-1px);
  }
}

@media (max-width: 420px) and (max-height: 760px) {
  .topbar {
    top: 14px;
    left: 18px;
    right: 18px;
    grid-template-columns: minmax(132px, 1fr) minmax(132px, auto) 30px;
    padding: 8px 9px;
  }

  .brand img {
    width: 26px;
    height: 26px;
  }

  .brand span,
  .phone-link {
    font-size: 9.5px;
  }

  .phone-link {
    min-height: 34px;
  }

  .hero {
    min-height: 100svh;
    padding-bottom: 18px;
  }

  .hero__photo-card img {
    height: clamp(238px, 31svh, 286px);
    object-position: center 8%;
  }

  .hero__content {
    padding: 20px 30px 0;
  }

  .hero h1 {
    font-size: clamp(40px, 11.5vw, 49px);
    line-height: 0.9;
  }

  .hero__subtitle {
    margin-top: 12px;
  }

  .hero__subtitle::before {
    font-size: clamp(26px, 7.7vw, 32px);
    line-height: 1.06;
  }

  .hero__mobile-chips {
    gap: 6px;
    margin-top: 14px;
  }

  .hero__mobile-chips span {
    min-height: 39px;
    padding: 0 4px;
    font-size: clamp(8px, 2.25vw, 9.8px);
  }

  .hero__mobile-chips span::before {
    width: 14px;
    height: 14px;
    margin-right: 4px;
  }

  .hero__actions {
    margin-top: 14px;
  }

  .hero__main-cta {
    min-height: 56px;
    padding: 0 18px;
    font-size: clamp(16px, 4.5vw, 19px);
  }

  .hero__main-cta-icon {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 720px) {
  .topbar {
    top: 20px;
    left: 15px;
    right: 15px;
    grid-template-columns: minmax(170px, 1fr) 126px 30px;
    gap: 6px;
    padding: 10px;
    border-radius: 28px;
  }

  .brand {
    gap: 7px;
  }

  .brand img {
    width: 32px;
    height: 32px;
  }

  .brand span {
    font-size: 12.5px;
  }

  .phone-link {
    min-height: 42px;
    padding: 0 9px;
    font-size: 10.6px;
  }

  .menu-toggle {
    gap: 6px;
    width: 30px;
    height: 34px;
  }

  .menu-toggle span {
    width: 26px;
    height: 3px;
  }

  .hero {
    min-height: 100svh;
    padding-bottom: 46px;
    background:
      radial-gradient(circle at 56% 72%, rgba(20, 113, 255, 0.18), transparent 36%),
      linear-gradient(180deg, #071943 0%, #06183f 48%, #03112f 100%);
  }

  .hero__photo-card img {
    height: clamp(440px, 53svh, 520px);
    object-position: center 12%;
  }

  .hero__lead {
    display: block;
    max-width: 92%;
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(17px, 4.55vw, 22px);
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: 0;
  }

  .hero__content {
    padding: 24px 30px 0;
  }

  .hero h1 {
    font-size: clamp(48px, 12.9vw, 60px);
    line-height: 0.9;
  }

  .hero__subtitle {
    margin-top: 14px;
    line-height: 1.08;
  }

  .hero__subtitle::before {
    content: "Квартира под контролем";
    font-size: clamp(30px, 8vw, 38px);
  }

  .hero__mobile-chips {
    gap: 8px;
    margin-top: 12px;
  }

  .hero__mobile-chips span {
    min-height: 46px;
    padding: 0 6px;
    font-size: clamp(9.5px, 2.7vw, 12px);
  }

  .hero__mobile-chips span::before {
    width: 20px;
    height: 20px;
    margin-right: 6px;
  }

  .hero__actions {
    margin-top: 14px;
  }

  .hero__main-cta {
    min-height: 62px;
    padding: 0 24px;
    gap: 12px;
    font-size: clamp(20px, 5.25vw, 25px);
    white-space: nowrap;
  }

  .hero__main-cta-icon {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
  }

  .hero__main-cta-arrow {
    flex: 0 0 auto;
    font-size: 38px;
  }

  .hero__main-cta span:nth-child(2) {
    flex: 1 1 auto;
    text-align: center;
  }
}

@media (max-width: 720px) {
  .topbar {
    top: 18px;
    left: 18px;
    right: 18px;
    grid-template-columns: minmax(162px, 1fr) 116px 28px;
    gap: 6px;
    min-height: 64px;
    padding: 8px 10px;
    border-radius: 26px;
  }

  .brand img {
    width: 32px;
    height: 32px;
  }

  .brand span {
    font-size: 11.4px;
  }

  .phone-link {
    align-self: center;
    height: 38px;
    min-height: 38px;
    padding: 0 7px;
    font-size: 9.7px;
    line-height: 1;
  }

  .menu-toggle {
    align-self: center;
    gap: 5px;
    width: 28px;
    height: 30px;
  }

  .menu-toggle span {
    width: 24px;
    height: 2px;
  }

  .hero__photo-card img {
    height: clamp(315px, 38svh, 360px);
    object-position: center top;
  }

  .hero__subtitle::before {
    font-size: clamp(22px, 5.9vw, 28px);
    white-space: nowrap;
  }

  .hero__mobile-chips span::before {
    width: 22px;
    height: 22px;
    margin-right: 6px;
    background: transparent center / contain no-repeat;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .hero__mobile-chips span:nth-child(1)::before {
    background-image: url("./images/ui-icon-location.png");
  }

  .hero__mobile-chips span:nth-child(2)::before {
    background-image: url("./images/ui-icon-key.png");
  }

  .hero__mobile-chips span:nth-child(3)::before {
    background-image: url("./images/ui-icon-shield.png");
  }

  .hero__main-cta-icon {
    background: transparent url("./images/ui-icon-building.png") center / contain no-repeat;
    mask-image: none;
    -webkit-mask-image: none;
  }
}

@media (max-width: 420px) and (max-height: 880px) {
  .topbar {
    min-height: 60px;
  }

  .hero__photo-card img {
    height: clamp(360px, 45svh, 410px);
    object-position: center top;
  }

  .hero__content {
    padding-top: 22px;
  }

  .hero h1 {
    font-size: clamp(43px, 11.55vw, 54px);
  }

  .hero__subtitle {
    margin-top: 11px;
  }

  .hero__subtitle::before {
    font-size: clamp(22px, 5.85vw, 27px);
  }

  .hero__lead {
    margin-top: 8px;
    font-size: clamp(16px, 4.25vw, 20px);
    line-height: 1.32;
  }

  .hero__mobile-chips {
    gap: 7px;
    margin-top: 10px;
  }

  .hero__mobile-chips span {
    min-height: 42px;
    font-size: clamp(8.5px, 2.3vw, 10.5px);
  }

  .hero__mobile-chips span::before {
    width: 18px;
    height: 18px;
    margin-right: 5px;
  }

  .hero__actions {
    margin-top: 12px;
  }

  .hero__main-cta {
    min-height: 58px;
    font-size: clamp(18px, 4.85vw, 23px);
  }

  .hero__main-cta-icon {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }
}

@media (max-width: 720px) {
  .service-section {
    margin-top: 26px;
    padding: 48px 24px 34px;
  }

  .service-intro h2 {
    max-width: 100%;
    font-size: clamp(30px, 8.7vw, 34px);
    line-height: 1.04;
    letter-spacing: -0.04em;
    overflow-wrap: normal;
    word-break: normal;
  }

  .service-intro h2 span {
    display: block;
    white-space: normal;
  }

  .service-intro h2 span + span::before {
    content: none;
  }

  .service-intro p {
    max-width: 100%;
    font-size: 17px;
    line-height: 1.48;
  }

  .service-intro p span,
  .service-intro p span:last-child {
    display: inline;
    white-space: normal;
  }

  .topbar {
    left: 14px;
    right: 14px;
    display: flex;
    align-items: center;
    min-height: 58px;
    padding: 8px 11px;
    gap: 8px;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
    gap: 6px;
  }

  .brand img {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
  }

  .brand span {
    font-size: 10.8px;
  }

  .phone-link {
    flex: 0 0 116px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    min-height: 38px;
    padding: 0;
    font-size: 9.6px;
    line-height: 1;
    transform: none;
  }

  .menu-toggle {
    flex: 0 0 28px;
    width: 28px;
    height: 30px;
    margin: 0;
  }

  .menu-toggle span {
    width: 24px;
    height: 2px;
  }

  .hero {
    min-height: calc(100svh + 110px);
    padding-bottom: 92px;
  }

  .hero__content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero__mobile-chips {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .hero__mobile-chips span {
    min-width: 0;
    min-height: 42px;
    padding: 0 5px;
    overflow: hidden;
    font-size: clamp(8.4px, 2.25vw, 10px);
    line-height: 1;
  }

  .hero__mobile-chips span::before {
    flex: 0 0 15px;
    width: 15px;
    height: 15px;
    margin-right: 4px;
  }

  .hero__mobile-chips span:nth-child(1)::before {
    background-image: url("./images/ui-icon-location-clean.png");
  }

  .hero__mobile-chips span:nth-child(2)::before {
    background-image: url("./images/ui-icon-key-clean.png");
  }

  .hero__mobile-chips span:nth-child(3)::before {
    background-image: url("./images/ui-icon-shield-clean.png");
  }

  .hero__main-cta {
    min-height: 62px;
    padding: 0 22px;
  }

  .hero__main-cta-icon {
    background-image: url("./images/ui-icon-building-clean.png");
  }
}

@media (max-width: 420px) and (max-height: 880px) {
  .hero__visual {
    padding-top: 70px;
  }

  .hero__photo-card img {
    height: clamp(390px, 47svh, 420px);
    object-position: center 14%;
  }
}

@media (max-width: 720px) {
  .hero__photo-card img {
    height: clamp(390px, 47svh, 420px);
    object-position: center 14%;
  }

  .hero__content {
    padding-top: 20px;
  }

  .hero h1 {
    font-size: clamp(41px, 11vw, 52px);
  }

  .hero__subtitle::before {
    font-size: clamp(21px, 5.6vw, 27px);
  }

  .hero__lead {
    font-size: clamp(15px, 4vw, 19px);
  }

  .hero__mobile-chips span:nth-child(2)::before {
    background-image: url("./images/ui-icon-key-gen.png");
  }

  .hero__mobile-chips span:nth-child(3)::before {
    background-image: url("./images/ui-icon-shield-gen.png");
  }
}

@media (max-width: 720px) {
  .hero__mobile-chips {
    display: none;
  }

  .hero {
    min-height: calc(100svh + 80px);
    padding-bottom: 76px;
  }

  .hero__content {
    padding-top: 22px;
  }

  .hero__lead {
    max-width: 96%;
    margin-top: 10px;
  }

  .hero__actions {
    margin-top: 18px;
  }

  .hero__main-cta {
    min-height: 66px;
    padding: 0 24px;
    box-shadow: 0 18px 38px rgba(12, 115, 255, 0.38);
  }

  .hero__location-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: fit-content;
    max-width: 100%;
    min-height: 34px;
    margin: 12px auto 0;
    padding: 0 14px;
    border: 1px solid rgba(180, 205, 255, 0.2);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.045);
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(11px, 3vw, 14px);
    font-weight: 700;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .hero__location-icon {
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    background: transparent url("./images/ui-icon-location-clean.png") center / contain no-repeat;
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: calc(100svh + 56px);
    padding-bottom: 66px;
  }

  .hero__content {
    padding-top: 20px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(32px, 8.6vw, 40px);
    line-height: 0.98;
    letter-spacing: -0.055em;
    white-space: nowrap;
  }

  .hero__subtitle {
    margin-top: 10px;
  }

  .hero__subtitle::before {
    font-size: clamp(23px, 6.15vw, 29px);
    white-space: nowrap;
  }

  .hero__lead {
    max-width: 98%;
    margin-top: 8px;
    font-size: clamp(15px, 4vw, 18px);
    line-height: 1.32;
  }

  .hero__actions {
    margin-top: 16px;
  }

  .hero__main-cta {
    min-height: 64px;
  }

  .hero__location-line {
    min-height: 32px;
    margin-top: 10px;
    padding: 0 13px;
    font-size: clamp(11px, 2.9vw, 13px);
  }
}

@media (max-width: 370px) {
  .hero h1 {
    font-size: clamp(29px, 8.2vw, 34px);
  }
}

@media (max-width: 720px) {
  .client-work {
    margin-top: 0;
    padding: 30px 0 28px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    background:
      radial-gradient(circle at 20% 8%, rgba(0, 126, 239, 0.18), transparent 34%),
      linear-gradient(180deg, #031235 0%, #061946 100%);
    box-shadow: none;
  }

  .client-work__intro {
    margin: 0;
    padding: 0 24px 20px;
  }

  .client-work__eyebrow {
    min-height: 30px;
    padding: 0 12px;
    font-size: 10px;
  }

  .client-work__intro h2 {
    margin-top: 12px;
    font-size: clamp(30px, 8.8vw, 40px);
    line-height: 1.04;
    letter-spacing: -0.04em;
  }

  .client-work__intro p {
    max-width: 330px;
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.5;
  }

  .client-work__gallery {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 7px;
    padding: 0 0 0;
  }

  .client-work__gallery figure {
    min-height: 88px;
    border-radius: 13px;
  }

  .client-work__hero-photo {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 0 !important;
    aspect-ratio: 0.82;
    border-right: 0 !important;
    border-left: 0 !important;
    border-radius: 22px !important;
  }

  .client-work__gallery figure:not(.client-work__hero-photo) {
    aspect-ratio: 1;
  }

  .client-work__gallery img {
    object-position: center;
  }

  .client-work__link {
    min-height: 38px;
    margin: 16px 24px 0;
    padding: 0 15px;
    font-size: clamp(12px, 3.35vw, 13px);
  }

  .photo-lightbox {
    padding: 12px;
  }

  .photo-lightbox__image {
    max-height: 84svh;
    border-radius: 14px;
  }

  .photo-lightbox__caption {
    right: 18px;
    bottom: 14px;
    left: 18px;
    font-size: 12px;
  }

  .photo-lightbox__swipe-hint {
    bottom: 52px;
    min-height: 38px;
    padding: 0 14px;
    font-size: 12px;
  }

  .photo-lightbox__swipe-hint span {
    font-size: 18px;
  }

  .photo-lightbox__close {
    top: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
  }

  .objects-map-section {
    margin-top: 0;
    padding: 30px 0 28px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .objects-map__head {
    display: block;
    margin-bottom: 0;
  }

  .objects-map__intro {
    margin: 0;
    padding: 0 24px 20px;
  }

  .objects-map__intro h2 {
    margin-top: 12px;
    font-size: clamp(30px, 8.8vw, 40px);
    line-height: 1.04;
    letter-spacing: -0.04em;
  }

  .objects-map__intro p {
    max-width: 330px;
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.5;
  }

  .objects-map__summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 0 24px 14px;
  }

  .objects-map__summary-card {
    min-height: 78px;
    padding: 13px 10px;
    border-radius: 16px;
  }

  .objects-map__summary-card i {
    display: none;
  }

  .objects-map__summary strong {
    font-size: 26px;
  }

  .objects-map__summary span {
    margin-top: 7px;
    font-size: 10px;
  }

  .objects-map {
    display: flex;
    flex-direction: column;
    min-height: 0;
    gap: 12px;
  }

  .objects-map__map-wrap {
    min-height: 470px;
    border-right: 0;
    border-left: 0;
    border-radius: 22px;
  }

  .objects-map__map-toolbar {
    display: none;
  }

  .objects-map__map {
    min-height: 470px;
  }

  .objects-map__panel {
    padding: 0 24px;
  }

  .objects-map__legend {
    display: none;
  }

  .objects-map__selected {
    display: none;
    padding: 18px;
    border-radius: 18px;
  }

  .objects-map__selected strong {
    font-size: 18px;
  }

  .video-showcase {
    margin-top: 0;
    padding: 34px 0 30px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .video-showcase__head {
    display: block;
    margin-bottom: 0;
  }

  .video-showcase__intro {
    margin: 0;
    padding: 0 24px 18px;
  }

  .video-showcase__intro h2 {
    margin-top: 10px;
    font-size: clamp(38px, 11vw, 52px);
    line-height: 0.96;
    letter-spacing: -0.04em;
  }

  .video-showcase__intro p {
    max-width: 330px;
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.35;
  }

  .video-showcase__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 0 24px;
  }

  .video-showcase__spotlight {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .video-showcase__main {
    display: block;
    width: 100%;
    justify-self: center;
    aspect-ratio: 16 / 9;
    border-radius: 22px;
  }

  .video-showcase__play {
    top: 16px;
    right: 16px;
    left: auto;
    width: 48px;
    height: 48px;
  }

  .video-showcase__play::after {
    border-top-width: 9px;
    border-bottom-width: 9px;
    border-left-width: 14px;
  }

  .video-showcase__main-copy {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .video-showcase__main-copy strong {
    max-width: 270px;
    font-size: clamp(28px, 7.4vw, 34px);
    line-height: 1.06;
  }

  .video-showcase__main-copy small,
  .video-showcase__rail {
    display: none;
  }

  .video-showcase__cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 0;
  }

  .video-card {
    aspect-ratio: 16 / 9;
    border-radius: 18px;
  }

  .video-card__tag {
    min-height: 24px;
    margin: 12px 12px 0;
    padding: 0 8px;
    font-size: 8.5px;
    letter-spacing: 0.045em;
  }

  .video-card strong {
    right: 12px;
    bottom: 10px;
    left: 12px;
    margin: 0;
    font-size: 13.5px;
    line-height: 1.08;
  }

  .video-showcase__actions {
    padding: 0 24px;
    margin-top: 14px;
  }

  .video-showcase__actions .btn {
    width: 100%;
    min-height: 68px;
    font-size: 18px;
    border-radius: 999px;
  }

  .telegram-section {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 0;
    padding: 34px 16px 42px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .telegram-section::after {
    display: none;
  }

  .telegram-section__intro h2 {
    max-width: 330px;
    margin-top: 10px;
    font-size: clamp(38px, 10.5vw, 43px);
    line-height: 0.98;
  }

  .telegram-section__intro p {
    max-width: 338px;
    margin-top: 14px;
    font-size: 17px;
    line-height: 1.42;
  }

  .telegram-section__button {
    width: 100%;
    min-height: 62px;
    margin-top: 4px;
    font-size: 18px;
  }

  .telegram-dashboard {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px;
    border-radius: 24px;
  }

  .telegram-dashboard__sidebar {
    padding: 0;
    border: 0;
    background: transparent;
  }

  .telegram-dashboard__feed {
    gap: 10px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .telegram-dashboard__profile {
    padding: 12px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
  }

  .telegram-feed__avatar {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    font-size: 16px;
  }

  .telegram-dashboard__profile strong {
    font-size: 18px;
    line-height: 1.08;
  }

  .telegram-dashboard__topics,
  .telegram-dashboard__bar {
    display: none;
  }

  .telegram-message {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 10px;
    min-height: 108px;
    padding: 10px;
    border-radius: 20px;
    background: rgba(6, 18, 47, 0.58);
  }

  .telegram-message--featured {
    grid-template-columns: 84px minmax(0, 1fr);
    min-height: 108px;
  }

  .telegram-message img {
    width: 84px;
    height: 84px;
    border-radius: 16px;
  }

  .telegram-message--featured img {
    width: 84px;
    height: 84px;
  }

  .telegram-message strong,
  .telegram-message--featured strong {
    padding: 0;
    font-size: 16px;
  }

  .telegram-message p {
    font-size: 12px;
    line-height: 1.3;
  }

  .telegram-dashboard__footer {
    display: grid;
    gap: 12px;
  }

  .telegram-section__chips {
    display: none;
  }

  .ratings-section {
    padding: 58px 24px 34px;
    border-right: 0;
    border-left: 0;
  }

  .ratings-intro h2 {
    margin-top: 10px;
    font-size: clamp(34px, 9.2vw, 42px);
    line-height: 1;
    letter-spacing: 0;
  }

  .ratings-intro p {
    max-width: 330px;
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.45;
  }

  .trust-strip {
    margin-top: 0;
    padding: 18px 20px 0;
    grid-template-columns: 1fr 1fr;
  }

  .footer {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 0;
    padding: 34px 24px 30px;
    border-radius: 0 0 28px 28px;
  }

  .footer__eyebrow {
    min-height: 32px;
    font-size: 11px;
    letter-spacing: 0.07em;
  }

  .footer__portrait {
    width: 100%;
    margin-top: 18px;
    border-radius: 24px;
  }

  .footer h2 {
    margin-top: 16px;
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1;
  }

  .footer p {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.55;
  }

  .footer__contact-cards,
  .footer__social {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .footer__contact-cards {
    margin-top: 4px;
  }

  .footer-social-card {
    min-height: 86px;
    padding: 14px;
    border-radius: 20px;
  }

  .footer-social-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
  }

  .footer-social-card__icon img {
    width: 100%;
    height: 100%;
  }

  .footer-social-card strong {
    font-size: 19px;
  }

  .footer-social-card small {
    font-size: 12.5px;
  }
}

@media (max-width: 720px) {
  .topbar {
    position: absolute;
    top: max(14px, env(safe-area-inset-top));
    left: 10px;
    right: 10px;
    z-index: 900;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    min-height: 58px;
    padding: 8px 9px 8px 12px;
    border-radius: 24px;
    transition: width 0.2s ease, min-height 0.2s ease, padding 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  }

  .topbar .phone-link {
    display: inline-flex;
    min-height: 42px;
    padding: 0 10px;
    font-size: 10.5px;
  }

  .topbar .brand {
    min-width: 0;
  }

  .topbar .brand span {
    font-size: 10.8px;
    line-height: 1.05;
  }

  .topbar .brand img {
    width: 34px;
    height: 34px;
  }

  body.has-scrolled-mobile .topbar {
    position: fixed;
    top: max(14px, env(safe-area-inset-top));
    right: 16px;
    left: auto;
    width: 58px;
    min-height: 58px;
    padding: 7px;
    grid-template-columns: 44px;
    border-radius: 999px;
  }

  body.has-scrolled-mobile .topbar .brand,
  body.has-scrolled-mobile .topbar .phone-link {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    position: relative;
    z-index: 2;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
  }

  .menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: #ffffff;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .topbar.is-menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .topbar.is-menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .topbar.is-menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .topbar .menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    background: rgba(6, 18, 47, 0.98);
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.32);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  body.has-scrolled-mobile .topbar .menu {
    left: auto;
    width: min(300px, calc(100vw - 32px));
  }

  .topbar.is-menu-open .menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .topbar .menu a {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 0 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
  }

  .quick-contact {
    position: fixed;
    right: max(18px, env(safe-area-inset-right));
    bottom: max(18px, env(safe-area-inset-bottom));
    z-index: 920;
    display: block;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px) scale(0.96);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  body.has-scrolled-mobile .quick-contact,
  .quick-contact.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .quick-contact__toggle {
    width: 62px;
    height: 62px;
  }

  .quick-contact__icon--chat {
    width: 62px;
    height: 62px;
  }

  .quick-contact__panel {
    bottom: 76px;
    width: min(335px, calc(100vw - 32px));
    gap: 8px;
    padding: 15px;
  }

  .quick-contact__panel .quick-contact__title {
    font-size: 21px;
    line-height: 1.08;
  }

  .quick-contact__panel p {
    font-size: 13px;
  }

  .quick-contact__eyebrow {
    min-height: 26px;
    padding: 0 11px;
    font-size: 10px;
  }

  .quick-contact__chips span {
    min-height: 26px;
    padding: 0 9px;
    font-size: 11px;
  }

  .quick-contact__action {
    grid-template-columns: 46px 1fr;
    min-height: 60px;
    gap: 11px;
    padding: 8px 12px;
    border-radius: 18px;
  }

  .quick-contact__action-icon {
    width: 46px;
    height: 46px;
    border-radius: 15px;
  }

  .quick-contact__action-icon svg {
    width: 24px;
    height: 24px;
  }

  .quick-contact__action b {
    font-size: 17px;
  }

  .quick-contact__action small {
    font-size: 11.5px;
  }

  .lead-modal {
    align-items: end;
    padding: 10px;
  }

  .lead-form {
    width: 100%;
    max-height: min(720px, calc(100dvh - 20px));
    padding: 22px 18px 18px;
    padding-bottom: calc(18px + env(safe-area-inset-bottom));
    border-radius: 24px;
  }

  .lead-form h2 {
    max-width: 300px;
    font-size: 30px;
  }

  .lead-form fieldset {
    grid-template-columns: 1fr;
  }

  .lead-form label:has(textarea) {
    order: 6;
  }

  .lead-form__submit {
    position: sticky;
    bottom: max(12px, env(safe-area-inset-bottom));
    z-index: 2;
    order: 5;
    margin-top: 0;
    box-shadow:
      0 -10px 22px rgba(7, 23, 63, 0.52),
      0 16px 34px rgba(29, 124, 255, 0.34);
  }

  .lead-form__status {
    order: 7;
  }
}

/* Final section rhythm pass: keep neighboring blocks visually connected. */
.page-shell main > section {
  margin-top: 22px;
}

.page-shell main > section:first-child {
  margin-top: 0;
}

.objects-map-section,
.video-showcase,
.telegram-section,
.ratings-section,
.service-section,
.section--dark,
.package-section,
.faq-section,
.footer {
  scroll-margin-top: 92px;
}

@media (min-width: 721px) {
  .objects-map-section,
  .video-showcase,
  .telegram-section,
  .ratings-section,
  .service-section {
    border-radius: 34px;
  }
}

@media (max-width: 720px) {
  .page-shell {
    background: linear-gradient(180deg, #06143a 0%, #071a46 46%, #06143a 100%);
  }

  .page-shell main > section {
    margin-top: 0;
  }

  .page-shell main > section + section {
    border-top: 1px solid rgba(180, 205, 255, 0.13);
  }

  .objects-map-section,
  .video-showcase,
  .telegram-section,
  .ratings-section,
  .service-section {
    width: auto;
    margin-right: -9px;
    margin-left: -9px;
    transform: none;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .objects-map-section {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .video-showcase {
    padding-top: 40px;
    padding-bottom: 36px;
  }

  .telegram-section {
    padding-top: 38px;
    padding-bottom: 40px;
  }

  .ratings-section {
    padding-top: 42px;
    padding-bottom: 40px;
  }

  .service-section {
    padding-top: 44px;
    padding-bottom: 38px;
  }

  .ratings-note {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    width: min(calc(100% - 24px), 520px);
    gap: 12px;
    padding: 14px 18px;
    text-align: left;
  }

  .ratings-note__icon {
    width: 38px;
    height: 38px;
  }
}

@media (min-width: 1100px) {
  :root {
    --container: 100%;
  }

  body {
    background:
      linear-gradient(90deg, #dcecf6 0%, #f7fafc 12%, #f7fafc 88%, #dcecf6 100%);
  }

  .page-shell {
    width: calc(100% - clamp(40px, 4.4vw, 96px));
    max-width: none;
    padding-top: 24px;
  }

  .topbar {
    top: 18px;
    padding: 20px clamp(34px, 3.2vw, 64px);
    border-radius: 30px 30px 0 0;
    background: linear-gradient(180deg, rgba(9, 20, 52, 0.94) 0%, rgba(16, 34, 79, 0.86) 100%);
  }

  .brand {
    min-width: 320px;
    font-size: 21px;
  }

  .brand img {
    width: 54px;
    height: 54px;
  }

  .menu {
    gap: 26px;
    font-size: 16px;
    font-weight: 700;
  }

  .phone-link {
    min-width: 206px;
    padding: 15px 25px;
    text-align: center;
    font-size: 16px;
  }

  .hero {
    grid-template-columns: minmax(620px, 1fr) minmax(520px, 680px);
    grid-template-rows: auto auto;
    gap: 42px clamp(64px, 5vw, 104px);
    min-height: min(760px, calc(100vh - 132px));
    padding: clamp(54px, 4.2vw, 82px) clamp(64px, 5.8vw, 120px) 48px;
    border-radius: 0 0 34px 34px;
    background:
      radial-gradient(circle at 78% 20%, rgba(38, 116, 255, 0.32), transparent 34%),
      radial-gradient(circle at 34% 58%, rgba(29, 124, 255, 0.16), transparent 34%),
      linear-gradient(145deg, #06183f 0%, #082864 66%, #06183f 100%);
  }

  .hero h1 {
    max-width: 880px;
    font-size: clamp(76px, 5.7vw, 116px);
    line-height: 0.92;
  }

  .hero__tag {
    margin-bottom: 24px;
    font-size: 16px;
  }

  .hero__subtitle {
    max-width: 820px;
    margin-top: 20px;
    font-size: clamp(38px, 3.1vw, 54px);
  }

  .hero__lead {
    max-width: 840px;
    margin-top: 22px;
    color: rgba(232, 240, 255, 0.86);
    font-size: 22px;
    line-height: 1.46;
  }

  .hero__actions {
    margin-top: 34px;
  }

  .hero__actions .btn {
    min-height: 62px;
    padding: 0 28px;
    font-size: 16px;
  }

  .hero__main-cta {
    min-width: 236px;
  }

  .hero__media-proof {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    max-width: 880px;
    margin-top: 30px;
  }

  .hero-media-card {
    position: relative;
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 15px;
    align-items: center;
    min-height: 122px;
    overflow: hidden;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.06));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 18px 44px rgba(0, 0, 0, 0.18);
  }

  .hero-media-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.18), transparent 34%);
  }

  .hero-media-card__thumb,
  .hero-media-card__stack {
    position: relative;
    z-index: 1;
    display: block;
    width: 112px;
    height: 78px;
    overflow: hidden;
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.09);
  }

  .hero-media-card__thumb img,
  .hero-media-card__stack img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-media-card__play {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 34px;
    height: 34px;
    transform: translate(-50%, -50%);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.24);
  }

  .hero-media-card__play::before {
    content: "";
    position: absolute;
    left: 13px;
    top: 9px;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid #f22d2d;
  }

  .hero-media-card__stack {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
  }

  .hero-media-card__copy {
    position: relative;
    z-index: 1;
    display: grid;
    min-width: 0;
    gap: 5px;
  }

  .hero-media-card__copy small {
    color: #f0c78f;
    font-size: 12px;
    font-style: normal;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .hero-media-card__copy strong {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.1;
    font-weight: 900;
  }

  .hero-media-card__copy em {
    color: rgba(224, 235, 255, 0.78);
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.25;
  }

  .hero-media-card--youtube {
    border-color: rgba(255, 70, 70, 0.26);
  }

  .hero-media-card--telegram {
    border-color: rgba(43, 164, 255, 0.3);
  }

  .hero__visual {
    align-items: stretch;
    justify-content: flex-end;
  }

  .hero__expert-card {
    position: relative;
    width: min(100%, 680px);
    min-height: 650px;
    overflow: hidden;
    padding: 0;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.17);
    background: #071b47;
    box-shadow: 0 30px 74px rgba(0, 0, 0, 0.26);
  }

  .hero__photo-card {
    margin: 0;
    border-radius: 0;
  }

  .hero__photo-card img {
    height: 650px;
    object-position: center 23%;
  }

  .hero__expert-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, transparent 42%, rgba(5, 18, 48, 0.28) 66%, rgba(5, 18, 48, 0.94) 100%);
  }

  .hero__expert-info {
    position: absolute;
    right: 26px;
    bottom: 26px;
    left: 26px;
    z-index: 2;
    padding: 24px 26px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 22px;
    background: rgba(8, 25, 65, 0.82);
    backdrop-filter: blur(16px);
  }

  .hero__expert-info strong {
    max-width: 560px;
    font-size: 28px;
    line-height: 1.08;
  }

  .hero__expert-info span {
    max-width: 560px;
    font-size: 17px;
    line-height: 1.38;
  }

  .hero__expert-note {
    position: absolute;
    left: 26px;
    top: 26px;
    bottom: auto;
    z-index: 3;
    width: min(292px, calc(100% - 52px));
    margin: 0;
    padding: 16px 18px;
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.07));
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(16px);
  }

  .hero__expert-note strong {
    font-size: 17px;
    line-height: 1.24;
  }

  .hero__expert-note span {
    font-size: 14px;
    line-height: 1.38;
  }

  .hero__metrics {
    align-self: end;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 8px;
  }

  .metric {
    min-height: 112px;
    padding: 22px;
    border-radius: 22px;
  }

  .metric strong {
    font-size: 24px;
  }

  .metric span {
    margin-top: 9px;
    font-size: 15px;
    line-height: 1.38;
  }

  .service-section {
    width: 100%;
    margin: 48px 0 0;
    transform: none;
    padding: 64px clamp(42px, 4vw, 72px) 68px;
    border-radius: 34px;
    background:
      radial-gradient(circle at 75% 16%, rgba(38, 116, 255, 0.24), transparent 28%),
      radial-gradient(circle at 20% 62%, rgba(29, 124, 255, 0.13), transparent 30%),
      linear-gradient(145deg, #06183f 0%, #082864 66%, #06183f 100%);
    box-shadow: 0 28px 80px rgba(3, 23, 50, 0.18);
  }

  .service-section::after {
    opacity: 0.58;
  }

  .service-intro {
    max-width: 100%;
  }

  .service-intro h2 {
    max-width: 1180px;
    font-size: clamp(48px, 4.15vw, 72px);
  }

  .service-intro p {
    max-width: 760px;
    font-size: 18px;
  }

  .service-grid--showcase {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 40px;
  }

  .service-card {
    min-height: 190px;
    padding: 22px;
    border-radius: 22px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.06)),
      rgba(37, 54, 94, 0.44);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.2),
      0 18px 38px rgba(3, 13, 31, 0.22);
  }

  .service-card__top {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 17px;
  }

  .service-card__icon-image {
    width: 82px;
    height: 82px;
  }

  .service-card h3 {
    font-size: clamp(19px, 1.24vw, 23px);
  }

  .service-card__body p {
    max-width: none;
    font-size: 15.5px;
    line-height: 1.45;
  }

  .footer {
    grid-template-columns: minmax(300px, 380px) minmax(330px, 440px) minmax(520px, 1fr);
    align-items: start;
    gap: 24px 34px;
    margin-top: 18px;
    padding: 40px 42px 30px;
    border-radius: 34px;
  }

  .footer__content {
    display: contents;
    max-width: none;
  }

  .footer__eyebrow,
  .footer h2,
  .footer p,
  .footer__actions {
    grid-column: 2;
  }

  .footer__eyebrow {
    justify-self: start;
  }

  .footer__portrait {
    grid-column: 1;
    grid-row: 1 / 5;
    width: 100%;
    max-width: 380px;
    aspect-ratio: 4 / 4.85;
    margin: 0;
  }

  .footer h2 {
    max-width: 440px;
    margin-top: 14px;
    font-size: clamp(42px, 3.15vw, 60px);
  }

  .footer p {
    max-width: 430px;
    font-size: 16px;
    line-height: 1.55;
  }

  .footer__links {
    display: grid;
    grid-column: 3;
    grid-row: 1 / 5;
    align-self: start;
    gap: 12px;
    min-width: 0;
  }

  .footer__contact-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 0;
  }

  .footer__social {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 0;
  }

  .footer__bottom {
    grid-column: 1 / -1;
    margin-top: 8px;
  }

  .footer-social-card {
    min-height: 88px;
    padding: 14px;
    border-radius: 20px;
  }

  .footer-social-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 17px;
  }

  .footer-social-card strong {
    font-size: 18px;
    line-height: 1.06;
  }

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

@media (min-width: 1100px) and (max-width: 1320px) {
  .page-shell {
    width: calc(100% - 48px);
  }

  .hero {
    grid-template-columns: minmax(500px, 1fr) minmax(440px, 520px);
    gap: 36px;
    padding-right: 44px;
    padding-left: 44px;
  }

  .hero h1 {
    font-size: clamp(62px, 5vw, 78px);
  }

  .hero__subtitle {
    font-size: clamp(34px, 3vw, 44px);
  }

  .hero__lead {
    font-size: 19px;
  }

  .hero__media-proof {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .hero__expert-note {
    display: none;
  }
}

@media (min-width: 1100px) and (max-width: 1499px) {
  .footer {
    grid-template-columns: minmax(300px, 360px) minmax(0, 1fr);
    gap: 28px;
  }

  .footer__content {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: minmax(300px, 360px) minmax(0, 1fr);
    column-gap: 34px;
  }

  .footer__portrait {
    grid-column: 1;
    grid-row: 1 / 6;
  }

  .footer__eyebrow,
  .footer h2,
  .footer p,
  .footer__actions {
    grid-column: 2;
  }

  .footer__links {
    grid-column: 1 / -1;
    grid-row: auto;
  }

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

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

@media (min-width: 1500px) {
  .page-shell {
    width: min(calc(100% - clamp(56px, 5vw, 128px)), 1760px);
    max-width: 1760px;
  }

  .topbar {
    padding-right: clamp(40px, 3.8vw, 72px);
    padding-left: clamp(40px, 3.8vw, 72px);
  }

  .hero {
    grid-template-columns: minmax(500px, 560px) minmax(500px, 590px) minmax(320px, 360px);
    grid-template-areas:
      "content visual panel"
      "metrics metrics metrics";
    align-items: stretch;
    justify-content: center;
    gap: 32px;
    min-height: 735px;
    padding: 56px 58px 42px;
  }

  .hero__content {
    grid-area: content;
    align-self: center;
  }

  .hero__visual {
    grid-area: visual;
    align-self: center;
    justify-content: center;
  }

  .hero__desktop-panel {
    position: relative;
    z-index: 1;
    grid-area: panel;
    display: grid;
    align-self: center;
    align-content: stretch;
    gap: 14px;
    min-width: 0;
  }

  .hero__metrics {
    grid-area: metrics;
  }

  .hero h1 {
    max-width: 560px;
    font-size: clamp(72px, 4.2vw, 92px);
  }

  .hero__subtitle {
    max-width: 560px;
    font-size: clamp(38px, 2.45vw, 50px);
  }

  .hero__lead {
    max-width: 560px;
    font-size: 19px;
  }

  .hero__media-proof {
    display: none;
  }

  .hero__expert-card {
    width: min(100%, 590px);
    min-height: 590px;
  }

  .hero__photo-card img {
    height: 590px;
    object-position: center 20%;
  }

  .hero__expert-note {
    display: none;
  }

  .hero__expert-info {
    right: 24px;
    bottom: 24px;
    left: 24px;
    padding: 22px 24px;
  }

  .hero__expert-info strong {
    font-size: 24px;
  }

  .hero__expert-info span {
    font-size: 15px;
  }

  .hero-panel__top,
  .hero-panel-card,
  .hero-panel__facts {
    border: 1px solid rgba(166, 198, 255, 0.2);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.13), 0 18px 44px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(16px);
  }

  .hero-panel__top {
    padding: 22px;
    border-radius: 26px;
  }

  .hero-panel__eyebrow {
    display: inline-flex;
    margin-bottom: 13px;
    color: #f0c78f;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
  }

  .hero-panel__top strong {
    display: block;
    color: #ffffff;
    font-size: 24px;
    line-height: 1.08;
    font-weight: 900;
  }

  .hero-panel__top p {
    margin: 12px 0 0;
    color: rgba(226, 237, 255, 0.78);
    font-size: 14px;
    line-height: 1.5;
    font-weight: 700;
  }

  .hero-panel__media {
    display: grid;
    gap: 12px;
  }

  .hero-panel-card {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 15px;
    align-items: center;
    overflow: hidden;
    min-height: 94px;
    padding: 12px;
    border-radius: 22px;
  }

  .hero-panel-card__image {
    position: relative;
    display: block;
    width: 86px;
    height: 70px;
    overflow: hidden;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
  }

  .hero-panel-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-panel-card__image--stack {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
  }

  .hero-panel-card__play {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 32px;
    height: 32px;
    transform: translate(-50%, -50%);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
  }

  .hero-panel-card__play::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 9px;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 11px solid #f22d2d;
  }

  .hero-panel-card small {
    display: block;
    color: #f0c78f;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .hero-panel-card strong {
    display: block;
    margin-top: 4px;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.08;
    font-weight: 900;
  }

  .hero-panel-card em {
    display: block;
    margin-top: 5px;
    color: rgba(225, 236, 255, 0.74);
    font-size: 11px;
    line-height: 1.28;
    font-style: normal;
    font-weight: 700;
  }

  .hero-panel-card--youtube {
    border-color: rgba(255, 83, 83, 0.28);
  }

  .hero-panel-card--telegram {
    border-color: rgba(43, 164, 255, 0.3);
  }

  .hero-panel__facts {
    display: grid;
    gap: 10px;
    padding: 18px;
    border-radius: 24px;
  }

  .hero-panel__facts span {
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(238, 245, 255, 0.86);
    font-size: 14px;
    font-weight: 800;
  }

  .hero-panel__facts span::before {
    content: "";
    width: 8px;
    height: 8px;
    flex: 0 0 auto;
    border-radius: 999px;
    background: #27d47a;
    box-shadow: 0 0 0 5px rgba(39, 212, 122, 0.14);
  }

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

  .metric {
    min-height: 92px;
    padding: 20px;
  }

  .metric strong {
    font-size: 22px;
  }

  .metric span {
    font-size: 14px;
  }
}

@media (min-width: 1800px) {
  .hero {
    grid-template-columns: minmax(500px, 560px) minmax(520px, 610px) minmax(320px, 360px);
  }
}

@media (min-width: 721px) and (max-width: 1099px) {
  .hero {
    display: flex;
    flex-direction: column;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    min-height: 0;
    gap: 0;
    padding: 0 0 40px;
    border-radius: 28px;
    overflow: hidden;
  }

  .hero__content,
  .hero__visual,
  .hero__metrics {
    grid-column: 1;
    grid-row: auto;
  }

  .hero__visual {
    order: 1;
    width: 100%;
    padding: 0;
    justify-content: center;
  }

  .hero__expert-card {
    width: 100%;
    max-width: none;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .hero__photo-card {
    margin: 0;
    border: 0;
    border-radius: 0;
  }

  .hero__photo-card img {
    width: 100%;
    height: clamp(350px, 46vw, 500px);
    object-fit: cover;
    object-position: center 14%;
  }

  .hero__content {
    order: 2;
    display: block;
    padding: 26px 28px 0;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(44px, 7.2vw, 68px);
    line-height: 0.94;
    letter-spacing: -0.05em;
    white-space: normal;
  }

  .hero__subtitle {
    max-width: 100%;
    margin-top: 14px;
    font-size: clamp(34px, 5.2vw, 48px);
    line-height: 1.05;
    letter-spacing: -0.025em;
  }

  .hero__lead {
    display: block;
    max-width: 880px;
    margin-top: 14px;
    font-size: clamp(20px, 2.8vw, 26px);
    line-height: 1.34;
  }

  .hero__tag,
  .hero__desktop-panel,
  .hero__expert-info,
  .hero__expert-note {
    display: none;
  }

  .hero__metrics {
    display: none;
  }

  .hero__mobile-chips {
    display: none;
  }

  .hero__actions {
    width: 100%;
    margin-top: 24px;
  }

  .hero__actions .btn--ghost {
    display: none;
  }

  .hero__main-cta {
    width: 100%;
    min-height: 72px;
    justify-content: space-between;
    padding: 0 34px;
    border-radius: 999px;
    font-size: clamp(24px, 4vw, 34px);
    letter-spacing: -0.015em;
  }

  .hero__main-cta-icon,
  .hero__main-cta-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero__location-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: fit-content;
    max-width: calc(100% - 24px);
    min-height: 38px;
    margin: 16px auto 0;
    padding: 0 18px;
    border: 1px solid rgba(180, 205, 255, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(14px, 2.1vw, 18px);
    font-weight: 800;
    white-space: nowrap;
  }

  .hero__location-icon {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    background: transparent url("./images/ui-icon-location-clean.png") center / contain no-repeat;
  }

  .telegram-section {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 42px 20px 48px;
  }

  .telegram-section::after {
    display: none;
  }

  .telegram-section__intro h2 {
    max-width: 650px;
    font-size: clamp(54px, 8.2vw, 78px);
    line-height: 0.98;
  }

  .telegram-section__intro p {
    max-width: 720px;
    font-size: clamp(20px, 2.6vw, 26px);
    line-height: 1.42;
  }

  .telegram-dashboard {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
    border-radius: 28px;
  }

  .telegram-dashboard__sidebar {
    padding: 0;
    border: 0;
    background: transparent;
  }

  .telegram-dashboard__profile {
    padding: 16px;
    border-radius: 22px;
  }

  .telegram-feed__avatar {
    width: 66px;
    height: 66px;
    border-radius: 20px;
    font-size: 20px;
  }

  .telegram-dashboard__profile strong {
    font-size: clamp(22px, 3.1vw, 30px);
  }

  .telegram-dashboard__profile span {
    font-size: clamp(14px, 2vw, 18px);
  }

  .telegram-dashboard__topics,
  .telegram-dashboard__bar,
  .telegram-section__chips {
    display: none;
  }

  .telegram-dashboard__feed {
    gap: 14px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .telegram-message,
  .telegram-message--featured {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 14px;
    min-height: 124px;
    padding: 14px;
    border-radius: 22px;
  }

  .telegram-message img,
  .telegram-message--featured img {
    width: 112px;
    height: 96px;
    border-radius: 18px;
  }

  .telegram-message strong,
  .telegram-message--featured strong {
    margin-top: 8px;
    font-size: clamp(21px, 3vw, 28px);
    line-height: 1.1;
  }

  .telegram-message p {
    font-size: clamp(15px, 2.05vw, 18px);
    line-height: 1.32;
  }

  .telegram-message small {
    font-size: clamp(13px, 1.8vw, 16px);
  }

  .telegram-section__button {
    width: min(100%, 520px);
    min-height: 70px;
    font-size: clamp(20px, 2.8vw, 28px);
  }

  .telegram-dashboard__footer {
    display: grid;
    gap: 14px;
  }

  .footer {
    grid-template-columns: 1fr;
  }

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

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

@media (min-width: 1100px) and (max-width: 1499px) {
  .hero__expert-note {
    display: none;
  }
}

@media (max-width: 1099px) {
  .hero {
    min-height: 0;
    padding-bottom: clamp(34px, 5vw, 46px);
  }
}

@media (min-width: 1100px) and (max-width: 1320px) {
  .hero__photo-card img {
    object-position: center 4%;
  }
}
