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

:root {
  --orange: #ff6a00;
  --orange-dark: #e05a00;
  --orange-light: #fff4ee;
  --orange-mid: #ff8c3a;
  --text: #444444;
  --text-dark: #1d1d1b;
  --grey-light: #f5f5f5;
  --white: #ffffff;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 17px;
}

a { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; }

/* ── Nav ── */
nav {
  background: var(--white);
  border-bottom: 3px solid var(--orange);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.logo img { height: 36px; display: block; }
.logo { text-decoration: none; }

.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.2s;
  text-decoration: none !important;
}
.nav-cta:hover { background: var(--orange-dark); text-decoration: none !important; }

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-mid) 100%);
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 90px 5% 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Dark overlay when a photo is set */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,5,0,0.62) 0%,
    rgba(20,8,0,0.52) 100%
  );
  pointer-events: none;
  z-index: 0;
}

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

/* Orange gradient hero (no photo) — override overlay */
.hero--orange::before { background: none; }

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.25);
  color: white;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: white;
}

.hero h1 .highlight {
  color: white;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 3px;
  text-decoration-color: rgba(255,255,255,0.5);
}

.hero p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.90);
  max-width: 620px;
  margin: 0 auto 40px;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 15px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-primary {
  background: var(--orange);
  color: white;
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,106,0,0.4); text-decoration: none; color: white; }

.btn-outline {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}
.btn-outline:hover { background: var(--orange); color: white; text-decoration: none; }

.btn-white {
  background: white;
  color: var(--orange);
  font-weight: 700;
}
.btn-white:hover { background: var(--orange-light); text-decoration: none; color: var(--orange); }

/* ── Target Group Cards ── */
.target-section {
  padding: 80px 5%;
  background: var(--grey-light);
  text-align: center;
}

.target-section h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.target-section .subtitle {
  color: var(--text);
  margin-bottom: 50px;
  font-size: 1.1rem;
}

.target-cards {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.target-card {
  background: white;
  border-radius: var(--radius);
  padding: 40px 32px;
  flex: 1;
  min-width: 280px;
  max-width: 340px;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 4px solid transparent;
}

.target-card:hover {
  transform: translateY(-8px);
  border-bottom-color: var(--orange);
  box-shadow: 0 12px 40px rgba(255,106,0,0.18);
  text-decoration: none;
  color: var(--text);
}

.target-card .icon { font-size: 3rem; margin-bottom: 20px; }
.target-card h3 { font-size: 1.4rem; font-weight: 900; margin-bottom: 12px; color: var(--text-dark); }
.target-card p { color: var(--text); font-size: 0.95rem; line-height: 1.6; margin-bottom: 24px; }

.target-card .card-cta {
  background: var(--orange-light);
  color: var(--orange);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: auto;
}
.target-card:hover .card-cta { background: var(--orange); color: white; }

/* ── Sections ── */
.section {
  padding: 80px 5%;
  max-width: 1100px;
  margin: 0 auto;
}
.section-centered { text-align: center; }
.section h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 900; margin-bottom: 16px; color: var(--text-dark); }
.section .label { color: var(--orange); font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.label { color: var(--orange); font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; display: block; }

/* ── Steps ── */
.steps { display: flex; gap: 32px; margin-top: 48px; flex-wrap: wrap; justify-content: center; }

.step {
  flex: 1; min-width: 220px; max-width: 300px;
  text-align: center; padding: 32px 24px;
  background: white; border-radius: var(--radius); box-shadow: var(--shadow);
}
.step-num {
  width: 52px; height: 52px; background: var(--orange);
  color: white; font-size: 1.4rem; font-weight: 900;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.step h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 10px; color: var(--text-dark); }
.step p { color: var(--text); font-size: 0.95rem; }

/* ── Feature Grid ── */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; margin-top: 48px; }

.feature-item {
  background: white; border-radius: var(--radius); padding: 32px 28px;
  box-shadow: var(--shadow); border-left: 4px solid var(--orange);
}
.feature-item .fi-icon { font-size: 2rem; margin-bottom: 16px; }
.feature-item h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 10px; color: var(--text-dark); }
.feature-item p { color: var(--text); font-size: 0.95rem; }

/* ── Pain / Solution ── */
.pain-solution { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; margin-top: 60px; }
@media (max-width: 768px) { .pain-solution { grid-template-columns: 1fr; } }

.pain-box { background: var(--grey-light); border-radius: var(--radius); padding: 36px; }
.pain-box h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 20px; color: var(--text-dark); }
.pain-list { list-style: none; }
.pain-list li { padding: 10px 0; border-bottom: 1px solid #e8e8e8; color: var(--text); font-size: 0.95rem; display: flex; align-items: flex-start; gap: 10px; }
.pain-list li:last-child { border-bottom: none; }
.pain-list li::before { content: ''; flex-shrink: 0; width: 20px; height: 20px; background: url('/img/pfeil-orange.png') center/contain no-repeat; margin-top: 2px; opacity: 0.35; }

.solution-box { background: var(--orange); border-radius: var(--radius); padding: 36px; color: white; }
.solution-box h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 20px; color: white; }
.solution-list { list-style: none; }
.solution-list li { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.25); font-size: 0.95rem; display: flex; align-items: flex-start; gap: 10px; color: white; }
.solution-list li:last-child { border-bottom: none; }
.solution-list li::before { content: ''; flex-shrink: 0; width: 20px; height: 20px; background: url('/img/pfeil-white.png') center/contain no-repeat; margin-top: 2px; }

/* ── Price Banner ── */
.price-banner {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-mid) 100%);
  color: white;
  padding: 80px 5%;
  text-align: center;
}
.price-banner h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 900; margin-bottom: 16px; color: white; }
.price-tag { font-size: clamp(3rem, 8vw, 5rem); font-weight: 900; color: white; line-height: 1; margin: 24px 0 8px; text-shadow: 0 2px 12px rgba(0,0,0,0.15); }
.price-label { color: rgba(255,255,255,0.8); font-size: 1rem; margin-bottom: 32px; }
.price-compare { background: rgba(255,255,255,0.2); border-radius: var(--radius); padding: 20px 32px; display: inline-block; margin-bottom: 36px; font-size: 1rem; color: white; backdrop-filter: blur(4px); }

/* ── CTA Block ── */
.cta-block {
  background: var(--orange-light);
  border-radius: var(--radius);
  padding: 60px 40px;
  text-align: center;
  margin: 0 5% 80px;
  border: 2px solid rgba(255,106,0,0.15);
}
.cta-block h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 900; margin-bottom: 16px; color: var(--text-dark); }
.cta-block p { color: var(--text); margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Form ── */
.form-section { max-width: 700px; margin: 0 auto; padding: 60px 5%; }
.form-section h1 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 900; margin-bottom: 8px; color: var(--text-dark); }
.form-section .sub { color: var(--text); margin-bottom: 36px; }

.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-weight: 700; margin-bottom: 8px; font-size: 0.95rem; color: var(--text-dark); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 13px 16px;
  border: 2px solid #e0e0e0; border-radius: 8px;
  font-size: 1rem; font-family: inherit;
  transition: border-color 0.2s; background: white; color: var(--text);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--orange); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

.upload-box {
  border: 2px dashed #ccc; border-radius: 8px; padding: 32px;
  text-align: center; cursor: pointer; transition: border-color 0.2s, background 0.2s;
}
.upload-box:hover { border-color: var(--orange); background: var(--orange-light); }
.upload-box .upload-icon { font-size: 2rem; margin-bottom: 10px; }
.upload-box p { color: var(--text); font-size: 0.9rem; }
.upload-box input { display: none; }

.form-check { display: flex; gap: 12px; align-items: flex-start; font-size: 0.9rem; color: var(--text); }
.form-check input { width: auto; margin-top: 3px; accent-color: var(--orange); }

.submit-btn {
  width: 100%; padding: 18px;
  background: var(--orange); color: white;
  border: none; border-radius: 50px;
  font-size: 1.1rem; font-weight: 700;
  cursor: pointer; transition: all 0.2s; margin-top: 8px;
}
.submit-btn:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,106,0,0.35); }

/* ── Footer ── */
footer {
  background: var(--orange);
  color: rgba(255,255,255,0.85);
  padding: 50px 5% 30px;
  text-align: center;
}
footer .footer-logo { margin-bottom: 16px; }
footer .footer-logo img { height: 26px; filter: brightness(0) invert(1); opacity: 0.95; }
footer p { font-size: 0.9rem; margin-bottom: 24px; color: rgba(255,255,255,0.8); }
footer .footer-links { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin-bottom: 30px; }
footer .footer-links a { color: rgba(255,255,255,0.7); font-size: 0.85rem; }
footer .footer-links a:hover { color: white; text-decoration: underline; }
footer .footer-bottom { border-top: 1px solid rgba(255,255,255,0.25); padding-top: 20px; font-size: 0.8rem; color: rgba(255,255,255,0.65); }

/* ── Login ── */
.login-page {
  min-height: 100vh; display: flex;
  align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-mid) 100%);
  padding: 20px;
}
.login-box {
  background: white; border-radius: 16px; padding: 48px 40px;
  max-width: 400px; width: 100%; text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.login-box .logo-img { height: 44px; margin-bottom: 8px; }
.login-box .tagline { color: var(--text); font-size: 0.9rem; margin-bottom: 32px; }
.login-box input { margin-bottom: 16px; }
.login-error { color: #d00; font-size: 0.9rem; margin-bottom: 16px; }

/* ── Highlight box ── */
.highlight-box {
  background: var(--orange-light); border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0; padding: 24px 28px; margin: 32px 0;
}
.highlight-box strong { color: var(--orange); }

/* ── Trustbar ── */
.trustbar {
  background: white; border-top: 1px solid #eee; border-bottom: 1px solid #eee;
  padding: 24px 5%; display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 10px; color: var(--text); font-size: 0.9rem; font-weight: 600; }
.trust-item .t-icon { font-size: 1.4rem; }

/* ── Responsive ── */
@media (max-width: 768px) {
  nav { padding: 0 4%; }
  .hero { padding: 60px 4% 60px; }
  .target-cards { flex-direction: column; align-items: center; }
  .cta-block { margin: 0 4% 60px; padding: 40px 24px; }
  .trustbar { gap: 24px; }
}

/* ── Split Sections ── */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
.split-section--reverse .split-img { order: 2; }
.split-section--reverse .split-text { order: 1; }
.split-img {
  background-size: cover;
  background-position: center;
  min-height: 380px;
}
.split-text {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.split-text h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.25;
}
.split-text p { color: var(--text); font-size: 1rem; line-height: 1.7; }
@media (max-width: 768px) {
  .split-section { grid-template-columns: 1fr; }
  .split-img { min-height: 260px; order: 0 !important; }
  .split-text { padding: 40px 24px; order: 1 !important; }
}

/* ── Über uns ── */
.ueber-hero {
  background: linear-gradient(135deg, #FF6B00 0%, #ff8c3a 100%);
  padding: 90px 5% 80px;
  text-align: center;
  color: white;
}
.ueber-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900; color: white; margin-bottom: 20px; }
.ueber-hero p { font-size: 1.2rem; color: rgba(255,255,255,0.88); max-width: 620px; margin: 0 auto; }

.fullwidth-banner {
  position: relative;
  height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.fullwidth-banner-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.fullwidth-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,107,0,0.75);
}
.fullwidth-banner-content {
  position: relative;
  z-index: 2;
  color: white;
  padding: 0 5%;
  max-width: 800px;
}
.fullwidth-banner-content h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; margin-bottom: 16px; }
.fullwidth-banner-content p { font-size: 1.1rem; color: rgba(255,255,255,0.9); }

.werte-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.wert-card {
  background: white;
  border-radius: 12px;
  padding: 36px 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  border-top: 4px solid #FF6B00;
  text-align: center;
}
.wert-card .wert-icon { width: 40px; height: 40px; margin: 0 auto 16px; }
.wert-card h3 { font-size: 1.1rem; font-weight: 800; color: #1d1d1b; margin-bottom: 10px; }
.wert-card p { font-size: 0.9rem; color: #555; line-height: 1.6; }

.flamingo-section {
  background: #fff4ee;
  padding: 80px 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 768px) { .flamingo-section { grid-template-columns: 1fr; } }
.flamingo-section img { width: 100%; border-radius: 16px; box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
.flamingo-text h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 900; color: #1d1d1b; margin-bottom: 16px; }
.flamingo-text p { color: #555; font-size: 1rem; line-height: 1.7; margin-bottom: 12px; }

/* ── Testimonials ── */
.testimonials-section {
  background: #1a1a1a;
  padding: 88px 5%;
}
.testimonials-section .section-inner {
  max-width: 960px;
  margin: 0 auto;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 56px;
}
.testimonials-header .label {
  display: block;
  margin-bottom: 10px;
  color: var(--orange) !important;
}
.testimonials-header h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  color: white;
}

.testimonials-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testi-story {
  background: #242424;
  border-radius: 16px;
  padding: 36px 40px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: start;
  border: 1px solid #333;
  transition: border-color 0.3s, transform 0.25s;
  margin-bottom: 16px;
}
.testi-story:hover {
  border-color: var(--orange);
  transform: translateX(4px);
}
@media (max-width: 640px) {
  .testi-story { grid-template-columns: 1fr; gap: 20px; padding: 28px 24px; }
}

.testi-person {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 100px;
  text-align: center;
}

.testi-photo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 900;
  color: white;
  flex-shrink: 0;
  letter-spacing: -1px;
}
.testi-photo-a { background: linear-gradient(135deg, #FF6B00, #ff9a4d); }
.testi-photo-b { background: linear-gradient(135deg, #c0392b, #e74c3c); }
.testi-photo-c { background: linear-gradient(135deg, #1a6b3c, #27ae60); }

.testi-fullname {
  font-size: 0.82rem;
  font-weight: 800;
  color: white;
  line-height: 1.3;
}
.testi-loc {
  font-size: 0.72rem;
  color: #888;
  line-height: 1.3;
  margin-top: -4px;
}
.testi-stars-v {
  color: var(--orange);
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.testi-content { display: flex; flex-direction: column; gap: 12px; }
.testi-situation {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,107,0,0.12);
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  border: 1px solid rgba(255,107,0,0.25);
  align-self: flex-start;
}
.testi-quote {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.75;
  font-style: italic;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid var(--orange);
}
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  list-style: none;
  position: relative;
  line-height: 1.4;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--orange);
  transition: transform 0.25s;
  line-height: 1;
}
details[open] .faq-q::after {
  content: '−';
}
.faq-a {
  padding: 0 48px 22px 0;
  color: #555;
  font-size: 0.97rem;
  line-height: 1.75;
}
.faq-a strong { color: var(--text-dark); }

/* Auto-Section Mobile */
@media (max-width: 680px) {
  .auto-grid { grid-template-columns: 1fr !important; }
  .auto-divider { display: none !important; }
}
