/* VivamoCompliance shared stylesheet */

:root {
  --navy-dark: #071F34;
  --navy: #0B3558;
  --navy-mid: #0E4D6E;
  --orange: #E07832;
  --orange-hover: #C86B24;
  --bg: #F4F7FB;
  --text: #1A2332;
  --muted: #546478;
  --muted-light: #879BAD;
  --border: #DCE5EE;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

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

h1, h2 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

a, button {
  transition:
    transform 0.18s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.18s ease,
    background 0.15s ease,
    color 0.15s ease,
    border-color 0.15s ease,
    opacity 0.15s ease;
}

a:hover { transform: translateY(-1px); }
a:active, button:active { transform: translateY(0) scale(0.98); }

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

/* ── Layout ── */
.section-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 96px 40px;
}

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  transition: box-shadow 0.3s;
}

.nav::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: var(--navy);
  z-index: -1;
}

.nav--scrolled::before { box-shadow: 0 2px 28px rgba(7, 31, 52, 0.55); }

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav__wordmark {
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.025em;
  white-space: nowrap;
}

.nav__wordmark span { color: var(--orange); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__link {
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.nav__link:hover { color: #fff; transform: none; }

.nav__link--active {
  color: #fff;
  font-weight: 600;
  border-bottom: 2px solid var(--orange);
  padding-bottom: 2px;
}

.nav__cta {
  background: var(--orange);
  color: #fff;
  padding: 9px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav__cta:hover { background: var(--orange-hover); transform: none; }

.nav__toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  margin: -8px -8px -8px 4px;
  cursor: pointer;
  color: #fff;
}
.nav__toggle svg { display: block; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn--primary {
  background: var(--orange);
  color: #fff;
}

.btn--primary:hover { background: var(--orange-hover); }

.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 500;
}

.btn--ghost:hover { background: rgba(255, 255, 255, 0.15); }

.btn--sm {
  padding: 12px 24px;
  font-size: 15px;
}

/* ── Hero (dark gradient sections) ── */
.hero {
  background: linear-gradient(148deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}

.hero--page {
  background: linear-gradient(148deg, var(--navy-dark) 0%, var(--navy) 100%);
}

.hero__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 116px 40px 72px;
  position: relative;
}

.hero__inner--page {
  padding: 96px 40px 72px;
}

.hero__badge {
  display: block;
  margin-bottom: 20px;
}

.hero__badge-dot { display: none; }

.hero__badge-text {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
}

.hero__title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin: 0 0 24px;
  max-width: 820px;
}

.hero__title em {
  color: var(--orange);
  font-style: normal;
}

.hero__title--page {
  font-size: 2.9rem;
  margin: 0 0 20px;
  max-width: 760px;
}

.hero__sub {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
  max-width: 580px;
  margin: 0 0 40px;
  font-weight: 400;
}

.hero__sub--page {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 0 32px;
}

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

/* ── Stats row ── */
.stats {
  display: flex;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
  gap: 0;
}

.stat {
  flex: 1;
  padding-right: 40px;
  margin-right: 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat:last-child {
  padding-right: 0;
  margin-right: 0;
  border-right: none;
}

.stat__value {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
}

.stat__value--orange { color: var(--orange); }

.stat__label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
  font-weight: 500;
}

/* ── Section labels ── */
.label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 12px;
}

/* ── Cards ── */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.card:hover {
  border-color: var(--navy);
  box-shadow: 0 4px 20px rgba(11, 53, 88, 0.1);
}

.card--navy {
  background: var(--navy);
  border-color: transparent;
}

.card--featured {
  border: 2px solid var(--navy);
  position: relative;
  overflow: hidden;
}

.card--featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--navy);
}

/* ── Icons (plain, no coloured square) ── */
.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--navy);
  flex-shrink: 0;
}

.icon-box--navy,
.icon-box--orange,
.icon-box--lg { }

/* Lijn de infoboxjes in de Artikel 4-sectie uit met de kop (kicker blijft erboven) */
.artikel4-boxes { margin-top: 27px; }
/* Rechterkolom uitlijnen met de onderkant van de linkerkolom */
.artikel4-boxes--bottom { align-self: end; }
/* Rechterkolom verticaal centreren t.o.v. de linkerkolom */
.artikel4-boxes--center { align-self: center; }

/* ── Grids ── */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.grid-2--center { align-items: center; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-6 { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* ── Steps row ── */
.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.step__icon {
  width: 68px;
  height: 68px;
  border-radius: 16px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.step__icon--orange { background: var(--orange); }

.step__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}

.step__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px;
  line-height: 1.3;
}

.step__desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.step-connector {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  margin-top: 33px;
}

/* ── FAQ ── */
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.faq-item:hover { box-shadow: 0 4px 16px rgba(11, 53, 88, 0.07); }

.faq-trigger {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  user-select: none;
}

.faq-trigger__text {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}

.faq-trigger__icon {
  font-size: 20px;
  color: var(--muted-light);
  font-weight: 300;
  flex-shrink: 0;
  line-height: 1;
  display: inline-block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  transition: max-height 0.36s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content__inner {
  padding: 4px 24px 20px;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.28s ease, transform 0.34s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content--open .faq-content__inner {
  opacity: 1;
  transform: none;
}

.faq-item--bg .faq-item { background: var(--bg); }

/* ── Forms ── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.form-input {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 14px;
  color: #fff;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s;
}

.form-input::placeholder { color: rgba(255, 255, 255, 0.35); }
.form-input:focus { border-color: rgba(255, 255, 255, 0.4); }
.form-input:disabled { opacity: 0.5; }

.form-row {
  display: flex;
  gap: 14px;
}

.form-row .form-group { flex: 1; }

.form-submit {
  width: 100%;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  margin-top: 4px;
  transition: background 0.15s;
}

.form-submit:hover { background: var(--orange-hover); }
.form-submit:disabled { cursor: default; }

.form-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
  margin: 0;
  line-height: 1.5;
}

/* ── Timeline ── */
.timeline {
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(to bottom, var(--navy), var(--orange));
}

.timeline-item {
  position: relative;
  margin-bottom: 36px;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: -32px;
  top: 6px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--navy);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--navy);
}

.timeline-dot--muted {
  background: var(--muted-light);
  box-shadow: 0 0 0 2px var(--muted-light);
}

.timeline-dot--green {
  background: #1E7A4A;
  box-shadow: 0 0 0 2px #1E7A4A;
}

.timeline-dot--orange {
  left: -34px;
  top: 4px;
  width: 26px;
  height: 26px;
  background: var(--orange);
  box-shadow: 0 0 0 2px var(--orange);
}

/* ── Track cards (leerlijn) ── */
.track-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 36px;
  margin-bottom: 16px;
}

.track-card:last-child { margin-bottom: 0; }

.track-card--featured {
  border: 2px solid var(--navy);
  position: relative;
  overflow: hidden;
}

.track-card--featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--navy);
}

.track-card-inner {
  max-width: 640px;
}

/* ── Track meta ── */
.track-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.track-meta-item {
  font-size: 13px;
  color: var(--muted);
}

.track-meta-item strong { color: var(--text); }

/* ── Trainingen tabel ── */
.tracks-table-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow-x: auto;
}

.tracks-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 520px;
}

.tracks-table th,
.tracks-table td {
  text-align: left;
  padding: 14px 24px;
  border-bottom: 1px solid var(--border);
}

.tracks-table thead th {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  background: #F4F7FB;
}

.tracks-table td { color: var(--muted); }
.tracks-table td strong { color: var(--navy); font-weight: 700; }

.tracks-table__duur {
  white-space: nowrap;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.tracks-table__group td {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy);
  background: #EBF4FA;
}

.tracks-table tbody tr:last-child td { border-bottom: none; }

/* ── Badges ── */
.badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.04em;
}

.badge--navy { background: var(--navy); color: #fff; }
.badge--orange { background: var(--orange); color: #fff; }
.badge--navy-light { background: #EBF4FA; color: var(--navy); }
.badge--pill {
  border-radius: 100px;
  font-size: 11px;
}

/* ── Alert / callout ── */
.callout {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #FFF3EB;
  border: 1px solid #F5C9A0;
  border-radius: 10px;
  padding: 14px 18px;
}

.callout__text {
  font-size: 14px;
  color: #7A3A0A;
  font-weight: 500;
}

.callout--info {
  background: #EBF4FA;
  border-color: #BDD6EA;
}

.callout--info .callout__text { color: var(--navy); font-weight: 600; }

/* ── Quote / blockquote ── */
.quote-block {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  max-width: 740px;
  margin: 0 auto 44px;
  text-align: center;
}

.quote-text {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.7;
  font-weight: 500;
  font-style: italic;
  margin: 0 0 24px;
}

/* ── Footer ── */
.footer {
  background: var(--navy-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 64px 40px 32px;
}

.footer__cols {
  display: flex;
  gap: 60px;
  margin-bottom: 48px;
}

.footer__brand { flex: 2; min-width: 200px; }
.footer__col { flex: 1; min-width: 140px; }

.footer__col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 16px;
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__link {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}

.footer__link:hover { color: #fff; transform: none; }
.footer__link--active { color: #fff; font-weight: 600; }

.footer__desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
  max-width: 260px;
  margin: 0 0 20px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.28);
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal-link {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
}

.footer__legal-link:hover { color: rgba(255, 255, 255, 0.65); transform: none; }

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* entrance animations removed for a less templated feel */
.fade-up, .fade-up-2, .fade-up-3 { animation: none; }

/* ── Demo page ── */
.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: calc(100vh - 68px);
  margin-top: 68px;
}

.demo-info {
  background: linear-gradient(145deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 80px 60px 80px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.demo-form-panel {
  background: var(--bg);
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.demo-form-panel .form-input {
  background: #fff;
  border-color: var(--border);
  color: var(--text);
}

.demo-form-panel .form-input::placeholder { color: var(--muted-light); }
.demo-form-panel .form-input:focus { border-color: var(--navy); }
.demo-form-panel .form-label { color: var(--muted); }

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav { padding: 0 20px; gap: 10px; }
  .nav__logo svg { width: 32px; height: 32px; }
  .nav__wordmark { font-size: 15px; }
  .nav__toggle { display: inline-flex; align-items: center; }
  .nav__cta { margin-left: auto; padding: 7px 12px; font-size: 13px; }
  .nav__cta svg { display: none; }
  .nav__links {
    display: flex;
    position: fixed;
    top: 68px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--navy);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 14px 28px rgba(7, 31, 52, 0.45);
    padding: 6px 0;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .nav--open .nav__links { opacity: 1; transform: none; pointer-events: auto; }
  .nav__link { padding: 14px 20px; font-size: 15px; }
  .nav__link--active { border-bottom: 0; padding-bottom: 14px; }

  .hero__inner { padding: 84px 24px 56px; }
  .hero__inner--page { padding: 84px 24px 56px; }
  .hero__title { font-size: 2.1rem; }
  .hero__title--page { font-size: 2rem; }
  .hero__sub { font-size: 1rem; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { justify-content: center; }

  .stats { flex-wrap: wrap; gap: 0; border-top: 1px solid rgba(255,255,255,.1); }
  .stat { flex: 0 0 50%; border-right: none; padding: 20px 0; margin-right: 0; border-bottom: 1px solid rgba(255,255,255,.08); }

  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .artikel4-boxes { margin-top: 0; }
  .grid-3 { grid-template-columns: 1fr; gap: 16px; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-6 { grid-template-columns: repeat(2, 1fr); }
  .cards-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  .steps-row { flex-direction: column; gap: 32px; }
  .step-connector { display: none; }

  .section-inner { padding: 64px 24px; }

  .footer__cols { flex-direction: column; gap: 40px; }
  .footer__inner { padding: 56px 24px 32px; }

  .demo-grid { grid-template-columns: 1fr; }
  .demo-info { padding: 64px 24px 40px; }
  .demo-form-panel { padding: 48px 24px 64px; }

  .form-row { flex-direction: column; }
}

@media (max-width: 480px) {
  .cards-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
}

/* Trainingen-tabel stapelt op smalle schermen i.p.v. horizontaal scrollen */
@media (max-width: 600px) {
  .tracks-table { min-width: 0; }
  .tracks-table thead { display: none; }
  .tracks-table tr { display: block; }
  .tracks-table td { display: block; border-bottom: none; padding: 1px 20px; }
  .tracks-table tbody tr:not(.tracks-table__group) { padding: 14px 0; border-bottom: 1px solid var(--border); }
  .tracks-table tbody tr:not(.tracks-table__group):last-child { border-bottom: none; }
  .tracks-table tbody tr:not(.tracks-table__group) td:first-child { padding-top: 0; }
  .tracks-table td:not(:first-child) { font-size: 13px; }
  .tracks-table__duur { text-align: left; }
  .tracks-table__group td { padding: 12px 20px; }
}

/* ── Juridische / tekstpagina's ── */
.legal { max-width: 760px; }
.legal h2 { font-size: 1.4rem; color: var(--navy); letter-spacing: -.01em; margin: 36px 0 12px; }
.legal h2:first-of-type { margin-top: 0; }
.legal h3 { font-size: 1.02rem; color: var(--navy); margin: 22px 0 8px; }
.legal p, .legal li { color: var(--muted); line-height: 1.72; font-size: 15px; }
.legal p { margin: 0 0 14px; }
.legal ul { margin: 0 0 16px; padding-left: 22px; }
.legal li { margin-bottom: 6px; }
.legal a { color: var(--orange); }
.legal strong { color: var(--text); }
.legal__updated { font-size: 13px; color: var(--muted-light); margin: 0 0 32px; }
.legal__note {
  background: #FFF3EB; border: 1px solid #F5C9A0; border-radius: 10px;
  padding: 16px 20px; font-size: 14px; color: #7A3A0A; line-height: 1.6; margin: 0 0 28px;
}
