@font-face {
  font-family: "Onest";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/onest/onest-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Onest";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/onest/onest-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --font-main: "Onest", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --bg: #050711;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, .78);
  --soft: rgba(255, 255, 255, .62);
  --blue: #2478e8;
  --blue-light: #4a93ff;
  --blue-deep: #1558c7;
  --red: #ff4d6d;
  --cyan: #7bdcff;
  --orange: #ff6a00;
  --orange-light: #ff8a1f;
  --line: rgba(255, 255, 255, .16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-main);
  line-height: 1.5;
  font-weight: 450;
}

button,
input,
select,
textarea {
  font: inherit;
}

.header-phone,
.hero-cta__phone,
.packages-card__price,
.packages-card__price-value,
.packages-card__price-prefix,
.packages-card__price-currency,
.calculator-summary,
.final-cta,
.lead-modal,
.cookie-notice {
  font-variant-numeric: tabular-nums;
}

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

svg {
  display: block;
}

.nowrap {
  white-space: nowrap;
}

.container {
  width: min(1500px, calc(100% - 80px));
  margin: 0 auto;
}

.page-shell {
  min-height: 100vh;
  background: var(--bg);
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  background: linear-gradient(180deg, rgba(4, 6, 16, .9), rgba(4, 6, 16, .44), transparent);
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 8px;
  filter: drop-shadow(0 0 16px rgba(255, 205, 112, .38));
}

.brand-name {
  font-size: 23px;
  font-weight: 600;
  letter-spacing: .03em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 3.2vw, 48px);
  color: rgba(255, 255, 255, .76);
  font-size: 15px;
  font-weight: 550;
}

.main-nav a,
.header-phone {
  transition: color .18s ease, border-color .18s ease;
}

.main-nav a:hover,
.header-phone:hover {
  color: #fff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  flex: 0 0 auto;
}

.header-contact {
  display: grid;
  gap: 4px;
  justify-items: end;
  text-align: right;
}

.header-phone {
  color: rgba(255, 255, 255, .9);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.05;
  white-space: nowrap;
}

.header-contact span {
  color: rgba(255, 255, 255, .58);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.header-actions .btn {
  min-height: 46px;
  border-radius: 14px;
  padding: 0 28px;
  font-size: 14px;
}

.header-actions .btn-primary {
  height: 46px;
  border-radius: 14px;
}

.btn {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 16px 28px;
  font-size: 16px;
  font-weight: 760;
  line-height: 1.1;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    border-color .18s ease,
    background .18s ease,
    filter .18s ease;
}

.btn-primary {
  position: relative;
  height: 54px;
  min-height: 54px;
  padding: 0 34px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(180deg, var(--blue-light) 0%, var(--blue) 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .01em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .18),
    0 10px 24px rgba(36, 120, 232, .28),
    0 0 34px rgba(36, 120, 232, .16);
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 45%;
  height: 100%;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(255, 255, 255, .22) 50%,
    transparent 100%
  );
  transform: skewX(-18deg);
  transition: left .65s ease;
  pointer-events: none;
}

.btn-secondary {
  height: 54px;
  min-height: 54px;
  padding: 0 30px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .14);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .045);
  backdrop-filter: blur(10px);
}

.btn-max {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-max__icon {
  width: 20px;
  height: 20px;
  display: block;
  flex: 0 0 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .84;
  filter: saturate(.85) brightness(.96);
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 164px 0 84px;
  isolation: isolate;
}

@media (min-width: 1500px) and (min-height: 880px) {
  .hero {
    min-height: min(100vh, 920px);
  }
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: clamp(150px, 18vh, 230px);
  pointer-events: none;
  background: linear-gradient(180deg, rgba(5, 8, 22, 0) 0%, rgba(5, 8, 22, .72) 62%, #050816 100%);
}

.hero-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-photo-layer {
  z-index: -4;
  left: 37%;
  width: 63%;
  background: url("../images/hero-birthday.webp?v=20260511-magic") 68% 43% / cover no-repeat;
  filter: saturate(1.22) contrast(1.09) brightness(1.38);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .76) 12%, #000 25%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .76) 12%, #000 25%, #000 100%);
}

.hero-dark-layer {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(4, 6, 16, .98) 0%, rgba(4, 6, 16, .9) 33%, rgba(4, 6, 16, .2) 58%, rgba(4, 6, 16, 0) 100%),
    linear-gradient(180deg, rgba(4, 6, 16, .36) 0%, rgba(4, 6, 16, 0) 44%, rgba(4, 6, 16, .38) 100%);
}

.hero-atmosphere-layer {
  z-index: -2;
  background:
    radial-gradient(circle at 20% 22%, rgba(36, 85, 255, .16), transparent 34%),
    radial-gradient(circle at 86% 32%, rgba(157, 58, 255, .22), transparent 32%),
    radial-gradient(circle at 70% 86%, rgba(255, 106, 0, .1), transparent 30%);
}

.hero-atmosphere-layer::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .25;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, .88) 0 1px, transparent 1.4px),
    radial-gradient(circle, rgba(123, 220, 255, .5) 0 1px, transparent 1.4px);
  background-position: 7% 22%, 21% 66%;
  background-size: 140px 120px, 210px 180px;
  mask-image: linear-gradient(90deg, #000, transparent 64%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 50%) minmax(0, 50%);
  align-items: center;
  gap: 30px;
}

.hero-content {
  max-width: 860px;
  transform: translate(16px, -70px);
}

.hero-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, .8);
  font-size: 18px;
  font-weight: 500;
}

.meta-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.meta-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  color: rgba(255, 255, 255, .82);
}

.meta-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.meta-separator {
  color: rgba(255, 255, 255, .5);
}

.hero-title {
  margin: 0;
  max-width: 860px;
  font-size: clamp(52px, 4.45vw, 77px);
  color: #fff;
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: .01em;
  text-transform: uppercase;
}

.hero-title span {
  display: block;
}

.hero-title span:first-child {
  white-space: nowrap;
}

.hero-title strong {
  font: inherit;
  color: var(--blue-light);
  font-weight: 800;
  white-space: nowrap;
  text-shadow: 0 0 22px rgba(52, 120, 255, .3);
}

.hero-title .hero-title-accent {
  color: var(--blue-light);
}

.hero-title span:last-child {
  white-space: nowrap;
}

.hero-subtitle {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(17px, 1.28vw, 21px);
  line-height: 1.52;
}

.hero-cta {
  width: min(650px, 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-top: 28px;
}

.hero-cta,
.hero-cta__row,
.hero-discount,
.hero-discount__inner {
  box-sizing: border-box;
}

.hero-cta__row {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.hero-cta .btn {
  min-height: 54px;
  padding-inline: 32px;
  font-size: 16px;
}

.hero-cta .btn-primary {
  min-width: 306px;
}

.hero-discount-toggle {
  width: 322px;
  min-width: 322px;
  height: 54px;
  border-radius: 16px;
  border-color: rgba(74, 147, 255, .28);
  background: linear-gradient(180deg, rgba(74, 147, 255, .22), rgba(36, 120, 232, .12));
  color: #fff;
  font-weight: 650;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .08),
    0 10px 24px rgba(36, 120, 232, .12),
    0 0 26px rgba(36, 120, 232, .1);
  backdrop-filter: blur(10px);
}

.hero-discount-toggle.is-open {
  border-color: rgba(72, 118, 255, .62);
  background: rgba(64, 107, 255, .095);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .07),
    0 0 24px rgba(59, 130, 246, .2);
}

.btn__chevron {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .86;
  transition: transform .28s ease;
}

.hero-discount-toggle.is-open .btn__chevron {
  transform: rotate(180deg);
}

.hero-discount {
  width: min(560px, 100%);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition:
    max-height .3s ease,
    opacity .25s ease,
    transform .3s ease;
}

.hero-discount.is-open {
  max-height: 360px;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero-discount__inner {
  padding: 22px;
  border: 1px solid rgba(72, 118, 255, .46);
  border-radius: 22px;
  background: rgba(7, 10, 28, .76);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .06),
    0 0 28px rgba(59, 130, 246, .16),
    0 18px 42px rgba(0, 0, 0, .24);
  backdrop-filter: blur(14px);
}

.hero-discount__title {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(13.2px, 1vw, 17px);
  font-weight: 650;
  line-height: 1.35;
}

.hero-discount__title-line {
  display: block;
  color: #fff;
  white-space: nowrap;
}

.hero-discount__title-accent {
  display: block;
  color: var(--blue-light);
  white-space: nowrap;
}

.hero-discount__form {
  display: grid;
  gap: 12px;
}

.hero-discount__form input[type="tel"] {
  width: 100%;
  height: 54px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .94);
  color: #050711;
  padding: 0 20px;
  font: inherit;
  font-size: 16px;
  outline: none;
}

.hero-discount__form input[type="tel"]::placeholder {
  color: rgba(5, 7, 17, .48);
}

.hero-discount__form input[type="tel"]:focus {
  box-shadow:
    0 0 0 3px rgba(52, 120, 255, .2),
    0 0 22px rgba(52, 120, 255, .16);
}

.hero-discount__form .btn {
  width: 100%;
}

.hero-discount__agree {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: rgba(255, 255, 255, .68);
  font-size: 11px;
  line-height: 1.36;
}

.hero-discount__agree input {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  margin: 1px 0 0;
  accent-color: var(--blue);
}

.hero-discount__agree a {
  color: rgba(255, 255, 255, .86);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, .36);
  text-underline-offset: 2px;
}

.form-success {
  margin: 0;
  color: rgba(255, 255, 255, .9);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

.form-success[hidden] {
  display: none;
}



.hero-cta__phone {
  display: none;
}

.mobile-call-cta__label,
.mobile-call-cta__number {
  display: block;
  line-height: 1.1;
}

.mobile-call-cta__number {
  font-size: 13px;
  font-weight: 650;
  color: rgba(255, 255, 255, .74);
}

.hero-cta__max {
  width: 322px;
  min-width: 322px;
  min-height: 48px;
  border-color: rgba(255, 255, 255, .085);
  background: rgba(255, 255, 255, .026);
  color: rgba(255, 255, 255, .72);
  box-shadow: none;
}

.hero-cta .btn-max__icon {
  width: 18px;
  height: 18px;
  flex-basis: 18px;
  opacity: .82;
  filter: saturate(.86) brightness(1.02);
}

@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover {
    transform: translateY(-2px);
    filter: brightness(1.04);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, .22),
      0 14px 30px rgba(36, 120, 232, .32),
      0 0 42px rgba(36, 120, 232, .18);
  }

  .btn-primary:hover::before {
    left: 125%;
  }

  .btn-secondary:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, .085);
    border-color: rgba(255, 255, 255, .24);
  }

  .hero-cta__max:hover {
    background: rgba(255, 255, 255, .045);
    border-color: rgba(255, 255, 255, .13);
    color: rgba(255, 255, 255, .86);
  }

  .hero-discount-toggle:hover {
    transform: translateY(-2px);
    background: linear-gradient(180deg, rgba(74, 147, 255, .3), rgba(36, 120, 232, .17));
    border-color: rgba(74, 147, 255, .42);
  }
}

.btn-primary:active {
  transform: translateY(0);
  filter: brightness(.98);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .12),
    0 6px 14px rgba(36, 120, 232, .2),
    0 0 22px rgba(36, 120, 232, .12);
}

.btn-secondary:active {
  transform: translateY(0);
}

.btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, .78);
  outline-offset: 3px;
}

@media (hover: none), (pointer: coarse) {
  .btn:focus,
  .btn:focus-visible {
    outline: none;
  }
}

.hero-visual {
  min-height: 580px;
}

.organization {
  position: relative;
  min-height: max(900px, 100svh);
  overflow: hidden;
  isolation: isolate;
  padding: 54px 0 70px;
  background:
    radial-gradient(circle at 78% 24%, rgba(126, 40, 255, .24), transparent 31%),
    radial-gradient(circle at 70% 79%, rgba(255, 107, 23, .08), transparent 25%),
    radial-gradient(circle at 26% 18%, rgba(44, 92, 255, .14), transparent 32%),
    linear-gradient(180deg, #040611 0%, #050711 58%, #040611 100%);
}

.organization::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: .28;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, .64) 0 1px, transparent 1.4px),
    radial-gradient(circle, rgba(109, 88, 255, .5) 0 1.2px, transparent 1.6px);
  background-position: 7% 12%, 78% 9%;
  background-size: 210px 180px, 270px 220px;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, .64) 48%, transparent 82%);
}

.organization .container {
  width: min(1414px, calc(100% - 124px));
}

.organization-inner {
  position: static;
  z-index: 1;
  min-height: 790px;
}

.organization-content {
  position: relative;
  z-index: 2;
  max-width: 930px;
}

.section-title {
  margin: 0;
  color: #fff;
  font-size: clamp(58px, 4.65vw, 72px);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-bridge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(18px, 1.24vw, 23px);
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: .035em;
  text-transform: uppercase;
  text-shadow: 0 0 22px rgba(52, 120, 255, .18);
}

.section-bridge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-light);
  box-shadow: 0 0 20px rgba(36, 120, 232, .5);
}

.section-title span {
  display: block;
}

.section-title strong {
  color: var(--blue);
  font: inherit;
  text-shadow: 0 0 22px rgba(52, 120, 255, .24);
}

.section-subtitle {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .88);
  font-size: 22px;
  line-height: 1.42;
}

.choice-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: 18px;
  margin-top: 34px;
  max-width: 820px;
}

.choice-card {
  position: relative;
  height: 100%;
  min-height: 0;
  padding: 32px 36px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(15, 17, 29, .83), rgba(5, 7, 17, .76)),
    rgba(5, 7, 17, .7);
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .055),
    0 26px 64px rgba(0, 0, 0, .38);
  backdrop-filter: blur(10px);
}

.choice-card--no {
  background: rgba(20, 24, 38, .72);
  border-color: rgba(255, 78, 110, .45);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .052),
    0 26px 64px rgba(0, 0, 0, .38),
    0 0 24px rgba(255, 78, 110, .045);
}

.choice-card--yes {
  border-color: rgba(64, 107, 255, .72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .052),
    0 26px 64px rgba(0, 0, 0, .38),
    0 0 42px rgba(64, 107, 255, .13);
}

.choice-card__head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 22px;
  border-bottom: 1px dotted rgba(255, 255, 255, .2);
}

.choice-card--no .choice-card__head {
  border-bottom-color: rgba(255, 78, 110, .24);
}

.choice-card--yes .choice-card__head {
  border-bottom-color: rgba(64, 107, 255, .38);
}

.choice-card__head h3 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: uppercase;
}

.choice-card--no h3 {
  color: rgba(255, 92, 122, .92);
}

.choice-card--yes h3 {
  color: #5d82ff;
}

.choice-mark {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 46px;
  border-radius: 50%;
  color: #050711;
}

.choice-card--no .choice-mark {
  background: rgba(255, 78, 110, .82);
}

.choice-card--yes .choice-mark {
  background: var(--blue);
}

.choice-mark svg,
.choice-list svg,
.lead-modal__close svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.choice-list li {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  align-items: start;
  gap: 15px;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(15px, .95vw, 17px);
  line-height: 1.55;
  white-space: normal;
}

.choice-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.choice-card--no .choice-list span {
  color: var(--red);
}

.choice-card--yes .choice-list span {
  color: var(--blue-light);
}

.organization-summary {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.45;
}

.organization-action {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 26px;
}

.organization-cta {
  width: 388px;
  height: 70px;
  min-height: 70px;
  border-radius: 15px;
  font-size: 21px;
}

.organization-note {
  position: relative;
  top: -14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .92);
  transform: none !important;
  animation: none !important;
  transition: none !important;
  will-change: auto;
  pointer-events: none;
}

.cta-note-arrow {
  position: relative;
  top: 5px;
  display: block;
  width: 72px;
  height: 34px;
  margin-left: -4px;
  transform: none !important;
  flex-shrink: 0;
  opacity: .9;
  fill: none;
  stroke: rgba(255, 255, 255, .92);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 1px 2px rgba(255, 255, 255, .08)) drop-shadow(0 4px 10px rgba(0, 0, 0, .22));
  animation: none !important;
  transition: none !important;
  will-change: auto;
}

.organization-note span {
  font-family: var(--font-main);
  font-size: 19px;
  line-height: 1.18;
  font-weight: 750;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .45);
  animation: none !important;
  transition: none !important;
  transform: none !important;
  will-change: auto;
}

.organization-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: auto;
  min-height: 0;
  border-radius: 0;
  background: url("../images/organization-parent-wide.webp?v=20260511-parents") 72% center / cover no-repeat;
  filter: saturate(1.04) contrast(1.03) brightness(1.02);
  opacity: 1;
}

.organization-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  background:
    linear-gradient(90deg, rgba(4, 6, 17, .86) 0%, rgba(4, 6, 17, .52) 38%, rgba(4, 6, 17, .12) 66%, rgba(4, 6, 17, .04) 100%),
    linear-gradient(180deg, rgba(4, 6, 17, .22) 0%, transparent 18%, rgba(4, 6, 17, .2) 100%);
}

@media (min-width: 981px) {
  .hero-content {
    transform: translate(clamp(46px, 4.8vw, 104px), -70px);
  }

  .organization-content {
    transform: translateY(38px);
  }
}

.packages {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 132px 0 138px;
  background: #050711 url("../images/packages-bg.webp") center center / cover no-repeat;
}

.packages::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 22% 18%, rgba(52, 120, 255, .18), transparent 32%),
    radial-gradient(circle at 72% 44%, rgba(118, 48, 255, .18), transparent 34%),
    linear-gradient(180deg, rgba(3, 5, 15, .74) 0%, rgba(3, 5, 15, .82) 46%, rgba(3, 5, 15, .88) 100%);
}

.packages .container {
  width: min(1500px, calc(100% - 56px));
}

.packages-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 18px;
  margin-bottom: 48px;
}

.packages-title {
  margin: 0;
  color: #fff;
  font-size: clamp(48px, 4.5vw, 72px);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: 0;
  text-transform: uppercase;
}

.packages-title strong {
  color: var(--blue);
  font: inherit;
  text-shadow: 0 0 22px rgba(52, 120, 255, .24);
}

.packages-subtitle {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, .86);
  font-size: 20px;
  line-height: 1.55;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.packages-card {
  position: relative;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 27px;
  background: linear-gradient(180deg, rgba(20, 14, 45, .72), rgba(8, 12, 36, .82));
  box-shadow: 0 28px 80px rgba(0, 0, 0, .34);
  backdrop-filter: blur(12px);
}

.packages-card--featured {
  border-color: rgba(74, 147, 255, .72);
  box-shadow:
    0 30px 86px rgba(0, 0, 0, .38),
    0 0 38px rgba(36, 120, 232, .26),
    inset 0 0 32px rgba(36, 120, 232, .09);
  transform: translateY(-8px) scale(1.025);
  z-index: 1;
}

.packages-card__ribbon {
  position: absolute;
  top: -15px;
  left: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 31px;
  padding: 0 16px;
  border: 1px solid rgba(74, 147, 255, .38);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(74, 147, 255, .9), rgba(36, 120, 232, .86));
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .13),
    0 7px 16px rgba(36, 120, 232, .12),
    0 0 10px rgba(36, 120, 232, .08);
  transform: translateX(-50%);
  pointer-events: none;
}

.packages-card__ribbon svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.packages-card__image {
  width: 100%;
  height: clamp(250px, 19vw, 310px);
  display: block;
  aspect-ratio: 16 / 10.8;
  object-fit: cover;
  border: 1px solid rgba(135, 74, 255, .42);
  border-radius: 20px;
}

.packages-card--featured .packages-card__image {
  border-color: rgba(74, 147, 255, .68);
}

.packages-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px 4px 2px;
}

.packages-card h3 {
  min-height: 1.96em;
  display: flex;
  align-items: flex-start;
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(27px, 1.85vw, 34px);
  font-weight: 700;
  line-height: .98;
  letter-spacing: 0;
  text-transform: uppercase;
}

.packages-card__accent {
  width: 36px;
  height: 3px;
  display: block;
  margin: 0 0 18px;
  border-radius: 999px;
  background: rgba(155, 91, 255, .88);
  box-shadow: 0 0 14px rgba(155, 91, 255, .32);
}

.packages-card--featured .packages-card__accent {
  background: rgba(74, 147, 255, .95);
  box-shadow: 0 0 16px rgba(36, 120, 232, .34);
}

.packages-card:nth-child(3) .packages-card__accent {
  background: rgba(111, 82, 255, .9);
  box-shadow: 0 0 14px rgba(111, 82, 255, .3);
}

.packages-card:nth-child(4) .packages-card__accent {
  background: rgba(172, 92, 255, .88);
  box-shadow: 0 0 14px rgba(172, 92, 255, .3);
}

.packages-card p {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, .78);
  font-size: 19px;
  line-height: 1.5;
}

.packages-card__list {
  display: grid;
  gap: 9px;
  margin: -10px 0 18px;
  padding: 0;
  color: rgba(255, 255, 255, .74);
  font-size: 15px;
  line-height: 1.38;
  list-style: none;
}

.packages-card__list li {
  position: relative;
  padding-left: 18px;
}

.packages-card__list li::before {
  content: "";
  position: absolute;
  top: .63em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(74, 147, 255, .92);
  box-shadow: 0 0 10px rgba(74, 147, 255, .34);
  transform: translateY(-50%);
}

.packages-card__note {
  margin-bottom: 18px;
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 12px;
  background: rgba(255, 255, 255, .055);
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  line-height: 1.38;
}

.packages-card__price {
  display: block;
  width: fit-content;
  margin-top: auto;
  margin-bottom: 24px;
  color: #fff;
  font-size: clamp(36px, 2.25vw, 38px);
  line-height: 1;
  white-space: nowrap;
}

.packages-card__price-value {
  display: inline;
  font-size: 1em;
  font-weight: 620;
  line-height: 1;
  letter-spacing: .01em;
}

.packages-card__price-prefix {
  display: inline;
  margin-right: 0;
  font-size: .48em;
  font-weight: 620;
  line-height: 1;
  color: rgba(255, 255, 255, .72);
  position: relative;
  top: -.04em;
}

.packages-card__price-currency {
  display: inline;
  font-size: .5em;
  font-weight: 620;
  line-height: 1;
  position: relative;
  top: -.02em;
}

.packages-card__button {
  width: 100%;
  min-height: 56px;
  border-radius: 14px;
  font-size: 17px;
  gap: 12px;
}

.packages-card--featured .packages-card__button {
  min-height: 60px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .2),
    0 14px 34px rgba(36, 120, 232, .34),
    0 0 46px rgba(36, 120, 232, .18);
}

.packages-card__button-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .95;
}

.packages-card__button.btn-secondary {
  border-color: rgba(74, 147, 255, .28);
  background: linear-gradient(180deg, rgba(74, 147, 255, .22), rgba(36, 120, 232, .12));
  color: #fff;
  font-weight: 650;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .08),
    0 10px 24px rgba(36, 120, 232, .12),
    0 0 26px rgba(36, 120, 232, .1);
  backdrop-filter: blur(10px);
}

.packages-card__button.btn-secondary .packages-card__button-icon {
  color: rgba(128, 179, 255, .96);
}

.packages-card__button.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(74, 147, 255, .42);
  background: linear-gradient(180deg, rgba(74, 147, 255, .3), rgba(36, 120, 232, .17));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .1),
    0 14px 30px rgba(36, 120, 232, .16),
    0 0 34px rgba(36, 120, 232, .13);
}

.packages-card__button.btn-secondary:active {
  transform: translateY(0);
  filter: brightness(.98);
}

.packages-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.packages-proof__item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, .84);
  font-size: 17px;
  line-height: 1.42;
}

.packages-proof__item > span:last-child {
  min-width: 0;
  overflow-wrap: anywhere;
}

.packages-proof__icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(155, 91, 255, .32);
  border-radius: 50%;
  color: rgba(180, 118, 255, .82);
  background: rgba(120, 72, 255, .055);
  box-shadow: 0 0 14px rgba(122, 74, 255, .07);
}

.packages-proof__icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.programs {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 128px 0 136px;
  background:
    #050711 url("../images/programs-hero.webp") center top / 100% auto no-repeat;
}

.programs::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 36%, rgba(52, 120, 255, .14), transparent 34%),
    radial-gradient(circle at 72% 58%, rgba(141, 55, 255, .16), transparent 40%),
    linear-gradient(180deg, rgba(5, 7, 17, .08) 0%, rgba(5, 7, 17, .42) 36%, rgba(5, 7, 17, .86) 68%, #050711 100%);
}

.programs::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 7, 17, .96) 0%, rgba(5, 7, 17, .82) 35%, rgba(5, 7, 17, .38) 70%, rgba(5, 7, 17, .62) 100%),
    linear-gradient(180deg, rgba(5, 7, 17, .24), rgba(5, 7, 17, .5) 48%, #050711 92%);
}

.programs-visual {
  display: none;
}

.programs .container {
  width: min(1660px, calc(100% - 28px));
}

.programs-head {
  max-width: 760px;
}

.programs-title {
  margin: 0;
  color: #fff;
  font-size: clamp(48px, 4.45vw, 72px);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: 0;
  text-transform: uppercase;
}

.programs-title span {
  display: block;
}

.programs-title strong {
  color: var(--blue);
  font: inherit;
  text-shadow: 0 0 22px rgba(52, 120, 255, .24);
}

.programs-subtitle {
  max-width: 650px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, .86);
  font-size: 20px;
  line-height: 1.55;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 50px;
}

.program-card {
  min-height: 540px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(72, 118, 255, .34);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(16, 18, 42, .74), rgba(6, 9, 26, .86)),
    rgba(8, 10, 28, .8);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .05),
    0 26px 70px rgba(0, 0, 0, .28);
  backdrop-filter: blur(12px);
}

.program-card:nth-child(3),
.program-card:nth-child(5) {
  border-color: rgba(155, 91, 255, .42);
}

.program-card__media {
  position: relative;
  height: clamp(206px, 15.2vw, 262px);
  overflow: hidden;
  background: rgba(15, 17, 36, .8);
}

.program-card__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 30%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(5, 7, 17, .48));
}

.program-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.03) brightness(1);
}

.program-card:nth-child(1) .program-card__media img {
  object-position: center 42%;
  filter: saturate(1.05) contrast(1.02) brightness(1);
}

.program-card:nth-child(3) .program-card__media img {
  object-position: center 40%;
  filter: saturate(1.05) contrast(1.02) brightness(1);
}

.program-card:nth-child(4) .program-card__media img {
  object-position: 42% center;
}

.program-card:nth-child(5) .program-card__media img {
  object-position: center center;
}

.program-card:nth-child(2) .program-card__media img {
  object-position: center center;
  filter: saturate(1.04) contrast(1.03) brightness(1);
}

.program-card:nth-child(2) .program-card__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 38% 36%, transparent 0 34%, rgba(32, 54, 120, .06) 58%, rgba(5, 7, 17, .08) 100%),
    linear-gradient(180deg, rgba(16, 24, 68, .02), rgba(5, 7, 17, .06));
}

.program-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px 23px 25px;
}

.program-card h3 {
  min-height: 3.12em;
  display: flex;
  align-items: flex-start;
  margin: 0 0 13px;
  color: #fff;
  font-size: clamp(22px, 1.42vw, 27px);
  font-weight: 650;
  line-height: 1.04;
  letter-spacing: 0;
  text-transform: uppercase;
}

.program-card p {
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
  line-height: 1.52;
}

.program-card__accent {
  width: 48px;
  height: 3px;
  display: block;
  flex: 0 0 auto;
  margin: 0 0 22px;
  border-radius: 999px;
  background: rgba(111, 82, 255, .92);
  box-shadow: 0 0 14px rgba(111, 82, 255, .3);
}

.program-card:nth-child(1) .program-card__accent,
.program-card:nth-child(3) .program-card__accent,
.program-card:nth-child(5) .program-card__accent {
  background: rgba(155, 91, 255, .9);
  box-shadow: 0 0 14px rgba(155, 91, 255, .28);
}

.programs-action {
  display: grid;
  justify-items: center;
  gap: 18px;
  margin-top: 28px;
}

.programs-cta {
  min-width: 430px;
  height: 64px;
  border-radius: 18px;
  font-size: 20px;
}

.programs-action p {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: rgba(255, 255, 255, .74);
  font-size: 16px;
  line-height: 1.4;
}

.programs-action p span {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .78);
}

.programs-action p svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.calculator {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 126px 0 138px;
  background:
    radial-gradient(circle at 12% 16%, rgba(36, 120, 232, .12), transparent 28%),
    radial-gradient(circle at 88% 38%, rgba(146, 55, 255, .22), transparent 36%),
    radial-gradient(circle at 56% 78%, rgba(52, 120, 255, .12), transparent 34%),
    linear-gradient(180deg, #050711 0%, #070817 44%, #050711 100%);
}

.calculator::before {
  content: "";
  position: absolute;
  inset: 12% -10% auto auto;
  z-index: -1;
  width: 54vw;
  height: 54vw;
  max-width: 760px;
  max-height: 760px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(111, 70, 255, .28), rgba(52, 120, 255, .1) 34%, transparent 68%);
  filter: blur(18px);
}

.calculator .container {
  width: min(1280px, calc(100% - 56px));
}

.calculator-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(520px, 1.12fr);
  gap: clamp(42px, 5vw, 72px);
  align-items: center;
  padding: clamp(34px, 3.2vw, 48px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 34px;
  background:
    radial-gradient(circle at 0% 0%, rgba(36, 120, 232, .18), transparent 32%),
    radial-gradient(circle at 96% 22%, rgba(145, 67, 255, .3), transparent 34%),
    linear-gradient(135deg, rgba(10, 8, 24, .86), rgba(8, 10, 26, .72));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .08),
    inset 0 0 0 1px rgba(105, 66, 255, .1),
    0 34px 90px rgba(0, 0, 0, .4),
    0 0 60px rgba(89, 55, 255, .12);
  backdrop-filter: blur(16px);
}

.calculator-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(36, 120, 232, .22), transparent 22%, transparent 72%, rgba(155, 91, 255, .28)),
    linear-gradient(180deg, rgba(255, 255, 255, .05), transparent 22%);
  opacity: .58;
}

.calculator-copy,
.calculator-form {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.calculator-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-light);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.calculator-label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-light);
  box-shadow: 0 0 18px rgba(36, 120, 232, .5);
}

.calculator-title {
  max-width: 520px;
  margin: 30px 0 0;
  color: #fff;
  font-size: clamp(44px, 4.15vw, 66px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: 0;
  text-transform: uppercase;
}

.calculator-title span {
  display: block;
}

.calculator-title strong {
  color: var(--blue);
  font: inherit;
  text-shadow: 0 0 24px rgba(52, 120, 255, .28);
}

.calculator-subtitle {
  max-width: 520px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: 20px;
  line-height: 1.55;
}

.calculator-list {
  display: grid;
  gap: 18px;
  margin: 42px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, .88);
  font-size: 22px;
  line-height: 1.32;
  list-style: none;
}

.calculator-list li {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.calculator-list span {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
  filter: drop-shadow(0 0 12px rgba(36, 120, 232, .26));
}

.calculator-list svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.calculator-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(99, 74, 255, .18), transparent 38%),
    linear-gradient(180deg, rgba(21, 20, 48, .74), rgba(12, 12, 30, .78));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .06),
    0 24px 64px rgba(0, 0, 0, .28);
  backdrop-filter: blur(14px);
}

.calculator-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
}

.calculator-field > span {
  color: rgba(255, 255, 255, .9);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.calculator-field input,
.calculator-field select {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 16px;
  background: rgba(255, 255, 255, .055);
  color: #fff;
  padding: 0 18px;
  font: inherit;
  font-size: 16px;
  outline: none;
  transition:
    border-color .18s ease,
    box-shadow .18s ease,
    background .18s ease;
}

.calculator-field select {
  cursor: pointer;
}

.custom-select__source {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.custom-select {
  position: relative;
  width: 100%;
  min-width: 0;
  z-index: 1;
}

.custom-select.is-open {
  z-index: 40;
}

.custom-select__button {
  width: 100%;
  min-width: 0;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid rgba(74, 147, 255, .28);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(74, 147, 255, .16), rgba(255, 255, 255, .045)),
    rgba(255, 255, 255, .045);
  color: #fff;
  padding: 0 18px;
  font: inherit;
  font-size: 16px;
  text-align: left;
  cursor: pointer;
  outline: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .06),
    0 0 0 rgba(74, 147, 255, 0);
  transition:
    border-color .18s ease,
    box-shadow .18s ease,
    background .18s ease;
}

.custom-select.is-open .custom-select__button,
.custom-select__button:focus-visible {
  border-color: rgba(74, 147, 255, .62);
  background:
    linear-gradient(180deg, rgba(74, 147, 255, .22), rgba(255, 255, 255, .06)),
    rgba(255, 255, 255, .055);
  box-shadow:
    0 0 0 3px rgba(52, 120, 255, .14),
    0 0 30px rgba(52, 120, 255, .14);
}

.custom-select__value {
  min-width: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, .94);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.custom-select__chevron {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: rgba(255, 255, 255, .82);
  transition: transform .18s ease;
}

.custom-select__chevron path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.custom-select.is-open .custom-select__chevron {
  transform: rotate(180deg);
}

.custom-select__menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 30;
  display: grid;
  gap: 3px;
  max-height: 282px;
  overflow-y: auto;
  padding: 8px 10px 8px 8px;
  border: 1px solid rgba(74, 147, 255, .38);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(74, 147, 255, .18), transparent 42%),
    linear-gradient(180deg, #101530 0%, #07091a 100%);
  box-shadow:
    0 22px 54px rgba(0, 0, 0, .48),
    0 0 30px rgba(74, 147, 255, .16),
    inset 0 1px 0 rgba(255, 255, 255, .06);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  visibility: hidden;
  transition:
    opacity .16s ease,
    transform .16s ease,
    visibility .16s ease;
  scrollbar-color: rgba(127, 176, 255, .24) transparent;
  scrollbar-width: thin;
}

.custom-select.is-open .custom-select__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.custom-select__menu::-webkit-scrollbar {
  width: 4px;
}

.custom-select__menu::-webkit-scrollbar-track {
  margin: 12px 0;
  background: transparent;
  border-radius: 999px;
}

.custom-select__menu::-webkit-scrollbar-thumb {
  background: rgba(127, 176, 255, .26);
  border-radius: 999px;
}

.custom-select__menu::-webkit-scrollbar-thumb:hover {
  background: rgba(127, 176, 255, .4);
}

@media (hover: none) and (pointer: coarse) {
  .custom-select__menu {
    padding-right: 8px;
    scrollbar-width: none;
  }

  .custom-select__menu::-webkit-scrollbar {
    width: 0;
    height: 0;
  }
}

.custom-select__option {
  min-height: 40px;
  display: flex;
  align-items: center;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: rgba(255, 255, 255, .82);
  padding: 9px 12px;
  font: inherit;
  font-size: 15px;
  line-height: 1.25;
  text-align: left;
  cursor: pointer;
  transition:
    background .16s ease,
    color .16s ease,
    transform .16s ease;
}

.custom-select__option:hover,
.custom-select__option:focus-visible {
  background: rgba(74, 147, 255, .16);
  color: #fff;
  outline: none;
}

.custom-select__option.is-selected {
  background: linear-gradient(180deg, rgba(74, 147, 255, .36), rgba(36, 120, 232, .2));
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(74, 147, 255, .18);
}

.calculator-field select option,
.final-cta-field select option {
  color: #111827;
  background: #fff;
}

.calculator-field input::placeholder {
  color: rgba(255, 255, 255, .42);
}

.calculator-field input:focus,
.calculator-field select:focus {
  border-color: rgba(52, 120, 255, .56);
  background: rgba(255, 255, 255, .075);
  box-shadow: 0 0 0 3px rgba(52, 120, 255, .14);
}

.calculator-agree {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
  line-height: 1.35;
}

.calculator-agree input {
  width: 22px;
  height: 22px;
  margin: 0;
  accent-color: var(--blue);
}

.calculator-agree a {
  color: rgba(177, 132, 255, .94);
  text-underline-offset: 3px;
}

.calculator-submit {
  width: 100%;
  height: 64px;
  border-radius: 18px;
  font-size: 18px;
}

.calculator-submit:disabled {
  cursor: wait;
  filter: brightness(.88);
}

.calculator-note,
.calculator-success {
  margin: -2px 0 0;
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
  line-height: 1.4;
}

.calculator-success {
  color: rgba(255, 255, 255, .9);
}

.calculator-success[hidden] {
  display: none;
}

.gallery {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 128px 0 140px;
  background:
    radial-gradient(circle at 16% 16%, rgba(52, 120, 255, .14), transparent 34%),
    radial-gradient(circle at 82% 54%, rgba(147, 65, 255, .18), transparent 40%),
    linear-gradient(180deg, #050711 0%, #070918 52%, #050711 100%);
}

.gallery::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: none;
  opacity: 0;
}

.gallery .container {
  width: min(1500px, calc(100% - 56px));
}

.gallery-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 560px);
  gap: 48px;
  row-gap: 16px;
  align-items: end;
  margin-bottom: 42px;
}

.gallery-title {
  margin: 0;
  color: #fff;
  font-size: clamp(48px, 4.35vw, 70px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: uppercase;
}

.gallery-title span {
  display: block;
}

.gallery-title strong {
  color: var(--blue);
  font: inherit;
  text-shadow: 0 0 24px rgba(52, 120, 255, .28);
}

.gallery-subtitle {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 20px;
  line-height: 1.55;
}

.gallery-collage {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: clamp(88px, 7.1vw, 122px);
  gap: 16px;
}

.gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 24px;
  background: rgba(12, 14, 30, .72);
  padding: 0;
  cursor: zoom-in;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .06),
    0 24px 70px rgba(0, 0, 0, .22);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 58%, rgba(5, 7, 17, .22)),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, .08), transparent 34%);
  opacity: .7;
  transition: opacity .22s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.03) brightness(.98);
  transition:
    transform .34s ease,
    filter .22s ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.045);
  filter: saturate(1.1) contrast(1.04) brightness(1.04);
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  opacity: .38;
}

.gallery-item:focus-visible {
  outline: 2px solid rgba(52, 120, 255, .76);
  outline-offset: 3px;
}

.gallery-item--large {
  grid-column: 1 / span 4;
  grid-row: 1 / span 6;
}

.gallery-item--large img {
  object-position: center center;
}

.gallery-item--wide-sm:nth-child(2) {
  grid-column: 5 / span 3;
  grid-row: 1 / span 2;
}

.gallery-item--wide-sm:nth-child(3) {
  grid-column: 8 / span 3;
  grid-row: 1 / span 2;
}

.gallery-item--small:nth-child(4) {
  grid-column: 11 / span 2;
  grid-row: 1 / span 2;
}

.gallery-item--small:nth-child(4) img {
  object-position: center center;
}

.gallery-item--wide {
  grid-column: 5 / span 5;
  grid-row: 3 / span 2;
}

.gallery-item--tall {
  grid-column: 10 / span 3;
  grid-row: 3 / span 4;
}

.gallery-item--tall img {
  object-position: center 42%;
}

.gallery-item--small:nth-child(7) {
  grid-column: 5 / span 3;
  grid-row: 5 / span 2;
}

.gallery-item--small:nth-child(8) {
  grid-column: 8 / span 2;
  grid-row: 5 / span 2;
}

.gallery-item--small:nth-child(8) img {
  object-position: center center;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

.gallery-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.gallery-lightbox__overlay {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(2, 3, 9, .84);
  backdrop-filter: blur(12px);
  cursor: zoom-out;
}

.gallery-lightbox__figure {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  margin: 0;
}

.gallery-lightbox__figure img {
  width: 100%;
  max-height: min(78vh, 760px);
  display: block;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 26px;
  background: rgba(5, 7, 17, .92);
  box-shadow: 0 30px 100px rgba(0, 0, 0, .58);
}

.gallery-lightbox__figure figcaption {
  margin-top: 14px;
  color: rgba(255, 255, 255, .78);
  font-size: 15px;
  line-height: 1.35;
  text-align: center;
}

.gallery-lightbox__close {
  position: absolute;
  top: 26px;
  right: 26px;
  z-index: 2;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 14px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  cursor: pointer;
}

.gallery-lightbox__close svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.reviews {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 104px 0 116px;
  background:
    radial-gradient(circle at 18% 22%, rgba(36, 120, 232, .13), transparent 30%),
    radial-gradient(circle at 82% 58%, rgba(145, 67, 255, .18), transparent 34%),
    linear-gradient(180deg, #050711 0%, #070817 52%, #050711 100%);
}

.reviews .container {
  width: min(1280px, calc(100% - 56px));
}

.reviews-head {
  max-width: 850px;
}

.reviews-title {
  margin: 0;
  color: #fff;
  font-size: clamp(44px, 4.1vw, 66px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: 0;
  text-transform: uppercase;
}

.reviews-title span {
  display: block;
}

.reviews-title strong {
  color: var(--blue);
  font: inherit;
  text-shadow: 0 0 24px rgba(36, 120, 232, .28);
}

.reviews-subtitle {
  max-width: 700px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: 20px;
  line-height: 1.55;
}

.reviews-panel {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  margin-top: 42px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 22%, rgba(36, 120, 232, .13), transparent 34%),
    linear-gradient(135deg, rgba(13, 16, 38, .82), rgba(9, 10, 26, .74));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .06),
    0 28px 76px rgba(0, 0, 0, .32),
    0 0 52px rgba(36, 120, 232, .09);
  backdrop-filter: blur(14px);
}

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

.reviews-metric {
  padding: 0 26px;
}

.reviews-metric:first-child {
  padding-left: 0;
}

.reviews-metric:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, .13);
}

.reviews-metric strong {
  display: block;
  color: #fff;
  font-size: clamp(34px, 3vw, 46px);
  font-weight: 650;
  line-height: 1;
}

.reviews-metric span {
  display: block;
  max-width: 210px;
  margin-top: 10px;
  color: rgba(255, 255, 255, .72);
  font-size: 16px;
  line-height: 1.4;
}

.final-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 118px 0 132px;
  background:
    radial-gradient(circle at 12% 28%, rgba(36, 120, 232, .12), transparent 30%),
    radial-gradient(circle at 88% 28%, rgba(145, 67, 255, .24), transparent 36%),
    linear-gradient(180deg, #050711 0%, #070817 46%, #050711 100%);
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 10% -12% auto auto;
  z-index: -1;
  width: 56vw;
  height: 56vw;
  max-width: 780px;
  max-height: 780px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(117, 64, 255, .3), rgba(52, 120, 255, .12) 36%, transparent 68%);
  filter: blur(18px);
}

.final-cta .container {
  width: min(1280px, calc(100% - 56px));
}

.final-cta-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(500px, 1.08fr);
  gap: clamp(42px, 5vw, 70px);
  align-items: center;
  padding: clamp(34px, 3.2vw, 48px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 34px;
  background:
    radial-gradient(circle at 0% 0%, rgba(36, 120, 232, .18), transparent 30%),
    radial-gradient(circle at 100% 14%, rgba(145, 67, 255, .28), transparent 34%),
    linear-gradient(135deg, rgba(10, 8, 24, .88), rgba(8, 10, 26, .74));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .08),
    inset 0 0 0 1px rgba(105, 66, 255, .1),
    0 34px 90px rgba(0, 0, 0, .4),
    0 0 64px rgba(89, 55, 255, .13);
  backdrop-filter: blur(16px);
}

.final-cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(36, 120, 232, .22), transparent 24%, transparent 74%, rgba(155, 91, 255, .3)),
    linear-gradient(180deg, rgba(255, 255, 255, .05), transparent 24%);
  opacity: .58;
}

.final-cta-copy,
.final-cta-form {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.final-cta-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-light);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.final-cta-label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-light);
  box-shadow: 0 0 18px rgba(36, 120, 232, .5);
}

.final-cta-title {
  max-width: 600px;
  margin: 30px 0 0;
  color: #fff;
  font-size: clamp(44px, 4.1vw, 66px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: 0;
  text-transform: uppercase;
}

.final-cta-title span {
  display: block;
}

.final-cta-title strong {
  color: var(--blue);
  font: inherit;
  text-shadow: 0 0 24px rgba(52, 120, 255, .28);
}

.final-cta-text {
  max-width: 560px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: 20px;
  line-height: 1.55;
}

.final-cta-contacts {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.final-cta-contact {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.22;
  text-decoration: none;
}

.final-cta-contact span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
  filter: drop-shadow(0 0 14px rgba(36, 120, 232, .3));
}

.final-cta-contact svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.final-cta-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(99, 74, 255, .2), transparent 38%),
    linear-gradient(180deg, rgba(25, 22, 52, .76), rgba(12, 12, 30, .8));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .06),
    0 24px 64px rgba(0, 0, 0, .28);
  backdrop-filter: blur(14px);
}

.final-cta-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
}

.final-cta-field > span {
  color: rgba(255, 255, 255, .9);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.final-cta-field input,
.final-cta-field select {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 16px;
  background: rgba(255, 255, 255, .055);
  color: #fff;
  padding: 0 18px;
  font: inherit;
  font-size: 16px;
  outline: none;
  transition:
    border-color .18s ease,
    box-shadow .18s ease,
    background .18s ease;
}

.final-cta-field select {
  cursor: pointer;
}

.final-cta-field input::placeholder {
  color: rgba(255, 255, 255, .42);
}

.final-cta-field input:focus,
.final-cta-field select:focus {
  border-color: rgba(52, 120, 255, .56);
  background: rgba(255, 255, 255, .075);
  box-shadow: 0 0 0 3px rgba(52, 120, 255, .14);
}

.final-cta-agree {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
  line-height: 1.35;
}

.final-cta-agree input {
  width: 22px;
  height: 22px;
  margin: 0;
  accent-color: var(--blue);
}

.final-cta-agree a {
  color: rgba(177, 132, 255, .94);
  text-underline-offset: 3px;
}

.final-cta-submit {
  width: 100%;
  min-height: 62px;
  border-radius: 18px;
  font-size: 18px;
}

.final-cta-submit:disabled {
  cursor: wait;
  filter: brightness(.88);
}

.final-cta-note,
.final-cta-success {
  margin: -2px 0 0;
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
  line-height: 1.4;
}

.final-cta-success {
  color: rgba(255, 255, 255, .9);
}

.final-cta-success[hidden] {
  display: none;
}

.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 44px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  background:
    radial-gradient(circle at 18% 0%, rgba(52, 120, 255, .16), transparent 34%),
    radial-gradient(circle at 86% 18%, rgba(135, 63, 255, .18), transparent 32%),
    linear-gradient(180deg, rgba(4, 6, 16, .96), #050711 74%);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, .38) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(90, 140, 255, .32) 0 1px, transparent 1.4px);
  background-size: 120px 120px, 180px 180px;
  background-position: 22px 18px, 80px 64px;
  opacity: .14;
}

.site-footer .container {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100% - 56px));
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, .9fr);
  gap: 46px;
  align-items: start;
}

.footer-about p {
  max-width: 430px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .68);
  font-size: 15px;
  line-height: 1.55;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: #fff;
  text-decoration: none;
}

.footer-brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 8px;
  filter: drop-shadow(0 0 14px rgba(255, 205, 112, .34));
}

.footer-brand span {
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  justify-content: center;
  padding-top: 11px;
}

.footer-nav a,
.footer-contacts a {
  color: rgba(255, 255, 255, .76);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  transition: color .18s ease, transform .18s ease;
}

.footer-nav a:hover,
.footer-contacts a:hover {
  color: #fff;
}

.footer-contacts {
  display: grid;
  gap: 12px;
  justify-items: end;
  text-align: right;
}

.footer-contacts a:first-child {
  color: rgba(255, 255, 255, .92);
  font-size: 22px;
  font-weight: 650;
}

.footer-contacts span {
  color: rgba(255, 255, 255, .68);
  font-size: 15px;
  line-height: 1.45;
}

.footer-contacts a:last-child {
  color: var(--blue-light);
  text-shadow: 0 0 18px rgba(36, 120, 232, .16);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 28px;
  color: rgba(255, 255, 255, .48);
  font-size: 12px;
  line-height: 1.45;
}

.footer-legal p {
  margin: 0;
}

.footer-legal a {
  color: rgba(151, 194, 255, .72);
  text-decoration: none;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, .9);
}

.footer-copy-protection {
  max-width: 1040px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .46);
  font-size: 12px;
  line-height: 1.55;
}

.footer-agency-credit {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .5);
  font-size: 12px;
  line-height: 1.45;
}

.footer-agency-credit a {
  color: rgba(151, 194, 255, .82);
  text-decoration: none;
}

.footer-agency-credit a:hover {
  color: rgba(255, 255, 255, .92);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .52);
  font-size: 13px;
  line-height: 1.35;
}

.footer-bottom a {
  color: rgba(255, 255, 255, .6);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: rgba(255, 255, 255, .9);
}

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

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

.lead-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 3, 9, .76);
  backdrop-filter: blur(10px);
}

.lead-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: calc(100svh - 48px);
  overflow-y: auto;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 24px;
  background:
    radial-gradient(circle at 20% 0%, rgba(52, 120, 255, .16), transparent 34%),
    linear-gradient(180deg, rgba(17, 20, 38, .98), rgba(7, 9, 20, .98));
  box-shadow: 0 30px 80px rgba(0, 0, 0, .48);
}

.lead-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .82);
  cursor: pointer;
}

.lead-modal h2 {
  margin: 0 58px 0 0;
  color: #fff;
  font-size: 30px;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.lead-modal p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: 16px;
  line-height: 1.45;
}

.lead-form {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.lead-form [hidden] {
  display: none !important;
}

.lead-quiz {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.lead-quiz[hidden] {
  display: none !important;
}

.lead-quiz__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.lead-quiz__bar {
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, .09);
}

.lead-quiz__bar span {
  display: block;
  width: 33.333%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(52, 120, 255, .88), rgba(177, 132, 255, .86));
  box-shadow: 0 0 18px rgba(52, 120, 255, .34);
  transition: width .25s ease;
}

.lead-quiz__step {
  display: grid;
  gap: 14px;
}

.lead-quiz__question {
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 750;
  line-height: 1.22;
}

.lead-quiz__options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.lead-quiz__option {
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .035));
  color: rgba(255, 255, 255, .88);
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition:
    border-color .18s ease,
    background .18s ease,
    box-shadow .18s ease,
    transform .18s ease;
}

.lead-quiz__option:hover,
.lead-quiz__option.is-selected {
  border-color: rgba(74, 147, 255, .7);
  background: rgba(52, 120, 255, .14);
  box-shadow: 0 0 24px rgba(52, 120, 255, .18);
}

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

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

.lead-quiz__wide {
  grid-column: 1 / -1;
}

.lead-quiz label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
}

.lead-quiz input {
  width: 100%;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 14px;
  background: rgba(255, 255, 255, .07);
  color: #fff;
  padding: 0 16px;
  font: inherit;
  outline: none;
}

.lead-quiz input:focus {
  border-color: rgba(52, 120, 255, .56);
  box-shadow: 0 0 0 3px rgba(52, 120, 255, .16);
}

.lead-quiz__nav {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 10px;
}

.lead-quiz__back,
.lead-quiz__next {
  min-height: 46px;
  border-radius: 14px;
  font: inherit;
  font-weight: 750;
  cursor: pointer;
}

.lead-quiz__back {
  border: 1px solid rgba(255, 255, 255, .13);
  background: rgba(255, 255, 255, .055);
  color: rgba(255, 255, 255, .74);
}

.lead-quiz__back:disabled {
  opacity: .42;
  cursor: default;
}

.lead-quiz__next {
  border: 0;
  background: linear-gradient(180deg, var(--blue-light) 0%, var(--blue) 100%);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .18),
    0 16px 32px rgba(36, 120, 232, .22);
}

.lead-quiz__next:disabled {
  opacity: .48;
  cursor: default;
  box-shadow: none;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
}

.lead-form input:not([type="checkbox"]) {
  width: 100%;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 14px;
  background: rgba(255, 255, 255, .07);
  color: #fff;
  padding: 0 16px;
  font: inherit;
  outline: none;
}

.lead-form input:not([type="checkbox"]):focus {
  border-color: rgba(52, 120, 255, .56);
  box-shadow: 0 0 0 3px rgba(52, 120, 255, .16);
}

.lead-form__agree {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
  line-height: 1.35;
}

.lead-form__agree input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--blue);
}

.lead-form__agree a {
  color: rgba(177, 132, 255, .94);
  text-underline-offset: 3px;
}

.cookie-notice {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: min(520px, calc(100% - 44px));
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(74, 147, 255, .24);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(12, 17, 42, .94), rgba(9, 8, 24, .92)),
    rgba(7, 10, 28, .92);
  box-shadow:
    0 18px 46px rgba(0, 0, 0, .42),
    0 0 34px rgba(52, 120, 255, .14),
    inset 0 1px 0 rgba(255, 255, 255, .07);
  backdrop-filter: blur(16px);
  transform: translateY(0);
  opacity: 1;
  transition:
    opacity .24s ease,
    transform .24s ease;
}

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

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

.cookie-notice p {
  margin: 0;
  color: rgba(255, 255, 255, .76);
  font-size: 13px;
  line-height: 1.45;
}

.cookie-notice a {
  color: rgba(151, 194, 255, .96);
  text-decoration: underline;
  text-decoration-color: rgba(151, 194, 255, .42);
  text-underline-offset: 3px;
}

.cookie-notice__button {
  min-height: 42px;
  flex: 0 0 auto;
  padding: 0 20px;
  border: 0;
  border-radius: 13px;
  background: linear-gradient(180deg, var(--blue-light) 0%, var(--blue) 100%);
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .18),
    0 10px 24px rgba(36, 120, 232, .24);
}

.cookie-notice__button:hover {
  filter: brightness(1.04);
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 1240px) {
  .container {
    width: min(1180px, calc(100% - 48px));
  }

  .brand-name {
    font-size: 22px;
  }

  .main-nav {
    gap: 24px;
  }

  .hero-title {
    font-size: clamp(42px, 4.4vw, 58px);
  }

  .hero {
    min-height: auto;
    padding: 124px 0 76px;
  }

  .hero-content {
    transform: translate(10px, -44px);
  }

  .hero-cta .btn {
    min-width: 230px;
  }

  .organization {
    min-height: max(820px, 100svh);
    padding: 56px 0 60px;
  }

  .organization .container {
    width: min(1120px, calc(100% - 56px));
  }

  .organization-inner {
    min-height: 704px;
  }

  .organization-content {
    max-width: 770px;
  }

  .section-title {
    font-size: clamp(48px, 5.2vw, 62px);
  }

  .section-subtitle {
    max-width: 520px;
    font-size: 19px;
  }

  .choice-grid {
    grid-template-columns: 1fr;
    max-width: 760px;
    gap: 20px;
    margin-top: 36px;
  }

  .choice-card {
    min-height: 0;
    padding: 28px;
  }

  .choice-card__head {
    padding-bottom: 22px;
  }

  .choice-card__head h3 {
    font-size: 26px;
  }

  .choice-list {
    gap: 18px;
    margin-top: 24px;
  }

  .choice-list li {
    font-size: 18px;
    white-space: normal;
  }

  .organization-cta {
    width: 332px;
    height: 62px;
    min-height: 62px;
    font-size: 18px;
  }

  .organization-note span {
    font-size: 16px;
  }

  .organization-visual {
    left: 0;
    right: 0;
    width: auto;
    min-height: 0;
  }
}

@media (min-width: 981px) and (max-height: 820px) {
  .site-header {
    background: linear-gradient(180deg, rgba(4, 6, 16, .96), rgba(4, 6, 16, .5), transparent);
  }

  .header-inner {
    min-height: 72px;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
  }

  .brand-name {
    font-size: 20px;
  }

  .main-nav {
    font-size: 14px;
    gap: 22px;
  }

  .header-phone {
    font-size: 17px;
  }

  .header-contact span {
    font-size: 12px;
  }

  .header-actions .btn {
    height: 46px;
    min-height: 46px;
    padding: 0 24px;
    border-radius: 14px;
    font-size: 15px;
  }

  .hero {
    min-height: 100svh;
    padding: 118px 0 34px;
  }

  .hero-content {
    transform: translate(clamp(38px, 4vw, 84px), -34px);
  }

  .hero-meta {
    margin-bottom: 18px;
    font-size: 16px;
  }

  .hero-title {
    max-width: 760px;
    font-size: clamp(42px, 4.2vw, 56px);
    line-height: 1.01;
  }

  .hero-subtitle {
    max-width: 580px;
    margin-top: 18px;
    font-size: clamp(15px, 1.15vw, 18px);
    line-height: 1.45;
  }

  .hero-cta {
    gap: 12px;
    margin-top: 22px;
  }

  .hero-cta .btn {
    min-height: 50px;
    height: 50px;
    min-width: 292px;
    border-radius: 14px;
    font-size: 15px;
  }

  .organization {
    min-height: 100svh;
    padding: 28px 0 34px;
  }

  .organization .container {
    width: min(1160px, calc(100% - 48px));
  }

  .organization-inner {
    min-height: calc(100svh - 62px);
  }

  .organization-content {
    max-width: 900px;
    transform: translateY(0);
  }

  .section-title {
    font-size: clamp(38px, 3.5vw, 50px);
    line-height: 1;
  }

  .section-subtitle {
    max-width: 660px;
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.36;
  }

  .choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 900px;
    gap: 14px;
    margin-top: 18px;
  }

  .choice-card {
    padding: 18px 20px;
    border-radius: 18px;
  }

  .choice-card__head {
    gap: 10px;
    padding-bottom: 12px;
  }

  .choice-card__head h3 {
    font-size: 18px;
    line-height: 1.12;
  }

  .choice-mark {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .choice-mark svg,
  .choice-list svg {
    width: 18px;
    height: 18px;
  }

  .choice-list {
    gap: 9px;
    margin-top: 13px;
  }

  .choice-list li {
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 9px;
    font-size: 13.5px;
    line-height: 1.38;
  }

  .organization-summary {
    max-width: 640px;
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.35;
  }

  .organization-action {
    gap: 16px;
    margin-top: 14px;
  }

  .organization-cta {
    width: 282px;
    height: 50px;
    min-height: 50px;
    border-radius: 13px;
    font-size: 16px;
  }

  .organization-note {
    top: -6px;
    gap: 6px;
  }

  .cta-note-arrow {
    width: 52px;
    height: 26px;
  }

  .organization-note span {
    font-size: 13px;
    line-height: 1.16;
  }

  .packages,
  .programs,
  .calculator,
  .gallery,
  .reviews,
  .final-cta {
    padding-top: 34px;
    padding-bottom: 38px;
  }

  .packages .container,
  .programs .container,
  .gallery .container {
    width: min(1220px, calc(100% - 48px));
  }

  .gallery-head {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: 24px;
    margin-bottom: 20px;
  }

  .packages-head {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    margin-bottom: 24px;
  }

  .packages-title,
  .programs-title,
  .gallery-title,
  .reviews-title,
  .calculator-title,
  .final-cta-title {
    font-size: clamp(34px, 3.2vw, 46px);
    line-height: 1;
  }

  .packages-subtitle,
  .programs-subtitle,
  .gallery-subtitle,
  .reviews-subtitle,
  .calculator-subtitle,
  .final-cta-text {
    font-size: 15px;
    line-height: 1.38;
  }

  .packages-grid {
    gap: 12px;
  }

  .packages-card {
    min-height: 418px;
    padding: 12px;
    border-radius: 20px;
  }

  .packages-card--featured {
    transform: translateY(-4px) scale(1.012);
  }

  .packages-card__ribbon {
    top: -15px;
  }

  .packages-card__image {
    height: 176px;
    border-radius: 15px;
  }

  .packages-card__body {
    padding: 14px 2px 0;
  }

  .packages-card h3 {
    margin-bottom: 8px;
    font-size: clamp(20px, 1.55vw, 24px);
  }

  .packages-card__accent {
    margin-bottom: 10px;
  }

  .packages-card p {
    margin-bottom: 12px;
    font-size: 13.5px;
    line-height: 1.36;
  }

  .packages-card__price {
    margin-bottom: 12px;
    font-size: 27px;
  }

  .packages-card__button,
  .packages-card--featured .packages-card__button {
    min-height: 44px;
    border-radius: 12px;
    font-size: 14px;
  }

  .packages-card__button-icon {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
  }

  .packages-proof {
    gap: 12px;
    margin-top: 18px;
  }

  .packages-proof__item {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 10px;
    font-size: 13px;
    line-height: 1.28;
  }

  .packages-proof__icon {
    width: 32px;
    height: 32px;
  }

  .packages-proof__icon svg {
    width: 19px;
    height: 19px;
  }

  .programs-head {
    max-width: 640px;
  }

  .programs-subtitle {
    max-width: 560px;
    margin-top: 12px;
  }

  .programs-grid {
    gap: 12px;
    margin-top: 20px;
  }

  .program-card {
    min-height: 338px;
    border-radius: 18px;
  }

  .program-card__media {
    height: 118px;
  }

  .program-card__body {
    padding: 15px 14px 16px;
  }

  .program-card h3 {
    min-height: 2.6em;
    margin-bottom: 8px;
    font-size: clamp(17px, 1.25vw, 20px);
  }

  .program-card__accent {
    margin-bottom: 10px;
  }

  .program-card p {
    font-size: 13.2px;
    line-height: 1.38;
  }

  .programs-action {
    gap: 10px;
    margin-top: 16px;
  }

  .programs-cta {
    min-width: 330px;
    height: 48px;
    min-height: 48px;
    border-radius: 14px;
    font-size: 16px;
  }

  .programs-action p {
    font-size: 13px;
  }

  .calculator .container,
  .final-cta .container {
    width: min(1160px, calc(100% - 48px));
  }

  .calculator-card,
  .final-cta-card {
    grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
    gap: 28px;
    padding: 22px;
    border-radius: 24px;
  }

  .calculator-label,
  .final-cta-label {
    font-size: 13px;
  }

  .calculator-title,
  .final-cta-title {
    margin-top: 14px;
  }

  .calculator-subtitle,
  .final-cta-text {
    margin-top: 14px;
  }

  .calculator-list {
    gap: 9px;
    margin-top: 18px;
    font-size: 16px;
  }

  .calculator-list li {
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 10px;
  }

  .calculator-list span {
    width: 22px;
    height: 22px;
  }

  .calculator-list svg {
    width: 20px;
    height: 20px;
  }

  .calculator-form,
  .final-cta-form {
    gap: 10px;
    padding: 18px;
    border-radius: 20px;
  }

  .calculator-field,
  .final-cta-field {
    gap: 7px;
  }

  .calculator-field > span,
  .final-cta-field > span {
    font-size: 12px;
  }

  .calculator-field input,
  .calculator-field select,
  .final-cta-field input,
  .final-cta-field select,
  .custom-select__button {
    height: 44px;
    border-radius: 13px;
    padding: 0 14px;
    font-size: 14px;
  }

  .calculator-agree,
  .final-cta-agree {
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 9px;
    font-size: 12px;
  }

  .calculator-agree input,
  .final-cta-agree input {
    width: 18px;
    height: 18px;
  }

  .calculator-submit,
  .final-cta-submit {
    min-height: 48px;
    height: 48px;
    border-radius: 14px;
    font-size: 15px;
  }

  .calculator-note,
  .calculator-success,
  .final-cta-note,
  .final-cta-success {
    font-size: 12px;
  }

  .gallery-head {
    align-items: start;
  }

  .gallery-collage {
    grid-auto-rows: 62px;
    gap: 10px;
  }

  .gallery-item {
    border-radius: 16px;
  }

  .reviews {
    padding-top: 46px;
    padding-bottom: 52px;
  }

  .reviews-subtitle {
    margin-top: 14px;
  }

  .reviews-panel {
    margin-top: 22px;
    padding: 20px;
    border-radius: 22px;
  }

  .reviews-metric strong {
    font-size: 34px;
  }

  .reviews-metric span {
    font-size: 13px;
  }

  .final-cta-contacts {
    gap: 10px;
    margin-top: 18px;
  }

  .final-cta-contact {
    grid-template-columns: 25px minmax(0, 1fr);
    gap: 10px;
    font-size: 18px;
  }

  .final-cta-contact span {
    width: 25px;
    height: 25px;
  }

  .final-cta-contact svg {
    width: 22px;
    height: 22px;
  }

  .site-footer {
    padding: 26px 0 22px;
  }

  .footer-main {
    gap: 28px;
  }
}

@media (max-width: 980px) {
  .site-header {
    position: relative;
    background: rgba(4, 6, 16, .9);
  }

  .main-nav {
    display: none;
  }

  .header-actions .btn {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 52px 0 36px;
  }

  .hero-photo-layer {
    left: 0;
    width: 100%;
    height: 520px;
    opacity: .76;
    background-position: 58% top;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, .72) 48%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, .72) 48%, transparent 100%);
  }

  .hero-dark-layer {
    background:
      linear-gradient(180deg, rgba(4, 6, 16, .66) 0%, rgba(4, 6, 16, .88) 38%, rgba(4, 6, 16, .98) 73%, #050711 100%),
      linear-gradient(90deg, rgba(4, 6, 16, .82), rgba(4, 6, 16, .42));
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-content {
    max-width: 660px;
    transform: none;
  }

  .hero-title {
    max-width: 650px;
    font-size: clamp(42px, 8vw, 62px);
  }

  .hero-visual {
    display: none;
    min-height: 0;
  }

  .organization {
    min-height: auto;
    padding: 72px 0 108px;
  }

  .organization .container {
    width: min(1180px, calc(100% - 48px));
  }

  .organization-inner {
    min-height: auto;
  }

  .organization-content {
    max-width: none;
  }

  .organization-visual {
    display: none;
  }
}

@media (max-width: 680px) {

  .hero-cta__phone {
    display: inline-flex;
    min-height: 58px;
    flex-direction: column;
    gap: 4px;
    border-color: rgba(74, 147, 255, .32);
    background: linear-gradient(180deg, rgba(74, 147, 255, .2), rgba(36, 120, 232, .1));
    color: #fff;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, .08),
      0 10px 24px rgba(36, 120, 232, .1);
  }

  .mobile-call-cta__label {
    font-size: 18px;
    font-weight: 760;
  }

  .mobile-call-cta__number {
    font-size: 13px;
    letter-spacing: .01em;
  }

  .container {
    width: min(100% - 28px, 1180px);
  }

  .header-inner {
    min-height: 72px;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .brand-name {
    font-size: 15px;
  }

  .header-contact {
    display: none;
  }

  .hero {
    padding: 40px 0 12px;
  }

  .hero.hero--discount-open {
    padding-bottom: 44px;
  }

  .hero::after {
    height: 76px;
  }

  .hero-photo-layer {
    height: 410px;
    background-size: cover;
    background-position: 53% top;
  }

  .hero-meta {
    gap: 9px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
    line-height: 1.35;
  }

  .meta-icon,
  .meta-icon svg {
    width: 18px;
    height: 18px;
  }

  .hero-content {
    width: min(100%, 340px);
    margin-inline: auto;
  }

  .hero-title {
    max-width: 340px;
    font-size: clamp(33px, 9.1vw, 40px);
    line-height: 1.07;
    letter-spacing: .01em;
  }

  .hero-title span,
  .hero-title span:first-child,
  .hero-title span:last-child {
    white-space: normal;
  }

  .hero-title strong {
    white-space: nowrap;
  }

  .hero-subtitle {
    max-width: 340px;
    margin-top: 22px;
    color: rgba(255, 255, 255, .82);
    font-size: 16px;
    line-height: 1.54;
  }

  .hero-cta {
    width: min(100%, 340px);
    min-width: 0;
    gap: 12px;
    margin-top: 28px;
  }

  .hero-cta__row {
    display: grid;
    gap: 12px;
    min-width: 0;
  }

  .hero-cta .btn,
  .btn {
    width: 100%;
    min-width: 0;
    min-height: 54px;
  }

  .hero-discount {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    align-self: stretch;
  }

  .hero-discount.is-open {
    max-height: 430px;
  }

  .hero-discount__inner {
    width: 100%;
    max-width: 100%;
    padding: 18px;
    border-radius: 19px;
  }

  .hero-discount__title {
    font-size: clamp(13.2px, 3.35vw, 16px);
  }

  .hero-discount__title-line,
  .hero-discount__title-accent {
    white-space: normal;
  }

  .hero-discount__form,
  .hero-discount__form input[type="tel"],
  .hero-discount__form .btn {
    min-width: 0;
  }

  .hero-visual {
    min-height: 0;
  }

  .organization {
    padding: 30px 0 34px;
  }

  .organization .container {
    width: min(100% - 28px, 1180px);
  }

  .organization-content,
  .choice-grid {
    width: 100%;
    max-width: 340px;
  }

  .organization-visual {
    display: none;
  }

  .section-title {
    max-width: 100%;
    font-size: clamp(30px, 8vw, 38px);
    line-height: 1.06;
    transform: none;
  }

  .section-title span,
  .section-subtitle,
  .organization-summary {
    max-width: 340px;
    overflow-wrap: anywhere;
  }

  .section-bridge {
    margin-bottom: 18px;
    font-size: 15px;
    letter-spacing: .025em;
  }

  .section-subtitle {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.5;
  }

  .choice-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
    max-width: none;
  }

  .choice-card {
    min-height: 0;
    width: 100%;
    max-width: 340px;
    padding: 22px 20px;
    border-radius: 20px;
    overflow: hidden;
  }

  .choice-card__head {
    gap: 12px;
    padding-bottom: 18px;
    min-width: 0;
  }

  .choice-card__head h3 {
    min-width: 0;
    font-size: 20px;
    overflow-wrap: anywhere;
  }

  .choice-mark {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .choice-card--no {
    border-color: rgba(255, 81, 105, .34);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, .052),
      0 22px 52px rgba(0, 0, 0, .32),
      0 0 20px rgba(255, 81, 105, .035);
  }

  .choice-list {
    width: 100%;
    min-width: 0;
    gap: 15px;
    margin-top: 20px;
  }

  .choice-list li {
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 12px;
    font-size: 15px;
    line-height: 1.55;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .organization-summary {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.45;
  }

  .organization-cta {
    width: 100%;
    min-width: 0;
    height: 56px;
    min-height: 56px;
    margin-top: 24px;
    font-size: 16px;
  }

  .organization-action {
    display: block;
    margin-top: 24px;
  }

  .organization-note {
    display: none;
  }

  .lead-modal {
    padding: 14px;
  }

  .lead-modal__dialog {
    padding: 28px 20px 22px;
    border-radius: 20px;
  }

  .lead-modal h2 {
    max-width: none;
    margin-right: 50px;
    font-size: 22px;
  }

  .lead-quiz {
    gap: 14px;
    margin-top: 22px;
  }

  .lead-quiz__options,
  .lead-quiz__grid {
    grid-template-columns: 1fr;
  }

  .lead-quiz__meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .lead-quiz__question {
    font-size: 17px;
  }
}

@media (max-width: 390px) {
  .brand-name {
    font-size: 16px;
  }

  .hero-title {
    max-width: 330px;
    font-size: 31px;
  }

  .packages-proof {
    grid-template-columns: 1fr;
  }

  .packages-proof__item {
    min-height: 0;
  }
}

@media (max-width: 1240px) {
  .packages {
    padding: 118px 0 124px;
  }

  .packages .container {
    width: min(1120px, calc(100% - 56px));
  }

  .packages-head {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
    gap: 28px;
  }

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

  .packages-card {
    min-height: 590px;
  }

  .packages-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 28px;
  }

  .programs {
    padding: 112px 0 118px;
  }

  .programs .container {
    width: min(1120px, calc(100% - 56px));
  }

  .programs-visual {
    width: 66vw;
    height: 380px;
  }

  .programs-title {
    font-size: clamp(46px, 5vw, 62px);
  }

  .programs-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 58px;
  }

  .program-card {
    min-height: 452px;
  }
}

@media (max-width: 900px) {
  .packages-head,
  .gallery-head {
    grid-template-columns: 1fr;
  }

  .packages-subtitle,
  .gallery-subtitle {
    max-width: 680px;
  }
}

@media (max-width: 760px) {
  .packages {
    padding: 42px 0 34px;
    background-position: 58% center;
  }

  .packages .container {
    width: min(100% - 28px, 1180px);
  }

  .packages-head {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 32px;
  }

  .packages-title {
    font-size: clamp(34px, 9vw, 44px);
    line-height: 1.05;
  }

  .packages-subtitle {
    font-size: 16px;
    line-height: 1.5;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .packages-card {
    min-height: 0;
    padding: 14px;
    border-radius: 23px;
  }

  .packages-card--featured {
    transform: none;
  }

  .packages-card__ribbon {
    top: -14px;
    height: 30px;
    padding: 0 16px;
    font-size: 12px;
  }

  .packages-card__image {
    height: clamp(220px, 62vw, 300px);
    border-radius: 18px;
  }

  .packages-card__body {
    padding-top: 18px;
  }

  .packages-card__accent {
    margin-bottom: 16px;
  }

  .packages-card h3 {
    min-height: 0;
    font-size: 27px;
  }

  .packages-card p {
    font-size: 16px;
    line-height: 1.45;
  }

  .packages-card__price {
    margin-bottom: 20px;
    font-size: 34px;
  }

  .packages-card__button {
    width: 100%;
    min-height: 54px;
    font-size: 16px;
  }

  .packages-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 22px;
  }

  .packages-proof__item {
    min-height: 82px;
    grid-template-columns: 32px minmax(0, 1fr);
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
    border: 1px solid rgba(74, 147, 255, .16);
    border-radius: 16px;
    background: rgba(255, 255, 255, .032);
    color: rgba(255, 255, 255, .82);
    font-size: 13.5px;
    line-height: 1.34;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
  }

  .packages-proof__icon {
    width: 32px;
    height: 32px;
    border-color: rgba(74, 147, 255, .22);
    color: rgba(128, 179, 255, .92);
    background: rgba(36, 120, 232, .06);
  }

  .packages-proof__icon svg {
    width: 19px;
    height: 19px;
  }

  .programs {
    padding: 42px 0 36px;
    background-position: 64% top;
    background-size: auto 360px;
  }

  .programs .container {
    width: min(100% - 28px, 1180px);
  }

  .programs::after {
    background:
      linear-gradient(180deg, rgba(5, 7, 17, .58) 0%, rgba(5, 7, 17, .9) 34%, #050711 100%),
      linear-gradient(90deg, rgba(5, 7, 17, .86), rgba(5, 7, 17, .42));
  }

  .programs-visual {
    width: 100%;
    height: 280px;
    background-position: 62% top;
    opacity: .78;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, .72) 54%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, .72) 54%, transparent 100%);
  }

  .programs-title {
    font-size: clamp(31px, 8.2vw, 38px);
    line-height: 1.08;
  }

  .programs-subtitle {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.5;
  }

  .programs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 34px;
    margin-right: 0;
    overflow: visible;
    padding: 0;
    scroll-snap-type: none;
  }

  .program-card {
    width: 100%;
    min-height: 0;
    border-radius: 20px;
  }

  .program-card__media {
    height: 220px;
  }

  .program-card__body {
    padding: 20px 20px 22px;
  }

  .program-card h3 {
    min-height: 0;
    font-size: 23px;
  }

  .program-card p {
    font-size: 16px;
    line-height: 1.48;
  }

  .program-card__accent {
    margin: 0 0 18px;
  }

  .programs-action {
    margin-top: 26px;
  }

  .programs-cta {
    width: 100%;
    min-width: 0;
    height: 56px;
    font-size: 16px;
    border-radius: 16px;
  }

  .programs-action p {
    align-items: flex-start;
    font-size: 14px;
  }
}

@media (max-width: 520px) {
  .packages-proof {
    grid-template-columns: 1fr;
  }

  .packages-proof__item {
    min-height: 0;
  }
}

@media (max-width: 1240px) {
  .calculator {
    padding: 112px 0 120px;
  }

  .calculator .container {
    width: min(1120px, calc(100% - 56px));
  }

  .calculator-card {
    grid-template-columns: minmax(0, .9fr) minmax(460px, 1.1fr);
    gap: 34px;
    padding: 34px;
  }

  .calculator-title {
    font-size: clamp(40px, 4.3vw, 56px);
  }

  .calculator-subtitle {
    font-size: 18px;
  }

  .calculator-list {
    font-size: 20px;
  }

  .calculator-form {
    padding: 26px;
  }
}

@media (max-width: 980px) {
  .calculator-card {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }

  .calculator-title,
  .calculator-subtitle {
    max-width: 680px;
  }

  .calculator-form {
    width: 100%;
    max-width: 680px;
  }
}

@media (max-width: 760px) {
  .calculator {
    padding: 38px 0 36px;
  }

  .calculator .container {
    width: min(100% - 28px, 1180px);
  }

  .calculator-card {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
    padding: 24px 18px;
    border-radius: 26px;
  }

  .calculator-copy,
  .calculator-form {
    width: 100%;
    max-width: 100%;
  }

  .calculator-label {
    font-size: 13px;
  }

  .calculator-title {
    margin-top: 22px;
    font-size: clamp(34px, 9.2vw, 44px);
    line-height: 1.06;
  }

  .calculator-subtitle {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.5;
  }

  .calculator-list {
    gap: 14px;
    margin-top: 28px;
    font-size: 17px;
  }

  .calculator-list li {
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 10px;
  }

  .calculator-list span {
    width: 24px;
    height: 24px;
  }

  .calculator-list svg {
    width: 22px;
    height: 22px;
  }

  .calculator-form {
    gap: 15px;
    padding: 20px;
    border-radius: 22px;
  }

  .calculator-field input,
  .calculator-field select,
  .calculator-field .custom-select__button {
    height: 54px;
    padding-inline: 12px;
    border-radius: 14px;
    font-size: 15px;
  }

  .custom-select__button {
    gap: 6px;
  }

  .calculator-field .custom-select__button,
  .final-cta-field .custom-select__button {
    font-size: 14px;
  }

  .custom-select__menu {
    max-height: min(260px, calc(100dvh - 164px));
  }

  .calculator-submit {
    min-height: 56px;
    height: auto;
    padding: 0 18px;
    border-radius: 16px;
    font-size: 16px;
    line-height: 1.15;
  }

  .calculator-agree {
    font-size: 12px;
  }
}

@media (max-width: 1240px) {
  .gallery {
    padding: 112px 0 120px;
  }

  .gallery .container {
    width: min(1120px, calc(100% - 56px));
  }

  .gallery-head {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
    gap: 34px;
  }

  .gallery-title {
    font-size: clamp(42px, 5.1vw, 58px);
  }

  .gallery-subtitle {
    font-size: 18px;
  }

  .gallery-collage {
    grid-auto-rows: 96px;
    gap: 14px;
  }

  .final-cta {
    padding: 108px 0 118px;
  }

  .final-cta .container {
    width: min(1120px, calc(100% - 56px));
  }

  .final-cta-card {
    grid-template-columns: minmax(0, .94fr) minmax(450px, 1.06fr);
    gap: 34px;
    padding: 34px;
  }

  .final-cta-title {
    font-size: clamp(40px, 4.3vw, 56px);
  }

  .final-cta-text {
    font-size: 18px;
  }

  .final-cta-contact {
    font-size: 21px;
  }

  .final-cta-form {
    padding: 26px;
  }

  .site-footer .container {
    width: min(1120px, calc(100% - 56px));
  }

  .footer-main {
    grid-template-columns: minmax(260px, 1fr) minmax(260px, .9fr);
    gap: 32px;
  }

  .footer-contacts a:first-child {
    font-size: 20px;
  }
}

@media (max-width: 980px) {
  .gallery-head {
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
  }

  .gallery-subtitle {
    max-width: 640px;
  }

  .gallery-collage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 220px;
  }

  .gallery-item,
  .gallery-item--large,
  .gallery-item--wide-sm:nth-child(2),
  .gallery-item--wide-sm:nth-child(3),
  .gallery-item--small:nth-child(4),
  .gallery-item--wide,
  .gallery-item--tall,
  .gallery-item--small:nth-child(7),
  .gallery-item--small:nth-child(8) {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-item--large,
  .gallery-item--wide,
  .gallery-item--tall {
    grid-column: span 2;
  }

  .gallery-item--large {
    min-height: 460px;
  }

  .gallery-item--wide,
  .gallery-item--tall {
    min-height: 300px;
  }

  .final-cta-card {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }

  .final-cta-title,
  .final-cta-text {
    max-width: 680px;
  }

  .final-cta-form {
    width: 100%;
    max-width: 680px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-nav {
    justify-content: flex-start;
    padding-top: 0;
  }

  .footer-contacts {
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 760px) {
  .gallery {
    padding: 38px 0 36px;
  }

  .gallery .container {
    width: min(100% - 28px, 1180px);
  }

  .gallery-title {
    font-size: clamp(34px, 9vw, 44px);
    line-height: 1.06;
  }

  .gallery-subtitle {
    font-size: 16px;
    line-height: 1.5;
  }

  .gallery-collage {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 14px;
  }

  .gallery-item,
  .gallery-item--large,
  .gallery-item--wide,
  .gallery-item--tall {
    grid-column: auto;
    min-height: 0;
    aspect-ratio: 1.22 / 1;
    border-radius: 20px;
  }

  .gallery-item--large {
    aspect-ratio: .9 / 1;
  }

  .gallery-lightbox {
    padding: 14px;
  }

  .gallery-lightbox__figure img {
    max-height: 72vh;
    border-radius: 20px;
  }

  .gallery-lightbox__close {
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
  }

  .final-cta {
    padding: 38px 0 54px;
  }

  .final-cta .container {
    width: min(100% - 28px, 1180px);
  }

  .final-cta-card {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
    padding: 24px 18px;
    border-radius: 26px;
  }

  .final-cta-copy,
  .final-cta-form {
    width: 100%;
    max-width: 100%;
  }

  .final-cta-label {
    font-size: 13px;
  }

  .final-cta-title {
    margin-top: 22px;
    font-size: clamp(34px, 9vw, 44px);
    line-height: 1.06;
  }

  .final-cta-text {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.5;
  }

  .final-cta-contacts {
    gap: 14px;
    margin-top: 28px;
  }

  .final-cta-contact {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 10px;
    font-size: 17px;
  }

  .final-cta-contact span {
    width: 28px;
    height: 28px;
  }

  .final-cta-contact svg {
    width: 24px;
    height: 24px;
  }

  .final-cta-form {
    gap: 15px;
    padding: 20px;
    border-radius: 22px;
  }

  .final-cta-field input,
  .final-cta-field select,
  .final-cta-field .custom-select__button {
    height: 54px;
    padding-inline: 12px;
    border-radius: 14px;
    font-size: 15px;
  }

  .final-cta-field .custom-select__button {
    font-size: 14px;
  }

  .final-cta-submit {
    min-height: 56px;
    padding: 0 18px;
    border-radius: 16px;
    font-size: 16px;
    line-height: 1.15;
  }

  .final-cta-agree {
    font-size: 12px;
  }

  .site-footer {
    padding: 36px 0 28px;
  }

  .site-footer .container {
    width: min(100% - 28px, 1180px);
  }

  .footer-brand img {
    width: 42px;
    height: 42px;
  }

  .footer-brand span {
    font-size: 15px;
  }

  .footer-about p {
    margin-top: 14px;
    font-size: 14px;
  }

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

  .footer-contacts a:first-child {
    font-size: 18px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-top: 28px;
    padding-top: 18px;
  }
}

@media (min-width: 761px) and (max-width: 980px) {
  .packages {
    padding: 96px 0 92px;
  }

  .programs {
    padding: 88px 0 76px;
  }

  .calculator {
    padding: 76px 0 92px;
  }

  .gallery,
  .reviews,
  .final-cta {
    padding: 84px 0 92px;
  }

  .reviews-metric {
    padding: 0 18px;
  }
}

@media (max-width: 760px) {
  .reviews {
    padding: 38px 0 38px;
  }

  .reviews .container {
    width: min(100% - 28px, 1180px);
  }

  .reviews-title {
    font-size: clamp(34px, 9vw, 44px);
    line-height: 1.06;
  }

  .reviews-subtitle {
    font-size: 16px;
    line-height: 1.5;
  }

  .reviews-panel {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px;
    border-radius: 22px;
  }

  .reviews-metrics {
    grid-template-columns: 1fr;
  }

  .reviews-metric {
    padding: 18px 0;
  }

  .reviews-metric:first-child {
    padding-top: 0;
  }

  .reviews-metric:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .13);
  }

  .reviews-metric span {
    max-width: none;
    font-size: 15px;
  }
}

@media (max-width: 760px) {
  .hero {
    box-shadow:
      inset 0 -138px 118px -72px rgba(5, 7, 17, .98);
  }

  .hero::after {
    height: 126px;
    background:
      linear-gradient(180deg, rgba(5, 8, 22, 0) 0%, rgba(5, 8, 22, .78) 58%, #050711 100%);
  }

  .organization,
  .packages,
  .programs,
  .calculator,
  .gallery,
  .reviews,
  .final-cta,
  .site-footer {
    margin-top: -1px;
    box-shadow:
      inset 0 108px 92px -74px rgba(5, 7, 17, .96),
      inset 0 -112px 96px -74px rgba(5, 7, 17, .92);
  }

  .cookie-notice {
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 12px;
    border-radius: 16px;
  }

  .cookie-notice p {
    font-size: 12px;
    line-height: 1.35;
  }

  .cookie-notice__button {
    width: 100%;
    min-height: 38px;
    border-radius: 12px;
  }
}

.packages,
.programs,
.calculator,
.gallery,
.reviews,
.final-cta {
  background-color: #070819;
  background-image:
    radial-gradient(circle at 16% 10%, rgba(74, 147, 255, .18), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(141, 72, 255, .18), transparent 34%),
    radial-gradient(circle at 50% 82%, rgba(28, 86, 190, .16), transparent 46%),
    radial-gradient(circle, rgba(255, 255, 255, .42) 0 1px, transparent 1.4px),
    radial-gradient(circle, rgba(122, 164, 255, .28) 0 1px, transparent 1.5px),
    linear-gradient(180deg, #050711 0%, #111633 48%, #060713 100%);
  background-size:
    100% 100%,
    100% 100%,
    100% 100%,
    138px 138px,
    214px 214px,
    100% 100%;
  background-position:
    center,
    center,
    center,
    0 0,
    38px 62px,
    center;
  background-repeat:
    no-repeat,
    no-repeat,
    no-repeat,
    repeat,
    repeat,
    no-repeat;
}

.packages::after,
.calculator::after,
.gallery::after,
.reviews::after,
.final-cta::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 0;
  height: clamp(82px, 10vw, 138px);
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 7, 17, 0) 0%, rgba(5, 7, 17, .7) 76%, #050711 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 180' preserveAspectRatio='none'%3E%3Cpath fill='%2303030b' fill-opacity='.94' d='M0 122h54v-18h26v18h38v-52l18-19 18 19v52h38V84h24v38h44V56l24-28 24 28v66h32V96h30v26h54V74h22v48h50V96h28v26h52V66l16-24 16 24v56h42V48l23-30 23 30v74h58V86h34v36h58V62l20-25 20 25v60h72V92h28v30h52V70l18-20 18 20v52h74V84h26v38h56V54l24-32 24 32v68h64V96h34v26h48V72l17-22 17 22v50h56V92h28v30h74V58l22-34 22 34v64h48V86h26v36h74V70l18-23 18 23v52h62V96h32v26h62V78l16-18 16 18v44h66v58H0Z'/%3E%3C/svg%3E") bottom center / 100% 100% no-repeat;
  opacity: .86;
}

.packages > .container,
.programs > .container,
.calculator > .container,
.gallery > .container,
.reviews > .container,
.final-cta > .container {
  position: relative;
  z-index: 1;
}

.brand-name {
  font-size: 28px;
  letter-spacing: .01em;
  text-shadow: 0 0 16px rgba(255, 210, 122, .2);
}

.hero-title strong {
  display: inline-block;
  font-size: .94em;
  line-height: .9;
  transform: translateY(.035em);
}

@media (max-width: 980px) {
  .brand-name {
    font-size: 24px;
  }
}

@media (max-width: 640px) {
  .brand-name {
    font-size: 21px;
  }

  .hero-title strong {
    font-size: .9em;
  }
}


/* Platforma Pskov Stage92 compact package cards without prices */
.packages-card {
  min-height: clamp(540px, 45vw, 585px);
}

.packages-card__button {
  margin-top: auto;
}

@media (max-width: 1100px) {
  .packages-card {
    min-height: 390px;
  }
}

@media (max-width: 760px) {
  .packages-card {
    min-height: 0;
  }

  .packages-card__button {
    margin-top: 4px;
  }
}


/* Platforma Pskov Stage114 programs contact CTA */
.programs-contact-cta {
  width: min(720px, 100%);
  display: flex;
  gap: 12px;
  align-items: stretch;
  margin: 24px 0 30px;
}

.programs-contact-cta .btn {
  min-height: 56px;
  height: 56px;
}

.programs-contact-cta__phone {
  flex-direction: column;
  gap: 4px;
  border-color: rgba(74, 147, 255, 0.32);
  background: linear-gradient(180deg, rgba(74, 147, 255, 0.2), rgba(36, 120, 232, 0.1));
  color: #fff;
}

.programs-contact-cta__label,
.programs-contact-cta__number {
  display: block;
  line-height: 1.1;
}

.programs-contact-cta__label {
  font-size: 16px;
  font-weight: 760;
}

.programs-contact-cta__number {
  font-size: 13px;
  font-weight: 650;
  color: rgba(255, 255, 255, 0.74);
}

.programs-contact-cta__max {
  min-width: 260px;
}

@media (max-width: 760px) {
  .programs-contact-cta {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 340px);
    gap: 10px;
    margin: 18px 0 24px;
  }

  .programs-contact-cta .btn {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    height: 52px;
  }
}
