/* ═══════════════════════════════════════════════
   HAMO ELEKTROTECHNIK — Shared Stylesheet
   ═══════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', Arial, sans-serif; color: #0F172A; background: #fff; -webkit-font-smoothing: antialiased; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
::selection { background: #4F9748; color: #fff; }

/* ── TOKENS ── */
:root {
  --blue: #4F9748; --blue-dark: #3D7838; --navy: #2F5C2B;
  --dark: #0F172A; --muted: #64748B; --light: #475569; --slate: #334155;
  --surface: #F8FAFC; --surface2: #F8FAFC; --border: rgba(15,23,42,0.08);
  --r-sm: 10px; --r-md: 16px; --r-lg: 24px; --r-xl: 32px;
  --shadow-xs: 0 1px 4px rgba(15,23,42,0.06);
  --shadow-sm: 0 2px 12px rgba(15,23,42,0.07);
  --shadow-md: 0 8px 32px rgba(15,23,42,0.10);
  --shadow-lg: 0 24px 64px rgba(15,23,42,0.14);
}

/* ── TYPOGRAPHY ── */
.text-xs    { font-size: 12px; }
.text-sm    { font-size: 14px; }
.text-base  { font-size: 16px; }
.text-lg    { font-size: 18px; }
.text-xl    { font-size: 20px; }
.text-2xl   { font-size: 24px; }
.text-3xl   { font-size: 30px; line-height: 1.08; }
.text-4xl   { font-size: clamp(1.8rem, 4vw, 2.5rem); line-height: 1.08; }
.text-5xl   { font-size: clamp(2.2rem, 5vw, 3.4rem); line-height: 1.08; }
.text-hero  { font-size: clamp(2.6rem, 6vw, 4.2rem); line-height: 1.08; }
.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }
.text-muted  { color: var(--muted); }
.text-light  { color: var(--light); }
.text-dark   { color: var(--dark); }
.text-blue   { color: var(--blue); }
.text-white  { color: #fff; }
.leading-tight  { line-height: 1.1; }
.leading-snug   { line-height: 1.3; }
.leading-normal { line-height: 1.6; }
.leading-loose  { line-height: 1.8; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-wide  { letter-spacing: 0.06em; }
.uppercase      { text-transform: uppercase; }

.text-gradient {
  background: linear-gradient(120deg, #4F9748 0%, #4F9748 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── LAYOUT ── */
.container    { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.section      { padding: 96px 0; }
.section-sm   { padding: 64px 0; }

/* ── ELEGANT CTA BAND ── */
.cta-band {
  position: relative; overflow: hidden; text-align: center;
  background: linear-gradient(135deg, #2F5C2B 0%, #4F9748 100%);
  border: 1px solid rgba(79,151,72,0.30);
  border-radius: var(--r-xl); padding: 60px 40px;
  box-shadow: 0 18px 50px -16px rgba(79,151,72,0.40);
}
.cta-band h2 { color: #fff; }
.cta-band p  { color: rgba(255,255,255,0.85); }
.cta-band .eyebrow { background: rgba(255,255,255,0.15); color: #fff; }
.cta-band .btn-primary { background: #fff; color: #3D7838; }
.cta-band .btn-primary:hover { background: #EFF4FF; box-shadow: 0 8px 24px rgba(15,23,42,0.18); }
.cta-band .btn-outline { border-color: rgba(255,255,255,0.55); color: #fff; background: transparent; }
.cta-band .btn-outline:hover { background: rgba(255,255,255,0.12); color: #fff; }
@media (max-width: 768px) {
  .cta-band { padding: 44px 22px; }
  .cta-band > div:last-child { flex-direction: column; align-items: stretch; }
  .cta-band .btn { width: 100%; justify-content: center; }
}

/* ── BACKGROUNDS ── */
.bg-white   { background: #fff; }
.bg-surface { background: var(--surface); }
.bg-dark    { background: var(--dark); }
.bg-blue    { background: var(--blue); }

/* ── DOTS / GLOW DECORATIONS ── */
.dot-grid {
  background-image: radial-gradient(circle at 1px 1px, rgba(79,151,72,0.12) 1px, transparent 0);
  background-size: 30px 30px;
}
.glow {
  position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(80px); z-index: 0;
}
.glow-blue  { background: rgba(79,151,72,0.12); }
.glow-cyan  { background: rgba(79,151,72,0.10); }

/* ── DIVIDER ── */
.divider { width: 48px; height: 3px; background: var(--blue); border-radius: 99px; }
.divider.center { margin: 0 auto; }

/* ── EYEBROW ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(79,151,72,0.08); color: var(--blue);
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 99px; margin-bottom: 16px;
}
.eyebrow-white { background: rgba(255,255,255,0.15); color: #fff; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; border-radius: var(--r-sm); cursor: pointer;
  border: none; transition: all 0.2s; font-family: inherit; text-decoration: none;
}
.btn-lg  { font-size: 15px; padding: 14px 28px; }
.btn-md  { font-size: 14px; padding: 11px 22px; }
.btn-sm  { font-size: 13px; padding: 8px 16px; }
.btn-primary  { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); box-shadow: 0 8px 24px rgba(79,151,72,0.35); color: #fff; }
.btn-outline   { background: transparent; color: var(--blue); border: 1.5px solid var(--blue); }
.btn-outline:hover { background: rgba(79,151,72,0.06); }
.btn-white    { background: #fff; color: var(--dark); }
.btn-white:hover { background: #F8FAFC; box-shadow: 0 8px 24px rgba(15,23,42,0.12); color: var(--dark); }
.btn-ghost    { background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.25); }
.btn-ghost:hover { background: rgba(255,255,255,0.20); color: #fff; }

/* ── CARDS ── */
.card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-lg); box-shadow: var(--shadow-sm);
}
.card-hover { transition: transform 0.25s cubic-bezier(0.16,1,0.3,1), box-shadow 0.25s, border-color 0.25s; }
.card-hover:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(79,151,72,0.15); }
.card-glass {
  background: rgba(255,255,255,0.7); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.5); border-radius: var(--r-lg); box-shadow: var(--shadow-sm);
}

/* ── CHECK LIST ── */
.check-list { display: flex; flex-direction: column; gap: 12px; }
.check-item { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--slate); line-height: 1.5; }
.check-dot {
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0; margin-top: 2px;
  background: rgba(79,151,72,0.12); display: flex; align-items: center; justify-content: center;
}

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer; font-family: inherit;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 0; font-size: 16px; font-weight: 600; color: var(--dark); text-align: left;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--blue); }
.faq-icon { flex-shrink: 0; transition: transform 0.3s; color: var(--blue); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height 0.4s ease, padding 0.3s; }
.faq-a-inner { padding: 0 0 20px; font-size: 15px; color: var(--muted); line-height: 1.7; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-item.open .faq-a { max-height: 300px; }

/* ── BREADCRUMB ── */
.breadcrumb { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.breadcrumb a, .breadcrumb span { font-size: 13px; color: var(--muted); }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb .sep { color: #CBD5E1; }
.breadcrumb .current { color: var(--dark); font-weight: 500; }

/* ── BADGES ── */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px; border-radius: 99px; font-size: 12px; font-weight: 600;
}
.badge-blue  { background: rgba(79,151,72,0.10); color: var(--blue); }
.badge-green { background: rgba(79,151,72,0.10); color: #4F9748; }
.badge-dark  { background: rgba(15,23,42,0.08); color: var(--dark); }

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0; transition: all 0.3s ease;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
#navbar.scrolled {
  box-shadow: 0 1px 0 var(--border), 0 4px 20px rgba(15,23,42,0.06);
  padding: 11px 0;
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; }
.nav-logo  { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 42px; width: auto; border-radius: 8px; mix-blend-mode: multiply; }
.nav-wordmark { display: flex; flex-direction: column; line-height: 1.2; }
.nav-wordmark strong { font-size: 17px; font-weight: 700; color: #000000; }
.nav-wordmark strong span { color: #000000; }
.nav-wordmark small { font-size: 11px; font-weight: 500; color: #94A3B8; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--light); padding: 8px 12px; border-radius: 8px; transition: all 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--blue); background: rgba(79,151,72,0.06); }
.nav-links .nav-cta { background: var(--blue); color: #fff !important; padding: 9px 18px; border-radius: var(--r-sm); font-weight: 600; }
.nav-links .nav-cta:hover { background: var(--blue-dark); box-shadow: 0 4px 16px rgba(79,151,72,0.35); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; border-radius: 8px; color: var(--dark); }
.nav-toggle:hover { background: var(--surface); }
.nav-mobile { display: none; background: #fff; border-top: 1px solid var(--border); box-shadow: var(--shadow-md); }
.nav-mobile nav { padding: 12px 24px 20px; display: flex; flex-direction: column; }
.nav-mobile a { font-size: 15px; font-weight: 500; color: var(--dark); padding: 13px 0; border-bottom: 1px solid var(--surface); }
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--blue); }
.nav-mobile .nav-cta { margin-top: 12px; background: var(--blue); color: #fff; text-align: center; border-radius: var(--r-sm); border-bottom: none; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer { background: #F1F5F9; color: #0F172A; border-top: 1px solid var(--border); }
.footer-top { padding: 72px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 48px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-logo img { height: 42px; width: auto; border-radius: 8px; mix-blend-mode: multiply; }
.footer-logo-text strong { font-size: 17px; font-weight: 700; color: #0F172A; display: block; }
.footer-logo-text strong span { color: #0F172A; }
.footer-logo-text small { font-size: 11px; color: #94A3B8; }
.footer-desc { font-size: 14px; color: #64748B; line-height: 1.7; margin-bottom: 24px; max-width: 320px; }
.footer-contacts { display: flex; flex-direction: column; gap: 10px; }
.footer-contacts a, .footer-contact-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #475569; transition: color 0.2s; }
.footer-contacts a:hover { color: #4F9748; }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #94A3B8; margin-bottom: 20px; }
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { font-size: 14px; color: #475569; transition: color 0.2s; }
.footer-nav a:hover { color: #4F9748; }
.footer-badge { margin-top: 24px; background: rgba(79,151,72,0.06); border: 1px solid rgba(79,151,72,0.14); border-radius: 14px; padding: 14px 16px; display: flex; align-items: center; gap: 12px; }
.footer-badge-icon { width: 38px; height: 38px; border-radius: 10px; background: rgba(79,151,72,0.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.footer-badge-title { font-size: 13px; font-weight: 800; color: #0F172A; line-height: 1.25; margin-bottom: 2px; }
.footer-badge-sub { font-size: 12px; color: #64748B; line-height: 1.35; }
.footer-bottom { border-top: 1px solid var(--border); padding: 20px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p, .footer-bottom a { font-size: 12px; color: #94A3B8; }
.footer-bottom a:hover { color: #4F9748; }
.footer-legal { display: flex; gap: 20px; }

/* ══════════════════════════════════════════
   HERO VARIANTS
══════════════════════════════════════════ */
.hero-main {
  min-height: 100vh; display: flex; align-items: center; overflow: hidden; position: relative;
  background: linear-gradient(135deg, #fff 0%, #F8FAFC 60%, #F1F5F9 100%);
  padding-top: 80px;
}
.hero-page {
  padding: 150px 0 72px; background: linear-gradient(180deg, #F6F9FF 0%, #FFFFFF 100%);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
/* ── HERO PAGE VISUAL (Unterseiten) ── */
.hero-page-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: center; }
.hero-page-grid > div:first-child { min-width: 0; }
.hero-visual { position: relative; }
.hero-visual-frame { position: absolute; inset: -18px -18px 0 0; border-radius: 30px; background: linear-gradient(135deg, rgba(79,151,72,0.12), rgba(79,151,72,0.08)); z-index: 0; }
.hero-visual-img { position: relative; z-index: 1; border-radius: 24px; overflow: hidden; aspect-ratio: 3/2; box-shadow: 0 28px 70px -18px rgba(15,23,42,0.32); }
.hero-visual-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-visual-badge { position: absolute; z-index: 2; left: -16px; bottom: 24px; display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid rgba(79,151,72,0.14); border-radius: 16px; padding: 12px 16px; box-shadow: 0 14px 34px rgba(15,23,42,0.16); }
.hero-visual-badge .hvb-icon { width: 38px; height: 38px; border-radius: 11px; background: rgba(79,151,72,0.10); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-visual-badge .hvb-title { font-size: 13px; font-weight: 800; color: #0F172A; line-height: 1.2; white-space: nowrap; }
.hero-visual-badge .hvb-sub { font-size: 11px; color: #64748B; margin-top: 2px; white-space: nowrap; }
@media (max-width: 980px) {
  .hero-page-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-visual { display: block; margin-top: 8px; }
  .hero-visual-frame { display: none; }
  .hero-visual-badge { left: 12px; }
}
/* ── BLOG THEMEN-LINKS ── */
.blog-topics { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 48px; }
.blog-topics-label { font-size: 13px; font-weight: 700; color: #0F172A; margin-right: 4px; }
.blog-topic { padding: 8px 16px; border-radius: 99px; border: 1px solid rgba(15,23,42,0.12); background: #fff; font-size: 13px; font-weight: 600; color: #475569; transition: all 0.2s; }
.blog-topic:hover { border-color: rgba(79,151,72,0.4); color: #4F9748; background: rgba(79,151,72,0.04); }
.blog-topic-cta { background: rgba(79,151,72,0.10); border-color: transparent; color: #4F9748; }
.blog-topic-cta:hover { background: #4F9748; color: #fff; }
/* ── HERO PHOTO FESTPREIS BADGE ── */
.hero-festpreis-badge {
  position: absolute; top: 64px; right: -16px;
  background: #fff; border: 1px solid rgba(79,151,72,0.14);
  border-radius: 16px; padding: 12px 16px;
  box-shadow: 0 14px 34px rgba(15,23,42,0.16);
  display: flex; align-items: center; gap: 12px; z-index: 3;
  animation: fadeUp 0.6s ease 0.5s both;
}
.hfb-icon { width: 38px; height: 38px; border-radius: 11px; background: rgba(79,151,72,0.10); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hfb-title { font-size: 13px; font-weight: 800; color: #0F172A; line-height: 1.2; white-space: nowrap; }
.hfb-rating { display: flex; align-items: center; gap: 5px; margin-top: 4px; }
.hfb-stars { display: inline-flex; align-items: center; gap: 1px; }
.hfb-rating strong { font-size: 12px; font-weight: 800; color: #0F172A; }
.hfb-count { font-size: 11px; color: #94A3B8; white-space: nowrap; }
@media (max-width: 900px) { .hero-festpreis-badge { top: 44px; } }
.hero-page-content { position: relative; z-index: 1; }

/* ══════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════ */
@keyframes fadeUp    { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn    { from { opacity: 0; } to { opacity: 1; } }
@keyframes ping      { 75%, 100% { transform: scale(2); opacity: 0; } }
@keyframes shimmer   { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }
@keyframes float     { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ══════════════════════════════════════════
   BENTO GRID
══════════════════════════════════════════ */
.bento { display: grid; gap: 16px; }
.bento-2x2  { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; }
.bento-3col { grid-template-columns: 1fr 1fr 1fr; }
.bento-span2 { grid-column: span 2; }
.bento-cell { border-radius: var(--r-lg); padding: 32px; position: relative; overflow: hidden; }

/* ══════════════════════════════════════════
   BLOG
══════════════════════════════════════════ */
.blog-grid  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card  { display: flex; flex-direction: column; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border); background: #fff; box-shadow: var(--shadow-xs); transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(79,151,72,0.15); }
.blog-card-img { height: 200px; background: linear-gradient(135deg, #F8FAFC, #EEF2F7); overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { display: flex; flex-direction: column; flex: 1; padding: 24px; }
.blog-card-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; font-size: 12px; color: var(--muted); }
.blog-card-title { font-size: 18px; font-weight: 700; color: var(--dark); line-height: 1.3; margin-bottom: 10px; }
.blog-card-title a:hover { color: var(--blue); }
.blog-card-excerpt { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
.blog-card-link { font-size: 14px; font-weight: 600; color: var(--blue); display: inline-flex; align-items: center; gap: 6px; margin-top: auto; align-self: flex-start; }
.blog-card-link:hover { gap: 10px; }

/* Article styling */
.article-hero { padding: 128px 0 120px; background: linear-gradient(135deg, var(--dark), #2F5C2B); position: relative; overflow: hidden; }
.article-hero-split { padding: 128px 0 72px; background: linear-gradient(180deg, #F8FAFC 0%, #fff 100%); position: relative; overflow: hidden; }
.article-hero-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center; }
.article-hero-img { border-radius: 24px; overflow: hidden; box-shadow: 0 28px 64px -18px rgba(15,23,42,0.30); aspect-ratio: 3/2; }
.article-hero-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
@media (max-width: 900px) { .article-hero-grid { grid-template-columns: 1fr; gap: 32px; } .article-hero-split { padding: 104px 0 48px; } .article-hero-img { aspect-ratio: 16/10; } }
.article-body { max-width: 740px; margin: 0 auto; padding: 0 24px; }
.article-body h2 { font-size: 26px; font-weight: 700; color: var(--dark); margin: 48px 0 16px; }
.article-body h3 { font-size: 20px; font-weight: 700; color: var(--dark); margin: 32px 0 12px; }
.article-body p  { font-size: 17px; color: var(--light); line-height: 1.8; margin-bottom: 20px; }
.article-body ul { margin: 16px 0 24px 20px; list-style: disc; }
.article-body ul li { font-size: 17px; color: var(--light); line-height: 1.7; margin-bottom: 8px; }
.article-body strong { color: var(--dark); font-weight: 600; }
.article-body .highlight-box { background: var(--surface2); border-left: 4px solid var(--blue); border-radius: 0 var(--r-sm) var(--r-sm) 0; padding: 20px 24px; margin: 28px 0; }

/* ══════════════════════════════════════════
   CONTACT FORM
══════════════════════════════════════════ */
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-label { display: block; font-size: 14px; font-weight: 500; color: var(--dark); margin-bottom: 7px; }
.form-input {
  width: 100%; padding: 13px 16px; border: 1.5px solid rgba(15,23,42,0.12); border-radius: var(--r-sm);
  font-size: 15px; background: var(--surface); color: var(--dark); font-family: inherit; transition: all 0.2s;
}
.form-input:focus { outline: none; border-color: var(--blue); background: #fff; box-shadow: 0 0 0 3px rgba(79,151,72,0.12); }
textarea.form-input { resize: vertical; min-height: 120px; }

/* ══════════════════════════════════════════
   STATS / NUMBERS
══════════════════════════════════════════ */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-box { text-align: center; padding: 32px 20px; border-radius: var(--r-lg); }
.stat-number { font-size: clamp(2.4rem, 5vw, 3.4rem); font-weight: 800; color: var(--blue); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 14px; color: var(--muted); }

/* ══════════════════════════════════════════
   TRUST STRIP
══════════════════════════════════════════ */
.trust-strip { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--light); }
.trust-item svg { color: var(--blue); flex-shrink: 0; }
.trust-sep { width: 1px; height: 28px; background: var(--border); }
.stars-row { display: flex; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .bento-3col { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .bento-2x2, .bento-3col { grid-template-columns: 1fr; }
  .bento-span2 { grid-column: span 1; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 64px 0; }
  .hero-page { padding: 110px 0 60px; }
  .article-hero { padding: 104px 0 100px; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ── MOBILE ZENTRIERUNG ── */
@media (max-width: 768px) {
  /* hero-eyebrow ("Geprüfter Meisterbetrieb · Paderborn") zentrieren */
  .hero-eyebrow { display: flex !important; width: fit-content !important; margin-left: auto !important; margin-right: auto !important; }

  /* Alle eyebrow-Labels zentrieren */
  .eyebrow { display: block; text-align: center; }

  /* Standardseiten-Hero / Bänder: Überschriften-Spalte zentrieren */
  .ueber-band > div,
  .gebiet-band > div { text-align: center; }

  /* Divider zentrieren */
  .divider { margin-left: auto; margin-right: auto; }

  /* Buttons in Bändern zentrieren */
  .ueber-band > div > a.btn,
  .gebiet-band > div > a.btn { margin: 0 auto; display: block; width: fit-content; }

  /* Einsatzgebiet Pills zentrieren */
  .gebiet-grid { justify-content: center; }

  /* two-col immer einspaltig auf Mobil (überschreibt Inline-Grids) */
  .two-col { grid-template-columns: 1fr !important; gap: 40px !important; }

  /* two-col (Leistungsseite): NUR Eyebrow + Überschrift zentriert */
  .two-col .eyebrow { display: block; text-align: center; }
  .two-col h2, .two-col h3 { text-align: center; }
  /* Fließtext & alle übrigen Inhalte LINKSBÜNDIG */
  .two-col p,
  .two-col ul,
  .two-col .check-list,
  .two-col .check-item { text-align: left; }
  /* Boxen (grün & weiß) komplett linksbündig */
  .two-col [style*="border-radius:28px"],
  .two-col [style*="border-radius:28px"] * { text-align: left; }
  /* Button unter dem Text linksbündig */
  .two-col .btn { display: inline-flex; }

  /* Quick-Nav zentrieren */
  .quicknav-item { text-align: center; }

  /* Zentrierte Section-Intros: Überschrift mittig, Untertext linksbündig + volle Breite (kein rechter Leerraum) */
  .section div[style*="text-align:center"][style*="margin-bottom:56px"] { max-width: 100% !important; }
  .section div[style*="text-align:center"][style*="margin-bottom:56px"] p { text-align: left; }

  /* Blog-Sektion Header: Überschrift mittig, Inhalt gestapelt */
  .blog-section-header { flex-direction: column !important; align-items: center !important; text-align: center; }
  .blog-section-header .eyebrow { text-align: center; }
  .blog-section-header h2 { text-align: center; }
  .blog-section-header > a.btn { align-self: center; margin-top: 8px; }

  /* Blog-Karten linksbündig */
  .blog-card, .blog-card-body, .blog-card-title,
  .blog-card-excerpt, .blog-card-meta { text-align: left; }

  /* Bento-Chips größer auf Mobil (knappes Padding, damit 2/Zeile passen) */
  .bento-chip { font-size: 13px; padding: 6px 9px; }
  .bento-chips { gap: 6px; }
}

/* ── DATENSCHUTZ-BANNER (DSGVO Cookie-Consent) ── */
.consent-banner { position: fixed; bottom: 18px; left: 18px; right: 18px; max-width: 720px; margin: 0 auto; background: #fff; border: 1px solid var(--border); border-radius: 18px; box-shadow: 0 24px 60px -14px rgba(15,23,42,0.30); padding: 26px 28px; z-index: 9999; }
.consent-banner[hidden] { display: none; }
.consent-banner-inner { display: flex; flex-direction: column; gap: 16px; }
.consent-banner-header { display: flex; flex-direction: column; gap: 5px; }
.consent-banner-subtitle { font-size: 12px; font-weight: 700; color: #4F9748; text-transform: uppercase; letter-spacing: 0.07em; }
.consent-banner-title { font-size: 18px; font-weight: 800; color: #0F172A; letter-spacing: -0.01em; }
.consent-banner-revoke { font-size: 12px; color: #94A3B8; }
.consent-banner-text { font-size: 14px; color: #475569; line-height: 1.6; margin: 0; }
.consent-banner-text a { color: #4F9748; text-decoration: underline; }
.consent-banner-text a:hover { color: #3D7838; }
.consent-banner-footer { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 4px; }
.consent-banner-links { display: flex; gap: 20px; flex-wrap: wrap; }
.consent-banner-links a { font-size: 13px; font-weight: 600; color: #64748B; text-decoration: none; transition: color 0.2s; }
.consent-banner-links a:hover { color: #4F9748; text-decoration: underline; }
.consent-banner-actions { display: flex; gap: 10px; }
@media (max-width: 560px) {
  .consent-banner { bottom: 12px; left: 12px; right: 12px; padding: 22px 20px; }
  .consent-banner-footer { flex-direction: column; align-items: stretch; gap: 14px; }
  .consent-banner-links { justify-content: center; }
  .consent-banner-actions { width: 100%; }
  .consent-banner-actions .btn { flex: 1; justify-content: center; }
}
