/* Lebenszeit-Beratung - Static Clone Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #4a5568;
  line-height: 1.7;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  background-image: url('images/header-lebenszeit.jpeg');
  background-size: cover;
  background-position: center;
  color: #fff;
  display: flex;
  flex-direction: column;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,30,50,0.55) 0%, rgba(20,30,50,0.15) 15%, rgba(255,255,255,0) 35%, rgba(255,255,255,0) 60%, rgba(20,30,50,0.35) 100%);
  pointer-events: none;
}

.hero > * { position: relative; z-index: 1; }

.hero .nav a,
.hero .availability {
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.hero .nav-links {
  background: rgba(15,25,45,0.55);
  padding: 10px 22px;
  border-radius: 30px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.15);
}

.hero .availability {
  background: rgba(15,25,45,0.55);
  border-color: rgba(255,255,255,0.25);
}

.nav a {
  color: #ffffff;
  font-size: 15px;
  letter-spacing: 0.5px;
  padding-bottom: 6px;
  position: relative;
  transition: opacity 0.2s ease;
}

.nav a:hover { opacity: 0.85; }

.nav a.active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #fff;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  padding: 40px 20px 60px;
}

.hero-content.hero-content-centered {
  justify-content: center;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.hero h1 {
  font-size: 68px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 40px;
  color: #f0f2f5;
}

.btn-hero {
  display: inline-block;
  background: #ffffff;
  color: #1a2841;
  padding: 16px 42px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 2px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Page-only hero (impressum, datenschutz) */
.hero-small {
  min-height: 40vh;
  background-image: linear-gradient(rgba(10,20,35,0.55), rgba(10,20,35,0.55)), url('images/Logo-.jpeg');
}
.hero-small::before {
  background: transparent;
}
.hero-small .hero-content { padding-top: 20px; padding-bottom: 40px; justify-content: center; }
.hero-small h1 { font-size: 54px; }

/* ============ SECTIONS ============ */
section { padding: 100px 0; }

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: #1a2841;
  margin-bottom: 18px;
  line-height: 1.2;
}

.title-underline {
  width: 80px;
  height: 3px;
  background: #1e5dff;
  margin-bottom: 32px;
}

.text-center { text-align: center; }
.text-center .title-underline { margin-left: auto; margin-right: auto; }

.section-text {
  font-size: 16px;
  color: #4a5568;
  margin-bottom: 16px;
}

/* Intro section - image + text */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro-grid img {
  width: 100%;
  border-radius: 4px;
}

.btn-orange {
  display: inline-block;
  background: #f37021;
  color: #ffffff;
  padding: 14px 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 2px;
  margin-top: 24px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-orange:hover {
  background: #d95d15;
  transform: translateY(-2px);
}

/* Schwerpunkte grid */
.section-alt { background: #f7f8fa; }

.section-intro {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
  color: #4a5568;
}

.section-intro p { margin-bottom: 16px; font-size: 16px; }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 40px;
}

.card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 22px;
}

.card h3 {
  font-size: 22px;
  color: #1a2841;
  font-weight: 600;
  margin-bottom: 14px;
}

.card p {
  font-size: 15px;
  color: #4a5568;
  margin-bottom: 10px;
}

/* Split sections (mit wem reden, warum reden) */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 520px;
}

.split-image {
  background-size: cover;
  background-position: center;
}

.split-text {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-text h2 {
  font-size: 40px;
  color: #1a2841;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.2;
}

.split-text .title-underline { margin-bottom: 32px; }

.split-text p {
  font-size: 16px;
  color: #4a5568;
  margin-bottom: 16px;
}

/* Kontakt section */
.contact-section {
  position: relative;
  padding: 140px 0;
  background-image: linear-gradient(rgba(20,25,35,0.75), rgba(20,25,35,0.75)), url('images/contact-1.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.contact-card {
  background: #ffffff;
  padding: 60px 64px;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  max-width: 1100px;
  margin: 0 auto;
}

.contact-card h2 {
  font-size: 40px;
  color: #1a2841;
  margin-bottom: 18px;
  font-weight: 700;
}

.contact-lines p {
  font-size: 16px;
  color: #2d3748;
  margin-bottom: 6px;
}

.contact-lines .spacer { height: 22px; }

.contact-links {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #2d3748;
  font-size: 16px;
  transition: color 0.2s ease;
}

.contact-link:hover { color: #1e5dff; }

.icon-circle {
  color: #1e5dff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ============ Pricing Cards ============ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 20px;
}

.price-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(20,30,50,0.12);
  border-color: #1e5dff;
}

.price-card.featured {
  border-color: #1e5dff;
  box-shadow: 0 12px 30px rgba(30,93,255,0.15);
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #1e5dff;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.price-card h3 {
  font-size: 20px;
  color: #1a2841;
  font-weight: 600;
  margin-bottom: 12px;
  min-height: 52px;
}

.price-duration {
  font-size: 14px;
  color: #718096;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-amount {
  font-size: 44px;
  color: #1a2841;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}

.price-amount .currency {
  font-size: 24px;
  vertical-align: super;
  margin-left: 4px;
  color: #4a5568;
}

.price-amount.free {
  color: #f37021;
  font-size: 36px;
}

.price-note {
  font-size: 13px;
  color: #718096;
  margin-bottom: 22px;
}

.price-description {
  font-size: 14px;
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 28px;
  flex: 1;
}

.price-cta {
  display: block;
  text-align: center;
  padding: 12px 20px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: background 0.2s ease, transform 0.15s ease;
}

.price-cta.primary {
  background: #1e5dff;
  color: #ffffff;
}

.price-cta.primary:hover {
  background: #1849cc;
  transform: translateY(-1px);
}

.price-cta.outline {
  background: transparent;
  color: #1e5dff;
  border: 1.5px solid #1e5dff;
}

.price-cta.outline:hover {
  background: #1e5dff;
  color: #ffffff;
}

.pricing-note {
  margin-top: 40px;
  padding: 20px 24px;
  background: #f7f8fa;
  border-left: 3px solid #1e5dff;
  border-radius: 4px;
  font-size: 14px;
  color: #4a5568;
  line-height: 1.6;
}

/* Home teaser */
.price-teaser {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.teaser-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 22px 20px;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.teaser-item:hover {
  transform: translateY(-3px);
  border-color: #1e5dff;
}

.teaser-item .t-title {
  font-size: 14px;
  color: #4a5568;
  font-weight: 500;
  margin-bottom: 8px;
}

.teaser-item .t-price {
  font-size: 28px;
  color: #1a2841;
  font-weight: 700;
}

.teaser-item .t-price.free { color: #f37021; font-size: 22px; }

.teaser-item .t-duration {
  font-size: 12px;
  color: #718096;
  margin-top: 4px;
}

.teaser-item .t-vat {
  font-size: 11px;
  color: #a0aec0;
  margin-top: 6px;
  letter-spacing: 0.3px;
}

@media (max-width: 960px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .price-teaser { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .price-teaser { grid-template-columns: 1fr 1fr; gap: 12px; }
  .teaser-item { padding: 16px 12px; }
  .teaser-item .t-price { font-size: 22px; }
}

/* ============ Availability Badge ============ */
.availability {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 30px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.2);
  transition: background 0.2s ease;
}

.availability .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #cbd5e0;
  flex-shrink: 0;
  position: relative;
}

.availability.online .dot {
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34,197,94,0.7);
  animation: pulse-online 2s infinite;
}

.availability.offline .dot { background: #cbd5e0; }

@keyframes pulse-online {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.7); }
  70% { box-shadow: 0 0 0 12px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

.nav {
  padding: 28px 48px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 32px;
}

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}

@media (max-width: 780px) {
  .nav { flex-wrap: wrap; gap: 14px; padding: 18px 20px; justify-content: center; }
  .nav-links { gap: 18px; flex-wrap: wrap; justify-content: center; }
  .availability { font-size: 12px; padding: 5px 10px; }
}

/* ============ Beratungs-Finder Quiz ============ */
.quiz-section { background: #f7f8fa; }

.quiz-card {
  max-width: 780px;
  margin: 40px auto 0;
  background: #ffffff;
  border-radius: 12px;
  padding: 48px 48px 40px;
  box-shadow: 0 12px 40px rgba(20,30,50,0.08);
  border: 1px solid #e2e8f0;
}

.quiz-progress {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  justify-content: center;
}

.quiz-progress .step {
  width: 40px;
  height: 4px;
  border-radius: 2px;
  background: #e2e8f0;
  transition: background 0.3s ease;
}

.quiz-progress .step.active { background: #1e5dff; }

.quiz-step { display: none; }
.quiz-step.active { display: block; animation: quiz-fade 0.4s ease; }

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

.quiz-question {
  font-size: 22px;
  color: #1a2841;
  font-weight: 600;
  text-align: center;
  margin-bottom: 28px;
  line-height: 1.4;
}

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

.quiz-option {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 15px;
  color: #2d3748;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 12px;
}

.quiz-option:hover {
  border-color: #1e5dff;
  background: #f0f5ff;
  transform: translateY(-2px);
}

.quiz-option.selected {
  border-color: #1e5dff;
  background: #f0f5ff;
  color: #1e5dff;
  font-weight: 600;
}

.quiz-option .q-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f0f5ff;
  color: #1e5dff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.quiz-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
}

.quiz-btn-back {
  background: transparent;
  border: none;
  color: #718096;
  font-size: 14px;
  cursor: pointer;
  padding: 8px 4px;
  font-family: inherit;
  transition: color 0.2s ease;
}

.quiz-btn-back:hover { color: #1e5dff; }
.quiz-btn-back:disabled { opacity: 0; cursor: default; }

.quiz-hint {
  text-align: center;
  color: #718096;
  font-size: 13px;
  margin-top: 24px;
}

/* Quiz Result */
.quiz-result-header {
  text-align: center;
  margin-bottom: 24px;
}

.quiz-result-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #f0f5ff;
  color: #1e5dff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.quiz-result-title {
  font-size: 24px;
  color: #1a2841;
  font-weight: 700;
  margin-bottom: 8px;
}

.quiz-result-subtitle {
  color: #4a5568;
  font-size: 15px;
}

.quiz-result-card {
  background: linear-gradient(135deg, #f0f5ff 0%, #ffffff 100%);
  border: 2px solid #1e5dff;
  border-radius: 10px;
  padding: 28px;
  margin: 20px 0 24px;
}

.quiz-result-card h4 {
  font-size: 20px;
  color: #1a2841;
  font-weight: 700;
  margin-bottom: 8px;
}

.quiz-result-card .price-line {
  font-size: 15px;
  color: #4a5568;
  margin-bottom: 16px;
}

.quiz-result-card .price-line strong { color: #1a2841; font-size: 18px; }

.quiz-result-card p { color: #4a5568; font-size: 14px; line-height: 1.6; }

.quiz-result-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.quiz-result-actions a {
  flex: 1;
  min-width: 180px;
  text-align: center;
  padding: 13px 20px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.15s ease, background 0.2s ease;
}

.quiz-result-actions .primary {
  background: #f37021;
  color: #ffffff;
}

.quiz-result-actions .primary:hover { background: #d95d15; transform: translateY(-2px); }

.quiz-result-actions .secondary {
  background: transparent;
  color: #1e5dff;
  border: 1.5px solid #1e5dff;
}

.quiz-result-actions .secondary:hover { background: #1e5dff; color: #ffffff; }

.quiz-restart {
  display: block;
  margin: 20px auto 0;
  background: none;
  border: none;
  color: #718096;
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
  font-family: inherit;
}

.quiz-restart:hover { color: #1e5dff; }

@media (max-width: 620px) {
  .quiz-card { padding: 32px 22px 28px; }
  .quiz-options { grid-template-columns: 1fr; }
  .quiz-question { font-size: 18px; }
}

/* ============ FAQ Accordion ============ */
.faq-list {
  max-width: 820px;
  margin: 20px auto 0;
}

.faq-item {
  border-bottom: 1px solid #e2e8f0;
}

.faq-item:first-child { border-top: 1px solid #e2e8f0; }

.faq-question {
  width: 100%;
  padding: 22px 8px;
  background: none;
  border: none;
  text-align: left;
  font-size: 17px;
  font-weight: 600;
  color: #1a2841;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: inherit;
  transition: color 0.2s ease;
}

.faq-question:hover { color: #1e5dff; }

.faq-question .faq-toggle {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f0f5ff;
  color: #1e5dff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.2s ease;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  background: #1e5dff;
  color: #ffffff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  color: #4a5568;
  font-size: 15px;
  line-height: 1.7;
  padding: 0 8px;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 8px 22px;
}

/* ============ About Us Page ============ */
.about-intro {
  max-width: 860px;
  margin: 0 auto 60px;
  text-align: center;
}

.about-intro .lead {
  font-size: 20px;
  color: #1a2841;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 20px;
}

.about-intro p {
  font-size: 16px;
  color: #4a5568;
  line-height: 1.75;
  margin-bottom: 14px;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 20px;
}

.team-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(20,30,50,0.10);
}

.team-photo {
  width: 100%;
  height: 320px;
  min-height: 260px;
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  background-color: #f0f5ff;
  display: block;
}

@supports (aspect-ratio: 16 / 10) {
  .team-photo { height: auto; }
}

.team-body {
  padding: 32px 32px 36px;
}

.team-body h3 {
  font-size: 24px;
  color: #1a2841;
  font-weight: 700;
  margin-bottom: 4px;
}

.team-role {
  font-size: 14px;
  color: #1e5dff;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.team-body p {
  font-size: 15px;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 14px;
}

.team-quote {
  margin-top: 22px;
  padding: 18px 22px;
  background: #f7f8fa;
  border-left: 3px solid #1e5dff;
  border-radius: 4px;
  font-style: italic;
  font-size: 15px;
  color: #2d3748;
  line-height: 1.6;
}

.team-credentials {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.credential-tag {
  background: #f0f5ff;
  color: #1e5dff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  letter-spacing: 0.3px;
}

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 20px;
}

.value-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid #e2e8f0;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: #1e5dff;
}

.value-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #f0f5ff;
  color: #1e5dff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.value-card h4 {
  font-size: 18px;
  color: #1a2841;
  font-weight: 700;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 14px;
  color: #4a5568;
  line-height: 1.6;
}

/* Stats banner */
.stats-banner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 40px;
  padding: 44px 32px;
  background: linear-gradient(135deg, #f0f5ff 0%, #ffffff 100%);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

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

.stat-number {
  font-size: 44px;
  font-weight: 800;
  color: #1e5dff;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: #4a5568;
  font-weight: 500;
}

/* Promise section */
.promise-section {
  background: #f7f8fa;
}

.promise-list {
  max-width: 780px;
  margin: 20px auto 0;
  display: grid;
  gap: 18px;
}

.promise-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 24px;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.promise-check {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #22c55e;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.promise-item div h4 {
  font-size: 16px;
  color: #1a2841;
  font-weight: 600;
  margin-bottom: 4px;
}

.promise-item div p {
  font-size: 14px;
  color: #4a5568;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 960px) {
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .stats-banner { grid-template-columns: 1fr 1fr; gap: 24px; padding: 32px 24px; }
  .stat-number { font-size: 36px; }
}

@media (max-width: 520px) {
  .values-grid { grid-template-columns: 1fr; }
  .team-body { padding: 24px 22px 28px; }
  .promise-item { padding: 16px 18px; }
}

/* Footer */
.footer {
  padding: 32px 24px;
  text-align: center;
  background: #ffffff;
  color: #718096;
  font-size: 14px;
  border-top: 1px solid #edf0f4;
}

/* ============ Ticker / Laufband ============ */
.ticker {
  position: relative;
  background: #f37021;
  color: #ffffff;
  overflow: hidden;
  padding: 12px 0;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  z-index: 50;
}

.ticker-track {
  display: inline-flex;
  white-space: nowrap;
  animation: ticker-scroll 32s linear infinite;
  padding-left: 100%;
}

.ticker-track span {
  padding: 0 40px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.ticker-track span::after {
  content: '\2022';
  color: rgba(255,255,255,0.6);
  margin-left: 40px;
}

.ticker:hover .ticker-track { animation-play-state: paused; }

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* ============ Cookie Banner ============ */
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  max-width: 1100px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  padding: 24px 28px;
  z-index: 9999;
  display: none;
  border: 1px solid #e2e8f0;
}

.cookie-banner.show { display: block; animation: cookie-slide-up 0.4s ease-out; }

@keyframes cookie-slide-up {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.cookie-banner h3 {
  font-size: 18px;
  color: #1a2841;
  margin-bottom: 8px;
  font-weight: 600;
}

.cookie-banner p {
  font-size: 14px;
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 16px;
}

.cookie-banner a {
  color: #1e5dff;
  text-decoration: underline;
}

.cookie-options {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 18px;
  padding: 14px 0;
  border-top: 1px solid #edf0f4;
  border-bottom: 1px solid #edf0f4;
}

.cookie-option {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #2d3748;
}

.cookie-option input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #1e5dff;
  cursor: pointer;
}

.cookie-option input[type="checkbox"]:disabled { cursor: not-allowed; opacity: 0.7; }

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.cookie-btn {
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 3px;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, background 0.2s ease;
  font-family: inherit;
}

.cookie-btn:hover { transform: translateY(-1px); }

.cookie-btn.primary { background: #1e5dff; color: #ffffff; }
.cookie-btn.primary:hover { background: #1849cc; }
.cookie-btn.secondary { background: #edf0f4; color: #1a2841; }
.cookie-btn.secondary:hover { background: #dde2ea; }
.cookie-btn.reject { background: transparent; color: #4a5568; text-decoration: underline; padding-left: 8px; padding-right: 8px; }

@media (max-width: 620px) {
  .cookie-banner { padding: 18px 20px; left: 10px; right: 10px; bottom: 10px; }
  .cookie-buttons { justify-content: stretch; }
  .cookie-btn { flex: 1; }
}

/* ============ Legal Pages ============ */
.legal {
  padding: 80px 0 100px;
}

.legal h2 {
  font-size: 36px;
  color: #1a2841;
  margin-bottom: 18px;
}

.legal .title-underline { margin-bottom: 36px; }

.legal-content p {
  margin-bottom: 14px;
  font-size: 15px;
  color: #4a5568;
}

.legal-content h3 {
  font-size: 20px;
  color: #1a2841;
  margin-top: 32px;
  margin-bottom: 14px;
  font-weight: 600;
}

.legal-content strong { color: #1a2841; }
.legal-content a { color: #1e5dff; word-break: break-word; }
.legal-content a:hover { text-decoration: underline; }

/* ============ Responsive ============ */
@media (max-width: 960px) {
  .nav { padding: 20px 24px; gap: 24px; }
  .hero h1 { font-size: 46px; }
  .section-title { font-size: 32px; }
  .split-text h2, .contact-card h2 { font-size: 30px; }
  .split { grid-template-columns: 1fr; }
  .split-image { min-height: 320px; }
  .split-text { padding: 60px 24px; }
  .intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .cards-grid { grid-template-columns: 1fr; gap: 40px; }
  section { padding: 70px 0; }
  .contact-card { padding: 40px 28px; }
  .contact-section { background-attachment: scroll; padding: 90px 0; }
}

@media (max-width: 520px) {
  .hero h1 { font-size: 38px; }
  .nav { gap: 16px; }
  .nav a { font-size: 13px; }
}
