/* ─── Reset & base ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0d0d14;
  --bg-alt:    #11111c;
  --surface:   #18182a;
  --border:    #2a2a3e;
  --text:      #e8e8f0;
  --text-muted:#8888a8;
  --accent:    #5b5ee6;
  --accent-h:  #818cf8;
  --green:     #22c55e;
  --yellow:    #eab308;
  --red:       #ef4444;
  --radius:    12px;
  --radius-sm: 8px;
  --shadow:    0 4px 24px rgba(0,0,0,0.4);
}

html { scroll-behavior: smooth; font-size: 16px; overflow-x: clip; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Utilities ────────────────────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, var(--accent), #a78bfa, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.badge--green  { background: rgba(34,197,94,.15);  color: var(--green); border: 1px solid rgba(34,197,94,.3); }
.badge--yellow { background: rgba(234,179,8,.15);  color: var(--yellow); border: 1px solid rgba(234,179,8,.3); }
.badge--red    { background: rgba(239,68,68,.15);  color: var(--red); border: 1px solid rgba(239,68,68,.3); }

/* ─── Buttons ──────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.18s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn--primary  { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-h); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(99,102,241,.4); }
.btn--outline  { border-color: var(--border); color: var(--text); background: transparent; }
.btn--outline:hover { border-color: var(--accent); color: var(--accent-h); }
.btn--ghost    { color: var(--text-muted); background: transparent; }
.btn--ghost:hover { color: var(--text); }
.btn--lg       { padding: 13px 26px; font-size: 1rem; border-radius: var(--radius); }
.btn--full     { width: 100%; justify-content: center; }

/* ─── Nav ──────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,13,20,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 64px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}
.nav__links {
  display: flex;
  gap: 20px;
  margin-left: 16px;
}
.nav__links a {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.15s;
}
.nav__links a:hover { color: var(--text); }
.nav__actions { display: flex; gap: 10px; margin-left: auto; }
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.nav__burger span { display: block; width: 22px; height: 2px; background: var(--text-muted); border-radius: 2px; }

/* ─── Hero ─────────────────────────────────────────────────────────── */
.hero {
  padding: 80px 0 0;
  text-align: center;
  overflow: hidden;
}
.hero__inner { position: relative; }
.hero__badge { margin-bottom: 20px; }
.hero__title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero__sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 32px;
}
.hero__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.hero__platforms {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 60px;
}
.platform-badge {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
}

/* Score card mockup */
.hero__card-wrap {
  margin-top: 0;
  display: flex;
  justify-content: center;
}
.score-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  width: 100%;
  max-width: 540px;
  box-shadow: var(--shadow), 0 0 80px rgba(99,102,241,0.08);
  text-align: left;
  margin-bottom: -2px;
}
.score-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.score-card__device {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
}
.score-card__score { display: flex; gap: 24px; align-items: center; margin-bottom: 16px; }
.score-ring { position: relative; width: 90px; height: 90px; flex-shrink: 0; }
.score-ring svg { width: 100%; height: 100%; }
.score-ring__val {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent-h);
}
.score-card__checks { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.check-row { font-size: 0.83rem; display: flex; align-items: center; gap: 8px; }
.check-row--pass { color: var(--text-muted); }
.check-row--warn { color: var(--yellow); }
.check-row--fail { color: var(--red); }
.score-card__footer { font-size: 0.78rem; color: var(--text-muted); border-top: 1px solid var(--border); padding-top: 12px; }

/* ─── Sections ─────────────────────────────────────────────────────── */
.section { padding: 96px 0; }
.section--alt { background: var(--bg-alt); }
.section__header { text-align: center; margin-bottom: 56px; }
.section__header h2 { font-size: clamp(1.7rem,4vw,2.4rem); font-weight: 700; letter-spacing: -0.03em; margin-bottom: 12px; }
.section__header p { color: var(--text-muted); font-size: 1.05rem; }

/* ─── Steps ────────────────────────────────────────────────────────── */
.steps {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.step {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.step__num {
  width: 36px; height: 36px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  margin-bottom: 16px;
}
.step h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.step p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 16px; }
.step__arrow {
  color: var(--text-muted);
  font-size: 1.4rem;
  padding-top: 40px;
  flex-shrink: 0;
}

/* ─── Code blocks ──────────────────────────────────────────────────── */
.code-block {
  background: #0a0a12;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 0.8rem;
  color: #a78bfa;
  line-height: 1.7;
  overflow-x: auto;
}
.code-block--sm { padding: 10px 14px; font-size: 0.75rem; margin-bottom: 14px; }
.code-comment { color: var(--text-muted); }

/* ─── Checks grid ──────────────────────────────────────────────────── */
.checks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.check-category {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.check-category__icon { font-size: 1.8rem; margin-bottom: 12px; }
.check-category h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 12px; }
.check-category ul { color: var(--text-muted); font-size: 0.85rem; display: flex; flex-direction: column; gap: 6px; }
.check-category li::before { content: '· '; }

/* ─── Use cases ────────────────────────────────────────────────────── */
.usecases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.usecase {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.18s;
}
.usecase:hover { border-color: var(--accent); }
.usecase__icon { font-size: 2rem; margin-bottom: 14px; }
.usecase h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.usecase p { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 16px; line-height: 1.6; }
.link { color: var(--accent-h); font-size: 0.88rem; font-weight: 600; }
.link:hover { text-decoration: underline; }

/* ─── Pricing ──────────────────────────────────────────────────────── */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.pricing__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
}
.pricing__card--featured {
  border-color: var(--accent);
  background: linear-gradient(160deg, rgba(99,102,241,0.08) 0%, var(--surface) 60%);
  box-shadow: 0 0 40px rgba(99,102,241,0.12);
}
.pricing__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  padding: 3px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.pricing__name { font-size: 0.85rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.pricing__price { margin-bottom: 24px; }
.pricing__amount { font-size: 2.2rem; font-weight: 800; letter-spacing: -0.04em; }
.pricing__period { color: var(--text-muted); font-size: 0.9rem; }
.pricing__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  font-size: 0.88rem;
}
.pricing__features li { color: var(--text); }
.pricing__features li.dim { color: var(--text-muted); }


/* ─── Download ─────────────────────────────────────────────────────── */
.download-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.download-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.download-card__os {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
}

/* ─── CTA Section ──────────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, rgba(99,102,241,0.12) 0%, rgba(56,189,248,0.06) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
  text-align: center;
}
.cta-section h2 { font-size: clamp(1.6rem,4vw,2.2rem); font-weight: 700; letter-spacing: -0.03em; margin-bottom: 12px; }
.cta-section p { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 28px; }

/* ─── Footer ───────────────────────────────────────────────────────── */
.footer { padding: 56px 0 24px; background: var(--bg-alt); border-top: 1px solid var(--border); }
.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  margin-bottom: 40px;
}
.footer__brand { max-width: 220px; }
.footer__brand p { color: var(--text-muted); font-size: 0.88rem; margin-top: 12px; }
.footer__links { display: flex; gap: 48px; }
.footer__links div { display: flex; flex-direction: column; gap: 10px; }
.footer__links h3 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 4px; }
.footer__links a { color: var(--text-muted); font-size: 0.88rem; transition: color 0.15s; }
.footer__links a:hover { color: var(--text); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 0.82rem;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* ─── Modules ─────────────────────────────────────────────────────── */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.module-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.18s;
}
.module-card:hover { border-color: var(--accent); }
.module-card__phase {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-h);
  background: rgba(99,102,241,0.1);
  border: 1px solid rgba(99,102,241,0.2);
  padding: 3px 10px;
  border-radius: 999px;
  width: fit-content;
}
.module-card__icon { font-size: 1.8rem; }
.module-card h3 { font-size: 1.05rem; font-weight: 700; }
.module-card__tagline { color: var(--accent-h); font-size: 0.85rem; font-style: italic; }
.module-card > p:not(.module-card__tagline) { color: var(--text-muted); font-size: 0.87rem; line-height: 1.6; flex: 1; }
.module-card__features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.module-card__features li {
  color: var(--text-muted);
  font-size: 0.82rem;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}
.module-card__features li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }

/* ─── Compliance ────────────────────────────────────────────────────── */
.compliance-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.compliance-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 18px;
  text-align: center;
  transition: border-color 0.18s;
}
.compliance-card:hover { border-color: var(--accent); }
.compliance-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--accent), #818cf8);
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.compliance-card h3 { font-size: 0.9rem; font-weight: 700; margin-bottom: 8px; }
.compliance-card p { color: var(--text-muted); font-size: 0.8rem; line-height: 1.5; }
.compliance-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.compliance-cta p { color: var(--text-muted); font-size: 0.95rem; }

/* ─── Platform badge coming soon ───────────────────────────────────── */
.platform-badge--soon {
  border-color: rgba(99,102,241,0.3);
  color: var(--accent-h);
  background: rgba(99,102,241,0.08);
}

/* ─── Features grid ───────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.18s;
  min-width: 0;            /* prevent grid blowout */
  overflow-wrap: break-word;
  word-break: break-word;
}
.feature-card:hover { border-color: var(--accent); }
.feature-card__icon { font-size: 1.6rem; margin-bottom: 12px; }
.feature-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.feature-card p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.6; }

/* ─── Module card live variant ─────────────────────────────────────── */
.module-card--live {
  border-color: var(--green);
  background: linear-gradient(160deg, rgba(34,197,94,0.06) 0%, var(--surface) 60%);
}
.module-card__phase--live {
  color: var(--green);
  background: rgba(34,197,94,0.12);
  border-color: rgba(34,197,94,0.3);
}

/* ─── Security grid ───────────────────────────────────────────────── */
.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.security-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  min-width: 0;            /* prevent grid blowout */
  overflow-wrap: break-word;
  word-break: break-word;
}
.security-item strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.security-item p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ─── Checks grid 4-col for 8 categories ──────────────────────────── */
.checks-grid {
  grid-template-columns: repeat(4, 1fr);
}

/* ─── Responsive ───────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__actions > .btn { display: none; }
  .nav__burger { display: flex; }
  .steps { flex-direction: column; }
  .step__arrow { display: none; }
  .checks-grid, .usecases, .pricing, .download-grid, .modules-grid, .features-grid, .security-grid { grid-template-columns: 1fr; gap: 12px; }
  .feature-card, .security-item, .check-category, .module-card { padding: 16px; }
  .container { padding: 0 16px; }
  .compliance-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { display: flex; flex-direction: column; }
  .footer__links { flex-direction: column; gap: 28px; }
  .score-card__score { flex-direction: column; }
}

@media (max-width: 640px) {
  .hero { padding: 48px 0 0; }
  .hero__cta { flex-direction: column; align-items: center; }
}

/* ─── Legal pages ──────────────────────────────────────────────────── */
.legal-content { max-width: 720px; margin: 0 auto; padding: 100px 24px 60px; }
.legal-content h1 { font-size: 2rem; font-weight: 700; margin-bottom: 8px; }
.legal-content .legal-date { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 40px; display: block; }
.legal-content h2 { font-size: 1.2rem; font-weight: 700; margin-top: 32px; margin-bottom: 12px; }
.legal-content p, .legal-content li { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 12px; }
.legal-content ul { list-style: disc; padding-left: 20px; }
.legal-content a { color: var(--accent-h); }
.legal-content a:hover { text-decoration: underline; }

/* Platform cards (download section) */
.download-card__arch { color: var(--text-muted); font-size: 0.85rem; margin: 4px 0 0; line-height: 1.5; }

/* ─── Cookie banner ───────────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
}
.cookie-banner__text { max-width: 560px; }
.cookie-banner__text strong { font-size: 0.95rem; display: block; margin-bottom: 6px; }
.cookie-banner__text p { color: var(--text-muted); font-size: 0.82rem; line-height: 1.5; margin: 0; }
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; }
.btn--sm { padding: 8px 16px; font-size: 0.82rem; }

@media (max-width: 640px) {
  .cookie-banner { flex-direction: column; text-align: center; gap: 16px; }
  .cookie-banner__actions { width: 100%; justify-content: center; }
}

/* ─── Language switcher ──────────────────────────────────────────── */
.lang-switch {
  display: flex;
  gap: 2px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}
.lang-switch__btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 10px;
  cursor: pointer;
  transition: all 0.15s;
  letter-spacing: 0.03em;
}
.lang-switch__btn:hover { color: var(--text); }
.lang-switch--active { background: var(--accent); color: #fff !important; }

@media (max-width: 900px) {
  .lang-switch { margin-left: auto; margin-right: 12px; }
}

/* ─── i18n FOUC prevention ───────────────────────────────────────── */
html.i18n-loading [data-i18n],
html.i18n-loading [data-i18n-html] { visibility: hidden; }

/* ─── Landing pages ───────────────────────────────────────────────── */
.lp-hero {
  padding: 100px 0 64px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.lp-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: rgba(99,102,241,.12);
  color: var(--accent-h);
  border: 1px solid rgba(99,102,241,.25);
  margin-bottom: 20px;
}
.lp-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.lp-hero__sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.lp-hero__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* LP content blocks */
.lp-section { padding: 72px 0; }
.lp-section--alt { background: var(--bg-alt); }
.lp-section h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.lp-section h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.lp-section p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

.lp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.lp-grid--2 { grid-template-columns: repeat(2, 1fr); }
.lp-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.18s;
}
.lp-card:hover { border-color: var(--accent); }
.lp-card__icon { font-size: 1.8rem; margin-bottom: 14px; }
.lp-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.lp-card p { color: var(--text-muted); font-size: 0.87rem; line-height: 1.6; }

/* Comparison table */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
  font-size: 0.9rem;
}
.compare-table th, .compare-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.compare-table th {
  font-weight: 700;
  color: var(--text);
  background: var(--surface);
}
.compare-table td { color: var(--text-muted); }
.compare-table td:first-child { color: var(--text); font-weight: 500; }
.compare-table .check { color: var(--green); }
.compare-table .cross { color: var(--text-muted); opacity: 0.5; }
.compare-table .highlight { background: rgba(99,102,241,0.04); }

/* LP breadcrumb */
.lp-breadcrumb {
  padding: 12px 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.lp-breadcrumb a { color: var(--accent-h); }
.lp-breadcrumb a:hover { text-decoration: underline; }

/* LP two-col layout */
.lp-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.lp-two-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.lp-two-col li { color: var(--text-muted); font-size: 0.9rem; display: flex; align-items: flex-start; gap: 8px; }
.lp-two-col li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }

@media (max-width: 900px) {
  .lp-grid, .lp-grid--2 { grid-template-columns: 1fr; }
  .lp-two-col { grid-template-columns: 1fr; gap: 32px; }
  .compare-table { font-size: 0.82rem; }
  .compare-table th, .compare-table td { padding: 10px 12px; }
}

/* ─── Horizontal overflow prevention ─────────────────────────────── */
img, video, iframe { max-width: 100%; height: auto; }
pre, code { overflow-x: auto; }
table:not(.compare-table) { display: block; overflow-x: auto; }

/* ─── CTA tap target (min 44px on mobile) ────────────────────────── */
@media (max-width: 768px) {
  a.btn, button.btn, .btn--primary, .btn--lg, .btn--outline { min-height: 44px; min-width: 44px; }
}

/* ─── Focus indicators ───────────────────────────────────────────── */
a:focus-visible, button:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
a:focus, button:focus, [tabindex]:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ─── Skip to content link ───────────────────────────────────────── */
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  z-index: 200;
}
.skip-link:focus {
  position: fixed;
  top: 8px;
  left: 16px;
  width: auto;
  height: auto;
  margin: 0;
  padding: 8px 16px;
  overflow: visible;
  clip: auto;
  white-space: normal;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
}

/* ─── Trust Center ───────────────────────────────────────────────── */
.tc-hero {
  padding: 100px 0 64px;
  text-align: center;
  background: linear-gradient(180deg, rgba(99,102,241,0.06) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}
.tc-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: rgba(34,197,94,.12);
  color: var(--green);
  border: 1px solid rgba(34,197,94,.25);
  margin-bottom: 20px;
}
.tc-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin-bottom: 20px;
}
.tc-hero__sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Trust pillars */
.tc-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tc-pillar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  transition: border-color 0.18s;
}
.tc-pillar:hover { border-color: var(--accent); }
.tc-pillar__icon { font-size: 2.2rem; margin-bottom: 16px; }
.tc-pillar h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; }
.tc-pillar p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; }

/* Practice subsections */
.tc-practice { margin-bottom: 48px; }
.tc-practice:last-child { margin-bottom: 0; }
.tc-practice > h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-left: 14px;
  border-left: 3px solid var(--accent);
}

/* Data protection grid */
.tc-data-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tc-data-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.18s;
}
.tc-data-item:hover { border-color: var(--accent); }
.tc-data-item__icon { font-size: 2rem; margin-bottom: 14px; }
.tc-data-item h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 10px; }
.tc-data-item p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.6; }

/* Compliance roadmap cards */
.tc-compliance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.tc-compliance-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.tc-compliance-card--current {
  border-color: var(--green);
  background: linear-gradient(160deg, rgba(34,197,94,0.06) 0%, var(--surface) 60%);
}
.tc-compliance-card--roadmap {
  border-color: var(--accent);
  background: linear-gradient(160deg, rgba(99,102,241,0.06) 0%, var(--surface) 60%);
}
.tc-compliance-card__label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 999px;
  width: fit-content;
  margin-bottom: 14px;
}
.tc-compliance-card--current .tc-compliance-card__label {
  color: var(--green);
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.3);
}
.tc-compliance-card--roadmap .tc-compliance-card__label {
  color: var(--accent-h);
  background: rgba(99,102,241,0.1);
  border: 1px solid rgba(99,102,241,0.2);
}
.tc-compliance-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 16px; }
.tc-compliance-card ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}
.tc-compliance-card li {
  color: var(--text-muted);
  font-size: 0.87rem;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.tc-compliance-card--current li::before { content: '\2713'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.tc-compliance-card--roadmap li::before { content: '\2192'; color: var(--accent-h); font-weight: 700; flex-shrink: 0; }

.tc-compliance-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-style: italic;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Contact grid */
.tc-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tc-contact-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.tc-contact-item h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 10px; }
.tc-contact-item p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.6; margin-bottom: 14px; }

/* Trust Center responsive */
@media (max-width: 900px) {
  .tc-pillars,
  .tc-data-grid,
  .tc-contact-grid { grid-template-columns: 1fr; gap: 12px; }
  .tc-compliance-grid { grid-template-columns: 1fr; gap: 16px; }
  .tc-pillar, .tc-data-item, .tc-contact-item, .tc-compliance-card { padding: 20px; }
}
