/* Лендинг maps.kudnumol.com — стили (design/landing.md).
   Скелет и размеры — по образцу лендингов Алексея (~/Claude/Projects/Турецкий-2/public/landing.css),
   цвета свои, из иконки G2: #4b3f80 основной, #6a5cb3 светлее, фон кремовый #f6f1e7.
   Один файл на все три языка и на страницы «Конфиденциальность». */
:root {
  --ink: #1c2127; --muted: #6b7280; --accent: #4b3f80; --accent-light: #6a5cb3;
  --soft: #ece8f6; --bg: #f6f1e7; --border: #e5e0d6; --card: #ffffff;
}
* { box-sizing: border-box }
body {
  margin: 0; background: var(--bg); color: var(--ink); line-height: 1.5;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.wrap { max-width: 760px; margin: 0 auto; padding: 20px 20px 60px }

/* переключатель языка — первый блок */
.lang-block { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 8px 0 4px }
.lang-caption { font-size: 12px; color: var(--muted) }
.lang-switch { display: inline-flex; background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 3px; gap: 3px }
.lang-btn {
  border-radius: 9px; padding: 8px 16px; font-size: 14px; font-weight: 600;
  color: var(--ink); text-decoration: none;
}
.lang-btn.active { background: var(--accent); color: #fff; box-shadow: 0 2px 8px rgba(75, 63, 128, .3) }
.lang-btn:not(.active):hover { background: var(--soft) }

.hero { text-align: center; padding: 26px 0 20px }
.logo { width: 96px; height: 96px; border-radius: 22px; margin: 0 auto 18px; display: block; box-shadow: 0 8px 24px rgba(75, 63, 128, .28) }
h1 { font-size: 30px; margin: 0 0 8px }
.tagline { color: var(--muted); font-size: 17px; margin: 0 0 26px }
.cta { display: flex; flex-direction: column; align-items: center; gap: 12px; margin: 0 0 30px }
.btn { display: inline-block; padding: 14px 28px; border-radius: 12px; font-size: 16px; font-weight: 600; text-decoration: none; border: none; font-family: inherit }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 4px 14px rgba(75, 63, 128, .3) }
.btn-primary:hover { background: var(--accent-light) }

/* «На телефоне»: пока приложений нет — плашки с инструкцией вместо кнопок сторов */
.phone-title { font-size: 18px; text-align: center; margin: 0 0 14px }
.downloads { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap }
.dl { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 16px; width: 340px; max-width: 100%; text-align: left }
.dl h3 { margin: 0 0 8px; font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: .04em }
.dl-title { display: block; margin-bottom: 6px; font-size: 15px }
.dl-text { margin: 0; font-size: 14px; color: var(--muted) }
.dl-note { margin: 8px 0 0; font-size: 11px; line-height: 1.4; color: var(--muted) }

.features { margin: 40px 0 0 }
.features h2 { font-size: 18px; text-align: center; margin: 0 0 16px }
.grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px }
.feat { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 16px }
.feat b { display: block; margin-bottom: 4px }
.feat span { color: var(--muted); font-size: 14px }

footer { text-align: center; color: var(--muted); font-size: 13px; margin-top: 44px }
footer a { color: var(--accent); text-decoration: none; font-weight: 600 }
footer a:hover { text-decoration: underline }
.foot-data { display: block }
.foot-note { display: block; margin-top: 6px }

/* страница «Конфиденциальность» */
.page-head { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 8px 0 }
.page-head a { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); text-decoration: none; font-weight: 600 }
.page-head img { width: 32px; height: 32px; border-radius: 8px }
.page { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 22px; margin: 18px 0 0 }
.page h1 { font-size: 22px; margin: 0 0 12px }
.page p { margin: 0; font-size: 15px }

@media (max-width: 520px) {
  .grid { grid-template-columns: 1fr }
  h1 { font-size: 26px }
  .dl { width: 100% }
  .logo { width: 84px; height: 84px; margin-bottom: 14px }
  .hero { padding: 16px 0 12px }
  .tagline { font-size: 16px; margin-bottom: 18px }
}
