/* ----- Global Basics ----- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f3f4f6;
  color: #111827;
  padding-top: 0px;
}

[id] {
  scroll-margin-top: 80px;
}

a {
  text-decoration: none;
  color: inherit;
}



/* ----- Navbar ----- */

.nav-logo {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Bild-Logo */
.nav-logo-img {
  height: 32px;        /* ggf. anpassen, wenn’s zu groß/klein ist */
  width: auto;
  display: block;
}

/* Text rechts vom Logo */
.nav-logo-text {
  font-size: 1rem;
  font-weight: 700;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #f9fafb; /* moderner Weißton */
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.08);
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo links */
.nav-logo {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo span.icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 2px solid #111827;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

/* Mittlere Navigation */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.95rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  position: relative;
  padding: 0.25rem 0;
  font-weight: 500;
  color: #374151;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: #111827;
  border-radius: 999px;
  transition: width 0.2s ease;
}

.nav-link:hover {
  color: #111827;
}

.nav-link:hover::after {
  width: 100%;
}

/* Call-to-Action Button rechts */
.nav-cta {
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  border: none;
  background-color: #facc15; /* Gelb */
  font-weight: 600;
  font-size: 0.95rem;
  color: #111827; /* schwarze Schrift */
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(250, 204, 21, 0.4);
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    background-color 0.15s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.nav-cta:hover {
  transform: scale(1.06);
}

.nav-cta:active {
  transform: scale(0.98);
}


/* ----- Dropdown für Products ----- */

.nav-item-products {
  position: relative;
}

.products-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
  display: flex;
  gap: 1rem;
  min-width: 520px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav-item-products:hover .products-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(8px);
}

.product-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.5rem;
  border-radius: 0.9rem;
  transition: background-color 0.15s ease, transform 0.15s ease,
    box-shadow 0.15s ease;
}

.product-card:hover {
  background-color: #f9fafb;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

.product-image {
  width: 110px;
  height: 70px;
  border-radius: 0.75rem;
  background-color: #e5e7eb;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Platzhalter-Bilder – hier später echte Bilder einfügen */
.product-image.heat-pump {
  background-image: url("images/heatpumpInstallation.png");
}

.product-image.pv {
  background-image: url("images/pvAnlage.jpg");
}

.product-image.insulation {
  background-image: url("images/wartung2.png");
}


.product-label {
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
  color: #111827;
}

/* ----- Hero-Header mit Vollbild-Hintergrund ----- */
/* ----- Hero-Header mit Vollbild-Hintergrund ----- */


.hero {
  position: relative;
  min-height: 100vh;
  background-image: url("images/heatpumpHero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center; /* Inhalt mittig vertikal */
}

.hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4.5rem 1.5rem 4rem; /* unten ruhig etwas mehr, falls nötig */
  width: 100%;
}

/* Rating-Logos unten links/rechts */
.rating-badge {
  position: absolute;
  bottom: 1.2rem;             /* sitzt jetzt wirklich am unteren Rand des Hero */
  padding: 0.4rem 1.4rem;
  border-radius: 999px;
  background-color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.4);
}

.rating-left {
  left: 1.5rem;
}

.rating-right {
  right: 1.5rem;
}

.rating-logo {
  display: block;
  height: 60px;
  width: auto;
}










.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom right,
    rgba(15, 23, 42, 0.65),
    rgba(15, 23, 42, 0.35)
  );
}

.hero-content {
  max-width: 560px;
  text-align: center;
  margin: 0 auto;
  color: #f9fafb;
}

.hero-title {
  font-size: clamp(2.2rem, 3vw + 1rem, 3.1rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 0.8rem;
}

.hero-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #e5e7eb;
  margin-bottom: 1.4rem;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.hero-btn {
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  border: none;
  background-color: #facc15; /* beide Buttons GELB */
  font-weight: 600;
  font-size: 0.95rem;
  color: #111827;
  cursor: pointer;
  min-width: 120px;
  box-shadow: 0 4px 10px rgba(250, 204, 21, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.15s ease, transform 0.15s ease,
    box-shadow 0.15s ease;
}

.hero-btn:hover {
  transform: scale(1.06);
}

.hero-btn:active {
  transform: scale(0.98);
}



/* ----- Rating-Badges unten links/rechts ----- */

/* ----- Rating-Badges unten links/rechts ----- */

/* ----- Rating-Logos unten links/rechts ----- */

/* ----- Solutions Section (Our solutions for your home) ----- */

.solutions-section {
  max-width: 1200px;
  margin: 2rem auto 3rem;
  padding: 0 1.5rem;
}

.solutions-inner > h2 {
  font-size: 1.7rem;
  margin-bottom: 0.75rem;
  color: #111827;
}

.solutions-inner > p {
  color: #4b5563;
  max-width: 620px;
  margin-bottom: 1.8rem;
}

/* Grid der 4 Dienstleistungen */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.solution-card {
  background: #ffffff;
  border-radius: 1.1rem;
  padding: 1rem 1rem 1.2rem;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.10);
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.14);
  border-color: #d1d5db;
}

/* Bildbereich in der Karte */
.solution-image {
  width: 100%;
  height: 130px;
  border-radius: 0.9rem;
  background-color: #e5e7eb;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* deine Bilder */
.solution-image-heat-pump {
  background-image: url("images/heatpumpInstallation.png");
}

.solution-image-pv {
  background-image: url("images/pvAnlage.jpg");
}

.solution-image-insulation {
  background-image: url("images/wartung2.png");
}



/* Text unter dem Bild */
.solution-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #111827;
  text-align: center;
}

/* ----- Partner-Section ----- */

.partners {
  background-color: #ffffff;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  padding: 2.75rem 0;
}

.partners-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Überschrift: dezentes Uppercase + etwas Tracking */
.partners-title {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #4b5563;
  margin-bottom: 0.4rem;
}

/* Subtitle wirkt wie „eigentliche“ Headline */
.partners-subtitle {
  font-size: 1.25rem;
  font-weight: 500;
  color: #111827;
  max-width: 620px;
  line-height: 1.5;
  margin-bottom: 1.6rem;
}

.partners-marquee {
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
}

.partners-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-block: 0.75rem;
  padding-inline: 1rem;
  animation: partners-scroll 22s linear infinite;
}

/* Animation: Logos bewegen sich permanent von rechts nach links */
@keyframes partners-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.partner-logo {
  width: 180px;
  height: 90px;
  padding-inline: 0.6rem;
  border-radius: 999px;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
  border: 1px solid #e5e7eb;
}

/* Logos im Rahmen klein und einheitlich */
.partner-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* ----- Process Section (How we work) ----- */
/* ----- Process Section (High-end Step Flow) ----- */

.process {
  background: radial-gradient(circle at top left, #e0f2fe 0, #f9fafb 38%, #eef2ff 100%);
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  padding: 3.5rem 0 3.8rem;
}

.process-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.process-header {
  max-width: 720px;
  margin-bottom: 2.4rem;
}

.process-kicker {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 0.4rem;
}

.process-title {
  font-size: 1.9rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.process-intro {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.7;
}

/* Liste der Steps */

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

/* Einzelner Step */

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
  gap: 1.6rem;
  padding: 1.2rem 1.2rem 1.2rem 1.4rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.10);
  overflow: hidden;
  backdrop-filter: blur(14px);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.process-step::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(59,130,246,0.09), transparent 60%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.16);
  border-color: rgba(96, 165, 250, 0.7);
}

.process-step:hover::before {
  opacity: 1;
}

/* Bildbereich rechts */

.process-step-media {
  position: relative;
  border-radius: 1.2rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 180px;
  overflow: hidden;
}

.process-step-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top right,
    rgba(15, 23, 42, 0.55),
    rgba(15, 23, 42, 0.15)
  );
}

/* Step-Inhalt links */

.process-step-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.process-step-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.2rem;
}

.process-step-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.18rem 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background-color: #eef2ff;
  color: #4f46e5;
}

.process-step-tag {
  font-size: 0.78rem;
  font-weight: 500;
  color: #6b7280;
}

.process-step-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #0f172a;
}

.process-step-text {
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.7;
}

.process-step-points {
  margin-top: 0.2rem;
  padding-left: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.process-step-points li {
  font-size: 0.88rem;
  color: #4b5563;
  line-height: 1.6;
}

/* Step-Nummer als schwebender Badge zwischen Text & Bild */

.process-step::after {
  content: attr(data-step);
}

/* Schritt-Nummern über Badge lösen wir eleganter: */

.process-step .process-step-number {
  display: none;
}

/* Step-Nummer-Badge über dem Bild */

.process-step::marker {
  content: "";
}

/* Nummer-Badge (wir nutzen das Icon, das du vorher hattest, jetzt als Overlay über dem Bild) */

.process-step .process-icon {
  position: absolute;
  right: 1.3rem;
  top: 1.2rem;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #facc15, #eab308);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(234, 179, 8, 0.8);
}

.process-step .process-icon span {
  font-size: 0.9rem;
  font-weight: 700;
  color: #111827;
}

/* individuelle Hintergrundbilder pro Step */
/* Pfade anpassen an deine Dateien */

.step-1 .process-step-media {
  background-image: url("images/houseSchemaMa.png"); /* z.B. Hausbesuch / Beratung */
}

.step-2 .process-step-media {
  background-image: url("images/wpS.png"); /* z.B. Planung / Schreibtisch / Pläne */
}

.step-3 .process-step-media {
  background-image: url("images/hpInst.jpg"); /* z.B. Monteure installieren Wärmepumpe */
}

.step-4 .process-step-media {
  background-image: url("images/greenE2.png"); /* z.B. glückliche Kunden / Handover */
}


/* ----- Expect Section (What you can expect from us) ----- */
/* ----- Expect Section (What you can expect from us) ----- */
/* ----- Expect Section (What you can expect from us) ----- */

.expect {
  background: linear-gradient(135deg, #0b2741, #104063);
  color: #f9fafb;
  padding: 3.2rem 0 3.6rem;
}

.expect-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Kopfbereich */

.expect-header {
  max-width: 720px;
  margin-bottom: 2.3rem;
}

.expect-kicker {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #bfdbfe; /* helles Blau */
  margin-bottom: 0.4rem;
}

.expect-title {
  font-size: 1.9rem;
  font-weight: 600;
  color: #f9fafb;
  margin-bottom: 0.5rem;
}

.expect-intro {
  font-size: 0.95rem;
  color: #dbeafe;
  line-height: 1.7;
}

/* Grid der Punkte */

.expect-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

/* Einzelne Punkte ohne Boxen */

.expect-item {
  position: relative;
  padding: 0.4rem 0 0.9rem;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  transition: color 0.15s ease;
}

/* Trennung zwischen den Punkten */

.expect-item {
  position: relative;
  padding: 1rem 0 0.9rem;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  border-top: 1px solid rgba(148, 163, 184, 0.4); /* Linie bei ALLEN */
  transition: color 0.15s ease;
}

/* optional: extra Abstand nach der ersten Zeile weg */
.expect-item:first-child {
  margin-top: 0;
}


/* Kein Glow / keine Balken mehr */

.expect-item::before,
.expect-item::after {
  content: none;
}

/* Typo-Reaktion beim Hover nur über der Überschrift */

.expect-item:hover .expect-item-title {
  color: #facc15; /* dezenter Gelb-Akzent */
}

/* Überschrift eines Punktes */

.expect-item-title {
  font-size: 1.02rem;
  font-weight: 600;
  color: #f9fafb;
  margin-bottom: 0.35rem;
}

/* Fließtext eines Punktes */

.expect-item-text {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #e5edf9;
}

/* ----- About Section ----- */
/* ----- About Section ----- */

.about {
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  padding: 3.2rem 0 3.4rem;
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.2fr);
  gap: 2.4rem;
  align-items: flex-start;
}

/* linke Seite: Text + Firmendaten */

.about-kicker {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 0.4rem;
}

.about-title {
  font-size: 1.9rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.7rem;
}

.about-intro {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 0.6rem;
}

.about-body {
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.4rem;
}

.about-company {
  padding: 1.2rem 1.2rem 1.3rem;
  border-radius: 1.1rem;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.06);
}

.about-company-title {
  font-size: 0.92rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #6b7280;
  margin-bottom: 0.9rem;
}

.about-company-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 0.9rem 1.4rem;
}

.about-company-block {
  font-size: 0.88rem;
  color: #374151;
}

.about-company-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #9ca3af;
  margin-bottom: 0.15rem;
}

.about-company-text {
  line-height: 1.6;
}

.about-company-text a {
  color: #111827;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(15, 23, 42, 0.18);
}

.about-company-text a:hover {
  border-bottom-color: #111827;
}

/* rechte Seite: Map-Karte */

.about-map-card {
  position: relative;
  border-radius: 1.4rem;
  background: #020617;
  color: #e5e7eb;
  padding: 1.4rem 1.4rem 1.5rem;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.5);
}

.about-map-card::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at top left, rgba(248, 250, 252, 0.12), transparent 55%);
  opacity: 0.9;
  pointer-events: none;
}

.about-map-header {
  position: relative;
  z-index: 1;
  margin-bottom: 0.9rem;
}

.about-map-kicker {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #facc15;
  margin-bottom: 0.3rem;
}

.about-map-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #f9fafb;
  margin-bottom: 0.25rem;
}

.about-map-sub {
  font-size: 0.86rem;
  color: #cbd5f5;
  line-height: 1.6;
}

.about-map-iframe-wrapper {
  position: relative;
  z-index: 1;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.5);
  margin-bottom: 0.7rem;
}

/* 16:9 Ratio für sauberes Scaling */

.about-map-iframe-wrapper::before {
  content: "";
  display: block;
  padding-bottom: 56.25%;
}

.about-map-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.about-map-note {
  position: relative;
  z-index: 1;
  font-size: 0.82rem;
  color: #e5e7eb;
  line-height: 1.6;
  margin-top: 0.25rem;
}
/* ----- FAQ Section ----- */

.faq {
  background: #f3f4f6; /* gleicher Ton wie der Contact-Bereich */
  padding: 3.2rem 0 3.6rem;
  border-top: 1px solid #e5e7eb;
}

.faq-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: 2.4rem;
  align-items: flex-start;
}

/* linke Seite */

.faq-kicker {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 0.4rem;
}

.faq-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.faq-intro {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.1rem;
}

.faq-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.faq-tag {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background-color: #ffffff;
  color: #374151;
}

.faq-note {
  font-size: 0.88rem;
  color: #6b7280;
  line-height: 1.6;
}

/* rechte Seite: FAQ-Items */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

/* wir nutzen <details>, aber stylen sie wie eigene Komponenten */

.faq-item {
  background-color: #ffffff;
  border-radius: 1rem;
  border: 1px solid #e5e7eb;
  padding: 0.85rem 1rem 0.9rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  transition: box-shadow 0.16s ease, border-color 0.16s ease, transform 0.12s ease;
}

/* Standard-Dreieck entfernen */
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::marker {
  content: "";
}

/* Kopf (Frage) */

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.faq-bullet {
  margin-top: 0.15rem;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(to bottom right, #facc15, #eab308);
  box-shadow: 0 0 0 4px rgba(250, 204, 21, 0.25);
  flex-shrink: 0;
}

.faq-question {
  font-size: 0.98rem;
  font-weight: 600;
  color: #111827;
}

/* Antwort-Bereich */

.faq-answer {
  margin-top: 0.65rem;
  padding-left: 1.5rem; /* ausgerichtet unter der Frage */
}

.faq-answer p {
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.8;
}

/* offene FAQ optisch leicht hervorgehoben */

.faq-item[open] {
  border-color: #eab308;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.09);
  transform: translateY(-1px);
}

.faq-item[open] .faq-question {
  color: #0f172a;
}


/* ----- Contact Section ----- */

.contact {
  background: #f3f4f6;
  padding: 3.4rem 0 3.8rem;
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 2.4rem;
  align-items: flex-start;
}

/* linke Seite */

.contact-kicker {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 0.4rem;
}

.contact-title {
  font-size: 1.9rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.6rem;
}

.contact-intro {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.contact-points {
  list-style: none;
  margin: 0 0 1.5rem 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-points li {
  font-size: 0.9rem;
  color: #374151;
  position: relative;
  padding-left: 1.1rem;
}

.contact-points li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0.02rem;
  color: #eab308; /* warmes, dunkleres Gelb */
  font-size: 1rem;
}

.contact-alt {
  margin-top: 0.8rem;
  padding-top: 0.9rem;
  border-top: 1px solid #e5e7eb;
}

.contact-alt-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.2rem;
}

.contact-alt-text {
  font-size: 0.9rem;
  color: #4b5563;
}

.contact-alt-text a {
  color: #eab308;
  font-weight: 500;
}

/* rechte Seite: Formular */

.contact-form {
  background: #ffffff;
  border-radius: 1.3rem;
  padding: 1.7rem 1.7rem 1.8rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  position: relative;
  overflow: hidden;
}



/* ----- Savings Calculator Section ----- */

.savings {
  background: #f9fafb;
  padding: 3.4rem 0 3.8rem;
  border-top: 1px solid #e5e7eb;
}

.savings-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.savings-header {
  max-width: 720px;
  margin-bottom: 2.4rem;
}

.savings-kicker {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 0.4rem;
}

.savings-title {
  font-size: 1.9rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.savings-intro {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.7;
}

/* Layout: Formular links, Ergebnis rechts */

.savings-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 2.2rem;
  align-items: flex-start;
}

/* Formular */

.savings-form {
  background: #ffffff;
  border-radius: 1.3rem;
  padding: 1.7rem 1.6rem 1.8rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.savings-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.savings-field label {
  font-size: 0.86rem;
  font-weight: 500;
  color: #374151;
}

/* Icon + Input/Select in einer Zeile */

.savings-input-with-icon {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.45rem;
  background: #f9fafb;
  border-radius: 0.7rem;
  border: 1px solid #e5e7eb;
  padding: 0.45rem 0.6rem;
}

.savings-icon {
  font-size: 1rem;
}

.savings-input-with-icon input,
.savings-input-with-icon select {
  border: none;
  background: transparent;
  font-size: 0.9rem;
  font-family: inherit;
  color: #111827;
  width: 100%;
}

.savings-input-with-icon input:focus,
.savings-input-with-icon select:focus {
  outline: none;
}

.savings-input-unit {
  font-size: 0.8rem;
  color: #6b7280;
}

/* Slider */

.savings-slider-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

#scop-slider {
  flex: 1;
}

.savings-scop-value {
  font-size: 0.85rem;
  font-weight: 500;
  color: #111827;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: #fefce8;
  border: 1px solid #facc15;
}

.savings-hint {
  font-size: 0.8rem;
  color: #6b7280;
}

/* Button + Disclaimer */

.savings-submit {
  align-self: flex-start;
  margin-top: 0.4rem;
}


.savings-submit:hover {
  transform: translateY(-1px);
  filter: brightness(0.97);
  box-shadow: 0 18px 40px rgba(202, 138, 4, 0.6);
}

.savings-submit:active {
  transform: translateY(0);
  box-shadow: 0 8px 20px rgba(202, 138, 4, 0.5);
}

.savings-disclaimer {
  font-size: 0.78rem;
  color: #9ca3af;
  margin-top: 0.5rem;
  line-height: 1.6;
}

/* Ergebnis-Panel */

.savings-result {
  background: radial-gradient(circle at top left, #eff6ff 0, #f9fafb 40%, #fefce8 100%);
  border-radius: 1.4rem;
  padding: 1.8rem 1.6rem 1.9rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.10);
}

.savings-result-label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 0.7rem;
}

.savings-result-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-bottom: 1.4rem;
}

.savings-pill {
  border-radius: 1.1rem;
  padding: 0.9rem 0.85rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #e5e7eb;
}

.savings-pill-highlight {
  background: #0f172a;
  border-color: #0f172a;
  color: #f9fafb;
}

.savings-pill-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: inherit;
  opacity: 0.85;
  margin-bottom: 0.15rem;
}

.savings-pill-value {
  font-size: 1rem;
  font-weight: 600;
  color: inherit;
}

/* Savings Zahl */

.savings-result-savings {
  margin-bottom: 1rem;
}

.savings-result-number {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.2rem;
}

.savings-result-caption {
  font-size: 0.88rem;
  color: #4b5563;
  line-height: 1.7;
}

.savings-notes {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.35rem;
  font-size: 0.82rem;
  color: #6b7280;
}

/* Responsive */

@media (max-width: 900px) {
  .savings-layout {
    grid-template-columns: 1fr;
  }

  .savings-result {
    order: -1; /* Ergebnis über dem Formular auf Tablet/Handy, wirkt „snappier“ */
  }
}

@media (max-width: 700px) {
  .savings-inner {
    padding-inline: 1.25rem;
  }

  .savings-result-cards {
    grid-template-columns: 1fr;
  }

  .savings-submit {
    width: 100%;
    justify-content: center;
  }
}

/* gelber Akzentstreifen links */

.contact-form::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.9rem;
  width: 4px;
  height: 52px;
  border-radius: 999px;
  background: linear-gradient(to bottom, #facc15, #eab308, #ca8a04);
}

.contact-form-header h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.25rem;
}

.contact-form-header p {
  font-size: 0.88rem;
  color: #6b7280;
  margin-bottom: 1.2rem;
}

/* Grid für die Felder */

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.1rem;
  margin-bottom: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.form-field label {
  font-size: 0.86rem;
  font-weight: 500;
  color: #374151;
}

.form-field input,
.form-field select,
.form-field textarea {
  border-radius: 0.6rem;
  border: 1px solid #e5e7eb;
  padding: 0.55rem 0.65rem;
  font-size: 0.9rem;
  font-family: inherit;
  color: #111827;
  background-color: #f9fafb;
  transition: border-color 0.12s ease, box-shadow 0.12s ease,
              background-color 0.12s ease;
}

.form-field textarea {
  resize: vertical;
  min-height: 110px;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #9ca3af;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #eab308;
  background-color: #ffffff;
  box-shadow: 0 0 0 1px rgba(234, 179, 8, 0.3);
}

/* Footer mit Checkbox & Button */

.form-footer {
  margin-top: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.8rem;
  color: #4b5563;
}

.form-consent input[type="checkbox"] {
  margin-top: 0.15rem;
  width: 15px;
  height: 15px;
}

.contact-submit {
  align-self: flex-start;
  margin-top: 0.3rem;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  border: none;
  background: #facc15;

  font-size: 0.95rem;
  font-weight: 600;
  color: #111827;
  cursor: pointer;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
}

.contact-submit:hover {
  transform: scale(1.06);
  filter: none;

}

.contact-submit:active {
  transform: scale(0.98);

}



.form-note {
  font-size: 0.78rem;
  color: #9ca3af;
}

/* ----- Footer mit Blueprint-Hintergrund ----- */

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 3.2rem 0 2.6rem;
  color: #020617; /* sehr dunkles Schwarz-Blau für Text */
  /* hier DEIN Bauplan-Bild hinterlegen */
  background-image: url("images/footer-blueprint.jpg"); /* ← anpassen */
  background-size: cover;
  background-position: center;
}

/* milchiger Overlay, damit schwarze Schrift auf jedem Bild lesbar bleibt */
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(248, 250, 252, 0.92), rgba(241, 245, 249, 0.9));
  backdrop-filter: blur(2px);
  z-index: 0;


}

.footer-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}


.nav-cta,
.hero-btn,
.contact-submit,
.footer-pill {
  transform-origin: center;
  will-change: transform;
}

/* Grid-Aufbau – wirkt wie eine strukturierte Planungsseite, nicht wie Standard-Footer */

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: flex-start;
  margin-bottom: 2.2rem;
}

.footer-column {
  font-size: 0.9rem;
}

/* Brand-Bereich links */

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.8rem;
}

.footer-logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 2px solid #020617;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.footer-logo-name {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-logo-sub {
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #4b5563;
}

.footer-claim {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #111827;
  max-width: 22rem;
  margin-bottom: 0.9rem;
}

/* Pill-Links (Call-to-actions im Footer) */

.footer-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  border: 1px solid #020617;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background-color: rgba(249, 250, 251, 0.7);
  transition: background-color 0.15s ease, transform 0.12s ease, box-shadow 0.12s ease;
}

.footer-pill:hover {
  transform: scale(1.06);
}

/* Überschriften & Listen im Footer */

.footer-heading {
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 0.5rem;
  color: #020617;
}

.footer-heading-secondary {
  margin-top: 1.4rem;
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.28rem;
}

.footer-list li a {
  font-size: 0.88rem;
  font-weight: 500;
  color: #111827;
  text-decoration: none;
  position: relative;
}

.footer-list li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background-color: #020617;
  transition: width 0.15s ease;
}

.footer-list li a:hover::after {
  width: 100%;
}

/* Kontakt-Spalte rechts */

.footer-contact-list {
  list-style: none;
  margin: 0 0 1.3rem 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.footer-contact-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #4b5563;
  margin-bottom: 0.1rem;
}

.footer-contact-list a {
  font-size: 0.9rem;
  font-weight: 600;
  color: #020617;
  text-decoration: none;
  border-bottom: 1px solid rgba(15, 23, 42, 0.12);
}

.footer-contact-list a:hover {
  border-bottom-color: #020617;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.7rem;
  font-size: 0.8rem;
}

.footer-legal-links a {
  color: #111827;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.footer-legal-links a:hover {
  border-bottom-color: #111827;
}

.footer-note {
  font-size: 0.8rem;
  line-height: 1.6;
  color: #4b5563;
}

/* Unterer Bereich */

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.6);
  padding-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
}

.footer-bottom-text {
  font-size: 0.8rem;
  color: #6b7280;
}

.footer-bottom-sub {
  font-weight: 500;
  color: #4b5563;
}

/* ============================
   Wärmepumpen-Unterseite (heat-pumps.html)
   ============================ */

/* 1. Hero der Unterseite (kein Vollbild, eher wie Landing-Subhero) */

.hp-hero {
  background: radial-gradient(circle at top left, #e0f2fe 0, #f9fafb 38%, #eef2ff 100%);
  border-bottom: 1px solid #e5e7eb;
  padding: 4.5rem 0 3.6rem;
}

.hp-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.hp-hero-text {
  max-width: 640px;
}

.hp-kicker {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.hp-title {
  font-size: 2rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.7rem;
}

.hp-lead {
  font-size: 0.97rem;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.hp-hero-points {
  margin: 0 0 1.4rem 0;
  padding-left: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.9rem;
  color: #374151;
}

.hp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
}

/* nutzt deine bestehende .nav-cta als Primary-Button */
.hp-hero-cta {
  display: inline-flex;
}

/* sekundärer Button */
.hp-hero-ghost {
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background-color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 500;
  color: #111827;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.15s ease, transform 0.15s ease,
    box-shadow 0.15s ease;
}

.hp-hero-ghost:hover {
  background-color: #ffffff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
  transform: translateY(-1px);
}

/* rechte Karte im Hero */

.hp-hero-card {
  background: #0f172a;
  color: #e5e7eb;
  border-radius: 1.3rem;
  padding: 1.6rem 1.5rem 1.7rem;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(148, 163, 184, 0.7);
}

.hp-hero-card-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #f9fafb;
}

.hp-hero-card-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #e5e7eb;
  margin-bottom: 0.9rem;
}

.hp-hero-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.9rem 0;
  display: grid;
  gap: 0.3rem;
  font-size: 0.86rem;
}

.hp-hero-card-list li::before {
  content: "✓ ";
  color: #facc15;
  font-weight: 600;
}

.hp-hero-card-footnote {
  font-size: 0.78rem;
  color: #9ca3af;
  line-height: 1.6;
}

/* 2. Wiederverwendbare Section-Header für Unterseite */

.hp-section-header {
  max-width: 740px;
  margin-bottom: 2.2rem;
}

.hp-section-kicker {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 0.4rem;
}

.hp-section-title {
  font-size: 1.7rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.4rem;
}

.hp-section-intro {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.7;
}

/* 3. Suitability-Section */

.hp-suitability {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding: 3.4rem 0 3.6rem;
}

.hp-suitability-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hp-suitability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.hp-suitability-card {
  border-radius: 1.1rem;
  padding: 1.2rem 1.1rem 1.3rem;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  font-size: 0.9rem;
  line-height: 1.6;
}

.hp-suitability-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.4rem;
}

.hp-suitability-card ul {
  list-style: none;
  margin: 0;
  padding-left: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hp-suitability-card ul li {
  position: relative;
  color: #4b5563;
}

.hp-suitability-card ul li::before {
  content: "•";
  position: absolute;
  left: -0.8rem;
  top: 0;
  color: #eab308;
}

/* leichte Farbvarianten */

.hp-suitability-good {
  background: #ecfdf5;
  border-color: #bbf7d0;
}

.hp-suitability-check {
  background: #fefce8;
  border-color: #facc15;
}

.hp-suitability-info {
  background: #eff6ff;
  border-color: #bfdbfe;
}

/* 4. Systemvarianten */

.hp-systems {
  background: #f9fafb;
  padding: 3.2rem 0 3.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.hp-systems-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hp-systems-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.hp-system-card {
  border-radius: 1.2rem;
  padding: 1.3rem 1.2rem 1.4rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.7;
}

.hp-system-card h3 {
  font-size: 1.02rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.45rem;
}

.hp-system-card p {
  margin-bottom: 0.6rem;
}

.hp-system-card ul {
  list-style: none;
  padding-left: 1.1rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hp-system-card ul li {
  position: relative;
}

.hp-system-card ul li::before {
  content: "–";
  position: absolute;
  left: -0.7rem;
  top: 0;
  color: #9ca3af;
}

/* 5. Projektablauf kompakt */

.hp-project {
  background: #ffffff;
  padding: 3.2rem 0 3.6rem;
}

.hp-project-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hp-project-header {
  margin-bottom: 1.8rem;
}

.hp-project-steps {
  list-style: none;
  margin: 0 0 1.8rem 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.hp-project-step {
  border-radius: 1.1rem;
  padding: 0.95rem 1rem 1rem;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  position: relative;
}

.hp-project-step h3 {
  font-size: 0.98rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.hp-project-step p {
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.7;
}

.hp-project-cta {
  border-radius: 1.2rem;
  padding: 1rem 1.1rem 1.1rem;
  background: #0f172a;
  color: #f9fafb;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  justify-content: space-between;
}

.hp-project-cta p {
  font-size: 0.95rem;
  font-weight: 500;
}

/* Responsive Anpassungen für Unterseite */

@media (max-width: 900px) {
  .hp-hero-inner {
    grid-template-columns: 1fr;
  }

  .hp-hero-card {
    margin-top: 1.2rem;
  }

  .hp-suitability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hp-systems-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .hp-hero-inner {
    padding-inline: 1.25rem;
  }

  .hp-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hp-hero-ghost {
    width: 100%;
    justify-content: center;
  }

  .hp-suitability-inner,
  .hp-systems-inner,
  .hp-project-inner {
    padding-inline: 1.25rem;
  }

  .hp-suitability-grid {
    grid-template-columns: 1fr;
  }

  .hp-systems-grid {
    grid-template-columns: 1fr;
  }

  .hp-project-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==================================
   PV-Unterseite (solar-pv.html)
   ================================== */

/* 1. PV-Hero */

.pv-hero {
  background: radial-gradient(circle at top left, #fef9c3 0, #f9fafb 40%, #e0f2fe 100%);
  border-bottom: 1px solid #e5e7eb;
  padding: 4.5rem 0 3.6rem;
}

.pv-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.pv-hero-text {
  max-width: 640px;
}

.pv-kicker {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.pv-title {
  font-size: 2rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.7rem;
}

.pv-lead {
  font-size: 0.97rem;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.pv-hero-points {
  margin: 0 0 1.4rem 0;
  padding-left: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.9rem;
  color: #374151;
}

.pv-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
}

/* nutzt nav-cta als Primary-Button */
.pv-hero-cta {
  display: inline-flex;
}

/* sekundärer Button */
.pv-hero-ghost {
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background-color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 500;
  color: #111827;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.15s ease, transform 0.15s ease,
    box-shadow 0.15s ease;
}

.pv-hero-ghost:hover {
  background-color: #ffffff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
  transform: translateY(-1px);
}

/* rechte Karte im Hero */

.pv-hero-card {
  background: #020617;
  color: #e5e7eb;
  border-radius: 1.3rem;
  padding: 1.6rem 1.5rem 1.7rem;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.7);
}

.pv-hero-card-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #f9fafb;
}

.pv-hero-card-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #e5e7eb;
  margin-bottom: 0.9rem;
}

.pv-hero-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.9rem 0;
  display: grid;
  gap: 0.3rem;
  font-size: 0.86rem;
}

.pv-hero-card-list li::before {
  content: "✓ ";
  color: #facc15;
  font-weight: 600;
}

.pv-hero-card-footnote {
  font-size: 0.78rem;
  color: #9ca3af;
  line-height: 1.6;
}

/* 2. Wiederverwendbarer Section-Header für PV */

.pv-section-header {
  max-width: 740px;
  margin-bottom: 2.2rem;
}

.pv-section-kicker {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 0.4rem;
}

.pv-section-title {
  font-size: 1.7rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.4rem;
}

.pv-section-intro {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.7;
}

/* 3. PV-Benefits */

.pv-benefits {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding: 3.4rem 0 3.6rem;
}

.pv-benefits-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.pv-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.pv-benefit-card {
  border-radius: 1.1rem;
  padding: 1.2rem 1.1rem 1.3rem;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.7;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.06);
}

.pv-benefit-card h3 {
  font-size: 1.02rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.4rem;
}

/* 4. Dach-Eignung */

.pv-suitability {
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
  padding: 3.4rem 0 3.6rem;
}

.pv-suitability-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.pv-suitability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.pv-suitability-card {
  border-radius: 1.1rem;
  padding: 1.2rem 1.1rem 1.3rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  font-size: 0.9rem;
  line-height: 1.6;
}

.pv-suitability-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.4rem;
}

.pv-suitability-card ul {
  list-style: none;
  margin: 0;
  padding-left: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.pv-suitability-card ul li {
  position: relative;
  color: #4b5563;
}

.pv-suitability-card ul li::before {
  content: "•";
  position: absolute;
  left: -0.8rem;
  top: 0;
  color: #eab308;
}

.pv-suitability-good {
  background: #ecfdf5;
  border-color: #bbf7d0;
}

.pv-suitability-check {
  background: #fefce8;
  border-color: #facc15;
}

.pv-suitability-info {
  background: #eff6ff;
  border-color: #bfdbfe;
}

/* 5. PV-Systeme */

.pv-systems {
  background: #ffffff;
  padding: 3.2rem 0 3.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.pv-systems-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.pv-systems-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.pv-system-card {
  border-radius: 1.2rem;
  padding: 1.3rem 1.2rem 1.4rem;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.7;
}

.pv-system-card h3 {
  font-size: 1.02rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.45rem;
}

.pv-system-card p {
  margin-bottom: 0.6rem;
}

.pv-system-card ul {
  list-style: none;
  padding-left: 1.1rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.pv-system-card ul li {
  position: relative;
}

.pv-system-card ul li::before {
  content: "–";
  position: absolute;
  left: -0.7rem;
  top: 0;
  color: #9ca3af;
}

/* 6. PV-Projektablauf */

.pv-project {
  background: #f9fafb;
  padding: 3.2rem 0 3.6rem;
}

.pv-project-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.pv-project-header {
  margin-bottom: 1.8rem;
}

.pv-project-steps {
  list-style: none;
  margin: 0 0 1.8rem 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.pv-project-step {
  border-radius: 1.1rem;
  padding: 0.95rem 1rem 1rem;
  border: 1px solid #e5e7eb;
  background: #ffffff;
}

.pv-project-step h3 {
  font-size: 0.98rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.pv-project-step p {
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.7;
}

.pv-project-cta {
  border-radius: 1.2rem;
  padding: 1rem 1.1rem 1.1rem;
  background: #0f172a;
  color: #f9fafb;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  justify-content: space-between;
}

.pv-project-cta p {
  font-size: 0.95rem;
  font-weight: 500;
}

/* Responsive für PV-Seite */

@media (max-width: 900px) {
  .pv-hero-inner {
    grid-template-columns: 1fr;
  }

  .pv-hero-card {
    margin-top: 1.2rem;
  }

  .pv-benefits-grid,
  .pv-suitability-grid,
  .pv-systems-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .pv-hero-inner {
    padding-inline: 1.25rem;
  }

  .pv-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .pv-hero-ghost {
    width: 100%;
    justify-content: center;
  }

  .pv-benefits-inner,
  .pv-suitability-inner,
  .pv-systems-inner,
  .pv-project-inner {
    padding-inline: 1.25rem;
  }

  .pv-benefits-grid,
  .pv-suitability-grid,
  .pv-systems-grid {
    grid-template-columns: 1fr;
  }

  .pv-project-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 900px) {
  .nav-container {
    gap: 1rem;
  }

  .nav-links {
    gap: 1rem;
    font-size: 0.9rem;
  }

  .products-dropdown {
    min-width: 100%;
    left: 0;
    transform: translateX(0) translateY(12px);
  }

  .nav-item-products:hover .products-dropdown {
    transform: translateX(0) translateY(8px);
  }

  .product-image {
    width: 90px;
    height: 60px;
  }

  .rating-left,
  .rating-right {
    bottom: 1rem;
  }

  .rating-badge {
    padding-inline: 0.8rem;
  }

  /* Solutions: 2 Spalten auf Tablet */
  .solutions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* Process: etwas schmaleres Grid auf Tablet */
  .process-step {
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.3fr);
  }

  .expect-grid { grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-grid {
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
  gap: 1.8rem;
}

.footer-column.footer-contact {
  grid-column: span 2;
  max-width: 420px;
}
.about-layout { grid-template-columns: 1fr; }
  .about-company-grid { grid-template-columns: 1fr; }
}

  @media (max-width: 700px) {

    .rating-badge {
      bottom: 0.8rem;
      padding: 0.3rem 1rem;
    }

    .rating-logo {
      height: 24px;
    }


  .nav-container {
    padding-inline: 1rem;
  }

  .nav-links {
    display: none; /* Mobile-Menü kann später kommen */
  }

  .hero-content {
    text-align: left;
  }

  .rating-right {
    right: 1rem;
  }

  .rating-left {
    left: 1rem;
  }

  .partners-track {
    gap: 1.5rem;
  }

  .partner-logo {
    width: 110px;
    height: 50px;
  }

  .partner-logo img {
    height: 24px;
  }

  /* Solutions: 1 Spalte auf Handy */
  .solutions-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));}

.contact-form-grid { grid-template-columns: 1fr; }
  /* Process: untereinander, Bild oben */
  .process-step {
    grid-template-columns: 1fr;
    padding: 1.1rem 1rem 1.3rem;
  }

  .process-step-media {
    order: -1;
    min-height: 160px;
  }

  .process-step .process-icon {
    right: 1rem;
    top: 1rem;
  }

  .expect-grid {
    grid-template-columns: 1fr;
    }

  .expect-inner {
    padding-inline: 1.25rem;
  }
  .site-footer {
  padding: 2.6rem 0 2.4rem;
}

.footer-inner {
  padding-inline: 1.25rem;
}

.footer-grid {
  grid-template-columns: 1fr;
  gap: 1.6rem;
}

.footer-column.footer-brand {
  max-width: 100%;
}

.footer-bottom {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
}
}

/* =========================================
   MOBILE MENU & HAMBURGER (ab Tablet/Handy)
   ========================================= */

/* Standardmäßig ist der Hamburger unsichtbar */
.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  transition: all 0.3s ease-in-out;
  background-color: #111827;
  border-radius: 3px;
}

/* Media Query anpassen (wir erhöhen auf 900px, damit Tablet auch das Menü bekommt) */
@media (max-width: 900px) {

  /* Hamburger sichtbar machen */
  .hamburger {
    display: block;
    z-index: 2000; /* Muss über dem Menü liegen */
  }

  /* Navigations-Liste für Mobile umstylen */
  .nav-links {
    position: fixed;
    left: -100%; /* Außerhalb des Bildschirms links versteckt */
    top: 0;
    flex-direction: column;
    background-color: #ffffff;
    width: 80%; /* Breite des Menüs */
    max-width: 400px;
    height: 100vh; /* Volle Höhe */
    text-align: left;
    transition: 0.3s ease-in-out; /* Weiches Hereinfahren */
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
    padding-top: 5rem; /* Platz oben für Close-Button */
    padding-left: 2rem;
    display: flex !important; /* Überschreibt das display: none */
    z-index: 1500;
  }

  /* Wenn die Klasse "active" per JS hinzugefügt wird: Menü hereinfahren */
  .nav-links.active {
    left: 0;
  }

  /* Navigationselemente größer machen für Fingerbedienung */
  .nav-item {
    margin: 1.5rem 0;
  }

  .nav-link {
    font-size: 1.2rem;
    font-weight: 600;
  }

  /* Dropdown mobil: einfach statisch anzeigen */
  .products-dropdown {
    position: static;
    transform: none;
    opacity: 1;
    box-shadow: none;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    padding: 1rem;
    margin-top: 1rem;
    min-width: auto;
    pointer-events: auto;
    display: none; /* Erstmal ausblenden, um Platz zu sparen */
  }

  /* Zeige Dropdown dauerhaft an, wenn gewünscht, oder per Klick (hier vereinfacht: angezeigt) */
  .nav-item-products .products-dropdown {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  /* Hamburger Animation zu "X" */
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Optional: Den CTA Button auf Handy etwas kleiner machen */
  .nav-cta {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
}


/* für die Seite Wartung */

/* =========================================
   WARTUNG & SERVICE PAGE STYLES
   ========================================= */

/* -- Service Hero -- */
.service-hero {
  background: radial-gradient(circle at top right, #f1f5f9 0, #ffffff 60%);
  padding: 8rem 0 4rem; /* viel Platz oben wegen Navbar */
  border-bottom: 1px solid #e2e8f0;
}

.service-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.service-kicker {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #ca8a04; /* dunkleres Gelb */
  margin-bottom: 0.5rem;
}

.service-title {
  font-size: 2.5rem;
  line-height: 1.1;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.service-lead {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-actions {
  display: flex;
  gap: 1rem;
}

.service-ghost-btn {
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  border: 1px solid #cbd5e1;
  color: #334155;
  font-weight: 600;
  transition: all 0.2s ease;
}

.service-ghost-btn:hover {
  border-color: #0f172a;
  color: #0f172a;
  background: white;
}

/* Platzhalterbild im Hero */
.service-image-placeholder {
  width: 100%;
  height: 350px;
  background-color: #e2e8f0;
  border-radius: 1.5rem;
  background-image: url('images/wartung2.png'); /* Falls vorhanden */
  background-size: cover;
  background-position: center;
  position: relative;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.1);
}

.service-badge {
  position: absolute;
  bottom: 2rem;
  left: -1rem; /* Ragt leicht links raus */
  background: white;
  padding: 0.8rem 1.2rem;
  border-radius: 0.8rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  max-width: 260px;
}

.service-badge-icon {
  width: 32px;
  height: 32px;
  background: #22c55e; /* Grün */
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.service-badge strong {
  display: block;
  font-size: 0.9rem;
  color: #0f172a;
}
.service-badge .small {
  font-size: 0.75rem;
  color: #64748b;
}

/* -- Why Maintenance Grid -- */
.why-maintenance {
  padding: 4rem 0;
  background: #fff;
}

.why-inner, .scope-inner, .pricing-inner, .repair-inner, .contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-header {
  max-width: 700px;
  margin-bottom: 2.5rem;
}

.section-header.center-text {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.why-card {
  padding: 1.5rem;
  border: 1px solid #f1f5f9;
  border-radius: 1rem;
  background: #f8fafc;
  transition: transform 0.2s;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.why-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.why-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #0f172a;
}

.why-card p {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.6;
}

/* -- Scope (Checkliste) -- */
.scope {
  background: #0f172a; /* Dunkelblau für Kontrast */
  color: white;
  padding: 4rem 0;
}

.scope-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.scope-list {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.scope-list li {
  position: relative;
  padding-left: 1.8rem;
  line-height: 1.6;
  color: #cbd5e1;
}

.scope-list li strong {
  color: #facc15; /* Gelb */
}

.scope-list li::before {
  content: "➤";
  position: absolute;
  left: 0;
  color: #facc15;
  font-size: 0.8rem;
  top: 0.3rem;
}

.scope-image {
  background-image: url('images/heatpumpInstallation.png'); /* Wiederverwendetes Bild */
  background-size: cover;
  height: 400px;
  border-radius: 1rem;
  opacity: 0.8;
}

/* -- Pricing Cards -- */
.pricing {
  padding: 4rem 0;
  background: #f8fafc;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card.highlight {
  border: 2px solid #facc15; /* Gelber Rahmen */
  box-shadow: 0 20px 40px rgba(250, 204, 21, 0.15);
  transform: scale(1.02); /* Leicht größer */
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #facc15;
  color: #0f172a;
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: 99px;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.pricing-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
  color: #0f172a;
}
.pricing-sub {
  color: #64748b;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.pricing-price {
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}
.pricing-price .tax {
  display: block;
  font-size: 0.8rem;
  font-weight: 400;
  color: #94a3b8;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
  flex: 1; /* Schiebt Button nach unten */
}

.pricing-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.95rem;
  color: #334155;
  display: flex;
  gap: 0.5rem;
}
.pricing-features li::before {
  content: "✓";
  color: #22c55e;
  font-weight: bold;
}
.pricing-features li.disabled {
  color: #94a3b8;
  text-decoration: line-through;
}
.pricing-features li.disabled::before {
  content: "×";
  color: #cbd5e1;
}

.pricing-btn {
  display: block;
  text-align: center;
  padding: 0.8rem;
  border-radius: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.pricing-btn.outline {
  border: 2px solid #e2e8f0;
  color: #0f172a;
}
.pricing-btn.outline:hover {
  border-color: #0f172a;
}

.pricing-btn.filled {
  background: #facc15;
  color: #0f172a;
  box-shadow: 0 4px 15px rgba(250, 204, 21, 0.4);
}
.pricing-btn.filled:hover {
  transform: translateY(-2px);
}

.pricing-note {
  text-align: center;
  font-size: 0.8rem;
  color: #94a3b8;
  margin-top: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* -- Repair Section -- */
.repair {
  background: #fff;
  padding: 4rem 0;
  border-top: 1px solid #e2e8f0;
}

.repair-content {
  background: #fff1f2; /* Ganz leichtes Rot für Alarm/Wichtigkeit */
  border: 1px solid #fecdd3;
  padding: 2.5rem;
  border-radius: 1rem;
}

.repair-content h2 {
  color: #9f1239; /* Dunkelrot */
  margin-bottom: 0.5rem;
}

.repair-grid {
  display: flex;
  gap: 3rem;
  margin-top: 2rem;
}

.repair-item {
  display: flex;
  gap: 1rem;
}
.repair-icon {
  font-size: 2rem;
}

/* Responsive Anpassungen für Wartungsseite */
@media (max-width: 900px) {
  .service-hero-inner, .why-grid, .scope-inner, .pricing-grid, .repair-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .service-hero {
    padding-top: 6rem;
    text-align: center;
  }
  .service-actions {
    justify-content: center;
  }
  .service-image-placeholder {
    height: 250px;
  }
  .service-badge {
    left: 50%;
    transform: translateX(-50%);
    bottom: -1rem;
    width: 90%;
  }
  .pricing-card.highlight {
    transform: none;
  }
}


/* =========================================
   HEAT PUMP INSTALLATION PAGE STYLES
   ========================================= */

/* -- HP Hero Section -- */
.hp-hero {
  position: relative;
  min-height: 85vh; /* Fast bildschirmfüllend */
  background-image: url('images/heatpumpHero.png'); /* Dein Hero Bild */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding-top: 4rem;
}

/* Dunkles Overlay für Lesbarkeit */
.hp-hero-overlay {
  position: absolute;
  inset: 0;
  /* Wir erhöhen die Deckkraft des dunklen Blaus (von 0.7/0.85 auf 0.85/0.95) */
  background: linear-gradient(to bottom, rgba(15,23,42,0.85), rgba(15,23,42,0.95));
  z-index: 0;
}

.hp-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  padding: 0 1.5rem;
}

.hp-badge {
  display: inline-block;
  background: #facc15;
  color: #0f172a;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 99px;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 0 15px rgba(250, 204, 21, 0.4);
}

.hp-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  /* NEU: Explizites Reinweiß */
  color: #ffffff;
  /* NEU: Stärkerer text-shadow, damit es sich vom Hintergrund abhebt */
  text-shadow: 0 4px 30px rgba(0,0,0,1);
}

.hp-lead {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #e2e8f0;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hp-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hp-btn-primary {
  background: #facc15;
  color: #0f172a;
  padding: 0.8rem 2rem;
  border-radius: 99px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.2s;
}

.hp-btn-primary:hover {
  transform: scale(1.05);
}

.hp-btn-secondary {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 99px;
  font-weight: 600;
  transition: all 0.2s;
}

.hp-btn-secondary:hover {
  background: #fff;
  color: #0f172a;
}

/* -- HP Benefits -- */
.hp-benefits {
  padding: 5rem 0;
  background: #fff;
}
.hp-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.hp-header-center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.benefit-card {
  background: #f8fafc;
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid #e2e8f0;
  transition: transform 0.2s;
}
.benefit-card:hover {
  transform: translateY(-5px);
  border-color: #facc15;
}
.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.benefit-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
  color: #0f172a;
}

/* -- HP Altbau Section -- */
.hp-altbau {
  padding: 5rem 0;
  background: #f1f5f9;
}
.altbau-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.altbau-intro {
  font-size: 1.1rem;
  color: #334155;
  margin-bottom: 1rem;
}
.altbau-check {
  margin-top: 1.5rem;
  list-style: none;
}
.altbau-check li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.8rem;
  font-weight: 500;
}
.altbau-check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #16a34a; /* Grün */
  font-weight: 800;
}

.altbau-visual {
  position: relative;
  height: 400px;
}
.altbau-image {
  width: 100%;
  height: 100%;
  background-image: url('images/houseSchemaMa.png'); /* Wiederverwendetes Bild */
  background-size: cover;
  background-position: center;
  border-radius: 1.5rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.altbau-box {
  position: absolute;
  bottom: 2rem;
  right: -1rem;
  background: #0f172a;
  color: #fff;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
}
.altbau-big {
  font-size: 2rem;
  font-weight: 800;
  color: #facc15;
  line-height: 1;
}
.altbau-desc {
  font-size: 0.8rem;
  opacity: 0.9;
}

/* -- HP Brands -- */
.hp-brands {
  padding: 4rem 0;
  background: #fff;
  text-align: center;
}
.brands-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}
.brand-item {
  padding: 0.8rem 1.5rem;
  border: 1px solid #e2e8f0;
  border-radius: 99px;
  color: #64748b;
  font-weight: 600;
}

/* -- HP Subsidy (Förderung) -- */
.hp-subsidy {
  padding: 5rem 0;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
}
.subsidy-card {
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  border-radius: 2rem;
  padding: 3rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.subsidy-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #facc15;
}
.subsidy-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}
.subsidy-pills .pill {
  background: rgba(255,255,255,0.1);
  padding: 0.6rem 1.2rem;
  border-radius: 99px;
  font-weight: 600;
}
.subsidy-pills .pill.max {
  background: #facc15;
  color: #0f172a;
}
.subsidy-note {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* -- HP Contact -- */
.hp-contact {
  padding: 5rem 0;
  background: #f8fafc;
}
.hp-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.hp-contact-info h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #0f172a;
}
.hp-contact-info p {
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 900px) {
  .benefits-grid, .altbau-layout, .hp-contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .altbau-layout {
    display: flex;
    flex-direction: column-reverse;
  }
  .altbau-box {
    right: 1rem;
    left: 1rem;
    bottom: -2rem;
    text-align: center;
  }
  .hp-hero {
    padding-top: 6rem;
    text-align: center;
  }
}


/* =========================================
   SOLAR PV PAGE STYLES (Video Hero)
   ========================================= */

.pv-video-hero {
  position: relative;
  width: 100%;
  height: 100vh; /* Volle Bildschirmhöhe */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 4rem;
}

/* Video im Hintergrund */
.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Wichtig: Füllt den Screen ohne Verzerrung */
  z-index: -2;
}

/* Dunkles Overlay, damit Schrift lesbar ist */
.pv-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.5); /* Etwas transparenter als bei HP, damit Video wirkt */
  z-index: -1;
  /* Optional: Auch das Overlay kann einfaden, wenn du willst.
     Aktuell ist es permanent da, damit das Video nicht zu grell ist */
}

/* -- Content Animation -- */

.pv-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  padding: 0 1.5rem;
  transition: opacity 2s ease, transform 2s ease; /* Sehr langsam (2s) und smooth */
}

/* Zustand VOR der Animation (unsichtbar) */
.hidden-content {
  opacity: 0;
  transform: translateY(30px); /* Leicht nach unten versetzt */
}

/* Zustand NACH der Animation (sichtbar) */
.visible-content {
  opacity: 1;
  transform: translateY(0);
}

/* -- PV Typo & Buttons (ähnlich HP) -- */
.pv-badge {
  display: inline-block;
  background: #22c55e; /* Solar-Grün statt Gelb */
  color: #fff;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 99px;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 0 15px rgba(34, 197, 94, 0.4);
}

.pv-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  color: #ffffff;
  text-shadow: 0 4px 30px rgba(0,0,0,0.8);
}

.pv-lead {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #f1f5f9;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.pv-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.pv-btn-primary {
  background: #22c55e; /* Grün */
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 99px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.2s;
  box-shadow: 0 5px 20px rgba(34, 197, 94, 0.4);
}
.pv-btn-primary:hover {
  transform: scale(1.05);
}

.pv-btn-secondary {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 99px;
  font-weight: 600;
  transition: all 0.2s;
}
.pv-btn-secondary:hover {
  background: #fff;
  color: #0f172a;
}

/* -- PV Dreamteam Section -- */
.pv-dreamteam {
  padding: 5rem 0;
  background: #f0fdf4; /* Sehr helles Grün */
}
.dreamteam-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.dreamteam-img {
  width: 100%;
  height: 400px;
  background-image: url('images/pvAnlage.jpg'); /* Wiederverwendetes Bild */
  background-size: cover;
  background-position: center;
  border-radius: 1.5rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.dreamteam-list {
  margin-top: 1.5rem;
  list-style: none;
}
.dreamteam-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.8rem;
  color: #334155;
  font-weight: 500;
}
.dreamteam-list li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: 900;
  font-size: 1.2rem;
  top: -0.2rem;
}

/* -- Tech Grid -- */
.pv-tech {
  padding: 5rem 0;
  background: #fff;
  text-align: center;
}
.tech-sub {
  max-width: 600px;
  margin: 0.5rem auto 3rem;
  color: #64748b;
}
.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.tech-card {
  padding: 2rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  text-align: left;
}
.tech-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #0f172a;
}
.tech-card p {
  font-size: 0.9rem;
  color: #475569;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.tech-brand {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Responsive PV */
@media (max-width: 900px) {
  .dreamteam-layout, .tech-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .tech-card {
    text-align: center;
  }
  .pv-video-hero {
    height: 100vh; /* Auf Mobile auch Fullscreen */
  }
}
