/* ============================================================
   pferdehaftpflicht.one — Main Stylesheet
   2026 Design: Light, Clean, Modern
   ============================================================ */

/* Variablen */
:root {
  --green:       #166534;
  --green-light: #dcfce7;
  --green-mid:   #16a34a;
  --amber:       #ca8a04;
  --amber-light: #fef9c3;
  --white:       #ffffff;
  --bg:          #f8faf9;
  --bg-card:     #ffffff;
  --text:        #111827;
  --text-muted:  #6b7280;
  --text-light:  #9ca3af;
  --border:      #e5e7eb;
  --border-dark: #d1d5db;
  --radius:      12px;
  --radius-lg:   18px;
  --radius-sm:   8px;
  --shadow:      0 1px 8px rgba(0,0,0,0.07);
  --shadow-md:   0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.12);
  --font:        'Inter', system-ui, -apple-system, sans-serif;
  --max-width:   1160px;
  --header-h:    68px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }
h1,h2,h3,h4,h5,h6 { line-height: 1.25; font-weight: 700; color: var(--text); }

/* Utility */
.wrap { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ============================================================ */
/* HEADER                                                        */
/* ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: var(--header-h);
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-text {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.3px;
}
.logo-dot { color: var(--green); }

/* Desktop Nav */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-desktop a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: background .15s, color .15s;
  text-decoration: none;
}
.nav-desktop a:hover,
.nav-desktop a[aria-current="page"] {
  background: var(--green-light);
  color: var(--green);
}

/* Header CTA */
.header-cta { margin-left: 8px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  margin-left: auto;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  z-index: 99;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-mobile.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.nav-mobile-inner {
  display: flex;
  flex-direction: column;
  padding: 16px 24px 24px;
  gap: 4px;
}
.nav-mobile-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: background .15s;
}
.nav-mobile-link:hover,
.nav-mobile-link[aria-current="page"] {
  background: var(--green-light);
  color: var(--green);
}
.nav-mobile-cta { margin-top: 12px; text-align: center; }

/* ============================================================ */
/* BUTTONS                                                       */
/* ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: all .15s ease;
  text-decoration: none;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.btn-primary:hover {
  background: #145228;
  border-color: #145228;
  text-decoration: none;
}
.btn-outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline:hover {
  background: var(--green-light);
  text-decoration: none;
}
.btn-lg { padding: 14px 30px; font-size: 16px; border-radius: var(--radius-sm); }
.btn-block { width: 100%; }

/* ============================================================ */
/* HERO                                                          */
/* ============================================================ */
.hero {
  background: linear-gradient(135deg, #f0fdf4 0%, #fff 60%);
  padding: 72px 0 80px;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  background: var(--green-light);
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.stat { font-size: 14px; color: var(--text-muted); }
.stat strong { color: var(--text); font-weight: 700; }
.stat-divider {
  width: 1px;
  height: 16px;
  background: var(--border-dark);
}

/* Hero Cards */
.hero-visual { position: relative; }
.hero-card-stack {
  position: relative;
  height: 280px;
}
.hero-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  min-width: 260px;
}
.hero-card--top {
  top: 0;
  right: 0;
  z-index: 2;
  border: 2px solid var(--green-light);
}
.hero-card--bottom {
  bottom: 0;
  left: 0;
  z-index: 1;
  opacity: .85;
}
.hc-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--green);
  margin-bottom: 8px;
}
.hc-provider {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.hc-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.stars { color: var(--amber); font-size: 16px; letter-spacing: -1px; }
.rating-score { font-size: 14px; font-weight: 600; color: var(--text-muted); }
.hc-price {
  font-size: 22px;
  font-weight: 800;
  color: var(--green);
}
.hc-price span { font-size: 14px; font-weight: 500; color: var(--text-muted); }

/* ============================================================ */
/* TRUST BAR                                                     */
/* ============================================================ */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.trust-bar-inner {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}

/* ============================================================ */
/* SECTIONS                                                      */
/* ============================================================ */
.section { padding: 72px 0; }
.section--white { background: var(--white); }
.section--bg { background: var(--bg); }
.section-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}
.section-head h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 800;
  letter-spacing: -.8px;
  margin-bottom: 12px;
}
.section-head p {
  font-size: 16px;
  color: var(--text-muted);
}
.section-cta {
  text-align: center;
  margin-top: 40px;
}

/* ============================================================ */
/* PROVIDER CARDS (Vergleich)                                    */
/* ============================================================ */
.provider-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.provider-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  transition: box-shadow .2s;
}
.provider-card:hover { box-shadow: var(--shadow-md); }
.provider-card--featured {
  border-color: var(--green);
  border-width: 2px;
  box-shadow: 0 0 0 4px rgba(22,101,52,.06);
}
.pc-badge {
  position: absolute;
  top: -13px;
  left: 24px;
  background: var(--green);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  padding: 4px 12px;
  border-radius: 100px;
}
.pc-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  margin-top: 8px;
}
.pc-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.pc-features {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pc-features li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 22px;
  position: relative;
}
.pc-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  background: var(--green-light);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23166534' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}
.pc-price {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.pc-price strong {
  font-size: 24px;
  font-weight: 800;
  color: var(--green);
}

/* ============================================================ */
/* WHY GRID                                                      */
/* ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
}
.why-icon {
  width: 56px;
  height: 56px;
  background: var(--green-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.why-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}
.why-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ============================================================ */
/* POST GRID (Blog)                                              */
/* ============================================================ */
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.post-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.post-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.pc-img-wrap { display: block; overflow: hidden; aspect-ratio: 16/9; }
.pc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}
.post-card:hover .pc-img-wrap img { transform: scale(1.04); }
.post-card-body { padding: 20px; }
.post-cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .7px;
  color: var(--green);
  background: var(--green-light);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.post-card-body h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.35;
}
.post-card-body h3 a { color: var(--text); text-decoration: none; }
.post-card-body h3 a:hover { color: var(--green); }
.post-card-body p { font-size: 13px; color: var(--text-muted); line-height: 1.65; margin-bottom: 14px; }
.read-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
}
.read-more:hover { text-decoration: underline; }

/* ============================================================ */
/* FAQ                                                           */
/* ============================================================ */
.faq-wrap { max-width: 720px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform .2s;
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item[open] summary { color: var(--green); border-bottom: 1px solid var(--border); }
.faq-body { padding: 18px 20px; }
.faq-body p { font-size: 14px; color: var(--text-muted); line-height: 1.75; }

/* ============================================================ */
/* SINGLE POST                                                   */
/* ============================================================ */
.single-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  padding: 48px 0 72px;
}
.post-header { margin-bottom: 32px; }
.post-header .post-cat { margin-bottom: 16px; }
.post-header h1 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -.8px;
  margin-bottom: 16px;
}
.post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--text-muted);
}
.post-featured-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 36px;
  aspect-ratio: 16/8;
}
.post-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post-content {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
}
.post-content h2 {
  font-size: 22px;
  font-weight: 800;
  margin: 36px 0 14px;
  letter-spacing: -.3px;
}
.post-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 28px 0 12px;
}
.post-content p { margin-bottom: 16px; }
.post-content ul, .post-content ol {
  margin: 0 0 16px 20px;
  list-style: disc;
}
.post-content li { margin-bottom: 8px; }
.post-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
}
.post-content th {
  background: var(--green);
  color: #fff;
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
}
.post-content td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
}
.post-content tr:nth-child(even) td { background: var(--bg); }
.post-content a { color: var(--green); font-weight: 500; }
.post-content blockquote {
  border-left: 3px solid var(--green);
  padding: 12px 20px;
  background: var(--green-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 24px 0;
  color: var(--green);
  font-style: italic;
}

/* Sidebar */
.post-sidebar { }
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}
.sidebar-widget h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.sidebar-posts { display: flex; flex-direction: column; gap: 12px; }
.sidebar-post a { font-size: 14px; font-weight: 600; color: var(--text); line-height: 1.4; }
.sidebar-post a:hover { color: var(--green); }
.sidebar-post span { display: block; font-size: 12px; color: var(--text-light); margin-top: 2px; }

/* ============================================================ */
/* ARCHIVE (Blog-Liste)                                          */
/* ============================================================ */
.archive-header {
  background: linear-gradient(135deg, #f0fdf4 0%, #fff 60%);
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}
.archive-header h1 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -.8px;
  margin-bottom: 8px;
}
.archive-header p { font-size: 16px; color: var(--text-muted); }

/* ============================================================ */
/* VERGLEICH PAGE                                                */
/* ============================================================ */
.compare-table-wrap { overflow-x: auto; margin: 0 -16px; padding: 0 16px; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 700px;
}
.compare-table th {
  background: var(--green);
  color: #fff;
  padding: 14px 16px;
  text-align: left;
  font-weight: 700;
  white-space: nowrap;
}
.compare-table th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.compare-table th:last-child { border-radius: 0 var(--radius-sm) 0 0; }
.compare-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.compare-table tr:nth-child(even) td { background: var(--bg); }
.compare-table tr:hover td { background: var(--green-light); }
.compare-table .best-pick td { background: #f0fdf4 !important; }
.ct-provider { font-weight: 700; color: var(--text); }
.ct-check { color: var(--green); font-size: 18px; }
.ct-cross { color: #ef4444; font-size: 18px; }
.ct-price { font-weight: 700; color: var(--green); font-size: 16px; }

/* ============================================================ */
/* RECHNER                                                       */
/* ============================================================ */
.rechner-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}
.form-control {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border-dark);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  transition: border-color .15s;
  appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(22,101,52,.1);
}
.rechner-result {
  background: var(--green-light);
  border: 1.5px solid var(--green);
  border-radius: var(--radius);
  padding: 20px;
  margin-top: 24px;
  display: none;
}
.rechner-result.visible { display: block; }
.result-price {
  font-size: 32px;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 4px;
}
.result-label { font-size: 14px; color: var(--text-muted); }

/* ============================================================ */
/* PAGE (Impressum etc.)                                         */
/* ============================================================ */
.page-layout {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}
.page-layout h1 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -.5px;
  margin-bottom: 32px;
}
.page-content {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
}
.page-content h2 { font-size: 20px; margin: 32px 0 12px; }
.page-content h3 { font-size: 17px; margin: 24px 0 10px; }
.page-content p { margin-bottom: 14px; }
.page-content ul, .page-content ol { margin: 0 0 14px 20px; list-style: disc; }
.page-content li { margin-bottom: 6px; }
.page-content a { color: var(--green); }

/* ============================================================ */
/* 404                                                           */
/* ============================================================ */
.page-404 {
  text-align: center;
  padding: 80px 24px;
}
.page-404 .error-code {
  font-size: 96px;
  font-weight: 800;
  color: var(--green-light);
  line-height: 1;
  margin-bottom: 16px;
}
.page-404 h1 { font-size: 28px; margin-bottom: 12px; }
.page-404 p { color: var(--text-muted); margin-bottom: 32px; }

/* ============================================================ */
/* FOOTER                                                        */
/* ============================================================ */
.site-footer { background: var(--text); color: #e5e7eb; }
.footer-top { padding: 56px 0 48px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
}
.footer-logo .logo-text { color: #fff; }
.footer-logo .logo-dot { color: var(--green-mid); }
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: #9ca3af;
  margin: 16px 0 20px;
}
.footer-trust {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.trust-badge {
  font-size: 12px;
  font-weight: 600;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  padding: 4px 12px;
  border-radius: 100px;
  color: #d1d5db;
}
.footer-nav h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: #9ca3af;
  margin-bottom: 16px;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 8px; }
.footer-nav li a {
  font-size: 14px;
  color: #d1d5db;
  text-decoration: none;
  transition: color .15s;
}
.footer-nav li a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 12px; color: #6b7280; }
.footer-affiliate-hint { color: #4b5563 !important; }

/* ============================================================ */
/* RESPONSIVE                                                    */
/* ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .provider-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .post-grid { grid-template-columns: 1fr 1fr; }
  .single-layout { grid-template-columns: 1fr; }
  .post-sidebar { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; }

  .nav-desktop, .header-cta { display: none; }
  .hamburger { display: flex; }
  .nav-mobile { display: block; }

  .hero { padding: 48px 0 56px; }
  .hero h1 { font-size: 30px; letter-spacing: -.8px; }
  .hero-sub { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-stats { gap: 12px; }

  .trust-bar-inner { gap: 16px; justify-content: flex-start; }

  .section { padding: 48px 0; }
  .section-head { margin-bottom: 32px; }

  .provider-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .post-grid { grid-template-columns: 1fr; }

  .rechner-card { padding: 24px 20px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .wrap { padding: 0 16px; }
  .hero h1 { font-size: 26px; }
  .hero-badge { font-size: 11px; }
}
