/*
Theme Name: QVM Verband
Theme URI: https://qvm-kmu.com
Author: QVM
Author URI: https://qvm-kmu.com
Description: Modernes, performantes WordPress-Theme für den QVM Verband. Navy/Gold Design, Scroll-Animationen, Zahlen-Counter, Testimonial-Karussell, WooCommerce-kompatibel. Fonts lokal, keine externen Requests (DSGVO).
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: qvm
Tags: business, woocommerce, custom-colors, custom-logo, custom-menu, featured-images, sticky-post, translation-ready
*/

/* ==========================================================================
   QVM Theme – Design Tokens
   ========================================================================== */
:root {
  --navy: #0f1f38;
  --navy-700: #16294a;
  --navy-600: #1d345c;
  --gold: #c8a951;
  --gold-soft: #d8bd74;
  --bg: #f8f9fb;
  --surface: #ffffff;
  --ink: #1a2334;
  --muted: #5d6b82;
  --line: #e7eaf1;
  --shadow-sm: 0 2px 10px rgba(15, 31, 56, .06);
  --shadow-md: 0 10px 30px rgba(15, 31, 56, .10);
  --shadow-lg: 0 24px 60px rgba(15, 31, 56, .16);
  --radius: 16px;
  --radius-lg: 24px;
  --container: 1200px;
  --header-h: 84px;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Sora", var(--font);
}

/* ==========================================================================
   Local Fonts (self-hosted – DSGVO, keine externen Requests)
   Lege passende .woff2 Dateien in /assets/fonts/ ab. Fällt ansonsten
   sauber auf den System-Font-Stack zurück.
   ========================================================================== */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: local("Inter"), url("assets/fonts/Inter-Variable.woff2") format("woff2");
}
@font-face {
  font-family: "Sora";
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: local("Sora"), url("assets/fonts/Sora-Variable.woff2") format("woff2");
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.12; letter-spacing: -.02em; margin: 0 0 .5em; color: var(--navy); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.85rem); font-weight: 700; }
h3 { font-size: 1.3rem; font-weight: 600; }
p { margin: 0 0 1rem; color: var(--muted); }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.eyebrow {
  display: inline-block; font-family: var(--font-display); font-weight: 600;
  font-size: .8rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.section-head { max-width: 660px; margin: 0 auto clamp(36px, 5vw, 60px); text-align: center; }
.section-head p { font-size: 1.08rem; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  --glow: transparent;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  padding: 15px 28px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s;
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; transition: transform .35s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: var(--navy);
  box-shadow: 0 8px 24px rgba(200, 169, 81, .28);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(200, 169, 81, .5), 0 0 0 4px rgba(200, 169, 81, .14);
}
.btn-ghost {
  background: rgba(255, 255, 255, .08);
  color: #fff; border-color: rgba(255, 255, 255, .35);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, .16); transform: translateY(-3px); border-color: #fff; }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-600); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-sm { padding: 11px 20px; font-size: .92rem; }

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), backdrop-filter .4s;
  background: transparent;
}
.site-header.scrolled {
  background: rgba(15, 31, 56, .92);
  backdrop-filter: blur(12px);
  box-shadow: 0 6px 30px rgba(15, 31, 56, .25);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h); transition: height .4s var(--ease);
}
.site-header.scrolled .nav { height: 66px; }
.brand { display: flex; align-items: center; gap: 12px; color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; }
.brand .q-logo {
  width: 44px; height: 44px; border-radius: 13px; flex: none;
  display: grid; place-items: center;
  background: linear-gradient(140deg, var(--gold), #a9863a 80%);
  color: var(--navy); font-family: var(--font-display); font-weight: 800; font-size: 1.5rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .4), 0 8px 20px rgba(200, 169, 81, .35);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.brand:hover .q-logo { transform: rotate(-6deg) scale(1.06); box-shadow: 0 12px 28px rgba(200, 169, 81, .5); }
.brand small { display: block; font-size: .68rem; font-weight: 500; letter-spacing: .04em; color: var(--gold-soft); margin-top: -3px; }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu a {
  position: relative; color: rgba(255, 255, 255, .85); font-weight: 500; font-size: .96rem;
  padding: 9px 14px; border-radius: 8px; transition: color .25s, background .25s;
}
.nav-menu a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px;
  background: var(--gold); border-radius: 2px; transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav-menu a:hover { color: #fff; }
.nav-menu a:hover::after, .nav-menu .current-menu-item > a::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none; width: 46px; height: 46px; border: 0; background: transparent; cursor: pointer;
  flex-direction: column; justify-content: center; gap: 6px; padding: 0;
}
.nav-toggle span { display: block; height: 2px; width: 26px; background: #fff; border-radius: 2px; transition: transform .35s var(--ease), opacity .25s; margin: 0 auto; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: calc(var(--header-h) + 40px) 0 80px;
  background: radial-gradient(120% 120% at 80% 0%, var(--navy-600) 0%, var(--navy) 55%);
  color: #fff; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-bg .orb { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .5; }
.hero-bg .orb-1 { width: 480px; height: 480px; top: -120px; right: -80px; background: radial-gradient(circle, rgba(200,169,81,.5), transparent 70%); }
.hero-bg .orb-2 { width: 420px; height: 420px; bottom: -140px; left: -100px; background: radial-gradient(circle, rgba(29,52,92,.9), transparent 70%); }
.hero-bg .grid-lines {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 64px 64px; mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 75%);
}
.hero-inner { position: relative; z-index: 1; max-width: 880px; }
.hero .badge {
  display: inline-flex; align-items: center; gap: 9px; font-size: .85rem; font-weight: 500;
  padding: 8px 16px; border-radius: 999px; margin-bottom: 26px;
  background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .14); color: var(--gold-soft);
}
.hero .badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 0 rgba(200,169,81,.7); animation: pulse 2.4s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(200,169,81,.55); } 70% { box-shadow: 0 0 0 12px rgba(200,169,81,0); } 100% { box-shadow: 0 0 0 0 rgba(200,169,81,0); } }
.hero h1 { color: #fff; font-size: clamp(2.4rem, 6vw, 4.4rem); font-weight: 800; margin-bottom: 18px; }
.hero h1 .rotator { color: var(--gold); display: inline-block; min-height: 1.1em; }
.hero h1 .rotator .word { display: inline-block; transition: opacity .5s var(--ease), transform .5s var(--ease); }
.hero h1 .rotator .word.out { opacity: 0; transform: translateY(-14px); }
.hero h1 .rotator .word.in { opacity: 0; transform: translateY(14px); }
.hero-sub { font-size: clamp(1.05rem, 2vw, 1.3rem); color: rgba(255, 255, 255, .8); max-width: 620px; margin-bottom: 36px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; }
.scroll-hint { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 1; color: rgba(255,255,255,.5); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.scroll-hint .mouse { width: 24px; height: 38px; border: 2px solid rgba(255,255,255,.4); border-radius: 14px; position: relative; }
.scroll-hint .mouse::after { content: ""; position: absolute; top: 7px; left: 50%; width: 4px; height: 7px; background: var(--gold); border-radius: 2px; transform: translateX(-50%); animation: wheel 1.8s infinite; }
@keyframes wheel { 0% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%, 12px); } }

/* ==========================================================================
   Trust Bar / Counters
   ========================================================================== */
.trust { background: var(--navy); color: #fff; padding: 0; }
.trust-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; padding: 46px 0; margin-top: -1px;
}
.stat { text-align: center; position: relative; }
.stat:not(:last-child)::after { content: ""; position: absolute; right: -12px; top: 50%; transform: translateY(-50%); width: 1px; height: 52px; background: rgba(255,255,255,.12); }
.stat .num { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.1rem, 4vw, 3rem); color: var(--gold); line-height: 1; }
.stat .label { color: rgba(255, 255, 255, .72); font-size: .98rem; margin-top: 8px; }

/* ==========================================================================
   Reveal animations (Intersection Observer)
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .40s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
  .hero h1 .rotator .word { transition: none; }
}

/* ==========================================================================
   Benefits Grid
   ========================================================================== */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px; box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
  position: relative; overflow: hidden;
}
.card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: linear-gradient(90deg, var(--gold), transparent); transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease); }
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card .icon {
  width: 58px; height: 58px; border-radius: 15px; display: grid; place-items: center; margin-bottom: 20px;
  background: linear-gradient(140deg, rgba(15,31,56,.06), rgba(200,169,81,.16)); color: var(--navy);
  transition: transform .4s var(--ease), background .4s;
}
.card:hover .icon { transform: scale(1.08) rotate(-4deg); background: linear-gradient(140deg, var(--navy), var(--navy-600)); color: var(--gold); }
.card .icon svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: 8px; }
.card p { margin: 0; font-size: .98rem; }

/* ==========================================================================
   Document Library (Tabs)
   ========================================================================== */
.tabs { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 44px; }
.tab {
  font-family: var(--font-display); font-weight: 600; font-size: .95rem;
  padding: 12px 24px; border-radius: 999px; border: 1px solid var(--line); background: #fff;
  color: var(--muted); cursor: pointer; transition: all .3s var(--ease);
}
.tab:hover { color: var(--navy); border-color: var(--gold); }
.tab.active { background: var(--navy); color: #fff; border-color: var(--navy); box-shadow: var(--shadow-md); }
.tab-panels { position: relative; }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeUp .55s var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.product {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  display: flex; flex-direction: column;
}
.product:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product .thumb { aspect-ratio: 16/10; background: linear-gradient(135deg, var(--navy-600), var(--navy)); position: relative; display: grid; place-items: center; color: var(--gold); }
.product .thumb svg { width: 54px; height: 54px; opacity: .9; }
.product .tag { position: absolute; top: 14px; left: 14px; font-size: .72rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--navy); background: var(--gold); padding: 5px 11px; border-radius: 999px; }
.product .body { padding: 22px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.product h3 { font-size: 1.12rem; margin: 0; }
.product .desc { font-size: .92rem; margin: 0; }
.product .foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 8px; }
.product .price { font-family: var(--font-display); font-weight: 700; color: var(--navy); font-size: 1.15rem; }
.product .price small { font-weight: 500; color: var(--muted); font-size: .8rem; }

/* ==========================================================================
   About
   ========================================================================== */
.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.about-text h2 { text-align: left; }
.about-text .check { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 16px; }
.about-text .check svg { width: 24px; height: 24px; flex: none; color: var(--gold); margin-top: 2px; }
.about-text .check b { color: var(--navy); display: block; font-family: var(--font-display); }
.about-visual { position: relative; }
.about-visual .panel {
  border-radius: var(--radius-lg); aspect-ratio: 4/3; background: linear-gradient(140deg, var(--navy), var(--navy-600));
  box-shadow: var(--shadow-lg); overflow: hidden; position: relative; display: grid; place-items: center;
}
.about-visual .panel .big-q { font-family: var(--font-display); font-weight: 800; font-size: 16rem; color: rgba(200,169,81,.14); line-height: 1; }
.about-visual .float-card {
  position: absolute; background: #fff; border-radius: 14px; padding: 16px 20px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px; animation: float 5s ease-in-out infinite;
}
.about-visual .float-card .fc-icon { width: 40px; height: 40px; border-radius: 10px; background: linear-gradient(140deg, var(--gold), var(--gold-soft)); display: grid; place-items: center; color: var(--navy); }
.about-visual .float-card b { font-family: var(--font-display); color: var(--navy); display: block; font-size: 1.05rem; }
.about-visual .float-card span { font-size: .8rem; color: var(--muted); }
.about-visual .fc-1 { top: 24px; left: -24px; }
.about-visual .fc-2 { bottom: 30px; right: -20px; animation-delay: -2.5s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ==========================================================================
   Testimonials Carousel
   ========================================================================== */
.testimonials { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.testimonials .section-head h2 { color: #fff; }
.testimonials .section-head p { color: rgba(255,255,255,.7); }
.carousel { position: relative; max-width: 760px; margin: 0 auto; min-height: 280px; }
.slide {
  position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .7s var(--ease), transform .7s var(--ease);
  transform: translateY(12px); text-align: center;
}
.slide.active { opacity: 1; visibility: visible; transform: none; position: relative; }
.slide .quote-mark { font-family: var(--font-display); font-size: 5rem; color: var(--gold); line-height: .4; height: 36px; }
.slide blockquote { font-family: var(--font-display); font-size: clamp(1.25rem, 2.6vw, 1.7rem); font-weight: 500; line-height: 1.4; margin: 0 0 26px; color: #fff; }
.slide .author { display: flex; align-items: center; justify-content: center; gap: 14px; }
.slide .avatar { width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(140deg, var(--gold), var(--gold-soft)); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; color: var(--navy); }
.slide .author .meta { text-align: left; }
.slide .author b { display: block; font-family: var(--font-display); }
.slide .author span { font-size: .88rem; color: var(--gold-soft); }
.carousel-dots { display: flex; justify-content: center; gap: 10px; margin-top: 34px; }
.carousel-dots button { width: 10px; height: 10px; border-radius: 50%; border: 0; background: rgba(255,255,255,.25); cursor: pointer; padding: 0; transition: all .3s; }
.carousel-dots button.active { background: var(--gold); width: 30px; border-radius: 5px; }

/* ==========================================================================
   Blog Preview
   ========================================================================== */
.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.post-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s var(--ease); display: flex; flex-direction: column; }
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.post-card .thumb { aspect-ratio: 16/9; overflow: hidden; background: linear-gradient(135deg, var(--navy-600), var(--navy)); }
.post-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.post-card:hover .thumb img { transform: scale(1.06); }
.post-card .body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-card .meta { font-size: .8rem; color: var(--gold); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.post-card h3 { font-size: 1.2rem; margin: 0; transition: color .25s; }
.post-card:hover h3 { color: var(--navy-600); }
.post-card .excerpt { font-size: .94rem; margin: 0; }
.post-card .read { margin-top: auto; padding-top: 6px; color: var(--navy); font-family: var(--font-display); font-weight: 600; font-size: .92rem; display: inline-flex; gap: 6px; align-items: center; }
.post-card .read svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.post-card:hover .read svg { transform: translateX(4px); }

/* ==========================================================================
   CTA Banner
   ========================================================================== */
.cta-banner { padding: clamp(56px, 7vw, 96px) 0; }
.cta-box {
  background: radial-gradient(120% 140% at 0% 0%, var(--navy-600), var(--navy));
  border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 72px); text-align: center; color: #fff;
  position: relative; overflow: hidden; box-shadow: var(--shadow-lg);
}
.cta-box::before { content: ""; position: absolute; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(200,169,81,.35), transparent 70%); top: -120px; right: -60px; filter: blur(20px); }
.cta-box h2 { color: #fff; position: relative; }
.cta-box p { color: rgba(255,255,255,.8); max-width: 560px; margin: 0 auto 30px; position: relative; }
.cta-box .hero-cta { justify-content: center; position: relative; }

/* ==========================================================================
   Newsletter
   ========================================================================== */
.newsletter-box { max-width: 720px; margin: 0 auto; text-align: center; }
.nl-form { display: flex; gap: 12px; max-width: 540px; margin: 28px auto 14px; }
.nl-field { position: relative; flex: 1; }
.nl-field input {
  width: 100%; padding: 16px 20px; border: 2px solid var(--line); border-radius: 999px;
  font-family: var(--font); font-size: 1rem; background: #fff; transition: border-color .3s, box-shadow .3s; color: var(--ink);
}
.nl-field input::placeholder { color: var(--muted); }
.nl-field input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 5px rgba(200,169,81,.15); }
.nl-note { font-size: .82rem; color: var(--muted); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--navy); color: rgba(255,255,255,.7); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; }
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { font-size: .95rem; max-width: 300px; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; font-family: var(--font-display); }
.footer-col ul li { margin-bottom: 11px; }
.footer-col a { color: rgba(255,255,255,.7); font-size: .95rem; transition: color .25s, padding-left .25s; }
.footer-col a:hover { color: var(--gold); padding-left: 4px; }
.socials { display: flex; gap: 12px; margin-top: 8px; }
.socials a { width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; background: rgba(255,255,255,.06); color: #fff; transition: transform .3s var(--ease), background .3s, color .3s; }
.socials a:hover { transform: translateY(-4px); background: var(--gold); color: var(--navy); padding-left: 0; }
.socials svg { width: 19px; height: 19px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 24px 0; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: .85rem; }
.footer-bottom a:hover { color: var(--gold); }

/* ==========================================================================
   FAQ-Seite
   ========================================================================== */
.faq-hero {
  position: relative; overflow: hidden; color: #fff; text-align: center;
  padding: calc(var(--header-h) + 70px) 0 70px;
  background: radial-gradient(120% 130% at 50% 0%, var(--navy-600) 0%, var(--navy) 60%);
}
.faq-hero .hero-bg .orb-1 { top: -160px; right: 10%; opacity: .4; }
.faq-hero h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.4rem); position: relative; }
.faq-hero p { color: rgba(255,255,255,.78); max-width: 540px; margin: 8px auto 0; position: relative; font-size: 1.1rem; }
.faq-wrap { max-width: 820px; }
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); transition: box-shadow .35s var(--ease), border-color .35s;
}
.faq-item.open { box-shadow: var(--shadow-md); border-color: rgba(200,169,81,.5); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 26px; background: transparent; border: 0; cursor: pointer; text-align: left;
  font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; color: var(--navy);
  transition: color .25s;
}
.faq-q:hover { color: var(--navy-600); }
.faq-chevron { width: 22px; height: 22px; flex: none; color: var(--gold); transition: transform .4s var(--ease); }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .42s var(--ease); }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; }
.faq-a-inner p { margin: 0; padding: 0 26px 24px; color: var(--muted); font-size: 1.02rem; }
.faq-cta { text-align: center; margin-top: 56px; padding: 44px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.faq-cta h2 { font-size: 1.7rem; }
.faq-cta p { margin-bottom: 22px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .benefits-grid, .product-grid, .posts-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { max-width: 480px; margin: 0 auto; }
}
@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 84vw); flex-direction: column; align-items: stretch;
    background: var(--navy); padding: calc(var(--header-h) + 20px) 24px 30px; gap: 6px;
    transform: translateX(100%); transition: transform .45s var(--ease); box-shadow: var(--shadow-lg);
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-menu a { padding: 14px 16px; font-size: 1.05rem; border-radius: 10px; }
  .nav-menu a::after { display: none; }
  .nav-menu a:hover { background: rgba(255,255,255,.06); }
  .nav-actions .btn-navy, .nav-actions .login-link { display: none; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); gap: 36px 16px; }
  .stat:nth-child(2)::after { display: none; }
}
/* ==========================================================================
   Beitragsinhalte / Pagination
   ========================================================================== */
.entry-content { font-size: 1.08rem; }
.entry-content > * { margin-bottom: 1.2rem; }
.entry-content h2, .entry-content h3 { margin-top: 2rem; text-align: left; }
.entry-content a { color: var(--navy-600); text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 3px; }
.entry-content a:hover { color: var(--gold); }
.entry-content img { border-radius: var(--radius); }
.entry-content blockquote { border-left: 4px solid var(--gold); padding-left: 22px; font-family: var(--font-display); font-size: 1.3rem; color: var(--navy); }
.entry-content ul, .entry-content ol { padding-left: 1.4em; }
.entry-content li { margin-bottom: .5rem; color: var(--ink); }
.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }
.pagination .nav-links { display: inline-flex; gap: 8px; }
.pagination a, .pagination .current {
  display: grid; place-items: center; min-width: 44px; height: 44px; padding: 0 14px;
  border-radius: 10px; border: 1px solid var(--line); background: #fff; font-family: var(--font-display); font-weight: 600;
  transition: all .25s var(--ease);
}
.pagination a:hover { border-color: var(--gold); color: var(--navy); transform: translateY(-2px); }
.pagination .current { background: var(--navy); color: #fff; border-color: var(--navy); }

@media (max-width: 560px) {
  body { font-size: 16px; }
  .benefits-grid, .product-grid, .posts-grid, .footer-grid { grid-template-columns: 1fr; }
  .nl-form { flex-direction: column; }
  .nl-form .btn { justify-content: center; }
  .stat:not(:last-child)::after { display: none; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }
}
