:root {
  --navy: #0D1B3E;
  --navy-mid: #162B5A;
  --navy-light: #1E3A6E;
  --orange: #F26419;
  --orange-light: #FF7A33;
  --orange-pale: #FFF0E6;
  --white: #FFFFFF;
  --off-white: #F8F9FC;
  --text-muted: #8A95A8;
  --border: rgba(255,255,255,0.1);
}

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

strong {
  font-weight: 600;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--off-white);
  color: var(--navy);
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 56px;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #E8ECF2;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--navy);
  transition: color 0.3s ease;
  letter-spacing: 0.04em;
}
.nav-logo span { color: var(--orange); }

.logo-placeholder {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: var(--off-white);
  border: 1.5px dashed var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--orange);
  flex-shrink: 0;
}

nav.scrolled .logo-placeholder {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  color: var(--navy);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.nav-cta {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition: background 0.3s ease, color 0.3s ease, padding 0.3s ease;
}

nav.scrolled {
  background: var(--navy);
  border-bottom: 1px solid var(--border);
}
nav.scrolled .nav-logo { color: var(--white); }
nav.scrolled .nav-links a { color: var(--white); }
nav.scrolled .nav-links a.nav-cta {
  background: var(--orange);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 4px;
}

/* ─── HERO ─── */
.hero {
  background: var(--navy);
  min-height: 580px;
  display: grid;
  grid-template-columns: 2.2fr 1.2fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  padding: 80px 60px 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 3;
  position: relative;
  margin-right: -100px;
}

.hero-eyebrow {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--orange);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 900;
}
.hero h1 em {
  font-style: normal;
  color: var(--orange);
}

.hero-sub {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  max-width: 500px;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 40px;
  align-items: center;
}

.btn-primary {
  background: var(--orange);
  color: white;
  padding: 14px 30px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  letter-spacing: 0.02em;
}

.btn-ghost {
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
}
.btn-ghost::after { content: '→'; color: var(--orange); }

.hero-right {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-left: -230px;
}

.hero-right::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 550px;
  background: linear-gradient(to right, var(--navy) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 100%;
  display: block;
}

/* ─── SECTION WRAPPER ─── */
section {
  padding: 90px 60px;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* ─── SECTION LABEL ─── */
.section-eyebrow {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 2px;
  background: var(--orange);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title.white { color: var(--white); }

.section-sub {
  font-size: 15px;
  color: var(--navy-mid);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 56px;
  font-weight: 200;
}
.section-sub.white { color: rgba(255,255,255,0.88); }

/* ─── PROBLEM ─── */
.problem-section {
  background: var(--white);
  padding-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.problem-section::before {
  content: '';
  position: absolute;
  top: -120px; left: -100px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: rgba(13,27,62,0.04);
  pointer-events: none;
}
.problem-section .section-inner {
  position: relative;
  z-index: 1;
}

.problem-section .section-sub {
  color: var(--navy-mid);
}

.problem-section .mission-text {
  background: var(--off-white);
  border-left: 4px solid var(--orange);
  border-radius: 4px;
  padding: 32px 26px;
  margin-right: 0px;
  max-width: none;
}

/* ─── ANGEBOTE ─── */
.angebote-section {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
  padding-bottom: 40px
}

.angebote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.angebot-card {
  background: var(--white);
  border: 1px solid #E8ECF2;
  border-radius: 10px;
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.2s;
}

.angebot-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -15px rgba(13,27,62,0.25);
}

.angebot-card.featured {
  background: var(--orange);
  border-color: var(--orange);
}

.angebot-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.angebot-icon {
  width: 44px;
  height: 44px;
  background: rgba(242,100,25,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.angebot-card.featured .angebot-icon {
  background: rgba(255,255,255,0.2);
}

.angebot-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}
.angebot-card.featured .angebot-title { color: var(--white); }

.angebot-desc {
  font-size: 15px;
  color: var(--navy-mid);
  line-height: 1.7;
  margin-bottom: 24px;
  font-weight: 300;
}
.angebot-card.featured .angebot-desc { color: var(--white); }

.angebot-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  width: fit-content;
  padding: 9px 18px;
  border: 1px solid var(--orange);
  border-radius: 100px;
  transition: background 0.2s, color 0.2s;
}
.angebot-link:hover {
  background: var(--orange);
  color: var(--white);
}
.angebot-card.featured .angebot-link {
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.angebot-card.featured .angebot-link:hover {
  background: var(--white);
  color: var(--orange);
}

.angebot-more {
  display: none;
  margin-top: 18px;
}
.angebot-more.open {
  display: block;
}

.angebot-desc-full {
  font-size: 15px;
  color: var(--navy-mid);
  line-height: 1.7;
  margin-bottom: 18px;
  font-weight: 300;
}
.angebot-card.featured .angebot-desc-full { color: var(--white); }

.angebot-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.angebot-tags span {
  background: var(--off-white);
  color: var(--navy);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 100px;
  border: 1px solid #E8ECF2;
}
.angebot-card.featured .angebot-tags span {
  background: rgba(255,255,255,0.16);
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
}

/* ─── QUICK CTA ─── */
.quick-cta {
  background: var(--navy);
  padding: 48px 60px;
}

.quick-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.quick-cta-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  max-width: 620px;
}

.quick-cta .btn-primary {
  flex-shrink: 0;
}

/* ─── TEAM: VERSION HELL ─── */
.team-section.variant-light {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}
.team-section.variant-light::before {
  content: '';
  position: absolute;
  top: -100px; right: -90px;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: rgba(13,27,62,0.04);
  pointer-events: none;
}
.team-section.variant-light .section-inner {
  position: relative;
  z-index: 1;
}
.team-section.variant-light .section-eyebrow {
  color: var(--orange);
}
.team-section.variant-light .team-name {
  color: var(--navy);
}
.team-section.variant-light .team-bio {
  color: var(--navy-mid);
}

/* ─── TEAM: VERSION Dunkel ─── */
.team-section {
  background: var(--navy);
}

.team-section .section-sub {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.team-card {
  background: var(--white);
  border: 1px solid #E8ECF2;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -15px rgba(13,27,62,0.25);
}

.team-photo {
  width: 100%;
  height: 280px;
  border-radius: 0;
  background: var(--off-white);
  margin: 0;
  border: none;
  border-bottom: 1px solid #E8ECF2;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transform: scale(0.9);
}

.team-card-content {
  padding: 24px 22px 28px;
}

.team-name {
  font-family: 'Playfair Display', serif;
  font-size: 25px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.team-role {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.team-bio {
  font-size: 15px;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  font-weight: 400;
}

.team-link {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--orange);
  border: 1.5px solid var(--orange);
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.team-link:hover {
  background: var(--orange);
  color: var(--white);
}

/* ─── PROZESS ─── */
.prozess-section {
  background: var(--white);
}

.prozess-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.prozess-steps::after {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 2px;
  background: linear-gradient(to right, var(--orange), rgba(242,100,25,0.3));
  z-index: 0;
}

.prozess-step {
  padding: 0 32px;
  position: relative;
  z-index: 1;
  text-align: center;

}

.step-num {
  width: 72px;
  height: 72px;
  background: var(--orange);
  border: 2px solid var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
  margin: 0 auto 24px;
}

.step-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 15px;
  color: var(--navy-mid);
  line-height: 1.7;
  font-weight: 300;
}

/* ─── TESTIMONIALS ─── */
.testimonial-section {
  background: var(--navy);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 20px 28px;
  text-align: center; 
  position: relative;
}

.quote-mark {
  font-family: 'Playfair Display', italic;
  font-size: 60px;
  color: var(--orange);
  opacity: 0.9;
  line-height: 0.8;
  margin-bottom: -8px;
  font-style: italic; 
}

.quote-text {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 0px;
  font-weight: 300;
}

/* ─── TESTIMONIALS: VERSION BLAU (Option C, flach) ─── */
.testimonial-section.variant-blue {
  background: var(--off-white); 
}
.testimonial-section.variant-blue .section-title {
  color: var(--navy);
}
.testimonial-section.variant-blue .testimonial-card {
  background: rgba(255,255,255,0.30);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: 0 16px 34px rgba(13,27,62,0.08);
}
.testimonial-section.variant-blue .quote-text {
  color: var(--navy-mid);
}

/* ─── CTA ─── */
.cta-section {
  background: var(--off-white);
  padding: 48px 60px;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(0,0,0,0.05);
  pointer-events: none;
}

.cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
  white-space: nowrap;
}

.cta-left p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 36px;
  font-weight: 300;
}

.btn-white {
  background: var(--orange);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  letter-spacing: 0.02em;
  display: inline-block;
}

.cta-image {
  background: var(--off-white);
  border: 1px solid rgba(13,27,62,0.08);
  border-radius: 10px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─── LEGAL PAGES ─── */
.legal-header {
  padding: 24px 60px;
  border-bottom: 1px solid #E8ECF2;
}
.legal-header a {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  color: var(--navy-mid);
  text-decoration: none;
  font-weight: 500;
}
.legal-hero {
  background: var(--white);
  padding: 64px 60px 40px;
  position: relative;
  overflow: hidden;
}
.legal-hero::before {
  content: '';
  position: absolute;
  top: -120px; left: -100px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: rgba(13,27,62,0.04);
  pointer-events: none;
}
.legal-hero .section-inner {
  position: relative;
  z-index: 1;
}
.legal-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy-mid);
  text-decoration: none;
  margin-bottom: 24px;
}
.legal-back-link:hover { color: var(--orange); }
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 0px 60px 100px;
}
.legal-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 12px;
}
.legal-content .legal-updated {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 48px;
}
.legal-content .legal-jump a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 500;
}
.legal-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin: 48px 0 16px;
}
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin: 24px 0 8px;
}
.legal-content p, .legal-content li {
  font-size: 15px;
  line-height: 1.75;
  color: var(--navy-mid);
  font-weight: 300;
  margin-bottom: 14px;
}
.legal-content ul { padding-left: 20px; margin-bottom: 14px; }
.legal-content a { color: var(--orange); }
.legal-section-anchor { scroll-margin-top: 90px; }

/* ─── FOOTER ─── */
footer {
  background: var(--navy);
  padding: 60px 60px 30px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-logo span { color: var(--orange); }

.footer-logo-placeholder {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: rgba(255,255,255,0.08);
  border: 1.5px dashed var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--orange);
  flex-shrink: 0;
}

.footer-tagline {
  font-size: 13px;
  color: var(--off-white);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 24px;
}

.social-row {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 13px;
  color: var(--white);
  text-decoration: none;
  font-weight: 300;
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}