/* ─── Lokale Poppins-Schrift (kein Google Fonts) ─── */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/poppins-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/poppins-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/poppins-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/poppins-700.woff2') format('woff2');
}

:root {
  --color-primary: #00B5C8;
  --color-secondary: #00D4A5;
  --color-accent: #007B8C;
  --color-neutral-bg: #F9F9F9;
  --color-text-main: #333333;
  --color-text-light: #666666;
  --color-white: #FFFFFF;

  --color-gradient-primary: linear-gradient(135deg, #00B5C8 0%, #00D4A5 100%);
  --color-gradient-hero: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8));

  --font-main: 'Poppins', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;

  --spacing-container: 1.5rem;
  --spacing-section: 4rem;

  --border-radius-btn: 30px;
  --border-radius-card: 16px;
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.05);
  --shadow-header: 0 2px 10px rgba(0, 0, 0, 0.05);

  --transition-fast: 0.3s ease;
}

/* Reset & Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: 80px; /* Offset für fixen Header (Mobile) */
}

@media (min-width: 992px) {
  html {
    scroll-padding-top: 120px; /* Offset für fixen Header (Desktop, Logo 100px + Padding) */
  }
}

body {
  font-family: var(--font-main);
  color: var(--color-text-main);
  background-color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--color-text-main);
}

h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: var(--color-gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

p {
  margin-bottom: 1rem;
  color: var(--color-text-light);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

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

/* picture-Element als Block damit Logo-Layout korrekt funktioniert */
picture {
  display: block;
}

/* Layout */
.container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 var(--spacing-container);
}

.header .container,
.footer .container {
  max-width: 1600px;
}

.section {
  padding: var(--spacing-section) 0;
}

.bg-light {
  background-color: var(--color-neutral-bg);
}

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

.mt-2 {
  margin-top: 2rem;
}

/* ─── Skip-to-Content Link (Accessibility) ─── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--color-primary);
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 0 0 8px 8px;
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 9999;
  transition: top 0.2s ease;
  text-decoration: none;
}
.skip-link:focus {
  top: 0;
  outline: 3px solid var(--color-secondary);
  outline-offset: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.8rem 2rem;
  border-radius: var(--border-radius-btn);
  font-weight: 600;
  text-align: center;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.btn-sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.9rem;
}

.btn-primary {
  background: var(--color-gradient-primary);
  color: var(--color-white);
  box-shadow: 0 4px 10px rgba(0, 181, 200, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 181, 200, 0.3);
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

.btn-secondary:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  padding: 0.5rem 0;
  /* Safe Area für iPhone Notch / Dynamic Island */
  padding-top: calc(0.5rem + env(safe-area-inset-top, 0px));
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
  display: block;
  text-decoration: none;
}

.logo-img {
  height: 100px;
  width: auto;
  object-fit: contain;
  transition: height 0.3s ease;
}

@media (max-width: 992px) {
  .header {
    min-height: calc(80px + env(safe-area-inset-top, 0px));
    display: flex;
    align-items: center;
  }

  .header-container {
    width: 100%;
    position: relative;
    justify-content: flex-end;
    height: 100%;
  }

  .logo-link {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2002;
  }

  .logo-img {
    height: 60px;
    width: auto;
  }
}

.nav {
  display: none;
}

/* Desktop Nav */
@media (min-width: 992px) {
  .nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
    justify-content: flex-end;
  }

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

  .nav-list a {
    text-decoration: none;
    color: var(--color-text-main);
    font-weight: 500;
    transition: color 0.3s;
  }

  .nav-list a:hover {
    color: var(--color-primary);
  }

  .header-ctas {
    display: flex;
    gap: 1rem;
  }
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  /* Tap-Target auf 44×44px vergrößern (iOS Richtlinie) */
  padding: 12px;
  margin: -12px;
  box-sizing: content-box;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #333333;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Mobile Navigation */
@media (max-width: 992px) {
  .mobile-toggle {
    display: flex !important;
    z-index: 2001;
  }

  .mobile-toggle span {
    background-color: #333 !important;
  }

  .nav {
    display: flex;
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;        /* Fallback alte Browser */
    height: 100dvh;       /* Dynamische Viewport-Höhe: iOS Safari berücksichtigt Adressleiste */
    background-color: #ffffff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    z-index: 2000;
    /* Safe Area für Notch (oben) und Home Indicator (unten) */
    padding: calc(2rem + env(safe-area-inset-top, 0px)) 2rem calc(2rem + env(safe-area-inset-bottom, 0px));
    overflow-y: auto;
  }

  .nav.active {
    transform: translateX(0);
  }

  .nav-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 0 3rem 0;
    padding: 0;
    gap: 1.5rem;
    list-style: none;
  }

  .nav-list li {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .nav-list a {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    color: #333333;
    text-decoration: none;
    padding: 10px;
  }

  .nav-list a:hover {
    color: var(--color-primary);
  }

  .header-ctas {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 320px;
  }

  .header-ctas .btn {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    font-size: 1rem;
  }

  .mobile-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  body.menu-open {
    overflow: hidden;
  }
}

/* Hero */
.hero {
  padding-top: calc(var(--spacing-section) + 80px);
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(0, 181, 200, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
}

.hero-content {
  max-width: 800px;
}

.hero .subline {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--color-text-main);
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 600px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-intro {
  font-size: 1rem;
  border-left: 4px solid var(--color-secondary);
  padding-left: 1rem;
  max-width: 600px;
}

/* Benefits Lists */
.benefits-list {
  margin: 2rem 0;
}

/* 3D Hero Visual Container */
.visual-content {
  display: none;
  width: 100%;
  height: 500px;
  position: relative;
}

@media (min-width: 992px) {
  .hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
  }

  .visual-content {
    display: block;
    height: 600px;
  }

  .hero {
    min-height: 90vh;
  }
}

.benefits-list li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.benefits-list li::before {
  content: '';
  display: inline-block;
  width: 15px;
  height: 15px;
  min-width: 15px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300D4A5' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  flex-shrink: 0;
  margin-top: 3px;
}

/* Process Steps */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}

.step {
  background: var(--color-white);
  padding: 3rem 2rem;
  border-radius: var(--border-radius-card);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}

.step:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 181, 200, 0.15);
  border-color: rgba(0, 181, 200, 0.2);
}

.step-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 1rem;
  opacity: 0.8;
}

.step-icon-wrapper {
  margin-bottom: 1.5rem;
  color: var(--color-primary);
  filter: drop-shadow(0 4px 10px rgba(0, 181, 200, 0.3));
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.step:hover .step-icon-wrapper {
  transform: scale(1.2) rotate(5deg);
}

.step h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.pulse-animation {
  animation: btnPulse 2s infinite;
}

@keyframes btnPulse {
  0%   { box-shadow: 0 0 0 0 rgba(0, 181, 200, 0.4); }
  70%  { box-shadow: 0 0 0 15px rgba(0, 181, 200, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 181, 200, 0); }
}

@media (min-width: 768px) {
  .process-steps {
    flex-direction: row;
  }

  .step {
    flex: 1;
  }
}

/* About Trust Highlights */
.trust-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 600px) {
  .trust-highlights {
    grid-template-columns: repeat(2, 1fr);
  }
}

.highlight {
  background: rgba(0, 181, 200, 0.1);
  padding: 1rem;
  border-radius: 8px;
  color: var(--color-primary);
  font-weight: 600;
  text-align: center;
}

/* Regions Grid */
.regions-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 600px) {
  .regions-list {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}

.regions-list li {
  background: var(--color-white);
  padding: 0.8rem;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* Contact */
.contact-wrapper {
  display: grid;
  gap: 3rem;
}

@media (min-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.contact-details p {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.contact-details p svg {
  flex-shrink: 0;
  opacity: 0.85;
}

.contact-form {
  background: var(--color-white);
  padding: 2rem;
  border-radius: var(--border-radius-card);
  box-shadow: var(--shadow-card);
}

.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

input, select, textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

.form-check {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.form-check input {
  width: auto;
  margin-top: 0.3rem;
}

/* Footer */
.footer {
  background-color: var(--color-text-main);
  color: #ccc;
  padding: 3rem 0;
  text-align: center;
}

.footer-nav {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-nav a {
  color: var(--color-white);
  text-decoration: none;
  position: relative;
  padding-bottom: 3px;
  transition: color 0.3s;
}

.footer-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.footer-nav a:hover {
  color: var(--color-primary);
}

.footer-nav a:hover::after {
  width: 100%;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #ccc;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.social-link:hover {
  color: var(--color-white);
  border-color: var(--color-primary);
  background: rgba(0, 181, 200, 0.1);
}

.social-link svg {
  flex-shrink: 0;
}

.footer-legal {
  margin-bottom: 1rem;
}

.footer-legal a {
  margin: 0 0.5rem;
  color: var(--color-white);
  text-decoration: none;
  position: relative;
  padding-bottom: 3px;
  transition: color 0.3s;
}

.footer-legal a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.footer-legal a:hover {
  color: var(--color-primary);
}

.footer-legal a:hover::after {
  width: 100%;
}

/* Animations */
.fade-in {
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.js-enabled .fade-in {
  opacity: 0;
  transform: translateY(30px);
}

.js-enabled .fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.process-steps .step:nth-child(2) { transition-delay: 0.2s; }
.process-steps .step:nth-child(3) { transition-delay: 0.4s; }

/* ─── FAQ Section ─── */
.faq-section {
  background: var(--color-white);
}

.faq-list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid rgba(0, 181, 200, 0.2);
  border-radius: var(--border-radius-card);
  overflow: hidden;
  background: var(--color-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 20px rgba(0, 181, 200, 0.12);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.2rem 1.5rem;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-main);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s;
  min-height: 44px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.faq-question:hover {
  color: var(--color-primary);
}

.faq-question .faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-gradient-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  line-height: 1;
  transition: transform 0.3s ease;
  font-style: normal;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.5rem;
}

.faq-item.open .faq-answer {
  max-height: 700px;
  padding: 0 1.5rem 1.2rem;
}

.faq-answer p {
  margin: 0;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ─── Impressum / Datenschutz Seiten ─── */
.legal-page {
  padding-top: calc(var(--spacing-section) + 80px);
  padding-bottom: var(--spacing-section);
  min-height: 80vh;
}

.legal-page h1 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.legal-page h2 {
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  color: var(--color-primary);
}

.legal-page p,
.legal-page address {
  color: var(--color-text-light);
  margin-bottom: 1rem;
  font-style: normal;
  line-height: 1.7;
}

.legal-page a {
  color: var(--color-primary);
  text-decoration: underline;
}

.legal-page a:hover {
  color: var(--color-accent);
}

.legal-back {
  display: block;
  width: fit-content;
  color: var(--color-primary);
  text-decoration: none;
  margin-bottom: 1.75rem;
  opacity: 0.5;
  transition: opacity 0.2s;
  position: relative;
  line-height: 1;
}

.legal-back .back-text {
  position: absolute;
  left: 1.75rem;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  background: var(--color-text-main);
  color: var(--color-white);
  font-size: 0.72rem;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
}

.legal-back .back-text::before {
  content: '';
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 4px solid transparent;
  border-right-color: var(--color-text-main);
}

.legal-back:hover {
  opacity: 1;
}

.legal-back:hover .back-text {
  opacity: 1;
}

.legal-divider {
  border: none;
  border-top: 1px solid rgba(0,0,0,0.08);
  margin: 2rem 0;
}

/* ─── Mobile Optimierungen (≤ 480px / kleine iPhones) ─── */
@media (max-width: 480px) {

  /* Schriftgrößen reduzieren */
  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  .hero .subline {
    font-size: 1rem;
  }

  /* Hero weniger Abstand nach oben */
  .hero {
    padding-top: calc(1.5rem + 80px + env(safe-area-inset-top, 0px));
  }

  /* Process Steps – weniger Padding */
  .step {
    padding: 1.75rem 1.25rem;
  }

  /* Kontaktformular – kompakter */
  .contact-form {
    padding: 1.5rem 1.25rem;
  }

  /* FAQ – schmaler Padding */
  .faq-question {
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
  }

  .faq-answer {
    padding: 0 1.25rem;
  }

  .faq-item.open .faq-answer {
    padding: 0 1.25rem 1rem;
  }

  /* Footer Nav – etwas engerer Gap */
  .footer-nav {
    gap: 1rem;
    font-size: 0.9rem;
  }

  /* Footer Social – untereinander auf sehr kleinen Screens */
  .footer-social {
    flex-wrap: wrap;
    justify-content: center;
  }

  /* Hero Buttons immer vertikal auf kleinen Screens */
  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  /* Legal Seiten Titel */
  .legal-page h1 {
    font-size: 1.7rem;
  }

  /* Kontakt Details – Schrift etwas kleiner */
  .contact-details p {
    font-size: 1rem;
  }
}

/* ─── Sehr kleine Screens (≤ 375px / iPhone SE) ─── */
@media (max-width: 375px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.25rem; }

  .footer-nav {
    gap: 0.75rem;
    font-size: 0.82rem;
  }

  .btn {
    padding: 0.75rem 1.5rem;
  }
}

/* ─── Mittelgroße Mobile (481px – 767px) ─── */
@media (min-width: 481px) and (max-width: 767px) {
  .step {
    padding: 2rem 1.5rem;
  }

  .hero {
    padding-top: calc(2rem + 80px + env(safe-area-inset-top, 0px));
  }
}

/* ─── Hero Desktop – Safe Area berücksichtigen ─── */
@media (min-width: 992px) {
  .hero {
    padding-top: calc(var(--spacing-section) + 120px);
  }

  .legal-page {
    padding-top: calc(var(--spacing-section) + 120px);
  }
}
