:root {
  --navy-950: #061629;
  --navy-900: #0a223c;
  --navy-800: #133759;
  --navy-700: #1e4f78;
  --petrol-500: #16c5bf;
  --petrol-600: #0fa5a0;
  --text-900: #10253b;
  --text-700: #455c73;
  --text-500: #688096;
  --surface: #ffffff;
  --surface-soft: #f4f7fb;
  --surface-muted: #eef4f7;
  --border: #d6e2ea;
  --shadow-soft: 0 20px 50px rgba(8, 32, 58, 0.12);
  --shadow-card: 0 10px 28px rgba(8, 32, 58, 0.06);
  --radius-card: 18px;
  --radius-button: 12px;
  --container: 1160px;
  /* Header + Footer: gleiche Balkenfarbe */
  --bar-surface: rgba(6, 22, 41, 0.95);
}

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

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

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-900);
  background: var(--surface);
  line-height: 1.65;
}

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

main,
section,
header,
footer {
  width: 100%;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--petrol-500);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 1rem;
  z-index: 1000;
  background: #fff;
  color: #000;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
}

.skip-link:focus {
  left: 1rem;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: clamp(4rem, 7vw, 6.5rem) 0;
}

.section-soft {
  background: var(--surface-soft);
}

.section-heading {
  margin-bottom: 2.2rem;
}

.section-heading.center {
  text-align: center;
}

.eyebrow {
  margin: 0 0 0.9rem;
  font-size: 0.8rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-weight: 700;
  color: var(--petrol-500);
}

h1,
h2,
h3 {
  margin: 0 0 0.9rem;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.35rem);
  color: #fff;
}

h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

h3 {
  font-size: 1.28rem;
}

p,
ul {
  margin: 0 0 1rem;
  color: var(--text-700);
}

ul {
  padding-left: 1.1rem;
}

.plain-list {
  padding-left: 1rem;
  margin-bottom: 0.35rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--bar-surface);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  text-decoration: none;
  display: inline-flex;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-list a {
  text-decoration: none;
  color: #dbe7f3;
  font-weight: 500;
}

.nav-list a:hover {
  color: #fff;
}

.hero {
  overflow: clip;
  padding: clamp(4.25rem, 8vw, 7.5rem) 0 clamp(4.5rem, 8vw, 7rem);
  background:
    radial-gradient(circle at 82% 18%, rgba(28, 91, 130, 0.85), transparent 28%),
    radial-gradient(circle at 92% 14%, rgba(22, 197, 191, 0.12), transparent 12%),
    linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 55%, #0b2d4b 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: center;
}

.hero-copy {
  max-width: 670px;
}

.hero-lead {
  font-size: 1.08rem;
  color: #d4dfeb;
  max-width: 58ch;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.72rem 1.25rem;
  border-radius: var(--radius-button);
  font-weight: 650;
  text-decoration: none;
  border: 1px solid transparent;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--petrol-500);
  color: #032325;
}

.btn-primary:hover {
  background: var(--petrol-600);
  color: #fff;
}

.btn-secondary {
  color: #f4f9ff;
  border-color: rgba(221, 232, 242, 0.32);
  background: rgba(255, 255, 255, 0.03);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.42);
}

.btn-outline {
  border-color: #87d9d5;
  color: #117f7a;
  background: #fff;
}

.btn-outline:hover {
  background: #effbfa;
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.screen {
  position: absolute;
  background: #fdfefe;
  border: 1px solid rgba(214, 226, 234, 0.9);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.screen-main {
  top: 0;
  right: 0;
  width: min(100%, 560px);
}

.screen-form {
  right: 0.75rem;
  bottom: 1.8rem;
  width: 210px;
  z-index: 2;
}

.screen-mobile {
  left: 2rem;
  bottom: -0.75rem;
  width: 170px;
  z-index: 3;
}

.screen-top {
  height: 24px;
  border-bottom: 1px solid #dde8f1;
  background: linear-gradient(to bottom, #fbfdff, #eff4f8);
  border-radius: 18px 18px 0 0;
}

.screen-body {
  padding: 1rem;
}

.screen-body.compact {
  padding: 0.85rem;
}

.ui-nav,
.ui-copy,
.field {
  border-radius: 999px;
  background: #dce8f2;
}

.ui-nav {
  height: 10px;
  width: 38%;
  margin-bottom: 1rem;
}

.ui-hero {
  border-radius: 14px;
  padding: 1rem;
  background: linear-gradient(135deg, #103755 0%, #1e607a 100%);
  margin-bottom: 1rem;
}

.ui-copy {
  height: 12px;
  width: 72%;
  margin-bottom: 0.65rem;
  background: rgba(244, 250, 255, 0.7);
}

.ui-copy.short {
  width: 54%;
}

.ui-copy.shortest {
  width: 34%;
  margin-bottom: 0;
}

.ui-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.ui-grid span {
  display: block;
  min-height: 74px;
  border-radius: 10px;
  background: linear-gradient(135deg, #123a57 0%, #2e8f97 100%);
}

.field {
  height: 11px;
  margin-bottom: 0.55rem;
}

.field.small {
  width: 66%;
}

.cta-chip {
  margin-top: 0.7rem;
  width: 56%;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #16c5bf 0%, #158f98 100%);
}

.cta-chip.full {
  width: 100%;
}

.problems {
  border-top: 1px solid rgba(214, 226, 234, 0.55);
}

.problems-head {
  max-width: 40rem;
  margin-bottom: clamp(1.25rem, 3vw, 1.85rem);
}

.problems-head h2 {
  text-align: left;
}

.problems-lead {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.68;
  color: var(--text-700);
}

/* Hauptbereich: drei Problemkarten (Zeilen per Subgrid ausgerichtet) */
.problem-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: auto 1fr auto;
  grid-auto-rows: auto 1fr auto;
  gap: 0.65rem clamp(1rem, 2.5vw, 1.35rem);
  margin-bottom: clamp(1.15rem, 2.5vw, 1.6rem);
  align-items: stretch;
}

.problem-card {
  padding: 1.15rem 1.2rem 1.15rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e1eaf0;
  box-shadow: 0 10px 28px rgba(8, 32, 58, 0.07);
  min-width: 0;
}

@supports (grid-template-rows: subgrid) {
  .problem-card {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    gap: 0;
  }

  .problem-card__head {
    align-self: stretch;
    height: 100%;
  }
}

@supports not (grid-template-rows: subgrid) {
  .problem-card {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    min-height: 100%;
  }

  .problem-card__body {
    flex: 1 1 auto;
  }
}

.problem-card__head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 0;
}

.problem-card__icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(22, 197, 191, 0.1);
  border: 1px solid rgba(22, 197, 191, 0.22);
  color: var(--petrol-600);
}

.problem-card__icon svg {
  display: block;
}

.problem-card__head h3 {
  margin: 0;
  font-size: 1.08rem;
  color: var(--text-900);
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.problem-card__body {
  min-height: 0;
}

.problem-card__list {
  margin: 0;
  padding: 0.4rem 0 0.4rem 1rem;
  list-style-position: outside;
  border-left: 3px solid rgba(22, 197, 191, 0.32);
}

.problem-card__list li {
  margin: 0 0 0.35rem;
  padding-left: 0.35rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-700);
}

.problem-card__list li:last-child {
  margin-bottom: 0;
}

.problem-card__list li::marker {
  color: var(--petrol-600);
}

.problem-card__foot {
  padding-top: 0.75rem;
  border-top: 1px solid #e8eef4;
  align-self: stretch;
}

.problem-card__note {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
  font-weight: 600;
  color: var(--navy-800);
}

/* Kompakter Analyse-/Schwachstellenbereich darunter */
.problems-analyse {
  max-width: 100%;
  padding: 0.75rem 1rem 0.85rem;
  border-radius: 12px;
  background: var(--surface-muted);
  border: 1px solid #e4ecf2;
  box-shadow: 0 2px 10px rgba(8, 32, 58, 0.04);
}

.problems-analyse__title {
  margin: 0 0 0.55rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--petrol-600);
}

.problems-analyse__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.problems-analyse__chips li {
  font-size: 0.78rem;
  line-height: 1.35;
  font-weight: 500;
  color: var(--navy-800);
  padding: 0.32rem 0.6rem 0.34rem;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #dde8ef;
  box-shadow: 0 1px 2px rgba(8, 32, 58, 0.04);
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.78fr);
  gap: clamp(2rem, 5vw, 3.75rem);
  align-items: start;
}

.services-copy {
  max-width: 36rem;
}

.services-copy .eyebrow {
  letter-spacing: 0.13em;
  opacity: 0.95;
}

.services-copy h2 {
  text-align: left;
  margin-bottom: 1.1rem;
  line-height: 1.14;
}

.services-intro {
  max-width: none;
}

.services-intro p {
  line-height: 1.68;
  color: var(--text-700);
  margin-bottom: 0.85rem;
}

.services-intro p:last-child {
  margin-bottom: 0;
}

.services-competencies {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0.15rem 0 0;
  border-left: 1px solid rgba(22, 197, 191, 0.18);
  padding-left: clamp(1.25rem, 3vw, 1.85rem);
  margin-left: 0.15rem;
}

.competency {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem 1rem;
  padding: clamp(1rem, 2.2vw, 1.35rem) 0;
  border-bottom: 1px solid rgba(214, 226, 234, 0.65);
}

.competency:first-child {
  padding-top: 0;
}

.competency:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.competency__mark {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  margin-top: 0.12rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(22, 197, 191, 0.07);
  border: 1px solid rgba(22, 197, 191, 0.18);
  color: var(--petrol-600);
}

.competency__mark svg {
  display: block;
}

.competency__copy {
  min-width: 0;
}

.competency h3 {
  margin: 0 0 0.4rem;
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.28;
  color: var(--text-900);
}

.competency p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.56;
  color: var(--text-700);
}

@media (max-width: 960px) {
  .services-layout {
    grid-template-columns: 1fr;
    gap: clamp(1.75rem, 4vw, 2.5rem);
  }

  .services-competencies {
    border-left: 0;
    padding-left: 0;
    margin-left: 0;
    padding-top: 0.35rem;
    border-top: 1px solid rgba(214, 226, 234, 0.75);
  }

  .competency:first-child {
    padding-top: clamp(0.85rem, 2vw, 1.1rem);
  }
}

.process-timeline {
  list-style: none;
  margin: 0;
  padding: 0.3rem 0 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.process-timeline li {
  position: relative;
  text-align: center;
  padding: 0.2rem 0.7rem 0;
}

.process-timeline li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 1.15rem;
  left: calc(100% - 0.2rem);
  width: 1.35rem;
  height: 2px;
  background: linear-gradient(90deg, rgba(22, 197, 191, 0.65), rgba(22, 197, 191, 0.2));
}

.timeline-step {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.95rem;
  background: #18bdb6;
  color: #fff;
  font-weight: 700;
}

.process-timeline h3 {
  font-size: 1.03rem;
  margin-bottom: 0.45rem;
}

.process-timeline p {
  margin: 0;
  font-size: 0.94rem;
}

.tech-trust-section {
  padding-top: 3.6rem;
}

.tech-trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 2rem;
  align-items: stretch;
}

.tech-stack h2 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  margin-bottom: 0.85rem;
}

.tech-stack-intro {
  margin: 0 0 1.45rem;
  max-width: 46rem;
  font-size: 0.94rem;
  line-height: 1.62;
  color: var(--text-700);
}

.tech-categories {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.tech-category {
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(214, 226, 234, 0.75);
}

.tech-category:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.tech-category__title {
  margin: 0 0 0.5rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--petrol-600);
  line-height: 1.35;
}

.tech-category__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem 0.48rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tech-category__tags li {
  margin: 0;
}

.tech-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.36rem 0.72rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  box-shadow: 0 1px 2px rgba(8, 32, 58, 0.05);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy-800);
  line-height: 1.35;
}

.tech-tag--note {
  font-weight: 500;
  font-style: italic;
  color: var(--text-700);
  border-style: dashed;
  border-color: rgba(22, 197, 191, 0.32);
  background: rgba(22, 197, 191, 0.045);
  box-shadow: none;
}

.trust-panel {
  border-radius: 24px;
  padding: clamp(1.5rem, 3vw, 2rem);
  border: 1px solid #d5e7ee;
  background: linear-gradient(120deg, #f8fbfe 0%, #eef8f7 100%);
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 1rem;
  align-items: start;
}

.trust-icon {
  width: 74px;
  height: 74px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  background: rgba(22, 197, 191, 0.08);
}

.cta-band {
  padding: clamp(2.75rem, 5.5vw, 3.75rem) 0 clamp(3.25rem, 7vw, 5.25rem);
  background: linear-gradient(180deg, var(--surface-soft) 0%, #e9f0f8 55%, #e2ebf4 100%);
}

.cta-band-inner {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  border-radius: 20px;
  background: linear-gradient(150deg, var(--navy-900) 0%, #0f3552 48%, #143956 100%);
  color: #fff;
  border: 1px solid rgba(22, 197, 191, 0.28);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.07) inset,
    0 20px 44px rgba(6, 22, 41, 0.22),
    0 6px 16px rgba(6, 22, 41, 0.12);
}

.cta-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(22, 197, 191, 0.12);
  border: 1px solid rgba(22, 197, 191, 0.2);
  color: var(--petrol-500);
  font-size: 1.8rem;
}

.cta-band-inner h2,
.cta-band-inner p {
  color: #f0f6fc;
}

.cta-band-inner p {
  color: rgba(230, 241, 250, 0.92);
  line-height: 1.62;
}

footer {
  background: var(--bar-surface);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #d7e4ef;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.foot {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr 1fr;
  gap: 2rem;
  padding: 1rem 0 2rem;
}

.footer-col p,
.footer-col li,
.footer-bottom p {
  color: #d7e4ef;
}

.footer-col ul,
.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 0.45rem;
}

.footer-col a {
  color: #d7e4ef;
  text-decoration: none;
}

.footer-col a:hover,
.footer-bottom a:hover {
  color: #fff;
}

.footer-heading {
  display: inline-block;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.footer-brand img {
  margin-bottom: 0.75rem;
}

.contact-list .label {
  display: inline-block;
  min-width: 58px;
  color: #a9bfd2;
}

.social-icons {
  display: flex;
  gap: 0.75rem;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.02);
  font-weight: 700;
}

.footer-bottom {
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.95rem 1rem 1.2rem;
  text-align: center;
}

.footer-bottom p,
.footer-bottom a {
  color: #d7e4ef;
  margin: 0;
  text-decoration: none;
}

@media (max-width: 1120px) {
  .hero-grid,
  .tech-trust-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 620px;
  }

  .process-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-timeline li::after {
    display: none;
  }

  .foot {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .header-inner {
    min-height: auto;
    padding: 0.9rem 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .problem-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-visual {
    min-height: 450px;
  }

  .screen-main {
    position: relative;
    width: 100%;
  }

  .screen-form {
    right: 0;
    bottom: 1rem;
  }

  .screen-mobile {
    left: 0.75rem;
  }

  .cta-band-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }

  .nav-list {
    flex-wrap: wrap;
    row-gap: 0.5rem;
  }

  .hero-visual {
    min-height: 360px;
  }

  .screen-form {
    width: 170px;
  }

  .screen-mobile {
    width: 132px;
    left: 0.4rem;
    bottom: -0.25rem;
  }

  .process-timeline,
  .foot {
    grid-template-columns: 1fr;
  }

  .problem-cards {
    grid-template-columns: 1fr;
  }

  .trust-panel {
    grid-template-columns: 1fr;
  }

  .process-timeline li {
    padding: 1rem;
  }
}

/* Rechtstexte (Impressum, Datenschutz) */
.legal-page {
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(4rem, 8vw, 5.5rem);
}

.legal-page__inner {
  max-width: 44rem;
}

.legal-page h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(1.85rem, 3.2vw, 2.35rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-900);
}

.legal-page h2 {
  margin: 2.1rem 0 0.55rem;
  font-size: clamp(1.05rem, 1.9vw, 1.22rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--text-900);
}

.legal-page__inner > section:first-of-type > h2 {
  margin-top: 0;
}

.legal-page h3 {
  margin: 1.35rem 0 0.45rem;
  font-size: clamp(0.98rem, 1.65vw, 1.12rem);
  line-height: 1.28;
  letter-spacing: -0.015em;
  color: var(--text-900);
}

.legal-page h2 + h3 {
  margin-top: 0.75rem;
}

.legal-page h4 {
  margin: 1rem 0 0.4rem;
  font-size: 0.93rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--navy-800);
}

.legal-caps {
  font-size: 0.72rem;
  line-height: 1.55;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-700);
}

.legal-section + .legal-section {
  margin-top: 0.25rem;
}

.legal-page p,
.legal-page li {
  font-size: 0.95rem;
  line-height: 1.62;
  color: var(--text-700);
}

.legal-page ul {
  margin: 0 0 1rem;
}

.legal-page a:not(.btn) {
  color: var(--petrol-600);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.legal-page a:not(.btn):hover {
  color: var(--petrol-500);
}
