/* ══════════════════════════════════════════════════════
   ICSL CONSULTING – Page Styles  (icsl_consulting.html)
   Shared base: assets/css/shared.css
══════════════════════════════════════════════════════ */

:root {
  /* CONSULTING Colors */
  --brand:       #00588a;
  --brand-dark:  #0a2540;
  --cons-mid:    #0a2540;
  --cons-accent: #0077b6;
  --brand-other: #00aee6;   /* COMSEC – für Hover Switch-Button */
  --neutral:     #f0f4f8;
  --cons-light:  #e8f2f9;
  --border:      #dde3ea;
  --text:        #0f1923;
  --muted:       #6b7a8d;
  --white:       #ffffff;
  --shadow-sm:   0 1px 4px rgba(0,0,0,.07);
  --shadow-md:   0 4px 20px rgba(0,0,0,.14);
  --nav-h:       60px;
  --meta-h:      32px;
  --radius-card: 14px;
  --radius-btn:  8px;

  /* DARK THEME für Consulting-Nav */
  --meta-bg:            #0a2540;
  --meta-border:        rgba(255,255,255,.08);
  --meta-text:          rgba(255,255,255,.55);
  --meta-text-hover:    rgba(255,255,255,.9);
  --lang-dd-bg:         #0a2540;
  --lang-dd-border:     rgba(255,255,255,.12);
  --lang-opt-color:     rgba(255,255,255,.75);
  --lang-opt-hover:     rgba(255,255,255,.08);
  --lang-opt-active-color: white;
  --lang-opt-tag:       rgba(255,255,255,.4);
  --nav-bg:             #0a2540;
  --nav-border:         rgba(255,255,255,.08);
  --nav-shadow:         0 2px 16px rgba(0,0,0,.25);
  --nav-link-color:     rgba(255,255,255,.75);
  --nav-link-hover:     #ffffff;
  --nav-divider-color:  rgba(255,255,255,.1);
  --nav-sep-color:      rgba(255,255,255,.2);
  --hamburger-color:    rgba(255,255,255,.85);
  --logo-h:             42px;
  --mob-nav-bg:         #0a2540;
  --mob-sep:            rgba(255,255,255,.1);
  --mob-close-color:    rgba(255,255,255,.6);
  --mob-close-hover-bg: rgba(255,255,255,.1);
  --mob-close-hover:    white;
  --mob-link-color:     rgba(255,255,255,.85);
  --mob-link-hover:     white;
  --mob-sub-bg:         rgba(0,0,0,.2);
  --mob-sub-link:       rgba(255,255,255,.55);
  --mob-sub-link-hover: white;
}

/* ── CONSULTING NAV SPECIFICS ── */
.btn-briefing {
  background: var(--brand); color: white;
  box-shadow: 0 2px 6px rgba(0,88,138,.3);
}
.btn-briefing:hover { background: var(--cons-accent); transform: translateY(-1px); }

/* Switch-Button zu COMSEC (auf dunklem Nav: weiß) */
.btn-switch { border-color: rgba(255,255,255,.2); }
.btn-switch .logo-mask { background-color: rgba(255,255,255,.55); }
.btn-switch:hover { border-color: #00aee6; background: rgba(0,174,230,.08); }
.btn-switch:hover .logo-mask { background-color: #00aee6; }

/* Mobile Switch COMSEC logo */
.nav-mob-sw .logo-mask { background-color: rgba(255,255,255,.55); }
.nav-mob-sw:hover .logo-mask { background-color: #00aee6; }

/* Lang dropdown active für Consulting */
.lang-option.active { background: rgba(0,88,138,.4); color: white; font-weight: 600; }

/* ══════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════ */
.hero-cons {
  background: linear-gradient(135deg, #0a2540 0%, #0f3460 55%, #1a4a7a 100%);
  padding: 80px 40px 64px;
  position: relative; overflow: hidden;
}
.hero-cons::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,88,138,.4) 0%, transparent 70%);
  pointer-events: none;
}
.hero-cons-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
/* Override hero-eyebrow (shared: var(--brand) → für Consulting gedämpft) */
.hero-cons .hero-eyebrow {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: rgba(255,255,255,.45); margin-bottom: 14px;
}
/* Override hero-h1 em (Consulting: petrol + underline) */
.hero-cons .hero-h1 {
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  margin-bottom: 20px;
}
.hero-cons .hero-h1 em {
  color: var(--brand);
  text-decoration: underline;
  text-decoration-color: rgba(0,88,138,.4);
  text-underline-offset: 4px;
}
.hero-lead {
  font-size: 1rem; color: rgba(255,255,255,.65);
  line-height: 1.65; margin-bottom: 32px; max-width: 480px;
}
.hero-btn-primary {
  background: var(--brand);
  box-shadow: 0 4px 14px rgba(0,88,138,.35);
}
.hero-btn-primary:hover { background: var(--cons-accent); }
.hero-btn-secondary {
  border-color: rgba(255,255,255,.15);
  padding: 13px 24px;
}
.hero-right { display: flex; flex-direction: column; gap: 16px; }
.hero-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px; padding: 20px 24px; backdrop-filter: blur(4px);
}
.hero-card-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; color: rgba(255,255,255,.4); margin-bottom: 6px;
}
.hero-card-value { font-size: 15px; font-weight: 600; color: white; }
.hero-card-sub   { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 3px; }

/* ══════════════════════════════════════════════════════
   SERVICES SECTION
══════════════════════════════════════════════════════ */
section.section-pad { padding: 72px 40px; }
.container { max-width: 1200px; margin: 0 auto; }

.section-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--brand); margin-bottom: 10px;
}
.section-h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.6rem); font-weight: 800;
  letter-spacing: -.02em; color: var(--text); margin-bottom: 14px; line-height: 1.2;
}
.section-lead {
  font-size: 1rem; color: var(--muted);
  max-width: 580px; line-height: 1.65; margin-bottom: 48px;
}

/* BENTO GRID */
.bento-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.bento-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-card); padding: 28px;
  transition: box-shadow .2s, transform .15s; cursor: default;
  display: flex; flex-direction: column; gap: 12px;
}
.bento-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.bento-card.wide { grid-column: span 2; }
.bento-card.accent {
  background: linear-gradient(135deg, #0a2540 0%, #1a4060 100%);
  border-color: transparent; color: white;
}
.bento-icon { font-size: 28px; margin-bottom: 4px; display: flex; align-items: center; }
.bento-icon svg { width: 28px; height: 28px; color: var(--brand); }
.bento-card.accent .bento-icon svg { color: rgba(255,255,255,.85); }
.bento-title { font-size: 16px; font-weight: 700; color: var(--text); }
.bento-card.accent .bento-title { color: white; }
.bento-desc  { font-size: 13px; color: var(--muted); line-height: 1.55; }
.bento-card.accent .bento-desc { color: rgba(255,255,255,.65); }
.bento-tags  { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.bento-tag {
  font-size: 11px; font-weight: 600; padding: 3px 9px;
  border-radius: 20px; background: var(--cons-light); color: var(--brand);
}
.bento-card.accent .bento-tag { background: rgba(255,255,255,.12); color: rgba(255,255,255,.8); }

/* ══════════════════════════════════════════════════════
   USE CASES
══════════════════════════════════════════════════════ */
.uc-section { background: var(--neutral); padding: 56px 40px; }
.uc-head    { margin-bottom: 32px; }
.uc-grid    { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.uc-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-card); padding: 22px 20px;
  transition: box-shadow .15s, border-color .15s; cursor: pointer;
}
.uc-card:hover { box-shadow: var(--shadow-md); border-color: var(--brand); }
.uc-card-tag {
  display: inline-block; font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .04em;
  color: var(--brand); background: var(--cons-light);
  padding: 2px 7px; border-radius: 10px; margin-bottom: 10px;
}
.uc-card-title { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.uc-card-sub   { font-size: 12px; color: var(--muted); line-height: 1.5; }

/* ══════════════════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, #0a2540 0%, #0f3460 100%);
  padding: 64px 40px;
}
.cta-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.cta-h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.4rem); font-weight: 800;
  color: white; margin-bottom: 14px; letter-spacing: -.02em;
}
.cta-lead { font-size: 1rem; color: rgba(255,255,255,.6); margin-bottom: 32px; }
.cta-btn {
  background: var(--brand); color: white;
  padding: 15px 36px; border-radius: 8px;
  font-size: 16px; font-weight: 700; cursor: pointer; border: none;
  box-shadow: 0 4px 18px rgba(0,88,138,.4);
  transition: background .15s, transform .1s;
}
.cta-btn:hover { background: var(--cons-accent); transform: translateY(-1px); }

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
.footer {
  background: var(--brand-dark); color: rgba(255,255,255,.55);
  font-size: 13px; padding: 40px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,.4); }
.footer-links { display: flex; gap: 20px; font-size: 12px; }
.footer-links a { color: rgba(255,255,255,.4); transition: color .15s; }
.footer-links a:hover { color: rgba(255,255,255,.75); }

/* @component: Footer brand=consulting (full 4-column) */
.cons-footer-full {
  background: #071a2e; color: rgba(255,255,255,.55);
  font-size: 13px; padding: 48px 24px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.cons-footer-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 40px;
}
.cons-footer-brand { line-height: 1.7; }
.cons-footer-brand a { color: rgba(255,255,255,.7); }
.cons-footer-brand a:hover { color: #fff; }
.cons-footer-col { display: flex; flex-direction: column; gap: 8px; }
.cons-fcol-title {
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 2px;
}
.cons-footer-col a { color: rgba(255,255,255,.55); transition: color .2s; }
.cons-footer-col a:hover { color: #fff; }
.cons-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  max-width: 1100px; margin: 0 auto; padding: 16px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px; font-size: 12px;
}
.cons-footer-bottom a { color: rgba(255,255,255,.4); }
.cons-footer-bottom a:hover { color: rgba(255,255,255,.75); }
@media (max-width: 1069px) { .cons-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 735px) { .cons-footer-grid { grid-template-columns: 1fr; gap: 28px; } }

/* BRIEFING MODAL (Consulting) */
#briefingModal {
  position: fixed; inset: 0;
  background: rgba(10,37,64,.7); z-index: 600;
  align-items: center; justify-content: center;
}

/* ══════════════════════════════════════════════════════
   CONSULTING RESPONSIVE
══════════════════════════════════════════════════════ */
@media (max-width: 1068px) {
  .hero-cons-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-right { display: none; }
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-card.wide { grid-column: span 2; }
  .uc-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 734px) {
  .hero-cons { padding: 48px 20px 40px; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card.wide { grid-column: span 1; }
  .uc-grid { grid-template-columns: 1fr; }
  .uc-section { padding: 40px 20px; }
  .cta-section { padding: 48px 20px; }
  .footer { padding: 32px 20px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
}
@media (min-width: 1440px) {
  .hero-cons { padding: 96px 60px 72px; }
}


/* ==================================================================
   CONSULTING SUBPAGE COMPONENTS  (zentralisiert 2026-06-10 — vorher inline je Seite)
   ================================================================== */

/* Consulting nav helper + meta-bar background (B1) */
.meta-bar{background:#0a2540}
.btn-kontakt{display:inline-flex;align-items:center;justify-content:center;background:transparent;border:1px solid rgba(255,255,255,.3);color:#fff;padding:6px 16px;border-radius:6px;font-size:13px;font-weight:600;line-height:16px;transition:all .2s}
.btn-kontakt:hover{background:rgba(255,255,255,.12);border-color:rgba(255,255,255,.5)}

.sp-hero{background:linear-gradient(135deg,#0a2540 0%,#00588a 100%);padding:90px 24px 70px;text-align:center;color:#fff}
.sp-hero-tag{font-size:12px;font-weight:700;letter-spacing:2px;text-transform:uppercase;color:rgba(255,255,255,.55);margin-bottom:14px}
.sp-hero h1{font-size:clamp(28px,4vw,52px);font-weight:800;line-height:1.15;margin-bottom:18px;max-width:800px;margin-left:auto;margin-right:auto}
.sp-hero p{font-size:clamp(15px,1.8vw,20px);color:rgba(255,255,255,.8);max-width:650px;margin:0 auto 28px}
.sp-hero-btns{display:flex;gap:12px;justify-content:center;flex-wrap:wrap}
.btn-primary{background:#00588a;color:#fff;padding:14px 28px;border-radius:8px;font-weight:700;font-size:15px;border:none;cursor:pointer;display:inline-block;transition:background .2s}
.btn-primary:hover{background:#004a75}
.btn-secondary{background:rgba(255,255,255,.12);color:#fff;padding:14px 28px;border-radius:8px;font-weight:600;font-size:15px;border:1.5px solid rgba(255,255,255,.3);cursor:pointer;display:inline-block;transition:all .2s}
.btn-secondary:hover{background:rgba(255,255,255,.2)}
.sp-section{max-width:1248px;margin:0 auto;padding:60px 24px}
.sp-section-alt{background:#fff}
.sp-section-alt .sp-section{padding-top:60px;padding-bottom:60px}
.section-label{font-size:12px;font-weight:700;letter-spacing:2px;text-transform:uppercase;color:#00588a;margin-bottom:10px}
.section-title{font-size:clamp(22px,2.8vw,36px);font-weight:800;color:#0a1628;margin-bottom:14px;line-height:1.2}
.section-lead{font-size:17px;color:#4a5568;max-width:680px;line-height:1.65}
.feat-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:24px;margin-top:36px}
.feat-card{background:#fff;border-radius:14px;padding:28px;box-shadow:0 2px 12px rgba(0,0,0,.07);border:1px solid #e8edf2;transition:transform .2s,box-shadow .2s}
.feat-card:hover{transform:translateY(-3px);box-shadow:0 8px 24px rgba(0,0,0,.1)}
.feat-icon{width:44px;height:44px;border-radius:10px;background:rgba(0,88,138,.1);display:flex;align-items:center;justify-content:center;margin-bottom:16px}
.feat-icon svg{width:22px;height:22px;stroke:#00588a}
.feat-card h3{font-size:16px;font-weight:700;color:#0a1628;margin-bottom:8px}
.feat-card p{font-size:14px;color:#64748b;line-height:1.6}
.check-list{list-style:none;margin-top:24px;display:flex;flex-direction:column;gap:12px}
.check-list li{display:flex;align-items:flex-start;gap:12px;font-size:15px;color:#2d3748;line-height:1.55}
.check-list li::before{content:"✓";min-width:22px;height:22px;border-radius:50%;background:rgba(0,88,138,.1);color:#00588a;font-weight:800;font-size:12px;display:flex;align-items:center;justify-content:center;margin-top:2px}
.two-col{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:start;margin-top:36px}
@media(max-width:735px){.two-col{grid-template-columns:1fr}}
.info-box{background:rgba(0,88,138,.1);border-left:4px solid #00588a;border-radius:8px;padding:20px 24px;margin-top:24px}
.info-box p{font-size:15px;color:#1a2a3a;line-height:1.65}
.cta-band{background:linear-gradient(135deg,#0a2540,#00588a);color:#fff;padding:56px 24px;text-align:center}
.cta-band h2{font-size:clamp(22px,3vw,36px);font-weight:800;margin-bottom:12px}
.cta-band p{font-size:17px;color:rgba(255,255,255,.8);margin-bottom:28px;max-width:580px;margin-left:auto;margin-right:auto}
.related{background:#fff;padding:48px 24px}
.related-inner{max-width:1248px;margin:0 auto}
.related-inner h3{font-size:20px;font-weight:700;color:#0a1628;margin-bottom:24px}
.related-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(240px,1fr));gap:16px}
.rel-card{border:1.5px solid #e8edf2;border-radius:12px;padding:20px;display:block;transition:border-color .2s,box-shadow .2s}
.rel-card:hover{border-color:#00588a;box-shadow:0 4px 16px rgba(0,88,138,.12)}
.rel-card h4{font-size:15px;font-weight:700;color:#0a1628;margin-bottom:6px}
.rel-card p{font-size:13px;color:#64748b;line-height:1.5}
.rel-card .rel-arrow{font-size:13px;color:#00588a;font-weight:700;margin-top:10px;display:block}
@media(max-width:1069px){.cons-footer-inner{grid-template-columns:1fr 1fr}}
@media(max-width:735px){.cons-footer-inner{grid-template-columns:1fr;gap:28px}}
/* Briefing Modal */
.briefing-overlay{position:fixed;inset:0;background:rgba(0,0,0,.6);z-index:9000;display:none;align-items:center;justify-content:center;padding:20px}
.briefing-overlay.open{display:flex}
.briefing-modal{background:#fff;border-radius:16px;padding:36px;max-width:480px;width:100%;position:relative;box-shadow:0 20px 60px rgba(0,0,0,.3)}
.briefing-modal h2{font-size:22px;font-weight:800;color:#0a2540;margin-bottom:8px}
.briefing-modal p{font-size:14px;color:#64748b;margin-bottom:24px;line-height:1.6}
.briefing-modal label{display:block;font-size:13px;font-weight:600;color:#374151;margin-bottom:5px}
.briefing-modal input,.briefing-modal textarea{width:100%;border:1.5px solid #d1d5db;border-radius:8px;padding:10px 12px;font-size:14px;margin-bottom:14px;font-family:inherit;outline:none;transition:border-color .2s}
.briefing-modal input:focus,.briefing-modal textarea:focus{border-color:#00588a}
.briefing-modal textarea{resize:vertical;min-height:80px}
.bm-close{position:absolute;top:16px;right:16px;background:none;border:none;font-size:20px;cursor:pointer;color:#9ca3af}
.bm-submit{width:100%;background:#00588a;color:#fff;border:none;border-radius:8px;padding:13px;font-size:15px;font-weight:700;cursor:pointer;transition:background .2s}
.bm-submit:hover{background:#004a75}
@media(max-width:735px){.sp-hero{padding:70px 20px 50px}.sp-section{padding:40px 20px}.feat-grid{grid-template-columns:1fr}}



/* 260715: Karten ganz klickbar (Ludwig) */
a.uc-card,a.bento-card{display:block;text-decoration:none;color:inherit;}
a.bento-card{cursor:pointer;}


/* ══════════════════════════════════════════════════════
   BRIEFING-MODAL v2 (briefing.js, 260716) — Consulting-Brand
   Klassen identisch zu comsec.css, Farben/Radien Consulting
══════════════════════════════════════════════════════ */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(10,37,64,.72); z-index: 900;
  align-items: center; justify-content: center; padding: 20px;
  backdrop-filter: blur(4px);
}
.modal-overlay.open { display: flex; }
.modal {
  background: white; max-width: 560px; width: 100%; border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,.35); overflow: hidden;
  animation: modalIn .25s ease; max-height: 90vh; overflow-y: auto;
}
@keyframes modalIn { from { opacity:0; transform:translateY(24px);} to { opacity:1; transform:none;} }
.modal-header { background: var(--brand-dark); padding: 24px 28px; color: white; position: relative; }
.modal-header h2 { font-size: 18px; font-weight: 800; margin-bottom: 4px; }
.modal-header p  { font-size: 13px; color: rgba(255,255,255,.55); }
.modal-close { position: absolute; top: 16px; right: 20px; font-size: 20px; color: rgba(255,255,255,.45); cursor: pointer; background: none; border: none; }
.modal-body { padding: 24px 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group.full { grid-column: span 2; }
.form-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: var(--muted); }
.form-input, .form-select, .form-textarea {
  border: 1.5px solid var(--border); padding: 9px 12px; border-radius: 8px;
  font-size: 13px; font-family: inherit; color: var(--text); background: white;
  transition: border-color .15s; width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(0,88,138,.1);
}
.form-textarea { resize: vertical; min-height: 80px; }
.form-submit {
  width: 100%; background: var(--brand); color: white; padding: 13px;
  font-size: 12px; font-weight: 700; cursor: pointer; border: none; margin-top: 8px;
  letter-spacing: .8px; text-transform: uppercase; transition: background .15s; border-radius: 8px;
}
.form-submit:hover { background: #004a75; }
.form-note { margin-top: 10px; font-size: 11px; color: var(--muted); text-align: center; }
@media (max-width: 735px) {
  .form-row { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
}
