/*
Theme Name: CBC Logistik
Theme URI: https://cbc-logistik.de
Author: Qusai Al-Asaad
Author URI: https://cbc-logistik.de
Description: CBC Logistik GmbH — Personaldienstleistung im Lagerlogistik
Version: 1.0.0
License: Private
Text Domain: cbc-logistik
Tags: business, logistics, hamburg
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Open+Sans:wght@400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue: #1a3a6b;
  --blue-mid: #1e4d9b;
  --blue-light: #2563c4;
  --orange: #f07800;
  --orange-light: #ff9a2e;
  --white: #ffffff;
  --gray-bg: #f4f6f9;
  --gray-text: #555;
  --dark: #1a1a2e;
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--dark); background: var(--white); margin: 0; }

/* ─── NAVBAR ─── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: #ffffff;
  padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
  height: 85px;
  margin: 0 !important;
  border: none !important;
  border-bottom: 1px solid rgba(0,0,0,.07) !important;
  box-shadow: none !important;
}
body { margin: 0 !important; padding: 0 !important; }
body.admin-bar .site-header { top: 32px; }
.site-header + * { margin-top: 0 !important; padding-top: 0 !important; }
.site-header .nav-logo { display: flex; align-items: center; text-decoration: none; background: transparent !important; }
.site-header .nav-logo img { height: 75px; width: auto; max-width: 200px; object-fit: contain; display: block; }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; margin: 0; padding: 0; }
.nav-links a { text-decoration: none; font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--blue); transition: color .2s; letter-spacing: .2px; }
.nav-links a:hover { color: var(--orange); }

/* ─── HERO ─── */
.hero-section {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 55%, #1e5cb3 100%);
  min-height: 520px;
  display: flex; align-items: center;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 500px; height: 500px;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
}
.hero-inner { max-width: 1200px; margin: 0 auto; width: 100%; display: flex; align-items: center; gap: 60px; position: relative; z-index: 1; }
.hero-text { flex: 1; }
.hero-badge {
  display: inline-block;
  background: rgba(240,120,0,.2); border: 1px solid var(--orange);
  color: var(--orange-light); font-family: var(--font-head); font-size: 12px; font-weight: 700;
  padding: 5px 14px; border-radius: 99px; letter-spacing: .8px;
  margin-bottom: 20px; text-transform: uppercase;
}
.hero-section h1 {
  font-family: var(--font-head); font-size: 40px; font-weight: 800; color: var(--white);
  line-height: 1.2; margin-bottom: 18px;
}
.hero-section h1 span { color: var(--orange-light); }
.hero-sub { font-size: 16px; color: rgba(255,255,255,.8); line-height: 1.7; margin-bottom: 32px; max-width: 500px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--orange); color: var(--white);
  font-family: var(--font-head); font-size: 14px; font-weight: 700;
  padding: 14px 28px; border-radius: 8px; text-decoration: none;
  border: none; cursor: pointer;
  transition: background .2s, transform .15s; display: inline-block;
}
.btn-primary:hover { background: var(--orange-light); transform: translateY(-2px); }
.btn-secondary {
  background: transparent; color: var(--white);
  font-family: var(--font-head); font-size: 14px; font-weight: 600;
  padding: 14px 28px; border-radius: 8px; text-decoration: none;
  border: 2px solid rgba(255,255,255,.5);
  transition: border-color .2s, background .2s; display: inline-block;
}
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.hero-image-placeholder {
  width: 380px; height: 300px;
  background: linear-gradient(135deg, rgba(255,255,255,.1), rgba(255,255,255,.05));
  border: 2px dashed rgba(255,255,255,.2);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px;
  color: rgba(255,255,255,.5); font-family: var(--font-head); font-size: 14px; text-align: center; padding: 20px;
}

/* ─── USP STRIP ─── */
.usp-strip { background: var(--white); border-bottom: 3px solid var(--gray-bg); padding: 0 40px; }
.usp-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: stretch; }
.usp-item {
  flex: 1; display: flex; align-items: center; gap: 14px;
  padding: 24px 20px; border-right: 1px solid var(--gray-bg); transition: background .2s;
}
.usp-item:last-child { border-right: none; }
.usp-item:hover { background: var(--gray-bg); }
.usp-icon { width: 48px; height: 48px; flex-shrink: 0; background: var(--blue); border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.usp-icon svg { width: 24px; height: 24px; fill: var(--white); }
.usp-text h4 { font-family: var(--font-head); font-size: 13px; font-weight: 700; color: var(--blue); margin-bottom: 3px; }
.usp-text p { font-size: 12px; color: var(--gray-text); }

/* ─── SECTIONS ─── */
.cbc-section { padding: 80px 40px; }
.container { max-width: 1200px; margin: 0 auto; }
.section-label { font-family: var(--font-head); font-size: 12px; font-weight: 700; color: var(--orange); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 10px; }
.section-title { font-family: var(--font-head); font-size: 32px; font-weight: 800; color: var(--blue); line-height: 1.2; margin-bottom: 14px; }
.section-title span { color: var(--orange); }
.section-sub { font-size: 16px; color: var(--gray-text); line-height: 1.7; max-width: 580px; }
.orange-line { width: 40px; height: 3px; background: var(--orange); border-radius: 2px; margin-top: 8px; }

/* ─── ÜBER UNS ─── */
.about-section { background: var(--gray-bg); }
.about-inner { display: flex; gap: 60px; align-items: center; }
.about-left { flex: 1; }
.about-grid { flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-card { background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,.06); transition: transform .2s, box-shadow .2s; }
.about-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,.1); }
.about-card-img { width: 100%; height: 130px; background: linear-gradient(135deg, var(--blue-light), var(--blue)); display: flex; align-items: center; justify-content: center; font-size: 36px; }
.about-card-body { padding: 14px; }
.about-card-body h4 { font-family: var(--font-head); font-size: 13px; font-weight: 700; color: var(--blue); margin-bottom: 4px; }
.about-card-body p { font-size: 12px; color: var(--gray-text); line-height: 1.5; }
.about-stats { display: flex; gap: 24px; margin-top: 32px; }
.stat { text-align: center; }
.stat-num { font-family: var(--font-head); font-size: 36px; font-weight: 800; color: var(--orange); line-height: 1; }
.stat-label { font-size: 12px; color: var(--gray-text); margin-top: 4px; }

/* ─── LEISTUNGEN ─── */
.leistungen-section { background: var(--white); }
.leistungen-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.leistung-card { background: var(--white); border: 1.5px solid #e8edf5; border-radius: 16px; padding: 32px 24px; transition: border-color .2s, transform .2s, box-shadow .2s; position: relative; overflow: hidden; }
.leistung-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.leistung-card:hover { border-color: var(--blue-light); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(26,58,107,.1); }
.leistung-card:hover::before { transform: scaleX(1); }
.leistung-icon { width: 56px; height: 56px; background: linear-gradient(135deg, var(--blue), var(--blue-mid)); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 26px; }
.leistung-card h3 { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--blue); margin-bottom: 10px; }
.leistung-card p { font-size: 14px; color: var(--gray-text); line-height: 1.7; }

/* ─── SPLIT SECTION ─── */
.split-section { background: var(--gray-bg); }
.split-inner { display: flex; gap: 40px; align-items: stretch; }
.split-left { flex: 1; background: var(--white); border-radius: 16px; padding: 40px; box-shadow: 0 4px 20px rgba(0,0,0,.05); display: flex; flex-direction: column; }
.split-right { flex: 0 0 380px; background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%); border-radius: 16px; padding: 40px; color: var(--white); }
.split-right h3 { font-family: var(--font-head); font-size: 22px; font-weight: 800; margin-bottom: 20px; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; padding: 0; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; line-height: 1.5; }
.check-list li::before { content: ''; width: 20px; height: 20px; flex-shrink: 0; background: var(--orange); border-radius: 4px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); background-size: 12px; background-repeat: no-repeat; background-position: center; margin-top: 2px; }
.split-left h3 { font-family: var(--font-head); font-size: 22px; font-weight: 800; color: var(--blue); margin-bottom: 20px; }

/* ─── CONTACT FORM ─── */
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: flex; gap: 14px; }
.form-group { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-family: var(--font-head); font-size: 12px; font-weight: 600; color: rgba(255,255,255,.7); }
.form-group input, .form-group textarea {
  padding: 12px 16px; border: 1.5px solid rgba(255,255,255,.2); border-radius: 8px;
  background: rgba(255,255,255,.1); color: var(--white);
  font-family: var(--font-body); font-size: 14px; outline: none; transition: border-color .2s;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,.4); }
.form-group input:focus, .form-group textarea:focus { border-color: var(--orange); }
.form-group textarea { resize: none; height: 100px; }
.form-submit { background: var(--orange); color: var(--white); font-family: var(--font-head); font-size: 15px; font-weight: 700; padding: 15px; border-radius: 8px; border: none; cursor: pointer; transition: background .2s, transform .15s; width: 100%; }
.form-submit:hover { background: var(--orange-light); transform: translateY(-1px); }
.form-note { font-size: 11px; color: rgba(255,255,255,.5); text-align: center; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-row { display: flex; align-items: center; gap: 14px; }
.contact-icon { width: 40px; height: 40px; background: rgba(240,120,0,.15); border: 1px solid var(--orange); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 18px; }
.contact-row span { font-size: 14px; line-height: 1.5; color: rgba(255,255,255,.9); }
.contact-row strong { display: block; font-family: var(--font-head); font-size: 12px; font-weight: 600; color: rgba(255,255,255,.9); margin-bottom: 2px; }

/* ─── FOOTER ─── */
.site-footer { background: var(--blue); color: rgba(255,255,255,.95); padding: 50px 40px 30px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: flex; gap: 60px; margin-bottom: 40px; }
.footer-brand { flex: 1; }
.footer-brand img { height: 64px; width: auto; max-width: 240px; object-fit: contain; mix-blend-mode: screen; filter: brightness(1.1); }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-top: 14px; max-width: 280px; }
.footer-col h4 { font-family: var(--font-head); font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 16px; letter-spacing: .5px; text-transform: uppercase; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; padding: 0; }
.footer-col ul li a { color: rgba(255,255,255,.85); text-decoration: none; font-size: 14px; transition: color .2s; }
.footer-col ul li a:hover { color: var(--orange); }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,.1); margin: 0 0 24px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 13px; }
.footer-bottom a { color: rgba(255,255,255,.5); text-decoration: none; }
.footer-bottom a:hover { color: var(--orange); }
.footer-links { display: flex; gap: 20px; }

/* ─── BURGER ─── */
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
.burger span { width: 24px; height: 2px; background: var(--blue); border-radius: 2px; transition: all .3s; display: block; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .site-header { padding: 0 20px; }
  .nav-links { display: none; }
  .burger { display: flex; }
  .hero-section { padding: 50px 20px; }
  .hero-inner { flex-direction: column; gap: 36px; }
  .hero-image-placeholder { width: 100%; height: 220px; }
  .hero-section h1 { font-size: 28px; }
  .cbc-section { padding: 60px 20px; }
  .usp-strip { padding: 0 20px; }
  .usp-inner { flex-wrap: wrap; }
  .usp-item { flex: 0 0 50%; border-right: none; border-bottom: 1px solid var(--gray-bg); }
  .about-inner { flex-direction: column; }
  .about-grid { grid-template-columns: 1fr 1fr; }
  .leistungen-grid { grid-template-columns: 1fr 1fr; }
  .split-inner { flex-direction: column; }
  .split-right { flex: auto; }
  .form-row { flex-direction: column; }
  .footer-top { flex-direction: column; gap: 32px; }
  .site-footer { padding: 40px 20px 24px; }
}
@media (max-width: 600px) {
  .usp-item { flex: 0 0 100%; }
  .leistungen-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-stats { gap: 16px; }
  .hero-section h1 { font-size: 24px; }
  .section-title { font-size: 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* Fix gray space above hero caused by WordPress admin bar */
.admin-bar .site-header { top: 32px !important; }
.hero-section { margin-top: 0 !important; }
body.admin-bar { padding-top: 0 !important; }

/* Leistungen page responsive */
@media (max-width: 768px) {
  .leistungen-page-grid { grid-template-columns: 1fr !important; }
}


/* ─── MOBILE NAV FIX ─── */
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; z-index: 200; }
.burger span { width: 26px; height: 2.5px; background: var(--blue); border-radius: 2px; display: block; transition: all .3s; }
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-links.mobile-open {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(26,58,107,.97);
  z-index: 150;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 40px;
}
.nav-links.mobile-open a {
  color: #fff !important;
  font-size: 22px !important;
  font-weight: 700;
}
.nav-links.mobile-open .nav-cta {
  background: var(--orange) !important;
  color: #fff !important;
  padding: 14px 32px !important;
  border-radius: 8px;
  font-size: 18px !important;
}

/* ─── RESPONSIVE — TABLET (max 900px) ─── */
@media (max-width: 900px) {
  .site-header { padding: 0 20px !important; height: 70px !important; }
  .site-header .nav-logo img { height: 52px !important; }
  .nav-links { display: none; }
  .burger { display: flex; }

  /* Sections padding */
  .cbc-section,
  section.cbc-section { padding: 50px 24px !important; }

  /* Hero */
  .hero-section { padding: 50px 24px !important; min-height: auto !important; }
  .hero-inner { flex-direction: column !important; gap: 32px !important; }
  .hero-image-placeholder { width: 100% !important; height: 200px !important; }
  .hero-image img { max-width: 100% !important; max-height: 260px !important; }

  /* USP Strip */
  .usp-strip { padding: 0 20px !important; }
  .usp-inner { flex-wrap: wrap !important; }
  .usp-item { flex: 0 0 50% !important; border-right: none !important; border-bottom: 1px solid var(--gray-bg) !important; }

  /* About */
  .about-inner { flex-direction: column !important; gap: 32px !important; }
  .about-grid { grid-template-columns: 1fr 1fr !important; }
  .about-stats { gap: 16px !important; }

  /* Leistungen grid */
  .leistungen-grid { grid-template-columns: 1fr 1fr !important; gap: 16px !important; }

  /* Split section */
  .split-inner { flex-direction: column !important; gap: 24px !important; }
  .split-right { flex: auto !important; }
  .split-left { flex: auto !important; }

  /* Footer */
  .footer-top { flex-direction: column !important; gap: 28px !important; }
  .site-footer { padding: 40px 24px 24px !important; }
  .footer-bottom { flex-direction: column !important; gap: 10px !important; text-align: center !important; }

  /* Page sections inline styles override */
  div[style*="display:flex"] { flex-wrap: wrap; }
  div[style*="flex:0 0 420px"] { flex: 1 1 100% !important; min-width: 0 !important; }
  div[style*="grid-template-columns:repeat(2,1fr)"] { grid-template-columns: 1fr !important; }
  div[style*="grid-template-columns:repeat(3,1fr)"] { grid-template-columns: 1fr 1fr !important; }
}

/* ─── RESPONSIVE — MOBILE (max 600px) ─── */
@media (max-width: 600px) {
  .site-header { height: 64px !important; padding: 0 16px !important; }
  .site-header .nav-logo img { height: 46px !important; }

  /* Typography */
  .hero-section h1,
  h1[style*="font-size:44px"],
  h1[style*="font-size:42px"] { font-size: 26px !important; line-height: 1.25 !important; }
  h2[style*="font-size:28px"],
  h2[style*="font-size:30px"] { font-size: 22px !important; }
  .section-title { font-size: 22px !important; }

  /* Sections */
  .cbc-section,
  section.cbc-section { padding: 40px 16px !important; }
  .hero-section { padding: 44px 16px !important; }

  /* Hero spacing from header */
  .hero-section { padding-top: 48px !important; }

  /* Grids → single column */
  .leistungen-grid { grid-template-columns: 1fr !important; }
  .about-grid { grid-template-columns: 1fr 1fr !important; }
  div[style*="grid-template-columns:repeat(2,1fr)"] { grid-template-columns: 1fr !important; }
  div[style*="grid-template-columns:repeat(3,1fr)"] { grid-template-columns: 1fr !important; }

  /* USP → single column */
  .usp-item { flex: 0 0 100% !important; }

  /* Footer */
  .footer-links { flex-direction: column !important; gap: 8px !important; align-items: center; }

  /* Form */
  .form-row { flex-direction: column !important; }
  div[style*="display:flex;gap:12px"] { flex-direction: column !important; gap: 10px !important; }

  /* Page inline flex sections */
  div[style*="max-width:1100px"][style*="display:flex"] { flex-direction: column !important; gap: 24px !important; }
  div[style*="flex:0 0 420px"] { flex: 1 1 auto !important; width: 100% !important; }
  div[style*="flex:1"][style*="display:flex;flex-direction:column"] { min-width: 0 !important; }

  /* Header-content gap fix for sub-pages */
  section:first-of-type,
  section[style*="background:linear-gradient"] { padding-top: 44px !important; }
}

/* Fix gap between header and first section on ALL pages */
.site-header + * { margin-top: 0 !important; padding-top: 0 !important; }
body > header + * > section:first-child { margin-top: 0 !important; }

/* ══════════════════════════════════════
   CBC PAGE LAYOUT — RESPONSIVE SYSTEM
   ══════════════════════════════════════ */

/* Page hero section */
.cbc-page-hero {
  background: linear-gradient(135deg, #1a3a6b 0%, #1e4d9b 100%);
  padding: 80px 60px 70px;
  text-align: center;
  margin-top: 0 !important;
}
.cbc-page-hero .hero-label {
  font-size: 11px; font-weight: 700; color: #f07800;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px;
}
.cbc-page-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 44px; font-weight: 800; color: #fff;
  margin: 0 0 16px; line-height: 1.15;
}
.cbc-page-hero h1 span { color: #f07800; }
.cbc-page-hero p {
  font-size: 17px; color: rgba(255,255,255,.85);
  line-height: 1.7; margin: 0 auto 28px; max-width: 650px;
}
.cbc-page-hero .cbc-btn {
  background: #f07800; color: #fff;
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 16px; padding: 16px 36px;
  border-radius: 8px; text-decoration: none;
  display: inline-block; transition: background .2s;
}
.cbc-page-hero .cbc-btn:hover { background: #ff9a2e; }

/* Two column layout */
.cbc-two-col {
  max-width: 1100px; margin: 0 auto;
  display: flex; gap: 60px; align-items: flex-start;
}
.cbc-two-col .col-text { flex: 1; min-width: 0; }
.cbc-two-col .col-img { flex: 0 0 400px; }
.cbc-two-col .col-img img {
  width: 100%; border-radius: 14px;
  box-shadow: 0 16px 40px rgba(26,58,107,.12);
  object-fit: cover; height: 320px;
}

/* Service grid 2col */
.cbc-service-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
}

/* Benefit grid 3col */
.cbc-benefit-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}

/* Card */
.cbc-card {
  background: #fff; border-radius: 14px; padding: 28px 24px;
  border: 1.5px solid #e8edf5;
}
.cbc-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px; font-weight: 700; color: #1a3a6b; margin: 0 0 8px;
}
.cbc-card p { font-size: 14px; color: #555; line-height: 1.7; margin: 0; }
.cbc-card-icon { font-size: 28px; margin-bottom: 14px; }

/* Section bg variants */
.cbc-section-white { background: #fff; padding: 70px 60px; }
.cbc-section-gray  { background: #f4f6f9; padding: 60px 60px; }
.cbc-section-blue  { background: linear-gradient(135deg, #1a3a6b, #1e4d9b); padding: 60px 60px; }

/* Checklist */
.cbc-checklist { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.cbc-checklist li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: #333; line-height: 1.5;
}
.cbc-checklist li::before {
  content: '';
  width: 22px; height: 22px; flex-shrink: 0; margin-top: 1px;
  background: #f07800; border-radius: 5px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 13px; background-repeat: no-repeat; background-position: center;
}

/* Section heading */
.cbc-section-heading { text-align: center; max-width: 700px; margin: 0 auto 48px; }
.cbc-section-heading .label {
  font-size: 11px; font-weight: 700; color: #f07800;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px;
}
.cbc-section-heading h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 30px; font-weight: 800; color: #1a3a6b; margin: 0 0 12px;
}
.cbc-section-heading h2 span { color: #f07800; }
.cbc-section-heading p { font-size: 16px; color: #555; line-height: 1.7; margin: 0; }

/* ══ TABLET (≤900px) ══ */
@media (max-width: 900px) {
  .cbc-page-hero { padding: 56px 28px 48px; }
  .cbc-page-hero h1 { font-size: 32px; }
  .cbc-page-hero p { font-size: 15px; }
  .cbc-section-white,
  .cbc-section-gray,
  .cbc-section-blue { padding: 48px 28px; }
  .cbc-two-col { flex-direction: column; gap: 32px; }
  .cbc-two-col .col-img { flex: auto; width: 100%; }
  .cbc-two-col .col-img img { height: 240px; }
  .cbc-service-grid { grid-template-columns: 1fr; gap: 20px; }
  .cbc-benefit-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .cbc-section-heading { margin-bottom: 32px; }
  .cbc-section-heading h2 { font-size: 24px; }
}

/* ══ MOBILE (≤600px) ══ */
@media (max-width: 600px) {
  .cbc-page-hero { padding: 44px 16px 40px; }
  .cbc-page-hero h1 { font-size: 26px; }
  .cbc-page-hero p { font-size: 14px; }
  .cbc-page-hero .cbc-btn { padding: 13px 24px; font-size: 14px; }
  .cbc-section-white,
  .cbc-section-gray,
  .cbc-section-blue { padding: 36px 16px; }
  .cbc-two-col .col-img img { height: 200px; }
  .cbc-service-grid { grid-template-columns: 1fr; }
  .cbc-benefit-grid { grid-template-columns: 1fr; }
  .cbc-card { padding: 22px 18px; }
  .cbc-section-heading h2 { font-size: 22px; }
  .cbc-checklist li { font-size: 14px; }
}

/* ══ HEADER TO CONTENT SPACING FIX ══ */
/* Desktop */
.cbc-page-hero {
  padding-top: 90px !important;
  padding-bottom: 80px !important;
}
.hero-section {
  padding-top: 80px !important;
}

/* Tablet */
@media (max-width: 900px) {
  .cbc-page-hero {
    padding-top: 64px !important;
    padding-bottom: 56px !important;
  }
  .hero-section {
    padding-top: 60px !important;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .cbc-page-hero {
    padding-top: 52px !important;
    padding-bottom: 44px !important;
  }
  .hero-section {
    padding-top: 50px !important;
  }
}

/* ══ WORDPRESS CONTENT WRAPPER FIX ══ */
/* WordPress wraps page content in .entry-content or .page-content */
/* This removes any unwanted padding/margin it adds */
.entry-content,
.page-content,
.post-content,
.site-content,
.wp-site-blocks,
main.site-main,
article.page {
  margin: 0 !important;
  padding: 0 !important;
}

/* Ensure first section directly after header has correct top spacing */
.cbc-page-hero,
.hero-section {
  margin-top: 0 !important;
  padding-top: 80px !important;
  padding-bottom: 70px !important;
}

/* Override WordPress p tag default margin inside our sections */
.cbc-page-hero p,
.cbc-section-white p,
.cbc-section-gray p {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .cbc-page-hero { padding-top: 60px !important; padding-bottom: 52px !important; }
  .hero-section   { padding-top: 56px !important; }
}
@media (max-width: 600px) {
  .cbc-page-hero { padding-top: 48px !important; padding-bottom: 40px !important; }
  .hero-section   { padding-top: 48px !important; }
}

/* ══════════════════════════════════
   FINAL SPACING FIX — ALL PAGES
   ══════════════════════════════════ */

/* Space between sticky header and page content */
body {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* All first sections get breathing room after header */
.cbc-page-hero,
.hero-section {
  padding-top: 80px !important;
  padding-bottom: 70px !important;
  margin-top: 0 !important;
}

/* Legal pages (Impressum, Datenschutz etc.) */
.cbc-legal-hero {
  background: linear-gradient(135deg, #1a3a6b, #1e4d9b);
  padding: 80px 60px 60px;
  text-align: center;
  margin-top: 0 !important;
}
.cbc-legal-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: #fff;
  margin: 0;
}
.cbc-legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 40px;
  font-size: 15px;
  color: #333;
  line-height: 1.9;
}
.cbc-legal-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #1a3a6b;
  margin: 36px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #f4f6f9;
}
.cbc-legal-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #1a3a6b;
  margin: 24px 0 8px;
}
.cbc-legal-content p { margin-bottom: 14px; }
.cbc-legal-content a { color: #f07800; text-decoration: none; }
.cbc-legal-content a:hover { text-decoration: underline; }

/* WordPress content wrappers reset */
#page, #content, #primary, #main,
.site-main, article.page, article.post,
.entry-content, .page-content, .post-content,
.wp-site-blocks, .is-layout-flow {
  margin: 0 !important;
  padding: 0 !important;
  max-width: 100% !important;
  background: transparent !important;
}

/* Tablet */
@media (max-width: 900px) {
  .cbc-page-hero  { padding-top: 60px !important; padding-bottom: 50px !important; }
  .hero-section   { padding-top: 56px !important; }
  .cbc-legal-hero { padding: 60px 28px 48px; }
  .cbc-legal-content { padding: 44px 24px; }
  .cbc-legal-content h2 { font-size: 18px; }
}

/* Mobile */
@media (max-width: 600px) {
  .cbc-page-hero  { padding-top: 48px !important; padding-bottom: 40px !important; }
  .hero-section   { padding-top: 48px !important; }
  .cbc-legal-hero { padding: 48px 16px 40px; }
  .cbc-legal-hero h1 { font-size: 26px; }
  .cbc-legal-content { padding: 36px 16px; font-size: 14px; }
}
