@font-face {
  font-family: "Bricolage Grotesque";
  src: url(../fonts/BricolageGrotesque-VariableFont_opsz\,wdth\,wght.ttf);
  font-display: swap;
}
@font-face {
  font-family: "Sora";
  src: url(../fonts/Sora-VariableFont_wght.ttf);
  font-display: swap;
}

:root {
  --bg: #f8f7f4;
  --surface: #ffffff;
  --surface-2: #162416;
  --text: #1a2a1a;
  --text-muted: #5c6b5c;
  --accent: #b8d400;
  --accent-2: #2d6a4f;
  --border: #e0ddd6;
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Sora', sans-serif;
  --fs-display: clamp(2.2rem, 5vw, 3.8rem);
  --fs-h1: clamp(1.9rem, 4vw, 3rem);
  --fs-h2: clamp(1.5rem, 3vw, 2.2rem);
  --fs-h3: clamp(1.15rem, 2vw, 1.4rem);
  --fs-body: clamp(0.92rem, 1.2vw, 1.05rem);
  --fs-small: clamp(0.78rem, 1vw, 0.88rem);
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --radius-sm: 3px;
  --radius-md: 10px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(26, 42, 26, 0.06);
  --shadow-md: 0 8px 32px rgba(26, 42, 26, 0.1);
  --shadow-lg: 0 16px 48px rgba(26, 42, 26, 0.14);
}

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

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

main {
  flex: 1;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

.section--dark {
  background: var(--surface-2);
  color: #eef2ea;
}

.section--surface {
  background: var(--surface);
}

.section-header {
  margin-bottom: var(--space-lg);
}

.section-lead {
  margin-top: var(--space-sm);
  color: var(--text-muted);
  max-width: 640px;
}

.section--dark .section-lead,
.svc-section--dark .section-lead {
  color: #a8bfa8;
}

.overline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-small);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-2);
  margin-bottom: var(--space-sm);
}

.section--dark .overline,
.svc-section--dark .overline {
  color: var(--accent);
}

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 700;
}

h2 {
  font-size: var(--fs-h2);
}

h3 {
  font-size: var(--fs-h3);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  min-height: 44px;
}

.btn--primary {
  background: var(--accent);
  color: var(--surface-2);
  border-color: var(--accent);
}

.btn--primary:hover {
  background: #a3bd00;
  border-color: #a3bd00;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}

.btn--outline:hover {
  background: var(--text);
  color: var(--bg);
}

.btn--outline-light {
  background: transparent;
  color: #eef2ea;
  border-color: rgba(238, 242, 234, 0.4);
}

.btn--outline-light:hover {
  background: rgba(238, 242, 234, 0.1);
  border-color: #eef2ea;
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: var(--space-sm) 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.main-nav-link {
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.3s ease;
  padding: 0.4rem 0;
  position: relative;
}

.main-nav-link:hover,
.main-nav-link--active {
  color: var(--text);
}

.main-nav-link--active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
}

.main-nav-link--cta {
  background: var(--accent);
  color: var(--surface-2);
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.main-nav-link--cta:hover {
  background: #a3bd00;
  color: var(--surface-2);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.burger-line {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s ease;
}

.burger.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: var(--space-sm) var(--space-md) var(--space-md);
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav-link {
  padding: 0.75rem 0;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}

.mobile-nav-link:last-child {
  border-bottom: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(22, 36, 22, 0.92) 0%, rgba(22, 36, 22, 0.7) 50%, rgba(22, 36, 22, 0.5) 100%);
}

.hero-arc {
  position: absolute;
  bottom: -40%;
  right: -10%;
  width: 70%;
  aspect-ratio: 1;
  border: 2px solid rgba(184, 212, 0, 0.2);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: var(--space-xl) 16px;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(184, 212, 0, 0.12);
  border: 1px solid rgba(184, 212, 0, 0.35);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--accent);
}

.hero h1 {
  font-size: var(--fs-display);
  color: #fff;
  max-width: 800px;
  margin-bottom: var(--space-md);
}

.hero-accent {
  color: var(--accent);
}

.hero-sub {
  color: #c8d8c8;
  max-width: 620px;
  margin-bottom: var(--space-md);
  font-size: var(--fs-body);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero-proof-item {
  display: flex;
  flex-direction: column;
}

.hero-proof-item strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
}

.hero-proof-item span {
  font-size: var(--fs-small);
  color: #a8bfa8;
}

.hero-proof-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2);
}

.hero-scroll-hint {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.2rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

.pv-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(238, 242, 234, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(238, 242, 234, 0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.strompreis-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-lg);
  align-items: start;
}

.strompreis-left p {
  margin-bottom: var(--space-sm);
  color: var(--text-muted);
}

.strompreis-left h2 {
  margin-bottom: var(--space-sm);
}

.strompreis-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-md);
}

.strompreis-card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.strompreis-card-row:last-child {
  border-bottom: none;
}

.strompreis-card-row--highlight {
  background: rgba(184, 212, 0, 0.08);
  margin: 0 calc(-1 * var(--space-md));
  padding: 0.75rem var(--space-md);
  border-radius: var(--radius-sm);
}

.strompreis-card-label {
  font-size: var(--fs-small);
  color: var(--text-muted);
}

.strompreis-card-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
}

.strompreis-card-row--highlight .strompreis-card-value {
  color: var(--accent-2);
}

.strompreis-img-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.strompreis-img-wrap img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.strompreis-img-badge {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  background: var(--surface-2);
  color: var(--accent);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: var(--fs-small);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.leistungen-home-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.leistung-h-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leistung-h-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.leistung-h-card--featured {
  border-color: var(--accent);
  background: rgba(184, 212, 0, 0.05);
}

.leistung-h-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--surface-2);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 1rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.leistung-h-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(184, 212, 0, 0.15);
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  line-height: 1;
}

.leistung-h-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(184, 212, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.leistung-h-card h3 {
  margin-bottom: var(--space-xs);
  color: #eef2ea;
}

.leistung-h-card p {
  color: #a8bfa8;
  font-size: var(--fs-small);
  margin-bottom: var(--space-sm);
}

.leistung-h-specs li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-small);
  padding: 0.25rem 0;
  color: #c8d8c8;
}

.leistung-h-specs i {
  color: var(--accent);
  font-size: 0.75rem;
}

.leistung-h-price {
  margin-top: var(--space-sm);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
}

.leistung-h-price span {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 400;
  color: #a8bfa8;
}

.leistungen-home-cta {
  text-align: center;
  margin-top: var(--space-lg);
}

.ablauf-timeline {
  position: relative;
  padding-left: 60px;
}

.ablauf-line {
  position: absolute;
  left: 22px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--accent-2));
}

.ablauf-item {
  position: relative;
  margin-bottom: var(--space-lg);
}

.ablauf-item:last-child {
  margin-bottom: 0;
}

.ablauf-dot {
  position: absolute;
  left: -60px;
  top: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 0 0 6px var(--bg);
}

.ablauf-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-2);
  background: rgba(45, 106, 79, 0.08);
  padding: 0.2rem 0.7rem;
  border-radius: 100px;
  margin-bottom: var(--space-xs);
}

.ablauf-body h3 {
  margin-bottom: var(--space-xs);
}

.ablauf-body p {
  color: var(--text-muted);
  font-size: var(--fs-small);
  max-width: 560px;
}

.ablauf-img {
  margin-top: var(--space-lg);
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.ablauf-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.ablauf-img-tag {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: var(--surface);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: var(--fs-small);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-sm);
}

.ablauf-img-tag i {
  color: var(--accent-2);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.blog-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.blog-card-img {
  position: relative;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}

.blog-card-tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--accent);
  color: var(--surface-2);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.2rem 0.7rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-card-body {
  padding: var(--space-md);
}

.blog-card-body time {
  font-size: var(--fs-small);
  color: var(--text-muted);
}

.blog-card-body h3 {
  font-size: 1.05rem;
  margin: var(--space-xs) 0;
}

.blog-card-body p {
  font-size: var(--fs-small);
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: var(--fs-small);
  color: var(--accent-2);
  transition: gap 0.3s ease;
}

.blog-card-link:hover {
  gap: 0.8rem;
}

.about-teaser-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-lg);
  align-items: center;
}

.about-teaser-img {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.about-teaser-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-teaser-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: var(--surface);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-small);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.about-teaser-badge i {
  color: var(--accent-2);
}

.about-teaser-content h2 {
  margin-bottom: var(--space-sm);
}

.about-teaser-content p {
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

.about-teaser-content .btn {
  margin-top: var(--space-sm);
}

.beratung-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.beratung-info h2 {
  margin-bottom: var(--space-sm);
  color: #eef2ea;
}

.beratung-info > p {
  color: #a8bfa8;
  margin-bottom: var(--space-md);
}

.beratung-points {
  margin-bottom: var(--space-md);
}

.beratung-point {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-weight: 500;
  color: #eef2ea;
}

.beratung-point i {
  color: var(--accent);
  font-size: 1.1rem;
}

.beratung-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.beratung-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.beratung-contact-item i {
  color: var(--accent);
  width: 20px;
}

.beratung-contact-item a {
  font-weight: 500;
  color: #eef2ea;
  transition: color 0.3s ease;
}

.beratung-contact-item a:hover {
  color: var(--accent);
}

.beratung-form-wrap {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-lg);
}

.beratung-form h3 {
  margin-bottom: var(--space-md);
  font-size: 1.3rem;
  color: var(--text);
}

.form-group {
  margin-bottom: var(--space-sm);
}

.form-group label {
  display: block;
  font-size: var(--fs-small);
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  background: var(--bg);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  min-height: 44px;
  color: var(--text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-2);
  box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.12);
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-check input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-height: 20px;
  margin-top: 0.2rem;
  accent-color: var(--accent-2);
}

.form-check label {
  font-size: var(--fs-small);
  font-weight: 400;
  margin-bottom: 0;
}

.form-check a {
  color: var(--accent-2);
  text-decoration: underline;
}

.site-footer {
  background: var(--surface-2);
  color: #a8bfa8;
  padding: var(--space-lg) 0 var(--space-md);
  margin-top: auto;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.logo--footer .logo-name {
  color: #eef2ea;
}

.footer-nav {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: var(--fs-small);
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--accent);
}

.footer-contacts {
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.footer-legal-name {
  font-weight: 700;
  color: #eef2ea;
}

.footer-contacts a {
  transition: color 0.3s ease;
}

.footer-contacts a:hover {
  color: var(--accent);
}

.footer-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-md);
  margin-bottom: var(--space-md);
}

.footer-disclaimer p {
  font-size: 0.85rem;
  color: #6b8a6b;
  line-height: 1.6;
}

.footer-bottom {
  font-size: 0.9rem;
}

.page-hero {
  background: var(--surface-2);
  color: #eef2ea;
  padding: var(--space-xl) 0 var(--space-lg);
  position: relative;
  overflow: hidden;
}

.page-hero-arc {
  position: absolute;
  top: -30%;
  right: -15%;
  width: 50%;
  aspect-ratio: 1;
  border: 2px solid rgba(184, 212, 0, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.page-hero h1 {
  font-size: var(--fs-h1);
  margin-bottom: var(--space-sm);
}

.page-hero p {
  color: #a8bfa8;
  max-width: 640px;
}

.page-hero .overline {
  margin-bottom: var(--space-sm);
  color: var(--accent);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-top: var(--space-md);
}

.fact-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #eef2ea;
  padding: 0.45rem 1rem;
  border-radius: 100px;
  font-size: var(--fs-small);
  font-weight: 500;
}

.fact-chip i {
  color: var(--accent);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
  margin-bottom: var(--space-lg);
}

.about-content img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.about-content h2 {
  margin-bottom: var(--space-sm);
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.about-value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.about-value-card i {
  font-size: 2rem;
  color: var(--accent-2);
  margin-bottom: var(--space-sm);
}

.about-value-card h3 {
  font-size: 1.05rem;
  margin-bottom: var(--space-xs);
}

.about-value-card p {
  font-size: var(--fs-small);
  color: var(--text-muted);
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.about-stat-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  text-align: center;
}

.about-stat-card i {
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: var(--space-xs);
}

.about-stat-value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: #eef2ea;
}

.about-stat-label {
  font-size: var(--fs-small);
  color: #a8bfa8;
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.about-team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  text-align: center;
}

.about-team-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(45, 106, 79, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-sm);
  font-size: 1.5rem;
  color: var(--accent-2);
}

.about-team-card h3 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.about-team-role {
  font-size: var(--fs-small);
  color: var(--accent-2);
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.about-team-card p {
  font-size: var(--fs-small);
  color: var(--text-muted);
}

.about-timeline {
  position: relative;
  padding-left: 40px;
}

.about-timeline-line {
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--accent-2));
}

.about-timeline-item {
  position: relative;
  margin-bottom: var(--space-md);
  padding-left: var(--space-md);
}

.about-timeline-dot {
  position: absolute;
  left: -40px;
  top: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  border: 4px solid var(--bg);
}

.about-timeline-year {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--accent-2);
  font-size: 1.1rem;
}

.about-timeline-item p {
  color: var(--text-muted);
  font-size: var(--fs-small);
}

.leistungen-anchors {
  padding: var(--space-lg) 0 0;
  background: var(--bg);
}

.anchor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
}

.anchor-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.anchor-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-2);
}

.anchor-card--featured {
  border-color: var(--accent-2);
  background: linear-gradient(160deg, var(--surface) 60%, rgba(184, 212, 0, 0.12));
}

.anchor-num {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--border);
}

.anchor-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(45, 106, 79, 0.1);
  color: var(--accent-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.anchor-body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.anchor-body strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.anchor-body span {
  font-size: var(--fs-small);
  color: var(--text-muted);
}

.anchor-price {
  margin-top: auto;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--accent-2);
}

.svc-section {
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.svc-section--surface {
  background: var(--surface);
}

.svc-section--dark {
  background: var(--surface-2);
  color: #eef2ea;
}

.svc-head {
  position: relative;
  margin-bottom: var(--space-lg);
  max-width: 760px;
}

.svc-ghost {
  position: absolute;
  top: -3rem;
  right: -1rem;
  font-family: var(--font-display);
  font-size: clamp(6rem, 14vw, 10rem);
  font-weight: 800;
  color: rgba(45, 106, 79, 0.06);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

.svc-ghost--light {
  color: rgba(184, 212, 0, 0.08);
}

.svc-content {
  position: relative;
}

.svc-content h2,
.svc-content h3,
.svc-head h2 {
  position: relative;
  z-index: 1;
}

.svc-content p {
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

.svc-section--dark .svc-content p,
.svc-section--dark .svc-head p {
  color: #a8bfa8;
}

.svc-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-lg);
  align-items: center;
}

.svc-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-lg);
  align-items: center;
}

.svc-split--reverse {
  grid-template-columns: 0.85fr 1.15fr;
  margin-top: var(--space-lg);
}

.svc-list {
  margin: var(--space-sm) 0 var(--space-md);
}

.svc-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.55rem 0;
  border-bottom: 1px dashed var(--border);
  font-size: var(--fs-body);
}

.svc-section--dark .svc-list li {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.svc-list li:last-child {
  border-bottom: none;
}

.svc-list i {
  color: var(--accent-2);
  margin-top: 0.3rem;
}

.svc-section--dark .svc-list i {
  color: var(--accent);
}

.svc-media {
  position: relative;
}

.svc-img-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.svc-img-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.svc-img-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: var(--surface);
  color: var(--text);
  padding: 0.55rem 1rem;
  border-radius: var(--radius-sm);
  font-size: var(--fs-small);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-sm);
}

.svc-img-badge i {
  color: var(--accent-2);
}

.price-tag-box {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(184, 212, 0, 0.12);
  border: 1px solid rgba(184, 212, 0, 0.5);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
}

.price-tag-amount {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-2);
}

.price-tag-unit {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
}

.price-tag-note {
  font-size: var(--fs-small);
  color: var(--text-muted);
  max-width: 220px;
}

.svc-flag {
  display: inline-block;
  background: var(--accent);
  color: var(--surface-2);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.9rem;
  border-radius: 100px;
  margin-bottom: var(--space-xs);
}

.pkg-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.pkg-table th,
.pkg-table td {
  padding: 0.9rem 1rem;
  text-align: left;
  font-size: var(--fs-small);
}

.pkg-table thead th {
  background: var(--accent-2);
  color: #eef2ea;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.75rem;
}

.pkg-table tbody td {
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}

.pkg-table tbody tr:last-child td {
  border-bottom: none;
}

.pkg-row--featured td {
  background: rgba(184, 212, 0, 0.14);
  font-weight: 600;
  color: var(--text);
}

.pkg-kwp {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text);
}

.pkg-row--featured .pkg-kwp {
  color: var(--accent-2);
}

.pkg-price {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--accent-2);
}

.svc-table-note {
  font-size: var(--fs-small);
  color: #8fa58f;
  margin: var(--space-sm) 0 var(--space-md);
}

.included-chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.included-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #dfe8df;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  font-size: var(--fs-small);
}

.included-chip i {
  color: var(--accent);
}

.autarkie-panel {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-bottom: var(--space-lg);
}

.autarkie-item {
  flex: 1;
}

.autarkie-label {
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.autarkie-track {
  height: 14px;
  background: var(--border);
  border-radius: 100px;
  overflow: hidden;
}

.autarkie-fill {
  height: 100%;
  border-radius: 100px;
}

.autarkie-fill--low {
  background: var(--text-muted);
}

.autarkie-fill--high {
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
}

.autarkie-value {
  font-size: var(--fs-small);
  color: var(--text-muted);
  margin-top: 0.4rem;
}

.autarkie-arrow {
  color: var(--accent-2);
  font-size: 1.4rem;
}

.storage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.storage-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.storage-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.storage-card--featured {
  border-color: var(--accent-2);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.storage-flag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-2);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 1rem;
  border-radius: 100px;
}

.storage-size {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
}

.storage-price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-2);
  margin-bottom: var(--space-xs);
}

.storage-for {
  font-size: var(--fs-small);
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

.storage-specs li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-small);
  padding: 0.3rem 0;
  color: var(--text-muted);
}

.storage-specs i {
  color: var(--accent-2);
  font-size: 0.75rem;
}

.kosten-chart {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.kosten-row {
  display: grid;
  grid-template-columns: 240px 1fr 60px;
  align-items: center;
  gap: var(--space-sm);
}

.kosten-label {
  font-size: var(--fs-small);
  color: #c8d8c8;
  text-align: right;
}

.kosten-track {
  height: 26px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.kosten-fill {
  display: block;
  height: 100%;
  border-radius: var(--radius-sm);
}

.kosten-fill--a {
  background: var(--accent);
}

.kosten-fill--b {
  background: var(--accent-2);
}

.kosten-pct {
  font-family: var(--font-display);
  font-weight: 700;
  color: #eef2ea;
}

.kosten-footnote {
  font-size: var(--fs-small);
  color: #8fa58f;
  margin-top: var(--space-md);
  max-width: 720px;
}

.kf-w45 { width: 45%; }
.kf-w18 { width: 18%; }
.kf-w13 { width: 13%; }
.kf-w10 { width: 10%; }
.kf-w8 { width: 8%; }
.kf-w6 { width: 6%; }
.kf-w30 { width: 30%; }
.kf-w70 { width: 70%; }

.pay-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.pay-step {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  position: relative;
  overflow: hidden;
}

.pay-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.pay-pct {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--accent-2);
  line-height: 1;
}

.pay-step-body strong {
  display: block;
  font-size: var(--fs-body);
  margin-bottom: 0.3rem;
}

.pay-step-body span {
  font-size: var(--fs-small);
  color: var(--text-muted);
}

.pay-methods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

.pay-method {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
}

.pay-method i {
  color: var(--accent-2);
  font-size: 1.4rem;
  margin-top: 0.2rem;
  width: 24px;
}

.pay-method span {
  font-size: var(--fs-small);
  color: var(--text-muted);
}

.pay-method strong {
  display: block;
  color: var(--text);
  font-size: var(--fs-body);
  margin-bottom: 0.2rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: var(--space-md);
}

.faq-item h3 {
  font-size: 1.05rem;
  margin-bottom: var(--space-xs);
}

.faq-item p {
  font-size: var(--fs-small);
  color: var(--text-muted);
}

.cta-panel {
  background: var(--surface-2);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  position: relative;
  overflow: hidden;
}

.cta-panel::before {
  content: '';
  position: absolute;
  right: -10%;
  top: -60%;
  width: 320px;
  aspect-ratio: 1;
  border: 2px solid rgba(184, 212, 0, 0.2);
  border-radius: 50%;
  pointer-events: none;
}

.cta-panel-text h3 {
  color: #eef2ea;
  font-size: var(--fs-h3);
  margin-bottom: var(--space-xs);
}

.cta-panel-text p {
  color: #a8bfa8;
  font-size: var(--fs-body);
  max-width: 480px;
}

.article-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-lg) var(--space-md);
}

.article-content h2 {
  font-size: 1.5rem;
  margin: var(--space-lg) 0 var(--space-sm);
}

.article-content h3 {
  font-size: 1.25rem;
  margin: var(--space-md) 0 var(--space-xs);
}

.article-content p {
  margin-bottom: var(--space-sm);
  color: var(--text);
}

.article-content ul {
  margin: var(--space-sm) 0;
  padding-left: 1.5rem;
}

.article-content ul li {
  list-style: disc;
  margin-bottom: 0.4rem;
  color: var(--text-muted);
}

.article-meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--border);
  font-size: var(--fs-small);
  color: var(--text-muted);
  flex-wrap: wrap;
}

.article-stat-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: var(--space-md);
  margin: var(--space-md) 0;
}

.article-stat-box strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--accent-2);
  margin-bottom: 0.25rem;
}

.article-stat-box span {
  font-size: var(--fs-small);
  color: var(--text-muted);
}

.article-cta {
  background: var(--surface-2);
  color: #eef2ea;
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  text-align: center;
  margin-top: var(--space-lg);
}

.article-cta h3 {
  color: #eef2ea;
  margin-bottom: var(--space-sm);
}

.article-cta p {
  color: #a8bfa8;
  margin-bottom: var(--space-md);
}

.article-img-full {
  width: 100%;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  height: 300px;
  object-fit: cover;
}

.thanks-wrap {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl) var(--space-md);
  background: var(--bg);
}

.thanks-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  max-width: 600px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.thanks-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.thanks-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(45, 106, 79, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  font-size: 2rem;
  color: var(--accent-2);
}

.thanks-card h1 {
  font-size: 1.8rem;
  margin-bottom: var(--space-sm);
}

.thanks-text {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.thanks-steps {
  text-align: left;
  margin-bottom: var(--space-md);
}

.thanks-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.thanks-step:last-child {
  border-bottom: none;
}

.thanks-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.thanks-step p {
  font-size: var(--fs-small);
  color: var(--text-muted);
}

.thanks-step strong {
  color: var(--text);
}

.thanks-contacts {
  text-align: left;
  margin-bottom: var(--space-md);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--border);
}

.thanks-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.4rem 0;
}

.thanks-contact-item i {
  color: var(--accent-2);
  width: 20px;
}

.thanks-contact-item a {
  font-weight: 500;
  transition: color 0.3s ease;
}

.thanks-contact-item a:hover {
  color: var(--accent-2);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.legal-content h1 {
  font-size: 2rem;
  margin-bottom: var(--space-md);
}

.legal-content h2 {
  font-size: 1.5rem;
  margin: var(--space-lg) 0 var(--space-sm);
  padding-bottom: var(--space-xs);
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

.legal-content h3 {
  font-size: 1.2rem;
  margin: var(--space-md) 0 var(--space-xs);
}

.legal-content p {
  margin-bottom: var(--space-sm);
  line-height: 1.7;
}

.legal-content ul {
  margin: var(--space-sm) 0 var(--space-sm) 1.5rem;
}

.legal-content ul li {
  list-style: disc;
  margin-bottom: 0.4rem;
}

.legal-callout {
  background: rgba(184, 212, 0, 0.06);
  border: 1px solid rgba(184, 212, 0, 0.3);
  border-radius: var(--radius-sm);
  padding: var(--space-md);
  margin: var(--space-md) 0;
}

.legal-callout strong {
  color: var(--accent-2);
}

.legal-update {
  font-size: var(--fs-small);
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.legal-section-alt {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin: var(--space-md) 0;
  border: 1px solid var(--border);
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }

  .burger {
    display: flex;
  }

  .strompreis-layout {
    grid-template-columns: 1fr;
  }

  .leistungen-home-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .about-teaser-grid {
    grid-template-columns: 1fr;
  }

  .beratung-grid {
    grid-template-columns: 1fr;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .about-stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-team-grid {
    grid-template-columns: 1fr;
  }

  .anchor-grid {
    grid-template-columns: 1fr 1fr;
  }

  .svc-grid,
  .svc-split,
  .svc-split--reverse {
    grid-template-columns: 1fr;
  }

  .svc-split--reverse .svc-media {
    order: -1;
  }

  .storage-grid {
    grid-template-columns: 1fr;
  }

  .pay-steps {
    grid-template-columns: 1fr;
  }

  .pay-methods {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .kosten-row {
    grid-template-columns: 140px 1fr 50px;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 6vw, 2.8rem);
  }
}
.header-text:hover {
  background: var(--accent);
    color: var(--surface-2);
}
@media (max-width: 640px) {
  body {
    word-break: break-word;
  }
  .logo-name {
    display: none;
  }
    .cta-panel, .thanks-card, .article-cta {
      padding: var(--space-md);
    }
    .preis-table {
      display: none;
    }
  .about-stats-grid {
    grid-template-columns: 1fr;
  }

  .anchor-grid {
    grid-template-columns: 1fr;
  }

  .autarkie-panel {
    flex-direction: column;
    align-items: stretch;
  }

  .autarkie-arrow {
    transform: rotate(90deg);
    text-align: center;
  }

  .kosten-row {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }

  .kosten-label {
    text-align: left;
  }

  .hero-chips {
    flex-direction: column;
  }

  .hero-proof {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-proof-divider {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-nav {
    flex-direction: column;
    gap: var(--space-xs);
  }

  .footer-contacts {
    font-size: 0.85rem;
  }

  .footer-disclaimer p {
    font-size: 0.8rem;
  }

  .ablauf-timeline {
    padding-left: 50px;
  }

  .ablauf-dot {
    left: -50px;
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }

  .ablauf-line {
    left: 17px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    animation: none !important;
    transition: none !important;
  }
}