/* Multitour legal pages — combined tokens + legal styles (generated) */
/* ===== Multi-Tour Design Tokens — Brand palette ===== */
:root {
  /* Core brand */
  --brand: #3F1168;          /* primary deep purple */
  --brand-2: #5A1F8E;        /* lighter purple for gradients */
  --brand-3: #6E44FF;        /* glow violet */
  --coral: #EB6343;          /* CTA coral-orange */
  --coral-soft: #FCE7DF;
  --coral-deep: #C84A2D;

  /* Surfaces */
  --bg: #FFFFFF;
  --bg-soft: #FAF8FC;         /* very pale lavender */
  --bg-tint: #F4F0F9;          /* tinted lavender bg */
  --surface: #FFFFFF;
  --surface-2: #F8F7FA;
  --surface-3: #F1EAFA;
  --lavender: #E2D1F7;

  /* Text */
  --ink: #1A1321;             /* near-black */
  --ink-soft: #2C2138;
  --muted: #6B5F7A;
  --muted-2: #8B7F9A;
  --hairline: rgba(63, 17, 104, 0.10);
  --hairline-strong: rgba(63, 17, 104, 0.18);

  /* Status */
  --positive: #2BB572;
  --warn: #F0A800;
  --danger: #DC4848;

  /* On dark (footer / CTA) */
  --on-dark: #F8F4FB;
  --on-dark-muted: rgba(248, 244, 251, 0.70);

  /* Density */
  --pad: 1rem;
  --pad-lg: 1.5rem;
  --pad-xl: 2rem;
  --section-y: clamp(72px, 9vw, 128px);
  --container: 1240px;

  /* Radius — soft, modern */
  --r-xs: 8px;
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-2xl: 40px;
  --r-pill: 999px;

  /* Shadows — soft purple-tinted */
  --shadow-xs: 0 1px 2px rgba(63, 17, 104, 0.04);
  --shadow-sm: 0 2px 8px rgba(63, 17, 104, 0.05), 0 1px 2px rgba(63, 17, 104, 0.04);
  --shadow-md: 0 14px 32px -14px rgba(63, 17, 104, 0.14), 0 4px 12px -6px rgba(63, 17, 104, 0.08);
  --shadow-lg: 0 50px 80px -30px rgba(63, 17, 104, 0.22), 0 18px 36px -18px rgba(63, 17, 104, 0.14);
  --shadow-coral: 0 8px 24px -8px rgba(235, 99, 67, 0.40);
  --shadow-pop: 0 8px 24px -8px rgba(63, 17, 104, 0.16);

  /* Type */
  --font-sans: "Geist", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "Geist Mono", ui-monospace, "JetBrains Mono", monospace;
  --font-display: "Geist", system-ui, sans-serif;

  /* Soft glow gradient (brand-blob) */
  --glow-purple: radial-gradient(circle, rgba(110, 68, 255, 0.18) 0%, rgba(110, 68, 255, 0) 70%);
  --glow-coral: radial-gradient(circle, rgba(235, 99, 67, 0.18) 0%, rgba(235, 99, 67, 0) 70%);
  --gradient-card: linear-gradient(135deg, #F1EAFA 0%, #E2D1F7 100%);
  --gradient-soft: linear-gradient(135deg, rgba(142, 68, 219, 0.08) 0%, rgba(255, 255, 255, 0) 100%);
}

/* Density variants */
html[data-density="cozy"] {
  --pad: 0.875rem; --pad-lg: 1.25rem; --pad-xl: 1.625rem;
  --section-y: clamp(48px, 7vw, 96px);
}
html[data-density="airy"] {
  --pad: 1.25rem; --pad-lg: 1.875rem; --pad-xl: 2.5rem;
  --section-y: clamp(80px, 11vw, 144px);
}

/* Radius variants */
html[data-radius="sharp"] {
  --r-xs: 4px; --r-sm: 8px; --r-md: 12px; --r-lg: 16px; --r-xl: 20px; --r-2xl: 24px;
}
html[data-radius="extra"] {
  --r-xs: 12px; --r-sm: 16px; --r-md: 24px; --r-lg: 32px; --r-xl: 40px; --r-2xl: 48px;
}

/* ===== Reset & base ===== */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
  line-height: 1.5;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
button { font: inherit; border: 0; background: transparent; cursor: pointer; color: inherit; }
a { color: inherit; text-decoration: none; }

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

/* Section */
.section { padding: var(--section-y) 0; position: relative; }
.section--tint { background: var(--bg-tint); }
.section--soft { background: var(--bg-soft); }

/* Decorative blobs (page glow) */
.blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
  opacity: 0.55;
}
.blob--purple { background: rgba(110, 68, 255, 0.22); }
.blob--coral { background: rgba(235, 99, 67, 0.18); }
.blob--violet { background: rgba(63, 17, 104, 0.16); }

/* Headings */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--surface-3);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(63, 17, 104, 0.10);
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--coral); }

h1, h2, h3, h4 { margin: 0; letter-spacing: -0.025em; font-weight: 600; color: var(--ink); }
h1 { font-size: clamp(40px, 5.8vw, 76px); line-height: 1.02; letter-spacing: -0.035em; font-weight: 600; }
h2 { font-size: clamp(32px, 4vw, 54px); line-height: 1.05; letter-spacing: -0.03em; }
h3 { font-size: clamp(20px, 1.8vw, 26px); line-height: 1.25; letter-spacing: -0.02em; }
.muted { color: var(--muted); }
p { margin: 0; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  height: 50px;
  padding: 0 22px;
  border-radius: var(--r-pill);
  font-weight: 500;
  font-size: 15px;
  transition: transform .12s ease, box-shadow .18s ease, background .18s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap;
  user-select: none;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--coral {
  background: var(--coral);
  color: white;
  box-shadow: var(--shadow-coral);
}
.btn--coral:hover { background: var(--coral-deep); box-shadow: 0 12px 32px -8px rgba(235, 99, 67, 0.55); }

.btn--brand {
  background: var(--brand);
  color: white;
  box-shadow: 0 4px 16px -4px rgba(63, 17, 104, 0.35);
}
.btn--brand:hover { background: var(--brand-2); }

.btn--ghost {
  background: white;
  color: var(--ink);
  border: 1px solid var(--hairline-strong);
  box-shadow: var(--shadow-xs);
}
.btn--ghost:hover { border-color: var(--brand); color: var(--brand); }

.btn--outline {
  background: transparent;
  color: var(--brand);
  border: 1px solid rgba(63, 17, 104, 0.25);
}
.btn--outline:hover { background: var(--surface-3); border-color: var(--brand); }

.btn--white { background: white; color: var(--brand); }
.btn--white:hover { background: var(--surface-3); }

.btn--sm { height: 40px; padding: 0 16px; font-size: 14px; }
.btn--lg { height: 58px; padding: 0 28px; font-size: 16px; border-radius: 16px; }
.btn--rounded-xl { border-radius: 16px; }

.btn .ico { width: 16px; height: 16px; stroke-width: 1.9; }

/* Cards */
.card {
  background: var(--surface);
  border-radius: var(--r-lg);
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-sm);
}

/* Pill */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  height: 28px;
  padding: 0 12px;
  font-size: 12px;
  font-family: var(--font-mono);
  border-radius: var(--r-pill);
  background: var(--surface);
  border: 1px solid var(--hairline-strong);
  color: var(--ink);
  box-shadow: var(--shadow-xs);
}
.pill .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--coral); }

/* Helper */
.row { display: flex; align-items: center; gap: 12px; }
.col { display: flex; flex-direction: column; }
.grid { display: grid; gap: 24px; }

/* Animations */
@keyframes float-in {
  from { opacity: 0; transform: translateY(10px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
}
@keyframes drift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.fade-in { animation: float-in .6s cubic-bezier(.22,.8,.36,1) both; }

/* Utility */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}
.no-wrap { white-space: nowrap; }

@media (max-width: 900px) {
  :root { --section-y: clamp(56px, 11vw, 96px); }
  .container { padding: 0 18px; }
}

/* ===== Multitour — Legal pages (Terms, Privacy) ===== */
/* Builds on tokens.css. Brand purple + coral, Geist, soft cards. */

body { background: var(--bg); }

/* Page glow behind the hero */
.legal-page { position: relative; overflow-x: hidden; }

/* ---------- Sticky pill nav (static markup mirroring landing) ---------- */
.nav-wrap { position: sticky; top: 0; z-index: 50; padding: 14px 0; }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
  padding: 0 12px 0 22px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid var(--hairline);
  border-radius: var(--r-pill);
  box-shadow: 0 4px 24px -6px rgba(63, 17, 104, 0.10), 0 1px 2px rgba(63, 17, 104, 0.04);
}
.nav__logo { display: flex; align-items: center; gap: 10px; }
.nav__logo img { height: 28px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__links a { font-size: 14.5px; color: var(--ink); font-weight: 500; transition: color .15s ease; }
.nav__links a:hover { color: var(--brand); }
.nav__cta { display: flex; gap: 10px; align-items: center; }

@media (max-width: 920px) { .nav__links { display: none; } }
@media (max-width: 560px) {
  .nav { height: 56px; padding: 0 8px 0 16px; }
  .nav__logo img { height: 22px; }
  .nav__cta .nav__login { display: none; }
}

/* ---------- Hero band ---------- */
.legal-hero { position: relative; padding: 56px 0 40px; }
.legal-hero .blob--purple { width: 520px; height: 520px; top: -260px; right: -120px; }
.legal-hero .blob--coral { width: 380px; height: 380px; top: -180px; left: -160px; }
.legal-hero__inner { position: relative; z-index: 1; max-width: 820px; }
.legal-hero .eyebrow { white-space: nowrap; }
.legal-hero h1 {
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.04; letter-spacing: -0.035em;
  margin: 20px 0 0;
}
.legal-hero__lede { margin-top: 18px; font-size: 17px; line-height: 1.6; color: var(--muted); max-width: 660px; text-align: justify; text-justify: inter-word; hyphens: auto; }
.legal-hero__meta {
  margin-top: 26px; display: flex; flex-wrap: wrap; gap: 10px 10px;
}
.legal-hero__meta .pill {
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--ink-soft);
  height: auto;
  padding: 7px 14px;
  white-space: nowrap;
}
.legal-hero__meta .pill .dot { background: var(--brand-3); }

/* ---------- Layout: single centered column ---------- */
.legal-layout {
  padding: 8px 0 var(--section-y);
}

/* ---------- Body / sections ---------- */
.legal-body { max-width: 820px; margin: 0 auto; }
.lsec { padding: 30px 0; border-top: 1px solid var(--hairline); scroll-margin-top: 96px; }
.lsec:first-child { border-top: 0; padding-top: 8px; }
.lsec__head { display: flex; gap: 16px; align-items: baseline; margin-bottom: 18px; }
.lsec__num {
  font-family: var(--font-mono); font-size: 13px; font-weight: 500;
  color: var(--brand-3);
  flex: none; padding-top: 4px;
}
.lsec h2 { font-size: clamp(22px, 2.4vw, 28px); letter-spacing: -0.02em; line-height: 1.15; }
.lsec h3 { font-size: 16px; font-weight: 600; color: var(--ink); margin: 26px 0 10px; letter-spacing: -0.01em; }
.lsec p { font-size: 15.5px; line-height: 1.72; color: var(--ink-soft); margin-bottom: 14px; text-align: justify; text-justify: inter-word; hyphens: auto; }
.lsec p:last-child { margin-bottom: 0; }
.lsec strong { color: var(--ink); font-weight: 600; }
.lsec a { color: var(--brand); text-decoration: underline; text-decoration-color: rgba(63,17,104,0.28); text-underline-offset: 3px; transition: text-decoration-color .15s ease; }
.lsec a:hover { text-decoration-color: var(--brand); }

.lsec ul { padding-left: 0; margin: 0 0 16px; list-style: none; display: flex; flex-direction: column; gap: 9px; }
.lsec ul li {
  position: relative; padding-left: 26px;
  font-size: 15px; line-height: 1.6; color: var(--ink-soft);
}
.lsec ul li::before {
  content: ""; position: absolute; left: 6px; top: 10px;
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--coral);
}

/* ---------- Note / callout ---------- */
.l-note {
  display: flex; gap: 14px;
  background: var(--surface-3);
  border: 1px solid var(--hairline);
  border-left: 3px solid var(--brand-3);
  border-radius: var(--r-md);
  padding: 16px 18px;
  margin: 18px 0;
  font-size: 14.5px; line-height: 1.6; color: var(--ink-soft);
}
.l-note__ico {
  flex: none; width: 22px; height: 22px; margin-top: 1px;
  display: grid; place-items: center;
  color: var(--brand-3);
}
.l-note--coral { border-left-color: var(--coral); }
.l-note--coral .l-note__ico { color: var(--coral); }

/* ---------- Summary card ("Pe scurt") ---------- */
.l-summary {
  background: var(--gradient-card);
  border: 1px solid var(--hairline-strong);
  border-radius: var(--r-xl);
  padding: 28px 30px;
  margin: 8px 0 8px;
  box-shadow: var(--shadow-md);
}
.l-summary__label {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 18px;
}
.l-summary__grid { display: grid; grid-template-columns: 200px 1fr; gap: 0; }
.l-summary__k, .l-summary__v {
  padding: 11px 0; border-bottom: 1px solid rgba(63, 17, 104, 0.12);
  font-size: 14px; line-height: 1.5;
}
.l-summary__k { font-weight: 600; color: var(--brand); padding-right: 16px; }
.l-summary__v { color: var(--ink-soft); }
.l-summary__row:last-child .l-summary__k,
.l-summary__row:last-child .l-summary__v { border-bottom: 0; }
.l-summary__grid > :nth-last-child(-n+2) { border-bottom: 0; }
@media (max-width: 560px) {
  .l-summary { padding: 22px 20px; }
  .l-summary__grid { grid-template-columns: 1fr; }
  .l-summary__k { padding-bottom: 2px; border-bottom: 0; }
  .l-summary__v { padding-top: 0; }
  .l-summary__grid > :nth-last-child(2) { border-bottom: 0; }
}

/* ---------- Info table ---------- */
.l-table {
  width: 100%; border-collapse: collapse;
  margin: 16px 0; font-size: 14px;
  border: 1px solid var(--hairline); border-radius: var(--r-md);
  overflow: hidden; box-shadow: var(--shadow-xs);
}
.l-table td {
  padding: 12px 16px; border-bottom: 1px solid var(--hairline);
  vertical-align: top; line-height: 1.55; color: var(--ink-soft);
}
.l-table tr:last-child td { border-bottom: 0; }
.l-table td:first-child {
  font-weight: 600; color: var(--brand);
  background: var(--surface-3); width: 210px;
}
@media (max-width: 560px) {
  .l-table td:first-child { width: auto; display: block; border-bottom: 0; }
  .l-table td:last-child { display: block; }
}

/* ---------- Scenario block ---------- */
.l-scenario {
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  overflow: hidden; margin: 18px 0;
  box-shadow: var(--shadow-sm);
  background: var(--surface);
}
.l-scenario__head {
  display: flex; align-items: center; gap: 12px;
  padding: 15px 18px;
  background: var(--surface-3);
  border-bottom: 1px solid var(--hairline);
}
.l-scenario__num {
  width: 26px; height: 26px; flex: none;
  display: grid; place-items: center;
  background: var(--brand); color: white;
  border-radius: 999px; font-size: 12px; font-weight: 600;
  font-family: var(--font-mono);
}
.l-scenario__title { font-size: 15px; font-weight: 600; color: var(--brand); letter-spacing: -0.01em; }
.l-srow { display: grid; grid-template-columns: 170px 1fr; border-top: 1px solid var(--hairline); }
.l-srow:first-child { border-top: 0; }
.l-srow__k {
  background: var(--bg-soft); padding: 12px 16px;
  font-size: 13px; font-weight: 600; color: var(--brand);
}
.l-srow__v { padding: 12px 16px; font-size: 14px; color: var(--ink-soft); line-height: 1.55; }
@media (max-width: 560px) {
  .l-srow { grid-template-columns: 1fr; }
  .l-srow__k { border-bottom: 1px solid var(--hairline); }
}

/* ---------- Tags ---------- */
.l-tag {
  display: inline-block;
  background: var(--surface-3); color: var(--brand);
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 500; letter-spacing: 0.02em;
  padding: 3px 9px; border-radius: var(--r-xs);
  border: 1px solid var(--hairline);
  margin: 1px 2px;
}
.l-tag--g { background: rgba(43, 181, 114, 0.12); color: #1A6B45; border-color: rgba(43, 181, 114, 0.22); }
.l-tag--a { background: rgba(240, 168, 0, 0.14); color: #8A5700; border-color: rgba(240, 168, 0, 0.30); }
.l-sep { color: var(--muted-2); padding: 0 8px; }

/* ---------- Rights list ---------- */
.l-rights { display: flex; flex-direction: column; gap: 10px; margin: 16px 0; }
.l-right {
  display: grid; grid-template-columns: 200px 1fr;
  border: 1px solid var(--hairline); border-radius: var(--r-md);
  overflow: hidden; box-shadow: var(--shadow-xs);
}
.l-right__name {
  background: var(--surface-3); padding: 13px 16px;
  font-size: 14px; font-weight: 600; color: var(--brand);
}
.l-right__name .art { display: block; font-weight: 400; font-size: 11.5px; color: var(--muted-2); font-family: var(--font-mono); margin-top: 2px; }
.l-right__desc { padding: 13px 16px; font-size: 14px; color: var(--ink-soft); line-height: 1.55; }
@media (max-width: 560px) {
  .l-right { grid-template-columns: 1fr; }
  .l-right__name { border-bottom: 1px solid var(--hairline); }
}

/* ---------- Doc footer (version line above big footer) ---------- */
.l-docmeta {
  margin-top: 36px; padding-top: 22px;
  border-top: 1px solid var(--hairline);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px;
  font-size: 12.5px; color: var(--muted-2);
  font-family: var(--font-mono);
}

/* ---------- Cross-link cards (bottom) ---------- */
.l-crosslink {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  margin-top: 28px; padding: 20px 24px;
  background: var(--surface-2);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  transition: border-color .15s ease, box-shadow .18s ease, transform .12s ease;
}
.l-crosslink:hover { border-color: var(--hairline-strong); box-shadow: var(--shadow-md); transform: translateY(-1px); }
.l-crosslink__txt .k { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-2); }
.l-crosslink__txt .t { font-size: 17px; font-weight: 600; color: var(--ink); margin-top: 3px; letter-spacing: -0.01em; }
.l-crosslink__arrow {
  flex: none; width: 42px; height: 42px; border-radius: 999px;
  display: grid; place-items: center;
  background: var(--brand); color: white;
  transition: background .15s ease, transform .15s ease;
}
.l-crosslink:hover .l-crosslink__arrow { background: var(--coral); transform: translateX(2px); }

/* ---------- Footer (mirrors landing dark purple footer) ---------- */
.footer {
  padding: 72px 0 36px;
  background-image:
    radial-gradient(circle at 85% 0%, rgba(235, 99, 67, 0.18) 0%, transparent 45%),
    radial-gradient(circle at 10% 100%, rgba(110, 68, 255, 0.20) 0%, transparent 55%),
    linear-gradient(180deg, #3F1168 0%, #2A0848 100%);
  color: rgba(248, 244, 251, 0.82);
}
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer h4 { font-size: 13px; margin-bottom: 18px; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.1em; color: rgba(248,244,251,0.50); font-weight: 500; }
.footer__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer__col a { font-size: 14px; color: rgba(248,244,251,0.72); transition: color .15s ease; }
.footer__col a:hover { color: white; }
.footer__brand { max-width: 320px; }
.footer__brand-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer__brand-logo img { height: 28px; }
.footer__brand p { color: rgba(248,244,251,0.70); font-size: 14px; line-height: 1.6; }
.footer__contact {
  margin-top: 48px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: center; align-items: center;
  gap: 24px; flex-wrap: wrap; text-align: center;
}
.footer__contact-info { display: flex; flex-direction: column; gap: 6px; font-size: 13.5px; line-height: 1.6; color: rgba(248,244,251,0.68); }
.footer__contact-line { margin: 0; }
.footer__contact-line a { color: rgba(248,244,251,0.92); text-decoration: none; transition: color .15s ease; }
.footer__contact-line a:hover { color: #fff; }
.footer__social { display: flex; gap: 12px; flex-shrink: 0; }
.footer__brand .footer__social { margin-top: 20px; }
.footer__social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.08); color: rgba(248,244,251,0.85);
  transition: background .15s ease, color .15s ease, transform .15s ease;
}
.footer__social a:hover { background: rgba(255,255,255,0.18); color: #fff; transform: translateY(-2px); }
.footer__social svg { width: 20px; height: 20px; }

.footer__bottom {
  margin-top: 32px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px;
  font-size: 13px; color: rgba(248,244,251,0.50);
}
@media (max-width: 800px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .footer__brand { grid-column: span 2; }
}
@media (max-width: 600px) {
  .footer__contact { flex-direction: column; align-items: center; gap: 18px; }
}
@media (max-width: 520px) {
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ---- Header column aligned with body text (one width) ---- */
.legal-hero__inner { margin-left: auto; margin-right: auto; }
.legal-hero__lede { max-width: 820px; }

/* ---- Language switcher (legal nav) ---- */
.lang-switch { display:inline-flex; background:rgba(63,17,104,0.06); border:1px solid var(--hairline); border-radius:var(--r-pill); padding:3px; gap:0; }
.lang-switch a { font-size:12px; font-weight:500; padding:5px 10px; border-radius:var(--r-pill); color:var(--muted); text-transform:uppercase; letter-spacing:.04em; transition:all .15s ease; text-decoration:none; display:inline-block; line-height:1.4; }
.lang-switch a.active { background:var(--brand); color:#fff; }
@media (max-width:560px){ .lang-switch a { padding:4px 8px; font-size:11px; } }
