/* =============================================
   SOUTHSIDE ENERGY – Stylesheet 2026
   ============================================= */

/* --- Fonts --- */
@font-face {
  font-family: 'Switzer';
  src: url('../fonts/switzer/Switzer-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Switzer';
  src: url('../fonts/switzer/Switzer-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter/Inter-VariableFont_slnt,wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* --- Variables (CI Southside Energy) --- */
:root {
  /* Grüner Akzent, aber wieder auf dunklem Blau */
  --green:      #73C356;
  --green-dark: #4f8b35;
  --green-light:#e3f3dc;

  /* Backgrounds: neutrales Dunkelgrau, etwas heller/freundlicher */
  --bg:         #0b0e11;
  --bg2:        #11151a;
  --bg3:        #181d24;
  --card:       #181d24;
  --card-hover: #1f252f;

  /* Accent aliases */
  --accent:     #73C356;                /* Mischung aus alt/neuem Grün */
  --accent2:    #4f8b35;
  --accent-dim: rgba(115, 195, 86, 0.16);

  /* Text */
  --white:      #F5F8F5;
  --muted:      rgba(245, 248, 245, 0.72);
  --border:     rgba(245, 248, 245, 0.10);
  --border2:    rgba(115, 195, 86, 0.36);

  --radius:     14px;
  --radius-lg:  24px;
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --max-w:      1200px;
  --font-head:  'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-body:  'Inter', 'Helvetica Neue', Arial, sans-serif;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* --- Utility --- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--border2);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 20px;
}
.badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; letter-spacing: -0.02em; }
h1 { font-size: clamp(42px, 6vw, 80px); font-weight: 800; }
h2 { font-size: clamp(32px, 4vw, 54px); font-weight: 700; }
h3 { font-size: clamp(20px, 2.5vw, 28px); font-weight: 600; }
h4 { font-size: 18px; font-weight: 600; }
p { color: var(--muted); line-height: 1.75; }
.text-accent { color: var(--accent); }

/* Fade-in animation */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: var(--transition);
  border: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--bg);
}
.btn-primary:hover {
  background: var(--accent2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(80, 209, 101, 0.3);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.btn-lg {
  padding: 18px 36px;
  font-size: 16px;
}
.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--transition), border-color var(--transition), backdrop-filter var(--transition);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(16, 24, 40, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 32px;
}
.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 28px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 16px;
}
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 16px 24px 24px;
  background: rgba(16, 24, 40, 0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 16px;
  font-weight: 500;
  color: var(--muted);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--white); }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(16, 24, 40, 0.90) 0%,
    rgba(16, 24, 40, 0.72) 50%,
    rgba(16, 24, 40, 0.45) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.hero h1 {
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero-sub {
  font-size: 18px;
  color: rgba(242, 247, 242, 0.80);
  margin-bottom: 40px;
  max-width: 600px;
  line-height: 1.7;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 64px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
}
.hero-trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-trust-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  font-size: 11px;
  color: rgba(245,248,245,0.65);
}
.hero-trust-value {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}
.hero-trust-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
}
.hero-disclaimer{
  margin-top: 14px;
  font-size: 12px;
  color: rgba(245,248,245,0.62);
  max-width: 620px;
  line-height: 1.6;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(16, 24, 40, 0.55);
  backdrop-filter: blur(10px);
  overflow: hidden;
  width: fit-content;
}
.hero-stat {
  padding: 20px 36px;
  border-right: 1px solid var(--border);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-value {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero-scroll svg { width: 20px; height: 20px; }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* =============================================
   INVESTMENT OVERVIEW
   ============================================= */
.investment-overview { background: var(--bg2); }
.investment-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
.investment-features {
  display: grid;
  gap: 20px;
  margin-top: 32px;
}
.investment-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.investment-feature:hover {
  border-color: var(--border2);
  background: var(--card-hover);
  transform: translateX(4px);
}
.investment-feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--accent-dim);
  border: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.investment-feature-icon img { width: 22px; height: 22px; }
.investment-feature-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.investment-feature-text {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
}
.investment-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.investment-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.investment-image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, var(--bg2) 100%);
  z-index: 1;
  pointer-events: none;
}

/* =============================================
   VORTEILE
   ============================================= */
.vorteile { background: var(--bg); }
.vorteile-header { text-align: center; margin-bottom: 64px; }
.vorteile-header p { max-width: 520px; margin: 16px auto 0; font-size: 17px; }
.vorteile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.vorteil-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.vorteil-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: var(--transition);
}
.vorteil-card:hover {
  border-color: var(--border2);
  background: var(--card-hover);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}
.vorteil-card:hover::before { opacity: 1; }
.vorteil-metric {
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.04em;
}
.vorteil-metric sup {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.vorteil-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.vorteil-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}
.vorteil-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-dim);
  border: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.vorteil-icon img { width: 26px; height: 26px; }

/* =============================================
   360° PAKET
   ============================================= */
.paket { background: var(--bg2); }
.paket-header { text-align: center; margin-bottom: 72px; }
.paket-header p { max-width: 560px; margin: 16px auto 0; font-size: 17px; }
.paket-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.paket-step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: var(--transition);
}
.paket-step:hover {
  border-color: var(--border2);
  background: var(--card-hover);
  transform: translateY(-4px);
}
.paket-step-num {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.paket-step-num::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border2);
}
.paket-step-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--accent-dim);
  border: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.paket-step-icon img { width: 28px; height: 28px; }
.paket-step h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.paket-step p {
  font-size: 14px;
  line-height: 1.7;
}
.paket-cta { text-align: center; margin-top: 56px; }

/* =============================================
   STEUERVORTEILE
   ============================================= */
.steuer { background: var(--bg); position: relative; overflow: hidden; }
.steuer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.steuer-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1/1;
}
.steuer-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.steuer-points {
  display: grid;
  gap: 20px;
  margin-top: 32px;
}
.steuer-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.steuer-point-bullet {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1.5px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.steuer-point-bullet svg {
  width: 14px;
  height: 14px;
  stroke: var(--accent);
  fill: none;
}
.steuer-point h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.steuer-point p { font-size: 14px; }

/* =============================================
   PROJEKTE
   ============================================= */
.projekte { background: var(--bg2); }
.projekte-header { margin-bottom: 48px; }
.projekte-header p { max-width: 600px; margin-top: 14px; }
.projekte-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 24px;
}
.projekte-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.projekt-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.projekt-card:hover {
  border-color: var(--border2);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.projekt-card-img {
  aspect-ratio: 16/7;
  overflow: hidden;
  position: relative;
}
.projekt-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.projekt-card:hover .projekt-card-img img { transform: scale(1.04); }
.projekt-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(10,20,30,0.7) 100%);
}
.projekt-card-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--accent);
  color: var(--bg);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 100px;
}
.projekt-card-status {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 100px;
}
.status-available { background: rgba(111,191,77,0.18); color: var(--accent); border: 1px solid var(--border2); }
.status-placing   { background: rgba(245,166,35,0.15); color: #f5a623; border: 1px solid rgba(245,166,35,0.35); }
.status-prep      { background: rgba(245,248,245,0.07); color: var(--muted); border: 1px solid var(--border); }

.projekt-card-body { padding: 24px 28px 28px; flex: 1; display: flex; flex-direction: column; }
.projekt-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  gap: 12px;
}
.projekt-card-head h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin: 0;
}
.projekt-kwp {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  color: var(--accent);
  white-space: nowrap;
  flex-shrink: 0;
}
.pm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 16px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.pm { display: flex; flex-direction: column; gap: 3px; }
.pm-val {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.pm-val.pm-green { color: var(--accent); }
.pm-lbl {
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.03em;
}
.projekt-iab-box {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--accent-dim);
  border: 1px solid var(--border2);
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 16px;
}
.projekt-iab-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.projekt-iab-divider {
  width: 1px;
  height: 32px;
  background: var(--border2);
  margin: 0 16px;
  flex-shrink: 0;
}
.projekt-iab-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
}
.projekt-iab-value {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}
.projekt-iab-value.projekt-iab-highlight { color: var(--accent); }
.simulate-btn {
  width: 100%;
  background: none;
  border: 1px solid var(--border);
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
  margin-top: auto;
}
.simulate-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}
.projekte-note {
  margin-top: 24px;
  font-size: 11.5px;
  color: var(--muted);
  opacity: 0.65;
  line-height: 1.6;
}

/* =============================================
   TEAM FEATURE (Philipp)
   ============================================= */
.philipp { background: var(--bg); }
.philipp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.philipp-content .badge { margin-bottom: 24px; }
.philipp-content h2 { margin-bottom: 24px; }
.philipp-content p { margin-bottom: 20px; font-size: 16px; }
.philipp-name-block {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.philipp-name-block img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  border: 2px solid var(--border2);
}
.philipp-name { font-family: var(--font-head); font-size: 17px; font-weight: 700; color: var(--white); }
.philipp-role { font-size: 13px; color: var(--accent); font-weight: 500; }
.philipp-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.philipp-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.philipp-image-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(transparent, var(--bg));
  pointer-events: none;
}

/* =============================================
   TEAM
   ============================================= */
.team { background: var(--bg2); }
.team-header { text-align: center; margin-bottom: 64px; }
.team-header p { max-width: 520px; margin: 16px auto 0; font-size: 17px; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.team-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.team-card:hover {
  border-color: var(--border2);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.team-card-img {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--bg3);
}
.team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
  filter: grayscale(20%);
}
.team-card:hover .team-card-img img { transform: scale(1.04); filter: grayscale(0%); }
.team-card-body { padding: 24px; }
.team-card-name {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.team-card-role {
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 12px;
}
.team-card-bio {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 16px;
}
.team-card-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  transition: var(--transition);
}
.team-card-linkedin:hover { color: var(--white); }
.team-card-linkedin svg { width: 16px; height: 16px; }
.team-card-socials {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.team-social-link {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--bg3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: var(--transition);
}
.team-social-link svg { width: 16px; height: 16px; }
.team-social-link:hover { color: var(--accent); border-color: var(--border2); background: var(--accent-dim); }

/* Falko Premium CTA */
.falko-cta { margin-top: 48px; }
.falko-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 56px 64px;
  position: relative;
  overflow: hidden;
}
.falko-cta-inner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(111,191,77,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.falko-cta-text h3 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.3;
}
.falko-cta-text p { font-size: 15px; margin-bottom: 20px; }
.falko-cta-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.falko-cta-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--muted);
}
.falko-cta-list li svg {
  width: 16px; height: 16px;
  stroke: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.falko-cta-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.falko-cta-img img {
  width: 180px;
  height: 220px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border2);
}
.falko-cta-img-label {
  text-align: center;
}
.falko-cta-img-label strong {
  display: block;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.falko-cta-img-label span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 4px;
}
.falko-social {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  transition: var(--transition);
}
.falko-social:hover { color: var(--white); }

/* Philipp LinkedIn */
.philipp-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  margin-top: 4px;
  transition: var(--transition);
}
.philipp-linkedin:hover { color: var(--white); }

/* =============================================
   IAB RECHNER
   ============================================= */
.rechner { background: var(--bg2); }
.rechner-header { text-align: center; margin-bottom: 56px; }
.rechner-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 900px;
  margin: 0 auto;
}
.rechner-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 28px;
}
.rechner-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.rechner-value-display {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
}
.rechner-slider {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  border-radius: 2px;
  background: var(--border);
  outline: none;
  cursor: pointer;
}
.rechner-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--bg2);
  box-shadow: 0 0 0 2px var(--border2);
  cursor: pointer;
  transition: var(--transition);
}
.rechner-slider::-webkit-slider-thumb:hover { background: var(--accent2); transform: scale(1.1); }
.rechner-slider-range {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--muted);
  margin-top: 6px;
}
.rechner-toggle {
  display: flex;
  gap: 8px;
}
.rechner-toggle-btn {
  flex: 1;
  padding: 12px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--muted);
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}
.rechner-toggle-btn.active {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}
.rechner-toggle-btn:hover:not(.active) { border-color: var(--border2); color: var(--white); }
.rechner-mode-btn {
  margin-top: 10px;
  width: 100%;
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 600;
  transition: var(--transition);
}
.rechner-mode-btn.active {
  color: var(--accent);
  border-color: var(--border2);
  background: var(--accent-dim);
}
.rechner-kaufjahr {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 16px;
}
.rechner-kaufjahr-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 10px;
}
.rechner-kaufjahr-title svg { color: var(--muted); }
.rechner-kaufjahr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}
.rechner-kaufjahr-item {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
}
.rechner-kaufjahr-item-accent {
  border-color: var(--accent);
  background: var(--accent-dim);
}
.rechner-kaufjahr-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 4px;
}
.rechner-kaufjahr-value {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}
.rechner-kaufjahr-item-accent .rechner-kaufjahr-value { color: var(--accent); }
.rechner-kaufjahr-sub {
  font-size: 11px;
  color: var(--muted);
}
.rechner-empfehlung {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-dim);
  border: 1px solid var(--accent);
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--white);
  line-height: 1.4;
}
.rechner-empfehlung svg { color: var(--accent); flex-shrink: 0; }
.rechner-kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.rechner-kpi {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 14px;
  transition: var(--transition);
}
.rechner-kpi-highlight {
  border-color: var(--border2);
  background: var(--accent-dim);
  grid-column: span 1;
}
.rechner-kpi-accent {
  border-color: var(--border2);
}
.rechner-kpi-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.rechner-kpi-value {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.rechner-kpi-highlight .rechner-kpi-value { font-size: 32px; }
.rechner-kpi-highlight .rechner-kpi-value { font-size: 28px; }
.rechner-kpi-sub { font-size: 11px; color: var(--muted); }
.rechner-benchmarks {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 16px;
}
.rechner-benchmarks-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.rechner-benchmarks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.rechner-benchmark { display: flex; flex-direction: column; gap: 2px; }
.rechner-benchmark-type {
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
}
.rechner-benchmark-range {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.1;
}
.rechner-benchmark-label {
  font-size: 11px;
  color: var(--muted);
}
.rechner-disclaimer {
  font-size: 11px;
  color: var(--muted);
  opacity: 0.7;
  line-height: 1.6;
}
.rechner-cta { text-align: center; margin-top: 40px; }
.rechner-cta { text-align: center; margin-top: 24px; }

/* =============================================
   IAB LEITFADEN 2026
   ============================================= */
.leitfaden { background: var(--bg3); }
.leitfaden-header { text-align: center; margin-bottom: 56px; }
.leitfaden-header h2 { margin-top: 16px; }
.leitfaden-sub {
  color: var(--muted);
  max-width: 540px;
  margin: 16px auto 0;
  font-size: 17px;
  line-height: 1.6;
}
.leitfaden-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.leitfaden-step {
  display: flex;
  gap: 20px;
  background: var(--card);
  padding: 28px 28px;
  transition: background 0.2s;
}
.leitfaden-step:hover { background: var(--card-hover); }
.leitfaden-step-cta {
  background: var(--accent-dim);
  border: none;
}
.leitfaden-step-cta:hover { background: rgba(111, 191, 77, 0.18); }
.leitfaden-num {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
  margin-top: 2px;
}
.leitfaden-num-cta {
  font-size: 36px;
  line-height: 1;
}
.leitfaden-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.leitfaden-content p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 12px;
}
.leitfaden-content strong { color: var(--white); font-weight: 600; }
.leitfaden-tag-row { display: flex; gap: 8px; flex-wrap: wrap; }
.leitfaden-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  background: rgba(245,248,245,0.07);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 10px;
}
.leitfaden-tag-green {
  color: var(--accent);
  background: var(--accent-dim);
  border-color: var(--border2);
}
.leitfaden-tag-warn {
  color: #f5a623;
  background: rgba(245, 166, 35, 0.10);
  border-color: rgba(245, 166, 35, 0.30);
}
.leitfaden-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 24px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  padding: 16px 20px;
  background: rgba(245,248,245,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.leitfaden-disclaimer svg { flex-shrink: 0; margin-top: 2px; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials { background: var(--bg); }
.testimonials-header { text-align: center; margin-bottom: 64px; }
.testimonials-header p { max-width: 480px; margin: 16px auto 0; font-size: 17px; }
.testimonials-track-wrap {
  overflow: hidden;
  position: relative;
}
.testimonials-track-wrap::before,
.testimonials-track-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.testimonials-track-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}
.testimonials-track-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg), transparent);
}
.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  animation: none;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}
.testimonials-track:hover { animation-play-state: running; }
@keyframes scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 10px)); }
}
.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  min-width: 0;
  max-width: none;
  flex-shrink: 1;
}
.testimonials-track .testimonial-card:nth-child(n+4) { display: none; }
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}
.testimonial-stars svg {
  width: 16px;
  height: 16px;
  fill: #F5A623;
}
.testimonial-text {
  font-size: 15px;
  color: rgba(242, 247, 242, 0.85);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1.5px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}
.testimonial-name {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}
.testimonial-location { font-size: 12px; color: var(--muted); }

/* =============================================
   DACHFLÄCHEN CTA
   ============================================= */
.dachflaechen { background: var(--bg2); }
.dachflaechen-inner {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 72px 80px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.dachflaechen-inner::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(80,209,101,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.dachflaechen-inner h2 { margin-bottom: 16px; }
.dachflaechen-inner p { font-size: 17px; max-width: 560px; }
.dachflaechen-list {
  margin-top: 16px;
  display: grid;
  gap: 10px;
  max-width: 620px;
}
.dachflaechen-list li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  padding-left: 18px;
  position: relative;
}
.dachflaechen-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
}
.dachflaechen-btns { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; }
.dachflaechen-form {
  margin-top: 22px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.dachflaechen-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.dachflaechen-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
}
.dachflaechen-field input,
.dachflaechen-field select,
.dachflaechen-field textarea {
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--white);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 14px;
  font-family: var(--font-body);
}
.dachflaechen-field textarea { resize: vertical; min-height: 72px; }
.dachflaechen-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  margin-top: 12px;
}
.dachflaechen-form-note {
  font-size: 11px;
  color: var(--muted);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 72px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-logo { margin-bottom: 16px; }
.footer-logo img { height: 26px; width: auto; }
.footer-desc { font-size: 14px; color: var(--muted); line-height: 1.7; max-width: 280px; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--muted);
}
.footer-social a:hover { border-color: var(--border2); color: var(--accent); background: var(--accent-dim); }
.footer-social a svg { width: 18px; height: 18px; }
.footer-col-title {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col-links { display: flex; flex-direction: column; gap: 12px; }
.footer-col-links a {
  font-size: 14px;
  color: var(--muted);
  transition: var(--transition);
}
.footer-col-links a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  gap: 24px;
  flex-wrap: wrap;
}
.footer-bottom-text { font-size: 13px; color: var(--muted); }
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  font-size: 13px;
  color: var(--muted);
  transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--white); }

/* =============================================
   HERO NODACH STRIP
   ============================================= */
.hero-nodach {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin: 16px 0 28px;
}
.hero-nodach-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--border2);
  border-radius: 100px;
  padding: 5px 12px 5px 8px;
}
.hero-nodach-item svg { flex-shrink: 0; color: var(--accent); }

/* =============================================
   RECHNER — INCOME INPUT + RATE DISPLAY
   ============================================= */
.rechner-inputs-3 { grid-template-columns: repeat(3, 1fr) !important; }
.rechner-input-group--rate { grid-column: 1 / -1; }
.rechner-rate-display {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,248,245,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  margin-top: 4px;
}
.rechner-rate-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.rechner-rate-label {
  font-size: 10px;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.rechner-rate-value {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.rechner-rate-value.rechner-rate-green { color: var(--accent); }
.rechner-rate-hint {
  font-size: 11px;
  color: var(--muted);
  margin-top: 6px;
  text-align: center;
}
.rechner-benchmark-sse {
  border-color: var(--border2);
  background: var(--accent-dim);
}
.rechner-benchmark-sse .rechner-benchmark-range { color: var(--accent); }

/* =============================================
   STAR EMPTY (testimonials)
   ============================================= */
.testimonial-stars .star-empty {
  fill: transparent;
  stroke: #F5A623;
  stroke-width: 1.5px;
}

/* =============================================
   WHATSAPP FAB
   ============================================= */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9000;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 20px 12px 14px;
  border-radius: 100px;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-fab:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .investment-grid { grid-template-columns: 1fr; gap: 48px; }
  .investment-image-wrap { aspect-ratio: 16/9; order: -1; }
  .steuer-grid { grid-template-columns: 1fr; gap: 48px; }
  .philipp-grid { grid-template-columns: 1fr; gap: 48px; }
  .philipp-image-wrap { aspect-ratio: 16/9; order: -1; }
  .vorteile-grid { grid-template-columns: repeat(2, 1fr); }
  .paket-steps { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .projekte-cards { grid-template-columns: 1fr; }
  .dachflaechen-inner { grid-template-columns: 1fr; padding: 48px; }
  .dachflaechen-btns { flex-direction: row; }
  .dachflaechen-form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .falko-cta-inner { grid-template-columns: 1fr; gap: 40px; padding: 40px; }
  .falko-cta-img { flex-direction: row; align-items: center; }
  .rechner-kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .rechner-benchmarks-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-track { grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 0 20px; }
  .testimonials-track .testimonial-card:nth-child(n+3) { display: none; }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 48px 0; }
  .section-sm { padding: 40px 0; }
  h1 { font-size: 34px; }
  h2 { font-size: 28px; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav-mobile { max-height: calc(100vh - 72px); overflow-y: auto; }
  .hero { min-height: auto; padding-top: 96px; padding-bottom: 56px; }
  .hero-sub { font-size: 16px; margin-bottom: 28px; }
  .hero-scroll { display: none; }
  .hero-nodach { display: grid; grid-template-columns: 1fr; gap: 8px; }
  .hero-nodach-item { font-size: 12px; padding: 6px 10px 6px 8px; }
  .hero-trust-item { width: 100%; }
  .hero-trust-value { font-size: 13px; }
  .hero-stats { flex-direction: column; width: 100%; }
  .hero-stat { border-right: none; border-bottom: 1px solid var(--border); }
  .hero-stat:last-child { border-bottom: none; }
  .vorteile-grid { grid-template-columns: 1fr; }
  .paket-steps { grid-template-columns: 1fr; }
  .paket-step { padding: 28px 22px; }
  .team-grid { grid-template-columns: 1fr; }
  .projekte-cards { grid-template-columns: 1fr; }
  .projekte-intro { flex-direction: column; align-items: flex-start; }
  .projekt-card-body { padding: 20px; }
  .pm-grid { grid-template-columns: 1fr; gap: 10px; }
  .projekt-card-head { align-items: flex-start; }
  .projekt-card-head h4 { font-size: 16px; }
  .projekt-kwp { font-size: 13px; }
  .projekt-iab-box { flex-direction: column; align-items: stretch; gap: 10px; }
  .projekt-iab-divider { width: 100%; height: 1px; margin: 0; }
  .rechner-card { padding: 32px 24px; }
  .rechner-rate-display { flex-wrap: wrap; }
  .rechner-inputs { grid-template-columns: 1fr; gap: 28px; }
  .rechner-kpi-grid { grid-template-columns: 1fr; }
  .rechner-benchmarks-grid { grid-template-columns: 1fr; }
  .leitfaden-grid { grid-template-columns: 1fr; }
  .leitfaden-step { padding: 24px 20px; }
  .rechner-inputs-3 { grid-template-columns: 1fr !important; }
  .falko-cta-inner { padding: 32px 24px; }
  .falko-cta-img { flex-direction: column; }
  .falko-cta-img img { width: 120px; height: 148px; }
  .dachflaechen-inner { padding: 36px 28px; }
  .dachflaechen-btns { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-btns { flex-direction: column; }
  .btn-lg { width: 100%; justify-content: center; }
  .hero-trust { flex-direction: column; align-items: flex-start; }
  .stats-grid { grid-template-columns: 1fr; gap: 10px; }
  .stat-item { padding: 8px 0; }
  .prozess-steps { flex-direction: column; align-items: center; }
  .prozess-connector { width: 2px; height: 24px; margin: 0 auto; }
  .prozess-connector::after { right: -4px; top: auto; bottom: -4px; border-left-color: transparent; border-top-color: var(--border); }
  .strategie-years { flex-direction: column; }
  .strategie-arrow { transform: rotate(90deg); padding: 4px 0; margin-top: 0; }
  .sicherheit-grid { grid-template-columns: 1fr; }
  .vergleich-table { font-size: 13px; }
  .vergleich-table th, .vergleich-table td { padding: 10px 12px; }
  .vergleich-wrap { -webkit-overflow-scrolling: touch; }
  .testimonial-card { min-width: 0; max-width: none; padding: 24px; }
  .testimonials-track-wrap::before,
  .testimonials-track-wrap::after { width: 36px; }
  .whatsapp-fab { right: 14px; bottom: 14px; padding: 11px 14px; }
  .whatsapp-fab span { display: none; }
}

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  background:
    linear-gradient(90deg, rgba(115,195,86,0.14), transparent),
    var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-value {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.3;
}

/* =============================================
   VERGLEICHSTABELLE
   ============================================= */
.vergleich { background: var(--bg2); }
.vergleich-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  margin-top: 40px;
}
.vergleich-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.vergleich-table th {
  background: var(--bg3);
  color: var(--muted);
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.vergleich-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--white);
  white-space: nowrap;
}
.vergleich-table tr:last-child td { border-bottom: none; }
.vergleich-row-sse td { background: rgba(111,191,77,0.06); }
.vergleich-row-sse td:first-child { border-left: 3px solid var(--accent); }
.text-green { color: var(--accent); }
.vcheck { color: var(--accent); font-weight: 700; margin-right: 4px; }
.vcross { color: #ff5e5e; margin-right: 4px; }
.vwarn { color: #f59e0b; margin-right: 4px; }

/* =============================================
   PROZESS
   ============================================= */
.prozess { background: var(--bg); }
.prozess-steps {
  display: flex;
  align-items: flex-start;
  margin-top: 48px;
}
.prozess-step {
  flex: 1;
  text-align: center;
  padding: 0 16px;
}
.prozess-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 2px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.prozess-step h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--white);
}
.prozess-step p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}
.prozess-connector {
  flex-shrink: 0;
  width: 48px;
  height: 2px;
  background: var(--border);
  margin-top: 26px;
  position: relative;
}
.prozess-connector::after {
  content: '';
  position: absolute;
  right: -5px;
  top: -4px;
  border: 5px solid transparent;
  border-left-color: var(--border);
}

/* =============================================
   IAB JAHRESSTRATEGIE
   ============================================= */
.iab-strategie { background: var(--bg2); }
.strategie-years {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 40px;
}
.strategie-year {
  flex: 1;
  min-width: 160px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
}
.strategie-year-sum {
  border-color: var(--accent);
  background: rgba(111,191,77,0.07);
}
.strategie-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 8px;
}
.strategie-invest {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.strategie-year-sum .strategie-invest { color: var(--accent); }
.strategie-item {
  font-size: 13px;
  color: var(--text);
  padding: 6px 0;
  border-top: 1px solid var(--border);
}
.strategie-item:first-child { border-top: none; }
.strategie-item-green { color: var(--accent); font-weight: 600; }
.strategie-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 22px;
  padding: 0 14px;
  flex-shrink: 0;
  margin-top: 42px;
  align-self: flex-start;
}
.strategie-arrow-sum { color: var(--accent); font-weight: 700; }

/* =============================================
   SICHERHEIT & TRANSPARENZ
   ============================================= */
.sicherheit { background: var(--bg); }
.sicherheit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.sicherheit-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}
.sicherheit-card-warn { border-color: rgba(245,158,11,0.4); }
.sicherheit-icon {
  color: var(--accent);
  margin-bottom: 14px;
}
.sicherheit-card-warn .sicherheit-icon { color: #f59e0b; }
.sicherheit-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--white);
}
.sicherheit-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}
.sicherheit-warn-note {
  margin-top: 10px;
  font-size: 12px;
  color: #f59e0b;
  opacity: 0.8;
}

/* =============================================
   FAQ
   ============================================= */
.faq { background: var(--bg2); }
.faq-header { text-align: center; margin-bottom: 40px; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  background: var(--bg3);
  overflow: hidden;
}
.faq-item[open] { border-color: var(--accent); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 24px;
  font-weight: 600;
  font-size: 15px;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  line-height: 1;
}
.faq-item[open] summary::after { content: '−'; }
.faq-a {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .sicherheit-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-nodach { grid-template-columns: 1fr; }
  .hero h1 { font-size: 30px; }
  .hero-sub { font-size: 15px; }
  .hero-btns { gap: 10px; }
  .btn { padding: 13px 20px; }
  .btn-lg { padding: 15px 20px; font-size: 15px; }
  .rechner-card { padding: 24px 16px; }
  .rechner-kpi { padding: 18px 14px; }
  .rechner-kpi-value { font-size: 24px; }
  .rechner-kpi-highlight .rechner-kpi-value { font-size: 28px; }
  .faq-item summary { padding: 16px 14px; font-size: 14px; }
  .faq-a { padding: 0 14px 16px; font-size: 14px; }
  .testimonial-card { min-width: 0; max-width: none; padding: 20px; }
  .whatsapp-fab { right: 10px; bottom: 10px; width: 48px; height: 48px; padding: 0; justify-content: center; }
  .whatsapp-fab svg { width: 24px; height: 24px; }
  .rechner-benchmarks-grid { grid-template-columns: 1fr; }
  .vergleich-wrap { margin-top: 24px; }
}

@media (max-width: 430px) {
  .nav-mobile a { padding: 12px 0; }
  .stat-value { font-size: 22px; }
  .stat-label { font-size: 12px; }
  .paket-step,
  .vorteil-card,
  .sicherheit-card { padding: 22px 16px; }
  .projekt-card-img { aspect-ratio: 16 / 10; }
}

/* iPhone 13/14/15 (390px class) */
@media (max-width: 395px) {
  .hero { padding-top: 92px; padding-bottom: 50px; }
  .hero h1 { font-size: 29px; line-height: 1.12; }
  .hero-sub { font-size: 15px; line-height: 1.6; }
  .hero-nodach-item { font-size: 11.5px; }
  .hero-trust-label { font-size: 10px; }
  .hero-trust-value { font-size: 12.5px; }

  .btn,
  .btn-lg { min-height: 48px; }

  .stat-value { font-size: 21px; }
  .stat-label { font-size: 11.5px; }

  .projekt-card-body { padding: 16px; }
  .pm-val { font-size: 15px; }
  .pm-lbl { font-size: 10.5px; }

  .rechner-rate-value { font-size: 22px; }
  .rechner-kpi-label { font-size: 10.5px; }
  .rechner-kpi-value { font-size: 22px; }
  .rechner-kpi-highlight .rechner-kpi-value { font-size: 26px; }

  .testimonial-card { min-width: 0; max-width: none; }
}

/* iPhone Pro Max class (430px width) */
@media (min-width: 421px) and (max-width: 440px) {
  .container { padding: 0 18px; }
  .hero h1 { font-size: 32px; }
  .hero-sub { font-size: 15.5px; }
  .btn-lg { min-height: 50px; }
  .stats-grid { gap: 12px; }
  .projekt-card-body { padding: 18px; }
  .rechner-card { padding: 26px 18px; }
  .testimonial-card { min-width: 0; max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
  .testimonials-track { animation: none; }
  .hero-scroll { animation: none; }
}
