:root {
  --white: #FFFFFF;
  --soft: #F0FAF9;
  --peach-bg: #FFF7ED;
  --text: #1F2937;
  --muted: #6B7280;
  --border: #E5E7EB;
  --teal: #0FA3A3;
  --teal-dark: #0B8A8A;
  --teal-deep: #0A7C7C;
  --teal-deeper: #086868;
  --teal-light: #D9F3F1;
  --coral: #FF6B57;
  --coral-hover: #FF5A44;
  --coral-text: #B03D27;
  --sun: #FFC53D;
  --sun-light: #FFF1CC;
  --sun-text: #7A5200;
  --peach: #FFE4D6;
  --radius: 24px;
  --radius-sm: 16px;
  --shadow: 0 12px 30px rgba(15, 163, 163, .15);
  --shadow-soft: 0 6px 20px rgba(15, 163, 163, .08);
  --shadow-coral: 0 12px 30px rgba(255, 107, 87, .25);
  --shadow-dark: 0 10px 24px rgba(31, 41, 55, .12);
  --font-head: "Nunito", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: "Rubik", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --header-h: 72px;
}

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

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--white);
  overflow-x: clip;
  padding-bottom: 84px;
}

body.no-scroll {
  overflow: hidden;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.01em;
}

p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: var(--teal-deep);
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

.icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 100;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--teal-deep);
  color: #fff;
  font-weight: 500;
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.container--narrow {
  max-width: 880px;
}

.section {
  padding: 56px 0;
  scroll-margin-top: calc(var(--header-h) + 8px);
}

.section--soft {
  background: var(--soft);
}

.section--peach {
  background: var(--peach-bg);
}

.section__head {
  max-width: 700px;
  margin: 0 auto 32px;
  text-align: center;
}

.section__title {
  font-size: clamp(28px, 4.5vw, 42px);
  margin-bottom: 12px;
}

.section__lead {
  font-size: 17px;
  color: var(--muted);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--teal-light);
  color: var(--teal-deep);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.section--peach .eyebrow {
  background: var(--peach);
  color: var(--coral-text);
}

.eyebrow--light {
  background: rgba(255, 255, 255, .18);
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 24px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 16px;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s, border-color .2s;
}

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

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

.btn .icon {
  width: 20px;
  height: 20px;
}

.btn--primary {
  background: var(--coral);
  color: var(--text);
  box-shadow: var(--shadow-coral);
}

.btn--primary:hover {
  background: var(--coral-hover);
  box-shadow: 0 16px 34px rgba(255, 107, 87, .32);
}

.btn--secondary {
  background: var(--teal-deep);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn--secondary:hover {
  background: var(--teal-deeper);
  color: #fff;
}

.btn--outline {
  background: transparent;
  border-color: var(--teal);
  color: var(--teal-deep);
}

.btn--outline:hover {
  background: var(--teal-light);
  color: var(--teal-deep);
}

.btn--ghost {
  background: transparent;
  color: var(--teal-deep);
}

.btn--ghost:hover {
  background: var(--teal-light);
  color: var(--teal-deep);
}

.btn--white {
  background: #fff;
  color: var(--teal-deep);
  box-shadow: var(--shadow-dark);
}

.btn--white:hover {
  color: var(--teal-deeper);
}

.btn--sm {
  min-height: 44px;
  padding: 8px 18px;
  font-size: 15px;
}

.btn--lg {
  min-height: 56px;
  padding: 14px 32px;
  font-size: 17px;
}

.btn--block {
  width: 100%;
}

.btn:disabled {
  opacity: .45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  color: var(--teal-deep);
  box-shadow: 0 4px 12px rgba(31, 41, 55, .08);
  transition: transform .2s, background .2s, color .2s;
}

.social:hover {
  transform: translateY(-2px);
  background: var(--teal-deep);
  color: #fff;
}

.social .icon {
  width: 22px;
  height: 22px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  transition: box-shadow .3s;
}

.header.is-scrolled {
  box-shadow: 0 8px 24px rgba(31, 41, 55, .08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--header-h);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}

.logo__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--teal);
  color: #fff;
  box-shadow: var(--shadow);
}

.logo__mark .icon {
  width: 26px;
  height: 26px;
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo__name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
}

.logo__sub {
  font-size: 11px;
  color: var(--muted);
}

.logo--light {
  color: #fff;
}

.logo--light .logo__sub {
  color: rgba(255, 255, 255, .7);
}

.nav {
  display: none;
}

.nav__list {
  display: flex;
  gap: 4px;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--text);
  font-weight: 500;
  transition: background .2s, color .2s;
}

.nav__link:hover {
  background: var(--teal-light);
  color: var(--teal-deep);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header__phone {
  display: none;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--text);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 16px;
  transition: color .2s;
}

.header__phone:hover {
  color: var(--teal-deep);
}

.header__phone .icon {
  color: var(--teal-deep);
}

.header__cta {
  display: none;
}

.burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: var(--teal-light);
  color: var(--teal-deep);
  cursor: pointer;
}

.burger__close {
  display: none;
}

.burger[aria-expanded="true"] .burger__open {
  display: none;
}

.burger[aria-expanded="true"] .burger__close {
  display: block;
}

.menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  max-height: calc(100vh - var(--header-h));
  overflow-y: auto;
  background: var(--white);
  border-radius: 0 0 28px 28px;
  box-shadow: 0 24px 40px rgba(31, 41, 55, .14);
}

.menu__inner {
  padding: 8px 16px 24px;
}

.menu__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}

.menu__link {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 16px;
  color: var(--text);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 19px;
  transition: background .2s, color .2s;
}

.menu__link:hover {
  background: var(--soft);
  color: var(--teal-deep);
}

.menu__contacts {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 20px;
  background: var(--soft);
}

.menu__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
}

.menu__phone .icon {
  color: var(--teal-deep);
}

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

.menu__social {
  display: flex;
  gap: 8px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 28px 0 48px;
  background: linear-gradient(180deg, var(--soft) 0%, var(--white) 100%);
}

.hero__inner {
  display: grid;
  gap: 24px;
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 14px 8px 10px;
  border-radius: 999px;
  background: #fff;
  color: var(--teal-deep);
  font-weight: 500;
  font-size: 14px;
  box-shadow: 0 4px 14px rgba(15, 163, 163, .12);
}

.hero__eyebrow .icon {
  width: 20px;
  height: 20px;
}

.hero__title {
  margin-bottom: 16px;
  font-size: clamp(34px, 7vw, 60px);
  line-height: 1.08;
}

.hero__lead {
  max-width: 540px;
  margin-bottom: 26px;
  font-size: 18px;
  color: var(--muted);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

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

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  padding: 44px 8px 36px;
}

.blob {
  position: absolute;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

.blob--teal {
  left: 2%;
  top: 0;
  width: 84%;
  height: 94%;
  background: var(--teal-light);
}

.blob--peach {
  right: 0;
  bottom: 2%;
  width: 62%;
  height: 72%;
  border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%;
  background: var(--peach);
}

.car {
  position: relative;
  width: 100%;
  max-width: 560px;
  height: auto;
  filter: drop-shadow(0 18px 24px rgba(15, 163, 163, .22));
}

.car__shadow {
  fill: rgba(15, 163, 163, .16);
}

.car__body {
  fill: var(--teal);
}

.car__glass {
  fill: #fff;
  opacity: .92;
}

.car__pillar {
  stroke: var(--teal-dark);
  stroke-width: 6;
  stroke-linecap: round;
}

.car__light--front {
  fill: var(--sun);
}

.car__light--rear {
  fill: var(--coral);
}

.car__handle {
  fill: var(--teal-dark);
}

.car__wheel {
  fill: var(--text);
}

.car__rim {
  fill: var(--soft);
  stroke: var(--teal-light);
  stroke-width: 6;
}

.pill {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 6px;
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 13px;
  white-space: nowrap;
  box-shadow: var(--shadow-dark);
  animation: float 4.5s ease-in-out infinite;
}

.pill .icon {
  width: 30px;
  height: 30px;
  padding: 6px;
  border-radius: 50%;
  background: var(--teal-light);
  color: var(--teal-deep);
}

.pill--1 {
  left: 0;
  top: 0;
}

.pill--2 {
  right: 0;
  top: 24%;
  animation-delay: -1.5s;
}

.pill--2 .icon {
  background: var(--peach);
  color: var(--coral-text);
}

.pill--3 {
  left: 4%;
  bottom: 0;
  animation-delay: -3s;
}

.pill--3 .icon {
  background: var(--sun-light);
  color: var(--sun-text);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-8px) rotate(1deg);
  }
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.stat__num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(24px, 3.4vw, 28px);
  line-height: 1;
  white-space: nowrap;
  color: var(--teal-deep);
}

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

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

[class*="__grid"] > .reveal:nth-child(3n + 2) {
  transition-delay: .08s;
}

[class*="__grid"] > .reveal:nth-child(3n + 3) {
  transition-delay: .16s;
}

.quiz__card {
  max-width: 920px;
  margin: 0 auto;
  padding: 24px 18px;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}

.quiz__top {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}

.quiz__counter {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--teal-deep);
}

.quiz__progress {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--teal-light);
}

.quiz__bar {
  display: block;
  width: 33.33%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--coral));
  transition: width .4s ease;
}

.quiz__question {
  margin-bottom: 16px;
  font-size: 22px;
}

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

.quiz__tile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-height: 96px;
  padding: 14px;
  border: 2px solid var(--border);
  border-radius: 20px;
  background: #fff;
  text-align: left;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 15px;
  line-height: 1.25;
  cursor: pointer;
  transition: border-color .2s, background .2s, transform .2s, box-shadow .2s;
}

.quiz__tile:hover {
  border-color: var(--teal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.quiz__tile .icon {
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: 12px;
  background: var(--teal-light);
  color: var(--teal-deep);
  transition: background .2s, color .2s;
}

.quiz__tile[aria-pressed="true"] {
  border-color: var(--teal);
  background: var(--soft);
  box-shadow: var(--shadow);
}

.quiz__tile[aria-pressed="true"] .icon {
  background: var(--teal-deep);
  color: #fff;
}

.quiz__tiles--classes .quiz__tile {
  gap: 4px;
  min-height: 84px;
}

.quiz__tile-title {
  font-size: 17px;
}

.quiz__tile-note {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  color: var(--muted);
}

.quiz__result {
  padding: 20px;
  border: 1px solid var(--teal-light);
  border-radius: 22px;
  background: linear-gradient(135deg, var(--soft), var(--peach-bg));
}

.quiz__result-label {
  margin-bottom: 4px;
  font-size: 14px;
  color: var(--muted);
}

.quiz__result-service {
  margin-bottom: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 24px;
  line-height: 1.2;
}

.quiz__result-price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 15px;
  color: var(--muted);
}

.quiz__result-price strong {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 999px;
  background: var(--coral);
  color: var(--text);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
  white-space: nowrap;
}

.quiz__checks {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.quiz__checks li {
  position: relative;
  padding-left: 32px;
  font-size: 15px;
}

.quiz__checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--teal-deep);
}

.quiz__checks li::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 6px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.quiz__note {
  margin-bottom: 18px;
  font-size: 14px;
  color: var(--muted);
}

.quiz__result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quiz__nav {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

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

.service {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}

.service:hover {
  transform: translateY(-4px);
  border-color: var(--teal-light);
  box-shadow: var(--shadow);
}

.service__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
}

.service__icon .icon {
  width: 28px;
  height: 28px;
}

.service__icon--teal {
  background: var(--teal-light);
  color: var(--teal-deep);
}

.service__icon--peach {
  background: var(--peach);
  color: var(--coral-text);
}

.service__title {
  font-size: 19px;
}

.service__price {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  color: var(--teal-deep);
}

.service__text {
  flex: 1;
  font-size: 15px;
  color: var(--muted);
}

.service__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  font-weight: 500;
  color: var(--teal-deep);
}

.service__link .icon {
  width: 20px;
  height: 20px;
  transition: transform .2s;
}

.service__link:hover .icon {
  transform: translateX(4px);
}

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

.why__card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.why__icon {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
}

.why__icon--teal {
  background: var(--teal-light);
  color: var(--teal-deep);
}

.why__icon--peach {
  background: var(--peach);
  color: var(--coral-text);
}

.why__title {
  margin-bottom: -6px;
  font-size: 18px;
}

.why__text {
  font-size: 15px;
  color: var(--muted);
}

.about {
  display: grid;
  gap: 20px;
  margin-top: 40px;
}

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

.ph {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 22px;
}

.ph::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(255, 255, 255, .35) 0 2px, transparent 2px 18px);
}

.ph--teal {
  background: linear-gradient(135deg, var(--teal-light), var(--teal));
  color: var(--teal-deeper);
}

.ph--peach {
  background: linear-gradient(135deg, var(--peach), var(--coral));
  color: var(--coral-text);
}

.ph--sun {
  background: linear-gradient(135deg, var(--sun-light), var(--sun));
  color: var(--sun-text);
}

.ph__icon {
  position: relative;
  width: 52px;
  height: 52px;
  padding: 13px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .75);
}

.ph__caption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .88);
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
}

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

.team__card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.avatar {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 16px;
}

.avatar--teal {
  background: var(--teal-light);
  color: var(--teal-deep);
}

.avatar--peach {
  background: var(--peach);
  color: var(--coral-text);
}

.avatar--sun {
  background: var(--sun-light);
  color: var(--sun-text);
}

.team__name {
  font-size: 17px;
}

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

.team__quote {
  margin-top: 6px;
  font-size: 15px;
}

.steps__list {
  position: relative;
  display: grid;
  gap: 16px;
}

.steps__list::before {
  content: "";
  position: absolute;
  left: 47px;
  top: 40px;
  bottom: 40px;
  border-left: 3px dashed rgba(15, 163, 163, .45);
}

.step {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  column-gap: 16px;
  row-gap: 4px;
  align-items: start;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.step__num {
  display: inline-flex;
  grid-row: 1 / 3;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--teal-deep);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 22px;
  box-shadow: var(--shadow);
}

.step:nth-child(even) .step__num {
  background: var(--coral);
  color: var(--text);
  box-shadow: var(--shadow-coral);
}

.step__title {
  padding-top: 4px;
  font-size: 19px;
}

.step__text {
  font-size: 15px;
  color: var(--muted);
}

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

.price-card {
  padding: 22px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.price-card__title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 18px;
}

.price-card__title .icon {
  width: 36px;
  height: 36px;
  padding: 7px;
  border-radius: 12px;
  background: var(--teal-light);
  color: var(--teal-deep);
}

.price-card:nth-child(even) .price-card__title .icon {
  background: var(--peach);
  color: var(--coral-text);
}

.price-list {
  display: grid;
  margin: 0;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 15px;
}

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

.price-row dd {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--teal-deep);
  white-space: nowrap;
}

.price-card--cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  background: var(--teal-deep);
  color: #fff;
  box-shadow: var(--shadow);
}

.price-card--cta .price-card__title {
  margin-bottom: 0;
  color: #fff;
}

.price-card__text {
  font-size: 15px;
  color: rgba(255, 255, 255, .88);
}

.club__card {
  position: relative;
  overflow: hidden;
  padding: 28px 20px;
  border-radius: 32px;
  background: var(--teal-deeper);
  color: #fff;
  box-shadow: var(--shadow);
}

.club__card::before {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 260px;
  height: 260px;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  background: rgba(255, 255, 255, .08);
}

.club__card::after {
  content: "";
  position: absolute;
  left: -50px;
  bottom: -90px;
  width: 220px;
  height: 220px;
  border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%;
  background: rgba(255, 197, 61, .22);
}

.club__head {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}

.club__head .section__title {
  color: #fff;
}

.club__lead {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, .88);
}

.club__perks {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.perk {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .1);
}

.perk__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  border-radius: 14px;
  background: #fff;
  color: var(--teal-deep);
}

.perk__title {
  margin-bottom: 4px;
  font-size: 17px;
}

.perk__text {
  font-size: 14px;
  color: rgba(255, 255, 255, .9);
}

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

.promo__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 24px 22px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--coral);
  color: var(--text);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.promo__title {
  font-size: 20px;
}

.promo__text {
  flex: 1;
  font-size: 15px;
  color: var(--muted);
}

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

.review {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.review__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.review__meta {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
  line-height: 1.25;
}

.review__name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 16px;
}

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

.stars {
  display: inline-flex;
  gap: 2px;
  color: var(--sun);
}

.stars .icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  stroke: #E0A61C;
  stroke-width: 1;
}

.review__bubble {
  --bubble: var(--soft);
  position: relative;
  margin: 0;
  padding: 18px 20px;
  border-radius: 4px 22px 22px 22px;
  background: var(--bubble);
  font-size: 15px;
}

.review__bubble::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 0;
  border-style: solid;
  border-width: 0 12px 12px 0;
  border-color: transparent var(--bubble) transparent transparent;
}

.review:nth-child(even) .review__bubble {
  --bubble: var(--peach-bg);
}

.review--cta {
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--teal-light);
}

.review__cta-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 22px;
}

.review__cta-text {
  margin-bottom: 8px;
  font-size: 15px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}

.chip:hover {
  border-color: var(--teal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.faq__list {
  display: grid;
  gap: 10px;
}

.faq__item {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}

.faq__item.is-open {
  border-color: var(--teal-light);
  box-shadow: var(--shadow-soft);
}

.faq__heading {
  margin: 0;
  font-size: inherit;
}

.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  min-height: 60px;
  padding: 14px 18px;
  border: 0;
  border-radius: 20px;
  background: transparent;
  text-align: left;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 17px;
  cursor: pointer;
}

.faq__plus {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--teal-light);
  color: var(--teal-deep);
  transition: transform .3s, background .3s, color .3s;
}

.faq__plus .icon {
  width: 20px;
  height: 20px;
}

.faq__item.is-open .faq__plus {
  transform: rotate(45deg);
  background: var(--teal-deep);
  color: #fff;
}

.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}

.faq__a-inner {
  min-height: 0;
  overflow: hidden;
  visibility: hidden;
  transition: visibility .3s;
}

.faq__a-inner p {
  padding: 0 18px 18px;
  font-size: 15px;
  color: var(--muted);
}

.faq__item.is-open .faq__a {
  grid-template-rows: 1fr;
}

.faq__item.is-open .faq__a-inner {
  visibility: visible;
}

.contacts__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
}

.info {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}

.info__item {
  display: flex;
  gap: 14px;
  padding: 16px;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.info__icon {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
}

.info__icon--teal {
  background: var(--teal-light);
  color: var(--teal-deep);
}

.info__icon--peach {
  background: var(--peach);
  color: var(--coral-text);
}

.info__label {
  margin-bottom: 2px;
  font-size: 13px;
  color: var(--muted);
}

.info__value {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 16px;
}

.info__hint {
  margin-top: 4px;
  font-size: 14px;
  color: var(--muted);
}

.info__link {
  color: var(--text);
  transition: color .2s;
}

.info__link:hover {
  color: var(--teal-deep);
}

.info__social {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.info__social .social {
  background: var(--soft);
  box-shadow: none;
}

.info__social .social:hover {
  background: var(--teal-deep);
}

.map {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border-radius: 24px;
  background: var(--teal-light);
}

.map__grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(15, 163, 163, .14) 1px, transparent 1px), linear-gradient(90deg, rgba(15, 163, 163, .14) 1px, transparent 1px);
  background-size: 36px 36px;
}

.map__road {
  position: absolute;
  background: rgba(255, 255, 255, .8);
}

.map__road--h {
  left: 0;
  right: 0;
  top: 44%;
  height: 26px;
}

.map__road--v {
  top: 0;
  bottom: 0;
  left: 28%;
  width: 22px;
}

.map__pin {
  position: absolute;
  left: 50%;
  top: 44%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transform: translate(-50%, -78%);
}

.map__pin-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--text);
  box-shadow: var(--shadow-coral);
}

.map__pin-icon .icon {
  width: 28px;
  height: 28px;
}

.map__pin-label {
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 13px;
  white-space: nowrap;
  box-shadow: var(--shadow-dark);
}

.map__metro {
  position: absolute;
  left: 12px;
  top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px 6px 6px;
  border-radius: 999px;
  background: #fff;
  font-size: 13px;
  font-weight: 500;
  color: var(--coral-text);
}

.map__metro::before {
  content: "М";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--text);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 12px;
}

.map__link {
  position: absolute;
  right: 12px;
  bottom: 12px;
}

.form-card {
  padding: 24px 18px;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}

.form > * + * {
  margin-top: 14px;
}

.form__title {
  font-size: 24px;
}

.form__title + .form__sub {
  margin-top: 6px;
}

.form__sub {
  font-size: 15px;
  color: var(--muted);
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.field__label {
  font-weight: 500;
  font-size: 14px;
}

.field__req {
  color: var(--coral-text);
}

.field__input {
  width: 100%;
  min-height: 50px;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 16px;
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}

.field__input::placeholder {
  color: #9CA3AF;
}

.field__input:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(15, 163, 163, .15);
}

.field__select {
  padding-right: 44px;
  -webkit-appearance: none;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 22px) 55%, calc(100% - 16px) 55%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.field__textarea {
  min-height: 96px;
  resize: vertical;
}

.field--invalid .field__input {
  border-color: var(--coral);
}

.field__error {
  font-size: 13px;
  color: var(--coral-text);
}

.field__error:empty {
  display: none;
}

.field--check {
  display: grid;
  grid-template-columns: 24px 1fr;
  column-gap: 10px;
  align-items: start;
}

.check {
  width: 22px;
  height: 22px;
  margin: 2px 0 0;
  accent-color: var(--teal-deep);
}

.check__label {
  font-size: 14px;
}

.check__label a {
  text-decoration: underline;
}

.field--check .field__error {
  grid-column: 1 / -1;
}

.form__note {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}

.field--slots {
  gap: 10px;
}

.dates {
  display: flex;
  gap: 8px;
  margin: 0 -2px;
  padding: 4px 2px 8px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.date-chip {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 86px;
  min-height: 60px;
  padding: 8px 12px;
  border: 2px solid var(--border);
  border-radius: 18px;
  background: #fff;
  line-height: 1.2;
  cursor: pointer;
  transition: border-color .2s, background .2s, color .2s;
}

.date-chip__day {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 14px;
}

.date-chip__date {
  font-size: 12px;
  color: var(--muted);
}

.date-chip:hover {
  border-color: var(--teal);
}

.date-chip[aria-pressed="true"] {
  border-color: var(--teal-deep);
  background: var(--teal-deep);
  color: #fff;
}

.date-chip[aria-pressed="true"] .date-chip__date {
  color: rgba(255, 255, 255, .85);
}

.date-chip:disabled {
  opacity: .45;
  cursor: not-allowed;
}

.slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.slot {
  min-height: 44px;
  padding: 8px 4px;
  border: 2px solid var(--border);
  border-radius: 14px;
  background: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: border-color .2s, background .2s, color .2s;
}

.slot:hover {
  border-color: var(--teal);
}

.slot[aria-pressed="true"] {
  border-color: var(--coral);
  background: var(--coral);
  color: var(--text);
}

.slot:disabled {
  border-color: #F3F4F6;
  background: #F3F4F6;
  color: #9CA3AF;
  text-decoration: line-through;
  cursor: not-allowed;
}

.slots__legend {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
}

.slots__dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 2px solid var(--border);
  border-radius: 4px;
  background: #fff;
}

.slots__dot--busy {
  margin-left: 10px;
  border-color: #F3F4F6;
  background: #F3F4F6;
}

.slots__summary {
  font-size: 14px;
  font-weight: 500;
  color: var(--teal-deep);
}

.form__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 0;
  text-align: center;
}

.form__success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin-bottom: 8px;
  border-radius: 50%;
  background: var(--teal-light);
  color: var(--teal-deep);
}

.form__success-icon .icon {
  width: 36px;
  height: 36px;
  stroke-width: 2.4;
}

.form__success .form__sub {
  margin-bottom: 8px;
}

.footer {
  padding: 48px 0 24px;
  border-radius: 32px 32px 0 0;
  background: var(--text);
  color: #fff;
}

.footer__inner {
  display: grid;
  gap: 28px;
}

.footer__text {
  max-width: 320px;
  margin: 16px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, .75);
}

.footer__social {
  display: flex;
  gap: 8px;
}

.footer .social {
  background: rgba(255, 255, 255, .1);
  color: #fff;
  box-shadow: none;
}

.footer .social:hover {
  background: var(--teal);
}

.footer__heading {
  margin-bottom: 12px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 16px;
}

.footer__list {
  display: grid;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, .75);
}

.footer__link {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  color: rgba(255, 255, 255, .88);
  transition: color .2s;
}

.footer__link:hover {
  color: var(--sun);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: 13px;
  color: rgba(255, 255, 255, .6);
}

.float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 40;
  display: none;
  flex-direction: column;
  gap: 10px;
}

.float__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #fff;
  box-shadow: var(--shadow-dark);
  transition: transform .2s;
}

.float__btn:hover {
  transform: translateY(-3px) scale(1.04);
  color: #fff;
}

.float__btn .icon {
  width: 26px;
  height: 26px;
}

.float__btn--tg {
  background: var(--teal-deep);
}

.float__btn--wa {
  background: #1FA855;
}

.mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: flex;
  gap: 10px;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 -8px 24px rgba(31, 41, 55, .1);
  backdrop-filter: blur(10px);
}

.mobile-bar__btn {
  flex: 1;
  min-height: 52px;
  padding: 10px 12px;
  font-size: 15px;
}

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

  .container {
    padding: 0 24px;
  }

  .header__phone,
  .header__cta {
    display: inline-flex;
  }

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

  .hero__visual {
    min-height: 380px;
  }

  .pill {
    padding: 8px 16px 8px 8px;
    font-size: 14px;
  }

  .stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .quiz__card {
    padding: 32px;
  }

  .quiz__top {
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }

  .quiz__counter {
    flex-shrink: 0;
  }

  .quiz__progress {
    flex: 1;
  }

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

  .services__grid,
  .why__grid,
  .prices__grid,
  .promo__grid,
  .reviews__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .club__card {
    padding: 40px;
  }

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

  .form-card {
    padding: 32px;
  }

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

  .dates {
    flex-wrap: wrap;
    overflow: visible;
  }

  .slots {
    grid-template-columns: repeat(6, 1fr);
  }

  .float {
    display: flex;
  }

  .mobile-bar {
    display: none;
  }

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

@media (min-width: 768px) {
  .section {
    padding: 80px 0;
  }

  .section__head {
    margin-bottom: 48px;
  }

  .stat {
    padding: 22px 24px;
  }

  .stat__num {
    font-size: 32px;
  }

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

@media (min-width: 1024px) {
  .container {
    padding: 0 32px;
  }

  .section {
    padding: 96px 0;
  }

  .nav {
    display: block;
  }

  .burger {
    display: none;
  }

  .menu {
    display: none;
  }

  .hero {
    padding: 48px 0 64px;
  }

  .hero__inner {
    grid-template-columns: 1.05fr 1fr;
    gap: 40px;
  }

  .hero__visual {
    min-height: 460px;
    padding: 56px 16px 48px;
  }

  .pill--2 {
    top: 12%;
  }

  .quiz__card {
    padding: 40px;
  }

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

  .quiz__tiles--classes {
    grid-template-columns: repeat(5, 1fr);
  }

  .services__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .why__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .about {
    grid-template-columns: 1.15fr .85fr;
    align-items: start;
  }

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

  .steps__list {
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
  }

  .steps__list::before {
    left: 10%;
    right: 10%;
    top: 51px;
    bottom: auto;
    border-left: 0;
    border-top: 3px dashed rgba(15, 163, 163, .45);
  }

  .step {
    grid-template-columns: 1fr;
    justify-items: center;
    row-gap: 6px;
    padding: 24px 16px;
    text-align: center;
  }

  .step__num {
    grid-row: auto;
    margin-bottom: 8px;
  }

  .step__title {
    padding-top: 0;
  }

  .prices__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .club__card {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
    align-items: center;
    padding: 56px;
  }

  .club__head {
    margin-bottom: 0;
  }

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

  .promo__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .reviews__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .contacts__grid {
    grid-template-columns: 1fr 1.05fr;
    gap: 32px;
    align-items: start;
  }

  .footer__inner {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.field--slots legend {
  padding: 0;
}

.faq__q:hover {
  color: var(--teal-deep);
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .nav__link {
    padding: 0 12px;
    font-size: 15px;
  }

  .header__phone {
    width: 44px;
    justify-content: center;
    padding: 0;
  }

  .header__phone span {
    display: none;
  }
}
