:root {
  --ink: #111816;
  --ink-soft: #31413c;
  --muted: #5b6965;
  --line: #d9dfdb;
  --paper: #f7f8f5;
  --white: #ffffff;
  --teal: #0f766e;
  --teal-bright: #12a594;
  --copper: #c65f3d;
  --copper-soft: #f3ded5;
  --shadow: 0 20px 60px rgba(17, 24, 22, 0.12);
  --radius: 8px;
  --shell: min(1120px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: var(--shell);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 248, 245, 0.9);
  border-bottom: 1px solid rgba(217, 223, 219, 0.85);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  width: 222px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 650;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--teal);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms 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);
}

.hero {
  position: relative;
  min-height: 690px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("../img/founder/simon-kunkel-business-hero.jpg");
  background-size: cover;
  background-position: center 32%;
  opacity: 1;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(17, 24, 22, 0.96) 0%, rgba(17, 24, 22, 0.9) 36%, rgba(17, 24, 22, 0.42) 68%, rgba(17, 24, 22, 0.12) 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 120px);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 86px 0 72px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--teal-bright);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: 4.5rem;
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: 0;
}

h2 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: 2.35rem;
  line-height: 1.12;
  font-weight: 780;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.3;
  font-weight: 760;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: var(--radius);
  font-weight: 760;
  text-decoration: none;
  border: 1px solid transparent;
}

.button::after {
  content: "→";
  font-weight: 800;
}

.button-primary {
  background: var(--teal-bright);
  color: var(--ink);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #37c1b3;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.trust-row {
  max-width: 940px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 52px 0 0;
  background: rgba(255, 255, 255, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.trust-row div {
  padding: 18px;
  background: rgba(17, 24, 22, 0.72);
}

.trust-row dt {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.trust-row dd {
  margin: 0;
  color: var(--white);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.section {
  padding: 86px 0;
}

.muted {
  background: #eef2ee;
}

.split {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 72px;
  align-items: start;
}

.intro-copy {
  color: var(--ink-soft);
  font-size: 1.03rem;
}

.intro-copy p:last-child,
.section-heading p:last-child,
.expertise-copy p:last-child,
.contact-layout p:last-child {
  margin-bottom: 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading p {
  color: var(--muted);
}

.section-heading.compact {
  margin-bottom: 28px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  min-height: 230px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(17, 24, 22, 0.06);
}

.service-card p,
.process-list p,
.expertise-copy p,
.contact-layout p {
  color: var(--ink-soft);
}

.service-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 32px;
  margin-bottom: 24px;
  border-left: 3px solid var(--teal);
  color: var(--teal);
  font-weight: 800;
  font-size: 0.84rem;
}

.quickstart-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(280px, 0.72fr);
  gap: 34px;
  margin-top: 18px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.quickstart-panel .section-kicker {
  color: #63d8cb;
}

.quickstart-panel h3 {
  max-width: 640px;
  margin-bottom: 16px;
  font-size: 1.78rem;
  line-height: 1.16;
}

.quickstart-copy p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.74);
}

.quickstart-copy p:last-of-type {
  margin-bottom: 0;
}

.quickstart-copy .button {
  margin-top: 24px;
}

.quickstart-details {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.quickstart-price {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 1.35rem;
  line-height: 1.2;
  font-weight: 800;
}

.quickstart-details ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.quickstart-details li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 650;
}

.quickstart-details li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--teal-bright);
}

.quickstart-note {
  margin: 20px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

.tech-section {
  background: var(--paper);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.tech-card {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.tech-card h3 {
  max-width: 280px;
  color: var(--ink);
}

.tech-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.expertise-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 64px;
  align-items: center;
}

.expertise-image-wrap {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #dce2de;
}

.expertise-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.expertise-list {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.expertise-list li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
  font-weight: 650;
}

.expertise-list li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--copper);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--line);
  border: 1px solid var(--line);
}

.process-list li {
  min-height: 220px;
  padding: 24px;
  background: var(--paper);
}

.process-list span {
  display: block;
  margin-bottom: 34px;
  color: var(--teal);
  font-size: 0.85rem;
  font-weight: 800;
}

.contact-section {
  background: var(--ink);
  color: var(--white);
}

.contact-section .section-kicker {
  color: #63d8cb;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 54px;
  align-items: start;
}

.contact-layout p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-copy {
  max-width: 580px;
}

.contact-panel {
  display: grid;
  gap: 22px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-field {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 720;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font: inherit;
  letter-spacing: 0;
}

.form-field textarea {
  min-height: 138px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 3px solid rgba(99, 216, 203, 0.34);
  border-color: #63d8cb;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.46);
}

.form-field select option {
  color: var(--ink);
}

.honeypot-field {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-privacy {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
}

.form-privacy a {
  color: #63d8cb;
  text-decoration: none;
}

.form-privacy a:hover,
.form-privacy a:focus-visible {
  text-decoration: underline;
}

.contact-submit {
  width: fit-content;
  cursor: pointer;
}

.contact-submit.is-loading::after {
  content: "...";
}

.form-status {
  min-height: 1.55em;
  margin: 0;
  font-size: 0.94rem;
  font-weight: 720;
}

.form-status.is-success {
  color: #63d8cb;
}

.form-status.is-error {
  color: #ffd0bf;
}

.form-status.is-loading {
  color: rgba(255, 255, 255, 0.72);
}

.contact-direct {
  display: grid;
  gap: 9px;
  padding: 0 28px;
  font-style: normal;
}

.contact-link {
  text-decoration: none;
  color: var(--white);
  font-weight: 720;
}

.contact-link:hover,
.contact-link:focus-visible {
  color: #63d8cb;
}

.contact-direct span {
  color: rgba(255, 255, 255, 0.68);
}

.site-footer {
  padding: 24px 0;
  background: #0b100f;
  color: rgba(255, 255, 255, 0.72);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 0.92rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 750;
  text-decoration: none;
}

.footer-inner p {
  margin: 0;
}

@media (min-width: 921px) and (max-width: 1400px) {
  h1 {
    max-width: 680px;
    font-size: 4rem;
  }

  .hero-lead {
    max-width: 640px;
  }
}

@media (max-width: 920px) {
  .hero {
    min-height: auto;
    align-items: end;
  }

  .hero-media {
    position: relative;
    min-height: 420px;
    background-size: cover;
    background-position: 68% 24%;
    opacity: 1;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(17, 24, 22, 0.18) 0%, rgba(17, 24, 22, 0.9) 64%, rgba(17, 24, 22, 1) 100%);
  }

  .hero-content {
    margin-top: -142px;
    padding: 0 0 64px;
  }

  h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2rem;
  }

  .split,
  .expertise-layout,
  .contact-layout,
  .quickstart-panel {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

  .tech-grid {
    grid-template-columns: 1fr;
  }

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

  .trust-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  :root {
    --shell: min(100% - 28px, 1120px);
  }

  .header-inner {
    min-height: 64px;
  }

  .brand {
    width: 188px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 64px;
    left: 14px;
    right: 14px;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 14px 12px;
    border-radius: 6px;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: #eef2ee;
  }

  .hero {
    min-height: auto;
    align-items: end;
  }

  .hero-media {
    min-height: 300px;
    background-position: 68% 24%;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(17, 24, 22, 0.18) 0%, rgba(17, 24, 22, 1) 100%);
  }

  .hero-content {
    margin-top: -118px;
    padding: 0 0 48px;
  }

  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero-lead {
    font-size: 1.04rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .trust-row {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .section {
    padding: 62px 0;
  }

  .service-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .service-card,
  .tech-card,
  .process-list li {
    min-height: auto;
  }

  .quickstart-panel {
    padding: 24px;
  }

  .contact-form {
    padding: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-direct {
    padding: 0 24px;
  }

  .quickstart-panel h3 {
    font-size: 1.42rem;
  }

  .expertise-image-wrap {
    max-width: 520px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #63d8cb;
}

.coming-page {
  min-height: 100vh;
  background: var(--paper);
}

.coming-header {
  position: relative;
  z-index: 20;
  background: rgba(247, 248, 245, 0.94);
  border-bottom: 1px solid rgba(217, 223, 219, 0.85);
  backdrop-filter: blur(16px);
}

.coming-header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.coming-header-link,
.legal-top-nav a {
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.coming-header-link:hover,
.coming-header-link:focus-visible,
.legal-top-nav a:hover,
.legal-top-nav a:focus-visible {
  color: var(--teal);
}

.coming-hero {
  position: relative;
  min-height: calc(100svh - 72px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.coming-hero-media,
.coming-hero-shade {
  position: absolute;
  inset: 0;
}

.coming-hero-media {
  background-image: url("../img/brand/kernspur-systems-workspace.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.55;
  filter: saturate(0.88);
}

.coming-hero-shade {
  background:
    linear-gradient(90deg, rgba(17, 24, 22, 0.96) 0%, rgba(17, 24, 22, 0.86) 42%, rgba(17, 24, 22, 0.36) 100%),
    radial-gradient(circle at 72% 18%, rgba(18, 165, 148, 0.24), transparent 34%);
}

.coming-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  align-items: end;
  gap: 56px;
  padding: 88px 0 72px;
}

.coming-copy {
  max-width: 760px;
}

.coming-lead {
  max-width: 700px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.28rem;
  line-height: 1.65;
}

.coming-value {
  max-width: 660px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.02rem;
}

.coming-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.coming-panel {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(17, 24, 22, 0.62);
  padding: 26px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.panel-label {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.coming-focus-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.coming-focus-list li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.coming-focus-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--teal-bright);
}

.coming-contact {
  padding: 74px 0;
  background: var(--white);
}

.coming-contact-alt {
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.coming-contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 390px);
  gap: 48px;
  align-items: start;
}

.coming-contact h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.coming-benefits,
.coming-address {
  display: grid;
  gap: 12px;
  margin: 0;
  color: var(--ink-soft);
  font-style: normal;
  font-weight: 700;
}

.coming-benefits p {
  margin: 0;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.coming-address a {
  color: var(--teal);
  text-decoration: none;
}

.coming-address a:hover,
.coming-address a:focus-visible {
  text-decoration: underline;
}

.legal-page {
  background: var(--paper);
}

.legal-top-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
}

.legal-main {
  padding: 72px 0 86px;
}

.legal-content {
  max-width: 860px;
}

.legal-content h1 {
  font-size: 3.2rem;
  overflow-wrap: anywhere;
}

.legal-content h2 {
  margin-top: 42px;
  font-size: 1.45rem;
}

.legal-content a {
  color: var(--teal);
}

@media (max-width: 960px) {
  .coming-hero-inner,
  .coming-contact-inner {
    grid-template-columns: 1fr;
  }

  .coming-panel {
    max-width: 520px;
  }
}

@media (max-width: 720px) {
  .coming-header-inner {
    min-height: 64px;
  }

  .coming-header-link {
    display: none;
  }

  .coming-hero {
    min-height: auto;
  }

  .coming-hero-shade {
    background:
      linear-gradient(180deg, rgba(17, 24, 22, 0.58) 0%, rgba(17, 24, 22, 0.98) 58%, rgba(17, 24, 22, 1) 100%),
      radial-gradient(circle at 72% 10%, rgba(18, 165, 148, 0.26), transparent 35%);
  }

  .coming-hero-inner {
    gap: 36px;
    padding: 86px 0 56px;
  }

  .coming-lead {
    font-size: 1.06rem;
  }

  .coming-actions {
    display: grid;
  }

  .coming-panel {
    padding: 22px;
  }

  .coming-contact {
    padding: 58px 0;
  }

  .legal-main {
    padding: 52px 0 64px;
  }

  .legal-content h1 {
    font-size: 2.18rem;
    line-height: 1.08;
  }

  .legal-top-nav {
    justify-content: flex-end;
    gap: 14px;
  }
}
