﻿/* ── RESET & BASE ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green:        #1a6b3c;
  --green-dark:   #12512d;
  --green-light:  #e8f4ee;
  --green-mid:    #2d8a5e;
  --accent:       #f5a623;
  --white:        #ffffff;
  --off-white:    #f8f9fa;
  --gray-100:     #f3f4f6;
  --gray-200:     #e5e7eb;
  --gray-400:     #9ca3af;
  --gray-600:     #4b5563;
  --gray-800:     #1f2937;
  --text:         #111827;
  --border:       #e5e7eb;
  --shadow:       0 1px 3px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg:    0 4px 6px rgba(0,0,0,0.05), 0 10px 40px rgba(0,0,0,0.12);
  --radius:       10px;
  --radius-lg:    16px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  font-size: 15px;
}

h1,h2,h3 {
  font-family: 'Inter', sans-serif;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

a {
  text-decoration: none;
}

/* ── TOP BAR ── */
.topbar {
  background: var(--green-dark);
  padding: 8px 2rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.85);
}

.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.topbar-phone {
  margin-left: auto;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  flex-shrink: 0;
}

.nav-logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  font-family: 'Inter', sans-serif;
}

.nav-logo-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}

.nav-logo-sub {
  font-size: 0.72rem;
  color: var(--gray-400);
}

.nav-links {
  display: flex;
  gap: 0.25rem;
  list-style: none;
  margin-left: auto;
}

.nav-links a {
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.88rem;
  color: var(--gray-600);
  font-weight: 500;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover {
  color: var(--green);
  background: var(--green-light);
}

.nav-cta {
  background: var(--green);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}

.nav-cta:hover {
  background: var(--green-dark);
}

.nav-mobile-btn {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  margin-left: auto;
}

.nav-mobile-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem 2rem;
    border-bottom: 1px solid var(--border);
    gap: 0.25rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .nav-mobile-btn {
    display: block;
  }

}

@media (max-width: 768px) {
  .hero {
    min-height: 520px;
  }

  .hero-overlay img {
    object-position: center center;
  }

}

/* ── HERO ── */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  display: flex;
  align-items: center;
  padding: 60px 2rem;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(74,222,128,0.3);
}

.hero h1 {
  font-size: clamp(2.25rem, 4.4vw, 3.6rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.15;
  max-width: 560px;
}

.hero h1 em {
  color: #86efac;
  font-style: normal;
}

.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin-bottom: 2rem;
  font-weight: 300;
  line-height: 1.7;
}

.hero-trust-row {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 10px 14px;
}

.hero-trust-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(74,222,128,0.2);
  color: #86efac;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.hero-trust-num {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.hero-trust-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  padding: 13px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  background: var(--green-dark);
}

.btn-phone {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  padding: 13px 24px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: background 0.2s;
}

.btn-phone:hover {
  background: rgba(255,255,255,0.18);
}

.hero-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.hero-form-header {
  margin-bottom: 1.5rem;
}

.hero-form-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.hero-form-sub {
  font-size: 0.82rem;
  color: var(--gray-400);
}

@media (max-width: 1000px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-form-card {
    max-width: 480px;
  }

}

/* ── CERT BAR ── */
.cert-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 2rem;
}

.cert-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.cert-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0.5rem 2rem;
}

.cert-logo {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green);
}

.cert-label {
  font-size: 0.72rem;
  color: var(--gray-400);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cert-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ── SECTIONS ── */
section {
  padding: 76px 2rem;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 3rem;
}

.section-header.centered {
  text-align: center;
}

.section-header.centered .section-sub {
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-light);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--text);
  margin-bottom: 0.75rem;
}

.section-sub {
  font-size: 0.95rem;
  color: var(--gray-600);
  max-width: 600px;
  line-height: 1.7;
}

/* ── PROBLEM / NUTZEN ── */
.problem {
  background: var(--white);
  padding: 64px 2rem;
}

.problem-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3rem;
  align-items: center;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.problem-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.problem-card strong {
  font-size: 0.95rem;
  color: var(--text);
}

.problem-card span {
  font-size: 0.84rem;
  color: var(--gray-600);
  line-height: 1.55;
}

@media (max-width: 900px) {
  .problem-inner, .problem-grid {
    grid-template-columns: 1fr;
  }

}

/* ── LEISTUNGEN ── */
.services {
  background: var(--off-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.services-grid--focused {
  align-items: stretch;
}

.service-extra-note {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--gray-600);
  font-size: 0.9rem;
  text-align: center;
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card--featured {
  border-color: var(--green);
  box-shadow: 0 0 0 1px var(--green), var(--shadow);
}

.service-featured-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: var(--green);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.service-icon-wrap {
  margin-bottom: 1.25rem;
}

.service-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.service-card--featured .service-icon {
  background: var(--green);
}

.service-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.service-desc {
  font-size: 0.87rem;
  color: var(--gray-600);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}

.service-list {
  list-style: none;
  margin-bottom: 1rem;
}

.service-list li {
  font-size: 0.82rem;
  color: var(--gray-600);
  padding: 3px 0 3px 1.1rem;
  position: relative;
}

.service-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.service-price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  padding: 10px 14px;
  background: var(--green-light);
  border-radius: 8px;
  margin-bottom: 1rem;
}

.service-card--featured .service-price-row {
  background: rgba(26,107,60,0.1);
}

.price-from {
  font-size: 0.75rem;
  color: var(--green);
  font-weight: 500;
}

.price-amount {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  color: var(--green);
  font-weight: 700;
}

.service-btn {
  display: block;
  text-align: center;
  background: var(--green-light);
  color: var(--green);
  padding: 10px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}

.service-card--featured .service-btn {
  background: var(--green);
  color: var(--white);
}

.service-btn:hover {
  background: var(--green);
  color: var(--white);
}

/* ── VORTEILE ── */
.advantages {
  background: var(--white);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (max-width: 900px) {
  .advantages-grid {
    grid-template-columns: 1fr 1fr;
  }

}

@media (max-width: 600px) {
  .advantages-grid {
    grid-template-columns: 1fr;
  }

}

.adv-card {
  padding: 1.75rem;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 0.2s;
}

.adv-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.adv-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.adv-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.adv-text {
  font-size: 0.87rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.highlight-box {
  background: var(--green);
  border-radius: var(--radius-lg);
  padding: 2.5rem 3rem;
  position: relative;
  overflow: hidden;
}

.highlight-quote {
  font-size: 6rem;
  font-family: 'Inter', sans-serif;
  color: rgba(255,255,255,0.15);
  line-height: 0.8;
  margin-bottom: -1rem;
}

.highlight-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
  max-width: 800px;
}

.highlight-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.highlight-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.highlight-name {
  font-weight: 600;
  color: var(--white);
  font-size: 0.95rem;
}

.highlight-role {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
}

/* ── BERATER ── */
.advisor {
  background: var(--off-white);
}

.advisor-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3rem;
  align-items: center;
}

.advisor-photo {
  width: 220px;
  height: 220px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  box-shadow: var(--shadow-lg);
}

.advisor-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.advisor-points span {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  font-size: 0.85rem;
  color: var(--green);
  font-weight: 600;
}

@media (max-width: 700px) {
  .advisor-inner {
    grid-template-columns: 1fr;
  }

  .advisor-photo {
    width: 150px;
    height: 150px;
    font-size: 2.2rem;
  }

}

.advisor-photo {
  width: 220px;
  height: 220px;
  border-radius: 28px;
  overflow: hidden;
  flex-shrink: 0;
}

.advisor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: 30% 30%;
}

/* ── GEBÄUDETYPEN ── */
.building-types {
  background: var(--off-white);
}

.building-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
}

@media (max-width: 700px) {
  .building-grid {
    grid-template-columns: 1fr;
  }

}

.building-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.building-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.building-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 1rem;
}

.building-list {
  list-style: none;
}

.building-list li {
  font-size: 0.87rem;
  color: var(--gray-600);
  padding: 5px 0 5px 1.2rem;
  position: relative;
  border-bottom: 1px solid var(--gray-100);
}

.building-list li:last-child {
  border-bottom: none;
}

.building-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--green);
  font-size: 0.75rem;
}

/* ── PREISTABELLE ── */
.pricing {
  background: var(--white);
}

.pricing-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-table th {
  background: var(--green);
  color: var(--white);
  padding: 14px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  text-align: left;
}

.pricing-table th:first-child {
  border-radius: var(--radius-lg) 0 0 0;
}

.pricing-table th:last-child {
  border-radius: 0 var(--radius-lg) 0 0;
}

.pricing-table td {
  padding: 14px 20px;
  font-size: 0.88rem;
  color: var(--gray-600);
  border-bottom: 1px solid var(--border);
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

.pricing-table tr:hover td {
  background: var(--off-white);
}

.pricing-table-highlight td {
  background: var(--green-light) !important;
}

.price-cell {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--green);
  font-weight: 700;
  white-space: nowrap;
}

.table-btn {
  display: inline-block;
  padding: 6px 14px;
  background: var(--green-light);
  color: var(--green);
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}

.table-btn:hover {
  background: var(--green);
  color: var(--white);
}

.pricing-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fefce8;
  border: 1px solid #fef08a;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.pricing-note-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── ABLAUF ── */
.process {
  background: var(--green-dark);
}

.process .section-label {
  background: rgba(255,255,255,0.1);
  color: #86efac;
}

.process .section-title {
  color: var(--white);
}

.process .section-sub {
  color: rgba(255,255,255,0.65);
}

.process-steps {
  display: flex;
  align-items: flex-start;
  margin-top: 3rem;
}

.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.process-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--green-mid);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  border: 3px solid rgba(255,255,255,0.15);
}

.process-content {
  padding: 0 1rem;
}

.process-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.process-text {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.process-connector {
  flex-shrink: 0;
  width: 60px;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,0.25) 0, rgba(255,255,255,0.25) 6px, transparent 6px, transparent 12px);
  margin-top: 30px;
}

@media (max-width: 700px) {
  .process-steps {
    flex-direction: column;
    align-items: flex-start;
  }

  .process-step {
    flex-direction: row;
    text-align: left;
    gap: 1rem;
    align-items: flex-start;
  }

  .process-num {
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .process-connector {
    width: 2px;
    height: 30px;
    margin: 0 29px;
    background: repeating-linear-gradient(180deg, rgba(255,255,255,0.25) 0, rgba(255,255,255,0.25) 6px, transparent 6px, transparent 12px);
  }

}

/* ── TESTIMONIALS ── */
.testimonials {
  background: var(--off-white);
}

.overall-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 1rem;
  justify-content: center;
}

.rating-stars {
  font-size: 1.1rem;
  color: var(--green);
  letter-spacing: 4px;
}

.rating-num {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  color: var(--text);
  font-weight: 700;
}

.rating-label {
  font-size: 0.82rem;
  color: var(--gray-400);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (max-width: 800px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.testimonial-stars {
  color: var(--green);
  letter-spacing: 0;
  margin-bottom: 1rem;
  font-weight: 800;
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text);
}

.testimonial-location {
  font-size: 0.76rem;
  color: var(--gray-400);
  margin-top: 2px;
}

/* ── FAQ ── */
.faq {
  background: var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 800px) {
  .faq-layout {
    grid-template-columns: 1fr;
  }

}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.1rem 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Inter', sans-serif;
  gap: 1rem;
  transition: color 0.2s;
}

.faq-q:hover {
  color: var(--green);
}

.faq-arrow {
  font-size: 1rem;
  transition: transform 0.3s;
  flex-shrink: 0;
  color: var(--green);
}

.faq-a {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding-bottom: 1.1rem;
}

/* ── KONTAKT ── */
.contact {
  background: var(--off-white);
  padding: 80px 2rem;
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 960px) {
  .contact-inner {
    grid-template-columns: 1fr;
  }

}

.contact-label {
  color: var(--green) !important;
}

.contact-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--text);
  margin-bottom: 0.75rem;
}

.contact-sub {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 1rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  transition: border-color 0.2s;
}

.contact-info-item:hover {
  border-color: var(--green);
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--green-light);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 0.75rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-info-value {
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
}

.contact-certbox {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.certbox-title {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.certbox-items {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.certbox-item {
  font-size: 0.82rem;
  color: var(--green);
  font-weight: 500;
}

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.form-card-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 5px;
}

.form-input {
  width: 100%;
  padding: 10px 14px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
}

.form-input:focus {
  border-color: var(--green);
  background: var(--white);
}

.form-input::placeholder {
  color: var(--gray-400);
}

textarea.form-input {
  resize: vertical;
}

.form-submit {
  width: 100%;
  padding: 13px;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.5rem;
}

.form-submit:hover {
  background: var(--green-dark);
}

.form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 0.25rem 0 0.9rem;
  font-size: 0.76rem;
  color: var(--gray-600);
  line-height: 1.45;
}

.form-consent input {
  margin-top: 0.2rem;
  flex-shrink: 0;
  accent-color: var(--green);
}

.form-consent a {
  color: var(--green);
  font-weight: 600;
  text-decoration: underline;
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-note {
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-top: 0.75rem;
  text-align: center;
}

/* ── FOOTER ── */
.footer-top {
  background: var(--gray-800);
  padding: 60px 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

}

@media (max-width: 500px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }

}

.footer-logo {
  font-family: 'Inter', sans-serif;
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.footer-desc {
  font-size: 0.85rem;
  color: var(--gray-400);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-contact a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: var(--white);
}

.footer-col-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links li, .footer-links a {
  font-size: 0.85rem;
  color: var(--gray-400);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-region-text {
  font-size: 0.82rem;
  color: var(--gray-400);
  margin-bottom: 0.75rem;
}

.footer-bottom {
  background: #111827;
  padding: 1.25rem 2rem;
}

.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--gray-400);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.8rem;
  color: var(--gray-400);
}

.footer-legal a:hover {
  color: var(--white);
}

/* ── ANIMATIONEN ── */
.animate-hidden {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Marketing-Fokus: reduzierte Formularhöhe und klarere mobile Darstellung */
@media (max-width: 600px) {
  .topbar-inner {
    gap: 0.5rem 1rem;
  }

  .hero {
    min-height: auto;
    padding: 48px 1.25rem;
  }

  .hero-trust-row {
    gap: 0.75rem;
    margin-bottom: 1.75rem;
  }

  .hero-form-card, .contact-form-card {
    padding: 1.35rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .topbar-phone {
    margin-left: 0;
  }

}
/* ── LEGAL PAGES ── */
.legal-main {
  background: var(--off-white);
  min-height: 70vh;
}

.legal-hero {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 56px 2rem 40px;
}

.legal-hero-inner {
  max-width: 920px;
}

.legal-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.85rem;
}

.legal-hero p {
  color: var(--gray-600);
  max-width: 760px;
  line-height: 1.75;
}

.legal-meta {
  margin-top: 1rem;
  color: var(--gray-400);
  font-size: 0.85rem;
}

.legal-content {
  max-width: 920px;
  padding: 48px 2rem 72px;
}

.legal-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: clamp(1.5rem, 4vw, 3rem);
}

.legal-card h2 {
  color: var(--text);
  font-size: 1.15rem;
  margin: 2rem 0 0.75rem;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p,
.legal-card li {
  color: var(--gray-600);
  font-size: 0.94rem;
  line-height: 1.75;
}

.legal-card p {
  margin-bottom: 1rem;
}

.legal-card ul {
  margin: 0.25rem 0 1.25rem 1.25rem;
}

.legal-card a {
  color: var(--green);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-note {
  background: var(--green-light);
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
}

@media (max-width: 700px) {
  .legal-hero {
    padding: 40px 1.25rem 28px;
  }

  .legal-content {
    padding: 32px 1.25rem 56px;
  }

  .legal-card {
    border-radius: var(--radius);
  }
}
/* Mobile Preistabelle */
@media (max-width: 700px) {
  .pricing-table-wrap {
    overflow: visible;
    border: none;
    border-radius: 0;
  }

  .pricing-table,
  .pricing-table thead,
  .pricing-table tbody,
  .pricing-table tr,
  .pricing-table th,
  .pricing-table td {
    display: block;
    width: 100%;
  }

  .pricing-table thead {
    display: none;
  }

  .pricing-table tbody {
    display: grid;
    gap: 0.9rem;
  }

  .pricing-table tr {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 0.95rem;
  }

  .pricing-table td {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--gray-100);
    text-align: right;
  }

  .pricing-table td::before {
    flex-shrink: 0;
    color: var(--gray-400);
    font-size: 0.75rem;
    font-weight: 700;
    text-align: left;
    text-transform: uppercase;
  }

  .pricing-table td:nth-child(1)::before {
    content: "Leistung";
  }

  .pricing-table td:nth-child(2)::before {
    content: "Gebäudeart";
  }

  .pricing-table td:nth-child(3)::before {
    content: "Preis";
  }

  .pricing-table td:nth-child(4) {
    border-bottom: none;
    padding-bottom: 0;
  }

  .pricing-table td:nth-child(4)::before {
    content: "";
  }

  .price-cell {
    color: var(--green);
    font-size: 1.1rem;
    font-weight: 800;
    white-space: normal;
  }

  .table-btn {
    width: 100%;
    text-align: center;
    padding: 0.75rem 1rem;
  }
}
