/* GPX Navigator — shared site stylesheet */

:root {
  --bg: #F4F7FB;
  --white: #fff;
  --border: #D0D9E2;
  --text: #1A2332;
  --text-mid: #4A5568;
  --text-muted: #7A8A9A;
  --text-faint: #95A2B0;
  --blue: #1C4480;
  --blue-hover: #163567;
  --blue-bg: #EAF0F8;
  --green: #2E7D5B;
  --green-bg: #E4F0EA;
  --amber: #E8A33D;
  --amber-bg: #FBF0DC;
  --amber-text: #B77A1C;
  --navy: #1A2332;
  --navy-dark: #0F1822;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  color: var(--text);
}

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-hover); text-decoration: underline; }

img, svg { display: block; max-width: 100%; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.wrap--narrow { max-width: 820px; }

/* ---------- Nav ---------- */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(1.2) blur(8px);
  border-bottom: 1px solid var(--border);
}
.site-nav__inner {
  max-width: 1200px; margin: 0 auto; padding: 12px 32px;
  display: flex; align-items: center; gap: 24px; flex-wrap: nowrap;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; flex: none; }
.brand:hover { text-decoration: none; }
.brand__mark { width: 32px; height: 32px; border-radius: 7px; overflow: hidden; border: 1px solid var(--border); flex: none; display: block; }
.brand__name { font: 700 18px/1 "IBM Plex Sans"; letter-spacing: -.01em; color: var(--text); white-space: nowrap; }

.nav-links { display: flex; gap: 20px; align-items: center; font: 500 14px "IBM Plex Sans"; }
.nav-links a { color: var(--text-mid); text-decoration: none; }
.nav-links a:hover { color: var(--text); text-decoration: none; }

.nav-spacer { flex: 1; }

.nav-store { display: flex; gap: 10px; flex: none; }

.nav-burger {
  display: none; flex: none; width: 38px; height: 38px; border-radius: 7px;
  border: 1px solid var(--border); background: #fff; align-items: center; justify-content: center;
  cursor: pointer; padding: 0;
}
.nav-burger svg { display: block; }

.nav-mobile-panel { display: none; }

/* ---------- Language switcher ---------- */
.lang-switch { position: relative; flex: none; }
.lang-switch__btn {
  display: inline-flex; align-items: center; gap: 7px; padding: 7px 12px; border-radius: 6px;
  background: #fff; border: 1px solid var(--border); color: var(--text-mid);
  font: 500 13px/1 "IBM Plex Sans"; cursor: pointer; white-space: nowrap;
}
.lang-switch__btn:hover { background: var(--bg); color: var(--text); }
.lang-switch__menu {
  position: absolute; top: 42px; right: 0; width: 220px; background: #fff; border: 1px solid var(--border);
  border-radius: 10px; box-shadow: 0 8px 24px rgba(28,68,128,.16); padding: 6px; z-index: 120;
  max-height: 340px; overflow: auto; display: none;
}
.lang-switch.open .lang-switch__menu { display: block; }
.lang-switch__item {
  display: flex; width: 100%; align-items: center; gap: 10px; padding: 9px 10px; border: 0;
  border-radius: 6px; background: transparent; cursor: pointer; text-align: left;
  font: 400 14px "IBM Plex Sans"; color: var(--text); text-decoration: none;
}
.lang-switch__item:hover { background: var(--bg); text-decoration: none; }
.lang-switch__item-code { font: 500 10px "IBM Plex Mono"; color: var(--text-muted); width: 22px; flex: none; }
.lang-switch__item-name { flex: 1; }
.lang-switch__item svg { flex: none; }

/* ---------- Store badges ---------- */
.store-badge {
  display: inline-flex; align-items: center; gap: 6px; padding: 7px 14px; border-radius: 6px;
  background: #fff; border: 1px solid var(--border); color: var(--text); font: 500 13px/1 "IBM Plex Sans";
  text-decoration: none; white-space: nowrap;
}
.store-badge svg { flex: none; }
.store-badge--google { background: var(--blue); border-color: var(--blue); color: #fff; }
.store-badge--google:hover { background: var(--blue-hover); border-color: var(--blue-hover); text-decoration: none; }
.store-badge:hover { text-decoration: none; }

.store-cta {
  display: inline-flex; align-items: center; gap: 11px; padding: 13px 22px 13px 18px; border-radius: 8px;
  background: var(--navy); color: #fff; text-decoration: none; transition: .12s cubic-bezier(.2,.8,.2,1);
}
.store-cta:hover { background: var(--navy-dark); text-decoration: none; }
.store-cta--light { background: #fff; color: var(--blue); }
.store-cta--light:hover { background: var(--blue-bg); }
.store-cta--outline { background: transparent; border: 1px solid rgba(255,255,255,.45); color: #fff; }
.store-cta--outline:hover { background: rgba(255,255,255,.1); }
.store-cta__icon { flex: none; }
.store-cta__text { display: block; }
.store-cta__eyebrow { display: block; font: 400 10px/1.2 "IBM Plex Sans"; color: rgba(255,255,255,.7); }
.store-cta--light .store-cta__eyebrow { color: rgba(28,68,128,.7); }
.store-cta__title { display: block; font: 600 16px/1.2 "IBM Plex Sans"; }

/* ---------- Header / hero ---------- */
.hero {
  background: linear-gradient(180deg,#fff 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
  padding: 56px 0 48px;
}
.hero__top {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(320px,1fr)); gap: 40px; align-items: center;
}
.badge-row { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; margin-bottom: 20px; }
.badge {
  display: inline-flex; align-items: center; gap: 6px; font: 600 12px/1 "IBM Plex Sans";
  text-transform: uppercase; letter-spacing: .06em; padding: 7px 12px; border-radius: 999px;
}
.badge--free { font-weight: 700; color: #fff; background: var(--green); }
.badge--audience { color: var(--blue); background: var(--blue-bg); }

.hero h1 {
  font: 700 clamp(32px, 5.2vw, 50px)/1.08 "IBM Plex Sans"; letter-spacing: -.02em; color: var(--text);
  margin: 0 0 18px;
}
.hero h1 .green { color: var(--green); }
.hero__desc { font: 400 18px/1.55 "IBM Plex Sans"; color: var(--text-mid); margin: 0 0 28px; max-width: 520px; }

.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.checklist { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 28px; font: 400 13px/1.4 "IBM Plex Sans"; color: var(--text-muted); padding: 0; list-style: none; }
.checklist li { display: flex; align-items: center; gap: 7px; }
.checklist svg { flex: none; }

.hero__visual { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.hero__caption { font: 400 11px/1.4 "IBM Plex Sans"; color: var(--text-faint); text-align: center; }

/* iPhone mock frame */
.phone-frame {
  width: 100%; max-width: 314px; aspect-ratio: 314/684;
  border-radius: 40px; overflow: hidden; position: relative; background: #000;
  box-shadow: 0 40px 80px rgba(0,0,0,.18), 0 0 0 1px rgba(0,0,0,.12);
  margin: 0 auto;
}
.phone-frame__island { position: absolute; top: 9px; left: 50%; transform: translateX(-50%); width: 34%; height: 9%; max-height: 30px; border-radius: 24px; background: #000; z-index: 50; }
.phone-frame__screen { position: absolute; inset: 0; background: var(--navy); display: flex; flex-direction: column; padding: 15% 0 8%; }
.phone-frame__statusrow { padding: 0 5.5%; display: flex; align-items: center; justify-content: space-between; }
.phone-frame__point-label { font: 500 11px/1 "IBM Plex Sans"; text-transform: uppercase; letter-spacing: .04em; color: rgba(255,255,255,.5); }
.phone-frame__gps { display: flex; align-items: center; gap: 6px; padding: 5px 10px; border-radius: 999px; background: rgba(255,255,255,.1); }
.phone-frame__gps-dot { width: 7px; height: 7px; border-radius: 4px; background: var(--green); display: block; }
.phone-frame__gps-text { font: 500 11px/1 "IBM Plex Sans"; color: rgba(255,255,255,.8); }
.phone-frame__distance { padding: 0 5.5%; margin-top: 4.5%; }
.phone-frame__distance-num { font: 700 clamp(30px,9vw,42px)/1 "IBM Plex Sans"; letter-spacing: -.02em; color: #fff; font-variant-numeric: tabular-nums; }
.phone-frame__distance-to { font: 400 13px/1.4 "IBM Plex Sans"; color: rgba(255,255,255,.72); margin-top: 6px; }
.phone-frame__map { margin: 5% 4% 0; border-radius: 12px; background: #243346; border: 1px solid rgba(255,255,255,.08); flex: 1; position: relative; overflow: hidden; }
.phone-frame__map svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.phone-frame__coords { position: absolute; left: 0; right: 0; bottom: 0; padding: 10px 12px; background: linear-gradient(180deg,rgba(26,35,50,0),rgba(26,35,50,.92) 60%); font: 400 11px/1.4 "IBM Plex Mono"; color: rgba(255,255,255,.66); }
.phone-frame__actions { display: flex; gap: 8px; padding: 4% 4% 0; }
.phone-frame__btn-reached { flex: 1; height: 44px; border-radius: 10px; background: #fff; display: flex; align-items: center; justify-content: center; gap: 7px; font: 600 13px "IBM Plex Sans"; color: var(--blue); }
.phone-frame__btn-skip { width: 30%; height: 44px; border-radius: 10px; background: rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; gap: 6px; font: 600 12px "IBM Plex Sans"; color: var(--amber); }
.phone-frame__home-indicator { position: absolute; bottom: 0; left: 0; right: 0; z-index: 60; height: 24px; display: flex; justify-content: center; align-items: flex-end; padding-bottom: 6px; }
.phone-frame__home-indicator span { width: 34%; height: 4px; border-radius: 100px; background: rgba(255,255,255,.7); }

/* Pricing callout bar */
.pricing-callout {
  margin-top: 36px; background: #fff; border: 1px solid var(--border); border-radius: 10px;
  padding: 20px 24px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  box-shadow: 0 1px 3px rgba(28,68,128,.08);
}
.pricing-callout__left { display: flex; align-items: center; gap: 14px; flex: 1 1 300px; min-width: 0; }
.pricing-callout__icon {
  width: 46px; height: 46px; border-radius: 999px; background: var(--green-bg); color: var(--green);
  display: inline-flex; align-items: center; justify-content: center; flex: none; font: 700 15px "IBM Plex Mono";
}
.pricing-callout__title { font: 600 17px/1.3 "IBM Plex Sans"; color: var(--text); }
.pricing-callout__desc { font: 400 14px/1.5 "IBM Plex Sans"; color: var(--text-mid); margin-top: 3px; }
.pricing-callout__cta {
  display: inline-flex; align-items: center; gap: 7px; padding: 11px 18px; border-radius: 6px;
  background: var(--blue); color: #fff; font: 500 14px/1 "IBM Plex Sans"; text-decoration: none; flex: none;
}
.pricing-callout__cta:hover { background: var(--blue-hover); text-decoration: none; }

/* CarPlay teaser (in hero) */
.carplay-teaser { margin-top: 40px; display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: 28px; align-items: center; }
.carplay-teaser__eyebrow { font: 500 11px/1 "IBM Plex Sans"; text-transform: uppercase; letter-spacing: .04em; color: var(--text-muted); margin-bottom: 10px; }
.carplay-teaser h2 { font: 600 clamp(20px,3vw,24px)/1.25 "IBM Plex Sans"; color: var(--text); margin: 0 0 12px; }
.carplay-teaser p { font: 400 15px/1.65 "IBM Plex Sans"; color: var(--text-mid); margin: 0; max-width: 420px; }
.carplay-teaser__visual { display: flex; flex-direction: column; gap: 10px; align-items: center; }

.carplay-mock { width: 100%; max-width: 520px; background: var(--navy-dark); border: 1px solid #2A3648; border-radius: 12px; padding: 10px; box-shadow: 0 12px 32px rgba(28,68,128,.18); }
.carplay-mock__inner { border-radius: 8px; overflow: hidden; background: var(--navy); display: flex; flex-direction: column; }
.carplay-mock__topbar { display: flex; align-items: center; justify-content: space-between; padding: 8px 12px; background: rgba(255,255,255,.05); }
.carplay-mock__brand { display: flex; align-items: center; gap: 8px; }
.carplay-mock__label { font: 500 10px/1 "IBM Plex Sans"; text-transform: uppercase; letter-spacing: .04em; color: rgba(255,255,255,.5); }
.carplay-mock__time { font: 500 11px/1 "IBM Plex Mono"; color: rgba(255,255,255,.5); }
.carplay-mock__body { display: flex; gap: 10px; padding: 10px; flex-wrap: wrap; }
.carplay-mock__map { flex: 1 1 200px; min-width: 0; border-radius: 8px; background: #243346; height: 186px; position: relative; overflow: hidden; }
.carplay-mock__map svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.carplay-mock__coords { position: absolute; left: 10px; bottom: 10px; padding: 5px 9px; border-radius: 6px; background: rgba(15,24,34,.78); font: 400 11px/1 "IBM Plex Mono"; color: rgba(255,255,255,.7); }
.carplay-mock__side { width: 150px; flex: 1 1 130px; display: flex; flex-direction: column; gap: 8px; }
.carplay-mock__next { border-radius: 8px; background: rgba(255,255,255,.08); padding: 10px 12px; }
.carplay-mock__next-label { font: 500 9px/1 "IBM Plex Sans"; text-transform: uppercase; letter-spacing: .04em; color: rgba(255,255,255,.5); }
.carplay-mock__next-dist { font: 700 26px/1.1 "IBM Plex Sans"; color: #fff; margin-top: 5px; font-variant-numeric: tabular-nums; }
.carplay-mock__next-loc { font: 400 12px/1.3 "IBM Plex Sans"; color: rgba(255,255,255,.6); margin-top: 4px; }
.carplay-mock__reached { border-radius: 8px; background: #fff; flex: 1; display: flex; align-items: center; justify-content: center; gap: 7px; font: 600 14px "IBM Plex Sans"; color: var(--blue); min-height: 40px; }
.carplay-mock__skip { border-radius: 8px; background: rgba(255,255,255,.12); flex: 1; display: flex; align-items: center; justify-content: center; gap: 7px; font: 600 14px "IBM Plex Sans"; color: var(--amber); min-height: 40px; }

/* ---------- Generic section headers ---------- */
.section { padding: 64px 0; }
.section--bordered { background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section__head { max-width: 680px; margin: 0 auto 40px; text-align: center; }
.section__head h2 { font: 700 clamp(26px,4vw,36px)/1.15 "IBM Plex Sans"; letter-spacing: -.015em; color: var(--text); margin: 0 0 14px; }
.section__head p { font: 400 16px/1.55 "IBM Plex Sans"; color: var(--text-mid); margin: 0; }

/* ---------- Feature cards ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 20px; }
.feature-card {
  background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 26px 22px;
  display: flex; flex-direction: column; gap: 12px; transition: .12s cubic-bezier(.2,.8,.2,1);
}
.feature-card:hover { box-shadow: 0 4px 12px rgba(28,68,128,.12); }
.feature-card__icon { width: 44px; height: 44px; border-radius: 8px; background: var(--blue-bg); color: var(--blue); display: inline-flex; align-items: center; justify-content: center; flex: none; }
.feature-card h3 { font: 600 17px/1.3 "IBM Plex Sans"; color: var(--text); margin: 0; }
.feature-card p { font: 400 14px/1.55 "IBM Plex Sans"; color: var(--text-mid); margin: 0; }

/* ---------- Steps ---------- */
.step-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 24px; }
.step { display: flex; flex-direction: column; gap: 14px; }
.step__num { width: 34px; height: 34px; border-radius: 999px; background: var(--blue); color: #fff; display: inline-flex; align-items: center; justify-content: center; font: 600 15px "IBM Plex Mono"; flex: none; }
.step h3 { font: 600 19px/1.3 "IBM Plex Sans"; color: var(--text); margin: 0; }
.step p { font: 400 14px/1.6 "IBM Plex Sans"; color: var(--text-mid); margin: 0; }

/* ---------- CarPlay section cards ---------- */
.carplay-cards { display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: 28px; }
.info-card { background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 28px; box-shadow: 0 1px 3px rgba(28,68,128,.08); display: flex; flex-direction: column; gap: 18px; }
.eyebrow-pill { align-self: flex-start; font: 600 12px/1 "IBM Plex Sans"; text-transform: uppercase; letter-spacing: .06em; color: var(--blue); background: var(--blue-bg); padding: 7px 12px; border-radius: 999px; }
.info-card h3 { font: 600 21px/1.25 "IBM Plex Sans"; color: var(--text); margin: 0; }
.info-card p { font: 400 14px/1.6 "IBM Plex Sans"; color: var(--text-mid); margin: 0; }
.check-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; font: 400 14px/1.5 "IBM Plex Sans"; color: var(--text); }
.check-list__mark { width: 20px; height: 20px; border-radius: 999px; background: var(--blue-bg); color: var(--blue); display: inline-flex; align-items: center; justify-content: center; flex: none; margin-top: 1px; }
.info-card__footnote { margin-top: auto; padding-top: 8px; border-top: 1px solid var(--bg); font: 400 13px/1.6 "IBM Plex Sans"; color: var(--text-muted); }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { display: inline-flex; align-items: center; gap: 7px; padding: 7px 12px; border-radius: 999px; background: var(--bg); border: 1px solid var(--border); font: 400 13px/1 "IBM Plex Sans"; color: var(--text); }
.chip__code { font: 500 10px "IBM Plex Mono"; color: var(--text-muted); }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 20px; max-width: 820px; margin: 0 auto; }
.price-card { border-radius: 10px; padding: 26px; display: flex; flex-direction: column; gap: 16px; }
.price-card--free { background: var(--bg); border: 1px solid var(--border); }
.price-card--pro { background: var(--blue); border: 1px solid var(--blue); color: #fff; }
.price-card__row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.price-card__label { font: 500 11px/1 "IBM Plex Sans"; text-transform: uppercase; letter-spacing: .04em; color: var(--text-muted); }
.price-card--pro .price-card__label { color: rgba(255,255,255,.6); }
.price-card__badge { font: 700 10px/1 "IBM Plex Sans"; text-transform: uppercase; letter-spacing: .04em; color: #fff; background: var(--green); padding: 5px 9px; border-radius: 999px; }
.price-card--pro .price-card__badge { font-weight: 500; color: var(--blue); background: var(--amber); }
.price-card__price { font: 700 36px/1 "IBM Plex Sans"; letter-spacing: -.02em; color: var(--text); display: flex; align-items: baseline; gap: 8px; }
.price-card--pro .price-card__price { color: #fff; }
.price-card__suffix { font: 400 14px "IBM Plex Sans"; color: rgba(255,255,255,.7); }
.price-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.price-list li { display: flex; gap: 10px; align-items: flex-start; font: 400 14px/1.5 "IBM Plex Sans"; color: var(--text); }
.price-list__mark { width: 19px; height: 19px; border-radius: 999px; background: var(--blue-bg); color: var(--blue); display: inline-flex; align-items: center; justify-content: center; flex: none; margin-top: 1px; }
.price-list__mark--warn { background: var(--amber-bg); color: var(--amber-text); font: 600 11px "IBM Plex Mono"; }
.price-card--pro .price-list__mark { background: rgba(255,255,255,.18); color: #fff; }
.pricing-footnote { max-width: 820px; margin: 20px auto 0; font: 400 13px/1.6 "IBM Plex Sans"; color: var(--text-muted); text-align: center; }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 20px 22px; }
.faq-item h3 { font: 600 16px/1.35 "IBM Plex Sans"; color: var(--text); margin: 0 0 8px; }
.faq-item p { font: 400 14px/1.6 "IBM Plex Sans"; color: var(--text-mid); margin: 0; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--blue); border-radius: 10px; padding: 44px; display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.cta-band__text { flex: 1 1 300px; min-width: 0; }
.cta-band__text h2 { font: 700 clamp(24px,3.5vw,30px)/1.15 "IBM Plex Sans"; letter-spacing: -.015em; color: #fff; margin: 0 0 10px; }
.cta-band__text p { font: 400 16px/1.55 "IBM Plex Sans"; color: rgba(255,255,255,.82); margin: 0; }
.cta-band__actions { display: flex; gap: 12px; flex: none; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: #fff; border-top: 1px solid var(--border); padding: 36px 0 28px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(190px,1fr)); gap: 28px; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.footer-brand span.name { font: 700 15px "IBM Plex Sans"; color: var(--text); }
.footer-desc { font: 400 13px/1.55 "IBM Plex Sans"; color: var(--text-muted); margin: 0; }
.footer-domain { font: 400 13px/1.55 "IBM Plex Sans"; color: var(--text-muted); margin: 8px 0 0; }
.footer-heading { font: 600 11px/1 "IBM Plex Sans"; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); margin: 0 0 12px; }
.footer-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; font: 400 13px "IBM Plex Sans"; }
.footer-list a { color: var(--text-mid); text-decoration: none; }
.footer-list a:hover { color: var(--text); text-decoration: underline; }
.footer-bottom { margin-top: 28px; padding-top: 18px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font: 400 12px "IBM Plex Sans"; color: var(--text-muted); }
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { color: var(--text-muted); text-decoration: none; }
.footer-bottom-links a:hover { text-decoration: underline; }

/* ---------- Privacy policy page ---------- */
.legal-header { background: #fff; border-bottom: 1px solid var(--border); padding: 48px 0 40px; }
.legal-header h1 { font: 700 clamp(28px,5vw,40px)/1.1 "IBM Plex Sans"; letter-spacing: -.02em; color: var(--text); margin: 0 0 14px; }
.legal-header p { font: 400 17px/1.6 "IBM Plex Sans"; color: var(--text-mid); margin: 0; max-width: 640px; }
.legal-meta { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 22px; font: 400 13px "IBM Plex Sans"; color: var(--text-muted); }

.legal-body { max-width: 820px; margin: 0 auto; padding: 40px 32px 72px; }

.summary-card { background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 26px; margin-bottom: 32px; box-shadow: 0 1px 3px rgba(28,68,128,.08); }
.summary-card__title { font: 500 11px/1 "IBM Plex Sans"; text-transform: uppercase; letter-spacing: .04em; color: var(--text-muted); margin-bottom: 16px; }
.summary-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(210px,1fr)); gap: 14px; }
.summary-item { display: flex; gap: 11px; align-items: flex-start; }
.summary-item__mark { width: 22px; height: 22px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; flex: none; margin-top: 1px; }
.summary-item__mark--good { background: var(--green-bg); color: var(--green); }
.summary-item__mark--warn { background: var(--amber-bg); color: var(--amber-text); font: 600 12px "IBM Plex Mono"; }
.summary-item__text { font: 400 14px/1.5 "IBM Plex Sans"; color: var(--text); }
.summary-card__footnote { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--bg); font: 400 13px/1.6 "IBM Plex Sans"; color: var(--text-muted); }

.toc-card { background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 20px 24px; margin-bottom: 32px; }
.toc-card__title { font: 500 11px/1 "IBM Plex Sans"; text-transform: uppercase; letter-spacing: .04em; color: var(--text-muted); margin-bottom: 12px; }
.toc-list { margin: 0; padding-left: 20px; display: flex; flex-direction: column; gap: 7px; font: 400 14px/1.5 "IBM Plex Sans"; }
.toc-list a { color: var(--blue); }

.legal-section { margin-bottom: 32px; }
.legal-section h2 { font: 600 21px/1.25 "IBM Plex Sans"; color: var(--text); margin: 0 0 12px; }
.legal-section p { font: 400 15px/1.7 "IBM Plex Sans"; color: var(--text-mid); margin: 0 0 12px; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section strong { color: var(--text); font-weight: 600; }

.legal-list { list-style: none; padding: 0; margin: 0 0 16px; display: flex; flex-direction: column; gap: 11px; }
.legal-list li { display: flex; gap: 10px; align-items: flex-start; font: 400 15px/1.6 "IBM Plex Sans"; color: var(--text); }
.legal-list__dot { width: 6px; height: 6px; border-radius: 4px; background: var(--blue); flex: none; margin-top: 9px; }

.callout { background: var(--blue-bg); border-radius: 8px; padding: 16px 18px; font: 400 14px/1.65 "IBM Plex Sans"; color: var(--text); margin-bottom: 12px; }
.callout:last-child { margin-bottom: 0; }

.table-scroll { overflow-x: auto; border: 1px solid var(--border); border-radius: 10px; margin-bottom: 16px; }
.data-table { width: 100%; border-collapse: collapse; min-width: 560px; background: #fff; }
.data-table th { padding: 11px 16px; font: 600 11px/1 "IBM Plex Sans"; text-transform: uppercase; letter-spacing: .04em; color: var(--text-muted); background: var(--bg); border-bottom: 1px solid var(--border); text-align: left; white-space: nowrap; }
.data-table td { padding: 12px 16px; font: 400 14px/1.5 "IBM Plex Sans"; color: var(--text); border-bottom: 1px solid var(--bg); vertical-align: top; }
.data-table tr:last-child td { border-bottom: none; }
.data-table td.tone-good { font: 500 13px/1.5 "IBM Plex Sans"; color: var(--green); }
.data-table td.tone-warn { font: 500 13px/1.5 "IBM Plex Sans"; color: var(--amber); }

.contact-grid { background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 24px; display: grid; grid-template-columns: repeat(auto-fit,minmax(190px,1fr)); gap: 22px; }
.contact-grid__label { font: 500 11px/1 "IBM Plex Sans"; text-transform: uppercase; letter-spacing: .04em; color: var(--text-muted); margin-bottom: 8px; }
.contact-grid__value { font: 500 15px "IBM Plex Sans"; color: var(--blue); }
.contact-grid__value--plain { font: 400 14px/1.5 "IBM Plex Sans"; color: var(--text-mid); }

/* ---------- Mobile / responsive ---------- */
@media (max-width: 860px) {
  .wrap { padding: 0 20px; }
  .legal-body { padding: 32px 20px 56px; }
  .cta-band { padding: 32px 24px; }
}

@media (max-width: 940px) {
  .nav-links, .nav-store { display: none; }
  .nav-burger { display: inline-flex; }
  .site-nav__inner { padding: 10px 20px; gap: 12px; }
  .lang-switch__btn .lang-switch__label { display: none; }
  .nav-back__label { display: none; }
}

@media (max-width: 760px) {

  .nav-mobile-panel {
    display: none;
    border-top: 1px solid var(--border);
    background: #fff;
    padding: 14px 20px 20px;
  }
  .nav-mobile-panel.open { display: block; }
  .nav-mobile-panel .nav-links { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; font-size: 15px; }
  .nav-mobile-panel .nav-links a { padding: 9px 4px; width: 100%; }
  .nav-mobile-panel .nav-store { display: flex; margin-top: 12px; flex-wrap: wrap; }

  .hero { padding: 40px 0 36px; }
  .hero__visual { order: -1; margin-bottom: 8px; }
  .phone-frame { max-width: 240px; }

  .section { padding: 48px 0; }
  .cta-band { flex-direction: column; align-items: flex-start; text-align: left; }
}

@media (max-width: 480px) {
  .store-cta { padding: 11px 16px 11px 14px; }
  .store-cta__title { font-size: 15px; }
  .price-card__price { font-size: 30px; }
}
