/* ═══════════════════════════════════════════
   BCN THEME – main.css
   Businesscenter Niederrhein · Custom Theme
   ═══════════════════════════════════════════ */

/* VARIABLES */
:root {
  --navy: #084a79;
  --navy-dark: #052e4d;
  --navy-deep: #031d33;
  --navy-mid: #0a5a93;
  --navy-light: #0d6ebd;
  --white: #ffffff;
  --bg: #f8fafc;
  --bg-warm: #f1f5f9;
  --ink: #0f172a;
  --ink-2: #334155;
  --ink-3: #64748b;
  --ink-4: #94a3b8;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --blue: #2563eb;
  --blue-bg: #eff6ff;
  --emerald: #059669;
  --emerald-bg: #ecfdf5;
  --amber: #d97706;
  --amber-bg: #fffbeb;
  --violet: #7c3aed;
  --violet-bg: #f5f3ff;
  --font: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'DM Serif Display', Georgia, serif;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-full: 9999px;
  --shadow-xs: 0 1px 2px rgba(8,74,121,.04);
  --shadow-sm: 0 1px 3px rgba(8,74,121,.06), 0 1px 2px rgba(8,74,121,.04);
  --shadow-md: 0 4px 12px rgba(8,74,121,.07), 0 2px 4px rgba(8,74,121,.04);
  --shadow-lg: 0 10px 25px rgba(8,74,121,.08), 0 4px 10px rgba(8,74,121,.04);
  --shadow-xl: 0 20px 40px rgba(8,74,121,.1), 0 8px 16px rgba(8,74,121,.05);
}
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale; }
body { font-family:var(--font); color:var(--ink); background:var(--bg); line-height:1.6; overflow-x:hidden; }
a { text-decoration:none; color:inherit; }
img { max-width:100%; display:block; }
.container { max-width:1200px; margin:0 auto; padding:0 1.5rem; }

/* ─── REVEAL ANIMATIONS ─── */
.reveal { opacity:0; transform:translateY(28px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.reveal.vis { opacity:1; transform:none; }
.reveal-d1 { transition-delay:.08s; }
.reveal-d2 { transition-delay:.16s; }
.reveal-d3 { transition-delay:.24s; }
.reveal-d4 { transition-delay:.32s; }
.reveal-d5 { transition-delay:.40s; }
.reveal-d6 { transition-delay:.48s; }

/* ─── BUTTONS ─── */
.btn { display:inline-flex; align-items:center; gap:8px; font-family:var(--font); font-weight:600; font-size:.9rem; padding:13px 26px; border-radius:var(--r-sm); border:none; cursor:pointer; transition:all .2s ease; }
.btn-lg { padding:16px 32px; font-size:1rem; border-radius:10px; }
.btn-navy { background:var(--navy); color:#fff; box-shadow:0 2px 8px rgba(8,74,121,.25); }
.btn-navy:hover { background:var(--navy-dark); box-shadow:0 4px 16px rgba(8,74,121,.3); transform:translateY(-1px); }
.btn-white { background:#fff; color:var(--navy); border:1.5px solid var(--border); }
.btn-white:hover { border-color:var(--navy); background:rgba(8,74,121,.03); }
.btn-ghost { background:rgba(255,255,255,.1); color:#fff; border:1.5px solid rgba(255,255,255,.2); }
.btn-ghost:hover { background:rgba(255,255,255,.18); border-color:rgba(255,255,255,.35); }

/* ─── NAVIGATION ─── */
.nav { position:fixed; top:0; left:0; right:0; z-index:100; height:68px; display:flex; align-items:center; background:rgba(248,250,252,.85); backdrop-filter:blur(20px) saturate(180%); -webkit-backdrop-filter:blur(20px) saturate(180%); border-bottom:1px solid rgba(226,232,240,.6); transition:box-shadow .3s; }
.nav.scrolled { box-shadow:var(--shadow-sm); }
.nav .container { display:flex; align-items:center; justify-content:space-between; width:100%; }
.nav-brand { display:flex; align-items:center; gap:10px; }
.nav-logo-mark { width:38px; height:38px; background:linear-gradient(145deg, var(--navy), var(--navy-dark)); border-radius:10px; display:flex; align-items:center; justify-content:center; color:#fff; font-weight:800; font-size:12px; letter-spacing:-.3px; box-shadow:0 2px 8px rgba(8,74,121,.2); flex-shrink:0; }
.nav-brand-text { line-height:1.2; }
.nav-brand-name { font-weight:700; font-size:.95rem; color:var(--ink); letter-spacing:-.02em; }
.nav-brand-sub { font-size:.68rem; color:var(--ink-3); font-weight:500; display:flex; align-items:center; gap:5px; }
.nav-dot { width:6px; height:6px; border-radius:50%; background:var(--emerald); box-shadow:0 0 0 2px rgba(5,150,105,.2); animation:pulse-dot 2.5s ease-in-out infinite; }
@keyframes pulse-dot { 0%,100% { box-shadow:0 0 0 2px rgba(5,150,105,.2); } 50% { box-shadow:0 0 0 5px rgba(5,150,105,.08); } }
.nav-links { display:flex; align-items:center; gap:2px; }
.nav-link { padding:8px 14px; font-size:.84rem; font-weight:500; color:var(--ink-2); border-radius:var(--r-sm); transition:all .15s; }
.nav-link:hover { color:var(--navy); background:rgba(8,74,121,.04); }
.nav-cta-wrap { margin-left:12px; }
.nav-cta-btn { padding:9px 20px; font-size:.84rem; }

/* Mobile toggle */
.nav-mobile-toggle { display:none; background:none; border:none; cursor:pointer; padding:8px; flex-direction:column; gap:5px; }
.nav-mobile-toggle span { display:block; width:22px; height:2px; background:var(--ink); border-radius:1px; transition:all .3s; }

/* ─── HERO ─── */
.hero { background:linear-gradient(165deg, var(--navy-deep) 0%, var(--navy) 45%, var(--navy-mid) 100%); padding:140px 0 90px; position:relative; overflow:hidden; text-align:center; }
.hero::before { content:''; position:absolute; inset:0; background: radial-gradient(ellipse at 30% 20%, rgba(13,110,189,.2) 0%, transparent 55%), radial-gradient(ellipse at 70% 80%, rgba(37,99,235,.1) 0%, transparent 55%); pointer-events:none; }
.hero::after { content:''; position:absolute; bottom:0; left:0; right:0; height:120px; background:linear-gradient(to top, var(--bg), transparent); pointer-events:none; }
.hero-inner { position:relative; max-width:760px; margin:0 auto; }
.hero-pill { display:inline-flex; align-items:center; gap:8px; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.12); border-radius:var(--r-full); padding:6px 18px 6px 8px; font-size:.78rem; font-weight:600; color:rgba(255,255,255,.75); margin-bottom:1.75rem; }
.hero-pill-dot { width:8px; height:8px; border-radius:50%; background:var(--emerald); box-shadow:0 0 8px rgba(5,150,105,.4); }
.hero h1 { font-family:var(--font-display); font-size:clamp(2.2rem, 5vw, 3.6rem); font-weight:400; line-height:1.12; color:#fff; margin-bottom:1.25rem; }
.hero h1 em { font-style:normal; background:linear-gradient(90deg, #60a5fa, #93c5fd, #60a5fa); background-size:200% auto; -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; animation:shimmer 4s linear infinite; }
@keyframes shimmer { to { background-position:200% center; } }
.hero-sub { font-size:1.1rem; color:rgba(255,255,255,.55); max-width:540px; margin:0 auto 2rem; line-height:1.6; }
.hero-actions { display:flex; gap:.75rem; justify-content:center; flex-wrap:wrap; margin-bottom:1rem; }
.hero-meta { display:flex; gap:1.5rem; justify-content:center; flex-wrap:wrap; font-size:.8rem; color:rgba(255,255,255,.4); }
.hero-meta span { display:flex; align-items:center; gap:5px; }
.hero-meta-check { width:14px; height:14px; stroke:var(--emerald); fill:none; stroke-width:2.5; }

/* ─── PROOF BAR ─── */
.proof { background:var(--white); border-bottom:1px solid var(--border); padding:22px 0; }
.proof-inner { display:flex; justify-content:center; gap:3rem; flex-wrap:wrap; }
.proof-item { text-align:center; }
.proof-num { font-family:var(--font-display); font-size:1.5rem; color:var(--navy); }
.proof-label { font-size:.68rem; color:var(--ink-4); font-weight:600; text-transform:uppercase; letter-spacing:.6px; }

/* ─── SECTION HELPERS ─── */
.section-eyebrow { display:inline-flex; align-items:center; gap:6px; font-size:.72rem; font-weight:700; text-transform:uppercase; letter-spacing:.1em; margin-bottom:.5rem; }
.section-title { font-family:var(--font-display); font-size:clamp(1.8rem, 3vw, 2.5rem); line-height:1.15; margin-bottom:.5rem; }
.section-desc { color:var(--ink-3); font-size:1rem; max-width:580px; line-height:1.65; }

/* ─── FINDER ─── */
.finder { padding:90px 0 70px; }
.finder-grid { display:grid; grid-template-columns:repeat(4, 1fr); gap:1rem; margin-top:2.5rem; }
.fc { background:var(--white); border:1.5px solid var(--border); border-radius:var(--r-lg); padding:28px 22px 24px; cursor:pointer; transition:all .28s cubic-bezier(.16,1,.3,1); position:relative; overflow:hidden; display:flex; flex-direction:column; }
.fc::after { content:''; position:absolute; top:0; left:0; right:0; height:3px; transition:height .3s; }
.fc:hover { transform:translateY(-5px); }
.fc-blue { border-color:#bfdbfe; } .fc-blue::after { background:var(--blue); } .fc-blue:hover { box-shadow:0 12px 32px rgba(37,99,235,.1); border-color:var(--blue); }
.fc-green { border-color:#a7f3d0; } .fc-green::after { background:var(--emerald); } .fc-green:hover { box-shadow:0 12px 32px rgba(5,150,105,.1); border-color:var(--emerald); }
.fc-amber { border-color:#fde68a; } .fc-amber::after { background:var(--amber); } .fc-amber:hover { box-shadow:0 12px 32px rgba(217,119,6,.1); border-color:var(--amber); }
.fc-violet { border-color:#ddd6fe; } .fc-violet::after { background:var(--violet); } .fc-violet:hover { box-shadow:0 12px 32px rgba(124,58,237,.1); border-color:var(--violet); }
.fc-badge { display:inline-block; font-size:.58rem; font-weight:700; padding:3px 9px; border-radius:var(--r-full); letter-spacing:.6px; text-transform:uppercase; background:var(--amber); color:#000; margin-bottom:6px; align-self:flex-start; }
.fc-emoji { font-size:1.5rem; margin-bottom:8px; }
.fc-label { font-size:.7rem; font-weight:500; color:var(--ink-3); }
.fc-name { font-family:var(--font-display); font-size:1.2rem; margin:3px 0 12px; line-height:1.2; }
.fc-blue .fc-name { color:var(--navy); } .fc-green .fc-name { color:#065f46; } .fc-amber .fc-name { color:#92400e; } .fc-violet .fc-name { color:#5b21b6; }
.fc-list { list-style:none; flex:1; }
.fc-list li { font-size:.78rem; color:var(--ink-3); padding:3px 0; display:flex; align-items:flex-start; gap:6px; }
.fc-list li::before { content:'→'; font-size:.68rem; opacity:.35; flex-shrink:0; margin-top:2px; }
.fc-list li:hover { color:var(--ink); }
.fc-arrow { display:inline-flex; align-items:center; gap:4px; font-size:.78rem; font-weight:600; margin-top:14px; transition:gap .2s; }
.fc:hover .fc-arrow { gap:8px; }
.fc-blue .fc-arrow { color:var(--blue); } .fc-green .fc-arrow { color:var(--emerald); } .fc-amber .fc-arrow { color:var(--amber); } .fc-violet .fc-arrow { color:var(--violet); }

/* ─── SILOS OVERVIEW ─── */
.silos { padding:80px 0; background:var(--white); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.silo-grid { display:grid; grid-template-columns:repeat(3, 1fr); gap:1rem; margin-top:2.5rem; }
.silo-card { padding:24px 20px; border-radius:var(--r-md); border:1px solid var(--border); background:var(--bg); transition:all .25s; }
.silo-card:hover { transform:translateY(-2px); box-shadow:var(--shadow-md); }
.silo-icon { font-size:1.3rem; margin-bottom:8px; }
.silo-card h4 { font-size:.92rem; font-weight:700; margin-bottom:4px; color:var(--ink); }
.silo-card p { font-size:.8rem; color:var(--ink-3); line-height:1.5; margin-bottom:8px; }
.silo-link { font-size:.78rem; font-weight:600; color:var(--navy); display:inline-flex; align-items:center; gap:4px; transition:gap .2s; }
.silo-card:hover .silo-link { gap:7px; }

/* ─── HOW IT WORKS ─── */
.how { padding:80px 0; }
.steps { display:grid; grid-template-columns:repeat(3, 1fr); gap:2rem; margin-top:2.5rem; position:relative; }
.steps::before { content:''; position:absolute; top:36px; left:calc(16.66% + 24px); right:calc(16.66% + 24px); height:2px; background:linear-gradient(90deg, var(--navy), var(--border), var(--navy)); opacity:.2; }
.step { text-align:center; padding:0 1rem; position:relative; }
.step-num { display:inline-flex; align-items:center; justify-content:center; width:52px; height:52px; border-radius:50%; background:var(--navy); color:#fff; font-family:var(--font-display); font-size:1.2rem; margin-bottom:1rem; box-shadow:0 4px 12px rgba(8,74,121,.2); position:relative; z-index:1; }
.step h3 { font-size:1rem; font-weight:700; margin-bottom:.4rem; }
.step p { font-size:.88rem; color:var(--ink-3); line-height:1.55; }

/* ─── PRICING ─── */
.pricing { padding:90px 0; background:var(--white); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.pricing-grid { display:grid; grid-template-columns:repeat(4, 1fr); gap:1rem; margin-top:2.5rem; }
.pc { background:var(--bg); border:1.5px solid var(--border); border-radius:var(--r-lg); padding:28px 22px; position:relative; transition:all .25s; display:flex; flex-direction:column; }
.pc:hover { transform:translateY(-3px); box-shadow:var(--shadow-lg); }
.pc.popular { border-color:var(--navy); background:var(--white); box-shadow:0 0 0 1px var(--navy), var(--shadow-lg); }
.pc-pop { position:absolute; top:-11px; left:50%; transform:translateX(-50%); background:var(--navy); color:#fff; font-size:.65rem; font-weight:700; padding:4px 14px; border-radius:var(--r-full); white-space:nowrap; letter-spacing:.3px; }
.pc-usp { display:inline-block; font-size:.58rem; font-weight:700; padding:3px 9px; border-radius:var(--r-full); letter-spacing:.6px; text-transform:uppercase; background:var(--amber); color:#000; margin-bottom:6px; }
.pc-label { font-size:.68rem; font-weight:600; color:var(--ink-4); text-transform:uppercase; letter-spacing:.5px; margin-bottom:2px; }
.pc-name { font-family:var(--font-display); font-size:1.15rem; margin-bottom:10px; }
.pc-price { display:flex; align-items:baseline; gap:1px; }
.pc-eur { font-size:.9rem; font-weight:700; color:var(--ink-3); }
.pc-num { font-family:var(--font-display); font-size:2.4rem; line-height:1; }
.pc-period { font-size:.72rem; color:var(--ink-4); margin-bottom:4px; margin-top:2px; }
.pc-yearly { font-size:.72rem; color:var(--emerald); font-weight:600; margin-bottom:16px; }
.pc-features { list-style:none; flex:1; margin-bottom:20px; }
.pc-features li { font-size:.82rem; color:var(--ink-2); padding:4px 0; display:flex; align-items:flex-start; gap:7px; }
.pc-features li::before { content:'✓'; color:var(--emerald); font-weight:700; font-size:.75rem; flex-shrink:0; margin-top:1px; }
.pc-btn { display:block; width:100%; text-align:center; padding:12px; border-radius:var(--r-sm); font-weight:600; font-size:.88rem; border:none; cursor:pointer; font-family:var(--font); transition:all .2s; }
.pc-btn-primary { background:var(--navy); color:#fff; }
.pc-btn-primary:hover { background:var(--navy-dark); }
.pc-btn-outline { background:transparent; color:var(--ink-2); border:1.5px solid var(--border); }
.pc-btn-outline:hover { border-color:var(--navy); color:var(--navy); }
.pc-note { text-align:center; font-size:.7rem; color:var(--ink-4); margin-top:6px; }

/* ─── TRUST ─── */
.trust { padding:80px 0; }
.trust-grid { display:grid; grid-template-columns:repeat(4, 1fr); gap:1.25rem; margin-top:2.5rem; }
.tc { padding:24px 20px; border-radius:var(--r-md); border:1px solid var(--border); background:var(--white); transition:all .25s; }
.tc:hover { box-shadow:var(--shadow-md); transform:translateY(-2px); }
.tc-icon { font-size:1.4rem; margin-bottom:10px; }
.tc h4 { font-size:.92rem; font-weight:700; margin-bottom:5px; }
.tc p { font-size:.82rem; color:var(--ink-3); line-height:1.5; }

/* ─── SEO CONTENT ─── */
.seo { padding:80px 0; background:var(--white); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.seo h2 { font-family:var(--font-display); font-size:clamp(1.5rem, 2.5vw, 1.9rem); margin-bottom:1rem; }
.seo p { font-size:.92rem; color:var(--ink-2); margin-bottom:1rem; max-width:820px; line-height:1.7; }

/* ─── FAQ ─── */
.faq { padding:80px 0; }
.faq-list { max-width:760px; margin-top:2rem; }
.faq-item { border-bottom:1px solid var(--border); }
.faq-q { display:flex; justify-content:space-between; align-items:center; padding:18px 0; cursor:pointer; font-weight:600; font-size:.92rem; gap:1rem; transition:color .2s; }
.faq-q:hover { color:var(--navy); }
.faq-q::after { content:'+'; font-size:1.3rem; color:var(--ink-4); transition:transform .3s; flex-shrink:0; }
.faq-item.open .faq-q::after { transform:rotate(45deg); }
.faq-a { max-height:0; overflow:hidden; transition:max-height .4s ease, padding .3s; }
.faq-item.open .faq-a { max-height:300px; padding-bottom:18px; }
.faq-a p { font-size:.88rem; color:var(--ink-3); line-height:1.65; }

/* ─── CTA ─── */
.cta { padding:100px 0; }
.cta-box { background:linear-gradient(145deg, var(--navy-deep), var(--navy), var(--navy-mid)); border-radius:var(--r-xl); padding:64px 40px; text-align:center; position:relative; overflow:hidden; }
.cta-box::before { content:''; position:absolute; top:-40%; right:-15%; width:450px; height:450px; border-radius:50%; background:radial-gradient(circle, rgba(13,110,189,.2), transparent 70%); pointer-events:none; }
.cta-box h2 { font-family:var(--font-display); font-size:clamp(1.8rem, 3vw, 2.5rem); color:#fff; margin-bottom:.75rem; position:relative; }
.cta-box h2 em { font-style:normal; background:linear-gradient(90deg, #93c5fd, #60a5fa); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.cta-box p { color:rgba(255,255,255,.5); font-size:1rem; max-width:480px; margin:0 auto 2rem; position:relative; }
.cta-actions { display:flex; gap:.75rem; justify-content:center; flex-wrap:wrap; position:relative; }

/* ─── ARTICLE (single.php) ─── */
.article-wrap { padding:120px 0 60px; }
.breadcrumb { font-size:.82rem; color:var(--ink-4); margin-bottom:2rem; }
.breadcrumb a { color:var(--ink-3); transition:color .15s; }
.breadcrumb a:hover { color:var(--navy); }
.bc-sep { margin:0 6px; }
.bc-current { color:var(--ink-2); }
.article-grid { display:grid; grid-template-columns:1fr 320px; gap:3rem; }
.article-header { margin-bottom:2rem; }
.article-silo-badge { display:inline-block; font-size:.7rem; font-weight:700; text-transform:uppercase; letter-spacing:.06em; color:var(--navy); background:var(--blue-bg); padding:4px 12px; border-radius:var(--r-full); margin-bottom:.75rem; }
.article-header h1 { font-family:var(--font-display); font-size:clamp(1.8rem, 3vw, 2.4rem); line-height:1.2; margin-bottom:.75rem; }
.article-meta { font-size:.82rem; color:var(--ink-4); display:flex; gap:8px; }
.article-content { font-size:.95rem; line-height:1.75; color:var(--ink-2); }
.article-content h2 { font-family:var(--font-display); font-size:1.5rem; margin:2rem 0 .75rem; color:var(--ink); }
.article-content h3 { font-size:1.15rem; font-weight:700; margin:1.5rem 0 .5rem; }
.article-content p { margin-bottom:1rem; }
.article-content ul, .article-content ol { margin:0 0 1rem 1.5rem; }
.article-content li { margin-bottom:.4rem; }
.article-content a { color:var(--navy); text-decoration:underline; text-underline-offset:2px; }

/* Sidebar */
.sidebar-card { background:var(--white); border:1px solid var(--border); border-radius:var(--r-md); padding:20px; margin-bottom:1rem; }
.sidebar-card-title { font-size:.78rem; font-weight:700; text-transform:uppercase; letter-spacing:.06em; color:var(--ink-3); margin-bottom:.75rem; }
.sidebar-tarif-name { font-family:var(--font-display); font-size:1.1rem; }
.sidebar-tarif-price { font-size:.88rem; color:var(--emerald); font-weight:600; margin-bottom:.75rem; }
.sidebar-tarif-features { list-style:none; margin-bottom:1rem; }
.sidebar-tarif-features li { font-size:.8rem; color:var(--ink-3); padding:3px 0; display:flex; align-items:flex-start; gap:6px; }
.sidebar-tarif-features li::before { content:'✓'; color:var(--emerald); font-weight:700; font-size:.72rem; }
.sidebar-trust-item { font-size:.84rem; padding:4px 0; color:var(--ink-2); }
.sidebar-related { list-style:none; }
.sidebar-related li { padding:4px 0; }
.sidebar-related a { font-size:.84rem; color:var(--ink-2); transition:color .15s; }
.sidebar-related a:hover { color:var(--navy); }
.sidebar-silo-link { display:block; margin-top:.75rem; font-size:.82rem; font-weight:600; color:var(--navy); }
.sidebar-cta { border-color:var(--navy); }

/* ─── PAGE ─── */
.page-wrap { padding:120px 0 80px; }
.page-content { max-width:800px; }
.page-content h1 { font-family:var(--font-display); font-size:clamp(1.8rem, 3vw, 2.4rem); margin-bottom:1.5rem; }
.page-content h2 { font-family:var(--font-display); font-size:1.5rem; margin:2rem 0 .75rem; }
.page-content p { font-size:.95rem; color:var(--ink-2); line-height:1.75; margin-bottom:1rem; }
.page-content ul, .page-content ol { margin:0 0 1rem 1.5rem; }
.page-content a { color:var(--navy); text-decoration:underline; text-underline-offset:2px; }

/* ─── ARCHIVE / RATGEBER GRID ─── */
.archive-wrap { padding:120px 0 80px; }
.archive-header { margin-bottom:2.5rem; }
.archive-header h1 { font-family:var(--font-display); font-size:clamp(1.8rem, 3vw, 2.4rem); margin-bottom:.5rem; }
.ratgeber-section { padding:80px 0; }
.ratgeber-grid { display:grid; grid-template-columns:repeat(3, 1fr); gap:1rem; margin-top:2rem; }
.ratgeber-card { display:flex; flex-direction:column; background:var(--white); border:1px solid var(--border); border-radius:var(--r-md); padding:24px 20px; transition:all .25s; }
.ratgeber-card:hover { transform:translateY(-2px); box-shadow:var(--shadow-md); }
.ratgeber-silo { font-size:.65rem; font-weight:700; text-transform:uppercase; letter-spacing:.06em; color:var(--navy); margin-bottom:6px; }
.ratgeber-card h4 { font-size:.95rem; font-weight:700; margin-bottom:6px; line-height:1.3; }
.ratgeber-card p { font-size:.82rem; color:var(--ink-3); flex:1; margin-bottom:8px; }
.ratgeber-link { font-size:.78rem; font-weight:600; color:var(--navy); }
.pagination { margin-top:3rem; text-align:center; }
.pagination .nav-links { display:flex; gap:4px; justify-content:center; }
.pagination .page-numbers { padding:8px 14px; border-radius:var(--r-sm); font-size:.85rem; border:1px solid var(--border); transition:all .2s; }
.pagination .page-numbers.current { background:var(--navy); color:#fff; border-color:var(--navy); }

/* ─── FOOTER ─── */
.footer { padding:52px 0 28px; background:var(--white); border-top:1px solid var(--border); }
.footer-grid { display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr 1fr; gap:2rem; margin-bottom:2.5rem; }
.footer-brand-text { font-size:.82rem; color:var(--ink-3); margin-top:.6rem; max-width:250px; line-height:1.55; }
.ftr-col h5 { font-size:.72rem; font-weight:700; text-transform:uppercase; letter-spacing:.06em; color:var(--ink-3); margin-bottom:.75rem; }
.ftr-col ul { list-style:none; }
.ftr-col li { margin-bottom:.35rem; }
.ftr-col a { font-size:.84rem; color:var(--ink-3); transition:color .15s; }
.ftr-col a:hover { color:var(--navy); }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; padding-top:1.5rem; border-top:1px solid var(--border); font-size:.76rem; color:var(--ink-4); flex-wrap:wrap; gap:.5rem; }
.footer-badges { display:flex; gap:1rem; flex-wrap:wrap; }
.footer-badges span { display:flex; align-items:center; gap:4px; }

/* ─── RESPONSIVE ─── */
@media (max-width:1024px) {
  .finder-grid { grid-template-columns:1fr 1fr; }
  .pricing-grid { grid-template-columns:1fr 1fr; }
  .silo-grid { grid-template-columns:1fr 1fr; }
  .footer-grid { grid-template-columns:1fr 1fr 1fr; }
  .article-grid { grid-template-columns:1fr; }
  .article-sidebar { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
}
@media (max-width:768px) {
  .nav-links { display:none; }
  .nav-mobile-toggle { display:flex; }
  .nav-links.open { display:flex; flex-direction:column; position:absolute; top:68px; left:0; right:0; background:var(--white); border-bottom:1px solid var(--border); padding:1rem 1.5rem; box-shadow:var(--shadow-md); gap:.5rem; }
  .nav-links.open .nav-link { padding:10px 0; }
  .nav-links.open .nav-cta-wrap { margin:0; }
  .steps { grid-template-columns:1fr; max-width:380px; margin-left:auto; margin-right:auto; }
  .steps::before { display:none; }
  .trust-grid { grid-template-columns:1fr 1fr; }
  .pricing-grid { grid-template-columns:1fr; max-width:380px; margin-left:auto; margin-right:auto; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .ratgeber-grid { grid-template-columns:1fr; }
  .article-sidebar { grid-template-columns:1fr; }
}
@media (max-width:600px) {
  .finder-grid { grid-template-columns:1fr; }
  .silo-grid { grid-template-columns:1fr; }
  .trust-grid { grid-template-columns:1fr; }
  .hero h1 { font-size:1.9rem; }
  .proof-inner { gap:1.5rem; }
  .footer-grid { grid-template-columns:1fr; }
  .cta-box { padding:48px 24px; }
}
