/* ============================================================
   ДУША — warm calming psychologist platform
   ============================================================ */

:root {
  /* tropical teal palette (#021C1E · #004445 · #2C7873 · #6FB98F) */
  --cream:    #F2F8F5;     /* page background — pale mint */
  --cream-2:  #E1EFE7;     /* soft mint tint */
  --peach:    #6FB98F;     /* old "peach" -> mint accent */
  --peach-d:  #2C7873;     /* old "peach-d" -> deep teal */
  --terra:    #004445;     /* old "terra" -> deep navy-teal */
  --sage:     #6FB98F;
  --sage-d:   #2C7873;
  --lav:      #9BC9B5;     /* secondary mint */
  --honey:    #BFE3CB;     /* light mint glow */
  --ink:      #021C1E;     /* main text — navy-black */
  --ink-soft: #3F6A66;     /* secondary text — muted teal */
  --line:     #D2E5D9;     /* dividers — very soft mint */
  --white:    #FFFFFF;

  --grad-sun:   linear-gradient(135deg, #6FB98F 0%, #2C7873 60%, #004445 100%);
  --grad-warm:  linear-gradient(135deg, #DCEFE3 0%, #B6DCC4 100%);
  --grad-sky:   linear-gradient(180deg, #F4FBF7 0%, #DCEFE3 35%, #BFE3CB 70%, #9BC9B5 100%);

  --shadow-sm: 0 4px 14px rgba(2,28,30,.08);
  --shadow:    0 14px 40px rgba(2,28,30,.14);
  --shadow-lg: 0 30px 70px rgba(0,68,69,.22);

  --r-sm: 14px;  --r: 22px;  --r-lg: 32px;  --r-xl: 44px;
  --maxw: 1180px;
  --ease: cubic-bezier(.22,1,.36,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1,h2,h3,h4 { font-family: "Unbounded", "Manrope", sans-serif; line-height: 1.1; font-weight: 700; letter-spacing: -.01em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
/* на широких мониторах сетка шире — меньше пустых полей по бокам */
@media (min-width: 1500px) { :root { --maxw: 1360px; } }

/* ---------- buttons ---------- */
.btn {
  --pad: 12px 22px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: var(--pad); border: none; border-radius: 100px;
  font-family: inherit; font-weight: 700; font-size: 15px; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
  white-space: nowrap; line-height: 1;
}
.btn--lg { --pad: 17px 32px; font-size: 16.5px; }
.btn--primary { background: var(--grad-sun); color: #fff; box-shadow: 0 10px 26px rgba(44,120,115,.35); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(44,120,115,.45); }
.btn--soft { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }
.btn--soft:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.btn--ghost { background: transparent; color: var(--ink-soft); }
.btn--ghost:hover { background: var(--cream-2); color: var(--ink); }
.btn:disabled { opacity: .4; cursor: not-allowed; transform: none !important; }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .35s, box-shadow .35s, padding .35s;
  padding: 16px 0;
}
.nav.scrolled { background: rgba(255,248,240,.82); backdrop-filter: blur(16px); box-shadow: 0 6px 24px rgba(200,120,80,.08); padding: 10px 0; }
.nav__inner { display: flex; align-items: center; gap: 22px; }
.brand { display: inline-flex; align-items: center; gap: 9px; font-family: "Unbounded"; font-weight: 700; font-size: 21px; flex-shrink: 0; }
.brand__name { white-space: nowrap; }
@media (min-width: 1101px) { .nav .brand { margin-left: -6px; } }
.brand__mark { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 12px; background: var(--grad-sun); color: #fff; box-shadow: 0 6px 16px rgba(44,120,115,.35); }
.brand__logo { width: 44px; height: 44px; object-fit: contain; display: block; filter: drop-shadow(0 4px 10px rgba(0,68,69,.28)); }
.footer .brand__logo { width: 38px; height: 38px; }
.nav__links { display: flex; align-items: center; gap: 20px; margin-left: 14px; flex-wrap: nowrap; }
.nav__links a { font-weight: 600; color: var(--ink-soft); font-size: 15px; position: relative; transition: color .2s; white-space: nowrap; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--peach-d); border-radius: 2px; transition: width .3s var(--ease); }
.nav__links a:hover { color: var(--ink); } .nav__links a:hover::after { width: 100%; }
.nav__actions { margin-left: auto; display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
/* переключатель языка на статичных посадочных (RU/UZ/EN) */
.langpick { display: inline-flex; gap: 2px; padding: 3px; background: var(--cream-2); border: 1px solid var(--line); border-radius: 100px; flex-shrink: 0; }
.langpick a { padding: 5px 10px; border-radius: 100px; font-size: 12.5px; font-weight: 700; letter-spacing: .02em; color: var(--ink-soft); line-height: 1; transition: color .2s, background .2s; }
.langpick a:hover { color: var(--ink); }
.langpick a.on { color: #fff; background: var(--grad-sun); box-shadow: 0 3px 10px rgba(44,120,115,.3); }
.langsw { position: relative; display: flex; padding: 4px; background: var(--cream-2); border-radius: 100px; border: 1px solid var(--line); }
.langsw__pill { position: absolute; top: 4px; left: 4px; height: calc(100% - 8px); border-radius: 100px; background: var(--grad-sun); box-shadow: 0 4px 12px rgba(44,120,115,.32); transition: transform .35s var(--ease), width .35s var(--ease); z-index: 0; }
.langsw button { position: relative; z-index: 1; border: none; background: none; cursor: pointer; font-family: inherit; font-weight: 700; font-size: 13px; letter-spacing: .02em; color: var(--ink-soft); padding: 7px 13px; border-radius: 100px; transition: color .3s; line-height: 1; }
.langsw button:hover { color: var(--ink); }
.langsw button.on { color: #fff; }
@media (max-width: 1100px) { .langsw { margin-left: auto; } }
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; margin-left: auto; }
.nav__burger span { width: 26px; height: 2.5px; background: var(--ink); border-radius: 3px; transition: .3s; }
.nav__burger[aria-expanded="true"] span:nth-child(1){ transform: translateY(7.5px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   HERO — mosaic layout
   ============================================================ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding: 140px 0 80px; background: var(--cream); overflow: hidden; }

/* Full-bleed hero background video (мягкая иллюстрация в собственных пастельных тонах) */
.hero__bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  object-position: center; z-index: 0;
}
/* мягкая кремовая «вуаль» слева — держит заголовок читаемым поверх видео,
   а справа иллюстрация видна полностью и бесшовно сливается с фоном сайта */
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(100deg,
      var(--cream) 0%,
      rgba(244,250,245,.92) 26%,
      rgba(244,250,245,.48) 46%,
      rgba(244,250,245,.08) 64%,
      rgba(244,250,245,0) 80%),
    linear-gradient(180deg, rgba(244,250,245,0) 82%, rgba(244,250,245,.6) 100%);
}
.hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1.05fr; gap: 60px; align-items: center; }
.hero__left { position: relative; z-index: 1; }
.hero__chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.hchip { display: inline-flex; align-items: center; padding: 8px 18px; border: 1.5px solid var(--ink); border-radius: 100px; font-weight: 700; font-size: 14px; color: var(--ink); background: transparent; transition: .2s; }
.hchip::after { content: " →"; margin-left: 4px; }
.hchip:hover { background: var(--ink); color: var(--cream); }
.hero__title { font-size: clamp(40px, 5.6vw, 76px); font-weight: 800; line-height: 1.04; color: var(--ink); margin-bottom: 28px; letter-spacing: -.015em; }
.hero__title .grad { background: var(--grad-sun); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__sub { font-size: clamp(16px, 1.4vw, 19px); color: var(--ink-soft); max-width: 480px; margin-bottom: 36px; line-height: 1.55; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== HERO QUOTES — frameless glass cards floating over the DNA bg ===== */
.hero__quotes {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-end;
}
.qcard {
  position: relative;
  max-width: 340px;
  padding: 20px 22px 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.42);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255,255,255,.55);
  box-shadow: 0 14px 40px rgba(2,28,30,.14);
  transition: transform .35s var(--ease), background .35s var(--ease);
}
.qcard:nth-child(3) { align-self: flex-start; }   /* stagger for an organic feel */
.qcard:hover { transform: translateY(-4px); background: rgba(255,255,255,.58); }
.qcard__mark { font-family: "Unbounded"; font-weight: 800; font-size: 40px; line-height: .5; color: var(--accent, #2C7873); opacity: .35; margin-bottom: 6px; }
.qcard__text { font-family: "Manrope"; font-weight: 700; font-size: 15px; line-height: 1.4; color: var(--ink); margin: 0 0 10px; }
.qcard__author { font-family: "Manrope"; font-weight: 600; font-size: 12.5px; color: var(--ink-soft); }

/* price badge — floating chip above the quote stack */
.price-badge { display: inline-flex; align-items: center; gap: 4px; background: var(--ink); color: var(--cream); padding: 9px 16px; border-radius: 100px; font-size: 12.5px; font-weight: 700; line-height: 1; white-space: nowrap; box-shadow: 0 10px 24px rgba(2,28,30,.32); }
.price-badge b { font-family: "Unbounded"; font-weight: 700; font-size: 15px; }
.price-badge--float { align-self: flex-end; margin-bottom: 2px; }

.sun { position: absolute; top: 12%; right: 14%; width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, #E9F7EE, #BFE3CB 55%, #6FB98F 100%);
  box-shadow: 0 0 120px 40px rgba(191,227,203,.55); animation: floaty 9s ease-in-out infinite; }

.cloud { position: absolute; background: #fff; border-radius: 100px; filter: blur(.5px); opacity: .9; }
.cloud::before, .cloud::after { content: ""; position: absolute; background: #fff; border-radius: 50%; }
.cloud--1 { width: 130px; height: 38px; top: 20%; left: 12%; animation: drift 26s linear infinite; }
.cloud--1::before { width: 60px; height: 60px; top: -26px; left: 20px; }
.cloud--1::after  { width: 44px; height: 44px; top: -16px; left: 64px; }
.cloud--2 { width: 100px; height: 30px; top: 34%; left: 64%; opacity: .7; animation: drift 34s linear infinite; }
.cloud--2::before { width: 46px; height: 46px; top: -20px; left: 16px; }
.cloud--2::after  { width: 34px; height: 34px; top: -12px; left: 50px; }
.cloud--3 { width: 80px; height: 24px; top: 58%; left: 8%; opacity: .55; animation: drift 30s linear infinite reverse; }
.cloud--3::before { width: 36px; height: 36px; top: -16px; left: 12px; }
.cloud--3::after  { width: 28px; height: 28px; top: -10px; left: 40px; }

.orb { position: absolute; border-radius: 50%; opacity: .4; }
.orb--a { width: 280px; height: 280px; background: radial-gradient(circle, rgba(201,182,228,.7), transparent 70%); top: -40px; left: -60px; animation: floaty 11s ease-in-out infinite; }
.orb--b { width: 320px; height: 320px; background: radial-gradient(circle, rgba(168,195,160,.7), transparent 70%); bottom: -80px; right: -40px; animation: floaty 13s ease-in-out infinite reverse; }
.orb--c { width: 160px; height: 160px; background: radial-gradient(circle, rgba(191,227,203,.7), transparent 70%); top: 12%; left: 6%; opacity: .35; animation: floaty 8s ease-in-out infinite; }

/* hills */
.hill { position: absolute; left: -5%; width: 110%; border-radius: 50% 50% 0 0; }
.hill--back  { bottom: 0; height: 180px; background: linear-gradient(180deg, #9BC9B5, #6FB98F); opacity: .8; }
.hill--front { bottom: -30px; height: 150px; background: linear-gradient(180deg, #6FB98F, #4E9476); }

/* Pixar-style buddies */
.buddy { position: absolute; will-change: transform; }
.buddy__body { position: relative; width: 110px; height: 130px; border-radius: 50% 50% 46% 46%;
  box-shadow: inset -10px -14px 26px rgba(0,0,0,.12), inset 10px 12px 22px rgba(255,255,255,.55), 0 18px 30px rgba(0,0,0,.12);
  animation: bob 4.5s ease-in-out infinite; }
.buddy__shadow { width: 80px; height: 16px; margin: 8px auto 0; border-radius: 50%; background: rgba(110,70,50,.18); filter: blur(5px); animation: shadowPulse 4.5s ease-in-out infinite; }
.buddy--peach { top: 60%; left: 13%; } .buddy--peach .buddy__body { background: radial-gradient(circle at 38% 30%, #B6DCC4, #6FB98F 80%); }
.buddy--sage  { top: 30%; right: 20%; transform: scale(.8); } .buddy--sage .buddy__body { background: radial-gradient(circle at 38% 30%, #C9E4D3, #6FB98F 80%); animation-delay: -1.2s; }
.buddy--lav   { top: 64%; right: 32%; transform: scale(.62); } .buddy--lav .buddy__body { background: radial-gradient(circle at 38% 30%, #DCEFE3, #4E9476 80%); animation-delay: -2.4s; }
.buddy__face { position: absolute; inset: 0; }
.eye { position: absolute; top: 46%; width: 13px; height: 16px; background: #4A3B36; border-radius: 50%; animation: blink 5s infinite; }
.buddy__face .eye:nth-child(1) { left: 30%; } .buddy__face .eye:nth-child(2) { right: 30%; }
.eye::after { content: ""; position: absolute; top: 2px; left: 2px; width: 5px; height: 5px; background: #fff; border-radius: 50%; }
.cheek { position: absolute; top: 60%; width: 16px; height: 10px; background: rgba(2,28,30,.18); border-radius: 50%; filter: blur(1px); }
.cheek--l { left: 20%; } .cheek--r { right: 20%; }
.smile { position: absolute; top: 60%; left: 50%; transform: translateX(-50%); width: 26px; height: 13px; border: 3px solid #4A3B36; border-top: none; border-radius: 0 0 26px 26px; }

/* (legacy hero styles removed — mosaic layout now used) */

/* ============================================================
   LOGOS / TRUST BAR
   ============================================================ */
.logos { background: var(--ink); color: #fff; padding: 18px 0; overflow: hidden; }
.logos__track { display: flex; gap: 26px; justify-content: center; flex-wrap: wrap; font-weight: 600; font-size: 14.5px; opacity: .9; }
.logos__track span:nth-child(even) { opacity: .4; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 110px 0; }
.section--quiz { background: var(--grad-warm); }
.section--catalog { background: var(--cream); }
.section--trust { background: var(--cream-2); }
.section__head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
/* quiz heading — wider container so it spreads on one line, not a narrow clump */
.section--quiz .section__head { max-width: 920px; }
@media (min-width: 560px) { .section--quiz .section__title { white-space: nowrap; } }
.eyebrow { display: inline-block; font-weight: 700; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; color: var(--peach-d); margin-bottom: 14px; }
.section__title { font-size: clamp(30px, 4.5vw, 50px); font-weight: 800; line-height: 1.1; letter-spacing: -.015em; margin-bottom: 16px; text-wrap: balance; }
@media (max-width: 360px) { .section__title { font-size: clamp(22px, 8.5vw, 30px); } }

/* gradient-highlighted phrase inside any heading */
.grad { background: var(--grad-sun); -webkit-background-clip: text; background-clip: text; color: transparent; }
.section__lead { font-size: 18px; color: var(--ink-soft); }

/* steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.step { position: relative; background: var(--white); border-radius: var(--r-lg); padding: 40px 30px 34px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); transition: transform .35s var(--ease), box-shadow .35s; }
.step:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.step__num { position: absolute; top: -18px; left: 30px; width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; background: var(--grad-sun); color: #fff; font-family: "Unbounded"; font-weight: 700; box-shadow: 0 8px 18px rgba(44,120,115,.35); }
.step__icon { width: 64px; height: 64px; display: grid; place-items: center; font-size: 30px; margin-bottom: 22px; border-radius: 18px; background: linear-gradient(145deg, var(--cream-2), #fff); border: 1px solid var(--line); box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 6px 16px rgba(224,122,95,.10); }
.step:hover .step__icon { transform: translateY(-2px); transition: transform .35s var(--ease); }
.step h3 { font-size: 22px; margin-bottom: 10px; }
.step p { color: var(--ink-soft); }

/* ============================================================
   QUIZ
   ============================================================ */
.quiz { max-width: 720px; margin: 0 auto; background: var(--white); border-radius: var(--r-xl); padding: 14px 14px 26px; box-shadow: var(--shadow-lg); border: 1px solid var(--line); }
.quiz__bar { height: 8px; background: var(--cream-2); border-radius: 100px; overflow: hidden; margin-bottom: 30px; }
.quiz__bar-fill { height: 100%; width: 0; background: var(--grad-sun); border-radius: 100px; transition: width .5s var(--ease); }
.quiz__stage { padding: 0 26px; min-height: 320px; }
.quiz__q { font-family: "Unbounded"; font-size: clamp(22px, 3vw, 30px); font-weight: 700; margin-bottom: 8px; text-align: center; }
.quiz__hint { text-align: center; color: var(--ink-soft); margin-bottom: 28px; font-size: 15px; }
.quiz__opts { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.opt { display: flex; align-items: center; gap: 12px; padding: 18px 20px; border: 2px solid var(--line); border-radius: var(--r); background: var(--cream); font-weight: 600; font-size: 16px; cursor: pointer; transition: .22s var(--ease); text-align: left; color: var(--ink); }
.opt:hover { border-color: var(--peach); transform: translateY(-2px); }
.opt.sel { border-color: var(--peach-d); background: #DCEFE3; box-shadow: 0 8px 20px rgba(44,120,115,.18); }
.opt__check { width: 22px; height: 22px; border-radius: 7px; border: 2px solid var(--line); flex-shrink: 0; display: grid; place-items: center; transition: .2s; }
.opt.sel .opt__check { background: var(--peach-d); border-color: var(--peach-d); color: #fff; }
.quiz__nav { display: flex; align-items: center; justify-content: space-between; padding: 26px 26px 0; margin-top: 6px; }
.quiz__count { font-weight: 600; color: var(--ink-soft); font-size: 14px; }

/* quiz result */
.qresult { text-align: center; animation: pop .5s var(--ease); }
.qresult__emoji { font-size: 56px; margin-bottom: 10px; }
.qresult h3 { font-size: 26px; margin-bottom: 8px; }
.qresult p { color: var(--ink-soft); margin-bottom: 24px; }
.qresult__cards { display: grid; gap: 14px; text-align: left; }
.qmini { display: flex; align-items: center; gap: 16px; padding: 16px; border-radius: var(--r); border: 1px solid var(--line); background: var(--cream); transition: .25s var(--ease); cursor: pointer; }
.qmini:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.qmini__av { width: 56px; height: 56px; border-radius: 18px; display: grid; place-items: center; font-size: 28px; flex-shrink: 0; }
.qmini__info { flex: 1; min-width: 0; }
.qmini__info strong { display: block; font-size: 17px; }
.qmini__info span { font-size: 14px; color: var(--ink-soft); }
.qmini__match { font-family: "Unbounded"; font-weight: 700; color: var(--sage-d); font-size: 15px; }

/* ============================================================
   CATALOG
   ============================================================ */
.filters { background: var(--white); border-radius: var(--r-lg); padding: 22px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); margin-bottom: 28px; }
.search { display: flex; align-items: center; gap: 12px; padding: 14px 20px; background: var(--cream); border-radius: 100px; color: var(--ink-soft); margin-bottom: 18px; }
.search input { flex: 1; border: none; background: none; outline: none; font-family: inherit; font-size: 16px; color: var(--ink); }
.chips { display: flex; gap: 9px; flex-wrap: wrap; margin-bottom: 18px; }
.chip { padding: 9px 16px; border-radius: 100px; border: 2px solid var(--line); background: var(--cream); font-weight: 600; font-size: 14px; cursor: pointer; transition: .2s; color: var(--ink-soft); }
.chip:hover { border-color: var(--peach); color: var(--ink); }
.chip.on { background: var(--grad-sun); color: #fff; border-color: transparent; box-shadow: 0 6px 14px rgba(44,120,115,.28); }
.filters__row { display: flex; gap: 14px; flex-wrap: wrap; align-items: end; }
.sel { display: flex; flex-direction: column; gap: 6px; font-size: 13px; font-weight: 600; color: var(--ink-soft); }
.sel select { padding: 11px 16px; border-radius: var(--r-sm); border: 2px solid var(--line); background: var(--cream); font-family: inherit; font-size: 15px; font-weight: 600; color: var(--ink); cursor: pointer; outline: none; min-width: 150px; }
.sel select:focus { border-color: var(--peach); }
.filters__reset { margin-left: auto; }
.results-count { color: var(--ink-soft); font-weight: 600; margin-bottom: 20px; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card { background: var(--white); border-radius: var(--r-lg); padding: 26px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); transition: transform .35s var(--ease), box-shadow .35s; display: flex; flex-direction: column; }
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.card__top { display: flex; gap: 16px; align-items: center; margin-bottom: 18px; }
.card__av { width: 66px; height: 66px; border-radius: 20px; display: grid; place-items: center; font-size: 32px; flex-shrink: 0; box-shadow: inset -4px -4px 10px rgba(0,0,0,.06); }
.card__id strong { display: block; font-size: 19px; font-family: "Unbounded"; }
.card__id span { font-size: 14px; color: var(--ink-soft); }
.card__rating { margin-left: auto; text-align: right; }
.card__rating b { font-weight: 700; color: var(--terra); }
.card__rating small { display: block; color: var(--ink-soft); font-size: 12px; }
.card__bio { color: var(--ink-soft); font-size: 14.5px; margin-bottom: 16px; flex: 1; }
.card__tags { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 18px; }
.tag { padding: 5px 12px; border-radius: 100px; background: var(--cream-2); font-size: 12.5px; font-weight: 600; color: var(--ink-soft); }
.card__meta { display: flex; gap: 14px; font-size: 13px; color: var(--ink-soft); margin-bottom: 18px; flex-wrap: wrap; }
.card__meta b { color: var(--ink); }
.card__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; border-top: 1px solid var(--line); padding-top: 16px; }
.card__price strong { font-family: "Unbounded"; font-size: 20px; color: var(--ink); }
.card__price span { font-size: 13px; color: var(--ink-soft); }

/* ---- 3D circular carousel ---- */
.carousel { display: grid; gap: 56px; max-width: 980px; margin: 10px auto 0; align-items: center; }
.carousel__stage { position: relative; width: 100%; height: 420px; perspective: 1100px; }
.car-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); background: var(--cream-2); }
.carousel__panel { display: flex; flex-direction: column; justify-content: center; position: relative; z-index: 4; }
.car-name { font-family: "Unbounded"; font-weight: 700; font-size: clamp(24px,3vw,30px); color: var(--ink); margin-bottom: 4px; }
.car-desig { font-weight: 600; color: var(--peach-d); margin-bottom: 6px; }
.car-rating { font-weight: 700; color: var(--terra); margin-bottom: 18px; font-size: 15px; }
.car-quote { font-size: 18px; line-height: 1.7; color: var(--ink-soft); margin-bottom: 22px; min-height: 120px; }
.car-quote span { display: inline-block; }
.car-tags { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 22px; }
.car-foot { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.car-price strong { font-family: "Unbounded"; font-size: 22px; color: var(--ink); }
.car-price span { font-size: 13px; color: var(--ink-soft); }
.car-arrows { display: flex; gap: 14px; margin-left: auto; }
.car-arrow { width: 50px; height: 50px; border-radius: 50%; border: none; cursor: pointer; display: grid; place-items: center; background: var(--ink); color: #fff; transition: background .3s, transform .2s; }
.car-arrow:hover { background: var(--peach-d); transform: translateY(-2px); }
.car-arrow svg { width: 22px; height: 22px; }
.car-dots { display: flex; gap: 8px; margin-top: 26px; justify-content: center; }
.car-dot { width: 9px; height: 9px; border-radius: 50%; border: none; background: var(--line); cursor: pointer; transition: .25s; padding: 0; }
.car-dot.on { background: var(--peach-d); width: 26px; border-radius: 100px; }
@media (min-width: 768px) { .carousel { grid-template-columns: 1fr 1fr; } }
@media (max-width: 767px) {
  .carousel__stage { height: 340px; overflow: hidden; border-radius: var(--r-lg); }
  .car-quote { min-height: 0; }
}

.empty { text-align: center; padding: 60px 20px; }
.empty__emoji { font-size: 54px; margin-bottom: 14px; }
.empty p { color: var(--ink-soft); font-size: 18px; margin-bottom: 20px; }

/* ============================================================
   REVIEWS + FAQ
   ============================================================ */
/* ---- testimonial wall ---- */
.twall-wrap { position: relative; margin-bottom: 80px; }
.twall { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
.twall--clip { max-height: 560px; overflow: hidden; }
.tcard { position: relative; width: 320px; background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 22px; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s; }
.tcard:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.tcard__top { display: flex; align-items: center; gap: 12px; }
.tcard__av { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; font-size: 24px; background: var(--grad-warm); flex-shrink: 0; }
.tcard__id { display: flex; flex-direction: column; }
.tcard__id strong { font-size: 15.5px; font-weight: 700; }
.tcard__id span { font-size: 13px; color: var(--ink-soft); }
.tcard__social { position: absolute; top: 18px; right: 18px; color: var(--peach); }
.tcard__text { margin-top: 16px; color: var(--ink); font-weight: 500; font-size: 15px; line-height: 1.6; }
.twall__fade { position: absolute; bottom: 0; left: 0; width: 100%; height: 130px; background: linear-gradient(to top, var(--cream-2), transparent); pointer-events: none; }
.twall__more { display: flex; justify-content: center; margin-top: -26px; position: relative; z-index: 2; }

.reviews { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 80px; }
.review { background: var(--white); border-radius: var(--r-lg); padding: 28px 24px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.review__stars { color: #FFC04D; letter-spacing: 2px; margin-bottom: 12px; }
.review__text { font-size: 15px; margin-bottom: 18px; }
.review__by { display: flex; align-items: center; gap: 10px; }
.review__av { width: 40px; height: 40px; border-radius: 12px; background: var(--grad-warm); display: grid; place-items: center; font-size: 20px; }
.review__by strong { display: block; font-size: 15px; }
.review__by span { font-size: 13px; color: var(--ink-soft); }

.faq { max-width: 800px; margin: 0 auto; }
.faq__title { text-align: center; font-size: 30px; margin-bottom: 30px; }
.acc__item { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); margin-bottom: 12px; overflow: hidden; transition: box-shadow .3s; }
.acc__item.open { box-shadow: var(--shadow-sm); }
.acc__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 26px; background: none; border: none; font-family: inherit; font-weight: 700; font-size: 17px; color: var(--ink); cursor: pointer; text-align: left; }
.acc__icon { flex-shrink: 0; width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: var(--cream-2); font-size: 20px; transition: transform .3s, background .3s; }
.acc__item.open .acc__icon { transform: rotate(45deg); background: var(--peach-d); color: #fff; }
.acc__a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.acc__a p { padding: 0 26px 24px; color: var(--ink-soft); }

/* ============================================================
   CTA BAND + FOOTER
   ============================================================ */
.cta-band { padding: 40px 0 90px; background: var(--cream-2); }
.cta-band__inner { background: var(--grad-sun); border-radius: var(--r-xl); padding: 54px 56px; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; color: #fff; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.cta-band__inner::before { content: ""; position: absolute; width: 300px; height: 300px; border-radius: 50%; background: rgba(255,255,255,.16); top: -120px; right: -60px; }
.cta-band__inner h2 { font-size: clamp(26px, 3.5vw, 40px); margin-bottom: 8px; position: relative; }
.cta-band__inner p { font-size: 18px; opacity: .92; position: relative; }
.cta-band__inner .btn--primary { background: #fff; color: var(--terra); position: relative; }

.footer { background: var(--ink); color: #fff; padding: 70px 0 30px; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer .brand__mark { background: var(--grad-sun); }
.footer__brand p { color: rgba(255,255,255,.6); margin-top: 14px; max-width: 280px; font-size: 15px; }
.footer__col h4 { font-family: "Manrope"; font-size: 15px; margin-bottom: 16px; }
.footer__col a { display: block; color: rgba(255,255,255,.6); margin-bottom: 10px; font-size: 14.5px; transition: color .2s; }
.footer__col a:hover { color: #fff; }
.footer__bottom { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-top: 24px; font-size: 13.5px; color: rgba(255,255,255,.5); }

/* ============================================================
   MODAL
   ============================================================ */
.modal { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 24px; }
.modal[hidden] { display: none; }
.modal__overlay { position: absolute; inset: 0; background: rgba(74,40,30,.45); backdrop-filter: blur(6px); animation: fade .3s; }
.modal__card { position: relative; z-index: 1; width: 100%; max-width: 620px; max-height: 90vh; overflow-y: auto; background: var(--white); border-radius: var(--r-xl); box-shadow: var(--shadow-lg); animation: pop .4s var(--ease); }
.modal__close { position: absolute; top: 18px; right: 18px; width: 40px; height: 40px; border-radius: 50%; border: none; background: var(--cream-2); font-size: 26px; line-height: 1; color: var(--ink); cursor: pointer; z-index: 2; transition: .2s; }
.modal__close:hover { background: var(--peach); color: #fff; transform: rotate(90deg); }
.modal__hero { padding: 40px 40px 24px; background: var(--grad-warm); border-radius: var(--r-xl) var(--r-xl) 0 0; display: flex; gap: 20px; align-items: center; }
.modal__av { width: 92px; height: 92px; border-radius: 26px; display: grid; place-items: center; font-size: 46px; box-shadow: var(--shadow-sm); }
.modal__hero h3 { font-size: 26px; } .modal__hero .t { color: var(--ink-soft); font-weight: 600; }
.modal__b { padding: 28px 40px 36px; }
.modal__row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 22px; }
.modal__b h4 { font-family: "Manrope"; font-size: 15px; margin-bottom: 8px; text-transform: uppercase; letter-spacing: .05em; color: var(--peach-d); }
.modal__b p { color: var(--ink-soft); margin-bottom: 22px; }
.modal__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 26px; }
.modal__stat { background: var(--cream); border-radius: var(--r); padding: 16px 18px; }
.modal__stat b { display: block; font-family: "Unbounded"; font-size: 20px; color: var(--terra); }
.modal__stat span { font-size: 13px; color: var(--ink-soft); }
.modal__foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.modal__foot[hidden] { display: none; }

/* форма записи — запрос телефона */
.book-form { margin-top: 4px; animation: bookIn .3s var(--ease); }
.book-form[hidden] { display: none; }
.book-form__title { margin: 0 0 6px; font-size: 19px; }
.book-form__hint { margin: 0 0 14px; color: var(--ink-soft, #5b6b66); font-size: 14px; }
.book-form__input { width: 100%; padding: 14px 16px; font-size: 17px; border: 2px solid var(--line, #dfe7e3); border-radius: 14px; background: #fff; transition: border-color .2s var(--ease); }
.book-form__input:focus { outline: none; border-color: var(--sage, #2C7873); }
.book-form__err { margin: 8px 0 0; color: #c0392b; font-size: 13px; font-weight: 600; }
.book-form__actions { display: flex; gap: 12px; margin-top: 16px; }
.book-form__actions .btn--lg { flex: 1; }
.book-form__done { text-align: center; padding: 22px; font-family: "Unbounded"; font-size: 20px; font-weight: 700; color: var(--sage-d, #004445); }
@keyframes bookIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
/* .reveal is always visible — animation removed to guarantee content shows */
.reveal { opacity: 1; transform: none; }

/* keyframes */
@keyframes floaty { 0%,100%{ transform: translateY(0) } 50%{ transform: translateY(-22px) } }
@keyframes bob { 0%,100%{ transform: translateY(0) rotate(-2deg) } 50%{ transform: translateY(-16px) rotate(2deg) } }
@keyframes shadowPulse { 0%,100%{ transform: scale(1); opacity:.18 } 50%{ transform: scale(.8); opacity:.1 } }
@keyframes drift { from{ transform: translateX(0) } to{ transform: translateX(60px) } }
@keyframes blink { 0%,92%,100%{ transform: scaleY(1) } 96%{ transform: scaleY(.1) } }
@keyframes scrollDot { 0%{ transform: translateY(0); opacity:1 } 80%{ transform: translateY(12px); opacity:0 } 100%{ opacity:0 } }
@keyframes pop { from{ opacity:0; transform: scale(.94) } to{ opacity:1; transform: scale(1) } }
@keyframes fade { from{ opacity:0 } to{ opacity:1 } }
@keyframes wordIn { from{ filter: blur(10px); opacity:0; transform: translateY(5px) } to{ filter: blur(0); opacity:1; transform:none } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__quotes { flex-direction: row; flex-wrap: wrap; align-items: stretch; justify-content: flex-start; }
  .qcard { flex: 1 1 240px; max-width: none; }
  .qcard:nth-child(3) { align-self: stretch; }
  .price-badge--float { order: -1; align-self: flex-start; }
  /* на узких экранах вместо боковой вуали — вертикальная сверху под текст */
  .hero::after {
    background:
      linear-gradient(180deg,
        rgba(244,250,245,.90) 0%,
        rgba(244,250,245,.62) 30%,
        rgba(244,250,245,.14) 52%,
        rgba(244,250,245,0) 66%),
      linear-gradient(180deg, rgba(244,250,245,0) 78%, var(--cream) 100%);
  }
}
@media (max-width: 640px) {
  .hero__quotes { flex-direction: column; align-items: stretch; }
  .qcard { flex: none; }
}
/* на узких экранах кадр 16:9 обрезается по бокам — смещаем вправо,
   чтобы читающая девочка оставалась в видимой полосе */
@media (max-width: 820px) {
  .hero__bg { object-position: 72% center; }
  /* чтобы длинное «психолога» не обрезалось на узких экранах */
  .hero__title { font-size: clamp(32px, 10vw, 52px); }
  /* мягкая кремовая дымка сверху под текст (без плашки): надпись читается,
     низ иллюстрации с девочкой остаётся живым */
  .hero::after {
    display: block;
    background:
      linear-gradient(180deg,
        rgba(244, 250, 245, .97) 0%,
        rgba(244, 250, 245, .93) 44%,
        rgba(244, 250, 245, .82) 60%,
        rgba(244, 250, 245, .42) 73%,
        rgba(244, 250, 245, 0) 87%),
      linear-gradient(180deg, rgba(244, 250, 245, 0) 82%, var(--cream) 100%);
  }
}

@media (max-width: 1100px) {
  .nav__links, .nav__actions { display: none; }
  .nav__burger { display: flex; }
  /* подстраницы без бургера: показываем компактное скролл-меню,
     иначе на телефоне остаётся только логотип без навигации */
  .nav:not(:has(.nav__burger)) .nav__inner { flex-wrap: wrap; row-gap: 4px; }
  .nav:not(:has(.nav__burger)) .nav__actions { display: flex; margin-left: auto; }
  .nav:not(:has(.nav__burger)) .nav__actions .btn { padding: 9px 14px; font-size: 13.5px; white-space: nowrap; }
  .nav:not(:has(.nav__burger)) .nav__links {
    display: flex; flex-basis: 100%; order: 5; gap: 18px;
    overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none;
    padding: 4px 2px 2px; font-size: 14px; white-space: nowrap;
  }
  .nav:not(:has(.nav__burger)) .nav__links::-webkit-scrollbar { display: none; }
  .nav.open { background: rgba(242,248,245,.98); backdrop-filter: blur(16px); box-shadow: 0 12px 28px rgba(2,28,30,.1); }
  .nav.open .nav__inner { flex-wrap: wrap; row-gap: 0; }
  .nav.open .nav__links,
  .nav.open .nav__actions { display: flex; flex-direction: column; align-items: stretch; flex-basis: 100%; width: 100%; margin: 0; gap: 4px; }
  .nav.open .nav__links { order: 3; padding-top: 14px; margin-top: 12px; border-top: 1px solid var(--line); }
  .nav.open .nav__links a { padding: 13px 4px; font-size: 16px; border-bottom: 1px solid var(--line); }
  .nav.open .nav__links a:last-child { border-bottom: none; }
  .nav.open .nav__links a::after { display: none; }
  .nav.open .nav__actions { order: 4; padding: 14px 0 8px; gap: 10px; }
  .nav.open .nav__actions .btn { width: 100%; }
  .steps, .cards, .reviews { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .container { padding-inline: 18px; }
  /* компактная шапка: всё помещается в 375px без горизонтального скролла */
  .nav__inner { gap: 10px; }
  .brand { font-size: 16px; gap: 6px; }
  .brand__logo { width: 34px; height: 34px; }
  .nav__burger { padding: 8px 0 8px 2px; margin-left: auto; flex-shrink: 0; }
  .langsw { margin-left: auto; }
  .dd--nav { margin-left: 0; }
  .section { padding: 70px 0; }
  .steps, .cards, .reviews, .quiz__opts, .modal__grid { grid-template-columns: 1fr; }
  .hero__stats { gap: 26px; }
  .buddy--lav { display: none; }
  .sun { width: 130px; height: 130px; }
  .filters__row { flex-direction: column; align-items: stretch; }
  .sel select { width: 100%; }
  .filters__reset { margin-left: 0; }
  /* футер: бренд на всю ширину, колонки ссылок — по две в ряд */
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 26px 20px; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__col h4 { margin-bottom: 10px; }
  .footer__col a { margin-bottom: 8px; }
  .cta-band__inner { padding: 38px 28px; }
  .modal__hero { flex-direction: column; text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   SELF-THERAPY PROMO — продающий блок курсов на главной
   ============================================================ */
.btn--glow {
  background: linear-gradient(135deg, #134e4a, #2dd4bf);
  color: #fff; border: none;
  box-shadow: 0 10px 26px rgba(19,78,74,.35);
}
.btn--glow:hover { filter: brightness(1.08); transform: translateY(-2px); box-shadow: 0 14px 32px rgba(19,78,74,.42); }

.stpromo { padding: 40px 0 10px; }
.stpromo__band {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 44px; align-items: center;
  padding: 52px 54px; border-radius: var(--r-xl);
  background:
    radial-gradient(120% 160% at 100% 0%, rgba(111,185,143,.35) 0%, rgba(111,185,143,0) 55%),
    linear-gradient(135deg, #04302f 0%, #0b4a45 55%, #156b5c 100%);
  color: #eefaf3;
  box-shadow: 0 30px 70px rgba(0,68,69,.30);
}
.eyebrow--light { color: #8fe3c0; }
.stpromo__head h2 { font-size: clamp(26px, 3.2vw, 42px); line-height: 1.12; margin: 10px 0 14px; color: #fff; }
.stpromo__head p { color: rgba(238,250,243,.82); font-size: clamp(15px, 1.2vw, 17.5px); line-height: 1.6; max-width: 520px; }
.stpromo__feats { list-style: none; margin: 22px 0 26px; padding: 0; display: grid; gap: 11px; }
.stpromo__feats li { position: relative; padding-left: 30px; font-weight: 600; font-size: 15px; color: #eefaf3; }
.stpromo__feats li::before {
  content: "✓"; position: absolute; left: 0; top: -1px;
  width: 21px; height: 21px; border-radius: 50%;
  display: grid; place-items: center; font-size: 12px; font-weight: 800;
  background: #2dd4bf; color: #04302f;
}
.btn--light { background: #fff; color: #0b4a45; box-shadow: 0 10px 26px rgba(0,0,0,.22); }
.btn--light:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(0,0,0,.28); }
.stpromo__note { margin-top: 14px; font-size: 13px; color: rgba(238,250,243,.62); }

.stpromo__cards { display: grid; gap: 14px; }
.stcard {
  position: relative; display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px; padding: 12px 18px 12px 12px;
  transition: transform .25s var(--ease), background .25s;
}
.stcard:hover { transform: translateX(6px); background: rgba(255,255,255,.13); }
.stcard img { width: 74px; height: 74px; border-radius: 14px; object-fit: cover; flex-shrink: 0; }
.stcard__body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.stcard__body b { font-family: "Unbounded", sans-serif; font-size: 16.5px; color: #fff; }
.stcard__body > span { font-size: 13.5px; color: rgba(238,250,243,.72); }
.stcard__price { margin-top: 5px; font-weight: 800; font-size: 17px; color: #8fe3c0; }
.stcard__price s { margin-left: 7px; font-weight: 600; font-size: 13.5px; color: rgba(238,250,243,.45); }
.stcard__badge {
  position: absolute; top: -9px; right: 14px;
  background: #ffd76a; color: #4a3403;
  font-size: 11px; font-weight: 800; letter-spacing: .02em;
  padding: 4px 11px; border-radius: 100px; box-shadow: 0 4px 12px rgba(0,0,0,.22);
}

@media (max-width: 900px) {
  .stpromo__band { grid-template-columns: 1fr; gap: 30px; padding: 38px 26px; }
}
@media (max-width: 640px) {
  .stpromo__band { padding: 32px 20px; border-radius: 28px; }
  .stcard img { width: 60px; height: 60px; }
  .stcard__body b { font-size: 15px; }
}

/* ============================================================
   ABOUT US — «О нас» (заменила FAQ)
   ============================================================ */
.section--about { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%); }
.section--about .section__head { max-width: 780px; }
.section--about .section__title { font-size: clamp(26px, 3.2vw, 38px); text-wrap: initial; }
.about__lead {
  max-width: 620px; margin-inline: auto; line-height: 1.75;
  text-wrap: balance; letter-spacing: .01em; margin-top: 6px;
}
.about__lead--accent {
  margin-top: 14px; font-weight: 600; color: var(--ink);
}
.about__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 14px; }
.about-card {
  position: relative; background: #fff; border-radius: 26px; padding: 30px 28px 28px;
  box-shadow: 0 12px 34px rgba(2,28,30,.07);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.about-card:hover { transform: translateY(-6px); box-shadow: 0 22px 50px rgba(2,28,30,.12); }
.about-card::before {
  content: ""; position: absolute; inset: 0 auto auto 28px; top: 0; width: 54px; height: 4px;
  border-radius: 0 0 6px 6px; background: var(--grad-sun);
}
.about-card__icon {
  width: 58px; height: 58px; border-radius: 18px; display: grid; place-items: center;
  font-size: 27px; background: var(--cream-2); margin-bottom: 18px;
}
.about-card h3 { font-size: 19px; line-height: 1.3; letter-spacing: -.005em; margin-bottom: 14px; }
.about-card p { color: var(--ink-soft); font-size: 15px; line-height: 1.75; letter-spacing: .012em; }
@media (max-width: 960px) { .about__grid { grid-template-columns: 1fr; max-width: 640px; margin-inline: auto; } }

/* ---- выделенный пункт меню «Самотерапия» ---- */
.nav__links .nav__hot{background:linear-gradient(135deg,#134e4a,#2dd4bf);color:#fff !important;padding:8px 16px;border-radius:999px;font-weight:800;box-shadow:0 4px 14px rgba(19,78,74,.28);transition:.2s}
.nav__links .nav__hot:hover{filter:brightness(1.1);transform:translateY(-1px)}

/* флаги в переключателе языка на главной */
.langsw button{display:inline-flex;align-items:center;gap:6px}
.langsw__flag{display:inline-flex;width:18px;height:12.5px;border-radius:2.5px;overflow:hidden;box-shadow:0 0 0 1px rgba(0,0,0,.14)}
.langsw__flag svg{width:100%;height:100%;display:block}

/* ================= выпадающий переключатель языка (главная) ================= */
.dd{position:relative;display:inline-block}
.dd--nav{margin-left:6px}
.dd__trigger{display:inline-flex;align-items:center;gap:8px;background:#fff;border:1px solid rgba(0,0,0,.1);border-radius:999px;padding:7px 12px;font:inherit;font-size:13px;font-weight:700;color:var(--ink,#1a2b28);cursor:pointer;box-shadow:0 2px 10px rgba(0,0,0,.06);transition:.15s}
.dd__trigger:hover{border-color:rgba(0,0,0,.22)}
.dd__cur{display:inline-flex;align-items:center;gap:6px}
.dd__chev{width:8px;height:8px;border-right:2px solid currentColor;border-bottom:2px solid currentColor;transform:rotate(45deg);margin-top:-3px;transition:transform .2s;opacity:.55}
.dd__trigger[aria-expanded="true"] .dd__chev{transform:rotate(-135deg);margin-top:2px}
.dd__menu{position:absolute;top:calc(100% + 6px);right:0;min-width:100%;display:flex;flex-direction:column;gap:2px;padding:5px;background:#fff;border:1px solid rgba(0,0,0,.1);border-radius:14px;box-shadow:0 12px 34px rgba(0,0,0,.16);z-index:1200;animation:ddIn .16s ease}
@keyframes ddIn{from{opacity:0;transform:translateY(-6px)}to{opacity:1;transform:none}}
.dd__item{display:flex;align-items:center;gap:7px;white-space:nowrap;border:0;background:transparent;padding:8px 14px;border-radius:9px;font:inherit;font-size:13px;font-weight:700;color:var(--ink-soft,#5c6b67);cursor:pointer;text-align:left;transition:.12s}
.dd__item:hover{background:#f2f5f4;color:var(--ink,#1a2b28)}
.dd__item.active{background:linear-gradient(135deg,#134e4a,#2dd4bf);color:#fff}

.dd__menu[hidden]{display:none}

/* фото специалиста внутри аватар-плашек (подбор, модалка анкеты) */
.qmini__av, .modal__av { overflow: hidden; }
.av-photo { width: 100%; height: 100%; object-fit: cover; object-position: top center; border-radius: inherit; display: block; }
