/* ═══════════════════════════════════════════════════
   Studio28 – Landingpage Stylesheet
   Gleiche Designsprache wie Studio28-Website (Angular),
   portiert als reines CSS ohne Sass/Build-Step.
═══════════════════════════════════════════════════ */

/* ── Bunny Fonts (DSGVO-konform, EU-gehostet) ── */
@import url('https://fonts.bunny.net/css?family=inter:400,500,600,700,800,900&display=swap');

/* ── CSS-Variablen (identisch zu styles.scss) ── */
:root {
  --color-cream:      #f0ede4;
  --color-pink:       #d9a7b0;
  --color-blue:       #4a90e2;
  --color-navy:       #202640;
  --color-terracotta: #bf7e64;

  --color-blue-rgb:   74, 144, 226;
  --color-pink-rgb:   217, 167, 176;
  --color-navy-rgb:   32, 38, 64;

  --color-blue-dark:  #3a7ed4;
  --color-pink-dark:  #c8909a;
  --color-navy-light: #2a3260;
  --color-navy-deep:  #1a1f38;

  --color-bg:          #ffffff;
  --color-text:        #202640;
  --color-text-light:  #5a6080;
  --color-border:      #e8e4dc;
  --color-placeholder: #b0b8c8;
  --color-error:       #e05555;

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-full: 999px;

  --shadow-sm: 0 1px 4px rgba(32, 38, 64, .06);
  --shadow-md: 0 4px 20px rgba(32, 38, 64, .1);
  --shadow-lg: 0 12px 48px rgba(32, 38, 64, .14);

  --transition: .25s ease;
}

/* ── Reset ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

main {
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--color-cream); }
::-webkit-scrollbar-thumb { background: var(--color-pink); border-radius: 3px; }

/* ── Layout ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
}

/* ── Typography helpers ── */
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-blue);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-navy);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-light);
  max-width: 600px;
  margin: .75rem auto 0;
}

/* ── Button system ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.75rem;
  border-radius: var(--radius-full);
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-blue);
  color: #fff;
}
.btn-primary:hover {
  background: var(--color-blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(74, 144, 226, .35);
}

.btn-outline {
  background: transparent;
  color: var(--color-navy);
  border: 2px solid var(--color-navy);
}
.btn-outline:hover {
  background: var(--color-navy);
  color: #fff;
  transform: translateY(-1px);
}

.btn-ghost {
  background: rgba(255, 255, 255, .12);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .3);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, .22);
}


/* ═══════════════════════════════════════
   HEADER
═══════════════════════════════════════ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
  padding: 1.5rem 0;
}

.header--scrolled {
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 24px rgba(32, 38, 64, .1);
  padding: 1rem 0;
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.header__logo img {
  height: 44px;
  width: auto;
  transition: filter var(--transition);
  filter: brightness(0) invert(1);
}

.header--scrolled .header__logo img {
  filter: none;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: .25rem;
  margin-left: auto;
}

@media (max-width: 700px) {
  .header__nav { display: none; }
}

.header__nav-link {
  padding: .5rem .9rem;
  border-radius: var(--radius-full);
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .85);
  transition: all var(--transition);
}

.header__nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, .1);
}

.header--scrolled .header__nav-link {
  color: var(--color-navy);
}

.header--scrolled .header__nav-link:hover {
  color: var(--color-blue);
  background: transparent;
}

/* Burger */
.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  margin-left: auto;
}

@media (max-width: 700px) {
  .header__burger { display: flex; }
}

.header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255, 255, 255, .9);
  border-radius: 2px;
  transition: all .3s ease;
  transform-origin: center;
}

.header--scrolled .header__burger span {
  background: var(--color-navy);
}

.header__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.header__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.header__mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, .98);
  backdrop-filter: blur(12px);
  padding: 1.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: .25rem;
  box-shadow: 0 8px 32px rgba(32, 38, 64, .12);
  animation: slideDown .25s ease;
}

.header__mobile-menu.is-hidden { display: none; }

.header__mobile-link {
  padding: .75rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-navy);
  border-radius: var(--radius-md);
  transition: background var(--transition);
  display: block;
}

.header__mobile-link:hover {
  background: var(--color-cream);
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--color-navy);
  overflow: hidden;
}

/* Hintergrundbild */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(32, 38, 64, .82) 0%,
    rgba(32, 38, 64, .65) 50%,
    rgba(26, 31, 56, .78) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-top: 8rem;
  padding-bottom: 6rem;
  max-width: 800px;
}

.hero__label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--color-pink);
  margin-bottom: 1.25rem;
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.025em;
  color: #fff;
  margin-bottom: 1.5rem;
}

.hero__title span {
  color: var(--color-pink);
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, .7);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Scroll-Indikator */
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.hero__scroll span {
  display: block;
  width: 20px;
  height: 32px;
  border: 2px solid rgba(255, 255, 255, .3);
  border-radius: 10px;
  position: relative;
}

.hero__scroll span::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 7px;
  background: rgba(255, 255, 255, .5);
  border-radius: 2px;
  animation: scrollBob 1.8s ease-in-out infinite;
}

@keyframes scrollBob {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50%       { transform: translateX(-50%) translateY(8px); opacity: .3; }
}


/* ═══════════════════════════════════════
   KUNDENHINWEIS
═══════════════════════════════════════ */
.notice-bar {
  background: rgba(74, 144, 226, .08);
  border-top: 1px solid rgba(74, 144, 226, .2);
  border-bottom: 1px solid rgba(74, 144, 226, .2);
  padding: 1rem 0;
}

.notice-bar__inner {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}

.notice-bar__icon {
  flex-shrink: 0;
  color: var(--color-blue);
  margin-top: .1rem;
}

.notice-bar p {
  font-size: .925rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

.notice-bar strong {
  color: var(--color-navy);
  font-weight: 700;
}

.notice-bar a {
  color: var(--color-blue);
  text-decoration: none;
}

.notice-bar a:hover {
  text-decoration: underline;
}


/* ═══════════════════════════════════════
   SPLIT SECTION (Mika & Lennart)
═══════════════════════════════════════ */
.split {
  background: var(--color-cream);
  padding: 7rem 0;
}

.split__header {
  text-align: center;
  margin-bottom: 4rem;
}

.split__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .split__grid { grid-template-columns: 1fr; }
}

/* Person-Karte */
.person-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--color-border);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.person-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.person-card__photo {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
}

.person-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .5s ease;
}

.person-card:hover .person-card__photo img {
  transform: scale(1.03);
}

/* Fallback wenn kein Foto vorhanden */
.person-card__photo-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, .15);
  letter-spacing: -.05em;
  font-family: 'Inter', sans-serif;
  pointer-events: none;
}

.person-card__body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.person-card__logo {
  height: 44px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 1.1rem;
  display: block;
}

.person-card__name {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: .25rem;
  letter-spacing: -.02em;
}

.person-card__title {
  font-size: .95rem;
  color: var(--color-text-light);
  margin-bottom: 1.25rem;
}

.person-card__desc {
  font-size: .95rem;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 1.75rem;
  flex: 1;
}

.person-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.75rem;
}

.person-card__tag {
  font-size: .8rem;
  font-weight: 500;
  color: var(--color-navy);
  background: var(--color-cream);
  padding: .3rem .75rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
}

.person-card__cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.75rem;
  border-radius: var(--radius-full);
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  align-self: flex-start;
}

.person-card__cta svg {
  transition: transform var(--transition);
}

.person-card:hover .person-card__cta svg {
  transform: translateX(3px);
}

.person-card__cta--blue {
  background: var(--color-blue);
  color: #fff;
}
.person-card__cta--blue:hover {
  background: var(--color-blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(74, 144, 226, .35);
}

.person-card__cta--pink {
  background: var(--color-pink);
  color: #fff;
}
.person-card__cta--pink:hover {
  background: var(--color-pink-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(217, 167, 176, .4);
}


/* ═══════════════════════════════════════
   INFO BANNER (Hinweis auf alte Seite)
═══════════════════════════════════════ */
.info-banner {
  background: var(--color-navy);
  padding: 4rem 0;
}

.info-banner__inner {
  display: flex;
  align-items: center;
  gap: 3rem;
}

@media (max-width: 768px) {
  .info-banner__inner {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

.info-banner__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: rgba(74, 144, 226, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-blue);
}

.info-banner__text {
  flex: 1;
}

.info-banner__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .4rem;
}

.info-banner__sub {
  font-size: .9rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.6;
}

.info-banner__link {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .8);
  border: 1.5px solid rgba(255, 255, 255, .2);
  transition: all var(--transition);
  white-space: nowrap;
}

.info-banner__link:hover {
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border-color: rgba(255, 255, 255, .4);
}


/* ═══════════════════════════════════════
   FOOTER (vereinfacht)
═══════════════════════════════════════ */
.footer {
  background: var(--color-navy-deep);
  color: rgba(255, 255, 255, .75);
}

.footer__main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding: 4rem 0 3rem;
}

@media (max-width: 768px) {
  .footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

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

.footer__logo {
  height: 38px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;
}

.footer__tagline {
  font-size: .9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, .45);
  max-width: 240px;
  margin-bottom: 1.5rem;
}

.footer__socials {
  display: flex;
  gap: .6rem;
}

.footer__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .6);
  transition: all var(--transition);
}

.footer__socials a:hover {
  background: var(--color-pink);
  color: #fff;
  transform: translateY(-2px);
}

.footer__heading {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
  margin-bottom: 1.25rem;
}

.footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.footer__list a,
.footer__list span {
  font-size: .9rem;
  color: rgba(255, 255, 255, .55);
  transition: color var(--transition);
}

.footer__list a:hover {
  color: var(--color-pink);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding: 1.25rem 0;
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 560px) {
  .footer__bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

.footer__copyright {
  font-size: .8rem;
  color: rgba(255, 255, 255, .35);
}

.footer__legal {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.footer__legal a {
  font-size: .8rem;
  color: rgba(255, 255, 255, .35);
  transition: color var(--transition);
}

.footer__legal a:hover {
  color: var(--color-pink);
}

.footer__legal a:not(:last-child)::after {
  content: " · ";
  color: rgba(255, 255, 255, .3);
  margin-left: .35rem;
  pointer-events: none;
}


/* ╔══════════════════════════════════════════════════════════════════╗
   ║  TEMPORÄR – Modal-Styles für "In Kürze verfügbar" (Lennart)     ║
   ║  Komplett löschen sobald lennart.studio28.online live ist:       ║
   ║  Alles von hier bis einschließlich "ENDE TEMPORÄR" entfernen.   ║
   ╚══════════════════════════════════════════════════════════════════╝ */

/* ═══════════════════════════════════════
   MODAL
═══════════════════════════════════════ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(32, 38, 64, .55);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: fadeIn .2s ease;
}

.modal-backdrop.is-hidden {
  display: none;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.modal {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem 2rem;
  max-width: 420px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: slideUp .25s ease;
  text-align: center;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text-light);
  padding: .25rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  line-height: 0;
}

.modal__close:hover {
  color: var(--color-navy);
  background: var(--color-cream);
}

.modal__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: rgba(74, 144, 226, .1);
  color: var(--color-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.modal__title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: .75rem;
  letter-spacing: -.02em;
}

.modal__text {
  font-size: .95rem;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.modal__cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.5rem;
  border-radius: var(--radius-full);
  background: var(--color-blue);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
  margin-bottom: .75rem;
  word-break: break-all;
}

.modal__cta:hover {
  background: var(--color-blue-dark);
  transform: translateY(-1px);
}

.modal__dismiss {
  display: block;
  width: 100%;
  padding: .7rem;
  border: none;
  background: none;
  font-family: 'Inter', sans-serif;
  font-size: .875rem;
  color: var(--color-text-light);
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}

.modal__dismiss:hover {
  background: var(--color-cream);
  color: var(--color-navy);
}

/* ENDE TEMPORÄR ─────────────────────────────────────────────────────────── */


/* ═══════════════════════════════════════
   LEGAL SEITEN (Impressum, Datenschutz, AGB)
═══════════════════════════════════════ */
.legal-hero {
  background: var(--color-navy);
  padding: 8rem 0 3.5rem;
}

.legal-hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  margin: .5rem 0;
  letter-spacing: -.02em;
}

.legal-hero__sub {
  font-size: .95rem;
  color: rgba(255, 255, 255, .5);
}

.legal-body {
  background: var(--color-cream);
  padding: 4rem 0 6rem;
}

.legal-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 768px) {
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.legal-nav {
  position: sticky;
  top: 6rem;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1.5px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: .25rem;
}

@media (max-width: 768px) {
  .legal-nav {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: .5rem;
  }
}

.legal-nav__label {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--color-text-light);
  margin-bottom: .5rem;
  width: 100%;
}

@media (max-width: 768px) {
  .legal-nav__label { width: 100%; }
}

.legal-nav__link {
  font-size: .875rem;
  font-family: 'Inter', sans-serif;
  color: var(--color-text-light);
  padding: .45rem .75rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  width: 100%;
  text-decoration: none;
  display: block;
}

.legal-nav__link:hover {
  background: var(--color-cream);
  color: var(--color-navy);
}

@media (max-width: 768px) {
  .legal-nav__link { width: auto; }
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
  overflow-wrap: break-word;
}

.legal-section {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.25rem 2.5rem;
  border: 1.5px solid var(--color-border);
  margin-bottom: 1.25rem;
  min-width: 0;
  overflow-wrap: break-word;
}

@media (max-width: 480px) {
  .legal-section { padding: 1.5rem 1.25rem; }
}

.legal-section:last-of-type { margin-bottom: 0; }

.legal-section__title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--color-cream);
  overflow-wrap: break-word;
}

.legal-block {
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .3rem;
  min-width: 0;
  overflow-wrap: break-word;
}

.legal-block:last-child { margin-bottom: 0; }

.legal-block p,
.legal-block span { font-size: .95rem; color: var(--color-text-light); line-height: 1.6; }

.legal-block a { color: var(--color-blue); }
.legal-block a:hover { text-decoration: underline; }

.legal-company {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-navy);
}

.legal-legal-name {
  font-size: .875rem;
  color: var(--color-text-light);
  margin-bottom: .25rem;
}

.legal-row {
  display: flex;
  gap: 1rem;
  font-size: .925rem;
  color: var(--color-text-light);
  padding: .5rem 0;
  border-bottom: 1px solid var(--color-border);
  flex-wrap: wrap;
  min-width: 0;
}

.legal-row:last-child { border-bottom: none; }

.legal-row__label {
  font-weight: 600;
  color: var(--color-navy);
  min-width: 100px;
  flex-shrink: 0;
}

.legal-row a { color: var(--color-blue); overflow-wrap: break-word; }
.legal-row a:hover { text-decoration: underline; }

.legal-text {
  font-size: .925rem;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
  overflow-wrap: break-word;
}

.legal-text:last-child { margin-bottom: 0; }

.legal-text a { color: var(--color-blue); overflow-wrap: break-word; }
.legal-text a:hover { text-decoration: underline; }

.legal-list {
  margin: .75rem 0 .75rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

.legal-list li {
  font-size: .925rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

.legal-hint {
  background: rgba(74, 144, 226, .06);
  border-left: 3px solid var(--color-blue);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: .75rem 1rem;
  margin-top: 1rem;
  font-size: .875rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

.legal-hint strong { color: var(--color-navy); }

.legal-footer-note {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}

.legal-footer-note p {
  font-size: .8rem;
  color: var(--color-text-light);
}

/* AGB Stornierungstabelle */
.terms-cancellation {
  margin: 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.terms-cancellation__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .85rem 1rem;
  border-radius: var(--radius-md);
  background: var(--color-cream);
  font-size: .9rem;
  flex-wrap: wrap;
}

.terms-cancellation__period {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex: 1;
  color: var(--color-text);
  font-weight: 500;
}

.terms-cancellation__fee {
  font-weight: 700;
  font-size: .95rem;
  flex-shrink: 0;
}

.terms-cancellation__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: var(--radius-full);
  font-size: .75rem;
  font-weight: 800;
  flex-shrink: 0;
}

.terms-cancellation__icon--warn {
  background: rgba(192, 48, 48, .12);
  color: #c03030;
}

.terms-cancellation__icon--danger {
  background: rgba(192, 48, 48, .2);
  color: #c03030;
}

.terms-cancellation__fee--warn {
  color: #c03030;
}

.terms-cancellation__fee--danger {
  color: #a02020;
}

/* Datenschutz Rechte-Grid */
.legal-rights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.25rem 0;
}

@media (max-width: 768px) {
  .legal-rights-grid { grid-template-columns: repeat(2, 1fr); }
}

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

.legal-right {
  background: var(--color-cream);
  border-radius: var(--radius-md);
  padding: 1rem;
}

.legal-right h4 {
  font-size: .875rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: .4rem;
}

.legal-right p {
  font-size: .825rem;
  color: var(--color-text-light);
  line-height: 1.5;
}
