/* ==========================================================================
   OpenMultiservice — stylesheet
   ========================================================================== */

:root {
  --navy-900: #0B1F33;
  --navy-800: #14304D;
  --navy-700: #1D4066;
  --navy-600: #2A5686;

  --accent: #E98B39;
  --accent-dark: #C96F24;
  --accent-light: #FDEEE3;

  --bg: #FAF9F6;
  --bg-alt: #F2F0EA;
  --surface: #FFFFFF;
  --border: #E6E2D8;

  --text: #1A2027;
  --text-muted: #5B6472;
  --text-on-dark: #F4F1EA;

  --font-heading: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(11, 31, 51, 0.06);
  --shadow-md: 0 8px 24px rgba(11, 31, 51, 0.08);
  --shadow-lg: 0 20px 48px rgba(11, 31, 51, 0.14);

  --container-w: 1180px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, ul, figure { margin: 0; }
ul { padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font: inherit; color: inherit; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--navy-900); line-height: 1.2; }
h2 { font-size: clamp(1.7rem, 1.3rem + 1.6vw, 2.5rem); font-weight: 800; }
h3 { font-size: 1.2rem; font-weight: 700; }

.container {
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: 20px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy-900);
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 8px 0;
  z-index: 200;
}
.skip-link:focus { left: 0; }

.hide-mobile { display: none; }
@media (min-width: 640px) { .hide-mobile { display: inline; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--accent-dark); box-shadow: var(--shadow-md); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--navy-900);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { border-color: var(--navy-700); background: var(--surface); }
.btn-lg { padding: 15px 30px; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-nav { display: none; }
@media (min-width: 900px) { .btn-nav { display: inline-flex; } }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 249, 246, 0.85);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.site-header.scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--navy-900);
  letter-spacing: -0.02em;
}
.logo span { color: var(--accent-dark); }

.nav {
  display: none;
  align-items: center;
  gap: 28px;
}
@media (min-width: 900px) { .nav { display: flex; } }

.nav-list { display: flex; gap: 26px; }
.nav-link {
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 4px 0;
}
.nav-link:hover { color: var(--navy-900); }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
}
@media (min-width: 900px) { .nav-toggle { display: none; } }
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--navy-900);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
@media (max-width: 899px) {
  .nav {
    position: fixed;
    top: 72px;
    right: 0;
    left: 0;
    height: calc(100vh - 72px);
    background: var(--surface);
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
    gap: 22px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }
  .nav.open { display: flex; transform: translateX(0); }
  .nav-list { flex-direction: column; gap: 18px; width: 100%; }
  .nav-link { font-size: 1.15rem; display: block; }
  .btn-nav { display: inline-flex; margin-top: 6px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 84px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(560px 360px at 88% -10%, rgba(233, 139, 57, 0.16), transparent 70%),
    radial-gradient(680px 480px at -10% 30%, rgba(29, 64, 102, 0.10), transparent 65%);
}
.hero-inner { max-width: 760px; }
.eyebrow {
  display: inline-block;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: var(--accent-light);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.hero-title {
  font-size: clamp(2.1rem, 1.5rem + 3vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.hero-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Highlights slider ---------- */
.slider-section {
  background: var(--navy-900);
  display: flex;
  align-items: center;
  padding: 64px 0;
  min-height: 60vh;
}
@media (min-width: 760px) {
  .slider-section { min-height: 74vh; padding: 40px 0; }
}
@media (min-width: 1024px) {
  .slider-section { min-height: 82vh; }
}
.slider {
  position: relative;
  width: 100%;
  min-width: 0;
  max-width: var(--container-w);
  margin-inline: auto;
  overflow: hidden;
}
.slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}
.slide {
  position: relative;
  flex: 0 0 100%;
  min-width: 0;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-inline: 20px;
}
.slide-eyebrow {
  position: relative;
  z-index: 1;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 14px;
}
.slide-title {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: clamp(1.6rem, 1.05rem + 2.6vw, 3rem);
  font-weight: 800;
  line-height: 1.25;
  max-width: 820px;
  margin-bottom: 20px;
}
.slide-title .hl { color: var(--accent); }
.slide-body {
  position: relative;
  z-index: 1;
  color: rgba(244, 241, 234, 0.78);
  font-size: clamp(1.02rem, 0.94rem + 0.4vw, 1.2rem);
  max-width: 620px;
}

/* Decorative growth/finance graphics — boost slide only */
.slide-decor {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.slide-decor-chart {
  position: absolute;
  top: 6%;
  right: 4%;
  width: 220px;
  height: auto;
}
.slide-decor-bars {
  position: absolute;
  bottom: 8%;
  right: 10%;
  width: 96px;
  height: auto;
}
.slide-decor-symbol {
  position: absolute;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  opacity: 0.13;
}
.slide-decor-dollar { font-size: 8rem; top: 2%; right: 22%; }
.slide-decor-euro { font-size: 5.5rem; bottom: 14%; right: 1%; }

@media (max-width: 759px) {
  .slide-decor-symbol { display: none; }
  .slide-decor-chart { width: 130px; top: 2%; right: -8%; }
  .slide-decor-bars { width: 62px; bottom: 4%; right: 0; }
}
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
}
.slider-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(244, 241, 234, 0.25);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.slider-arrow svg { width: 18px; height: 18px; }
.slider-arrow:hover { background: rgba(244, 241, 234, 0.1); border-color: rgba(244, 241, 234, 0.5); }
.slider-dots { display: flex; gap: 9px; }
.slider-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(244, 241, 234, 0.25);
  transition: background 0.2s ease, transform 0.2s ease;
}
.slider-dot.is-active { background: var(--accent); transform: scale(1.2); }

/* ---------- Sections ---------- */
.section { padding: 88px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head h2 { margin-top: 10px; margin-bottom: 14px; }
.section-lead { color: var(--text-muted); font-size: 1.05rem; }

/* ---------- Perché Open (standalone statement section) ---------- */
.why-open-section { padding: 60px 0; }
.section-head-tight { max-width: 720px; margin-bottom: 0; }
.section-head-tight .section-lead { font-size: 1.08rem; }

/* ---------- Servizi ---------- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 760px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--icon-bg);
  color: var(--icon-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg { width: 26px; height: 26px; }
.service-tag {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.service-card h3 { margin-bottom: 16px; }
.service-list { display: flex; flex-direction: column; gap: 12px; }
.service-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text-muted);
  font-size: 0.96rem;
}
.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

/* ---------- Come funziona ---------- */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  counter-reset: step;
}
@media (min-width: 640px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step { position: relative; padding-top: 8px; }
.step-number {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2rem;
  color: var(--accent);
  opacity: 0.8;
  margin-bottom: 10px;
}
.step h3 { margin-bottom: 10px; }
.step p { color: var(--text-muted); font-size: 0.96rem; }

.app-note {
  margin-top: 56px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--navy-900);
  color: var(--text-on-dark);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
}
.app-note-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(244, 241, 234, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.app-note-icon svg { width: 22px; height: 22px; }
.app-note p { font-size: 0.96rem; color: rgba(244, 241, 234, 0.9); }
.app-note strong { color: #fff; }

/* ---------- Perché sceglierci ---------- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 640px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }
.why-card { text-align: left; }
.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-light);
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.why-icon svg { width: 24px; height: 24px; }
.why-card h3 { margin-bottom: 8px; }
.why-card p { color: var(--text-muted); font-size: 0.95rem; }

/* ---------- Stats block (perché sceglierci) ---------- */
.stats-block {
  margin-top: 56px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
}
.stats-head { max-width: 640px; margin-bottom: 32px; }
.stats-head h3 { margin-bottom: 10px; }
.stats-head p { color: var(--text-muted); font-size: 0.96rem; }

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
@media (min-width: 760px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 44px; }
}

.stat-chart-title { font-weight: 700; color: var(--navy-900); margin-bottom: 20px; font-size: 1rem; }

.bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 28px;
  padding: 0 8px;
  border-bottom: 1.5px solid var(--border);
}
.bar-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
}
.bar-value { font-weight: 700; font-size: 0.9rem; color: var(--navy-900); }
.bar {
  width: 100%;
  max-width: 68px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-bottom: none;
  border-radius: 8px 8px 0 0;
}
.bar-accent { background: var(--accent); border-color: var(--accent-dark); }
.bar-chart-labels {
  display: flex;
  gap: 28px;
  padding: 0 8px;
  margin-top: 10px;
}
.bar-chart-labels span {
  flex: 1;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.stat-highlight { font-weight: 700; color: var(--accent-dark); font-size: 1.05rem; margin-top: 16px; }
.chart-source { font-size: 0.78rem; color: var(--text-muted); margin-top: 8px; line-height: 1.5; }

/* ---------- Contatti ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 0.9fr 1.1fr; align-items: start; }
}
.contact-intro .section-lead { margin-bottom: 32px; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-info-item svg { width: 22px; height: 22px; color: var(--accent-dark); margin-top: 3px; flex-shrink: 0; }
.contact-label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 2px; }
.contact-info-item a { font-weight: 600; color: var(--navy-900); }
.contact-info-item a:hover { color: var(--accent-dark); }
.contact-note { display: block; font-size: 0.82rem; color: var(--text-muted); margin-top: 2px; }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row { display: flex; flex-direction: column; gap: 7px; }
.form-row label { font-weight: 600; font-size: 0.92rem; color: var(--navy-900); }
.req { color: var(--accent-dark); }
.form-row input,
.form-row select,
.form-row textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--navy-600);
  box-shadow: 0 0 0 3px rgba(42, 86, 134, 0.14);
}
.form-row textarea { resize: vertical; min-height: 100px; }
.field-error {
  font-size: 0.82rem;
  color: #C0392B;
  min-height: 1em;
}
.form-row.has-error input,
.form-row.has-error select,
.form-row.has-error textarea {
  border-color: #C0392B;
}
.form-success {
  background: #EAF7EE;
  color: #1E6B3E;
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 0.92rem;
  font-weight: 500;
}

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

/* Checkbox groups (interest list, newsletter consent) */
fieldset.form-row {
  border: none;
  margin: 0;
  padding: 0;
  min-width: 0;
}
.checkbox-group-title {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy-900);
  padding: 0;
}
.checkbox-group-hint {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.85rem;
}
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-top: 6px;
}
.checkbox-option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text);
  cursor: pointer;
}
.checkbox-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  padding: 0;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  background: var(--bg);
  accent-color: var(--accent);
  flex-shrink: 0;
  cursor: pointer;
}
.checkbox-option input[type="checkbox"]:focus {
  outline: 2px solid var(--navy-600);
  outline-offset: 2px;
  box-shadow: none;
}
.checkbox-row.has-error .checkbox-option span { color: #C0392B; }

/* ---------- Newsletter ---------- */
.newsletter-card {
  background: var(--navy-900);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@media (min-width: 900px) {
  .newsletter-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 48px 56px;
    gap: 48px;
  }
  .newsletter-text { flex: 0 0 38%; }
  .newsletter-form { flex: 1; }
}
.newsletter-text h2 { color: #fff; margin-bottom: 10px; }
.newsletter-text p { color: rgba(244, 241, 234, 0.78); font-size: 1rem; }

.newsletter-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 560px) {
  .newsletter-fields { flex-direction: row; align-items: flex-start; }
  .newsletter-fields .form-row { flex: 1; }
}
.newsletter-form .checkbox-row { margin-top: 16px; }
.newsletter-form .checkbox-option span {
  color: rgba(244, 241, 234, 0.82);
  font-size: 0.88rem;
}
.newsletter-form .checkbox-option a {
  color: var(--accent);
  text-decoration: underline;
}
.newsletter-form .checkbox-option a:hover { color: #fff; }
.newsletter-form .form-success { margin-top: 16px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: rgba(244, 241, 234, 0.75); }
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding: 64px 0 40px;
}
@media (min-width: 720px) {
  .footer-inner { grid-template-columns: 1.4fr 1fr 1fr; }
}
.footer-logo { color: #fff; margin-bottom: 14px; }
.footer-logo span { color: var(--accent); }
.footer-brand p:last-child { max-width: 320px; font-size: 0.92rem; }
.footer-col h4 {
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; font-size: 0.92rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(244, 241, 234, 0.12); }
.footer-bottom .container { padding-block: 20px; }
.footer-bottom p { font-size: 0.82rem; color: rgba(244, 241, 234, 0.55); }

/* ---------- Legal pages ---------- */
.legal-section { padding: 56px 0 88px; }
.legal-container { max-width: 760px; }
.back-link {
  display: inline-block;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 28px;
}
.back-link:hover { color: var(--navy-900); }
.back-link-bottom { margin-top: 40px; margin-bottom: 0; }

.legal-notice {
  background: var(--accent-light);
  color: var(--accent-dark);
  border: 1px solid rgba(233, 139, 57, 0.35);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 32px;
}

.legal-section h1 {
  font-size: clamp(1.8rem, 1.5rem + 1.2vw, 2.4rem);
  margin-bottom: 8px;
}
.legal-updated {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 36px;
}
.legal-body h2 {
  font-size: 1.2rem;
  margin-top: 32px;
  margin-bottom: 12px;
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body p {
  color: var(--text);
  font-size: 0.98rem;
  margin-bottom: 14px;
}
.legal-body ul { margin-bottom: 14px; }
.legal-body ul li {
  position: relative;
  padding-left: 22px;
  color: var(--text);
  font-size: 0.98rem;
  margin-bottom: 8px;
}
.legal-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.legal-body a { color: var(--accent-dark); text-decoration: underline; }
.legal-body a:hover { color: var(--navy-900); }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
