﻿:root {
  --green-900: #102f45;
  --green-700: #176b88;
  --green-100: #e7f4f8;
  --green-050: #f3fafc;
  --orange: #f0b429;
  --cta: #f5c542;
  --cta-dark: #d99500;
  --orange-100: #fff6d8;
  --ink: #17211f;
  --muted: #65736e;
  --line: #d8e6eb;
  --surface: #ffffff;
  --page: #f4f8fa;
  --shadow: 0 10px 24px rgba(16, 47, 69, 0.08);
  --radius: 10px;
  --radius-sm: 7px;
  --cream: #f5f8fa;
  --energy-dark: #0b2538;
  --energy-mid: #12627c;
  --energy-accent: #f5c542;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px 28px;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 0;
  padding: 0;
  display: block;
  color: white;
  background: linear-gradient(135deg, var(--energy-dark) 0%, var(--energy-mid) 100%);
  border-bottom: 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  backdrop-filter: none;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: white;
  text-decoration: none;
  font-size: 1.28rem;
  font-weight: 900;
  white-space: nowrap;
}

.brand span span {
  color: var(--energy-accent);
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  color: white;
  color: var(--energy-dark);
  background: white;
  font-weight: 900;
}

.brand-mark::before,
.brand-mark::after {
  content: none;
}

.top-nav {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 4px;
  flex: 1 1 auto;
}

.top-nav a {
  padding: 6px 12px;
  color: rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
}

.top-nav a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.18);
}

.nav-more {
  position: relative;
}

.nav-more-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  color: rgba(255, 255, 255, 0.85);
  background: transparent;
  border: 0;
  border-radius: 20px;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
}

.nav-more:hover .nav-more-btn,
.nav-more:focus-within .nav-more-btn {
  color: white;
  background: rgba(255, 255, 255, 0.18);
}

.nav-more-menu {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 200;
  min-width: 210px;
  padding: 10px 6px 6px;
  background: #071b2a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.18s, transform 0.18s;
}

.nav-more:hover .nav-more-menu,
.nav-more:focus-within .nav-more-menu,
.nav-more-menu.menu-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-more-menu a {
  display: block;
  padding: 8px 14px;
  border-radius: 6px;
}

.site-search {
  position: relative;
  flex: 0 1 230px;
  min-width: 0;
}

.site-search-field {
  position: relative;
  display: flex;
  align-items: center;
}

.site-search-icon::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 12px;
  height: 12px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  transform: translateY(-55%);
}

.site-search-icon::after {
  content: "";
  position: absolute;
  left: 26px;
  top: 24px;
  width: 7px;
  height: 2px;
  background: rgba(255, 255, 255, 0.72);
  transform: rotate(45deg);
  transform-origin: left center;
}

.site-search-input {
  width: 100%;
  height: 40px;
  padding: 0 38px 0 40px;
  color: white;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  outline: none;
  font: inherit;
  font-size: 0.92rem;
}

.site-search-input::placeholder {
  color: rgba(255, 255, 255, 0.74);
}

.site-search-input:focus {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.48);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.12);
}

.site-search-clear {
  position: absolute;
  right: 8px;
  width: 24px;
  height: 24px;
  border: 0;
  border-radius: 50%;
  color: white;
  background: rgba(255, 255, 255, 0.16);
  cursor: pointer;
}

.site-search-results {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(420px, calc(100vw - 30px));
  max-height: min(70vh, 520px);
  overflow-y: auto;
  padding: 8px;
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(18, 33, 31, 0.18);
}

.site-search-result {
  display: grid;
  gap: 2px;
  padding: 11px 12px;
  border-radius: var(--radius-sm);
  color: inherit;
  text-decoration: none;
}

.site-search-result:hover,
.site-search-result:focus {
  background: var(--green-100);
}

.site-search-result span {
  color: var(--green-700);
  font-size: 0.68rem;
  font-weight: 850;
  text-transform: uppercase;
}

.site-search-result strong {
  color: var(--green-900);
  line-height: 1.2;
}

.site-search-result small,
.site-search-empty {
  color: var(--muted);
}

.hero {
  max-width: 1100px;
  margin: 24px auto 20px;
  padding: 38px 42px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 34px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(234, 245, 239, 0.97), rgba(255, 255, 255, 0.98)),
    url("../assets/img/hero-strom-sparen.webp") right center / cover no-repeat;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.home-hero {
  position: relative;
  max-width: 1100px;
  margin: 24px auto 18px;
  padding: clamp(26px, 4vw, 46px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: clamp(22px, 4vw, 40px);
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 12%, rgba(245, 197, 66, 0.24), transparent 31%),
    linear-gradient(135deg, #f7fbf8 0%, #ffffff 48%, #e7f4f8 100%);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(16, 47, 69, 0.10);
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(18, 98, 124, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 98, 124, 0.055) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.85), transparent);
  pointer-events: none;
}

.home-hero > * {
  position: relative;
  z-index: 1;
}

.home-hero .hero-content h1 {
  color: var(--energy-dark);
  font-size: clamp(2.15rem, 4.8vw, 4rem);
  line-height: 0.98;
}

.home-hero .hero-copy {
  max-width: 650px;
  color: #435651;
}

.hero-photo-card {
  min-width: 0;
  overflow: hidden;
  background: #082638;
  border: 1px solid rgba(18, 98, 124, 0.18);
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(16, 47, 69, 0.16);
}

.hero-photo-card img {
  width: 100%;
  aspect-ratio: 1.38 / 1;
  display: block;
  object-fit: cover;
}

.hero-photo-card div {
  padding: 18px 20px 20px;
  color: white;
  background: linear-gradient(135deg, #09283b, #12627c);
}

.hero-photo-card span {
  color: var(--energy-accent);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-photo-card strong {
  display: block;
  margin: 4px 0 6px;
  font-size: 1.25rem;
}

.hero-photo-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.camping-style-hero {
  position: relative;
  max-width: 1100px;
  min-height: 320px;
  margin: 0 auto 44px;
  padding: 56px 24px 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  color: white;
  overflow: hidden;
  border: 0;
  border-radius: 0 0 18px 18px;
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.13);
  background: linear-gradient(135deg, var(--energy-dark) 0%, var(--energy-mid) 100%);
}

.camping-style-hero .hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(7, 27, 42, 0.91), rgba(18, 98, 124, 0.82)),
    url("../assets/img/hero-strom-sparen.webp") center / cover no-repeat;
  opacity: 1;
}

.camping-style-hero > *:not(.hero-bg) {
  position: relative;
  z-index: 1;
}

.camping-style-hero h1 {
  max-width: 820px;
  margin: 0;
  color: white;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.12;
}

.camping-style-hero p {
  max-width: 1100px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  color: white;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  color: #1b2600;
  background: var(--energy-accent);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  text-decoration: none;
  font-weight: 900;
}

.hero-cta-btn:hover {
  background: #ffd766;
  transform: translateY(-1px);
}

.section-title {
  margin: 0 0 8px;
  color: var(--energy-dark);
  font-size: clamp(1.65rem, 2.6vw, 2.15rem);
  text-align: center;
}

.section-sub {
  max-width: 680px;
  margin: 0 auto 24px;
  color: var(--muted);
  text-align: center;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 18px;
  margin-bottom: 44px;
}

.card {
  position: relative;
  min-height: 190px;
  padding: 24px 20px;
  color: inherit;
  background: white;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  text-decoration: none;
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(18, 98, 124, 0.32);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.card-grid .card:nth-child(-n + 5) {
  border-top: 4px solid var(--energy-accent);
}

.card-icon {
  display: inline-grid;
  min-width: 48px;
  height: 44px;
  margin-bottom: 16px;
  padding: 0 10px;
  place-items: center;
  color: #112331;
  background: linear-gradient(135deg, #ffe889, #f2bd23);
  border: 1px solid rgba(159, 112, 0, 0.18);
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(242, 189, 35, 0.22);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.card h3 {
  margin: 0 0 8px;
  color: var(--energy-dark);
  font-size: 1.1rem;
}

.card p {
  margin: 0;
  color: #555;
  font-size: 0.94rem;
}

.card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 4px 9px;
  color: white;
  background: var(--energy-mid);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
}

.quick-calc-section {
  margin: 18px 0 46px;
  padding: 28px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 24px;
  align-items: center;
  background: #eaf6fa;
  border: 1px solid #cfe7ef;
  border-radius: 14px;
}

.quick-calc-section .hero-tool {
  width: 100%;
  max-width: none;
  margin: 0;
}

.compact-head {
  margin: 0;
  text-align: left;
}

.compact-head h2 {
  margin: 0 0 8px;
  color: var(--energy-dark);
}

.compact-head p {
  margin: 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 20px;
  margin-bottom: 46px;
}

.blog-card {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  padding: 0 0 22px;
  color: inherit;
  background: white;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  text-decoration: none;
  transition: transform 0.18s, box-shadow 0.18s;
}

.blog-card-img {
  width: 100%;
  height: 168px;
  display: block;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
  background: #e7f4f8;
}

.feature-card > .blog-card-img {
  width: calc(100% + 40px);
  margin: -22px -20px 14px;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.blog-card-tag {
  width: fit-content;
  margin: 18px 22px 12px;
  padding: 4px 9px;
  color: var(--energy-dark);
  background: #e5f3f8;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-card h3 {
  margin: 0 22px 8px;
  color: var(--energy-dark);
  font-size: 1.08rem;
}

.blog-card p {
  margin: 0 22px 16px;
  color: #555;
}

.blog-card-arrow {
  margin: auto 22px 0;
  color: #b57400;
  font-weight: 900;
}

.article-main-img {
  width: min(100%, 980px);
  max-height: 430px;
  display: block;
  object-fit: cover;
  margin: -18px auto 26px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.article-hero {
  max-width: 1100px;
  margin: 26px auto 22px;
  padding: 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(18, 60, 51, 0.04);
}

.article-hero-img {
  width: 100%;
  max-height: 430px;
  display: block;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: var(--radius);
  background: var(--green-100);
}

.article-tag {
  width: fit-content;
  margin-bottom: 12px;
  padding: 5px 10px;
  color: var(--energy-dark);
  background: #fff6d8;
  border: 1px solid #ead18b;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.article-hero h1 {
  margin: 0 0 10px;
  color: var(--energy-dark);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.04;
}

.article-meta,
.blog-card-meta {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.tldr-label {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 4px 9px;
  color: #261400;
  background: linear-gradient(135deg, #ffe889, #f2bd23);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.decision-box,
.aff-toplist {
  margin: 24px 0;
  padding: 22px;
  background: #f7fbf8;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.decision-box h2 {
  margin-top: 0;
}

.decision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
}

.decision-card {
  padding: 16px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.decision-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--energy-dark);
}

.decision-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.aff-toplist-head,
.aff-toplist-foot {
  color: var(--energy-dark);
  font-weight: 900;
}

.aff-toplist-head {
  margin-bottom: 14px;
  font-size: 1.08rem;
}

.aff-toplist-foot {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.86rem;
}

.aff-toplist-row {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.aff-toplist-row.featured {
  margin: 0 -10px;
  padding: 18px 10px;
  background: white;
  border: 1px solid #ead18b;
  border-radius: var(--radius);
}

.aff-rank {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #261400;
  background: linear-gradient(135deg, #ffe889, #f2bd23);
  border-radius: 50%;
  font-weight: 900;
}

.aff-info h4 {
  margin: 6px 0;
  color: var(--energy-dark);
  font-size: 1rem;
}

.aff-badge {
  display: inline-flex;
  padding: 3px 8px;
  color: white;
  background: var(--energy-mid);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.aff-badge.value {
  background: #5f7f1d;
}

.aff-badge.smart {
  background: #7a4309;
}

.aff-specs {
  color: var(--muted);
  font-size: 0.9rem;
}

.aff-buy {
  display: grid;
  gap: 8px;
  justify-items: end;
}

.aff-price {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.btn-aff {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 9px 13px;
  color: #261400;
  background: linear-gradient(135deg, #ffe889, #f2bd23);
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 900;
}

.blog-intro {
  max-width: 1100px;
  margin: 0 auto 28px;
  padding: 24px;
  color: #435651;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(18, 60, 51, 0.04);
}

.blog-intro p {
  margin: 0 0 12px;
}

.blog-intro p:last-child {
  margin-bottom: 0;
}

.info-section {
  margin: 46px 0;
  padding: 30px;
  background: white;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.info-section h2,
.info-section h3 {
  color: var(--energy-dark);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
  margin: 24px 0;
}

.stats-grid div {
  padding: 16px;
  text-align: center;
  background: #f1f7fa;
  border-radius: 10px;
}

.stats-grid strong {
  display: block;
  color: var(--energy-dark);
  font-size: 1.55rem;
}

.stats-grid span {
  color: #666;
  font-size: 0.88rem;
}

.hero-content {
  max-width: 690px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero h1,
.hero-content h1 {
  margin: 0 0 14px;
  color: var(--green-900);
  font-size: clamp(2.05rem, 3.5vw, 3.35rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-content h1 span {
  display: block;
}

.hero-copy {
  max-width: 620px;
  margin: 0 0 24px;
  color: #3f4f4a;
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-proof {
  margin: 12px 0 0;
  color: #41524d;
  font-size: 0.94rem;
  font-weight: 750;
}

.social-proof::before {
  content: "★";
  margin-right: 7px;
  color: var(--cta);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 0;
  border-radius: var(--radius-sm);
  font: inherit;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.btn.primary {
  color: #261400;
  background: linear-gradient(135deg, #f4bd29, var(--cta));
  box-shadow: 0 12px 22px rgba(227, 160, 8, 0.24);
}

.btn.primary:hover {
  background: linear-gradient(135deg, #f7c948, var(--cta-dark));
  transform: translateY(-1px);
}

.btn.secondary {
  color: var(--green-900);
  background: linear-gradient(135deg, #ffffff, #fff2bf);
  border: 2px solid var(--cta);
}

.btn.secondary span {
  margin-left: 7px;
  font-weight: 900;
}

.hero-points {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-points span {
  position: relative;
  padding: 10px 12px 10px 34px;
  color: var(--green-900);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #cfe0d9;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 750;
}

.hero-points span::before {
  content: "✓";
  position: absolute;
  left: 11px;
  top: 50%;
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--green-700);
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 900;
  transform: translateY(-50%);
}

.hero-tool {
  min-width: 0;
  padding: 22px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(18, 60, 51, 0.08);
}

.tool-title {
  display: grid;
  gap: 2px;
  margin-bottom: 14px;
}

.tool-title span {
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tool-title strong {
  color: var(--green-900);
  font-size: 1.15rem;
}

.tool-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  cursor: text;
}

.tool-line span {
  min-width: 0;
  color: var(--muted);
}

.tool-line b {
  min-width: 0;
  text-align: right;
}

.tool-line input {
  width: 74px;
  min-height: 34px;
  padding: 5px 7px;
  color: var(--green-900);
  background: #f8fcfa;
  border: 1px solid transparent;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  font: inherit;
  font-weight: 850;
  text-align: right;
}

.tool-line:hover input,
.tool-line input:focus,
.tool-line input.is-edit-hint {
  background: white;
  border-color: #95b9ad;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05), 0 0 0 3px rgba(35, 107, 88, 0.10);
  outline: none;
}

.tool-result {
  margin: 18px 0;
  min-height: 146px;
  padding: 17px;
  display: grid;
  align-content: center;
  gap: 7px;
  color: white;
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
  border-radius: var(--radius);
}

.result-heading {
  display: block;
}

.result-heading span,
.tool-result span {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 750;
}

.tool-result strong {
  color: white;
  font-size: 2.65rem;
  line-height: 1;
  transition: transform 0.16s ease, opacity 0.16s ease;
}

.tool-result strong.is-updating {
  transform: translateY(-2px) scale(1.04);
  opacity: 0.88;
}

.tool-result small {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.tool-next-step {
  margin: -4px 0 14px;
  padding: 12px 13px;
  color: #3f2c05;
  background: #fff6d8;
  border: 1px solid #ecd28a;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 750;
}

.tool-next-step[hidden] {
  display: none;
}

.tool-next-step a {
  color: #7a4309;
  font-weight: 900;
}

.cost-gauge {
  height: 9px;
  margin: 9px 0 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 999px;
}

.cost-gauge i {
  display: block;
  width: 40%;
  height: 100%;
  background: var(--cta);
  border-radius: inherit;
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-tool[data-cost-level="low"] .cost-gauge i {
  background: #86efac;
}

.hero-tool[data-cost-level="medium"] .cost-gauge i {
  background: var(--cta);
}

.hero-tool[data-cost-level="high"] .cost-gauge i {
  background: #fb7185;
}

.hero-tool a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  color: #261400;
  background: linear-gradient(135deg, #fff1bc, #f4bd29);
  border: 1px solid var(--cta);
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 850;
}

.hero-badge,
.hero-quickstart,
.hero-metrics,
.hero-panel {
  display: none;
}

.benefit-strip,
.trust-strip {
  max-width: 1100px;
  margin: 0 auto 16px;
}

.benefit-strip {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 12px 18px;
  color: var(--green-900);
  background: linear-gradient(135deg, #ffffff, #fff6d8);
  border: 1px solid #ecd28a;
  border-radius: var(--radius);
}

.benefit-strip strong {
  color: #7a4309;
}

.benefit-strip span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  white-space: nowrap;
}

.benefit-strip img {
  width: 36px;
  height: 36px;
  display: block;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(18, 60, 51, 0.10);
}

.home-priority {
  max-width: 1100px;
  margin: 0 auto 34px;
  padding: 28px;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 24px;
  align-items: stretch;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 12px 34px rgba(16, 47, 69, 0.08);
}

.priority-lead h2,
.link-hub h2 {
  margin: 0 0 10px;
  color: var(--energy-dark);
  font-size: clamp(1.55rem, 2.6vw, 2.2rem);
  line-height: 1.12;
}

.priority-lead p,
.link-hub p {
  margin: 0;
  color: var(--muted);
}

.priority-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.priority-card {
  min-height: 210px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: inherit;
  background: #f6fbfc;
  border: 1px solid #d9ecf1;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}

.priority-card:hover {
  transform: translateY(-3px);
  border-color: rgba(18, 98, 124, 0.42);
  box-shadow: 0 10px 28px rgba(16, 47, 69, 0.12);
}

.priority-card span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #112331;
  background: var(--energy-accent);
  border-radius: 50%;
  font-weight: 900;
}

.priority-card strong {
  color: var(--energy-dark);
  font-size: 1.08rem;
  line-height: 1.2;
}

.priority-card p {
  margin: 0;
  color: #51615d;
  font-size: 0.95rem;
}

.priority-card em {
  margin-top: auto;
  color: #a06400;
  font-style: normal;
  font-weight: 900;
}

.primary-priority {
  background: linear-gradient(135deg, #fff7db, #ffffff);
  border-color: rgba(240, 180, 41, 0.5);
}

.link-hub {
  margin: -12px 0 42px;
  padding: 28px;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 24px;
  align-items: start;
  background: #0b2538;
  border-radius: 16px;
  box-shadow: 0 16px 38px rgba(11, 37, 56, 0.14);
}

.link-hub h2,
.link-hub .eyebrow {
  color: white;
}

.link-hub p {
  color: rgba(255, 255, 255, 0.72);
}

.link-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.link-hub-grid a {
  min-height: 112px;
  padding: 18px;
  display: grid;
  gap: 6px;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.18s, transform 0.18s;
}

.link-hub-grid a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
}

.link-hub-grid strong {
  color: var(--energy-accent);
  line-height: 1.2;
}

.link-hub-grid span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
}

.funnel-section,
.next-links-section,
.blog-category-section {
  max-width: 1100px;
  margin: 0 auto 24px;
  padding: 30px 28px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(18, 60, 51, 0.04);
}

.funnel-grid,
.next-link-grid,
.blog-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.funnel-grid a,
.next-link-grid a,
.blog-category-grid article {
  position: relative;
  min-height: 176px;
  padding: 20px;
  color: inherit;
  background: #fbfdfc;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform 0.16s, box-shadow 0.16s, border-color 0.16s;
}

.funnel-grid a:hover,
.next-link-grid a:hover,
.blog-category-grid article:hover {
  transform: translateY(-2px);
  border-color: rgba(18, 98, 124, 0.35);
  box-shadow: var(--shadow);
}

.funnel-grid span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #261400;
  background: linear-gradient(135deg, #ffe889, #f2bd23);
  border-radius: 999px;
  font-weight: 900;
}

.funnel-grid h3,
.next-link-grid strong,
.blog-category-grid h3 {
  display: block;
  margin: 12px 0 8px;
  color: var(--energy-dark);
  font-size: 1.08rem;
  line-height: 1.18;
}

.funnel-grid p,
.next-link-grid small,
.blog-category-grid p {
  display: block;
  margin: 0 0 12px;
  color: var(--muted);
}

.funnel-grid em,
.blog-category-grid a,
.next-link-grid span {
  color: #8a4d05;
  font-style: normal;
  font-weight: 900;
}

.next-link-grid a {
  min-height: 130px;
}

.next-link-grid span,
.blog-category-grid span {
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-category-grid article {
  min-height: 220px;
}

.blog-category-grid a {
  display: block;
  margin-top: 8px;
}

.trust-strip {
  margin-bottom: 22px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.trust-strip a {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr 28px;
  gap: 2px 12px;
  align-items: center;
  min-height: 108px;
  padding: 22px;
  text-decoration: none;
  border-right: 1px solid var(--line);
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}

.trust-strip a:hover {
  z-index: 2;
  background: #fbfdfc;
  border-color: #bdd3ca;
  box-shadow: 0 12px 26px rgba(18, 60, 51, 0.10);
  transform: translateY(-2px) scale(1.01);
}

.trust-strip i {
  grid-row: span 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--green-900);
  background: var(--green-100);
  border-radius: 10px;
  font-style: normal;
  font-weight: 900;
  font-size: 1.15rem;
}

.trust-strip strong,
.trust-strip span {
  grid-column: 2;
}

.trust-strip strong {
  align-self: end;
}

.trust-strip span {
  align-self: start;
}

.trust-strip em {
  grid-column: 3;
  grid-row: 1 / span 2;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  justify-self: end;
  color: #261400;
  background: linear-gradient(135deg, #f4bd29, var(--cta));
  border-radius: 50%;
  font-style: normal;
  font-weight: 900;
  transition: transform 0.16s ease;
}

.trust-strip a:hover em {
  transform: translateX(2px);
}

.trust-strip a:nth-child(2n) {
  border-right: 0;
}

.trust-strip a:nth-child(n + 3) {
  border-top: 1px solid var(--line);
}

.trust-strip strong {
  color: var(--green-900);
}

.trust-strip span {
  color: var(--muted);
  font-size: 0.92rem;
}

.category-rail,
.method-section {
  max-width: 1100px;
  margin: 0 auto 28px;
  display: grid;
  gap: 16px;
}

.category-rail {
  grid-template-columns: repeat(3, 1fr);
}

.category-rail a {
  min-height: 104px;
  padding: 20px;
  color: var(--ink);
  text-decoration: none;
  background: white;
  border: 1px solid var(--line);
  border-left: 5px solid var(--green-700);
  border-radius: var(--radius);
  box-shadow: 0 3px 10px rgba(18, 60, 51, 0.04);
}

.category-rail a:nth-child(2) {
  border-left-color: var(--orange);
}

.category-rail a:nth-child(3) {
  border-left-color: #3b78b8;
}

.category-rail b {
  display: block;
  margin-bottom: 5px;
  color: var(--green-900);
  font-size: 1.08rem;
}

.category-rail span {
  color: var(--muted);
}

.content-section,
.partners,
.seo-text,
.calculator-section {
  max-width: 1100px;
  margin: 0 auto 28px;
  padding: 32px 28px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(18, 60, 51, 0.04);
}

.content-section.dark {
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
}

.section-head {
  max-width: 760px;
  margin: 0 auto 24px;
  text-align: center;
}

.section-head h2 {
  margin: 0 0 9px;
  color: var(--green-900);
  font-size: clamp(1.55rem, 2.8vw, 2.35rem);
  line-height: 1.12;
}

.section-head p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}

.content-section.dark .section-head p:not(.eyebrow),
.content-section.dark .feature-card p {
  color: var(--muted);
}

.feature-grid,
.partner-grid,
.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(235px, 1fr));
  gap: 14px;
}

.feature-card,
.partner-card {
  display: flex;
  flex-direction: column;
  min-height: 176px;
  padding: 20px;
  color: inherit;
  text-decoration: none;
  background: #fbfdfc;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.16s, box-shadow 0.16s, border-color 0.16s;
}

.feature-card:hover,
.partner-card:hover {
  transform: translateY(-2px);
  border-color: #bdd3ca;
  box-shadow: var(--shadow);
}

.content-section.dark .feature-card {
  background: #fbfdfc;
  border-color: var(--line);
}

.card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  margin: -4px 0 16px;
  border-radius: var(--radius-sm);
  background: var(--green-100);
}

.content-section.dark .feature-card .card-img {
  aspect-ratio: 1.35 / 1;
  max-height: 190px;
}

.feature-card span,
.partner-card span,
.article-grid span {
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-card h3,
.partner-card h3 {
  margin: 8px 0;
  color: var(--green-900);
  line-height: 1.18;
}

.feature-card p,
.partner-card p {
  margin: 0;
  color: var(--muted);
}

.read-time {
  margin-top: auto;
  padding-top: 14px;
  color: #7a4309;
  font-size: 0.82rem;
  font-weight: 850;
}

#alle-rechner .section-head {
  margin-bottom: 16px;
}

#alle-rechner .section-head h2 {
  margin-bottom: 6px;
}

.partners {
  background: linear-gradient(135deg, #fff8ef, #f7fbf8);
  border-color: #ecd6b7;
}

.partner-card {
  background: white;
  border-color: #ecd6b7;
}

.partner-card.is-recommended {
  position: relative;
  border-color: #f4b223;
  background: linear-gradient(135deg, #fffaf0, #ffffff);
  box-shadow: 0 12px 28px rgba(245, 158, 11, 0.18);
}

.partner-card.is-recommended::before {
  content: "Empfohlen nach deiner Rechnung";
  display: inline-flex;
  width: fit-content;
  margin-bottom: 8px;
  padding: 5px 8px;
  color: #261400;
  background: linear-gradient(135deg, #f4bd29, var(--cta));
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
}

.partner-card a {
  margin-top: auto;
  color: #8a4d05;
  font-weight: 850;
}

.value-section {
  max-width: 1100px;
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 18px;
}

.value-section > div,
.value-section > aside {
  padding: 26px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(18, 60, 51, 0.04);
}

.value-section h2 {
  margin: 0 0 10px;
  color: var(--green-900);
  line-height: 1.12;
}

.value-section p {
  color: var(--muted);
}

.value-section aside {
  background: linear-gradient(135deg, #fff8ef, #f7fbf8);
  border-color: #ecd6b7;
}

.value-section aside strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green-900);
}

.value-section aside a {
  display: inline-flex;
  margin-top: 10px;
  min-height: 42px;
  align-items: center;
  padding: 10px 14px;
  color: #261400;
  background: linear-gradient(135deg, #f4bd29, var(--cta));
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 850;
}

.method-section {
  grid-template-columns: minmax(250px, 0.8fr) minmax(0, 1.2fr);
}

.method-copy {
  padding: 28px;
  color: white;
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
  border-radius: var(--radius);
}

.method-copy h2 {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 3vw, 2.45rem);
  line-height: 1.12;
}

.method-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.method-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.method-steps article {
  padding: 21px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.method-steps span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  color: #875000;
  background: var(--orange-100);
  border-radius: 50%;
  font-weight: 900;
}

.method-steps h3 {
  margin: 0 0 8px;
  color: var(--green-900);
  line-height: 1.18;
}

.method-steps p {
  margin: 0;
  color: var(--muted);
}

.faq-section {
  max-width: 1100px;
  margin: 0 auto 46px;
  padding: 0 18px;
}

.faq-section .section-head {
  text-align: center;
}

.faq-section details {
  margin-bottom: 10px;
  padding: 18px 20px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.faq-section summary {
  cursor: pointer;
  font-weight: 850;
}

.faq-section p {
  margin-bottom: 0;
  color: var(--muted);
}

.breadcrumb {
  max-width: 1100px;
  margin: 26px auto 12px;
  padding: 0 18px;
  color: var(--muted);
  font-weight: 650;
}

.breadcrumb a {
  color: var(--green-700);
  text-decoration: none;
}

.page-hero {
  max-width: 1100px;
  margin: 26px auto 24px;
  padding: 34px 28px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(18, 60, 51, 0.04);
}

.page-hero.compact h1 {
  margin: 0 0 10px;
  color: var(--green-900);
  font-size: clamp(1.9rem, 4vw, 3.35rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.page-hero p {
  max-width: 1100px;
  color: var(--muted);
}

.tool-grid {
  display: grid;
  grid-template-columns: minmax(280px, 410px) minmax(0, 1fr);
  gap: 22px;
}

.calc-card,
.result-card {
  padding: 22px;
  border-radius: var(--radius);
}

.calc-card {
  display: grid;
  gap: 16px;
  background: white;
  border: 1px solid var(--line);
  border-top: 5px solid var(--green-700);
}

label {
  display: grid;
  gap: 7px;
  font-weight: 750;
}

.input-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  overflow: hidden;
  background: #fbfdfb;
  border: 1px solid #cbdad4;
  border-radius: var(--radius-sm);
}

.input-row input {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
}

.input-row span {
  padding: 0 12px;
  color: var(--muted);
  font-weight: 750;
}

.result-card {
  display: grid;
  align-content: center;
  gap: 12px;
  color: white;
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
}

.result-label {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 850;
}

.result-card strong {
  font-size: clamp(2.3rem, 6vw, 4.2rem);
  line-height: 1;
}

.result-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.mini-results {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mini-results span {
  padding: 9px 11px;
  color: white;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-sm);
}

.calculator-hero .internal-link-row,
.internal-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 16px;
}

.internal-link-row a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 8px 12px;
  color: var(--energy-dark);
  background: #fff6d8;
  border: 1px solid #ead18b;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 850;
}

.calc-hint {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.after-calc-grid,
.buying-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.after-calc-grid article,
.buying-grid article {
  padding: 20px;
  background: #fbfdfc;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.after-calc-grid span,
.buying-grid span {
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.after-calc-grid h3,
.buying-grid h3 {
  margin: 8px 0;
  color: var(--energy-dark);
}

.after-calc-grid p,
.buying-grid p {
  margin: 0 0 12px;
  color: var(--muted);
}

.after-calc-grid a,
.buying-grid a {
  color: #8a4d05;
  font-weight: 900;
}

.money-guide .example-table-wrap {
  margin-top: 18px;
}

.check-list,
.article-steps {
  display: grid;
  gap: 10px;
  padding-left: 0;
  list-style: none;
}

.check-list li,
.article-steps li {
  padding: 14px 16px;
  background: #f7fbf8;
  border: 1px solid var(--line);
  border-left: 4px solid var(--energy-accent);
  border-radius: var(--radius-sm);
}

.seo-text h2,
.article-body h2 {
  margin-top: 0;
}

.seo-text p,
.article-body p {
  color: var(--muted);
}

.article {
  max-width: 1100px;
  margin: 0 auto 34px;
  padding: 0;
}

.article-body {
  padding: 34px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(18, 60, 51, 0.04);
}

.publish-warning {
  margin: 0 0 22px;
  padding: 16px 18px;
  color: #66400c;
  background: var(--orange-100);
  border: 1px solid #ecd6b7;
  border-radius: var(--radius-sm);
}

.tldr-box,
.article-cta {
  margin: 22px 0;
  padding: 20px;
  background: var(--green-100);
  border: 1px solid #cfe4d8;
  border-radius: var(--radius);
}

.article-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px;
  background: var(--orange-100);
  border-color: #ecd6b7;
}

.article-cta h3,
.article-cta p {
  margin: 0;
}

.geo-answer {
  max-width: 1100px;
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 14px;
}

.geo-answer > div {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.geo-summary {
  grid-column: 1 / -1;
  padding: 24px;
  display: grid;
  gap: 8px;
}

.geo-summary h2,
.geo-summary p {
  margin: 0;
}

.geo-summary h2 {
  color: var(--green-900);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.method-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.method-note a,
.geo-faq-mini a {
  color: var(--green-700);
  font-weight: 800;
}

.formula-box,
.example-table-wrap,
.geo-faq-mini {
  padding: 20px;
}

.formula-box {
  display: grid;
  gap: 12px;
  align-content: start;
}

.formula-box strong,
.geo-faq-mini > strong {
  color: var(--green-900);
  font-size: 1.05rem;
}

.formula-box code {
  display: block;
  padding: 14px;
  color: #2f2100;
  background: linear-gradient(135deg, #fff4c2, #ffe08a);
  border: 1px solid rgba(227, 160, 8, 0.36);
  border-radius: 12px;
  white-space: normal;
  line-height: 1.5;
  font-weight: 800;
}

.formula-box p {
  margin: 0;
  color: var(--muted);
}

.example-table-wrap {
  overflow-x: auto;
}

.example-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.example-table th {
  text-align: left;
  color: var(--green-900);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.example-table th,
.example-table td {
  padding: 11px 10px;
  border-bottom: 1px solid var(--line);
}

.example-table tr:last-child td {
  border-bottom: 0;
}

.example-table td:last-child {
  font-weight: 800;
  color: var(--green-800);
}

.geo-faq-mini {
  display: grid;
  gap: 10px;
  align-content: start;
}

.geo-faq-mini details {
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

.geo-faq-mini summary {
  cursor: pointer;
  color: var(--green-900);
  font-weight: 800;
}

.geo-faq-mini p {
  margin: 8px 0 0;
  color: var(--muted);
}

.method-page {
  max-width: 1100px;
  margin: 24px auto;
  display: grid;
  gap: 18px;
}

.method-page .page-hero,
.method-page .content-section,
.method-page .seo-text {
  margin: 0;
}

.method-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.method-list li {
  padding: 14px 16px;
  background: var(--green-50);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.site-footer {
  margin-top: 46px;
  padding: 30px 20px;
  color: white;
  text-align: center;
  background: var(--green-900);
}

.site-footer p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.64);
}

.site-footer nav {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.site-footer a:hover {
  color: white;
}

@media (max-width: 920px) {
  .site-header {
    position: static;
    grid-template-columns: 1fr;
    padding: 14px 18px;
    gap: 12px;
    overflow: hidden;
  }

  .brand {
    justify-self: start;
  }

  .top-nav {
    width: 100%;
    max-width: 100%;
    justify-content: start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .top-nav a {
    background: var(--green-100);
  }

  .site-search {
    width: 100%;
  }

  .hero {
    width: calc(100vw - 44px);
    max-width: calc(100vw - 44px);
    margin: 18px 22px 18px;
    padding: 26px 18px;
    grid-template-columns: 1fr;
    gap: 20px;
    background:
      linear-gradient(135deg, rgba(234, 245, 239, 0.98), rgba(255, 255, 255, 0.98)),
      url("../assets/img/hero-strom-sparen.webp") center / cover no-repeat;
    overflow: hidden;
    justify-items: start;
  }

  .hero-content,
  .hero-tool {
    width: min(100%, 300px);
    max-width: 300px;
  }

  .hero h1,
  .hero-content h1 {
    font-size: clamp(1.75rem, 7.8vw, 2.05rem);
    line-height: 1.06;
    overflow-wrap: anywhere;
  }

  .hero .eyebrow {
    font-size: 0.68rem;
    overflow-wrap: anywhere;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-points span {
    font-size: 0.84rem;
  }

  .hero-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .social-proof {
    font-size: 0.9rem;
  }

  .hero-tool {
    width: 100%;
    position: sticky;
    top: 8px;
    z-index: 5;
  }

  .tool-line {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .tool-line b {
    max-width: 100%;
    text-align: left;
    overflow-wrap: anywhere;
  }

  .tool-line input {
    width: 86px;
    text-align: left;
  }

  .tool-result strong {
    font-size: 2.15rem;
  }

  .trust-strip,
  .benefit-strip,
  .home-priority,
  .priority-grid,
  .link-hub,
  .link-hub-grid,
  .category-rail,
  .method-section,
  .geo-answer,
  .tool-grid,
  .method-steps,
  .article-cta,
  .value-section {
    grid-template-columns: 1fr;
  }

  .trust-strip,
  .category-rail,
  .method-section,
  .value-section,
  .home-priority,
  .funnel-section,
  .link-hub,
  .next-links-section,
  .blog-category-section,
  .content-section,
  .partners,
  .seo-text,
  .calculator-section,
  .page-hero,
  .geo-answer,
  .method-page {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    margin-left: 14px;
    margin-right: 14px;
  }

  .geo-summary {
    grid-column: auto;
  }

  .trust-strip {
    margin-top: 0;
  }

  .home-priority,
  .link-hub {
    gap: 18px;
    padding: 22px 18px;
  }

  .priority-card {
    min-height: 0;
  }

  .benefit-strip {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 14px 18px;
  }

  .benefit-strip span {
    white-space: normal;
  }

  .trust-strip a {
    grid-template-columns: 38px 1fr;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip a:nth-child(n + 3) {
    border-top: 0;
  }

  .trust-strip em {
    grid-column: 2;
    grid-row: 3;
    justify-self: start;
    margin-top: 4px;
  }

  .trust-strip a:last-child {
    border-bottom: 0;
  }

  .content-section,
  .partners,
  .seo-text,
  .geo-summary,
  .formula-box,
  .example-table-wrap,
  .geo-faq-mini,
  .calculator-section,
  .page-hero,
  .article-body {
    padding: 24px 18px;
  }
}

@media (max-width: 920px) {
  main {
    width: 100%;
    padding: 0 14px 24px;
  }

  .site-header {
    display: block;
    padding: 0;
    overflow: visible;
  }

  .header-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px 14px;
  }

  .top-nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    overflow: visible;
    padding-bottom: 2px;
  }

  .top-nav a,
  .nav-more-btn {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.08);
  }

  .nav-more {
    flex: 0 0 auto;
  }

  .nav-more-menu {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 136px;
    width: auto;
    min-width: 0;
  }

  .site-search {
    width: 100%;
    max-width: none;
  }

  .camping-style-hero {
    width: 100%;
    max-width: none;
    min-height: 300px;
    margin: 0 0 28px;
    padding: 38px 18px 44px;
  }

  .camping-style-hero .hero-bg {
    background:
      linear-gradient(135deg, rgba(7, 27, 42, 0.91), rgba(18, 98, 124, 0.82)),
      url("../assets/img/hero-strom-sparen.webp") center / cover no-repeat;
  }

  .home-hero {
    width: 100%;
    max-width: none;
    margin: 14px 0 16px;
    padding: 22px 16px;
    grid-template-columns: 1fr;
    border-radius: 14px;
  }

  .home-hero .hero-content {
    width: 100%;
    max-width: none;
  }

  .home-hero .hero-content h1 {
    font-size: clamp(2rem, 11vw, 2.65rem);
  }

  .hero-photo-card img {
    aspect-ratio: 1.55 / 1;
  }

  .quick-calc-section {
    grid-template-columns: 1fr;
    padding: 20px 16px;
  }

  .quick-calc-section .hero-tool {
    position: static;
    max-width: none;
  }

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

  .info-section,
  .compact-partners,
  .faq-section {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding: 22px 16px;
  }

  .page-hero,
  .partners,
  .content-section,
  .seo-text,
  .funnel-section,
  .next-links-section,
  .blog-category-section,
  .calculator-section,
  .article-body,
  .geo-answer,
  .method-page,
  .value-section {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .article-main-img {
    width: 100%;
    margin: -8px 0 18px;
  }

  .article-hero {
    width: 100%;
    max-width: none;
    margin: 16px 0 18px;
    padding: 18px 16px;
  }

  .article-hero h1 {
    font-size: clamp(1.75rem, 8vw, 2.35rem);
  }

  .aff-toplist-row {
    grid-template-columns: 34px 1fr;
  }

  .aff-buy {
    grid-column: 2;
    justify-items: start;
  }
}

