/* ============================================================
   BRAUKMANN COMMERCIAL CONSULTING — Website Stylesheet
   Farben: Navy #07243E · Gold #C1A833 · Weiß #FFFFFF
   ============================================================ */

/* Schriften werden lokal gehostet (DSGVO-konform – keine Verbindung zu Google-Servern) */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/inter-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/inter-latin-500-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/inter-latin-600-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/inter-latin-700-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/playfair-display-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/playfair-display-latin-600-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/playfair-display-latin-700-normal.woff2') format('woff2');
}

/* === VARIABLEN === */
:root {
  --navy:       #0B3041;
  --navy-dark:  #07243E;
  --navy-mid:   #0e3d55;
  --gold:       #C7A454;
  --gold-light: #d8b96d;
  --gold-dim:   rgba(199,164,84,0.15);
  --white:      #FFFFFF;
  --off-white:  #F7F5F0;
  --text-dark:  #111A24;
  --text-mid:   #4A5568;
  --text-light: #718096;
  --border:     #E2E8F0;
  --font-head:  'Playfair Display', Georgia, serif;
  --font-body:  'Inter', system-ui, -apple-system, sans-serif;
  --max-w:      1180px;
  --pad-section: 6rem 0;
  --radius:     3px;
  --shadow:     0 4px 24px rgba(7,36,62,0.08);
  --transition: 0.22s ease;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text-dark); line-height: 1.7; background: var(--white); }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { overflow-wrap: break-word; word-wrap: break-word; hyphens: auto; }
ul { list-style: none; }

/* === LAYOUT === */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: var(--pad-section); }
.section-tight { padding: 2.5rem 0; }
.section-light { background: var(--off-white); }
.section-dark  { background: var(--navy); color: var(--white); }

/* === HEADER === */
.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  height: 110px;
  position: relative;
}
.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo-img  { height: 90px; width: auto; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem 0.5rem;
  z-index: 10;
}

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1.1rem;
}
.site-nav a {
  color: rgba(255,255,255,0.88);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color var(--transition);
}
.site-nav a:hover,
.site-nav a.active { color: var(--gold); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 0.5rem 0.85rem !important;
  border-radius: var(--radius);
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  transition: background var(--transition) !important;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--gold-light) !important; color: var(--navy) !important; }

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 0.8rem 1.9rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover { background: var(--white); color: var(--navy); border-color: var(--white); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover { background: var(--navy-mid); border-color: var(--navy-mid); }

.btn-sm { padding: 0.5rem 1.1rem; font-size: 0.78rem; }

/* === SECTION LABELS / HEADINGS === */
.section-label {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 1rem;
}
.section-dark .section-title { color: var(--white); }
.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 640px;
  line-height: 1.75;
}
.section-dark .section-sub { color: rgba(255,255,255,0.78); }

/* === HERO === */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 3rem 0 3rem;
}
.hero-eyebrow {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.18;
  max-width: 820px;
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  max-width: 680px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* === TRUST BAR === */
.trust-bar {
  background: rgba(0,0,0,0.25);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.trust-bar-inner {
  padding: 1rem 1.5rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  max-width: var(--max-w);
  margin: 0 auto;
  font-style: italic;
}

/* === PAGE HERO (kleiner) === */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 3rem 0 3rem;
}
.page-hero .hero-headline {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

/* === HERAUSFORDERUNGEN === */
.challenges-list { margin-top: 3rem; display: flex; flex-direction: column; gap: 1.5rem; }
.challenge-block {
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  padding: 1.75rem 2rem;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}
.challenge-block h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.9rem;
}
.challenge-block ul { padding: 0; margin-bottom: 1rem; }
.challenge-block ul li {
  color: var(--text-mid);
  font-size: 0.95rem;
  padding: 0.3rem 0 0.3rem 1.5rem;
  position: relative;
}
.challenge-block ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.challenge-result {
  font-size: 0.88rem;
  color: var(--text-mid);
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
  margin-top: 0.5rem;
  font-style: italic;
}
.challenge-result strong { color: var(--navy); font-style: normal; }

/* === CARDS GRID === */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--gold);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(7,36,62,0.13); }
.card-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.card-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.3rem;
}
.card-sub {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.9rem;
}
.card p { color: var(--text-mid); font-size: 0.95rem; line-height: 1.65; flex: 1; }
.card-footer { margin-top: 1.5rem; }

/* === PROOF POINT === */
.proof-section { background: var(--navy-dark); color: var(--white); padding: 5.5rem 0; }
.proof-quote {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.55;
  max-width: 800px;
  border-left: 4px solid var(--gold);
  padding-left: 2rem;
  margin-bottom: 2rem;
  color: rgba(255,255,255,0.95);
}
.proof-link {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.proof-link:hover { color: var(--gold-light); }

/* === TESTIMONIALS === */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.testimonial-quote {
  font-style: italic;
  color: var(--text-dark);
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.testimonial-author {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
}
.testimonial-role { font-size: 0.82rem; color: var(--text-light); margin-top: 0.2rem; }

/* === AWARD === */
.award-badge {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: var(--navy);
  color: var(--white);
  padding: 2rem 2.5rem;
  border-radius: var(--radius);
  border-left: 6px solid var(--gold);
  max-width: 750px;
  box-shadow: var(--shadow);
}
.award-icon { font-size: 3.5rem; flex-shrink: 0; }
.award-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.award-desc { font-size: 0.92rem; color: rgba(255,255,255,0.82); line-height: 1.65; }

/* === CTA SECTION === */
.cta-section {
  background: var(--navy);
  color: var(--white);
  padding: 6rem 0;
  text-align: center;
}
.cta-section .section-title { color: var(--white); max-width: 700px; margin: 0 auto 1rem; }
.cta-section .section-sub  { color: rgba(255,255,255,0.75); margin: 0 auto 2.5rem; }

/* === TIMELINE === */
.timeline {
  position: relative;
  margin-top: 3rem;
  padding-left: 2.5rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0.45rem;
  top: 0.5rem;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(193,168,51,0.15));
}
.timeline-item {
  position: relative;
  margin-bottom: 2.75rem;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.05rem;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px var(--navy-dark), 0 0 0 5px rgba(193,168,51,0.3);
}
.timeline-date {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.timeline-role {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.15rem;
}
.timeline-company {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.6rem;
}
.timeline-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

/* === QUALIFIKATIONEN === */
.qual-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.qual-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 1.75rem 1.25rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
}
.qual-icon { font-size: 1.6rem; flex-shrink: 0; margin-top: 0.1rem; }
.qual-title { font-weight: 700; font-size: 0.9rem; color: var(--white); margin-bottom: 0.2rem; }
.qual-detail { font-size: 0.82rem; color: rgba(255,255,255,0.6); line-height: 1.5; }

/* === PERSÖNLICHE HALTUNG === */
.haltung-block {
  background: var(--gold-dim);
  border: 1px solid rgba(193,168,51,0.35);
  border-left: 4px solid var(--gold);
  padding: 2rem 2.5rem;
  border-radius: var(--radius);
  margin-top: 3rem;
  max-width: 760px;
}
.haltung-block blockquote {
  font-family: var(--font-head);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-style: italic;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 1rem;
}
.haltung-block p { color: var(--text-mid); font-size: 0.95rem; line-height: 1.7; }

/* === LEISTUNGEN (Detail) === */
.service-block {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}
.service-block:last-child { border-bottom: none; }
.service-number {
  font-family: var(--font-head);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 0.25rem;
  font-weight: 700;
}
.service-title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.service-sub {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.5rem;
}
.service-intro { color: var(--text-mid); font-size: 1rem; max-width: 680px; line-height: 1.75; margin-bottom: 1.75rem; }
.service-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.service-list { padding: 0; margin-bottom: 1.5rem; }
.service-list li {
  padding: 0.45rem 0 0.45rem 1.5rem;
  position: relative;
  color: var(--text-dark);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
}
.service-list li:last-child { border-bottom: none; }
.service-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.case-box {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  padding: 1.5rem;
  border-radius: var(--radius);
}
.case-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.6rem;
}
.case-text { font-size: 0.92rem; color: var(--text-mid); line-height: 1.7; }

/* === FÜR WEN === */
.for-whom {
  background: var(--navy);
  color: var(--white);
  padding: 2.5rem 3rem;
  border-radius: var(--radius);
  border-left: 6px solid var(--gold);
  margin-top: 3rem;
}
.for-whom-label {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.for-whom p { font-size: 1rem; color: rgba(255,255,255,0.85); line-height: 1.75; }

/* === PRESSE === */
.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.press-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.press-card-header {
  background: var(--navy);
  color: var(--white);
  padding: 1.25rem 1.5rem;
}
.press-format { font-size: 0.7rem; color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 0.25rem; }
.press-outlet { font-family: var(--font-head); font-size: 1.15rem; font-weight: 700; }
.press-card-body { padding: 1.5rem; }
.press-topic { color: var(--text-mid); font-size: 0.9rem; line-height: 1.65; margin-bottom: 1.25rem; }
.press-placeholder {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--gold);
  border: 1px dashed var(--gold);
  padding: 0.4rem 1rem;
  border-radius: var(--radius);
  background: var(--gold-dim);
}

/* === KONTAKT === */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  margin-top: 3rem;
  align-items: start;
}
.contact-primary {
  background: var(--navy);
  color: var(--white);
  padding: 3rem;
  border-radius: var(--radius);
}
.contact-primary h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--white);
}
.contact-primary p { font-size: 0.95rem; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 2rem; }
.calendly-placeholder {
  background: rgba(255,255,255,0.04);
  border: 1px dashed rgba(255,255,255,0.18);
  padding: 1.25rem 1.5rem;
  text-align: center;
  border-radius: var(--radius);
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  line-height: 1.5;
}
.calendly-placeholder span { display: block; font-size: 1.3rem; margin-bottom: 0.4rem; opacity: 0.7; }

.contact-secondary { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  background: var(--white);
}
.contact-icon { font-size: 1.5rem; flex-shrink: 0; line-height: 1.2; }
.contact-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.3rem;
}
.contact-value { font-size: 0.98rem; color: var(--text-dark); }
.contact-value a { color: var(--navy); font-weight: 600; transition: color var(--transition); }
.contact-value a:hover { color: var(--gold); }

/* === STANDORT === */
.location-box {
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 1.5rem 2rem;
  border-radius: var(--radius);
  margin-top: 1.5rem;
}
.location-box p { font-size: 0.92rem; color: var(--text-mid); line-height: 1.65; }

/* === FOOTER === */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.65);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  padding: 3.5rem 1.5rem 3rem;
  max-width: var(--max-w);
  margin: 0 auto;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-nav {
  display: flex;
  gap: 1.75rem;
  align-items: center;
  flex-wrap: wrap;
}
.footer-nav a, .footer-contact-list a {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  transition: color var(--transition);
}
.footer-nav a:hover, .footer-contact-list a:hover { color: var(--gold); }
.footer-contact-list { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-bottom {
  text-align: center;
  padding: 1.25rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}
.footer-legal {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 0.6rem;
}
.footer-legal a, .footer-legal button {
  color: rgba(255,255,255,0.45);
  font-size: 0.76rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: color var(--transition);
}
.footer-legal a:hover, .footer-legal button:hover { color: var(--gold); }

/* === COOKIE CONSENT BANNER === */
#cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 999;
  background: var(--navy-dark);
  border-top: 3px solid var(--gold);
  box-shadow: 0 -8px 32px rgba(0,0,0,0.4);
  padding: 1.75rem 1.5rem;
  display: none;
  max-height: 85vh;
  overflow-y: auto;
}
#cookie-banner.visible { display: block; }
.cookie-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  flex-wrap: wrap;
}
.cookie-text { flex: 1; min-width: 260px; }
.cookie-text h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.cookie-text p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}
.cookie-text a { color: var(--gold); text-decoration: underline; }
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  min-width: 220px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
}
.cookie-cat-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.cookie-cat-row .cat-desc { font-size: 0.72rem; color: rgba(255,255,255,0.45); }
.cookie-toggle {
  position: relative;
  width: 38px; height: 20px;
  flex-shrink: 0;
}
.cookie-toggle input { opacity: 0; width: 0; height: 0; }
.cookie-toggle .slider {
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.2);
  border-radius: 20px;
  cursor: pointer;
  transition: background var(--transition);
}
.cookie-toggle .slider::before {
  content: '';
  position: absolute;
  width: 16px; height: 16px;
  left: 2px; top: 2px;
  background: var(--white);
  border-radius: 50%;
  transition: transform var(--transition);
}
.cookie-toggle input:checked + .slider { background: var(--gold); }
.cookie-toggle input:checked + .slider::before { transform: translateX(18px); }
.cookie-toggle input:disabled + .slider { opacity: 0.5; cursor: not-allowed; }
.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  min-width: 200px;
}
.cookie-actions .btn { width: 100%; }

@media (max-width: 768px) {
  .cookie-inner { flex-direction: column; }
}

/* === DIVIDER === */
.gold-divider { width: 48px; height: 3px; background: var(--gold); margin: 1.25rem 0 2rem; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .service-cols { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid  { grid-template-columns: 1fr; }
  .footer-inner  { grid-template-columns: 1fr; gap: 2rem; }
  .footer-nav    { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    top: 110px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    gap: 1.1rem;
    border-top: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  }
  .site-nav.open { display: flex; }
  .nav-cta { width: 100%; text-align: center; }
  .hero { padding: 4rem 0 3rem; }
  .cards-grid        { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .qual-grid         { grid-template-columns: 1fr; }
  .press-grid        { grid-template-columns: 1fr; }
  .award-badge       { flex-direction: column; text-align: center; }
  .for-whom          { padding: 2rem 1.5rem; }
}

@media (max-width: 480px) {
  :root { --pad-section: 4rem 0; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .service-block { padding: 1.75rem 0; }
  .section-tight { padding: 1.5rem 0; }
  .contact-primary { padding: 2rem; }
  .nav-inner { height: 80px; }
  .logo-img { height: 60px; }
  .site-nav { top: 80px; }
}

/* ============================================================
   VERHANDLUNGS-CHECKUP MODUL
   ============================================================ */
.cq-wrap { max-width: 640px; margin: 0 auto; }

.cq-progress-wrap { margin-bottom: 2rem; }
.cq-progress-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--navy-mid);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.cq-progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(11,48,65,0.1);
  border-radius: 4px;
  overflow: hidden;
}
.cq-progress-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 4px;
  transition: width 0.3s ease;
}

.cq-card {
  background: #fff;
  border: 1px solid rgba(11,48,65,0.08);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(11,48,65,0.06);
}
.cq-question {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--navy);
  margin: 0 0 1.5rem;
  line-height: 1.35;
}
.cq-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.cq-option {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  text-align: left;
  padding: 0.9rem 1.1rem;
  border: 1.5px solid rgba(11,48,65,0.15);
  border-radius: 8px;
  background: #fff;
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--navy);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.cq-option:hover { border-color: var(--gold); }
.cq-option-selected {
  border-color: var(--gold);
  background: var(--gold-dim);
  font-weight: 600;
}
.cq-option-bullet {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(11,48,65,0.3);
  position: relative;
}
.cq-option-selected .cq-option-bullet {
  border-color: var(--gold);
}
.cq-option-selected .cq-option-bullet::after {
  content: "";
  position: absolute;
  top: 3px; left: 3px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.cq-option-multi { border-radius: 8px; }
.cq-option-check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 2px solid rgba(11,48,65,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 700;
}
.cq-option-multi.cq-option-selected .cq-option-check {
  border-color: var(--gold);
}
.cq-hint {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--navy-mid);
  margin-top: 1rem;
  margin-bottom: 0;
}

.cq-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  gap: 1rem;
}

.cq-result {
  background: #fff;
  border: 1px solid rgba(11,48,65,0.08);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(11,48,65,0.06);
  text-align: center;
}
.cq-result-score-wrap { margin-bottom: 1rem; }
.cq-result-score {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  color: var(--navy);
  line-height: 1;
}
.cq-result-score-max {
  font-size: 1.6rem;
  color: var(--navy-mid);
  font-weight: 400;
}
.cq-result-band {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.35rem 1.1rem;
  border-radius: 30px;
  background: var(--gold-dim);
  color: var(--navy);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.cq-result-desc {
  font-family: var(--font-body);
  color: var(--navy-mid);
  line-height: 1.6;
  max-width: 520px;
  margin: 1.25rem auto 2rem;
  text-align: left;
}

.cq-service-box {
  background: var(--navy);
  border-radius: 10px;
  padding: 1.75rem;
  text-align: left;
  margin-bottom: 1.75rem;
}
.cq-service-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
}
.cq-service-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 0.6rem;
}
.cq-service-reason {
  font-family: var(--font-body);
  color: rgba(255,255,255,0.85);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.cq-cta-wrap { margin-bottom: 2rem; }
.cq-cta-main { display: inline-block; }

.cq-lead-box {
  border-top: 1px solid rgba(11,48,65,0.1);
  padding-top: 1.75rem;
  text-align: left;
}
.cq-lead-label {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.cq-lead-sub {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--navy-mid);
  line-height: 1.5;
  margin-bottom: 1.1rem;
}
.cq-lead-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.cq-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(11,48,65,0.15);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--navy);
  box-sizing: border-box;
}
.cq-input:focus { outline: none; border-color: var(--gold); }
.cq-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  cursor: pointer;
}
.cq-consent input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
  accent-color: var(--gold);
  cursor: pointer;
}
.cq-consent span {
  font-family: var(--font-body);
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--text-mid);
}
.cq-consent span a { color: var(--navy); text-decoration: underline; }
.cq-lead-status {
  margin-top: 0.85rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.5;
}
.cq-lead-status-ok { color: #2f6b3a; }
.cq-lead-status-warn { color: #8a6d1d; }

.cq-restart { margin-top: 1.75rem; }
.cq-restart-link {
  background: none;
  border: none;
  color: var(--navy-mid);
  font-family: var(--font-body);
  font-size: 0.88rem;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
}
.cq-restart-link:hover { color: var(--gold); }

@media (max-width: 600px) {
  .cq-card, .cq-result { padding: 1.5rem; }
  .cq-result-score { font-size: 2.6rem; }
  .cq-nav { flex-direction: column-reverse; gap: 0.75rem; }
  .cq-nav .btn { width: 100%; }
}

/* === QUALIFIKATIONEN: SEKUNDÄRE LISTE === */
.qual-secondary {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.qual-secondary-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.75rem;
}
.qual-secondary-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.qual-secondary-list li {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

/* === QUALIFIKATIONEN: PARTNER-LOGOS (weisse Chips fuer Kontrast auf Dunkel) === */
.qual-logo {
  flex-shrink: 0;
  width: 128px;
  height: 96px;
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem;
}
.qual-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.award-icon-logo {
  width: 192px;
  height: 144px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  font-size: 4.4rem;
}
.award-icon-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
