/* ===== Base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-heading: #720058;
  --color-primary: #DA70D6;
  --color-primary-dark: #b855b4;
  --color-primary-light: #C9A0FF;
  --color-primary-soft: #f5efff;
  --color-accent: #C9A0FF;
  --color-block-accent: #DA70D6;
  --color-block-accent-bg: rgba(218, 112, 214, 0.1);
  --color-block-accent-border: rgba(218, 112, 214, 0.45);
  --block-shadow: 0 4px 24px rgba(218, 112, 214, 0.16);
  --color-text: #3d3548;
  --color-text-muted: #6b6278;
  --color-bg: #ffffff;
  --color-bg-alt: #faf8fd;
  --color-border: #e8dff5;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(201, 160, 255, 0.15);
  --shadow-lg: 0 12px 40px rgba(218, 112, 214, 0.12);
  --color-dark: #3d3548;
  --bar-bg: #3d3548;
  --header-gradient: linear-gradient(135deg, #B53389 0%, #DF00FF 100%);
  --font: 'Manrope', system-ui, -apple-system, sans-serif;
  --font-heading: 'Nunito', 'Manrope', system-ui, sans-serif;
  --header-h: 80px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  position: relative;
}

/* ===== Background blobs ===== */
.bg-blobs {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.bg-blobs__circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
}

.bg-blobs__circle--1 {
  width: 480px;
  height: 480px;
  background: #C9A0FF;
  top: -120px;
  right: -100px;
}

.bg-blobs__circle--2 {
  width: 400px;
  height: 400px;
  background: #DA70D6;
  top: 35%;
  left: -140px;
  opacity: 0.4;
}

.bg-blobs__circle--3 {
  width: 360px;
  height: 360px;
  background: #B53389;
  bottom: 20%;
  right: 8%;
  opacity: 0.35;
}

.bg-blobs__circle--4 {
  width: 520px;
  height: 520px;
  background: #DF00FF;
  bottom: -180px;
  left: 25%;
  opacity: 0.28;
}

.bg-blobs__circle--5 {
  width: 300px;
  height: 300px;
  background: #C9A0FF;
  top: 55%;
  right: -80px;
  opacity: 0.45;
}

main,
.footer {
  position: relative;
  z-index: 1;
}

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

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

h1, h2, h3,
.section__title,
.hero__motto,
.profile__name,
.cabinet__approaches-title,
.formats__title,
.steps__title,
.card h3,
.price-card h3,
.review__author,
.steps__list strong,
.formats__item dt {
  font-family: var(--font-heading);
  color: var(--color-heading);
  letter-spacing: 0.01em;
}

.section__subtitle,
.hero__label,
.profile__role,
.review__topic {
  color: var(--color-primary);
  opacity: 0.85;
}

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

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-block-accent);
  color: #fff;
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: #c85fd0;
}

.btn--light {
  background: #fff;
  color: var(--color-block-accent);
  border: 2px solid var(--color-block-accent-border);
}

.btn--light:hover,
.btn--light:focus-visible {
  background: var(--color-block-accent-bg);
  color: #b855b4;
  border-color: var(--color-block-accent);
}

.btn--telegram {
  background: #fff;
  color: #2aabee;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn--telegram:hover,
.btn--telegram:focus-visible {
  background: #e8f6fd;
  border-color: #2aabee;
}

.btn:focus-visible {
  outline: 2px solid var(--color-block-accent);
  outline-offset: 2px;
}

.btn__icon {
  flex-shrink: 0;
}

.btn--lg {
  padding: 16px 32px;
  font-size: 16px;
}

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

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: var(--header-gradient);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo__img {
  height: 58px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.nav {
  display: flex;
  gap: 22px;
  margin-left: auto;
}

.nav a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 600;
}

.nav a:hover {
  color: var(--color-primary-light);
}

.header__cta {
  flex-shrink: 0;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  cursor: pointer;
  margin-left: auto;
}

.burger span {
  display: block;
  height: 2px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

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

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

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

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-h) + 48px) 0 64px;
  background: linear-gradient(160deg, rgba(245, 239, 255, 0.85) 0%, rgba(255, 255, 255, 0.75) 55%);
}

/* Асимметричный декор — только по краям, центр пустой */
.hero__deco {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero__deco-a {
  position: absolute;
  top: -22%;
  left: -18%;
  width: clamp(320px, 52vw, 580px);
  height: clamp(320px, 52vw, 580px);
}

.hero__deco-a::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 28% 32%, rgba(255, 107, 107, 0.72) 0%, transparent 48%),
    radial-gradient(circle at 58% 28%, rgba(255, 159, 67, 0.68) 0%, transparent 46%),
    radial-gradient(circle at 72% 52%, rgba(255, 217, 61, 0.65) 0%, transparent 44%),
    radial-gradient(circle at 42% 68%, rgba(107, 203, 119, 0.62) 0%, transparent 46%),
    radial-gradient(circle at 22% 58%, rgba(77, 150, 255, 0.6) 0%, transparent 45%),
    radial-gradient(circle at 65% 72%, rgba(199, 125, 255, 0.68) 0%, transparent 48%);
  filter: blur(36px);
  border-radius: 50%;
}

.hero__deco-a-letter {
  position: absolute;
  top: 16%;
  left: 20%;
  font-family: var(--font-heading);
  font-size: clamp(240px, 38vw, 480px);
  font-weight: 800;
  line-height: 0.82;
  background: linear-gradient(
    145deg,
    #FF6B6B 0%,
    #FF9F43 18%,
    #FFD93D 36%,
    #6BCB77 54%,
    #4D96FF 72%,
    #9B59FF 86%,
    #C77DFF 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.62;
  filter: blur(5px);
  user-select: none;
}

.hero__deco-rrr {
  position: absolute;
  right: 1.5%;
  bottom: 6%;
  font-family: var(--font-heading);
  font-size: clamp(16px, 2.2vw, 22px);
  font-weight: 800;
  letter-spacing: 0.18em;
  transform: rotate(-15deg);
  filter: blur(1.2px);
  user-select: none;
}

.hero__deco-rrr-char--1 { color: #FF6B6B; }
.hero__deco-rrr-char--2 { color: #FFD93D; }
.hero__deco-rrr-char--3 { color: #4D96FF; }

.hero__deco-spine {
  position: absolute;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--font-heading);
  font-size: clamp(12px, 1.4vw, 16px);
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: lowercase;
  padding: 22px 8px;
  border-radius: 4px;
  user-select: none;
}

.hero__deco-spine--whisper {
  left: max(4px, 0.8vw);
  top: 18%;
  color: #fff;
  background: linear-gradient(180deg, #FF6B6B 0%, #FF9F43 100%);
  box-shadow: 0 4px 18px rgba(255, 107, 107, 0.35);
}

.hero__deco-spine--voice {
  right: max(4px, 0.8vw);
  top: 54%;
  color: #fff;
  background: linear-gradient(180deg, #6BCB77 0%, #4D96FF 100%);
  box-shadow: 0 4px 18px rgba(77, 150, 255, 0.32);
}

.hero__deco-spine--tempo {
  right: max(4px, 0.8vw);
  top: 26%;
  color: #fff;
  background: linear-gradient(180deg, #9B59FF 0%, #C77DFF 100%);
  box-shadow: 0 4px 18px rgba(155, 89, 255, 0.32);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: center;
}

.hero__content {
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid var(--color-block-accent-border);
  border-left: 4px solid var(--color-block-accent);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--block-shadow);
}

.hero__label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  background: rgba(201, 160, 255, 0.2);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.hero h1,
.hero__title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero__title-line,
.hero__title-brand {
  display: block;
}

.hero__title-brand {
  margin-top: 0.12em;
}

.brand-rainbow,
.quote-rainbow {
  display: inline-block;
  background: linear-gradient(
    90deg,
    #FF6B6B 0%,
    #FF9F43 16%,
    #FFD93D 32%,
    #6BCB77 48%,
    #4D96FF 64%,
    #9B59FF 80%,
    #C77DFF 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__motto {
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
}

.hero__text {
  font-size: 17px;
  color: var(--color-text-muted);
  max-width: 540px;
  margin-bottom: 28px;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

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

.hero__note strong {
  color: var(--color-primary);
}

.hero__card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero__card-item {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius);
  padding: 20px 24px;
  border: 2px solid var(--color-block-accent-border);
  border-left: 4px solid var(--color-block-accent);
  box-shadow: var(--block-shadow);
}

.hero__card-num {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 4px;
}

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

/* ===== Sections ===== */
.section {
  padding: 72px 0;
}

.section--alt {
  background: rgba(250, 248, 253, 0.82);
}

.section--cta {
  background: rgba(250, 248, 253, 0.82);
  padding: 64px 0;
}

.section__title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
}

.section__title--light {
  color: var(--color-heading);
}

.section__subtitle {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 40px;
  max-width: 560px;
}

/* ===== Cards ===== */
.cards {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.card {
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid var(--color-block-accent-border);
  border-left: 4px solid var(--color-block-accent);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--block-shadow);
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.card__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 14px;
  background: var(--color-block-accent-bg);
  border-radius: 18px;
  border: 2px solid var(--color-block-accent-border);
}

.card__icon {
  display: block;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}

.card p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.notice {
  background: var(--color-block-accent-bg);
  border: 2px solid var(--color-block-accent-border);
  border-left: 4px solid var(--color-block-accent);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--block-shadow);
}

.notice p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.notice strong {
  color: var(--color-block-accent);
}

/* ===== Pricing ===== */
.pricing {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: start;
}

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

.price-card {
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid var(--color-block-accent-border);
  border-left: 4px solid var(--color-block-accent);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  box-shadow: var(--block-shadow);
}

.price-card--featured {
  border-color: var(--color-block-accent);
  border-left-width: 5px;
  background: var(--color-block-accent-bg);
  box-shadow: 0 6px 28px rgba(218, 112, 214, 0.22);
}

.price-card__badge {
  position: absolute;
  top: -10px;
  left: 20px;
  background: var(--color-block-accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 999px;
}

.price-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}

.price-card__price {
  font-size: 26px;
  font-weight: 700;
  color: var(--color-block-accent);
  margin-bottom: 12px;
}

.price-card__desc {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.formats {
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid var(--color-block-accent-border);
  border-left: 4px solid var(--color-block-accent);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--block-shadow);
}

.formats__title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}

.formats__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.formats__item {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
}

.formats__item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.formats__item dt {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.formats__item dd {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ===== About me ===== */
.profile {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 48px;
  align-items: center;
}

.profile__photo-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: none;
  box-shadow:
    0 24px 56px rgba(61, 53, 72, 0.38),
    0 12px 28px rgba(114, 0, 88, 0.22),
    0 4px 12px rgba(61, 53, 72, 0.12);
}

.profile__content {
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid var(--color-block-accent-border);
  border-left: 4px solid var(--color-block-accent);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--block-shadow);
}

.profile__photo {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 3 / 4;
}

.profile__name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 4px;
}

.profile__role {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}

.profile__facts {
  list-style: none;
  margin-bottom: 20px;
}

.profile__facts li {
  font-size: 15px;
  color: var(--color-text-muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
}

.profile__facts li:last-child {
  border-bottom: none;
}

.profile__facts strong {
  color: var(--color-block-accent);
}

.profile__text {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.profile .section__subtitle {
  margin-bottom: 20px;
}

/* ===== Cabinet ===== */
.cabinet {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 48px;
}

.cabinet__content {
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid var(--color-block-accent-border);
  border-left: 4px solid var(--color-block-accent);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--block-shadow);
}

.cabinet__text {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

.cabinet__approaches-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}

.approaches {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.approaches li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  color: var(--color-text-muted);
}

.approaches li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-block-accent);
}

.cabinet__photo-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: none;
  box-shadow:
    0 24px 56px rgba(61, 53, 72, 0.38),
    0 12px 28px rgba(114, 0, 88, 0.22),
    0 4px 12px rgba(61, 53, 72, 0.12);
}

.cabinet__photo {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.steps-wrap {
  max-width: 720px;
}

.steps {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 2px solid var(--color-block-accent-border);
  border-left: 4px solid var(--color-block-accent);
  box-shadow: var(--block-shadow);
}

.steps__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 24px;
}

.steps__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.steps__list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.steps__num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--color-block-accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.steps__list strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}

.steps__list p {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ===== Reviews ===== */
.reviews {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review {
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid var(--color-block-accent-border);
  border-left: 4px solid var(--color-block-accent);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--block-shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review__header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review__avatar {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}

.review__avatar--1 {
  background: linear-gradient(135deg, #C9A0FF, #9b7fd4);
}

.review__avatar--2 {
  background: linear-gradient(135deg, #DA70D6, #b855b4);
}

.review__avatar--3 {
  background: linear-gradient(135deg, #a888e8, #DA70D6);
}

.review__author {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 2px;
}

.review__topic {
  font-size: 12px;
  font-weight: 500;
}

.review__text {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.65;
  font-style: normal;
  border: none;
  margin: 0;
}

/* ===== Contacts ===== */
.contacts__info {
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid var(--color-block-accent-border);
  border-left: 4px solid var(--color-block-accent);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--block-shadow);
  max-width: 640px;
}

.contacts__text {
  color: var(--color-text-muted);
  font-size: 17px;
  margin-bottom: 28px;
  max-width: 520px;
}

.contacts__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}

.contacts__address {
  font-style: normal;
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.contacts__address strong {
  color: var(--color-heading);
}

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

/* ===== Footer ===== */
.footer {
  padding: 24px 0;
  background: linear-gradient(135deg, #B53389 0%, #DF00FF 100%);
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer a {
  color: rgba(255, 255, 255, 0.95);
}

.footer a:hover {
  color: #fff;
  text-decoration: underline;
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }

  .hero__card {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero__card-item {
    flex: 1;
    min-width: 140px;
  }

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

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

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

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

  .profile__photo-wrap {
    max-width: 360px;
    margin: 0 auto;
  }

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

  .cabinet__photo-wrap {
    order: -1;
  }

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

@media (max-width: 640px) {
  .nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--header-gradient);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  }

  .nav.is-open {
    display: flex;
  }

  .header__cta {
    display: none;
  }

  .burger {
    display: flex;
  }

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

  .hero__deco-spine,
  .hero__deco-rrr {
    display: none;
  }

  .hero__deco-a-letter {
    font-size: 160px;
    filter: blur(6px);
    opacity: 0.55;
  }

  .hero__deco-a {
    width: 280px;
    height: 280px;
  }

  .hero__card {
    flex-direction: column;
  }

  .contacts__buttons {
    flex-direction: column;
  }

  .contacts__buttons .btn {
    width: 100%;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .logo__img {
    height: 48px;
    max-width: 160px;
  }
}
