/* ============================================================
   VLADA · лечебный и классический массаж в Алматы
   Дизайн-система: «тёплый + доверие» (organic spa / clinical trust)
   Палитра: тёплый крем + травяной зелёный + глина + золото
   Шрифты: Cormorant (display) + Manrope (body)
   ============================================================ */

:root {
  /* — палитра — */
  --cream:      #F7F1E6;
  --cream-2:    #FCF8F0;
  --paper:      #FFFFFF;
  --ink:        #26312A;   /* основной текст — глубокий травяной */
  --ink-soft:   #5C6A5A;   /* приглушённый текст */
  --sage:       #6F8C6A;   /* основной зелёный акцент */
  --sage-deep:  #3C503B;   /* тёмно-зелёный (тёмные секции) */
  --sage-soft:  #E6ECDD;   /* светлый фон секций */
  --sage-line:  #D6DECB;
  --clay:       #B96B4E;   /* тёплый акцент / вторичный CTA */
  --clay-dark:  #9E5740;
  --gold:       #B08A4A;   /* бейдж сертификата */
  --wa:         #25D366;   /* whatsapp */
  --wa-dark:    #1Fae57;
  --line:       rgba(38, 49, 42, .12);
  --line-soft:  rgba(38, 49, 42, .07);

  /* — типографика — */
  --display: "Cormorant", "Times New Roman", serif;
  --body: "Manrope", -apple-system, "Segoe UI", sans-serif;

  /* — радиусы / тени — */
  --r-sm: 10px;
  --r:    18px;
  --r-lg: 28px;
  --r-pill: 999px;
  --shadow-sm: 0 2px 10px rgba(38,49,42,.06);
  --shadow:    0 14px 40px -18px rgba(38,49,42,.28);
  --shadow-lg: 0 30px 70px -30px rgba(38,49,42,.40);

  /* — раскладка — */
  --maxw: 1180px;
  --gutter: clamp(18px, 5vw, 56px);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 17px;
  letter-spacing: .002em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }

/* атмосферный зернистый оверлей */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9999;
  opacity: .035; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- типографика ---------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.01em;
  color: var(--ink);
}
h1 { font-size: clamp(2.6rem, 6.2vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
.lead { font-size: clamp(1.05rem, 1.8vw, 1.28rem); color: var(--ink-soft); }

.eyebrow {
  font-family: var(--body);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--sage);
  display: inline-flex; align-items: center; gap: .55em;
}
.eyebrow::before {
  content: ""; width: 26px; height: 1.5px; background: var(--sage); display: inline-block;
}
.accent { color: var(--clay); }
.serif-i { font-family: var(--display); font-style: italic; }

/* ---------- layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(56px, 9vw, 120px); }
.section--tight { padding-block: clamp(40px, 6vw, 80px); }
.center { text-align: center; }
.sec-head { max-width: 660px; margin-bottom: clamp(32px, 5vw, 56px); }
.sec-head.center { margin-inline: auto; }
.sec-head .eyebrow { margin-bottom: 18px; }
.sec-head p { margin-top: 16px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  font-weight: 700; font-size: .98rem; letter-spacing: .01em;
  padding: 16px 28px; border-radius: var(--r-pill);
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s, background .25s, color .25s;
  white-space: nowrap; will-change: transform;
}
.btn svg { width: 1.25em; height: 1.25em; }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }

.btn--wa { background: var(--wa); color: #fff; box-shadow: 0 12px 26px -10px rgba(37,211,102,.6); }
.btn--wa:hover { background: var(--wa-dark); box-shadow: 0 18px 34px -10px rgba(37,211,102,.7); }

.btn--primary { background: var(--ink); color: var(--cream-2); }
.btn--primary:hover { background: var(--sage-deep); }

.btn--clay { background: var(--clay); color: #fff; box-shadow: 0 12px 26px -12px rgba(185,107,78,.6); }
.btn--clay:hover { background: var(--clay-dark); }

.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn--ghost:hover { border-color: var(--ink); background: rgba(38,49,42,.04); }

.btn--lg { padding: 19px 36px; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 200;
  transition: background .35s, box-shadow .35s, padding .35s;
  padding-block: 18px;
}
.site-header.scrolled {
  background: rgba(247,241,230,.85);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line), 0 10px 30px -22px rgba(38,49,42,.5);
  padding-block: 10px;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--sage-deep); color: var(--cream);
  font-family: var(--display); font-weight: 700; font-size: 1.35rem;
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.15);
}
.brand__name { font-family: var(--display); font-weight: 700; font-size: 1.5rem; line-height: 1; letter-spacing: .04em; }
.brand__sub { font-size: .68rem; letter-spacing: .26em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a { font-size: .95rem; font-weight: 600; color: var(--ink); position: relative; padding-block: 4px; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0; background: var(--clay); transition: width .3s;
}
.nav__links a:hover::after { width: 100%; }
.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__phone { font-weight: 800; font-size: 1rem; white-space: nowrap; }
.nav__phone span { display: block; font-size: .66rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--sage); }
.burger { display: none; width: 46px; height: 46px; border-radius: 12px; border: 1.5px solid var(--line); flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.burger span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero { position: relative; padding-top: clamp(28px, 5vw, 56px); padding-bottom: clamp(48px, 8vw, 110px); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: -1; }
.hero__blob {
  position: absolute; border-radius: 50%; filter: blur(40px); opacity: .55;
}
.hero__blob--1 { width: 520px; height: 520px; background: radial-gradient(circle at 30% 30%, #cfe0c2, transparent 70%); top: -160px; right: -120px; }
.hero__blob--2 { width: 460px; height: 460px; background: radial-gradient(circle at 50% 50%, #ecd9c4, transparent 70%); bottom: -200px; left: -140px; opacity: .5; }
.hero__grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center;
}
.hero__content { max-width: 600px; }
.hero h1 { margin: 18px 0 0; line-height: 0.9; }
.hero h1 em { font-style: italic; color: var(--clay); }
.hero__lead { margin-top: 22px; max-width: 520px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 22px 30px; margin-top: 38px; }
.hero__trust li { display: flex; align-items: center; gap: 10px; font-size: .92rem; font-weight: 600; color: var(--ink); }
.hero__trust svg { width: 22px; height: 22px; color: var(--sage); flex: none; }

/* hero visual */
.hero__visual { position: relative; }
.hero__photo {
  position: relative; aspect-ratio: 4/5; border-radius: var(--r-lg);
  background:
    linear-gradient(160deg, rgba(60,80,59,.0), rgba(60,80,59,.25)),
    repeating-linear-gradient(135deg, #e9ddc8 0 22px, #e3d6bf 22px 44px),
    var(--sage-soft);
  box-shadow: var(--shadow-lg);
  overflow: hidden; display: grid; place-items: center; text-align: center;
}
.hero__photo span { font-family: var(--display); font-size: 1.1rem; color: rgba(38,49,42,.45); padding: 24px; font-style: italic; }
.hero__card {
  position: absolute; left: -26px; bottom: 34px;
  background: var(--paper); border-radius: var(--r); padding: 16px 20px;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: 14px;
  max-width: 280px;
}
.hero__card .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--sage-soft); display: grid; place-items: center; color: var(--sage-deep); flex: none; }
.hero__card b { font-family: var(--display); font-size: 1.5rem; display: block; line-height: 1; }
.hero__card small { color: var(--ink-soft); font-size: .82rem; }
.hero__badge {
  position: absolute; right: -14px; top: 26px;
  background: var(--gold); color: #fff; font-weight: 700; font-size: .8rem;
  padding: 10px 16px; border-radius: var(--r-pill); box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 8px; letter-spacing: .02em;
}

/* ---------- маркеры доверия (лента) ---------- */
.trustbar { background: var(--sage-deep); color: var(--cream-2); }
.trustbar .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px 30px; padding-block: 22px; }
.trustbar li { display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: .95rem; }
.trustbar b { font-family: var(--display); font-size: 1.7rem; margin-right: 6px; }
.trustbar svg { width: 24px; height: 24px; opacity: .85; }

/* ---------- секции услуг ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc-card {
  background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--r);
  padding: 30px 26px; display: flex; flex-direction: column; gap: 14px;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s, border-color .3s;
  position: relative; overflow: hidden;
}
.svc-card::after {
  content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 4px; background: var(--clay); transform: scaleY(0); transform-origin: top; transition: transform .35s;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.svc-card:hover::after { transform: scaleY(1); }
.svc-card__ic { width: 56px; height: 56px; border-radius: 16px; background: var(--sage-soft); display: grid; place-items: center; color: var(--sage-deep); }
.svc-card__ic svg { width: 28px; height: 28px; }
.svc-card h3 { font-size: 1.4rem; }
.svc-card p { color: var(--ink-soft); font-size: .95rem; flex: 1; }
.svc-card__foot { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin-top: 6px; padding-top: 16px; border-top: 1px solid var(--line-soft); }
.svc-card__price { font-family: var(--display); font-size: 1.5rem; font-weight: 600; }
.svc-card__price small { font-size: .78rem; font-family: var(--body); color: var(--ink-soft); font-weight: 600; }
.svc-card__link { font-weight: 700; font-size: .9rem; color: var(--clay); display: inline-flex; align-items: center; gap: 6px; transition: gap .25s; }
.svc-card:hover .svc-card__link { gap: 11px; }

/* ---------- блок "как проходит" / шаги ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding-top: 14px; }
.step__n { font-family: var(--display); font-size: 3.2rem; font-weight: 600; color: var(--sage); opacity: .35; line-height: 1; }
.step h3 { font-size: 1.25rem; margin: 8px 0 8px; }
.step p { color: var(--ink-soft); font-size: .92rem; }

/* ---------- секция "обо мне" / доверие ---------- */
.about { background: var(--sage-soft); }
.about__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.about__photo {
  aspect-ratio: 1/1; border-radius: var(--r-lg);
  background: linear-gradient(160deg, #dfe6d2, #cdb59a); box-shadow: var(--shadow);
  display: grid; place-items: center; color: rgba(38,49,42,.45); font-style: italic; font-family: var(--display); text-align: center; padding: 24px;
  position: relative; overflow: hidden;
}
.about__cert {
  position: absolute; right: 18px; bottom: 18px; background: var(--paper); border-radius: 14px; padding: 12px 16px; box-shadow: var(--shadow); display: flex; gap: 10px; align-items: center; max-width: 220px;
}
.about__cert svg { width: 30px; height: 30px; color: var(--gold); flex: none; }
.about__cert b { font-size: .82rem; display: block; font-family: var(--body); }
.about__cert small { font-size: .72rem; color: var(--ink-soft); }
.about__list { display: grid; gap: 18px; margin-top: 26px; }
.about__list li { display: flex; gap: 14px; }
.about__list .ic { width: 42px; height: 42px; border-radius: 12px; background: var(--paper); display: grid; place-items: center; color: var(--sage-deep); flex: none; box-shadow: var(--shadow-sm); }
.about__list b { display: block; font-size: 1.02rem; }
.about__list span { color: var(--ink-soft); font-size: .92rem; }

/* ---------- прайс-таблица ---------- */
.pricing { }
.price-table { background: var(--paper); border-radius: var(--r-lg); box-shadow: var(--shadow); overflow: hidden; border: 1px solid var(--line-soft); }
.price-row { display: grid; grid-template-columns: 1fr auto auto; gap: 18px; align-items: center; padding: 20px clamp(20px, 3vw, 34px); border-bottom: 1px solid var(--line-soft); transition: background .2s; }
.price-row:last-child { border-bottom: none; }
.price-row:hover { background: var(--cream-2); }
.price-row__name { font-weight: 700; font-size: 1.05rem; }
.price-row__name small { display: block; font-weight: 500; color: var(--ink-soft); font-size: .85rem; }
.price-row__time { color: var(--ink-soft); font-size: .9rem; font-weight: 600; white-space: nowrap; }
.price-row__cost { font-family: var(--display); font-size: 1.5rem; font-weight: 600; white-space: nowrap; }
.price-note { margin-top: 18px; color: var(--ink-soft); font-size: .9rem; text-align: center; }

/* ---------- отзывы ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review {
  background: var(--paper); border-radius: var(--r); padding: 28px 26px; box-shadow: var(--shadow-sm); border: 1px solid var(--line-soft);
  display: flex; flex-direction: column; gap: 16px;
}
.review__stars { color: var(--gold); letter-spacing: 3px; font-size: 1.05rem; }
.review p { font-size: .98rem; color: var(--ink); flex: 1; }
.review__who { display: flex; align-items: center; gap: 12px; }
.review__ava { width: 44px; height: 44px; border-radius: 50%; background: var(--sage-soft); display: grid; place-items: center; font-weight: 700; color: var(--sage-deep); }
.review__who b { font-size: .95rem; }
.review__who small { color: var(--ink-soft); font-size: .82rem; }

/* ---------- CTA-баннер ---------- */
.cta-band { background: var(--sage-deep); color: var(--cream-2); border-radius: var(--r-lg); padding: clamp(36px, 6vw, 64px); text-align: center; position: relative; overflow: hidden; }
.cta-band::before, .cta-band::after { content: ""; position: absolute; border-radius: 50%; filter: blur(30px); opacity: .25; }
.cta-band::before { width: 320px; height: 320px; background: var(--sage); top: -120px; left: -80px; }
.cta-band::after { width: 260px; height: 260px; background: var(--clay); bottom: -120px; right: -60px; opacity: .3; }
.cta-band h2 { color: var(--cream-2); position: relative; }
.cta-band p { color: rgba(252,248,240,.8); margin: 14px auto 28px; max-width: 520px; position: relative; }
.cta-band .hero__cta { justify-content: center; position: relative; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 24px 4px; font-weight: 700; font-size: 1.12rem; color: var(--ink); font-family: var(--display); }
.faq__q .pm { width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--line); display: grid; place-items: center; flex: none; transition: .3s; position: relative; }
.faq__q .pm::before, .faq__q .pm::after { content: ""; position: absolute; background: var(--ink); border-radius: 2px; transition: .3s; }
.faq__q .pm::before { width: 12px; height: 2px; }
.faq__q .pm::after { width: 2px; height: 12px; }
.faq__item.open .pm { background: var(--clay); border-color: var(--clay); }
.faq__item.open .pm::before, .faq__item.open .pm::after { background: #fff; }
.faq__item.open .pm::after { transform: scaleY(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq__a p { padding: 0 4px 24px; color: var(--ink-soft); }

/* ---------- контакты / карта ---------- */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 48px); align-items: stretch; }
.contact__info { display: flex; flex-direction: column; gap: 20px; }
.contact__item { display: flex; gap: 16px; align-items: flex-start; }
.contact__item .ic { width: 50px; height: 50px; border-radius: 14px; background: var(--sage-soft); display: grid; place-items: center; color: var(--sage-deep); flex: none; }
.contact__item b { display: block; font-size: 1.05rem; }
.contact__item a, .contact__item span { color: var(--ink-soft); }
.contact__item a:hover { color: var(--clay); }
.contact__map { border-radius: var(--r-lg); overflow: hidden; min-height: 340px; box-shadow: var(--shadow); border: 1px solid var(--line-soft); }
.contact__map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; filter: saturate(.9); }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: rgba(252,248,240,.75); padding-block: clamp(48px, 7vw, 80px) 28px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.site-footer .brand__name, .site-footer .brand__mark { color: var(--cream); }
.site-footer .brand__mark { background: var(--sage); }
.footer__about { margin-top: 18px; max-width: 320px; font-size: .92rem; }
.footer__soc { display: flex; gap: 12px; margin-top: 20px; }
.footer__soc a { width: 42px; height: 42px; border-radius: 12px; background: rgba(252,248,240,.08); display: grid; place-items: center; transition: .25s; color: var(--cream); }
.footer__soc a:hover { background: var(--clay); transform: translateY(-3px); }
.footer__soc svg { width: 20px; height: 20px; }
.footer__col h4 { color: var(--cream); font-family: var(--body); font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 18px; font-weight: 700; }
.footer__col li { margin-bottom: 11px; }
.footer__col a, .footer__col span { font-size: .94rem; transition: color .2s; }
.footer__col a:hover { color: var(--clay); }
.footer__bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(252,248,240,.12); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: .82rem; color: rgba(252,248,240,.5); }

/* ---------- breadcrumbs ---------- */
.crumbs { padding-top: 20px; }
.crumbs ol { display: flex; flex-wrap: wrap; gap: 8px; font-size: .85rem; color: var(--ink-soft); align-items: center; }
.crumbs li { display: flex; align-items: center; gap: 8px; }
.crumbs li:not(:last-child)::after { content: "/"; color: var(--line); }
.crumbs a:hover { color: var(--clay); }
.crumbs [aria-current] { color: var(--ink); font-weight: 600; }

/* ---------- страница услуги: интро ---------- */
.svc-hero { padding-top: clamp(20px, 4vw, 40px); padding-bottom: clamp(40px, 6vw, 80px); position: relative; overflow: hidden; }
.svc-hero__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.svc-hero h1 { margin: 16px 0 0; }
.svc-hero .lead { margin-top: 20px; }
.svc-hero .hero__cta { margin-top: 30px; }
.svc-pricecard { background: var(--paper); border-radius: var(--r-lg); box-shadow: var(--shadow); padding: 32px; border: 1px solid var(--line-soft); }
.svc-pricecard .eyebrow { margin-bottom: 14px; }
.svc-pricecard__cost { font-family: var(--display); font-size: 3rem; font-weight: 600; line-height: 1; }
.svc-pricecard__cost small { font-size: 1rem; font-family: var(--body); color: var(--ink-soft); font-weight: 600; }
.svc-pricecard ul { margin: 22px 0; display: grid; gap: 12px; }
.svc-pricecard li { display: flex; gap: 12px; align-items: flex-start; font-size: .95rem; }
.svc-pricecard li svg { width: 20px; height: 20px; color: var(--sage); flex: none; margin-top: 2px; }

/* контентные блоки услуги */
.prose { max-width: 760px; }
.prose h2 { margin-bottom: 18px; }
.prose h3 { margin: 32px 0 12px; }
.prose p { margin-bottom: 16px; color: var(--ink); }
.prose ul.ticks { display: grid; gap: 12px; margin: 18px 0; }
.prose ul.ticks li { display: flex; gap: 12px; align-items: flex-start; }
.prose ul.ticks li svg { width: 22px; height: 22px; color: var(--sage); flex: none; margin-top: 2px; }
.callout { background: var(--sage-soft); border-left: 4px solid var(--sage); border-radius: var(--r-sm); padding: 22px 24px; margin: 26px 0; }
.callout b { color: var(--sage-deep); }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.indic-card { background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--r); padding: 26px; }
.indic-card h3 { font-size: 1.25rem; margin-bottom: 14px; }
.indic-card ul { display: grid; gap: 10px; }
.indic-card li { display: flex; gap: 10px; align-items: flex-start; font-size: .95rem; color: var(--ink-soft); }
.indic-card li::before { content: "•"; color: var(--clay); font-weight: 700; }

/* связанные услуги */
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.related { background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--r); padding: 22px; transition: .3s; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.related:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.related b { font-size: 1.02rem; }
.related small { color: var(--ink-soft); display: block; }
.related svg { width: 22px; height: 22px; color: var(--clay); flex: none; }

/* ---------- мобильная липкая CTA ---------- */
.mobile-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 300; display: none; gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); background: rgba(247,241,230,.92); backdrop-filter: blur(12px); box-shadow: 0 -2px 20px -8px rgba(38,49,42,.4); }
.mobile-cta .btn { flex: 1; padding: 14px; }

/* плавающая кнопка whatsapp (desktop) */
.fab-wa { position: fixed; right: 22px; bottom: 22px; z-index: 250; width: 60px; height: 60px; border-radius: 50%; background: var(--wa); color: #fff; display: grid; place-items: center; box-shadow: 0 14px 30px -8px rgba(37,211,102,.6); transition: transform .3s; animation: pulse 2.6s infinite; }
.fab-wa:hover { transform: scale(1.08); }
.fab-wa svg { width: 30px; height: 30px; }
@keyframes pulse { 0%{ box-shadow: 0 14px 30px -8px rgba(37,211,102,.6), 0 0 0 0 rgba(37,211,102,.5);} 70%{ box-shadow: 0 14px 30px -8px rgba(37,211,102,.6), 0 0 0 16px rgba(37,211,102,0);} 100%{ box-shadow: 0 14px 30px -8px rgba(37,211,102,.6), 0 0 0 0 rgba(37,211,102,0);} }

/* ---------- анимации появления ---------- */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
[data-reveal][data-delay="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ---------- адаптив ---------- */
@media (max-width: 980px) {
  .hero__grid, .about__grid, .svc-hero__grid, .contact__grid { grid-template-columns: 1fr; }
  .hero__visual { order: -1; max-width: 460px; margin-inline: auto; }
  .about__photo { max-width: 460px; margin-inline: auto; width: 100%; }
  .services-grid, .reviews-grid, .related-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav__links, .nav__phone { display: none; }
  .burger { display: flex; }
  .nav__links.open {
    display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
    position: absolute; top: calc(100% + 8px); right: var(--gutter); left: var(--gutter);
    background: var(--paper); padding: 16px; border-radius: var(--r); box-shadow: var(--shadow);
  }
  .nav__links.open a { width: 100%; padding: 12px 8px; border-radius: 10px; }
  .nav__links.open a:hover { background: var(--cream-2); }
  .mobile-cta { display: flex; }
  .fab-wa { display: none; }
  body { padding-bottom: 76px; }
  .services-grid, .reviews-grid, .two-col, .related-grid, .steps { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .price-row { grid-template-columns: 1fr auto; }
  .price-row__time { grid-column: 1; grid-row: 2; }
  .hero__card { left: 0; }
  .hero__trust { gap: 14px 22px; }
}
