/* ============================================================
   Clam — clam.mom · стиль «Лагуна»
   Токены перенесены из приложения (app/lib/core/theme/glass.dart)
   ============================================================ */

/* ---------- Шрифты (локальные, сабсет кириллица+латиница) ---------- */
@font-face {
  font-family: 'Nunito'; font-style: normal; font-weight: 400; font-display: swap;
  src: url('../fonts/Nunito-400.ttf') format('truetype');
}
@font-face {
  font-family: 'Nunito'; font-style: normal; font-weight: 600; font-display: swap;
  src: url('../fonts/Nunito-600.ttf') format('truetype');
}
@font-face {
  font-family: 'Nunito'; font-style: normal; font-weight: 700; font-display: swap;
  src: url('../fonts/Nunito-700.ttf') format('truetype');
}
@font-face {
  font-family: 'Nunito'; font-style: normal; font-weight: 800; font-display: swap;
  src: url('../fonts/Nunito-800.ttf') format('truetype');
}
@font-face {
  font-family: 'Pacifico'; font-style: normal; font-weight: 400; font-display: swap;
  src: url('../fonts/Pacifico-Regular.ttf') format('truetype');
}

/* ---------- Токены ---------- */
:root {
  --ink: #3C4C63;
  --dim: #84919F;
  --accent: #4A87D8;
  --wordmark: #43586B;

  --sky-top: #DCF1EE;
  --sky-mid: #E6EBFA;
  --sky-bottom: #FBEEE7;

  --glow-mint: #9EDECB;
  --glow-lav: #C5BEF2;
  --glow-peach: #FFCDB2;

  --mint: #7ED4B4;
  --mint-deep: #2C8A70;
  --skyc: #7FC0E8;
  --rose: #C05F80;
  --rose-soft: #F0A5BB;
  --violet: #6F66BE;
  --violet-soft: #ABA5E8;
  --peach: #FFC9A4;
  --lilac: #CBB6F0;
  --iris: #9FB4F0;

  --ok: #5AA87E;
  --warn: #D6A34E;

  --g-mint-sky: linear-gradient(135deg, #7ED4B4, #7FC0E8);
  --g-rose-sand: linear-gradient(135deg, #F0A5BB, #FFC9A4);
  --g-violet-lilac: linear-gradient(135deg, #ABA5E8, #CBB6F0);
  --g-sky-iris: linear-gradient(135deg, #7FC0E8, #9FB4F0);

  --glass-bg: rgba(255, 255, 255, .48);
  --glass-border: rgba(255, 255, 255, .66);
  --glass-shadow: 0 16px 40px rgba(120, 145, 185, .17);
  --r-card: 26px;
  --r-btn: 18px;

  --font: 'Nunito', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-brand: 'Pacifico', 'Nunito', cursive;
}

/* ---------- База ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--sky-mid);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { line-height: 1.22; margin: 0 0 .5em; font-weight: 800; color: var(--ink); }
p { margin: 0 0 1em; }
button { font-family: inherit; }
::selection { background: rgba(126, 212, 180, .45); }
:focus-visible { outline: 2.5px solid var(--accent); outline-offset: 3px; border-radius: 6px; }

/* ---------- Фон «рассвет над лагуной» (фиксированный слой) ---------- */
.backdrop {
  position: fixed; inset: 0; z-index: -2; pointer-events: none; overflow: hidden;
  background: linear-gradient(135deg, var(--sky-top) 0%, var(--sky-mid) 48%, var(--sky-bottom) 100%);
}
.backdrop .blob {
  position: absolute; border-radius: 50%; filter: blur(42px); opacity: .68;
  will-change: transform;
}
.blob-mint  { width: min(52vw, 700px); height: min(52vw, 700px); left: -160px; top: -140px;
  background: radial-gradient(circle, rgba(158,222,203,.72) 0%, rgba(158,222,203,0) 70%); }
.blob-lav   { width: min(48vw, 640px); height: min(48vw, 640px); right: -140px; top: 22vh;
  background: radial-gradient(circle, rgba(197,190,242,.72) 0%, rgba(197,190,242,0) 70%); }
.blob-peach { width: min(54vw, 730px); height: min(54vw, 730px); left: 10vw; bottom: -240px;
  background: radial-gradient(circle, rgba(255,205,178,.72) 0%, rgba(255,205,178,0) 70%); }
@keyframes breathe {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50%      { transform: translate3d(3vmax, -2vmax, 0) scale(1.12); }
}
.backdrop .blob { animation: breathe 16s ease-in-out infinite; }
.blob-lav   { animation-duration: 19s; animation-delay: -6s; }
.blob-peach { animation-duration: 22s; animation-delay: -11s; }

/* облачка */
.backdrop .cloud {
  position: absolute; height: 120px; width: 300px; opacity: .5;
  background:
    radial-gradient(closest-side, rgba(255,255,255,.9), rgba(255,255,255,0)) 60px 20px / 180px 90px no-repeat,
    radial-gradient(closest-side, rgba(255,255,255,.75), rgba(255,255,255,0)) 0 40px / 160px 80px no-repeat,
    radial-gradient(closest-side, rgba(255,255,255,.75), rgba(255,255,255,0)) 140px 44px / 160px 76px no-repeat;
  will-change: transform;
}
@keyframes drift {
  from { transform: translateX(-30vw); }
  to   { transform: translateX(115vw); }
}
.cloud-1 { top: 9vh; animation: drift 105s linear infinite; }
.cloud-2 { top: 28vh; scale: .72; opacity: .36; animation: drift 145s linear infinite; animation-delay: -60s; }
.cloud-3 { top: 64vh; scale: 1.25; opacity: .3; animation: drift 175s linear infinite; animation-delay: -110s; }

/* ---------- Утилиты ---------- */
.container { max-width: 1160px; margin-inline: auto; padding-inline: clamp(18px, 4vw, 32px); }

.glass {
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(24px) saturate(1.15);
  backdrop-filter: blur(24px) saturate(1.15);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-card);
  box-shadow: var(--glass-shadow);
}

.label {
  display: inline-block;
  font-size: 12.5px; font-weight: 800; letter-spacing: 1.6px;
  text-transform: uppercase; color: var(--mint-deep);
  margin-bottom: 14px;
}
.label.violet { color: var(--violet); }
.label.rose { color: var(--rose); }

.section { padding-block: clamp(64px, 9vw, 116px); position: relative; }
.section-head { max-width: 640px; margin-bottom: clamp(28px, 4vw, 48px); }
.section-head h2 { font-size: clamp(28px, 4vw, 42px); }
.section-head p { color: var(--dim); font-size: clamp(16px, 1.6vw, 19px); }

.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 13px; border-radius: 999px;
  background: rgba(255,255,255,.75); border: 1px solid var(--glass-border);
  font-size: 12.5px; font-weight: 800; letter-spacing: 1.1px; color: var(--mint-deep);
}

/* кнопки */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 12px 28px;
  border-radius: var(--r-btn); border: 0; cursor: pointer;
  font: 700 16px/1.2 var(--font); text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.985); }

.btn-grad {
  position: relative; overflow: hidden;
  background: var(--g-mint-sky); color: #fff;
  box-shadow: 0 8px 18px rgba(126, 212, 180, .45);
}
.btn-grad:hover { box-shadow: 0 12px 26px rgba(126, 212, 180, .55); }
.btn-grad::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 32%, rgba(255,255,255,.5) 50%, transparent 68%);
  transform: translateX(-120%);
}
.btn-grad:hover::after { transition: transform .8s ease; transform: translateX(120%); }

.btn-solid {
  background: var(--accent); color: #fff;
  box-shadow: 0 8px 18px rgba(74, 135, 216, .42);
}
.btn-outline {
  background: rgba(255,255,255,.4); color: var(--accent);
  border: 1.5px solid rgba(74, 135, 216, .3);
}
.btn-outline:hover { background: rgba(255,255,255,.62); }

/* бейдж-«подушка» как ClamBadge */
.badge {
  --sz: 48px;
  width: var(--sz); height: var(--sz); flex: 0 0 var(--sz);
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 36%;
  background: var(--g-mint-sky);
  box-shadow: 0 5px 12px rgba(126, 212, 180, .4);
}
.badge svg { width: 54%; height: 54%; color: #fff; }
.badge.g-rose   { background: var(--g-rose-sand);   box-shadow: 0 5px 12px rgba(240, 165, 187, .4); }
.badge.g-violet { background: var(--g-violet-lilac); box-shadow: 0 5px 12px rgba(171, 165, 232, .4); }
.badge.g-sky    { background: var(--g-sky-iris);    box-shadow: 0 5px 12px rgba(127, 192, 232, .4); }

.icon { width: 22px; height: 22px; color: var(--ink); }

/* появление при скролле */
.reveal { opacity: 0; transform: translateY(26px); }
.reveal.in {
  opacity: 1; transform: none;
  transition: opacity .7s ease var(--d, 0s), transform .7s cubic-bezier(.22,.9,.34,1) var(--d, 0s);
}

/* ---------- Навигация ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background .35s ease, box-shadow .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(255,255,255,.55);
  -webkit-backdrop-filter: blur(24px) saturate(1.15);
  backdrop-filter: blur(24px) saturate(1.15);
  border-bottom-color: rgba(255,255,255,.66);
  box-shadow: 0 10px 30px rgba(120,145,185,.12);
}
.nav-inner {
  display: flex; align-items: center; gap: 28px;
  min-height: 68px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none !important;
}
.brand img { width: 54px; height: 54px; }
.brand span {
  font: 400 30px/1 var(--font-brand); color: var(--wordmark);
  text-shadow: 0 1px 0 rgba(255,255,255,.7);
}
.nav-links { display: flex; gap: 4px; margin-left: auto; align-items: center; }
.nav-links a {
  padding: 9px 14px; border-radius: 999px;
  color: var(--ink); font-weight: 700; font-size: 15px;
  transition: background .25s ease;
}
.nav-links a:hover { background: rgba(255,255,255,.6); text-decoration: none; }
.nav-cta { margin-left: 10px; }
.nav .btn { min-height: 42px; padding: 8px 20px; font-size: 14.5px; }

.burger {
  display: none; margin-left: auto;
  width: 46px; height: 46px; border-radius: 14px; border: 1px solid var(--glass-border);
  background: rgba(255,255,255,.55); cursor: pointer;
  align-items: center; justify-content: center; flex-direction: column; gap: 5px;
}
.burger i {
  width: 20px; height: 2.2px; border-radius: 2px; background: var(--ink);
  transition: transform .3s ease, opacity .3s ease; display: block;
}
.nav.open .burger i:nth-child(1) { transform: translateY(7.2px) rotate(45deg); }
.nav.open .burger i:nth-child(2) { opacity: 0; }
.nav.open .burger i:nth-child(3) { transform: translateY(-7.2px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { padding-top: clamp(120px, 16vh, 170px); padding-bottom: clamp(40px, 6vw, 80px); }
.hero-grid {
  display: grid; grid-template-columns: 1.04fr .96fr;
  gap: clamp(28px, 5vw, 64px); align-items: center;
}
.hero-word {
  font: 400 clamp(56px, 7.4vw, 92px)/1.25 var(--font-brand);
  color: var(--wordmark);
  text-shadow: 0 2px 0 rgba(255,255,255,.7), 0 14px 42px rgba(120,145,185,.28);
  margin: 0 0 2px;
}
.hero h1 {
  font-size: clamp(25px, 3.1vw, 38px);
  margin-bottom: 14px;
}
.hero-sub {
  color: #5A6A78; font-size: clamp(16.5px, 1.7vw, 19.5px); max-width: 480px;
  margin-bottom: 26px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 20px; }
.hero-note { display: flex; align-items: center; gap: 8px; color: var(--dim); font-size: 14.5px; font-weight: 600; }
.hero-note svg { width: 17px; height: 17px; color: var(--mint-deep); }

/* пузырьки-жемчужинки */
.bubbles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.bubbles i {
  position: absolute; bottom: -30px; border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, rgba(255,255,255,.95), rgba(255,255,255,.25) 60%, rgba(255,255,255,.05));
  border: 1px solid rgba(255,255,255,.55);
  animation: rise linear infinite;
}
@keyframes rise {
  from { transform: translateY(0); opacity: 0; }
  12%  { opacity: .85; }
  85%  { opacity: .5; }
  to   { transform: translateY(-108vh); opacity: 0; }
}
.bubbles i:nth-child(1) { left: 6%;  width: 10px; height: 10px; animation-duration: 21s; }
.bubbles i:nth-child(2) { left: 16%; width: 6px;  height: 6px;  animation-duration: 26s; animation-delay: -9s; }
.bubbles i:nth-child(3) { left: 33%; width: 8px;  height: 8px;  animation-duration: 23s; animation-delay: -15s; }
.bubbles i:nth-child(4) { left: 47%; width: 5px;  height: 5px;  animation-duration: 29s; animation-delay: -4s; }
.bubbles i:nth-child(5) { left: 62%; width: 9px;  height: 9px;  animation-duration: 24s; animation-delay: -18s; }
.bubbles i:nth-child(6) { left: 74%; width: 6px;  height: 6px;  animation-duration: 27s; animation-delay: -7s; }
.bubbles i:nth-child(7) { left: 86%; width: 11px; height: 11px; animation-duration: 22s; animation-delay: -12s; }
.bubbles i:nth-child(8) { left: 94%; width: 7px;  height: 7px;  animation-duration: 28s; animation-delay: -20s; }

/* сцена с телефоном (сам телефон статичен) */
.hero-phone-wrap { position: relative; display: flex; justify-content: center; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.widget {
  position: absolute; z-index: 3;
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; border-radius: 20px;
}
.widget .badge { --sz: 40px; }
.widget b { display: block; font-size: 15px; line-height: 1.25; }
.widget small { color: var(--dim); font-weight: 700; font-size: 12px; line-height: 1.2; display: block; }
.widget-kicks { left: max(-30px, -3vw); top: 12%; animation: floaty 8s ease-in-out infinite; animation-delay: -2.5s; }
.widget-week  { right: max(-26px, -2.5vw); bottom: 13%; animation: floaty 9s ease-in-out infinite; animation-delay: -5s; }

.mini-ring { position: relative; width: 44px; height: 44px; flex: 0 0 44px; }
.mini-ring svg { width: 44px; height: 44px; transform: rotate(-90deg); }
.mini-ring .track { stroke: rgba(255,255,255,.6); }
.mini-ring .prog { stroke: url(#gradRing); stroke-linecap: round; }
.mini-ring img {
  position: absolute; inset: 7px; width: 30px; height: 30px;
  border-radius: 50%; object-fit: cover;
}

/* ---------- Телефон-мокап ---------- */
.phone {
  position: relative; width: 296px; height: 622px;
  border-radius: 46px;
  background: #222E3C;
  box-shadow:
    0 34px 70px rgba(120, 145, 185, .38),
    0 8px 22px rgba(120, 145, 185, .25),
    inset 0 0 0 2px rgba(255,255,255,.14);
  padding: 9px;
}
.phone::before {
  /* кнопка сбоку */
  content: ''; position: absolute; right: -2.5px; top: 130px;
  width: 3px; height: 58px; border-radius: 3px; background: #36455A;
}
.phone-screen {
  position: relative; width: 100%; height: 100%;
  border-radius: 38px; overflow: hidden;
  background: linear-gradient(135deg, var(--sky-top), var(--sky-mid) 48%, var(--sky-bottom));
}
.phone-notch {
  position: absolute; z-index: 5; top: 9px; left: 50%; transform: translateX(-50%);
  width: 86px; height: 22px; border-radius: 12px; background: #222E3C;
}
/* мини-blobs внутри экрана */
.phone-screen::before, .phone-screen::after {
  content: ''; position: absolute; border-radius: 50%; filter: blur(26px); opacity: .6; pointer-events: none;
}
.phone-screen::before { width: 150px; height: 150px; left: -40px; top: -30px; background: var(--glow-mint); }
.phone-screen::after  { width: 170px; height: 170px; right: -50px; bottom: 40px; background: var(--glow-peach); }

.app-screen {
  position: absolute; inset: 0; z-index: 1;
  padding: 40px 12px 12px;
  display: flex; flex-direction: column; gap: 9px;
  font-size: 11px; line-height: 1.35;
  opacity: 0; transition: opacity .45s ease;
}
.app-screen.active { opacity: 1; z-index: 2; }

/* стеклянные элементы внутри экрана */
.mg {
  background: rgba(255,255,255,.5);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 18px;
  box-shadow: 0 6px 16px rgba(120,145,185,.14);
}

.scr-head { display: flex; align-items: center; justify-content: space-between; padding: 2px 4px; }
.scr-brand { font: 400 19px/1 var(--font-brand); color: var(--wordmark); text-shadow: 0 1px 0 rgba(255,255,255,.7); }
.scr-ava {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, #BFE8D9, #BFD4F2);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 12px; color: #4A6B84;
}
.scr-search { display: flex; align-items: center; gap: 7px; padding: 9px 12px; color: #8FA0B2; font-weight: 600; }
.scr-search svg { width: 13px; height: 13px; color: #8FA0B2; }

.scr-label { font-size: 8px; font-weight: 800; letter-spacing: 1.1px; color: var(--mint-deep); }
.scr-label.violet { color: var(--violet); }

.scr-preg { display: flex; gap: 10px; align-items: center; padding: 11px 12px;
  background: linear-gradient(135deg, rgba(126,212,180,.24), rgba(127,192,232,.18)), rgba(255,255,255,.5); }
.scr-preg-row { display: flex; align-items: center; justify-content: space-between; gap: 6px; margin-bottom: 1px; }
.scr-preg-t b { display: block; font-size: 14px; line-height: 1.2; }
.scr-sub { display: block; }
.scr-ring { position: relative; width: 52px; height: 52px; flex: 0 0 52px; }
.scr-ring svg { width: 52px; height: 52px; transform: rotate(-90deg); }
.scr-ring .track { stroke: rgba(255,255,255,.62); }
.scr-ring .prog { stroke: url(#gradRing); stroke-linecap: round; }
.scr-ring img { position: absolute; inset: 8px; width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.scr-preg-t b { font-size: 14px; }
.scr-preg-t { flex: 1; }
.scr-week-pill {
  font-size: 8.5px; font-weight: 800; color: var(--mint-deep); white-space: nowrap;
  background: rgba(255,255,255,.75); border-radius: 999px; padding: 2px 7px;
}
.scr-sub { color: #7A8797; font-weight: 600; font-size: 9.5px; }

.scr-sect { font-weight: 800; font-size: 11.5px; padding: 2px 4px 0; }

.scr-mood { padding: 10px 12px; }
.scr-mood-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.scr-mood-top b { font-size: 11.5px; }
.scr-streak {
  font-size: 8px; font-weight: 800; color: var(--mint-deep);
  background: rgba(126,212,180,.22); padding: 2.5px 8px; border-radius: 999px;
}
.scr-shells { display: flex; justify-content: space-between; }
.scr-shells span {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.45); border: 1px solid rgba(255,255,255,.75);
  box-shadow: 0 3px 8px rgba(120,145,185,.14);
  display: flex; align-items: center; justify-content: center;
}
.scr-shells img { width: 27px; height: 27px; }

.scr-tile { display: flex; align-items: center; gap: 9px; padding: 9px 11px; }
.scr-tile .badge { --sz: 34px; border-radius: 12px; }
.scr-tile-t { flex: 1; min-width: 0; }
.scr-tile-t b { display: block; font-size: 11px; }
.scr-tile-t small { color: #7A8797; font-weight: 600; font-size: 9px; }
.scr-chev { color: #B9C4D2; font-size: 15px; font-weight: 700; }

.scr-tabbar {
  margin-top: auto;
  display: flex; justify-content: space-around; align-items: center;
  padding: 7px 6px; border-radius: 22px;
}
.scr-tab { display: flex; flex-direction: column; align-items: center; gap: 2px;
  font-size: 7.5px; font-weight: 700; color: #93A2B4; }
.scr-tab svg { width: 17px; height: 17px; color: #93A2B4; }
.scr-tab.active { color: var(--mint-deep); font-weight: 800; }
.scr-tab.active .badge { --sz: 26px; border-radius: 9px; }
.scr-tab.active .badge svg { color: #fff; width: 15px; height: 15px; }

/* экран: ракушки / шторка */
.scr-dim { position: absolute; inset: 0; background: rgba(60,76,99,.18); backdrop-filter: blur(2px); }
.scr-sheet {
  position: absolute; left: 0; right: 0; bottom: 0;
  border-radius: 24px 24px 0 0;
  background: linear-gradient(180deg, #F8FBFD, #EAF3F0);
  padding: 10px 12px 14px;
  box-shadow: 0 -12px 34px rgba(120,145,185,.3);
}
.scr-grab { width: 34px; height: 4px; border-radius: 4px; background: #C9D6DE; margin: 0 auto 10px; }
.scr-sheet-head { display: flex; gap: 10px; align-items: center; margin-bottom: 9px; }
.scr-sheet-head img { width: 44px; height: 44px; }
.scr-sheet-head p { margin: 0; font-size: 10.5px; font-weight: 700; }
.scr-q { font-size: 9.5px; font-weight: 800; color: #5A6A78; margin: 7px 0 5px; }
.scr-chips { display: flex; flex-wrap: wrap; gap: 5px; }
.scr-chip {
  font-size: 8.5px; font-weight: 700; color: var(--ink);
  background: rgba(255,255,255,.72); border: 1px solid rgba(255,255,255,.9);
  border-radius: 999px; padding: 4px 9px;
}
.scr-chip.sel { background: rgba(126,212,180,.3); border-color: rgba(44,138,112,.55); color: var(--mint-deep); }
.scr-tip {
  margin-top: 8px; padding: 8px 10px; border-radius: 12px;
  background: rgba(126,212,180,.16); border: 1px solid rgba(126,212,180,.35);
  font-size: 9px; font-weight: 600; color: #40556A;
}
.scr-sheet-cta { margin-top: 9px; text-align: center; font-size: 9.5px; font-weight: 800; color: var(--mint-deep); }

/* экран: шевеления */
.scr-appbar { display: flex; align-items: center; gap: 8px; padding: 2px 4px; font-weight: 800; font-size: 13px; }
.scr-appbar svg { width: 15px; height: 15px; transform: rotate(180deg); color: var(--ink); }
.scr-kicks { text-align: center; padding: 14px 12px 16px;
  background: linear-gradient(135deg, rgba(126,212,180,.18), rgba(127,192,232,.13)), rgba(255,255,255,.5); }
.scr-kicks .scr-label { display: block; margin-bottom: 2px; }
.scr-kicks-num { font-size: 46px; font-weight: 300; color: #3A4A5A; line-height: 1.05; }
.scr-kicks-btns { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 10px; }
.scr-btn-minus {
  width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.75);
  border: 1px solid rgba(255,255,255,.9); color: #7A8797;
  display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 700;
}
.scr-btn-plus {
  width: 56px; height: 56px; border-radius: 50%; background: var(--mint-deep); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 26px; font-weight: 600;
  box-shadow: 0 8px 18px rgba(120,145,185,.35);
}
.scr-hint { display: flex; gap: 8px; align-items: flex-start; padding: 9px 11px; font-size: 9px; font-weight: 600; color: #5A6A78; }
.scr-hint svg { width: 14px; height: 14px; flex: 0 0 14px; color: var(--accent); }
.scr-hist { padding: 4px 12px 8px; margin-top: auto; }
.scr-hist-row { display: flex; justify-content: space-between; padding: 6.5px 0; border-bottom: 1px solid rgba(120,145,185,.14); font-size: 10px; font-weight: 600; color: #5A6A78; }
.scr-hist-row:last-child { border-bottom: 0; }
.scr-hist-row b { color: var(--mint-deep); font-weight: 800; }

/* экран: анализы */
.scr-disc { display: flex; gap: 7px; align-items: flex-start; padding: 8px 10px; font-size: 8.5px; font-weight: 600; color: #5A6A78; }
.scr-disc svg { width: 13px; height: 13px; flex: 0 0 13px; color: var(--accent); }
.scr-upload {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  background: var(--accent); color: #fff; border-radius: 14px;
  padding: 11px; font-weight: 800; font-size: 11px;
  box-shadow: 0 7px 16px rgba(74,135,216,.4);
}
.scr-upload svg { width: 14px; height: 14px; color: #fff; }
.scr-lab { display: flex; align-items: center; gap: 9px; padding: 9px 11px; }
.scr-lab .badge { --sz: 34px; border-radius: 12px; }
.scr-lab-t { flex: 1; min-width: 0; }
.scr-lab-t b { display: block; font-size: 10.5px; }
.scr-lab-t small { color: #7A8797; font-weight: 600; font-size: 8.5px; display: block; }
.scr-dots { display: flex; gap: 4px; margin-top: 3px; }
.scr-dot { font-size: 8px; font-weight: 800; padding: 1.5px 6px; border-radius: 999px; }
.scr-dot.ok { color: #3D7E5C; background: rgba(90,168,126,.16); }
.scr-dot.warn { color: #9C7326; background: rgba(214,163,78,.18); }

/* ---------- Полоса доверия ---------- */
.trust { padding-block: 8px clamp(40px, 6vw, 70px); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.trust-item { display: flex; align-items: center; gap: 12px; padding: 15px 18px; border-radius: 20px; }
.trust-item svg { width: 22px; height: 22px; flex: 0 0 22px; color: var(--mint-deep); }
.trust-item span { font-size: 13.5px; font-weight: 700; color: #5A6A78; line-height: 1.35; }

/* ---------- Возможности ---------- */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature {
  padding: 26px 24px 24px; border-radius: var(--r-card);
  transition: transform .35s cubic-bezier(.22,.9,.34,1), box-shadow .35s ease;
}
.feature:hover { transform: translateY(-6px); box-shadow: 0 24px 52px rgba(120,145,185,.26); }
.feature .badge { margin-bottom: 16px; }
.feature h3 { font-size: 19.5px; margin-bottom: 7px; }
.feature p { color: #5A6A78; font-size: 15.5px; margin: 0; }

.more-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; align-items: center; }
.more-chips .mc-lead { font-weight: 800; color: var(--dim); font-size: 14px; letter-spacing: .4px; margin-right: 4px; }
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.5); border: 1px solid var(--glass-border);
  border-radius: 999px; padding: 8px 15px;
  font-size: 14px; font-weight: 700; color: var(--ink);
}
.chip svg { width: 16px; height: 16px; color: var(--mint-deep); }

/* ---------- Экраны (showcase) ---------- */
.showcase-grid {
  display: grid; grid-template-columns: 380px 1fr;
  gap: clamp(30px, 6vw, 80px); align-items: start;
}
.showcase-phone { position: sticky; top: 96px; display: flex; justify-content: center; }
.showcase-copy { display: flex; flex-direction: column; gap: clamp(90px, 16vh, 150px); padding-block: 40px 110px; }
.show-block { max-width: 460px; }
.show-block h3 { font-size: clamp(22px, 2.6vw, 30px); }
.show-block p { color: #5A6A78; font-size: 16.5px; }
.show-dot { display: none; }

/* ---------- Калькулятор ---------- */
.calc-card { padding: clamp(26px, 4vw, 44px); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(26px, 4vw, 52px); }
.calc-form label { display: block; font-weight: 800; font-size: 14.5px; margin: 0 0 8px; }
.calc-form .fld { margin-bottom: 22px; }
.calc-form input[type="date"] {
  width: 100%; min-height: 52px; padding: 12px 16px;
  border-radius: var(--r-btn); border: 1.5px solid rgba(255,255,255,.8);
  background: rgba(255,255,255,.55); color: var(--ink);
  font: 700 16px var(--font);
  transition: border-color .25s ease;
}
.calc-form input[type="date"]:focus { outline: none; border-color: var(--accent); }
.range-row { display: flex; align-items: center; gap: 14px; }
.range-row output {
  min-width: 74px; text-align: center; font-weight: 800;
  background: rgba(255,255,255,.6); border: 1px solid var(--glass-border);
  border-radius: 999px; padding: 6px 10px; font-size: 14.5px;
}
input[type="range"] {
  flex: 1; appearance: none; -webkit-appearance: none; height: 8px; border-radius: 8px;
  background: linear-gradient(90deg, var(--mint), var(--skyc));
  outline-offset: 6px;
}
input[type="range"]::-webkit-slider-thumb {
  appearance: none; -webkit-appearance: none; width: 26px; height: 26px; border-radius: 50%;
  background: #fff; border: 2px solid var(--mint-deep);
  box-shadow: 0 3px 10px rgba(120,145,185,.35); cursor: pointer;
}
input[type="range"]::-moz-range-thumb {
  width: 24px; height: 24px; border-radius: 50%;
  background: #fff; border: 2px solid var(--mint-deep);
  box-shadow: 0 3px 10px rgba(120,145,185,.35); cursor: pointer;
}
.calc-note { color: var(--dim); font-size: 13px; margin-top: 14px; }

.calc-result { display: flex; flex-direction: column; justify-content: center; min-height: 280px; }
.calc-out { position: relative; }
.calc-empty { text-align: center; color: var(--dim); font-weight: 600; }
.calc-empty img { width: 84px; margin: 0 auto 12px; opacity: .85; }
.calc-out { display: none; }
.calc-out.show { display: block; animation: pop .55s cubic-bezier(.22,.9,.34,1); }
@keyframes pop { from { opacity: 0; transform: translateY(14px) scale(.97); } to { opacity: 1; transform: none; } }
.calc-due { text-align: center; margin-bottom: 18px; }
.calc-due .scr-label { font-size: 11px; }
.calc-due b { display: block; font-size: clamp(26px, 3vw, 34px); font-weight: 800; }
.calc-week {
  display: flex; gap: 14px; align-items: center;
  padding: 16px 18px; border-radius: 20px; margin-bottom: 12px;
}
.calc-week .mini-ring { width: 52px; height: 52px; flex-basis: 52px; }
.calc-week .mini-ring svg { width: 52px; height: 52px; }
.calc-week-t b { font-size: 17px; display: block; }
.calc-week-t small { color: var(--dim); font-weight: 700; }
.calc-size { display: flex; gap: 14px; align-items: center; padding: 16px 18px; border-radius: 20px; }
.calc-size .badge { --sz: 44px; }
.calc-size-t b { display: block; font-size: 16px; }
.calc-size-t small { color: var(--dim); font-weight: 700; }
.calc-warn { color: var(--rose); font-weight: 700; font-size: 14.5px; text-align: center; }

/* жемчужный салют при расчёте */
.pearl-burst { position: absolute; left: 50%; top: 70px; width: 0; height: 0; pointer-events: none; z-index: 3; }
.pearl-burst b {
  position: absolute; left: -5px; top: -5px; width: 10px; height: 10px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff, #DDEBF5 60%, #BFD4E8);
  box-shadow: 0 0 8px rgba(255,255,255,.85);
  opacity: 0;
}
.pearl-burst.go b { animation: pearlFly .95s cubic-bezier(.16,.84,.44,1) forwards; }
@keyframes pearlFly {
  0%   { opacity: 0; transform: translate(0, 0) scale(.4); }
  12%  { opacity: 1; }
  100% { opacity: 0; transform: translate(var(--bx, 0), var(--by, -80px)) scale(1.05); }
}

/* ---------- Неделя за неделей ---------- */
.weeks-card { padding: clamp(24px, 4vw, 42px); }
.weeks-head { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-bottom: 10px; }
.weeks-num { display: flex; align-items: baseline; gap: 8px; }
.weeks-num b { font-size: clamp(46px, 6vw, 64px); font-weight: 300; line-height: 1; color: #3A4A5A; }
.weeks-num span { color: var(--dim); font-weight: 700; }
.weeks-meta { margin-left: auto; text-align: right; }
.weeks-meta b { font-size: clamp(18px, 2vw, 22px); display: block; }
.weeks-meta small { color: var(--dim); font-weight: 700; }
#wkRange { width: 100%; margin: 10px 0 20px; }
.weeks-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.weeks-cols.swap { animation: pop .45s ease; }
.weeks-block {
  background: rgba(255,255,255,.5); border: 1px solid var(--glass-border);
  border-radius: 18px; padding: 16px 18px;
}
.weeks-block p { margin: 6px 0 0; color: #47586C; font-size: 15px; }

/* ---------- Кнопка «наверх» ---------- */
.to-top {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,.65);
  -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 12px 28px rgba(120,145,185,.28);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transform: translateY(10px);
  transition: opacity .3s ease, transform .3s ease, background .3s ease;
}
.to-top svg { width: 24px; height: 24px; color: var(--mint-deep); }
.to-top.show { opacity: 1; pointer-events: auto; transform: none; }
.to-top:hover { background: rgba(255,255,255,.9); }

/* ---------- Ракушки ---------- */
.shells-row { display: flex; justify-content: center; gap: clamp(8px, 2.4vw, 26px); margin-bottom: 26px; }
.shell-btn {
  width: clamp(56px, 15vw, 92px); height: clamp(56px, 15vw, 92px);
  border-radius: 50%; border: 1px solid rgba(255,255,255,.75);
  background: rgba(255,255,255,.45); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(120,145,185,.16);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease, background .3s ease;
  padding: 0;
}
.shell-btn img { width: 72%; height: 72%; pointer-events: none; }
.shell-btn:hover { transform: translateY(-7px) scale(1.06); }
.shell-btn.sel {
  background: rgba(126,212,180,.3); border-color: rgba(44,138,112,.5);
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 12px 26px rgba(126,212,180,.4);
}
.shell-answer {
  max-width: 620px; margin-inline: auto;
  padding: 22px 26px; border-radius: 22px; text-align: center;
  display: none;
}
.shell-answer.show { display: block; animation: pop .5s cubic-bezier(.22,.9,.34,1); }
.shell-answer p { font-size: 17.5px; font-weight: 700; margin: 0 0 6px; }
.shell-answer small { color: var(--dim); font-weight: 600; font-size: 13.5px; }

/* ---------- Clam+ ---------- */
.plus-hero {
  padding: clamp(28px, 4.6vw, 52px);
  background:
    linear-gradient(135deg, rgba(126,212,180,.22), rgba(171,165,232,.18)),
    var(--glass-bg);
  display: flex; align-items: center; gap: clamp(20px, 3vw, 40px);
  margin-bottom: 22px;
}
.plus-pearl { position: relative; width: 96px; flex: 0 0 96px; }
.plus-pearl::before {
  content: ''; position: absolute; inset: -22px; border-radius: 50%;
  background: radial-gradient(circle, rgba(197,190,242,.55), rgba(197,190,242,0) 70%);
  animation: pulseGlow 5s ease-in-out infinite;
}
@keyframes pulseGlow { 0%,100% { opacity: .55; transform: scale(1);} 50% { opacity: 1; transform: scale(1.14);} }
.plus-pearl img { position: relative; }
.plus-word { font: 400 clamp(34px, 4vw, 44px)/1.3 var(--font-brand); color: var(--wordmark);
  text-shadow: 0 1px 0 rgba(255,255,255,.7); margin: 0; }
.plus-sub { color: #5A6A78; font-weight: 700; font-size: clamp(16px, 1.7vw, 18.5px); margin: 2px 0 0; }
.plus-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.plus-item { display: flex; gap: 16px; padding: 22px; border-radius: 22px; align-items: flex-start; }
.plus-item .badge { --sz: 46px; }
.plus-item b { font-size: 17px; display: block; margin-bottom: 3px; }
.plus-item p { margin: 0; color: #5A6A78; font-size: 15px; }
.plus-note { text-align: center; color: var(--dim); font-weight: 700; margin-top: 24px; }
.plus-note svg { width: 16px; height: 16px; vertical-align: -3px; color: var(--mint-deep); margin-right: 5px; }

/* ---------- Данные и безопасность ---------- */
.safe-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(24px, 4vw, 48px); align-items: start; }
.safe-list { display: flex; flex-direction: column; gap: 14px; }
.safe-item { display: flex; gap: 14px; align-items: flex-start; padding: 17px 20px; border-radius: 20px; }
.safe-item .badge { --sz: 40px; }
.safe-item b { display: block; font-size: 16px; }
.safe-item p { margin: 2px 0 0; color: #5A6A78; font-size: 14.5px; }
.disclaimer-card {
  padding: 26px; border-radius: var(--r-card);
  border: 1.5px solid rgba(192, 95, 128, .35);
  background: rgba(255,255,255,.5);
  -webkit-backdrop-filter: blur(24px); backdrop-filter: blur(24px);
  box-shadow: var(--glass-shadow);
}
.disclaimer-card .dc-head { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.disclaimer-card .dc-head svg { width: 22px; height: 22px; color: var(--rose); }
.disclaimer-card .dc-head b { font-size: 17px; color: #7A3B4E; }
.disclaimer-card p { color: #5A6A78; font-size: 15px; margin-bottom: 10px; }
.disclaimer-card p:last-child { margin-bottom: 0; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin-inline: auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border-radius: 22px; overflow: hidden; }
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 19px 24px; font-weight: 800; font-size: 16.5px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary svg {
  width: 20px; height: 20px; flex: 0 0 20px; color: var(--mint-deep);
  transform: rotate(90deg); transition: transform .35s ease;
}
.faq-item[open] summary svg { transform: rotate(-90deg); }
.faq-body { padding: 0 24px 20px; color: #5A6A78; font-size: 15.5px; }
.faq-body p { margin: 0 0 8px; }
.faq-body p:last-child { margin: 0; }

/* ---------- Финальный CTA ---------- */
.cta-card {
  text-align: center; padding: clamp(40px, 6vw, 72px) clamp(22px, 5vw, 60px);
  position: relative; overflow: hidden;
}
.cta-card::before, .cta-card::after {
  content: ''; position: absolute; border-radius: 50%; filter: blur(34px); opacity: .5; pointer-events: none;
}
.cta-card::before { width: 220px; height: 220px; left: -60px; top: -60px; background: var(--glow-mint); }
.cta-card::after { width: 260px; height: 260px; right: -70px; bottom: -80px; background: var(--glow-lav); }
.cta-card h2 { font-size: clamp(26px, 3.6vw, 40px); }
.cta-card > p { color: #5A6A78; max-width: 520px; margin: 0 auto 30px; position: relative; z-index: 1; }
.stores { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; position: relative; z-index: 1; }
.store-badge {
  display: flex; align-items: center; gap: 12px;
  min-width: 200px; padding: 12px 22px; border-radius: var(--r-btn);
  background: rgba(255,255,255,.55); border: 1px solid var(--glass-border);
  box-shadow: 0 10px 24px rgba(120,145,185,.14);
  text-align: left; position: relative;
}
.store-badge svg { width: 30px; height: 30px; color: var(--ink); flex: 0 0 30px; }
.store-badge small { display: block; font-size: 11.5px; font-weight: 700; color: var(--dim); letter-spacing: .6px; text-transform: uppercase; }
.store-badge b { font-size: 18px; line-height: 1.15; }
.store-soon {
  position: absolute; top: -9px; right: 14px;
  font-size: 10.5px; font-weight: 800; letter-spacing: 1px;
  color: var(--mint-deep); background: #fff;
  padding: 2.5px 10px; border-radius: 999px;
  border: 1px solid rgba(44,138,112,.35);
}
.cta-support { margin-top: 26px; position: relative; z-index: 1; }
.cta-support a { font-weight: 800; }

/* ---------- Футер ---------- */
.footer { margin-top: clamp(30px, 5vw, 60px); padding: clamp(36px, 5vw, 56px) 0 34px;
  background: rgba(255,255,255,.4);
  -webkit-backdrop-filter: blur(24px); backdrop-filter: blur(24px);
  border-top: 1px solid var(--glass-border);
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; margin-bottom: 34px; }
.footer-brand img { width: 60px; height: 60px; margin-bottom: 10px; }
.footer-brand .fb-word { font: 400 26px/1 var(--font-brand); color: var(--wordmark); display: block; margin-bottom: 8px; }
.footer-brand p { color: var(--dim); font-size: 14px; font-weight: 600; max-width: 240px; }
.footer h4 { font-size: 13px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--dim); margin-bottom: 14px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.footer ul a { color: var(--ink); font-weight: 700; font-size: 15px; }
.footer-bottom { border-top: 1px solid rgba(120,145,185,.18); padding-top: 22px; }
.footer-bottom .med { color: var(--dim); font-size: 13px; max-width: 760px; margin-bottom: 10px; }
.footer-bottom .cop { color: var(--dim); font-size: 13.5px; font-weight: 700; }

/* ---------- Внутренние страницы (документы) ---------- */
.page-main { padding-top: clamp(110px, 15vh, 150px); padding-bottom: 70px; }
.doc {
  max-width: 820px; margin-inline: auto;
  padding: clamp(26px, 5vw, 56px);
}
.doc h1 { font-size: clamp(28px, 4vw, 38px); margin-bottom: 6px; }
.doc .doc-date { color: var(--dim); font-weight: 700; font-size: 14px; margin-bottom: 28px; }
.doc h2 { font-size: 21px; margin: 34px 0 10px; }
.doc h3 { font-size: 17.5px; margin: 24px 0 8px; }
.doc p, .doc li { color: #47586C; font-size: 16px; }
.doc ul { padding-left: 22px; margin: 0 0 14px; }
.doc li { margin-bottom: 6px; }
.doc table { width: 100%; border-collapse: collapse; margin: 14px 0 20px; font-size: 14.5px; }
.doc th, .doc td { text-align: left; padding: 10px 12px; border-bottom: 1px solid rgba(120,145,185,.2); vertical-align: top; }
.doc th { color: var(--dim); font-size: 12.5px; text-transform: uppercase; letter-spacing: 1px; }
.doc .callout {
  border-radius: 18px; padding: 16px 20px; margin: 18px 0;
  background: rgba(126,212,180,.14); border: 1px solid rgba(126,212,180,.4);
  font-weight: 600; color: #40556A;
}
.doc .callout.rose { background: rgba(240,165,187,.14); border-color: rgba(192,95,128,.35); color: #7A3B4E; }
.doc-nav { max-width: 820px; margin: 0 auto 18px; }
.doc-nav a { font-weight: 800; font-size: 15px; }
.table-wrap { overflow-x: auto; }

/* 404 */
.nf { min-height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; }
.nf-card { padding: clamp(36px, 6vw, 64px); max-width: 520px; }
.nf-card img { width: 96px; margin: 0 auto 16px; }
.nf-card h1 { font-size: 30px; }
.nf-card p { color: var(--dim); font-weight: 600; }

/* ---------- Адаптив ---------- */
@media (max-width: 1080px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2; }
  .widget-kicks { left: -6px; }
  .widget-week { right: -6px; }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-inline: auto; }
  .hero-ctas { justify-content: center; }
  .hero-note { justify-content: center; }
  .hero-phone-wrap { margin-top: 26px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .calc-card { grid-template-columns: 1fr; }
  .safe-grid { grid-template-columns: 1fr; }
  .plus-grid { grid-template-columns: 1fr; }
  .plus-hero { flex-direction: column; text-align: center; }

  /* showcase: телефон сверху, тексты — горизонтальная карусель */
  .showcase-grid { grid-template-columns: 1fr; }
  .showcase-phone { position: relative; top: 0; }
  .showcase-phone .phone { width: 264px; height: 556px; }
  .showcase-copy {
    display: flex; flex-direction: row; gap: 0; padding: 26px 0 6px;
    overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .showcase-copy::-webkit-scrollbar { display: none; }
  .show-block {
    flex: 0 0 100%; scroll-snap-align: center; text-align: center;
    max-width: none; padding-inline: 8px;
  }
  .show-dots { display: flex; justify-content: center; gap: 8px; margin-top: 12px; }
  .show-dot {
    display: block; width: 8px; height: 8px; border-radius: 999px;
    background: rgba(60,76,99,.22); border: 0; padding: 0; cursor: pointer;
    transition: background .3s ease, transform .3s ease;
  }
  .show-dot.active { background: var(--mint-deep); transform: scale(1.25); }
}

@media (min-width: 901px) {
  .show-dots { display: none; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .weeks-cols { grid-template-columns: 1fr; }
  .weeks-meta { margin-left: 0; text-align: left; width: 100%; order: 3; }
  .to-top { right: 14px; bottom: 76px; }
  .nav-links {
    position: fixed; inset: 68px 12px auto 12px;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: rgba(255,255,255,.82);
    -webkit-backdrop-filter: blur(28px); backdrop-filter: blur(28px);
    border: 1px solid var(--glass-border); border-radius: 24px;
    padding: 14px; box-shadow: 0 24px 60px rgba(120,145,185,.3);
    opacity: 0; pointer-events: none; transform: translateY(-12px);
    transition: opacity .3s ease, transform .3s ease;
  }
  .nav.open .nav-links { opacity: 1; pointer-events: auto; transform: none; }
  .nav-links a { text-align: center; padding: 13px; font-size: 16px; }
  .nav-cta { margin: 6px 0 0; }
  .burger { display: inline-flex; }
  .trust-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .widget { display: none; }
  .phone { width: 272px; height: 572px; }
  .stores { flex-direction: column; align-items: stretch; }
  .store-badge { justify-content: center; }
}

/* ---------- Режим без анимаций (скриншоты/тесты: ?noanim=1) ---------- */
html.noanim *, html.noanim *::before, html.noanim *::after {
  animation: none !important;
  transition: none !important;
}
html.noanim .reveal { opacity: 1; transform: none; }
html.noanim .bubbles { display: none; }

/* ---------- Уважение к reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .bubbles, .backdrop .cloud { display: none; }
}
