.features-timeline-global {
  position: relative;
  width: 60px;
  height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  pointer-events: none;
  margin-top: 0;
}
.features-timeline-bar {
  position: absolute;
  left: 50%;
  width: 6px;
  background: #a8c4e8;
  transform: translateX(-50%);
  border-radius: 3px;
  z-index: 0;
}
.features-timeline-point {
  position: absolute;
  left: 50%;
  width: 24px;
  height: 24px;
  background: #204da4;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(32,77,164,0.15);
  transition: box-shadow 0.3s, transform 0.3s, background 0.3s;
  opacity: 1;
  background: #a8c4e8;
  border: none;
  z-index: 1;
  transform: translateX(-50%);
  pointer-events: none;
}
.features-timeline-point.active {
  width: 32px;
  height: 32px;
  box-shadow: 0 4px 16px rgba(32,77,164,0.25);
  transform: translateX(-50%) scale(1.25);
  background: #204da4;
  opacity: 1;
  border: 6px solid #204da4;
}
.features-timeline-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 80px auto 0;
  padding: 0 20px;
  min-height: 600px;
}
.features-timeline-wrapper .features {
  max-width: none;
  width: auto;
  flex: 1;
}
/* Wrapper für Features und Timeline */
.features-timeline-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 80px auto 0;
  padding: 0 20px;
  min-height: 600px;
}
.features-timeline-global {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 100%;
  display: block;
  z-index: 10;
  pointer-events: none;
}
.features-timeline-bar {
  position: absolute;
  left: 50%;
  width: 6px;
  background: #a8c4e8;
  transform: translateX(-50%);
  border-radius: 3px;
  z-index: 0;
}
.features-timeline-point {
  position: absolute;
  left: 50%;
  width: 24px;
  height: 24px;
  background: #204da4;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(32,77,164,0.15);
  transition: box-shadow 0.3s, transform 0.3s, background 0.3s;
  opacity: 1;
  background: #a8c4e8;
  border: none;
  z-index: 1;
  transform: translateX(-50%);
  pointer-events: none;
}
.features-timeline-point.active {
  width: 32px;
  height: 32px;
  box-shadow: 0 4px 16px rgba(32,77,164,0.25);
  transform: translateX(-50%) scale(1.25);
  background: #204da4;
  opacity: 1;
  border: 6px solid #204da4;
}
.features-timeline-wrapper .features {
  max-width: none;
  width: auto;
  flex: 1;
}
@font-face {
  font-family: "NNaxSpA";
  src: url("fonts/NNaxSpA-Light.woff2") format("woff2"),
       url("fonts/NNaxSpA-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "NNaxSpA";
  src: url("fonts/NNaxSpA-Normal.woff2") format("woff2"),
       url("fonts/NNaxSpA-Normal.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "NNaxSpA";
  src: url("fonts/NNaxSpA-Bold.woff2") format("woff2"),
       url("fonts/NNaxSpA-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "NNaxSpA", sans-serif;
  font-weight: 300;
  background: #ffffff;
  color: #204da4;
  position: relative;
  overflow-x: hidden;
}

/* ── ANNOUNCEMENT BANNER ─────────────────────────────── */
.banner-wrapper {
  position: fixed;
  left: 0;
  right: 0;
  width: 100vw;
  max-width: 100vw;
  z-index: 99;
  overflow: hidden;
  transition: top 0.25s ease;
  box-sizing: border-box;
}

.announcement-banner {
  background: #ffffff;
  border-bottom: 1px solid #d0daea;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  width: 100%;
  box-sizing: border-box;
  transform: translateY(-100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.announcement-banner.visible {
  transform: translateY(0);
}

.announcement-logo {
  height: 18px;
  width: auto;
  flex-shrink: 0;
}

.announcement-text {
  flex: 1;
  min-width: 0;
  font-size: clamp(11px, 2.5vw, 19px);
  font-weight: 400;
  color: #204da4;
  text-align: center;
}

.announcement-link {
  color: #204da4;
  font-weight: 600;
  text-decoration: underline;
}

.announcement-close {
  background: none;
  border: none;
  font-size: 20px;
  color: #204da4;
  cursor: pointer;
  padding: 0 0 0 16px;
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.announcement-close:hover {
  opacity: 1;
}

/* ── NAVBAR ───────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #d0daea;
  display: flex;
  align-items: center;
  padding: 12px 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex: 1;
}

.nav-logo-img {
  height: 22px;
  width: auto;
  display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  color: #204da4;
  transition: opacity 0.2s;
}

.nav-links a:hover {
  opacity: 0.6;
}

/* ── SPRACHE TOGGLE ───────────────────────────────────── */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: flex-end;
}

.lang-btn {
  background: none;
  border: none;
  font-family: "NNaxSpA", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #a8c4e8;
  cursor: pointer;
  padding: 2px 4px;
  transition: color 0.2s;
  letter-spacing: 0.05em;
}

.lang-btn.active {
  color: #204da4;
  font-weight: 700;
}

.lang-btn:hover {
  color: #204da4;
}

.lang-sep {
  color: #d0daea;
  font-size: 12px;
  user-select: none;
}

/* ── BACK TO TOP ──────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 100;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #204da4;
  color: white;
  border: none;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(32, 77, 164, 0.25);
  transition: opacity 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top:hover {
  opacity: 0.8;
  transform: translateY(-3px);
}

/* ── HINTERGRUND FORMEN ───────────────────────────────── */
.hero-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 660px;
  background: url('images/Element1.png') center top / cover no-repeat;
  z-index: 0;
  pointer-events: none;
}

.s-curve-blob {
  position: absolute;
  left: 16%;
  right: 0;
  top: 650px;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  background: url('images/Element2.png') top left / 100% 100% no-repeat;
}

/* ── HERO SECTION ─────────────────────────────────────── */
.hero {
  position: relative;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
}

/* ── LOGO ─────────────────────────────────────────────── */
.logo-wrap {
  margin-top: 56px;
  padding: 0 20px;
}

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

/* Inhalt über Blobs */
.hero-split,
.hero-copy,
.cta-group,
.features-timeline-wrapper,
.faq,
.navbar {
  position: relative;
  z-index: 1;
}

/* ── HERO SPLIT (image + tagline) ─────────────────────── */
.hero-split {
  width: 100%;
  max-width: 1000px;
  margin-top: 64px;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.hero-image-wrap {
  width: 65%;
  max-width: 600px;
}

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

.hero-tagline-wrap {
  width: 100%;
  text-align: center;
}

/* ── TAGLINE ──────────────────────────────────────────── */
.hero-tagline-logo {
  height: 130px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 36px;
}

.hero-tagline {
  font-size: 52px;
  font-weight: 400;
  color: #204da4;
  line-height: 1.2;
  text-align: center;
}

/* ── DESCRIPTION ──────────────────────────────────────── */
.hero-copy {
  text-align: center;
  margin-top: 48px;
  padding: 0 20px;
  max-width: 700px;
}

.hero-desc {
  font-size: 16px;
  font-weight: 300;
  color: #204da4;
  line-height: 1.7;
  margin-top: 24px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-desc a {
  color: #204da4;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-desc a:hover {
  opacity: 0.6;
}

/* ── HERO STORE BADGES ──────────────────────────────────── */
.hero-store-badges {
  margin-top: 24px;
}

.store-badges-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.store-badges-row[hidden] {
  display: none;
}

.store-badge-img {
  height: 44px;
  width: auto;
  display: block;
}

/* ── CTA GROUP ──────────────────────────────────────────── */
.cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: fit-content;
  margin-top: 56px;
  margin-bottom: 80px;
  margin-left: auto;
  margin-right: auto;
}

/* ── STORE BADGES ───────────────────────────────────────── */
.badges {
  display: flex;
  gap: 14px;
}

.badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #1a1a2e;
  color: white;
  border-radius: 10px;
  padding: 14px 24px;
  text-decoration: none;
  flex: 1;
}

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

.badge-text small {
  display: block;
  font-size: 10px;
  opacity: 0.75;
  line-height: 1;
}

.badge-text strong {
  font-size: 18px;
  line-height: 1.4;
}

.badge.google {
  background: linear-gradient(135deg, #1a1a2e 0%, #232340 100%);
}

.beta-link {
  appearance: none;
  background: transparent;
  border: 0;
  color: #204da4;
  cursor: pointer;
  font-family: "NNaxSpA", sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.45;
  padding: 0;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 3px;
  max-width: 520px;
}

.beta-link:hover,
.beta-link:focus-visible {
  color: #3a7bd5;
}

/* ── FEATURES SECTION ──────────────────────────────────── */
.features {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 120px;
  padding: 0 20px;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 48px;
}

.feature-img {
  width: 200px;
  flex-shrink: 0;
  height: auto;
  display: block;
  opacity: 0.6;
  transform: scale(0.95);
  transform-origin: left center;
  transition: opacity 0.3s, transform 0.3s;
}

.feature.active .feature-img {
  opacity: 1;
  transform: scale(1);
}

.feature-text {
  width: 390px;
  flex-shrink: 0;
}

.feature-text h3 {
  font-size: 22px;
  font-weight: 400;
  color: #a8c4e8;
  margin-bottom: 12px;
  transition: color 0.3s;
}

.feature-text p {
  font-size: 15px;
  font-weight: 300;
  color: #a8c4e8;
  line-height: 1.7;
  transition: color 0.3s;
}

.feature-text {
  width: 390px;
  flex-shrink: 0;
  transform: scale(0.95);
  transform-origin: left top;
  transition: transform 0.3s, color 0.3s;
}

.feature.active .feature-text {
  transform: scale(1);
}

.feature.active .feature-text h3,
.feature.active .feature-text p {
  color: #204da4;
}

/* ── REASONS SECTION ────────────────────────────────────── */
.reasons {
  width: 100%;
  max-width: 900px;
  margin: 60px auto 0;
  padding: 0 20px;
  text-align: center;
}

.reasons h2 {
  font-size: 20px;
  font-weight: 600;
  color: #204da4;
  margin-bottom: 32px;
}

.cards {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  background: white;
  border-radius: 14px;
  padding: 28px 22px;
  flex: 1;
  min-width: 200px;
  max-width: 260px;
  box-shadow: 0 4px 24px rgba(30, 60, 120, 0.16);
  text-align: center;
}

.card h3 {
  font-size: 16px;
  font-weight: 600;
  color: #204da4;
  margin-bottom: 10px;
}

.card p {
  font-size: 13px;
  color: #204da4;
  line-height: 1.6;
}

/* ── FAQ SECTION ────────────────────────────────────────── */
.faq {
  width: 100%;
  max-width: 800px;
  margin: 80px auto 80px;
  padding: 0 20px;
}

.features-title {
  font-size: 20px;
  font-weight: 700;
  color: #204da4;
  text-align: center;
  margin-top: 80px;
  margin-bottom: 32px;
}

.faq-title {
  font-size: 20px;
  font-weight: 700;
  color: #204da4;
  text-align: center;
  margin-bottom: 32px;
}

.faq-item {
  background: white;
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(30, 60, 120, 0.16);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: "NNaxSpA", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #204da4;
  text-align: left;
  gap: 16px;
}

.faq-icon {
  font-size: 22px;
  font-weight: 300;
  color: #204da4;
  flex-shrink: 0;
  line-height: 1;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer.open {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  min-height: 0;
  overflow: hidden;
  padding: 0 24px;
  transition: padding 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer.open .faq-answer-inner {
  padding: 20px 24px;
}

.faq-answer p {
  font-size: 14px;
  font-weight: 300;
  color: #204da4;
  line-height: 1.7;
}

/* ── DATENSCHUTZ SECTION ────────────────────────────────── */
.datenschutz {
  width: 100%;
  max-width: 700px;
  margin: 60px auto 80px;
  padding: 0 20px;
  text-align: center;
}

.datenschutz-title {
  font-size: 20px;
  font-weight: 400;
  color: #204da4;
  margin-bottom: 24px;
}

.datenschutz-text {
  font-size: 14px;
  font-weight: 300;
  color: #204da4;
  line-height: 1.8;
}

.datenschutz-text strong {
  display: block;
  font-weight: 700;
  font-size: 16px;
  margin-top: 24px;
}

.datenschutz-text a {
  color: #204da4;
  text-decoration: none;
}

.datenschutz-text a:hover {
  text-decoration: underline;
}

/* ── FOOTER ─────────────────────────────────────────────── */
.footer {
  border-top: 1px solid #d0daea;
  padding: 48px 40px 24px;
  background: #ffffff;
  position: relative;
  z-index: 1;
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-brand {
  flex: 2;
}

.footer-logo {
  height: 40px;
  width: auto;
  align-self: flex-start;
  object-fit: contain;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 13px;
  font-weight: 300;
  color: #204da4;
  line-height: 1.6;
  max-width: 240px;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  color: #204da4;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.footer-link {
  font-size: 13px;
  font-weight: 300;
  color: #204da4;
  text-decoration: none;
  transition: opacity 0.2s;
}

.footer-link:hover {
  opacity: 0.6;
}

.footer-partners {
  margin: 40px -40px 0;
  padding: 32px 40px 0;
  border-top: 1px solid #d0daea;
}

.footer-partners-label {
  font-size: 12px;
  font-weight: 300;
  color: #204da4;
  margin-bottom: 16px;
}

.footer-partners-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 16px;
}

.footer-partners-row .partner-placeholder {
  min-width: 80px;
}

.footer-bottom {
  margin: 24px -40px 0;
  padding: 16px 40px 0;
  border-top: 1px solid #d0daea;
  font-size: 11px;
  font-weight: 300;
  color: #a8c4e8;
}

.footer-section-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.partner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.partner-placeholder {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}

.partner-logo {
  max-width: 100%;
  max-height: 40px;
  object-fit: contain;
}

/* ── BETA MODAL ─────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(32, 77, 164, 0.35);
  backdrop-filter: blur(6px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 48px 40px 40px;
  max-width: 460px;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 64px rgba(32, 77, 164, 0.2);
  transform: translateY(16px);
  transition: transform 0.25s;
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: #a8c4e8;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: color 0.2s;
}

.modal-close:hover {
  color: #204da4;
}

.modal-title {
  font-size: 26px;
  font-weight: 400;
  color: #204da4;
  margin-bottom: 12px;
}

.modal-desc {
  font-size: 15px;
  font-weight: 300;
  color: #204da4;
  line-height: 1.6;
  margin-bottom: 32px;
}

.modal-field {
  margin-bottom: 16px;
}

.modal-input {
  width: 100%;
  padding: 16px 20px;
  border: 1.5px solid #a8c4e8;
  border-radius: 10px;
  font-family: "NNaxSpA", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #204da4;
  background: #f7f9fd;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.modal-input:focus {
  border-color: #204da4;
  background: #ffffff;
}

.modal-input::placeholder {
  color: #a8c4e8;
}

.modal-submit-btn {
  width: 100%;
  padding: 18px;
  background: #204da4;
  color: white;
  border: none;
  border-radius: 10px;
  font-family: "NNaxSpA", sans-serif;
  font-size: 17px;
  font-weight: 400;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 8px;
}

.modal-submit-btn:hover {
  background: #3a7bd5;
  transform: translateY(-1px);
}

.modal-submit-btn:active {
  transform: translateY(0);
}

.modal-submit-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.modal-error {
  font-size: 13px;
  color: #c0392b;
  margin-bottom: 8px;
  text-align: center;
}

.modal-privacy {
  font-size: 12px;
  font-weight: 300;
  color: #a8c4e8;
  line-height: 1.5;
  margin-top: 16px;
  text-align: center;
}

.modal-success {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 0;
}

.modal-success-icon {
  width: 64px;
  height: 64px;
  background: #204da4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  margin: 0 auto 24px;
}

.modal-success h3 {
  font-size: 22px;
  font-weight: 400;
  color: #204da4;
  margin-bottom: 12px;
}

.modal-success p {
  font-size: 15px;
  font-weight: 300;
  color: #204da4;
  line-height: 1.6;
}

.footer-legal {
  max-width: 900px;
  margin: 32px auto 0;
  padding-top: 20px;
  border-top: 1px solid #d0daea;
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 13px;
  font-weight: 300;
  color: #204da4;
  text-decoration: none;
  transition: opacity 0.2s;
}

.footer-legal a:hover {
  opacity: 0.6;
}

/* ── SUBPAGE ──────────────────────────────────────────── */
.subpage-content {
  max-width: 700px;
  margin: 120px auto 80px;
  padding: 0 20px;
  text-align: center;
}

.subpage-title {
  font-size: 28px;
  font-weight: 400;
  color: #204da4;
  margin-bottom: 32px;
}

.privacy-policy {
  margin-top: 64px;
  color: #204da4;
  text-align: left;
}

.privacy-policy .subpage-title {
  text-align: center;
}

.privacy-policy section {
  margin-top: 48px;
}

.privacy-policy h3 {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.35;
  margin: 0 0 20px;
}

.privacy-policy h4 {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.45;
  margin: 30px 0 10px;
}

.privacy-policy h5 {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
  margin: 26px 0 8px;
}

.privacy-policy p,
.privacy-policy li {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
}

.privacy-policy p {
  margin: 0 0 16px;
}

.privacy-policy ul {
  margin: 0 0 20px;
  padding-left: 22px;
}

.privacy-policy li {
  margin-bottom: 10px;
}

.privacy-policy a {
  color: #204da4;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-intro {
  border: 1px solid #d0daea;
  border-radius: 10px;
  padding: 28px;
  background: #f7fbff;
}

.privacy-version {
  border-top: 1px solid #d0daea;
  margin-top: 48px;
  padding-top: 20px;
}

/* ── RESPONSIVE / MOBILE ─────────────────────────────── */
@media (max-width: 768px) {

  /* Navbar */
  .navbar {
    padding: 10px 20px;
  }
  .nav-logo-img {
    height: 12px;
  }
  .nav-links {
    gap: 16px;
  }
  .nav-links a {
    font-size: 12px;
  }

  /* Globale Breite */
  .hero,
  .hero-split,
  .hero-copy,
  .features-timeline-wrapper,
  .faq,
  .footer,
  .footer-inner,
  .footer-partners {
    max-width: 100%;
    box-sizing: border-box;
  }

  .hero-split {
    padding: 0 20px;
  }

  /* Hero */
  .hero-tagline {
    font-size: 28px;
  }
  .hero-tagline-logo {
    height: 70px;
    margin-bottom: 24px;
  }
  .hero-image-wrap {
    width: 90%;
  }
  .hero-copy {
    padding: 0 16px;
  }
  .hero-desc {
    font-size: 14px;
  }
  .cta-group {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }
  .beta-link {
    font-size: 14px;
    max-width: 100%;
  }
  .store-badges-row {
    flex-direction: column;
    gap: 10px;
  }
  .badges {
    flex-direction: column;
  }

  /* Features — Timeline verstecken, Cards stapeln */
  .features-timeline-global {
    display: none;
  }
  .features-timeline-wrapper {
    min-height: unset;
    padding: 0 16px;
  }
  .features-timeline-wrapper .features {
    margin: 0;
  }
  .features {
    gap: 64px;
  }
  .feature {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .feature-img {
    width: 80%;
  }
  .feature-text {
    width: 100%;
    text-align: center;
  }

  /* Footer */
  .footer {
    padding: 40px 24px 24px;
  }
  .footer-inner {
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
  }
  .footer-col,
  .footer-brand {
    text-align: left;
    align-items: flex-start;
  }
  .footer-tagline {
    text-align: left;
  }
  .footer-partners {
    margin: 32px 0 0;
    padding: 24px 0 0;
  }
  .footer-bottom {
    padding: 0;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
  .footer-partners .footer-section-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-partners-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .footer-partners-row .partner-placeholder {
    justify-content: flex-start;
  }

  /* Datenschutz */
  .subpage-title {
    font-size: 20px;
    word-break: break-word;
  }
  .privacy-policy h3 {
    font-size: 19px;
  }
  .privacy-policy h4 {
    font-size: 16px;
  }
  .privacy-policy h5 {
    font-size: 14px;
  }
  .privacy-policy p,
  .privacy-policy li {
    font-size: 14px;
  }
  .privacy-intro {
    padding: 20px;
  }

  .partner-logo {
    max-height: 32px;
  }

  /* Banner */
  .announcement-banner {
    padding: 12px 16px;
    box-sizing: border-box;
    width: 100%;
  }
  .announcement-text {
    font-size: 13px;
  }
  .banner-wrapper {
    left: 0;
    right: 0;
    width: 100%;
  }

  /* Back to top */
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    font-size: 22px;
  }

  /* Modal */
  .modal-card {
    padding: 36px 24px 32px;
  }
  .modal-title {
    font-size: 22px;
  }
}
