/* ============================================
   FAZEX v2 — style.css
   Godmode watercolor design system
   Fonts: Nunito (display) · Inter (body) · Caveat (accents)
============================================ */

:root {
  /* Palette */
  --navy: #1c4693;
  --navy-deep: #143061;
  --ink: #27436f;
  --muted: #52698f;
  --primary: #3b8ed6;
  --primary-deep: #2a72b8;
  --leaf: #3f9a35;
  --leaf-deep: #2f7d28;
  --sun: #ffd23e;
  --sun-deep: #e8a82c;
  --sky: #bfe0f5;
  --sky-soft: #eaf4fc;
  --bg: #ffffff;
  --bg-soft: #f2f8fd;
  --border: #dcebf7;

  /* Type */
  --font-display: 'Nunito', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-hand: 'Caveat', cursive;

  /* Layout */
  --section-py: clamp(72px, 9vw, 112px);
  --container: 1240px;

  /* Shape */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-full: 9999px;

  /* Elevation */
  --sh-card: 0 6px 24px rgba(28, 70, 147, .07), 0 1px 3px rgba(28, 70, 147, .05);
  --sh-hover: 0 20px 48px rgba(28, 70, 147, .15), 0 4px 12px rgba(28, 70, 147, .07);
  --sh-cta: 0 10px 26px rgba(59, 142, 214, .35);

  /* Motion */
  --t-fast: 160ms ease;
  --t-med: 240ms ease;
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --ease-bounce: cubic-bezier(.34, 1.56, .64, 1);

  /* Z-scale */
  --z-nav: 50;
  --z-fab: 60;
  --z-progress: 70;
}

/* ============ Reset & base ============ */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
sup { font-size: .55em; vertical-align: super; font-weight: 700; }
button { font-family: inherit; }
.ic { width: 100%; height: 100%; }

::selection { background: var(--sky); color: var(--navy-deep); }

/* Grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: .028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Scrollbar (webkit) */
::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: var(--sky-soft); }
::-webkit-scrollbar-thumb {
  background: var(--sky);
  border-radius: var(--r-full);
  border: 3px solid var(--sky-soft);
}
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* Focus */
:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: fixed;
  top: -60px; left: 16px;
  z-index: 200;
  background: var(--navy);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 var(--r-md) var(--r-md);
  font-weight: 700;
  transition: top var(--t-med);
}
.skip-link:focus { top: 0; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 860px; }

/* ============ Progress bar ============ */
.progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 4px;
  z-index: var(--z-progress);
  pointer-events: none;
}
.progress__bar {
  display: block;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--primary), var(--leaf) 70%, var(--sun));
  transform-origin: left;
  transform: scaleX(0);
}

/* ============ Typography ============ */
.h1, .h2 {
  font-family: var(--font-display);
  color: var(--navy);
  letter-spacing: -.01em;
  text-wrap: balance;
}
.h1 {
  font-size: clamp(2.2rem, 4.9vw, 3.6rem);
  line-height: 1.08;
  font-weight: 900;
}
.h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  line-height: 1.14;
  font-weight: 900;
}
.section-lead {
  font-size: clamp(1rem, 1.2vw, 1.13rem);
  color: var(--muted);
  max-width: 760px;
  margin: 16px auto 0;
}
.section-lead--left { margin-left: 0; }
.section-tag {
  display: inline-block;
  font-family: var(--font-hand);
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(--primary-deep);
  font-weight: 700;
  padding: 6px 20px;
  background: var(--sky-soft);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  margin-bottom: 16px;
  transform: rotate(-1.5deg);
}
.section--soft .section-tag { background: #fff; }
.pill {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 18px;
  background: var(--sky-soft);
  color: var(--navy);
  font-weight: 700;
  font-size: .95rem;
  border-radius: var(--r-md);
}

/* Watercolor text highlight */
.hl {
  position: relative;
  z-index: 0;
  white-space: nowrap;
}
/* .hl::after {
  content: '';
  position: absolute;
  left: -.15em; right: -.15em;
  bottom: .02em;
  height: .42em;
  background: url('img/background.webp') center / cover no-repeat;
  z-index: -1;
  border-radius: 4px;
  transform: rotate(-1deg);
} */

/* ============ Sections & waves ============ */
.section { padding: var(--section-py) 0; position: relative; }
.section--soft { background: var(--bg-soft); }
.section__head { text-align: center; margin-bottom: clamp(40px, 5vw, 60px); }

.wave {
  position: absolute;
  left: 0; right: 0;
  line-height: 0;
  color: var(--bg-soft);
  pointer-events: none;
}
.wave--top { top: -40px; height: 40px; }
.wave--bottom { bottom: -40px; height: 40px; transform: scaleY(-1); }
.wave svg { width: 100%; height: 100%; }

/* ============ Buttons ============ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 28px;
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: .98rem;
  cursor: pointer;
  border: 2px solid transparent;
  overflow: hidden;
  transition: transform var(--t-fast), box-shadow var(--t-med), background var(--t-med), color var(--t-med), border-color var(--t-med);
  white-space: nowrap;
  touch-action: manipulation;
}
.btn:active { transform: scale(.97); }
.btn--lg { min-height: 56px; padding: 16px 36px; font-size: 1.05rem; }
.btn--primary {
  background: linear-gradient(160deg, var(--primary-deep) 0%, var(--navy) 100%);
  color: #fff;
  box-shadow: var(--sh-cta);
}
.btn--primary::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: -80%;
  width: 60%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-20deg);
  transition: left .5s ease;
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(59, 142, 214, .45); }
.btn--primary:hover::after { left: 120%; }
.btn--ghost {
  background: #fff;
  color: var(--navy);
  border-color: var(--border);
  box-shadow: var(--sh-card);
}
.btn--ghost:hover {
  border-color: var(--primary);
  color: var(--primary-deep);
  transform: translateY(-2px);
}

/* ============ Header ============ */
.header {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(1.5) blur(12px);
  -webkit-backdrop-filter: saturate(1.5) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-med), background var(--t-med), box-shadow var(--t-med);
}
.header.scrolled {
  border-color: var(--border);
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 4px 24px rgba(28, 70, 147, .06);
}
/* backdrop-filter on .header hijacks the containing block of its
   position:fixed .nav descendant — drop it while the mobile menu is
   open so .nav.is-open positions itself against the real viewport. */
.header.nav-open {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  gap: 24px;
  transition: padding var(--t-med);
}
.header.scrolled .header__inner { padding: 9px 24px; }

.logo { display: flex; flex-direction: column; line-height: 1; }
.logo__name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--navy);
}
.logo__sub {
  font-family: var(--font-hand);
  font-size: 1.15rem;
  color: var(--leaf);
  transform: rotate(-2deg);
  margin-top: 3px;
  align-self: flex-start;
}

.nav { display: flex; gap: 6px; font-size: .95rem; font-weight: 600; }
.nav a {
  position: relative;
  color: var(--muted);
  transition: color var(--t-fast), background var(--t-fast);
  padding: 10px 14px;
  border-radius: var(--r-full);
}
.nav a:hover { color: var(--navy); background: var(--sky-soft); }
.nav a.is-active { color: var(--navy); background: var(--sky-soft); }
.nav a.nav__cta { display: none; }

.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  background: var(--sky-soft);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  flex-shrink: 0;
}
.lang-switch__opt {
  padding: 6px 12px;
  border-radius: var(--r-full);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .02em;
  color: var(--muted);
  transition: color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
}
.lang-switch__opt:hover { color: var(--navy); }
.lang-switch__opt.is-active {
  background: #fff;
  color: var(--primary-deep);
  box-shadow: var(--sh-card);
}

.burger {
  display: none;
  width: 46px; height: 46px;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  border-radius: var(--r-md);
}
.burger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .3s var(--ease-out), opacity .2s;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* ============ Hero ============ */
.hero {
  position: relative;
  padding: clamp(32px, 5vw, 72px) 0 0;
  background:
    radial-gradient(ellipse 80% 60% at 85% 10%, var(--sky-soft) 0%, transparent 60%),
    linear-gradient(180deg, #f4fafe 0%, #ffffff 85%);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  top: 0;
  right: 0;
  /* width: 38%; */
  height: 55%;
  /* object-fit: cover; */
  object-position: top right;
  pointer-events: none;
  z-index: 0;
}
.hero__sky {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.cloud {
  position: absolute;
  width: 170px;
  opacity: .75;
  filter: drop-shadow(0 4px 8px rgba(59, 142, 214, .12));
}
.cloud--1 { top: 8%; left: -220px; animation: cloud-drift 70s linear infinite; }
.cloud--2 { top: 26%; left: -220px; width: 115px; opacity: .5; animation: cloud-drift 96s linear infinite; animation-delay: -38s; }
.cloud--3 { top: 55%; left: -220px; width: 200px; opacity: .35; animation: cloud-drift 120s linear infinite; animation-delay: -70s; }

.hero__inner {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
  padding-bottom: clamp(48px, 6vw, 80px);
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--primary-deep);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--sh-card);
  padding: 9px 18px;
  border-radius: var(--r-full);
  margin-bottom: 22px;
}
.hero__eyebrow .ic { width: 14px; height: 14px; color: var(--sun-deep); }
.hero__product {
  margin-top: 16px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  color: var(--leaf);
}
.hero__bullets {
  margin: 26px 0 34px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 13px;
}
.hero__bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.03rem;
  font-weight: 600;
  color: var(--navy);
}
.tick {
  width: 26px; height: 26px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  color: var(--leaf);
  background: rgba(63, 154, 53, .13);
  border-radius: var(--r-full);
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 20px}

.hero__stats {
  margin-top: 38px;
  display: flex;
  gap: clamp(24px, 4vw, 48px);
}
.hero__stats dt {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  color: var(--navy);
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}
.hero__stats dd {
  color: var(--muted);
  font-size: .88rem;
  margin-top: 4px;
}

/* Hero art */
.hero__art {
  position: relative;
  min-height: 520px;
}
.hero__art > * { will-change: transform; }
.sun--hero {
  position: absolute;
  width: clamp(120px, 14vw, 190px);
  top: -10%; right: 0;
  animation: sun-spin 30s linear infinite;
  filter: drop-shadow(0 6px 18px rgba(255, 210, 62, .35));
}
.nettle--hero {
  position: absolute;
  width: clamp(140px, 16vw, 200px);
  left: 5%; bottom: 35%;
  transform-origin: 50% 100%;
  animation: leaf-sway 4.5s ease-in-out infinite alternate;
  filter: drop-shadow(0 8px 14px rgba(47, 125, 40, .2));
}
.mosquito--hero {
  position: absolute;
  width: clamp(90px, 10vw, 100px);
  top: 5%; left: 38%;
  animation: mosq-fly 12s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, .18));
  z-index: 2;
  cursor: pointer;
}
.mosquito--hero.fly-away { animation: mosq-flyaway 1.6s ease-in forwards !important; }
.tube--hero {
  position: absolute;
  width: min(100%, 560px);
  right: -4%; bottom: 0%;
  filter: drop-shadow(0 22px 44px rgba(28, 70, 147, .24));
  animation: tube-float 7s ease-in-out infinite;
  z-index: 1;
}

/* Ticker */
.ticker {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, .7);
  backdrop-filter: blur(6px);
  overflow: hidden;
  padding: 16px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ticker__track {
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__item {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.02rem;
  color: var(--navy);
  white-space: nowrap;
}
.ticker__sep { width: 13px; height: 13px; flex-shrink: 0; color: var(--sun-deep); }

/* ============ When grid — sticker blobs ============ */
.sticker-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 34px 18px;
}
.sticker {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  transition: transform var(--t-med) var(--ease-bounce);
}
.sticker:nth-child(even) { transform: rotate(-2deg); }
.sticker:nth-child(3n) { transform: rotate(2.5deg); }
.sticker:hover { transform: translateY(-4px) rotate(0deg); }
.sticker__blob {
  position: relative;
  width: 104px; height: 104px;
  flex-shrink: 0;
  transition: transform var(--t-med) var(--ease-bounce);
}
.sticker__blob::before {
  content: '';
  position: absolute; inset: -14px;
  background: var(--sky-soft);
  border: 1.5px solid var(--sky);
  border-radius: 42% 58% 65% 35% / 45% 40% 60% 55%;
  transition: border-radius .5s var(--ease-out);
}
.sticker:hover .sticker__blob::before {
  border-radius: 58% 42% 35% 65% / 55% 60% 40% 45%;
}
.sticker__blob img {
  position: relative;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: var(--sh-card);
}
.sticker__label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .92rem;
  color: var(--navy);
  line-height: 1.35;
}

/* ============ About ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: center;
}
.about-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px;
  box-shadow: var(--sh-card);
  position: relative;
}
.about-card::before {
  content: '';
  position: absolute;
  top: -10px; left: 36px;
  width: 64px; height: 8px;
  background: linear-gradient(90deg, var(--primary), var(--sky));
  border-radius: var(--r-full);
}
.about-card__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--border);
}
.about-card__row:last-of-type { border-bottom: none; }
.about-card__label { color: var(--muted); font-size: .92rem; flex-shrink: 0; }
.about-card__value { font-weight: 600; text-align: right; color: var(--navy); }
.about-card__value b { color: var(--leaf-deep); }
.about-card__note {
  margin-top: 16px;
  font-family: var(--font-hand);
  font-size: 1.45rem;
  color: var(--leaf);
  text-align: center;
  transform: rotate(-1deg);
}

.about-art { position: relative; z-index: 0; min-height: 420px; }
.about-art__wash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .6;
  z-index: -1;
  pointer-events: none;
}
.sun--about {
  position: absolute;
  width: 130px;
  top: 0; right: 6%;
  animation: sun-spin 26s linear infinite;
  filter: drop-shadow(0 6px 14px rgba(255, 210, 62, .3));
}
.nettle--about {
  position: absolute;
  width: 150px;
  left: 2%; bottom: 20%;
  transform-origin: 50% 100%;
  animation: leaf-sway 5s ease-in-out infinite alternate;

}
.tube--about {
  position: absolute;
  width: min(88%, 500px);
  right: 0; bottom: 14%;
  animation: tube-float 6s ease-in-out infinite;
  filter: drop-shadow(0 14px 28px rgba(28, 70, 147, .18));
  bottom: 0;
}

.perks {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.perk {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px 22px;
  box-shadow: var(--sh-card);
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.perk:hover { transform: translateY(-4px); box-shadow: var(--sh-hover); }
.perk__ic {
  width: 52px; height: 52px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: var(--r-md);
  background: var(--sky-soft);
  color: var(--primary-deep);
}
.perk__ic svg { width: 100%; height: 100%; }
.perk h3 { font-family: var(--font-display); font-size: 1.02rem; font-weight: 800; color: var(--navy); }
.perk p { color: var(--muted); font-size: .88rem; margin-top: 2px; }

/* ============ How it works — мазок-история ============ */
.mech-flow {
  --wash-1: color-mix(in srgb, var(--primary) 13%, white);
  --wash-2: color-mix(in srgb, var(--leaf) 12%, white);
  --wash-3: color-mix(in srgb, var(--sun) 20%, white);
  --num-ink: color-mix(in srgb, var(--primary) 32%, white);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4vw, 44px);
  padding: 40px 0 12px;
}

/* живые детали из hero: солнце и крапива по краям */
.mech-flow__sun {
  position: absolute;
  top: -26px; right: 1%;
  width: clamp(80px, 9vw, 128px);
  opacity: .55;
  animation: sun-spin 42s linear infinite;
  pointer-events: none;
  z-index: 0;
}
.mech-flow__nettle {
  position: absolute;
  bottom: -8px; left: 0;
  width: clamp(90px, 10vw, 150px);
  opacity: .4;
  transform-origin: 50% 100%;
  animation: leaf-sway 5.5s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

/* сквозной мазок: три слоя SVG, рисуется при скролле (app.js) */
.mech-spine {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: visible;
}
.mech-spine path {
  fill: none;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}
.spine-wash {
  stroke: var(--sky);
  stroke-width: 26px;
  opacity: .38;
  filter: blur(5px);
}
.spine-mid {
  stroke: var(--primary);
  stroke-width: 9px;
  opacity: .16;
  filter: blur(1px);
}
.spine-pen {
  stroke: var(--primary);
  stroke-width: 2px;
  opacity: 0;
  stroke-dasharray: .012 .02;
  transition: opacity 1s ease .3s;
}

/* остановка на мазке */
.mech-station {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  column-gap: clamp(48px, 9vw, 120px);
  min-height: 250px;
}
/* точка на мазке */
.mech-station::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 15px; height: 15px;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 30%, #fff 0 22%, var(--primary) 46%, var(--primary-deep) 100%);
  box-shadow: 0 0 0 7px color-mix(in srgb, var(--primary) 16%, transparent);
  z-index: 2;
}

/* арт: двухслойное акварельное пятно + иллюстрация + рукописный номер */
.mech-station__art {
  position: relative;
  width: clamp(200px, 24vw, 280px);
  aspect-ratio: 1;
  justify-self: center;
}
.mech-station__art::before,
.mech-station__art::after {
  content: '';
  position: absolute;
  transition: border-radius .6s var(--ease-out), transform .6s var(--ease-out);
}
.mech-station__art::before {
  inset: 4%;
  background: var(--tint, var(--wash-1));
  border-radius: 47% 53% 62% 38% / 52% 44% 56% 48%;
  transform: rotate(var(--rot, -4deg));
}
.mech-station__art::after {
  inset: 12% 8% 8% 14%;
  background: color-mix(in srgb, var(--tint, var(--wash-1)) 55%, white);
  border-radius: 58% 42% 45% 55% / 46% 58% 42% 54%;
  transform: rotate(calc(var(--rot, -4deg) * -1.4));
  opacity: .85;
}
.mech-station:hover .mech-station__art::before { border-radius: 55% 45% 42% 58% / 44% 56% 48% 52%; transform: rotate(calc(var(--rot, -4deg) + 4deg)); }
.mech-station:hover .mech-station__art::after { border-radius: 44% 56% 60% 40% / 55% 42% 58% 45%; }
.mech-station__art img {
  position: absolute;
  inset: 14%;
  width: 72%; height: 72%;
  object-fit: contain;
  z-index: 1;
  filter: drop-shadow(0 10px 22px rgba(28, 70, 147, .16));
  transition: transform var(--t-med) var(--ease-bounce);
}
.mech-station:hover .mech-station__art img { transform: translateY(-6px); }
.mech-station__num {
  position: absolute;
  top: -18px; left: -14px;
  z-index: 2;
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: clamp(3rem, 4.6vw, 4.4rem);
  line-height: 1;
  color: var(--num-ink);
  transform: rotate(-8deg);
  transition: color .35s ease, transform .35s var(--ease-bounce);
  user-select: none;
}
.mech-station:hover .mech-station__num { color: var(--primary-deep); transform: rotate(-4deg) scale(1.06); }

.mech-station__body { max-width: 430px; }
.mech-station__body h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.1rem, 1.7vw, 1.3rem);
  color: var(--navy);
  margin-bottom: 10px;
}
.mech-station__body p { color: var(--muted); font-size: .96rem; line-height: 1.65; }

.how_gel {
  height: 100%;
}
/* чередование сторон */
.mech-station:nth-of-type(odd) .mech-station__art { grid-column: 1; grid-row: 1; }
.mech-station:nth-of-type(odd) .mech-station__body { grid-column: 2; grid-row: 1; justify-self: start; }
.mech-station:nth-of-type(even) .mech-station__art { grid-column: 2; grid-row: 1; }
.mech-station:nth-of-type(even) .mech-station__body { grid-column: 1; grid-row: 1; justify-self: end; }

/* палитра пятен: небо → лист → солнце → небо → лист */
.mech-station:nth-of-type(1) .mech-station__art { --tint: var(--wash-1); --rot: -5deg; }
.mech-station:nth-of-type(2) .mech-station__art { --tint: var(--wash-2); --rot: 4deg; }
.mech-station:nth-of-type(3) .mech-station__art { --tint: var(--wash-3); --rot: -3deg; }
.mech-station:nth-of-type(4) .mech-station__art { --tint: var(--wash-1); --rot: 6deg; }
.mech-station:nth-of-type(5) .mech-station__art { --tint: var(--wash-2); --rot: -6deg; }

/* таймлайн «как быстро» */
.mech-timeline {
  margin-top: clamp(64px, 8vw, 96px);
  text-align: center;
}
.mech-timeline__head h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  color: var(--navy);
}
.mech-timeline__head .hand {
  display: block;
  font-family: var(--font-hand);
  font-size: 1.35rem;
  color: var(--primary-deep);
  margin-top: 4px;
}
.tl-track {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 920px;
  margin: 44px auto 0;
}
.tl-track::before {
  content: '';
  position: absolute;
  top: 10px; left: 60px; right: 60px;
  border-top: 2px dashed var(--sky);
}
.tl-node {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tl-node__dot {
  width: 21px; height: 21px;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 30%, #fff 0 20%, var(--dot, var(--primary)) 50%, color-mix(in srgb, var(--dot, var(--primary)) 60%, var(--navy)) 100%);
  box-shadow: 0 0 0 8px color-mix(in srgb, var(--dot, var(--primary)) 15%, transparent);
  margin-bottom: 18px;
  transition: transform var(--t-med) var(--ease-bounce);
}
.tl-node:hover .tl-node__dot { transform: scale(1.25); }
.tl-node:nth-child(1) { --dot: var(--sun-deep); }
.tl-node:nth-child(2) { --dot: var(--leaf); }
.tl-node:nth-child(3) { --dot: var(--primary); }
.tl-node__time {
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: 1.45rem;
  color: var(--primary-deep);
  margin-bottom: 6px;
}
.tl-node h4 { font-family: var(--font-display); font-weight: 800; font-size: 1.02rem; color: var(--navy); margin-bottom: 6px; }
.tl-node p { color: var(--muted); font-size: .87rem; max-width: 230px; }

.tl-footnote {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  background: #fff;
  border: 1px dashed var(--sky);
  border-radius: var(--r-full);
  padding: 11px 22px;
  font-size: .9rem;
  color: var(--ink);
}
.tl-footnote svg { width: 18px; height: 18px; color: var(--leaf); flex-shrink: 0; }
.tl-footnote b { color: var(--leaf-deep); }

/* ============ Steps ============ */
.steps-wrap { position: relative; margin-top: 16px; }
.steps-path {
  position: absolute;
  top: -34px; left: 0; right: 0;
  width: 100%;
  height: 80px;
  pointer-events: none;
}
.steps-path path {
  fill: none;
  stroke: var(--primary);
  stroke-width: 2.5;
  stroke-linecap: round;
  opacity: .4;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 1.6s var(--ease-out) .2s;
}
.steps-wrap.is-visible .steps-path path { stroke-dashoffset: 0; }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.flow-step__num {
  position: relative;
  width: 92px; height: 92px;
  border-radius: var(--r-full);
  background: #fff;
  border: 2px solid var(--sky);
  color: var(--primary-deep);
  display: flex; align-items: center; justify-content: center;
  padding: 15px;
  box-shadow: var(--sh-card);
  transition: transform var(--t-med) var(--ease-bounce), border-color var(--t-med), box-shadow var(--t-med);
}
.flow-step__num svg { width: 100%; height: 100%; }
.flow-step__num::after {
  content: attr(data-n);
  position: absolute;
  top: -6px; right: -6px;
  width: 26px; height: 26px;
  border-radius: var(--r-full);
  background: linear-gradient(155deg, var(--primary), var(--navy));
  color: #fff;
  font-family: var(--font-display); font-weight: 900; font-size: .78rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--sh-cta);
}
.flow-step:hover .flow-step__num {
  transform: scale(1.08);
  border-color: var(--primary);
  box-shadow: var(--sh-hover);
  animation: wiggle .6s ease-in-out;
}
.flow-step h3 { font-family: var(--font-display); font-size: 1.02rem; font-weight: 800; color: var(--navy); }
.flow-step p { color: var(--muted); font-size: .88rem; }

.notice {
  margin: 36px auto 0;
  max-width: 860px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 26px;
  background: var(--sky-soft);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  color: var(--navy);
  font-size: .95rem;
}
.notice .ic--big {
  width: 26px; height: 26px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--primary-deep);
}
.notice__content { display: flex; flex-direction: column; gap: 6px; }
.notice__content p { margin: 0; }
.notice__download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  padding: 10px 18px;
  border-radius: var(--r-full);
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: .88rem;
  text-decoration: none;
  box-shadow: var(--sh-cta);
  transition: transform var(--t-med) var(--ease-bounce), box-shadow var(--t-med);
  align-self: flex-start;
}
.notice__download .ic { width: 18px; height: 18px; flex-shrink: 0; }
.notice__download:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(59, 142, 214, .45); }

/* ============ Scenarios ============ */
.scenarios {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.scenario {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-card);
  transition: transform var(--t-med), box-shadow var(--t-med);
  display: flex;
  flex-direction: column;
}
.scenario:hover { transform: translateY(-8px); box-shadow: var(--sh-hover); }
.scenario__art {
  position: relative;
  height: 172px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.scenario__art::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.12), #ffffff 97%);
}
.scenario__img, .scenario__badge { position: relative; z-index: 1; }
.sc-sun { width: 120px; animation: sun-spin 26s linear infinite; filter: drop-shadow(0 6px 14px rgba(255, 210, 62, .35)); }
.sc-mosq { width: 130px; animation: mosq-hover 6s ease-in-out infinite; }
.sc-nettle { width: 110px; transform-origin: 50% 100%; animation: leaf-sway 4.5s ease-in-out infinite alternate; }
.sc-aptechka { width: 110px; transform-origin: 50% 100%; animation: leaf-sway 4.5s ease-in-out infinite alternate; }
.sc-beach { width: 200px; transform-origin: 50% 100%; animation: leaf-sway 4.5s ease-in-out infinite alternate; }
.sc-dacha { width: 200px; transform-origin: 50% 100%; animation: leaf-sway 4.5s ease-in-out infinite alternate; }
.scenario__badge {
  width: 88px; height: 88px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: #fff;
  border-radius: var(--r-full);
  box-shadow: var(--sh-card);
  transition: transform var(--t-med);
}
.scenario__badge svg { width: 100%; height: 100%; }
.scenario:hover .scenario__badge { transform: scale(1.08) rotate(-4deg); }
.scenario__body { padding: 20px 26px 28px; }
.scenario h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}
.scenario p { color: var(--muted); font-size: .95rem; }

/* ============ FAQ accordion ============ */
.accordion { display: flex; flex-direction: column; gap: 14px; }
.accordion__item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--sh-card);
  overflow: hidden;
  transition: box-shadow var(--t-med), border-color var(--t-med);
}
.accordion__item.is-open {
  box-shadow: var(--sh-hover);
  border-color: var(--sky);
}
.accordion__trigger {
  width: 100%;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--navy);
  text-align: left;
  transition: color var(--t-fast);
  touch-action: manipulation;
}
.accordion__trigger:hover { color: var(--primary-deep); }
.accordion__chevron {
  width: 22px; height: 22px;
  flex-shrink: 0;
  color: var(--primary);
  transition: transform .3s var(--ease-bounce);
}
.accordion__item.is-open .accordion__chevron { transform: rotate(180deg); }
.accordion__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .32s var(--ease-out);
}
.accordion__content { overflow: hidden; }
.accordion__item.is-open .accordion__body { grid-template-rows: 1fr; }
.accordion__content p {
  padding: 0 24px 20px;
  color: var(--muted);
  font-size: .97rem;
}

/* ============ Where to buy ============ */
.buy-banner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: clamp(22px, 3vw, 40px);
  box-shadow: var(--sh-card);
  overflow: hidden;
  position: relative;
}
.buy-banner .section-lead { margin-bottom: 0; }
.buy-banner__art {
  position: relative;
  min-height: 260px;
}
.buy-banner__wash {
  position: absolute;
  top: -18%;
  right: -12%;
  left: auto;
  bottom: auto;
  width: 62%;
  height: auto;
  object-fit: contain;
  opacity: .9;
}
.buy-banner__tube {
  position: absolute;
  width: min(100%, 480px);
  right: 0; top: 42%;
  transform: translateY(-50%);
  filter: drop-shadow(0 18px 36px rgba(28, 70, 147, .22));
  animation: tube-float 7s ease-in-out infinite;
}

.pharm-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 36px;
}
.pharm-gallery__item {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 8 / 5;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 10px 18px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .95rem;
  color: var(--navy);
  transition: transform var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast);
}
.pharm-gallery__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-hover);
  border-color: var(--sky);
}

/* ============ Footer ============ */
.footer {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #c8d4e5;
  padding: 56px 0 28px;
}
.footer__disclaimer {
  background: rgba(255, 210, 62, .1);
  border: 1px solid rgba(255, 210, 62, .28);
  color: #ffe28a;
  border-radius: var(--r-md);
  padding: 14px 20px;
  text-align: center;
  margin-bottom: 36px;
  font-size: .92rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.footer__brand {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 10px;
}
.footer__muted { color: #aebfda; font-size: .9rem; margin-top: 8px; }
.footer h4 { color: #fff; font-size: .95rem; margin-bottom: 14px; }
.footer__grid a {
  display: inline-block;
  font-size: .92rem;
  padding: 6px 0;
  color: #c8d4e5;
  transition: color var(--t-fast);
}
.footer__grid a:hover { color: #fff; }

/* ============ Floating controls ============ */
.fab {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: var(--z-fab);
  background: linear-gradient(160deg, var(--primary), var(--primary-deep));
  color: #fff;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  padding: 14px 26px;
  border-radius: var(--r-full);
  font-weight: 700;
  box-shadow: var(--sh-cta);
  opacity: 0;
  transform: translateY(20px) scale(.9);
  pointer-events: none;
  transition: opacity .3s, transform .35s var(--ease-bounce);
}
.fab.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.fab__ring {
  position: absolute;
  inset: -4px;
  border: 2px solid var(--primary);
  border-radius: var(--r-full);
  opacity: 0;
  animation: pulse-ring 2s ease-out infinite;
}

.to-top {
  position: fixed;
  bottom: 24px; left: 24px;
  z-index: var(--z-fab);
  width: 50px; height: 50px;
  border-radius: var(--r-full);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(6px);
  color: var(--navy);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  box-shadow: var(--sh-card);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity .3s, transform .35s var(--ease-bounce), box-shadow var(--t-med);
}
.to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.to-top:hover { box-shadow: var(--sh-hover); }
.to-top svg { width: 100%; height: 100%; }

/* ============ Entrance animations ============ */
.rise {
  opacity: 0;
  transform: translateY(26px);
  animation: rise .7s var(--ease-out) forwards;
  animation-delay: calc(var(--d, 0) * 110ms);
}
@keyframes rise { to { opacity: 1; transform: none; } }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }
[data-stagger-item] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .5s ease, transform .5s var(--ease-out);
}
html.js-load-error .reveal,
html.js-load-error [data-stagger-item] {
  opacity: 1 !important;
  transform: none !important;
}
[data-stagger-item].is-visible { opacity: 1; transform: none; }

/* ============ Keyframes ============ */
@keyframes sun-spin { to { transform: rotate(360deg); } }
@keyframes mosq-fly {
  0%   { transform: translate(0, 0) rotate(-6deg); }
  20%  { transform: translate(-40px, 30px) rotate(8deg); }
  40%  { transform: translate(20px, 50px) rotate(-4deg); }
  60%  { transform: translate(50px, 20px) rotate(10deg); }
  80%  { transform: translate(20px, -10px) rotate(-8deg); }
  100% { transform: translate(0, 0) rotate(-6deg); }
}
@keyframes mosq-flyaway {
  to { transform: translate(700px, -300px) rotate(40deg) scale(.4); opacity: 0; }
}
@keyframes mosq-hover {
  0%, 100% { transform: translate(0, 0) rotate(-4deg); }
  50%      { transform: translate(12px, -6px) rotate(6deg); }
}
@keyframes cloud-drift {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(100vw + 240px)); }
}
@keyframes leaf-sway {
  from { transform: rotate(-4deg); }
  to   { transform: rotate(5deg); }
}
@keyframes tube-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
@keyframes wiggle {
  0%, 100% { transform: rotate(0); }
  25% { transform: rotate(-8deg); }
  50% { transform: rotate(6deg); }
  75% { transform: rotate(-4deg); }
}
@keyframes pulse-ring {
  0%   { transform: scale(1);   opacity: .6; }
  100% { transform: scale(1.4); opacity: 0; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============ Media queries ============ */
@media (max-width: 1100px) {
  .hero__inner { grid-template-columns: 1fr; gap: 12px; }
  .hero__art { min-height: 440px; max-width: 620px; margin: 0 auto; width: 100%; }
  .hero__stats { justify-content: flex-start; }
  .about-grid { grid-template-columns: 1fr; }
  .about-art { max-width: 560px; margin: 0 auto; width: 100%; }
  .sticker-grid { grid-template-columns: repeat(3, 1fr); }
  .scenarios { grid-template-columns: repeat(2, 1fr); }
  .steps-path { display: none; }
  .buy-banner { grid-template-columns: 1fr; }
  .buy-banner__art { min-height: 220px; }
  .buy-banner__tube { position: relative; top: auto; transform: none; margin: 0 auto; }
  .buy-banner__wash { top: -10%; right: -8%; width: 70%; }
  .pharm-gallery { grid-template-columns: repeat(4, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  html { scroll-padding-top: 76px; }
  .nav, .header__cta { display: none; }
  .burger { display: flex; }
  .nav.is-open {
    display: flex;
    position: fixed;
    inset: 68px 0 0 0;
    background: #fff;
    flex-direction: column;
    padding: 28px 24px;
    gap: 6px;
    z-index: 40;
    font-size: 1.15rem;
  }
  .nav.is-open a { padding: 14px 16px; border-radius: var(--r-md); }
  .nav.is-open a.nav__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    padding: 16px;
    border-radius: var(--r-full);
    background: linear-gradient(160deg, var(--primary-deep) 0%, var(--navy) 100%);
    color: #fff;
    font-weight: 800;
  }
  .hero { padding-top: 18px; padding-bottom: 32px; }
  .hero__art { min-height: 340px; }
  .hero__stats { gap: 24px; flex-wrap: wrap; }
  .sun--hero { width: 110px; }
  .mosquito--hero { width: 96px; }
  .nettle--hero { width: 120px; bottom: 26%; }
  .tube--hero { width: min(96%, 420px); right: 0; bottom: -28px; }
  .perks { grid-template-columns: 1fr; }
  .sticker-grid { grid-template-columns: repeat(2, 1fr); }
  /* мазок → вертикальная пунктирная нить слева */
  .mech-spine, .mech-flow__sun, .mech-flow__nettle { display: none; }
  .mech-flow { gap: 40px; padding-top: 16px; }
  .mech-flow::before {
    content: '';
    position: absolute;
    top: 8px; bottom: 8px; left: 24px;
    border-left: 2px dashed var(--sky);
  }
  .mech-station { grid-template-columns: 1fr; min-height: 0; row-gap: 18px; }
  .mech-station:nth-of-type(n) .mech-station__art,
  .mech-station:nth-of-type(n) .mech-station__body {
    grid-column: 1; grid-row: auto; justify-self: start;
  }
  .mech-station__art { width: 170px; margin-left: 52px; }
  .mech-station__body { margin-left: 52px; max-width: none; }
  .mech-station__num { font-size: 2.6rem; top: -14px; left: -10px; }
  .mech-station::after {
    left: 24px; top: 84px;
    transform: translate(-50%, 0);
    width: 13px; height: 13px;
    box-shadow: 0 0 0 6px color-mix(in srgb, var(--primary) 16%, transparent);
  }
  .steps { grid-template-columns: 1fr 1fr; gap: 34px 14px; }
  .flow-step__num { width: 88px; height: 88px; padding: 14px; }
  .pharm-gallery { grid-template-columns: repeat(3, 1fr); }
  .scenarios { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 24px; }
  .fab { padding: 12px 20px; font-size: .9rem; min-height: 46px; }
  .to-top { width: 46px; height: 46px; bottom: 22px; }
}
@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .header__inner { gap: 10px; }
  .lang-switch__opt { padding: 5px 9px; font-size: .74rem; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__bullets li { font-size: .96rem; }
  .hero__stats dt { font-size: 1.4rem; }
  .sticker-grid { grid-template-columns: 1fr 1fr; gap: 26px 12px; }
  .sticker__blob { width: 84px; height: 84px; }
  .pharm-gallery { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .pharm-gallery__item { font-size: .8rem; padding: 8px 10px; }
  .buy-banner__wash { width: 85%; top: -6%; right: -10%; }
  /* таймлайн — вертикально */
  .tl-track { flex-direction: column; align-items: flex-start; gap: 30px; max-width: 420px; }
  .tl-track::before { top: 10px; bottom: 10px; left: 9px; right: auto; border-top: none; border-left: 2px dashed var(--sky); }
  .tl-node { flex-direction: row; align-items: flex-start; gap: 16px; text-align: left; }
  .tl-node__dot { margin: 0; flex-shrink: 0; }
  .tl-node > div { display: flex; flex-direction: column; }
  .tl-node p { max-width: none; }
  .tl-footnote { text-align: left; }
  .steps { grid-template-columns: 1fr; gap: 34px; }
  .flow-step__num { width: 84px; height: 84px; padding: 13px; }
  .ticker__item { font-size: .92rem; }
  .accordion__trigger { padding: 16px 18px; font-size: .95rem; }
  .accordion__content p { padding: 0 18px 16px; }
}

/* ============ Reduced motion ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  html { scroll-behavior: auto; }
  .rise { animation: none; opacity: 1; transform: none; }
  .ticker__track { animation: none; flex-wrap: wrap; width: auto; }
  .ticker {
    -webkit-mask-image: none;
            mask-image: none;
  }
  .steps-path path { stroke-dashoffset: 0; transition: none; }
  .spine-pen { opacity: .5; }
}
