/* styles.css — дизайн-система лендинга «Незабудка» (светлая · жемчуг). */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@600;700&display=swap');

:root {
  --cream:     #F1EDE4;
  --pearl:     #F5F5F4;
  --paper:     #FFFFFF;
  --ink:       #2B2D40;
  --ink2:      #565872;
  --muted:     #918FA4;
  --line:      #EBE6DB;
  --line-cool: #E7ECF8;

  --blue:      #7B98E8;
  --blue-deep: #4E6FD4;
  --blue-soft: #E7ECFB;
  --blue-ink:  #2E3F86;

  --gold:      #F3C13C;
  --gold-deep: #8A6212;
  --gold-soft: #FBEDC6;
  --gold-ink:  #6A4A06;

  --lav:       #C7B8E6;
  --lav-deep:  #5A4194;
  --lav-soft:  #ECE4F8;

  --pink:      #E8C4D6;
  --rose-deep: #A65583;

  --done-soft: #DCE8DB;
  --done-deep: #3F6B43;

  --chip-bg:   #F4F1EA;
  --remind-bg: rgba(78, 111, 212, 0.10);

  --twilight:  #14151E;
  --twilight2: #1E2030;

  --container: 1180px;
  --radius:    22px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  font-family: 'Manrope', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--pearl);
  color: var(--ink);
  line-height: 1.5;
  overflow-x: hidden;
}
img, svg { display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.eyebrow {
  font-size: 12px; font-weight: 800; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--blue-deep);
}
.eyebrow.on-blue { color: rgba(255,255,255,0.78); }
.eyebrow.on-dark { color: var(--blue); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border: none; border-radius: 15px; font-weight: 800; font-size: 16px;
  letter-spacing: -0.01em; padding: 15px 24px; transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-gold {
  background: radial-gradient(circle at 38% 30%, #F8D469 0%, var(--gold) 55%, #E0A91C 120%);
  color: var(--gold-ink); box-shadow: 0 14px 30px -12px rgba(214, 150, 18, 0.7);
}
.btn-gold:hover { box-shadow: 0 18px 38px -12px rgba(214, 150, 18, 0.85); transform: translateY(-2px); }
.btn-blue {
  background: var(--blue); color: #fff;
  box-shadow: 0 14px 30px -12px rgba(78, 111, 212, 0.6);
}
.btn-blue:hover { background: var(--blue-deep); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line); }
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--blue); color: var(--blue-deep); }
.btn-ghost-light { background: rgba(255,255,255,0.14); color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.4); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.24); }
.btn-sm { padding: 11px 18px; font-size: 14.5px; border-radius: 12px; }
.btn-lg { padding: 18px 30px; font-size: 17.5px; }

/* store button */
.btn-store {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--ink); color: #fff; border-radius: 15px; padding: 11px 20px;
  transition: transform .15s ease, box-shadow .2s ease;
  box-shadow: 0 14px 30px -16px rgba(43,45,64,0.7);
}
.btn-store:hover { transform: translateY(-2px); }
.btn-store .ic { width: 26px; height: 26px; flex-shrink: 0; }
.btn-store .tx { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.btn-store .tx small { font-size: 10.5px; font-weight: 600; opacity: 0.7; letter-spacing: 0.02em; }
.btn-store .tx b { font-size: 16px; font-weight: 800; letter-spacing: -0.01em; }

/* ── Brand lockup ────────────────────────────────────────── */
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand .mark {
  width: 40px; height: 40px; border-radius: 12px; flex-shrink: 0;
  background: var(--blue); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 18px -10px rgba(78,111,212,0.7);
}
.brand .mark [data-flower] { width: 64%; height: 64%; }
.brand .mark { overflow: hidden; }
.brand .mark img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; display: block; }
.brand.on-blue .mark { background: transparent; box-shadow: 0 8px 18px -10px rgba(0,0,0,0.5); }
.brand .wm { display: flex; flex-direction: column; line-height: 1; }
.brand .wm b { font-size: 19px; font-weight: 800; letter-spacing: -0.02em; }
.brand .wm small { font-size: 11px; font-weight: 600; color: var(--muted); margin-top: 3px; letter-spacing: -0.005em; }
.brand.on-blue .wm b, .brand.on-blue .wm small { color: #fff; }
.brand.on-blue .wm small { color: rgba(255,255,255,0.75); }
.brand.on-blue .mark { background: rgba(255,255,255,0.16); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.28); }

/* ── Nav ─────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(245,245,244,0.82); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav .row { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav .links { display: flex; align-items: center; gap: 30px; }
.nav .links a { font-size: 15px; font-weight: 700; color: var(--ink2); letter-spacing: -0.01em; transition: color .15s; white-space: nowrap; }
.nav .links a:hover { color: var(--blue-deep); }
.nav .right { display: flex; align-items: center; gap: 14px; }
.nav .burger { display: none; width: 42px; height: 42px; border-radius: 12px; background: var(--paper); border: 1px solid var(--line); align-items: center; justify-content: center; }

/* ── Section scaffolding ─────────────────────────────────── */
.section { padding: 96px 0; }
.section.tight { padding: 72px 0; }
.section-head { max-width: 680px; }
.section-head.center { margin: 0 auto; text-align: center; }
.section-head h2 {
  font-size: clamp(30px, 4vw, 46px); font-weight: 800; letter-spacing: -0.035em;
  line-height: 1.06; margin: 14px 0 0; text-wrap: balance;
}
.section-head p {
  font-size: 18px; line-height: 1.55; color: var(--ink2);
  margin-top: 16px; letter-spacing: -0.006em; text-wrap: pretty;
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background:
    radial-gradient(120% 90% at 12% 0%, #9CB2F0 0%, rgba(156,178,240,0) 55%),
    radial-gradient(120% 120% at 92% 8%, #6E8DE6 0%, rgba(110,141,230,0) 50%),
    linear-gradient(160deg, #7B98E8 0%, #5A78D9 60%, #4E6FD4 100%);
}
.hero .petal-strip { height: 5px; background: linear-gradient(90deg, #fff 0%, var(--lav) 30%, var(--pink) 55%, var(--gold) 100%); }
.hero .grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center;
  padding: 30px 0px;
}
.hero-copy .tagpill {
  align-self: flex-start; margin-bottom: 22px;
  display: inline-flex; align-items: center; gap: 9px; padding: 8px 15px 8px 9px;
  background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.28);
  border-radius: 999px; font-size: 13.5px; font-weight: 700; letter-spacing: -0.005em;
  backdrop-filter: blur(4px);
}
.hero-copy .tagpill .seed { width: 22px; height: 22px; border-radius: 7px; background: var(--gold); display: flex; align-items: center; justify-content: center; }
.hero-copy { align-self: stretch; display: flex; flex-direction: column; }
.hero-copy h1 {
  font-size: clamp(40px, 6vw, 70px); font-weight: 800; letter-spacing: -0.04em;
  line-height: 0.98; margin: 0; text-wrap: balance;
}
.hero-copy h1 .accent { color: var(--gold); }
.hero-copy .lead {
  font-size: clamp(17px, 2vw, 21px); line-height: 1.5; color: rgba(255,255,255,0.9); font-weight: 500;
  margin-top: 22px; max-width: 520px; letter-spacing: -0.008em; text-wrap: pretty;
}
.hero-copy .cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-copy .reassure { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 26px; font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.85); }
.hero-copy .reassure span { display: inline-flex; align-items: center; gap: 7px; }
.hero-copy .hero-adv {
  list-style: none; margin: auto 0 76px; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px 22px; max-width: 560px;
}
.hero-copy .hero-adv li { display: flex; align-items: flex-start; gap: 12px; }
.hero-copy .hero-adv .ai {
  flex-shrink: 0; width: 34px; height: 34px; border-radius: 10px;
  background: var(--gold); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 18px -10px rgba(214,150,18,0.9);
}
.hero-copy .hero-adv .at { display: flex; flex-direction: column; gap: 2px; padding-top: 1px; }
.hero-copy .hero-adv .at b { font-size: 15px; font-weight: 800; letter-spacing: -0.015em; color: #fff; line-height: 1.2; }
.hero-copy .hero-adv .at span { font-size: 13.5px; font-weight: 600; line-height: 1.35; color: rgba(255,255,255,0.82); letter-spacing: -0.005em; }
.hero-stage { display: flex; justify-content: center; position: relative; }

/* nudge toward the Далее button */
.hero-stage .nudge {
  position: absolute; bottom: -14px; left: -12px; z-index: 4;
  display: flex; flex-direction: column; align-items: flex-start; gap: 2px;
  color: rgba(255,255,255,0.72); pointer-events: none;
  animation: nudgeBob 2.4s ease-in-out infinite;
}
.hero-stage .nudge.gone { display: none; }
.hero-stage .nudge .nudge-word {
  font-family: 'Caveat', cursive; font-weight: 700; font-size: 42px;
  line-height: 0.9; letter-spacing: 0.01em; transform: rotate(-8deg) translate(-14px, 39px); margin-left: 0;
}
.hero-stage .nudge .nudge-arrow { display: block; transform: rotate(20deg) translate(-24px, 0px); }
@keyframes nudgeBob { 0%,100% { transform: translateX(0); } 50% { transform: translateX(6px); } }
@media (prefers-reduced-motion: reduce) { .hero-stage .nudge { animation: none; } }

/* floating chips around the phone */
.hero-stage .floatcard {
  position: absolute; background: #fff; color: var(--ink); border-radius: 16px;
  padding: 12px 14px; box-shadow: 0 26px 50px -22px rgba(31,35,53,0.5);
  display: flex; align-items: center; gap: 10px; z-index: 3;
}
.hero-stage .floatcard .ic { width: 36px; height: 36px; border-radius: 11px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-stage .floatcard .t b { display: block; font-size: 13.5px; font-weight: 800; letter-spacing: -0.01em; }
.hero-stage .floatcard .t span { font-size: 11.5px; color: var(--muted); font-weight: 600; }
.hero-stage .fc-1 { top: 60px; left: -6px; animation: floaty 5s ease-in-out infinite; }
.hero-stage .fc-2 { bottom: 96px; right: -10px; animation: floaty 5.6s ease-in-out infinite 0.6s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@media (prefers-reduced-motion: reduce) { .hero-stage .floatcard { animation: none; } }

/* ── Stat strip ──────────────────────────────────────────── */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; }
.stat b { display: block; font-size: clamp(28px, 3.4vw, 40px); font-weight: 800; letter-spacing: -0.03em; color: var(--blue-deep); }
.stat span { font-size: 14px; font-weight: 600; color: var(--ink2); letter-spacing: -0.005em; }

/* ── Steps (как это работает) ────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 56px; }
.step {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; position: relative; overflow: hidden;
}
.step .num {
  width: 44px; height: 44px; border-radius: 13px; background: var(--blue-soft); color: var(--blue-deep);
  font-size: 19px; font-weight: 800; display: flex; align-items: center; justify-content: center; letter-spacing: -0.02em;
}
.step h3 { font-size: 21px; font-weight: 800; letter-spacing: -0.02em; margin: 20px 0 8px; }
.step p { font-size: 15px; line-height: 1.5; color: var(--ink2); letter-spacing: -0.005em; text-wrap: pretty; }
.step .glyph { position: absolute; top: 22px; right: 22px; color: var(--blue); opacity: 0.9; }

/* ── Feature rows ────────────────────────────────────────── */
.feat { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.feat + .feat { margin-top: 100px; }
.feat.flip .feat-visual { order: -1; }
.feat-copy .tag {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 13px; border-radius: 999px;
  font-size: 13px; font-weight: 800; letter-spacing: 0.01em;
}
.feat-copy h3 { font-size: clamp(26px, 3vw, 36px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.08; margin: 18px 0 0; text-wrap: balance; }
.feat-copy p { font-size: 17px; line-height: 1.55; color: var(--ink2); margin-top: 14px; letter-spacing: -0.006em; text-wrap: pretty; }
.feat-copy .bullets { display: flex; flex-direction: column; gap: 13px; margin-top: 22px; }
.feat-copy .bullets li { list-style: none; display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; color: var(--ink); font-weight: 600; letter-spacing: -0.005em; }
.feat-copy .bullets .ck {
  width: 24px; height: 24px; border-radius: 8px; background: var(--done-soft); color: var(--done-deep);
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
}
.feat-visual { display: flex; justify-content: center; }

/* visual panel (rounded canvas behind UI snippets) */
.panel {
  width: 100%; border-radius: 26px; padding: 34px; position: relative; overflow: hidden;
  background: linear-gradient(165deg, #EEF3FE 0%, #DFE9FD 100%); border: 1px solid var(--line-cool);
}
.panel.gold { background: linear-gradient(165deg, #FCF3D7 0%, #F8E7B0 100%); border-color: var(--gold-soft); }
.panel.lav { background: linear-gradient(165deg, #F3EDFB 0%, #E8DDF6 100%); border-color: var(--lav-soft); }

/* status flow demo */
.flow { display: flex; flex-direction: column; gap: 12px; }
.flow .frow {
  background: #fff; border: 1px solid var(--line); border-radius: 15px; padding: 14px 15px;
  display: flex; align-items: center; gap: 12px; box-shadow: 0 16px 30px -24px rgba(31,35,53,0.4);
}
.flow .frow .av { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 12px; font-weight: 800; flex-shrink: 0; }
.flow .frow .ft { flex: 1; min-width: 0; }
.flow .frow .ft b { display: block; font-size: 14px; font-weight: 700; letter-spacing: -0.01em; color: var(--ink); }
.flow .frow .ft span { font-size: 12px; color: var(--muted); font-weight: 600; }
.sbadge { flex-shrink: 0; border-radius: 999px; padding: 6px 11px; font-size: 11.5px; font-weight: 800; white-space: nowrap; }
.sb-new { background: var(--blue-soft); color: var(--blue-deep); }
.sb-doing { background: var(--gold-soft); color: var(--gold-deep); }
.sb-post { background: var(--lav-soft); color: var(--lav-deep); }
.sb-done { background: var(--done-soft); color: var(--done-deep); }

/* repeat demo */
.repeat-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 20px; box-shadow: 0 20px 40px -26px rgba(31,35,53,0.4); }
.repeat-card .chiprow { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.repeat-card .rchip { padding: 8px 13px; border-radius: 11px; font-size: 13px; font-weight: 700; background: var(--remind-bg); color: var(--blue-deep); display: inline-flex; align-items: center; gap: 7px; }
.repeat-card .rchip.on { background: var(--blue); color: #fff; }

/* notes section uses dark twilight */
.twilight { background: var(--twilight); color: #fff; }
.twilight .section-head h2 { color: #fff; }
.twilight .section-head p { color: rgba(255,255,255,0.72); }

/* notes type legend */
.typelegend { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.typelegend .tl {
  display: inline-flex; align-items: center; gap: 8px; padding: 9px 14px; border-radius: 12px;
  font-size: 13.5px; font-weight: 800; letter-spacing: -0.005em;
}

/* ── Web/iOS callout ─────────────────────────────────────── */
.webcard {
  background: var(--paper); border: 1px solid var(--line); border-radius: 26px; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0; box-shadow: 0 30px 70px -50px rgba(45,50,90,0.5);
}
.webcard .wc-copy { padding: 48px; }
.webcard .wc-copy h3 { font-size: clamp(26px, 3vw, 34px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.08; }
.webcard .wc-copy p { font-size: 16.5px; line-height: 1.55; color: var(--ink2); margin-top: 14px; letter-spacing: -0.006em; }
.webcard .ioslist { display: flex; flex-direction: column; gap: 16px; margin-top: 26px; }
.webcard .ioslist .istep { display: flex; gap: 14px; align-items: flex-start; }
.webcard .ioslist .istep .n { width: 30px; height: 30px; border-radius: 9px; background: var(--ink); color: #fff; font-size: 14px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.webcard .ioslist .istep .it b { display: block; font-size: 15.5px; font-weight: 700; letter-spacing: -0.01em; }
.webcard .ioslist .istep .it span { font-size: 14px; color: var(--ink2); }
.webcard .wc-visual { background: linear-gradient(165deg, #EEF3FE 0%, #DCE6FB 100%); display: flex; align-items: center; justify-content: center; padding: 40px; }

/* ── Pricing cards ───────────────────────────────────────── */
.toggle {
  display: inline-flex; align-items: center; gap: 4px; padding: 5px;
  background: var(--paper); border: 1px solid var(--line); border-radius: 14px;
}
.toggle button {
  border: none; background: transparent; border-radius: 10px; padding: 10px 20px;
  font-size: 15px; font-weight: 700; color: var(--muted); letter-spacing: -0.01em;
  display: inline-flex; align-items: center; gap: 8px; transition: all .18s ease;
}
.toggle button.on { background: var(--blue); color: #fff; box-shadow: 0 8px 18px -10px rgba(78,111,212,0.7); }
.toggle button .save { font-size: 11px; font-weight: 800; padding: 2px 7px; border-radius: 6px; background: var(--done-soft); color: var(--done-deep); }
.toggle button.on .save { background: rgba(255,255,255,0.22); color: #fff; }

.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.plan {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; display: flex; flex-direction: column; position: relative;
}
.plan.featured { border: 2px solid var(--blue); box-shadow: 0 30px 60px -34px rgba(78,111,212,0.5); }
.plan .recommend {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--gold-ink); font-size: 11.5px; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase; padding: 5px 14px; border-radius: 999px; white-space: nowrap;
  box-shadow: 0 10px 20px -10px rgba(214,150,18,0.7);
}
.plan .pname { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; }
.plan .pdesc { font-size: 14px; color: var(--muted); font-weight: 600; margin-top: 5px; }
.plan .price { margin-top: 20px; display: flex; align-items: baseline; gap: 4px; }
.plan .price .num { font-size: 46px; font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
.plan .price .cur { font-size: 22px; font-weight: 700; color: var(--ink2); }
.plan .price .per { font-size: 15px; font-weight: 600; color: var(--muted); }
.plan .pricenote { font-size: 13px; font-weight: 600; color: var(--muted); margin-top: 8px; min-height: 18px; }
.plan .pcta { margin-top: 22px; }
.plan .pcta .btn { width: 100%; }
.plan .pdiv { height: 1px; background: var(--line); margin: 24px 0; }
.plan .plead { font-size: 13px; font-weight: 800; color: var(--ink); margin-bottom: 14px; }
.plan .pfeats { display: flex; flex-direction: column; list-style: none; margin-top: 2px; }
.plan .pfeats li { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 11px 0; font-size: 14.5px; letter-spacing: -0.005em; border-top: 1px solid var(--line); }
.plan .pfeats li:first-child { border-top: none; }
.plan .pfeats .fn { color: var(--ink2); font-weight: 600; line-height: 1.3; }
.plan .pfeats .fv { display: inline-flex; align-items: center; gap: 6px; color: var(--ink); font-weight: 800; white-space: nowrap; text-align: right; }
.plan .pfeats .fv .yes { color: var(--blue-deep); display: inline-flex; }
.plan .pfeats .fv.off { color: var(--muted); font-weight: 700; }
.plan .pfeats .fv.off .no { color: #C6BAD2; display: inline-flex; }
.plan .pfeats .fv .inf { font-size: 19px; line-height: 1; }

/* trust strip */
.trust {
  display: inline-flex; align-items: center; gap: 12px; background: var(--paper);
  border: 1px solid var(--line); border-radius: 14px; padding: 14px 18px;
}
.trust .sh { width: 38px; height: 38px; border-radius: 11px; background: var(--blue-soft); color: var(--blue-deep); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust b { font-size: 14.5px; font-weight: 700; letter-spacing: -0.005em; }
.trust span { display: block; font-size: 12.5px; color: var(--muted); font-weight: 600; margin-top: 2px; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq { max-width: 820px; margin: 48px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq details {
  background: var(--paper); border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
}
.faq summary {
  list-style: none; cursor: pointer; padding: 22px 24px; display: flex; align-items: center;
  justify-content: space-between; gap: 16px; font-size: 17px; font-weight: 700; letter-spacing: -0.015em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm { width: 26px; height: 26px; flex-shrink: 0; color: var(--blue-deep); transition: transform .2s ease; }
.faq details[open] summary .pm { transform: rotate(45deg); }
.faq .ans { padding: 0 24px 22px; font-size: 15.5px; line-height: 1.6; color: var(--ink2); letter-spacing: -0.005em; }

/* ── CTA band ────────────────────────────────────────────── */
.ctaband {
  position: relative; overflow: hidden; color: #fff; border-radius: 32px;
  padding: 64px 56px; text-align: center;
  background: radial-gradient(120% 140% at 15% 0%, #95ABEE 0%, rgba(149,171,238,0) 55%), linear-gradient(150deg, #7B98E8 0%, #4E6FD4 100%);
}
.ctaband h2 { font-size: clamp(30px, 4vw, 48px); font-weight: 800; letter-spacing: -0.035em; line-height: 1.05; text-wrap: balance; }
.ctaband p { font-size: 18px; color: rgba(255,255,255,0.88); margin-top: 16px; max-width: 560px; margin-inline: auto; text-wrap: pretty; }
.ctaband .cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 32px; }
.ctaband .flowerbg { position: absolute; right: -40px; bottom: -60px; width: 300px; height: 300px; opacity: 0.14; }

/* ── Forms (contacts) ────────────────────────────────────── */
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 14px; font-weight: 700; letter-spacing: -0.005em; }
.field .req { color: var(--rose-deep); }
.input, .textarea, .select {
  width: 100%; font-family: inherit; font-size: 15.5px; color: var(--ink);
  background: var(--paper); border: 1.5px solid var(--line); border-radius: 13px;
  padding: 14px 16px; transition: border-color .15s ease, box-shadow .15s ease;
}
.input::placeholder, .textarea::placeholder { color: var(--muted); }
.input:focus, .textarea:focus, .select:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px var(--blue-soft); }
.textarea { resize: vertical; min-height: 130px; line-height: 1.5; }
.select { -webkit-appearance: none; appearance: none; line-height: 1.5; height: auto; box-sizing: border-box; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%238a8da3' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 42px; }

/* ── Footer ──────────────────────────────────────────────── */
.footer { background: var(--twilight); color: rgba(255,255,255,0.7); padding: 64px 0 40px; }
.footer .top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.footer .fcol h4 { font-size: 12px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.footer .fcol a { display: block; font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.78); padding: 6px 0; transition: color .15s; }
.footer .fcol a:hover { color: #fff; }
.footer .fcol a.brand { display: inline-flex; align-items: center; gap: 11px; }
.footer .brand .wm { display: flex; }
.footer .fabout { max-width: 300px; font-size: 14.5px; line-height: 1.55; margin-top: 16px; }
.footer .fbottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 48px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 13.5px; }

/* ── Page hero (inner pages) ─────────────────────────────── */
.pagehero { background: linear-gradient(165deg, #EEF3FE 0%, #E2EAFC 100%); border-bottom: 1px solid var(--line-cool); }
.pagehero .inner { padding: 64px 0 56px; text-align: center; }
.pagehero h1 { font-size: clamp(34px, 5vw, 54px); font-weight: 800; letter-spacing: -0.04em; line-height: 1.04; margin-top: 14px; text-wrap: balance; }
.pagehero p { font-size: 18.5px; line-height: 1.55; color: var(--ink2); margin: 16px auto 0; max-width: 600px; text-wrap: pretty; }

/* ── Join / установка ────────────────────────────────────── */
.joinwrap { max-width: 720px; margin: 0 auto; }
.jointabs { display: flex; justify-content: center; }
.joinpanel { display: none; margin-top: 34px; }
.joinpanel.on { display: block; }
.joincard {
  background: var(--paper); border: 1px solid var(--line); border-radius: 26px;
  padding: 46px 44px; box-shadow: 0 30px 70px -50px rgba(45,50,90,0.5); text-align: center;
}
.joincard .appicon { width: 88px; height: 88px; border-radius: 22px; margin: 0 auto 22px; overflow: hidden; box-shadow: 0 20px 44px -20px rgba(78,111,212,0.7); }
.joincard .appicon img { width: 100%; height: 100%; }
.joincard .badge-os { display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue-deep); margin-bottom: 10px; }
.joincard h2 { font-size: clamp(24px, 3vw, 32px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.08; }
.joincard > p { font-size: 16.5px; line-height: 1.55; color: var(--ink2); margin: 14px auto 0; max-width: 500px; text-wrap: pretty; }
.joincard .joinsteps { text-align: left; max-width: 460px; margin: 32px auto 0; display: flex; flex-direction: column; gap: 16px; }
.joincard .joinsteps .istep { display: flex; gap: 14px; align-items: flex-start; }
.joincard .joinsteps .istep .n { width: 30px; height: 30px; border-radius: 9px; background: var(--ink); color: #fff; font-size: 14px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.joincard .joinsteps .istep .it b { display: block; font-size: 15.5px; font-weight: 700; letter-spacing: -0.01em; }
.joincard .joinsteps .istep .it span { font-size: 14px; color: var(--ink2); line-height: 1.45; }
.joincard .joincta { margin-top: 32px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.joincard .joinhint { margin-top: 18px; font-size: 13.5px; color: var(--muted); font-weight: 600; }
.joincard .urlpill {
  display: inline-flex; align-items: center; gap: 9px; margin: 26px auto 0;
  background: var(--pearl); border: 1px solid var(--line); border-radius: 12px;
  padding: 11px 16px; font-size: 15px; font-weight: 800; letter-spacing: -0.01em; color: var(--ink);
}
.joincard .urlpill svg { color: var(--blue-deep); }
@media (max-width: 560px) {
  .joincard { padding: 36px 24px; }
  .joincard .joincta .btn, .joincard .joincta .btn-store { width: 100%; }
  .jointabs .toggle button { padding: 10px 14px; font-size: 14px; }
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 960px) {
  .nav .links { display: none; }
  .nav .burger { display: flex; }
  .hero .grid { grid-template-columns: 1fr; gap: 48px; padding: 56px 0 70px; }
  .hero-stage .floatcard { display: none; }
  .hero-stage .nudge { display: none; }
  .feat, .feat.flip { grid-template-columns: 1fr; gap: 32px; }
  .feat.flip .feat-visual { order: 0; }
  .feat + .feat { margin-top: 64px; }
  .steps { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .webcard { grid-template-columns: 1fr; }
  .webcard .wc-copy { padding: 36px 28px; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
  .footer .top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .section { padding: 72px 0; }
}
@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .hero-copy .cta { flex-direction: column; align-items: stretch; }
  .hero-copy .hero-adv { grid-template-columns: 1fr; }
  .hero-copy .cta .btn, .hero-copy .cta .btn-store { width: 100%; }
  .ctaband { padding: 48px 24px; border-radius: 24px; }
  .footer .top { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
}

/* mobile nav drawer */
.drawer { position: fixed; inset: 0; z-index: 60; display: none; }
.drawer.open { display: block; }
.drawer .scrim { position: absolute; inset: 0; background: rgba(20,21,30,0.4); backdrop-filter: blur(2px); }
.drawer .sheet { position: absolute; top: 0; right: 0; bottom: 0; width: min(82vw, 340px); background: var(--paper); padding: 24px; display: flex; flex-direction: column; gap: 6px; box-shadow: -20px 0 60px -30px rgba(0,0,0,0.5); }
.drawer .sheet .close { align-self: flex-end; width: 42px; height: 42px; border-radius: 12px; background: var(--pearl); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; margin-bottom: 8px; }
.drawer .sheet a { padding: 14px 12px; border-radius: 12px; font-size: 17px; font-weight: 700; color: var(--ink); }
.drawer .sheet a:hover { background: var(--pearl); }
.drawer .sheet .btn { margin-top: 12px; }
