/* ============================================
   REGIO CARS - Main Stylesheet
   Modern automotive marketing site
   ============================================ */

:root {
  --rc-green: #0e5d3a;
  --rc-green-dark: #074024;
  --rc-green-light: #1a7a4d;
  --rc-green-glow: rgba(14, 93, 58, 0.15);
  --rc-accent: #ffc107;
  --rc-bg: #ffffff;
  --rc-bg-soft: #f7f8f6;
  --rc-bg-dark: #0a1410;
  --rc-text: #0f1c17;
  --rc-text-soft: #4a5a52;
  --rc-text-muted: #8a958f;
  --rc-border: #e5e9e6;
  --rc-shadow-sm: 0 2px 8px rgba(14, 93, 58, 0.06);
  --rc-shadow: 0 8px 30px rgba(14, 93, 58, 0.08);
  --rc-shadow-lg: 0 20px 60px rgba(14, 93, 58, 0.12);
  --rc-radius: 12px;
  --rc-radius-lg: 20px;
  --rc-radius-xl: 28px;
  --rc-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --rc-font-head: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--rc-font);
  font-size: 17px;
  line-height: 1.6;
  color: var(--rc-text);
  background: var(--rc-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--rc-green); text-decoration: none; transition: color .2s; }
a:hover { color: var(--rc-green-dark); }

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

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--rc-font-head);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--rc-text);
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); margin-bottom: 18px; }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); margin-bottom: 12px; }
h4 { font-size: 1.15rem; margin-bottom: 8px; }
p { margin-bottom: 16px; color: var(--rc-text-soft); }
.eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--rc-green);
  margin-bottom: 16px;
  padding: 6px 14px;
  background: var(--rc-green-glow);
  border-radius: 999px;
}
.section-head { text-align: center; margin-bottom: 56px; }
.section-head h2 em { color: var(--rc-green); font-style: italic; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: all .2s ease;
  text-decoration: none;
  font-family: inherit;
}
.btn-primary {
  background: var(--rc-green);
  color: #fff;
  box-shadow: 0 8px 20px rgba(14, 93, 58, 0.25);
}
.btn-primary:hover {
  background: var(--rc-green-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(14, 93, 58, 0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--rc-text);
  border: 1.5px solid var(--rc-border);
}
.btn-ghost:hover { border-color: var(--rc-green); color: var(--rc-green); }
.btn-light {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
}
.btn-light:hover { background: rgba(255,255,255,0.2); color: #fff; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all .3s;
}
.nav.scrolled { border-bottom-color: var(--rc-border); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.15rem; color: var(--rc-text); }
.nav-logo img { height: 36px; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  color: var(--rc-text-soft);
  font-size: 0.95rem;
  font-weight: 500;
}
.nav-links a:hover { color: var(--rc-green); }
.nav-cta { padding: 10px 20px; font-size: 0.92rem; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--rc-text); margin: 5px 0; transition: .2s; }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #fff;
    padding: 24px;
    gap: 20px;
    border-top: 1px solid var(--rc-border);
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 140px 0 100px;
  background: linear-gradient(180deg, #f7f8f6 0%, #fff 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--rc-green-glow) 0%, transparent 70%);
  z-index: 0;
}
.hero-inner { position: relative; z-index: 1; text-align: center; max-width: 880px; margin: 0 auto; padding: 0 24px; }
.hero h1 { margin-bottom: 24px; }
.hero h1 em { color: var(--rc-green); font-style: italic; }
.hero-sub {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--rc-text-soft);
  margin-bottom: 40px;
  max-width: 680px;
  margin-left: auto; margin-right: auto;
}
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 0; }

/* ---------- Trust Bar ---------- */
.trust {
  padding: 50px 0;
  background: var(--rc-bg-soft);
  border-top: 1px solid var(--rc-border);
  border-bottom: 1px solid var(--rc-border);
}

/* ---------- Win-Toast (Notification Pop-ups, unten rechts) ---------- */
.win-toast-container {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
  max-width: 380px;
}

.win-toast {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--rc-border);
  border-radius: 14px;
  padding: 14px 18px 14px 14px;
  box-shadow:
    0 4px 12px rgba(14, 93, 58, 0.06),
    0 20px 50px rgba(14, 93, 58, 0.12);
  pointer-events: auto;
  transform: translateX(-120%);
  opacity: 0;
  transition: transform .5s cubic-bezier(.16,1,.3,1), opacity .4s;
  position: relative;
  overflow: hidden;
}
.win-toast.show {
  transform: translateX(0);
  opacity: 1;
}
.win-toast.hide {
  transform: translateX(-120%);
  opacity: 0;
}
.win-toast::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--rc-green) 0%, var(--rc-green-light) 100%);
}

.win-toast-logo {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--rc-bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border: 1px solid var(--rc-border);
}
.win-toast-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.win-toast-content {
  flex: 1;
  min-width: 0;
}
.win-toast-pulse {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
  position: relative;
}
.win-toast-pulse::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.4);
  animation: toastPulse 1.6s ease-out infinite;
}
@keyframes toastPulse {
  0% { transform: scale(0.7); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}
.win-toast-meta {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--rc-green);
  font-weight: 600;
  margin-bottom: 4px;
}
.win-toast-title {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--rc-text);
  margin-bottom: 2px;
  line-height: 1.3;
}
.win-toast-text {
  display: block;
  font-size: 0.82rem;
  color: var(--rc-text-soft);
  line-height: 1.4;
  margin: 0;
}

.win-toast-close {
  position: absolute;
  top: 6px;
  right: 8px;
  background: none;
  border: none;
  font-size: 1.1rem;
  color: var(--rc-text-muted);
  cursor: pointer;
  padding: 4px 6px;
  line-height: 1;
  border-radius: 4px;
  transition: background .15s;
}
.win-toast-close:hover {
  background: var(--rc-bg-soft);
  color: var(--rc-text);
}

@media (max-width: 600px) {
  .win-toast-container {
    bottom: 12px;
    left: 12px;
    right: 12px;
    max-width: none;
  }
  .win-toast { padding: 12px 16px 12px 12px; }
  .win-toast-logo { width: 40px; height: 40px; }
  .win-toast-title { font-size: 0.88rem; }
  .win-toast-text { font-size: 0.78rem; }
}

/* Wenn Cookie-Banner offen ist, Toasts nach oben */
.cookie-banner.show ~ .win-toast-container,
body:has(.cookie-banner.show) .win-toast-container {
  bottom: 200px;
}

@media (prefers-reduced-motion: reduce) {
  .win-toast { transition: opacity .3s; transform: none; }
  .win-toast-pulse::before { animation: none; }
}

.trust-label {
  text-align: center;
  font-size: 0.85rem;
  color: var(--rc-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 28px;
}
.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}
.trust-logos img {
  height: 52px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  opacity: 0.75;
  filter: grayscale(40%);
  transition: filter .25s, opacity .25s, transform .25s;
}
.trust-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(-2px);
}

/* ---------- Sections ---------- */
section { padding: 100px 0; }
.section-soft { background: var(--rc-bg-soft); }
.section-dark { background: var(--rc-bg-dark); color: #e5e9e6; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: rgba(255,255,255,0.7); }

/* ---------- Problem Section ---------- */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.problem-card {
  background: #fff;
  border: 1px solid var(--rc-border);
  border-radius: var(--rc-radius-lg);
  padding: 32px;
  transition: all .3s;
}
.problem-card:hover { box-shadow: var(--rc-shadow); transform: translateY(-4px); border-color: var(--rc-green-glow); }
.problem-card-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--rc-green-glow);
  color: var(--rc-green);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  font-size: 1.4rem;
}
.problem-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.problem-card p { font-size: 0.95rem; margin: 0; }

/* ---------- Pillars (Loesungs-Saeulen) ---------- */
.pillars { display: grid; gap: 32px; margin-top: 56px; }
.pillar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: #fff;
  border-radius: var(--rc-radius-xl);
  padding: 56px;
  border: 1px solid var(--rc-border);
  box-shadow: var(--rc-shadow-sm);
}
.pillar:nth-child(even) .pillar-content { order: 2; }
.pillar-number {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--rc-green);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.pillar-content h3 { font-size: 1.7rem; margin-bottom: 16px; }
.pillar-content ul { list-style: none; margin-top: 20px; }
.pillar-content li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--rc-text-soft);
}
.pillar-content li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--rc-green);
  font-weight: 700;
}
.pillar-visual {
  background: linear-gradient(135deg, var(--rc-green) 0%, var(--rc-green-light) 100%);
  border-radius: var(--rc-radius-lg);
  aspect-ratio: 4 / 3;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.pillar-visual-inner {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--rc-radius);
  padding: 24px 32px;
  text-align: center;
  z-index: 1;
}
.pillar-visual-inner strong { display: block; font-size: 2rem; margin-bottom: 4px; }

@media (max-width: 768px) {
  .pillar { grid-template-columns: 1fr; padding: 32px; gap: 28px; }
  .pillar:nth-child(even) .pillar-content { order: 0; }
}

/* ---------- Case Study ---------- */
.case-study {
  background: var(--rc-bg-dark);
  color: #fff;
  border-radius: var(--rc-radius-xl);
  padding: 64px;
  margin-top: 48px;
  position: relative;
  overflow: hidden;
}
.case-study::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(14,93,58,0.4) 0%, transparent 70%);
  pointer-events: none;
}
.case-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.case-grid h3 { color: #fff; font-size: clamp(1.4rem, 2.6vw, 1.9rem); line-height: 1.25; letter-spacing: -0.01em; margin-bottom: 14px; }
.case-grid p { color: rgba(255,255,255,0.75); font-size: 0.98rem; line-height: 1.6; }
.case-tag {
  display: inline-block;
  font-size: 0.78rem;
  padding: 6px 12px;
  background: rgba(14, 93, 58, 0.3);
  color: #6fdba1;
  border-radius: 999px;
  margin-bottom: 16px;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.case-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.case-stat {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--rc-radius);
  padding: 20px 18px;
}
.case-stat strong {
  display: block;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #6fdba1;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.case-stat span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.35;
  display: block;
}
.case-visual {
  border-radius: var(--rc-radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 5;
}
.case-visual img { width: 100%; height: 100%; object-fit: cover; }
.case-quote {
  margin-top: 36px;
  padding: 22px 24px;
  background: rgba(255,255,255,0.04);
  border-left: 3px solid var(--rc-green-light);
  border-radius: 0 var(--rc-radius) var(--rc-radius) 0;
}
.case-quote p {
  font-style: italic;
  margin: 0;
  color: rgba(255,255,255,0.9);
  font-size: 0.98rem;
  line-height: 1.6;
}
.case-quote cite {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

/* Tablet */
@media (max-width: 880px) {
  .case-study { padding: 40px 32px; }
  .case-grid { grid-template-columns: 1fr; gap: 32px; }
  .case-visual {
    aspect-ratio: 16 / 10;
    max-height: 360px;
    order: -1;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .case-study {
    padding: 28px 20px;
    margin-top: 32px;
    border-radius: 18px;
  }
  .case-grid { gap: 24px; }
  .case-grid h3 { font-size: 1.3rem; line-height: 1.3; }
  .case-grid p { font-size: 0.92rem; }
  .case-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 22px;
  }
  .case-stat { padding: 14px 12px; }
  .case-stat strong { font-size: 1.5rem; }
  .case-stat span { font-size: 0.75rem; }
  .case-visual {
    aspect-ratio: 16 / 11;
    max-height: 240px;
    border-radius: 12px;
  }
  .case-quote {
    margin-top: 24px;
    padding: 18px 20px;
    border-radius: 0 10px 10px 0;
  }
  .case-quote p { font-size: 0.92rem; }
  .case-quote cite { font-size: 0.8rem; margin-top: 10px; }
  .case-tag { font-size: 0.72rem; padding: 5px 10px; }
}

/* Sehr klein */
@media (max-width: 380px) {
  .case-study { padding: 24px 16px; }
  .case-stat { padding: 12px 10px; }
  .case-stat strong { font-size: 1.35rem; }
  .case-stat span { font-size: 0.72rem; }
  .case-visual { max-height: 200px; }
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.testimonial {
  background: #fff;
  border: 1px solid var(--rc-border);
  border-radius: var(--rc-radius-lg);
  padding: 32px;
  transition: all .3s;
}
.testimonial:hover { box-shadow: var(--rc-shadow); transform: translateY(-4px); }
.testimonial-stars { color: var(--rc-accent); font-size: 1.05rem; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial p { font-size: 1rem; color: var(--rc-text); margin-bottom: 20px; line-height: 1.65; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--rc-green-glow);
}
.testimonial-meta strong { display: block; font-size: 0.98rem; color: var(--rc-text); }
.testimonial-meta span { font-size: 0.85rem; color: var(--rc-text-muted); }

/* ---------- Team Section ---------- */
.team-section { padding: 120px 0; }

.team-founder {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: center;
  margin-top: 24px;
}
.team-founder-image {
  position: relative;
  max-width: 460px;
  margin: 0 auto;
}
.team-founder-image img {
  width: 100%;
  border-radius: var(--rc-radius-xl);
  box-shadow: var(--rc-shadow-lg);
  position: relative;
  z-index: 1;
}
.team-founder-image::after {
  content: '';
  position: absolute;
  bottom: -24px; right: -24px;
  width: 140px; height: 140px;
  background: var(--rc-green);
  border-radius: var(--rc-radius-lg);
  z-index: 0;
}
.team-founder-badge {
  position: absolute;
  bottom: 24px; left: -16px;
  background: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--rc-green);
  box-shadow: var(--rc-shadow);
  z-index: 2;
  border: 1px solid var(--rc-border);
}
.team-founder-content h3 {
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.team-founder-content h3 em {
  color: var(--rc-green);
  font-style: italic;
}

/* About-Stats (auch für Founder genutzt) */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--rc-border);
}
.about-stat strong { display: block; font-size: 2rem; color: var(--rc-green); font-weight: 800; letter-spacing: -0.02em; }
.about-stat span { font-size: 0.85rem; color: var(--rc-text-muted); }

/* Team-Grid (vorbereitet, aktuell ungenutzt) */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 72px;
  padding-top: 56px;
  border-top: 1px solid var(--rc-border);
}
.team-card {
  background: #fff;
  border: 1px solid var(--rc-border);
  border-radius: var(--rc-radius-lg);
  padding: 28px;
  text-align: center;
  transition: all .3s;
}
.team-card:hover { box-shadow: var(--rc-shadow); transform: translateY(-4px); border-color: var(--rc-green-glow); }
.team-card img {
  width: 120px; height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 3px solid var(--rc-green-glow);
}
.team-card h4 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}
.team-role {
  display: block;
  font-size: 0.85rem;
  color: var(--rc-green);
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.team-card p {
  font-size: 0.92rem;
  color: var(--rc-text-soft);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 880px) {
  .team-founder { grid-template-columns: 1fr; gap: 48px; }
  .team-founder-image { order: 0; }
  .team-section { padding: 80px 0; }
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 48px auto 0; }
.faq-item {
  border-bottom: 1px solid var(--rc-border);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 24px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--rc-text);
  cursor: pointer;
  font-family: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q::after { content: '+'; font-size: 1.8rem; color: var(--rc-green); font-weight: 300; transition: transform .2s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; color: var(--rc-text-soft); }
.faq-item.open .faq-a { max-height: 500px; padding-bottom: 24px; }

/* ---------- CTA Section / Funnel End ---------- */
.cta-section {
  background: linear-gradient(135deg, var(--rc-green-dark) 0%, var(--rc-green) 100%);
  color: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 60%);
}
.cta-inner { position: relative; z-index: 1; text-align: center; max-width: 720px; margin: 0 auto; padding: 0 24px; }
.cta-inner h2 { color: #fff; }
.cta-inner p { color: rgba(255,255,255,0.85); font-size: 1.15rem; margin-bottom: 36px; }
.cta-inner .btn-primary { background: #fff; color: var(--rc-green); }
.cta-inner .btn-primary:hover { background: var(--rc-bg-soft); color: var(--rc-green-dark); }

/* ---------- Partner Stripe (Regio Brands) ---------- */
.partner-stripe {
  padding: 80px 0 60px;
  background: linear-gradient(180deg, #fff 0%, #f7f8f6 100%);
}
.partner-card {
  position: relative;
  background: linear-gradient(135deg, #0a1410 0%, #102820 100%);
  border-radius: var(--rc-radius-xl);
  padding: 64px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(14, 93, 58, 0.15);
}
.partner-card-bg {
  position: absolute;
  top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(14, 93, 58, 0.35) 0%, transparent 60%);
  pointer-events: none;
}
.partner-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(111, 219, 161, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(14, 93, 58, 0.15) 0%, transparent 50%);
  pointer-events: none;
}
.partner-card-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: center;
}
.partner-card-left { color: #fff; }
.partner-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #6fdba1;
  margin-bottom: 18px;
  padding: 6px 14px;
  background: rgba(111, 219, 161, 0.1);
  border: 1px solid rgba(111, 219, 161, 0.2);
  border-radius: 999px;
}
.partner-logo-link {
  display: inline-block;
  margin-bottom: 22px;
  transition: transform .25s ease;
}
.partner-logo-link:hover { transform: translateY(-2px); }
.partner-logo {
  height: 64px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.partner-text {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.02rem;
  line-height: 1.65;
  margin: 0;
  max-width: 520px;
}
.partner-text strong { color: #fff; font-weight: 600; }
.partner-card-right {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding-left: 40px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.partner-stat {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.partner-stat:last-child { border-bottom: none; }
.partner-stat strong {
  display: block;
  font-size: 2.2rem;
  color: #6fdba1;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.partner-stat span {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

@media (max-width: 880px) {
  .partner-card { padding: 40px 28px; }
  .partner-card-inner { grid-template-columns: 1fr; gap: 36px; }
  .partner-card-right {
    padding-left: 0;
    padding-top: 28px;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .partner-stat { border-bottom: none; text-align: center; padding: 8px 0; }
  .partner-stat strong { font-size: 1.7rem; }
  .partner-stat span { font-size: 0.75rem; }
}

/* ---------- Footer ---------- */
.footer { background: #0a1410; color: rgba(255,255,255,0.7); padding: 70px 0 30px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img { height: 40px; margin-bottom: 18px; filter: brightness(0) invert(1); }
.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  max-width: 320px;
  margin-bottom: 24px;
  line-height: 1.6;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.75);
  font-size: 0.92rem;
  transition: color .2s;
}
.footer-contact-link:hover { color: #6fdba1; }
.footer-contact-icon {
  width: 28px; height: 28px;
  display: inline-flex;
  align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  font-size: 0.92rem;
  color: #6fdba1;
}
.footer h4 {
  color: #fff;
  font-size: 0.92rem;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 11px; }
.footer ul a {
  color: rgba(255,255,255,0.65);
  font-size: 0.93rem;
  transition: color .2s;
}
.footer ul a:hover { color: #fff; }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom strong { color: rgba(255,255,255,0.75); font-weight: 600; }

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- Cookie Banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 24px; left: 24px; right: 24px;
  max-width: 520px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--rc-radius-lg);
  box-shadow: var(--rc-shadow-lg);
  padding: 24px;
  z-index: 150;
  border: 1px solid var(--rc-border);
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-banner h4 { font-size: 1rem; margin-bottom: 8px; }
.cookie-banner p { font-size: 0.88rem; color: var(--rc-text-soft); margin-bottom: 16px; line-height: 1.5; }
.cookie-banner p a { color: var(--rc-green); text-decoration: underline; }
.cookie-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.cookie-actions button { padding: 10px 16px; font-size: 0.88rem; }

/* ---------- Legal Pages ---------- */
.legal-page { padding: 140px 0 80px; }
.legal-page h1 { font-size: 2.2rem; margin-bottom: 32px; }
.legal-page h2 { font-size: 1.4rem; margin-top: 32px; margin-bottom: 12px; }
.legal-page h3 { font-size: 1.1rem; margin-top: 20px; }
.legal-page p, .legal-page li { font-size: 0.98rem; color: var(--rc-text-soft); line-height: 1.65; }
.legal-page ul { padding-left: 24px; margin-bottom: 16px; }

/* ---------- Thank You ---------- */
.thank-you-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 24px 80px;
  background: linear-gradient(180deg, #f7f8f6 0%, #fff 100%);
}
.thank-you-inner { max-width: 600px; }
.thank-you-icon {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--rc-green-glow);
  color: var(--rc-green);
  font-size: 3rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.hide-mobile { display: block; }
@media (max-width: 768px) { .hide-mobile { display: none; } }

/* === Extra-Small Mobile (Hauptseite) === */
@media (max-width: 380px) {
  .container { padding: 0 16px; }
  .hero { padding: 110px 0 70px; }
  .hero-cta { gap: 10px; }
  .hero-cta .btn { padding: 14px 22px; font-size: 0.95rem; }
  .nav-cta { padding: 8px 14px; font-size: 0.82rem; }
  .problem-card { padding: 24px 20px; }
  .pillar { padding: 28px 22px; gap: 24px; }
  .pillar-content h3 { font-size: 1.35rem; }
  .testimonial { padding: 24px 22px; }
  section { padding: 70px 0; }
  .section-head { margin-bottom: 36px; }
  .cta-section { padding: 70px 0; }
}

/* === Touch-Optimierung Hauptseite === */
@media (hover: none) {
  .problem-card:hover, .testimonial:hover, .team-card:hover,
  .pillar:hover, .trust-logos img:hover { transform: none; }
}
