/* ============================================================
   Дарья Пинигина — портфолио тренера
   Дизайн-система: тёплые пастельные тона (персик + малина),
   градиентные пятна, полупрозрачные «стеклянные» плашки
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800&family=Manrope:wght@500;600;700;800&display=swap');

:root {
  /* Брендовые тёплые тона (персик → малина) */
  --brand:        #EAA6B0;   /* мягкая роза */
  --brand-deep:   #A8506B;   /* малиновый — текст/акценты (читаемый) */
  --brand-soft:   #FBE4DE;   /* персиково-розовый мягкий фон */
  --brand-tint:   #FDF2EC;   /* очень светлый фон секций */
  --peach:        #F8C9A4;   /* персик */
  --berry:        #DE93AC;   /* малиновый пастельный */

  /* Градиенты */
  --grad-warm:    linear-gradient(135deg, #F8C9A4 0%, #E7A0B0 58%, #D98BA6 100%);
  --grad-btn:     linear-gradient(135deg, #C7708A 0%, #A8506B 100%);
  --grad-cta:     linear-gradient(135deg, #E79A7E 0%, #D57E9C 50%, #B05E7E 100%);
  --grad-soft:    linear-gradient(135deg, rgba(248,201,164,.55), rgba(222,147,172,.45));

  /* Нейтральные / фон */
  --bg:           #FDF7F3;   /* тёплый крем с розовинкой */
  --surface:      #FFFFFF;
  --line:         #F1E3DB;   /* тёплая граница */

  /* Текст */
  --text:         #3E3630;
  --text-soft:    #7A6E66;
  --text-mute:    #A99C93;

  --radius:       22px;
  --radius-sm:    14px;
  --shadow:       0 14px 34px rgba(168, 80, 107, 0.14);
  --shadow-soft:  0 8px 22px rgba(62, 54, 48, 0.07);
  --glass:        rgba(255, 255, 255, 0.62);
  --glass-brd:    rgba(255, 255, 255, 0.72);
  --maxw:         1120px;

  --font-body:    'Nunito', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-head:    'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.65;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  position: relative;
  /* Тёплые градиентные пятна на фоне */
  background:
    radial-gradient(circle at 12% 8%,  rgba(248, 201, 164, 0.45), transparent 38%),
    radial-gradient(circle at 88% 14%, rgba(222, 147, 172, 0.38), transparent 40%),
    radial-gradient(circle at 78% 78%, rgba(248, 201, 164, 0.30), transparent 42%),
    radial-gradient(circle at 20% 92%, rgba(231, 160, 176, 0.28), transparent 44%),
    var(--bg);
  background-attachment: fixed;
}

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; font-weight: 800; letter-spacing: -0.01em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Секции ---------- */
.section { padding: 84px 0; position: relative; }
.section--tint { background: linear-gradient(180deg, rgba(253, 242, 236, 0.75), rgba(251, 228, 222, 0.55)); }
.section--soft {
  background: linear-gradient(135deg, rgba(248, 201, 164, 0.45), rgba(222, 147, 172, 0.38));
  position: relative; overflow: hidden;
}
.section-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.eyebrow {
  display: inline-block; font-family: var(--font-head); font-weight: 700;
  font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--brand-deep); background: rgba(251, 228, 222, 0.85);
  padding: 6px 14px; border-radius: 999px; margin-bottom: 18px;
}
h2.section-title { font-size: clamp(28px, 4vw, 40px); margin-bottom: 16px; }
.section-head p { color: var(--text-soft); font-size: 19px; }

/* ---------- Кнопки ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700; font-size: 17px;
  padding: 15px 30px; border-radius: 999px; cursor: pointer;
  border: 2px solid transparent; transition: all .22s ease;
}
.btn--primary { background: var(--grad-btn); color: #fff; box-shadow: var(--shadow); }
.btn--primary:hover { filter: brightness(1.05); transform: translateY(-2px); }
.btn--ghost { background: rgba(255,255,255,.5); color: var(--brand-deep); border-color: var(--berry); }
.btn--ghost:hover { background: var(--brand-soft); }
.btn--white { background: #fff; color: var(--brand-deep); }
.btn--white:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

/* ---------- Хедер ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(253, 247, 243, 0.72); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(241, 227, 219, 0.8);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 800; font-size: 19px; }
.brand .dot { width: 34px; height: 34px; border-radius: 50%; background: var(--grad-warm); display: grid; place-items: center; color: #fff; font-size: 18px; box-shadow: 0 4px 12px rgba(216,139,166,.4); }
.brand small { display: block; font-size: 12px; font-weight: 600; color: var(--text-mute); letter-spacing: .04em; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { font-family: var(--font-head); font-weight: 600; font-size: 15px; color: var(--text-soft); transition: color .2s; }
.nav-links a:hover { color: var(--brand-deep); }
.nav .btn { padding: 11px 22px; font-size: 15px; }
.nav-links a.btn--primary { color: #fff; }
.burger { display: none; background: none; border: none; font-size: 26px; cursor: pointer; color: var(--text); }

/* ---------- Hero ---------- */
.hero { padding: 72px 0 64px; position: relative; overflow: hidden; }
.hero .container { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head);
  font-weight: 700; font-size: 14px; color: var(--brand-deep);
  background: rgba(255,255,255,.7); backdrop-filter: blur(6px);
  border: 1px solid var(--glass-brd); padding: 8px 16px; border-radius: 999px; margin-bottom: 22px;
}
.hero h1 { font-size: clamp(34px, 5vw, 54px); margin-bottom: 20px; }
.hero h1 .hl {
  background: linear-gradient(120deg, #C7708A, #D98BA6);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.lead { font-size: 20px; color: var(--text-soft); margin-bottom: 30px; max-width: 520px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-note { font-size: 15px; color: var(--text-mute); margin-top: 16px; }
.hero-facts { display: flex; gap: 32px; margin-top: 38px; flex-wrap: wrap; }
.hero-facts .num { font-family: var(--font-head); font-weight: 800; font-size: 30px; color: var(--brand-deep); }
.hero-facts span { font-size: 14px; color: var(--text-soft); }

.hero-photo { position: relative; }
.hero-photo .frame {
  border-radius: 30px; overflow: hidden; background: var(--grad-warm);
  aspect-ratio: 4/5; box-shadow: var(--shadow); position: relative;
}
.hero-photo .frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo .frame .placeholder { position: absolute; inset: 0; display: grid; place-items: center; color: #fff; font-family: var(--font-head); font-weight: 700; text-align: center; padding: 20px; }
/* Градиентные пятна вокруг фото */
.hero-blob { position: absolute; width: 420px; height: 420px; background: radial-gradient(circle, rgba(222,147,172,.5), transparent 68%); top: -80px; right: -100px; border-radius: 50%; z-index: 0; filter: blur(6px); }
.hero-blob::after { content: ''; position: absolute; width: 320px; height: 320px; background: radial-gradient(circle, rgba(248,201,164,.55), transparent 68%); bottom: -220px; left: -160px; border-radius: 50%; }
.floating-card {
  position: absolute; background: rgba(255,255,255,.72); backdrop-filter: blur(10px);
  border: 1px solid var(--glass-brd); border-radius: 16px; padding: 14px 18px;
  box-shadow: var(--shadow); font-family: var(--font-head); font-weight: 700; font-size: 15px;
  display: flex; align-items: center; gap: 10px; z-index: 2;
}
.floating-card .ic { font-size: 22px; }
.floating-card.fc1 { bottom: 26px; left: -22px; }
.floating-card.fc2 { top: 30px; right: -18px; }

/* ---------- Направления (карточки, стекло) ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  background: var(--glass); backdrop-filter: blur(10px);
  border: 1px solid var(--glass-brd); border-radius: var(--radius);
  padding: 32px 28px; transition: transform .25s, box-shadow .25s; display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--berry); }
.card .ic-circle { width: 60px; height: 60px; border-radius: 18px; background: var(--grad-warm); display: grid; place-items: center; font-size: 28px; margin-bottom: 20px; box-shadow: 0 6px 16px rgba(216,139,166,.28); }
.card h3 { font-size: 22px; margin-bottom: 10px; }
.card h3 .h3-sub { display: block; font-size: 0.72em; font-weight: 700; color: var(--brand-deep); margin-top: 2px; }
.card p { color: var(--text-soft); font-size: 16px; margin-bottom: 18px; flex: 1; }
.card .arrow { font-family: var(--font-head); font-weight: 700; color: var(--brand-deep); font-size: 15px; }

/* ---------- Боли / чек-лист ---------- */
.pains { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; max-width: 900px; margin: 0 auto; }
.pain {
  background: var(--glass); backdrop-filter: blur(8px); border: 1px solid var(--glass-brd); border-radius: var(--radius-sm);
  padding: 20px 22px; display: flex; gap: 14px; align-items: flex-start;
}
.pain .x { color: var(--brand-deep); font-size: 20px; flex-shrink: 0; }
.pain p { font-size: 16px; color: var(--text); }

/* ---------- О тренере ---------- */
.about { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 50px; align-items: center; }
.about-photo .frame { border-radius: 26px; overflow: hidden; aspect-ratio: 3/4; background: var(--grad-warm); box-shadow: var(--shadow); }
.about-photo .frame img { width: 100%; height: 100%; object-fit: cover; }
.about-photo .frame .placeholder { height: 100%; display: grid; place-items: center; color: #fff; font-family: var(--font-head); font-weight: 700; padding: 20px; text-align: center; }
.about h2 { font-size: clamp(26px, 3.5vw, 36px); margin-bottom: 18px; }
.about p { color: var(--text-soft); margin-bottom: 16px; }
.about ul { list-style: none; display: grid; gap: 12px; margin-top: 8px; }
.about ul li { display: flex; gap: 12px; align-items: flex-start; }
.about ul li .ck { color: var(--brand-deep); font-weight: 800; flex-shrink: 0; }

/* ---------- Что это (инфо-блок) ---------- */
.info-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 44px; align-items: center; position: relative; z-index: 1; }
.info-text h2 { font-size: clamp(26px, 3.5vw, 36px); margin-bottom: 18px; }
.info-text p { color: var(--text-soft); margin-bottom: 16px; }
.info-list { display: grid; gap: 14px; }
.info-list .row { background: var(--glass); backdrop-filter: blur(8px); border-radius: var(--radius-sm); border: 1px solid var(--glass-brd); padding: 18px 20px; }
.info-list .row b { font-family: var(--font-head); }

/* ---------- Роудмап (базовый) ---------- */
.roadmap { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 40px; max-width: 940px; margin: 0 auto; position: relative; }
.step { display: flex; gap: 18px; align-items: flex-start; background: var(--glass); backdrop-filter: blur(8px); border: 1px solid var(--glass-brd); border-radius: var(--radius-sm); padding: 20px 22px; }
.step .n { flex-shrink: 0; width: 42px; height: 42px; border-radius: 12px; background: var(--grad-btn); color: #fff; display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; }
.step h4 { font-size: 17px; margin-bottom: 4px; }
.step p { font-size: 15px; color: var(--text-soft); }

/* ---------- Роудмап-инфографика ---------- */
.roadmap-info {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px;
  max-width: 1000px; margin: 0 auto; position: relative; z-index: 1;
}
.rstep {
  position: relative; text-align: center;
  background: var(--glass); backdrop-filter: blur(10px);
  border: 1px solid var(--glass-brd); border-radius: 20px;
  padding: 26px 16px 20px; transition: transform .25s, box-shadow .25s;
}
.rstep:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.rstep .badge {
  width: 74px; height: 74px; border-radius: 50%; margin: 0 auto 14px;
  display: grid; place-items: center; font-size: 34px;
  background: var(--grad-warm); box-shadow: 0 8px 20px rgba(216,139,166,.35);
  position: relative;
}
.rstep .num {
  position: absolute; top: -4px; right: -4px; width: 27px; height: 27px; border-radius: 50%;
  background: var(--brand-deep); color: #fff; font-family: var(--font-head); font-weight: 800;
  font-size: 13px; display: grid; place-items: center; border: 2px solid #fff;
}
.rstep h4 { font-size: 15px; margin-bottom: 5px; }
.rstep p { font-size: 13px; color: var(--text-soft); line-height: 1.45; }

/* ---------- Пакеты / цены ---------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.plan { background: var(--glass); backdrop-filter: blur(10px); border: 1px solid var(--glass-brd); border-radius: var(--radius); padding: 32px 28px; position: relative; display: flex; flex-direction: column; }
.plan.featured { border-color: var(--berry); box-shadow: var(--shadow); background: rgba(255,255,255,.78); }
.plan.featured::before { content: 'Популярный'; position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--grad-btn); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 13px; padding: 5px 16px; border-radius: 999px; }
.plan h3 { font-size: 21px; margin-bottom: 6px; }
.plan .price { font-family: var(--font-head); font-weight: 800; font-size: 34px; color: var(--brand-deep); margin: 12px 0 4px; }
.plan .price small { font-size: 15px; color: var(--text-mute); font-weight: 600; }
.plan ul { list-style: none; margin: 18px 0 24px; display: grid; gap: 10px; }
.plan ul li { font-size: 15px; color: var(--text-soft); display: flex; gap: 10px; }
.plan ul li .ck { color: var(--brand-deep); font-weight: 800; }
.plan .btn { width: 100%; justify-content: center; }

/* ---------- Отзывы ---------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review { background: var(--glass); backdrop-filter: blur(10px); border: 1px solid var(--glass-brd); border-radius: var(--radius); padding: 28px 26px; }
.review .stars { color: #E6A23C; margin-bottom: 12px; letter-spacing: 2px; }
.review p { color: var(--text); font-size: 16px; margin-bottom: 18px; }
.review .who { display: flex; align-items: center; gap: 12px; }
.review .who .av { width: 44px; height: 44px; border-radius: 50%; background: var(--grad-warm); display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; color: #fff; }
.review .who b { font-family: var(--font-head); font-size: 15px; }
.review .who span { font-size: 13px; color: var(--text-mute); display: block; }

/* ---------- CTA ---------- */
.cta-band { background: var(--grad-cta); border-radius: 30px; padding: 56px; text-align: center; color: #fff; position: relative; overflow: hidden; box-shadow: var(--shadow); }
.cta-band::before { content: ''; position: absolute; width: 300px; height: 300px; background: radial-gradient(circle, rgba(255,255,255,.25), transparent 70%); top: -120px; right: -60px; border-radius: 50%; }
.cta-band h2 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 14px; color: #fff; position: relative; }
.cta-band p { font-size: 19px; opacity: .96; margin-bottom: 28px; position: relative; }
.cta-band .discount { display: inline-block; background: rgba(255,255,255,.22); border: 1px solid rgba(255,255,255,.45); border-radius: 999px; padding: 8px 20px; font-family: var(--font-head); font-weight: 700; margin-bottom: 22px; position: relative; }
.cta-band .btn { position: relative; }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin: 0 auto; display: grid; gap: 14px; }
.faq details { background: var(--glass); backdrop-filter: blur(8px); border: 1px solid var(--glass-brd); border-radius: var(--radius-sm); padding: 4px 24px; }
.faq summary { font-family: var(--font-head); font-weight: 700; font-size: 17px; padding: 18px 0; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq summary::after { content: '+'; font-size: 24px; color: var(--brand-deep); }
.faq details[open] summary::after { content: '–'; }
.faq details p { color: var(--text-soft); padding-bottom: 20px; font-size: 16px; }

/* ---------- Форма / контакты ---------- */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.contact-info h2 { font-size: clamp(26px, 3.5vw, 36px); margin-bottom: 16px; }
.contact-info p { color: var(--text-soft); margin-bottom: 24px; }
.contact-list { display: grid; gap: 14px; }
.contact-list a { display: flex; align-items: center; gap: 14px; font-family: var(--font-head); font-weight: 600; }
.contact-list a .ic { width: 46px; height: 46px; border-radius: 14px; background: var(--grad-warm); display: grid; place-items: center; font-size: 20px; }
.form { background: rgba(255,255,255,.75); backdrop-filter: blur(12px); border: 1px solid var(--glass-brd); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow); }
.form label { display: block; font-family: var(--font-head); font-weight: 600; font-size: 14px; margin-bottom: 7px; }
.form .field { margin-bottom: 18px; }
.form input, .form select, .form textarea {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 12px;
  font-family: var(--font-body); font-size: 16px; background: rgba(253,247,243,.8); color: var(--text); transition: border-color .2s;
}
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--berry); }
.form .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form .privacy { font-size: 12px; color: var(--text-mute); margin-top: 12px; text-align: center; }

/* ---------- Футер ---------- */
.site-footer { background: linear-gradient(135deg, #3E322E, #4A3336); color: #E4D8D2; padding: 54px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; margin-bottom: 36px; }
.site-footer .brand { color: #fff; margin-bottom: 14px; }
.site-footer p { color: #B7A9A2; font-size: 15px; }
.footer-col h4 { color: #fff; font-size: 15px; margin-bottom: 14px; }
.footer-col a { display: block; color: #B7A9A2; font-size: 15px; margin-bottom: 9px; transition: color .2s; }
.footer-col a:hover { color: var(--berry); }
.footer-bottom { border-top: 1px solid #55403F; padding-top: 20px; font-size: 13px; color: #9A8B84; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* ---------- Утилиты аудитории (чипы) ---------- */
.aud-tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.aud-tabs a { font-family: var(--font-head); font-weight: 600; font-size: 15px; padding: 10px 20px; border-radius: 999px; background: rgba(255,255,255,.6); backdrop-filter: blur(6px); border: 1px solid var(--glass-brd); color: var(--text-soft); transition: all .2s; }
.aud-tabs a:hover, .aud-tabs a.active { background: var(--grad-btn); color: #fff; border-color: transparent; }

/* ---------- Адаптив ---------- */
@media (max-width: 900px) {
  .hero .container, .about, .info-grid, .contact { grid-template-columns: 1fr; }
  .hero-photo { order: -1; max-width: 380px; margin: 0 auto; }
  .about-photo { max-width: 340px; margin: 0 auto; }
  .cards, .plans, .reviews, .roadmap, .pains { grid-template-columns: 1fr; }
  .roadmap-info { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .burger { display: block; }
  .nav-links.open { display: flex; position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; background: var(--bg); padding: 20px 24px; gap: 16px; border-bottom: 1px solid var(--line); }
  .section { padding: 60px 0; }
  .cta-band { padding: 40px 24px; }
}
@media (max-width: 620px) {
  body { font-size: 17px; }
  .reviews { grid-template-columns: 1fr; }
  .roadmap-info { grid-template-columns: 1fr; }
  .floating-card { display: none; }
}

/* ============================================================
   Дополнительные компоненты
   ============================================================ */

/* ---------- Бейдж «только онлайн» ---------- */
.online-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--glass); backdrop-filter: blur(8px);
  border: 1px solid var(--glass-brd); border-radius: 999px;
  padding: 10px 22px; margin: 0 auto 6px; font-family: var(--font-head);
  font-weight: 700; font-size: 15px; color: var(--brand-deep);
}
.online-badge .live { width: 10px; height: 10px; border-radius: 50%; background: #46b46e; box-shadow: 0 0 0 4px rgba(70,180,110,.2); }

/* ---------- Роудмап-зигзаг (пунктирная цепочка) ---------- */
.rm-road { position: relative; overflow-x: auto; padding: 8px 0 14px; }
.rm-road::-webkit-scrollbar { height: 8px; }
.rm-road::-webkit-scrollbar-thumb { background: rgba(168,80,107,.25); border-radius: 999px; }
.rm-track {
  position: relative; display: flex; align-items: flex-start; gap: 0;
  width: max-content; min-width: 100%; margin: 0 auto; padding: 58px 30px;
  justify-content: center;
}
.rm-node { position: relative; width: 104px; display: flex; flex-direction: column; align-items: center; gap: 9px; }
.rm-node:nth-child(odd)  { transform: translateY(-34px); }
.rm-node:nth-child(even) { transform: translateY(34px); }
/* пунктирный диагональный коннектор к следующему шагу */
.rm-node::after {
  content: ''; position: absolute; left: 52px; top: 37px; width: 124px; height: 0;
  border-top: 3px dashed rgba(168,80,107,.42); transform-origin: left center; z-index: 0;
}
.rm-node:nth-child(odd)::after  { transform: rotate(33.2deg); }
.rm-node:nth-child(even)::after { transform: rotate(-33.2deg); }
.rm-node:last-child::after { display: none; }
.rm-badge {
  position: relative; z-index: 1; width: 74px; height: 74px; border-radius: 50%;
  display: grid; place-items: center; font-size: 33px; background: var(--grad-warm);
  box-shadow: 0 8px 20px rgba(216,139,166,.4);
}
.rm-node:nth-child(3n)   .rm-badge { transform: rotate(-6deg); }
.rm-node:nth-child(3n+1) .rm-badge { transform: rotate(5deg); }
.rm-badge .rm-num {
  position: absolute; top: -4px; right: -4px; width: 26px; height: 26px; border-radius: 50%;
  background: var(--brand-deep); color: #fff; font-family: var(--font-head); font-weight: 800;
  font-size: 12px; display: grid; place-items: center; border: 2px solid #fff; font-style: normal;
}
.rm-label { position: relative; z-index: 1; font-family: var(--font-head); font-weight: 700; font-size: 13px; text-align: center; line-height: 1.3; color: var(--text); }
.rm-hint { text-align: center; font-size: 13px; color: var(--text-mute); margin-top: 8px; }

/* ---------- Карусель отзывов ---------- */
.rev-viewport { position: relative; }
.rev-track {
  display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; padding: 6px 2px 18px;
}
.rev-track::-webkit-scrollbar { height: 8px; }
.rev-track::-webkit-scrollbar-thumb { background: rgba(168,80,107,.25); border-radius: 999px; }
.rev-card {
  flex: 0 0 340px; max-width: 340px; scroll-snap-align: start;
  background: var(--glass); backdrop-filter: blur(10px); border: 1px solid var(--glass-brd);
  border-radius: var(--radius); padding: 26px 24px; display: flex; flex-direction: column;
}
.rev-card .rev-top { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }
.rev-card .rev-av { width: 46px; height: 46px; border-radius: 50%; background: var(--grad-warm); display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; color: #fff; font-size: 18px; flex-shrink: 0; }
.rev-card .rev-name { font-family: var(--font-head); font-weight: 800; font-size: 16px; }
.rev-card .rev-meta { font-size: 12px; color: var(--text-mute); }
.rev-card .rev-stars { color: #E6A23C; letter-spacing: 2px; margin: 4px 0 10px; font-size: 15px; }
.rev-card .rev-stars .half { opacity: .38; }
.rev-card .rev-text { color: var(--text); font-size: 15px; line-height: 1.6; }
.rev-card .rev-text.clamp { display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden; }
.rev-card .rev-more { align-self: flex-start; margin-top: 10px; background: none; border: none; cursor: pointer; font-family: var(--font-head); font-weight: 700; font-size: 14px; color: var(--brand-deep); padding: 0; }
.rev-arrow {
  position: absolute; top: 42%; transform: translateY(-50%); z-index: 3;
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--glass-brd);
  background: rgba(255,255,255,.85); backdrop-filter: blur(8px); box-shadow: var(--shadow-soft);
  cursor: pointer; font-size: 22px; color: var(--brand-deep); display: grid; place-items: center;
  transition: transform .2s, background .2s;
}
.rev-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.06); }
.rev-prev { left: -8px; }
.rev-next { right: -8px; }
.rev-actions { text-align: center; margin-top: 26px; }
/* Развёрнутый режим — сетка всех отзывов */
.rev-track.expanded { flex-wrap: wrap; overflow: visible; justify-content: center; scroll-snap-type: none; }
.rev-track.expanded .rev-card { flex: 0 1 340px; }
.rev-viewport.expanded .rev-arrow { display: none; }

@media (max-width: 620px) {
  .rev-card { flex-basis: 82vw; max-width: 82vw; }
  .rev-arrow { display: none; }
  .rm-node { width: 88px; }
  .rm-node::after { width: 108px; }
}

/* ---------- Согласие у форм ---------- */
.consent { margin: 4px 0 6px; display: grid; gap: 10px; }
.consent-row { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--text-soft); line-height: 1.45; cursor: pointer; }
.consent-row input { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; accent-color: var(--brand-deep); }
.consent-row a { color: var(--brand-deep); font-weight: 700; text-decoration: underline; }
.consent-row .req { color: #C0392B; }

/* ---------- Реквизиты в футере ---------- */
.footer-legal { display: flex; flex-wrap: wrap; gap: 8px 22px; align-items: center; padding-top: 16px; margin-bottom: 8px; border-top: 1px solid #55403F; }
.footer-legal a { color: #C9BBB4; font-size: 13px; text-decoration: underline; }
.footer-legal a:hover { color: var(--berry); }
.footer-legal span { color: #8E7F78; font-size: 12.5px; }

/* ---------- Cookie-баннер ---------- */
.cookie-bar {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 200;
  max-width: 720px; margin: 0 auto;
  background: rgba(255,255,255,.92); backdrop-filter: blur(14px);
  border: 1px solid var(--glass-brd); border-radius: 18px; box-shadow: var(--shadow);
  padding: 18px 22px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.cookie-bar.hidden { display: none; }
.cookie-bar p { font-size: 14px; color: var(--text); flex: 1; min-width: 240px; line-height: 1.5; }
.cookie-bar p a { color: var(--brand-deep); font-weight: 700; text-decoration: underline; }
.cookie-bar .cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-bar .btn { padding: 10px 20px; font-size: 14px; }

/* ---------- Страница «Политика» ---------- */
.legal { padding: 56px 0 72px; }
.legal .container { max-width: 860px; }
.legal h1 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 10px; }
.legal .updated { color: var(--text-mute); font-size: 14px; margin-bottom: 34px; }
.legal h2 { font-size: 22px; margin: 34px 0 12px; color: var(--brand-deep); }
.legal p, .legal li { color: var(--text-soft); font-size: 16px; line-height: 1.7; }
.legal p { margin-bottom: 12px; }
.legal ul { margin: 0 0 14px 22px; display: grid; gap: 6px; }
.legal .note { background: var(--glass); border: 1px solid var(--glass-brd); border-radius: var(--radius-sm); padding: 16px 20px; margin: 18px 0; font-size: 14px; color: var(--text); }
.legal a { color: var(--brand-deep); font-weight: 600; text-decoration: underline; }

/* honeypot против спама */
.hp { position:absolute !important; left:-9999px !important; top:auto; width:1px; height:1px; overflow:hidden; opacity:0; }
