﻿:root {
  --green-900: #0d3a5c;
  --green-700: #1b7bb5;
  --green-100: #e6f1fb;
  --green-050: #f2f8fd;
  --orange: #f0b429;
  --cta: #f5c542;
  --cta-dark: #d99500;
  --orange-100: #fff6d8;
  --ink: #17211f;
  --muted: #64717c;
  --line: #d4e3f0;
  --surface: #ffffff;
  --page: #f3f7fc;
  --shadow: 0 10px 24px rgba(13, 58, 92, 0.09);
  --radius: 10px;
  --radius-sm: 7px;
  --cream: #f4f8fc;
}

* {
  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(--green-900) 0%, var(--green-700) 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(--cta);
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  color: white;
  color: var(--green-900);
  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);
}

.home-hero {
  position: relative;
  max-width: 800px;
  margin: 24px auto 18px;
  padding: clamp(26px, 4vw, 46px) clamp(20px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  overflow: hidden;
  background: 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 h1 {
  max-width: 720px;
  color: var(--green-900);
  font-size: clamp(2.15rem, 4.8vw, 3.4rem);
  line-height: 1.06;
}

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

.hero-badges {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.section-title {
  margin: 0 0 8px;
  color: var(--green-900);
  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(27, 123, 181, 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(--cta);
}

.card-emoji {
  margin-right: 9px;
  font-size: 1.15em;
  line-height: 1;
  vertical-align: -0.08em;
}

.card h3 {
  margin: 0 0 8px;
  color: var(--green-900);
  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(--green-700);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
}

.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: #e6f1fb;
}

.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(--green-900);
  background: #e5f3f8;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-card h3 {
  margin: 0 22px 8px;
  color: var(--green-900);
  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(--green-900);
  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(--green-900);
  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(--green-900);
}

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

.aff-toplist-head,
.aff-toplist-foot {
  color: var(--green-900);
  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(--green-900);
  font-size: 1rem;
}

.aff-badge {
  display: inline-flex;
  padding: 3px 8px;
  color: white;
  background: var(--green-700);
  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(--green-900);
}

.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;
}

.stat-icon {
  display: block;
  margin-bottom: 6px;
  font-size: 1.4rem;
  line-height: 1;
}

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

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

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

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

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

.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;
}

.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);
}

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

.blog-category-grid article {
  position: relative;
  min-height: 220px;
  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;
}

.blog-category-grid article:hover {
  transform: translateY(-2px);
  border-color: rgba(27, 123, 181, 0.35);
  box-shadow: var(--shadow);
}

.blog-category-grid h3 {
  display: block;
  margin: 12px 0 8px;
  color: var(--green-900);
  font-size: 1.08rem;
  line-height: 1.18;
}

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

.blog-category-grid a {
  display: block;
  margin-top: 8px;
  color: #8a4d05;
  font-style: normal;
  font-weight: 900;
}

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

.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 {
  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 {
  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 a {
  margin-top: auto;
  color: #8a4d05;
  font-weight: 850;
}

.product-card {
  min-height: 0;
  gap: 8px;
}

.product-card span {
  width: fit-content;
  padding: 5px 8px;
  color: #07342f;
  background: #e8f3ef;
  border-radius: 999px;
  font-size: 0.68rem;
}

.product-card h3 {
  margin: 2px 0 0;
}

.product-card p {
  font-size: 0.95rem;
  line-height: 1.45;
}

.product-card small {
  color: #667873;
  line-height: 1.4;
}

.product-card a {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-top: auto;
  padding: 9px 13px;
  color: #261400;
  background: linear-gradient(135deg, #f4bd29, var(--cta));
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 900;
}

.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;
}

.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(--green-900);
  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 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 22px;
}

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

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

.after-calc-grid h3 {
  margin: 8px 0;
  color: var(--green-900);
}

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

.after-calc-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(--cta);
  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-900);
}

.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-050);
  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-copy {
    font-size: 1rem;
  }

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

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

  .geo-answer,
  .tool-grid,
  .article-cta,
  .value-section {
    grid-template-columns: 1fr;
  }

  .value-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;
  }

  .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;
  }

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

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

  .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,
  .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;
  }
}

/* Visual polish pass: cleaner hierarchy, lighter cards and tighter mobile entry. */
.header-inner,
main,
.home-hero,
.page-hero,
.content-section,
.article-hero,
.article-body,
.blog-category-section,
.calculator-section,
.partners,
.seo-text,
.value-section,
.method-page {
  max-width: 1100px;
}

.home-hero {
  margin-top: 22px;
  padding: clamp(28px, 4.2vw, 44px);
  gap: clamp(24px, 4vw, 38px);
  border-color: rgba(27, 123, 181, 0.14);
  box-shadow: 0 16px 46px rgba(16, 47, 69, 0.09);
}

.home-hero h1 {
  max-width: 650px;
  font-size: clamp(2.15rem, 3.65vw, 3.08rem);
  line-height: 1.06;
}

.home-hero .hero-copy {
  max-width: 600px;
  font-size: 1.06rem;
}

.blog-card {
  overflow: hidden;
  border-color: rgba(27, 123, 181, 0.12);
  box-shadow: 0 8px 24px rgba(16, 47, 69, 0.07);
}

.blog-card-img {
  height: 156px;
  border-radius: 0;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(16, 47, 69, 0.13);
}

.article-hero {
  padding: 22px;
  border-color: rgba(27, 123, 181, 0.14);
  box-shadow: 0 10px 28px rgba(16, 47, 69, 0.07);
}

.article-hero-img {
  max-height: 390px;
}

.article-hero h1 {
  max-width: 930px;
  font-size: clamp(2rem, 3.65vw, 3rem);
  line-height: 1.07;
}

.article-body {
  border-color: rgba(27, 123, 181, 0.14);
}

@media (max-width: 920px) {
  main {
    padding-left: 14px;
    padding-right: 14px;
  }

  .site-header {
    position: static;
  }

  .header-inner {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 8px 14px 10px;
  }

  .brand {
    font-size: 1.2rem;
  }

  .top-nav {
    display: flex;
    flex-wrap: nowrap;
    gap: 7px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 0 2px;
    scrollbar-width: none;
  }

  .top-nav::-webkit-scrollbar {
    display: none;
  }

  .top-nav a,
  .nav-more-btn {
    flex: 0 0 auto;
    padding: 6px 11px;
    background: rgba(255, 255, 255, 0.11);
    font-size: 0.84rem;
  }

  .nav-more-menu {
    top: 114px;
  }

  .site-search-input {
    height: 36px;
    font-size: 0.88rem;
  }

  .site-search-icon::after {
    top: 22px;
  }

  .home-hero {
    margin-top: 12px;
    padding: 20px 16px 18px;
    gap: 18px;
  }

  .home-hero h1 {
    font-size: clamp(1.82rem, 8.7vw, 2.22rem);
    line-height: 1.08;
  }

  .home-hero .hero-copy {
    margin-bottom: 18px;
    font-size: 1rem;
  }

  .hero-actions {
    gap: 9px;
  }

  .page-hero {
    padding: 22px 18px;
  }

  .page-hero h1 {
    font-size: clamp(1.9rem, 8.2vw, 2.45rem);
    line-height: 1.08;
  }

  .page-hero p {
    font-size: 1rem;
  }

  .article-hero {
    margin-top: 14px;
    padding: 14px;
  }

  .article-hero-img {
    max-height: 260px;
    margin-bottom: 16px;
  }

  .article-hero h1 {
    font-size: clamp(1.7rem, 7.3vw, 2.18rem);
    line-height: 1.1;
  }

  .article-meta,
  .blog-card-meta {
    font-size: 0.84rem;
  }

  .article-body {
    padding: 22px 18px;
  }

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

  .blog-card-img {
    height: 150px;
  }
}

@media (max-width: 480px) {
  .header-inner {
    gap: 8px;
  }

  .site-search-results {
    left: 0;
    right: 0;
    width: 100%;
    max-height: 58vh;
  }

  .btn {
    min-height: 45px;
  }

  .home-hero h1 {
    font-size: clamp(1.78rem, 8.4vw, 2.12rem);
  }

  .article-hero-img {
    max-height: 235px;
  }
}

.product-picks {
  background: linear-gradient(180deg, #fffdf7, #ffffff);
}

.product-picks .partner-grid {
  align-items: stretch;
}

.product-card {
  position: relative;
  border-color: rgba(240, 180, 41, 0.42);
  box-shadow: 0 10px 24px rgba(16, 47, 69, 0.08);
}

.product-card::before {
  content: "★";
  position: absolute;
  top: 16px;
  right: 16px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: #261400;
  background: linear-gradient(135deg, #ffe889, #f2bd23);
  border-radius: 50%;
  font-size: 0.9rem;
}

.product-card span {
  padding-right: 40px;
  color: #9a6500;
}

.product-card small {
  display: block;
  margin: 10px 0 16px;
  color: #5f6f6b;
  line-height: 1.45;
}

.product-card a {
  margin-top: auto;
}




/* Design pass v33: cleaner portal look, stronger affiliate cards, calmer articles */
body {
  background:
    linear-gradient(180deg, #f2f7f8 0%, #f7fafb 42%, #f3f8f7 100%);
}

main,
.header-inner,
.home-hero,
.content-section,
.partners,
.seo-text,
.calculator-section,
.article,
.article-hero,
.faq-section,
.site-footer {
  max-width: 1100px;
}

.site-header {
  background: var(--green-900);
  box-shadow: 0 10px 28px rgba(11, 42, 61, 0.14);
}

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

.top-nav a:hover,
.nav-more-btn:hover {
  background: rgba(255, 255, 255, 0.14);
}

.home-hero {
  margin-top: 22px;
  padding: clamp(24px, 3.6vw, 40px);
  gap: clamp(20px, 3vw, 32px);
  background: linear-gradient(135deg, #ffffff 0%, #f6fbfc 54%, #edf6f4 100%);
  border-color: #d8e8eb;
  border-radius: 14px;
  box-shadow: 0 16px 42px rgba(11, 42, 61, 0.09);
}

.home-hero h1 {
  max-width: 760px;
  font-size: clamp(2rem, 4.1vw, 3.45rem);
  line-height: 1.04;
}

.home-hero .hero-copy {
  max-width: 620px;
  font-size: 1.06rem;
}

.btn,
.btn-aff,
.product-card a {
  transition: transform 0.16s ease, box-shadow 0.16s ease, filter 0.16s ease;
}

.btn.primary,
.btn-aff,
.product-card a {
  color: #241600;
  background: linear-gradient(135deg, #ffd94f 0%, #f4b91f 100%);
  box-shadow: 0 10px 18px rgba(181, 120, 0, 0.18);
}

.btn.primary:hover,
.btn-aff:hover,
.product-card a:hover {
  transform: translateY(-1px);
  filter: saturate(1.04);
  box-shadow: 0 14px 26px rgba(181, 120, 0, 0.25);
}

.btn.secondary {
  color: var(--green-900);
  background: #ffffff;
  border-color: #f4b91f;
  box-shadow: inset 0 0 0 1px rgba(244, 185, 31, 0.22);
}

.info-section,
.faq-section,
.content-section,
.partners,
.calculator-section,
.seo-text {
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(11, 42, 61, 0.07);
}

.card,
.feature-card,
.partner-card {
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(11, 42, 61, 0.06);
}

.card:hover,
.feature-card:hover,
.partner-card:hover {
  transform: translateY(-3px);
  border-color: rgba(23, 107, 136, 0.34);
  box-shadow: 0 16px 34px rgba(11, 42, 61, 0.12);
}

.article-hero {
  margin-top: 24px;
  padding: 22px;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(11, 42, 61, 0.07);
}

.article-hero-img {
  max-height: 390px;
  border-radius: 10px;
}

.article-hero h1 {
  max-width: 900px;
  font-size: clamp(2rem, 3.7vw, 3rem);
  line-height: 1.08;
}

.article-body {
  padding: clamp(22px, 3.4vw, 38px);
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(11, 42, 61, 0.07);
}

.article-body h2 {
  margin: 36px 0 13px;
  color: var(--green-900);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  line-height: 1.18;
}

.article-body h2:first-child,
.article-body .tldr-box + h2,
.article-body .decision-box h2 {
  margin-top: 0;
}

.article-body p {
  font-size: 1.01rem;
}

.article-body a:not(.btn):not(.btn-aff) {
  color: #0f6680;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  font-weight: 750;
}

.tldr-box,
.decision-box,
.article-cta,
.aff-toplist {
  border-radius: 10px;
}

.tldr-box {
  position: relative;
  padding: 20px 22px 20px 24px;
  background: linear-gradient(135deg, #eef8fa, #ffffff);
  border-color: #cfe3e9;
  border-left: 5px solid var(--green-700);
}

.decision-box {
  background: #f8fbfb;
  border-color: #dce9ec;
}

.decision-card {
  position: relative;
  padding: 18px 18px 18px 20px;
  border-radius: 9px;
  box-shadow: 0 4px 14px rgba(11, 42, 61, 0.04);
}

.decision-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 4px;
  border-radius: 99px;
  background: #f4b91f;
}

.decision-card p {
  margin: 0;
}

.article-cta {
  background: linear-gradient(135deg, #fff8df, #ffffff);
  border-color: #f0d487;
}

.article-cta .btn,
.article-cta .btn.primary {
  min-width: 190px;
}

.aff-toplist {
  padding: 20px;
  background: #ffffff;
  border: 1px solid #dbe9ec;
  box-shadow: 0 12px 30px rgba(11, 42, 61, 0.07);
}

.aff-toplist-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--green-900);
  font-size: 1.12rem;
}

.aff-toplist-head::before {
  content: "";
  width: 10px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 99px;
  background: #f4b91f;
}

.aff-toplist-row {
  grid-template-columns: 42px minmax(0, 1fr) minmax(180px, auto);
  gap: 16px;
  margin-top: 12px;
  padding: 16px;
  background: #fbfdfd;
  border: 1px solid #e0ecef;
  border-radius: 10px;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.aff-toplist-row + .aff-toplist-row {
  border-top: 1px solid #e0ecef;
}

.aff-toplist-row:hover {
  transform: translateY(-2px);
  border-color: rgba(244, 185, 31, 0.62);
  box-shadow: 0 14px 28px rgba(11, 42, 61, 0.10);
}

.aff-toplist-row.featured {
  margin: 12px 0 0;
  background: linear-gradient(135deg, #fffaf0, #ffffff);
  border-color: rgba(244, 185, 31, 0.62);
}

.aff-rank {
  width: 36px;
  height: 36px;
  box-shadow: 0 8px 15px rgba(181, 120, 0, 0.16);
}

.aff-info h4 {
  margin: 8px 0 5px;
  font-size: 1.08rem;
}

.aff-badge {
  background: var(--green-700);
}

.aff-specs {
  max-width: 680px;
  font-size: 0.94rem;
}

.aff-buy {
  min-width: 170px;
}

.aff-price {
  color: #5b6d68;
}

.btn-aff {
  min-width: 150px;
  border-radius: 9px;
}

.product-picks {
  background: linear-gradient(135deg, #fffdf6, #ffffff);
}

.partner-grid {
  gap: 16px;
}

.product-card {
  position: relative;
  padding: 18px;
  gap: 9px;
  border-color: #e0eaf0;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 14px auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(244, 185, 31, 0.18);
  pointer-events: none;
}

.product-card span {
  color: var(--green-900);
  background: #e9f4f7;
}

.product-card a {
  position: relative;
  z-index: 1;
  border-radius: 9px;
}

.check-list li,
.article-steps li {
  background: #fbfdfd;
  border-color: #dbe9ec;
  border-left-color: #f4b91f;
  box-shadow: 0 5px 16px rgba(11, 42, 61, 0.04);
}

.cost-table,
.article-body table:not(.example-table) {
  width: 100%;
  margin: 18px 0 28px;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  background: white;
  border: 1px solid #dbe9ec;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(11, 42, 61, 0.05);
}

.cost-table th,
.cost-table td,
.article-body table:not(.example-table) th,
.article-body table:not(.example-table) td {
  padding: 13px 14px;
  text-align: left;
  border-bottom: 1px solid #e3eef1;
  vertical-align: top;
}

.cost-table th,
.article-body table:not(.example-table) th {
  color: var(--green-900);
  background: #f0f7f8;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.cost-table tr:last-child td,
.article-body table:not(.example-table) tr:last-child td {
  border-bottom: 0;
}

.feature-grid,
.partner-grid,
.card-grid {
  gap: 18px;
}

.feature-card,
.blog-card {
  overflow: hidden;
}

.feature-card > .blog-card-img,
.blog-card-img {
  filter: saturate(0.98) contrast(1.02);
}

.faq-section details {
  border-radius: 10px;
}

.faq-section summary {
  color: var(--green-900);
}

@media (max-width: 760px) {
  main {
    padding-inline: 14px;
  }

  .home-hero,
  .article-hero,
  .article-body,
  .content-section,
  .partners,
  .calculator-section,
  .seo-text,
  .faq-section,
  .info-section {
    border-radius: 10px;
  }

  .home-hero {
    margin-top: 14px;
    padding: 20px;
  }

  .hero-actions {
    align-items: stretch;
  }

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

  .article-hero {
    padding: 14px;
  }

  .article-body {
    padding: 20px 16px;
  }

  .article-body h2 {
    margin-top: 30px;
  }

  .aff-toplist {
    padding: 14px;
  }

  .aff-toplist-row,
  .aff-toplist-row.featured {
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: start;
  }

  .aff-buy {
    grid-column: 1 / -1;
    min-width: 0;
    justify-items: stretch;
  }

  .btn-aff {
    width: 100%;
  }

  .article-cta {
    grid-template-columns: 1fr;
  }

  .article-cta .btn,
  .article-cta .btn.primary {
    width: 100%;
  }

  .article-body table:not(.example-table),
  .cost-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .calculator-section {
    padding-inline: 14px;
  }

  .calc-card,
  .result-card,
  .universal-calc,
  .universal-result {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .calc-card label,
  .input-row,
  .calc-hint,
  .result-label,
  .result-card strong,
  .result-card p,
  .mini-results {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .input-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .input-row input {
    width: 100%;
    min-width: 0;
  }

  .example-table-wrap {
    max-width: 100%;
    overflow-x: auto;
  }
}

/* ============================================================
   HERO IM CAMPING-RECHNER-STIL — full-bleed, dunkelblauer
   Verlauf + grosses Hintergrundbild (Startseite)
   ============================================================ */
.home-hero {
  position: relative;
  max-width: none;
  width: 100%;
  margin: 0 0 10px;
  padding: clamp(52px, 7vw, 78px) 20px clamp(56px, 8vw, 82px);
  border: none;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
  background: linear-gradient(160deg, var(--green-900) 0%, #12557f 58%, var(--green-700) 100%);
  color: #fff;
  gap: 16px;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/img/hero-0strom.webp") center / cover no-repeat;
  opacity: 0.34;
  z-index: 0;
}

/* leichter Dunkel-Verlauf unten fuer Textkontrast */
.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,58,92,0.10) 0%, rgba(13,58,92,0.45) 100%);
  z-index: 0;
}

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

.home-hero h1 {
  color: #fff;
  max-width: 780px;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.5px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.28);
}

.home-hero .hero-copy {
  color: rgba(255, 255, 255, 0.92);
  max-width: 600px;
  font-size: clamp(1rem, 2.4vw, 1.14rem);
}

.home-hero .hero-badges {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 30px;
  padding: 8px 18px;
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
}

.home-hero .hero-actions {
  margin-top: 6px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.home-hero .btn.primary {
  background: linear-gradient(135deg, var(--orange), var(--cta));
  color: #241600;
  border: none;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: 800;
  box-shadow: 0 6px 20px rgba(240, 180, 41, 0.38);
}

.home-hero .btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(240, 180, 41, 0.45);
}

.home-hero .btn.secondary {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 700;
}

.home-hero .btn.secondary:hover {
  background: rgba(255, 255, 255, 0.24);
}

/* ============================================================
   FIX: Produkt-Empfehlungen in der Ergebnis-Box
   (.result-followup wird per JS in .universal-result injiziert)
   Vorher ungestylt -> riesige ueberlaufende Textbloecke.
   ============================================================ */
.result-followup {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.result-followup > span {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cta);
  margin-bottom: 4px;
}
.result-followup > p {
  margin: 0 0 14px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}
.result-products {
  display: grid;
  gap: 10px;
}
.result-product {
  display: block;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  text-decoration: none;
  color: #fff;
  transition: background 0.16s ease, transform 0.16s ease;
}
.result-product:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}
.result-product small {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 3px;
}
.result-product strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.25;
}
.result-product em {
  display: block;
  font-style: normal;
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
  margin: 3px 0 8px;
}
.result-product b {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--cta);
}
.result-product.is-primary {
  background: rgba(245, 197, 66, 0.16);
  border-color: rgba(245, 197, 66, 0.5);
}

/* FIX: Karten-Badge überlappte 2-zeilige Titel -> Platz reservieren */
.card:has(.card-badge) h3 { padding-right: 58px; }

/* E-E-A-T: Autoren-Box in Artikeln */
.author-box{display:flex;gap:14px;align-items:flex-start;margin:28px 0 6px;padding:16px 18px;background:var(--green-050);border:1px solid var(--line);border-radius:var(--radius);}
.author-avatar{flex:0 0 auto;width:44px;height:44px;border-radius:50%;display:grid;place-items:center;background:linear-gradient(135deg,var(--green-900),var(--green-700));color:#fff;font-weight:800;font-size:1.2rem;}
.author-text strong{display:block;color:var(--green-900);font-size:0.98rem;margin-bottom:3px;}
.author-text p{margin:0;font-size:0.9rem;color:var(--muted);line-height:1.55;}
.author-text a{color:var(--green-700);font-weight:600;}

/* FIX: Footer über volle Breite (Override der max-width:1100px-Gruppe) */
.site-footer { max-width: none; width: 100%; }
