:root {
  --bg: #000000;
  --bg-soft: #050505;
  --panel: #0a0a0a;
  --panel-2: #111111;
  --text: #ffffff;
  --muted: #d4d4d4;
  --line: rgba(255,255,255,0.12);
  --line-strong: rgba(255,255,255,0.28);
  --shadow: 0 16px 42px rgba(0,0,0,0.36);
  --radius: 24px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Source Sans Pro", "Segoe UI", Arial, sans-serif;
  background: linear-gradient(180deg, #000000 0%, #050505 45%, #000000 100%);
  color: var(--text);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.section { padding: 92px 0; }
.section-soft {
  background: linear-gradient(180deg, rgba(255,255,255,0.015) 0%, rgba(255,255,255,0.01) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0,0,0,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(0,0,0,0.22);
}
.nav {
  min-height: 82px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.logo-mini {
  height: 34px;
  width: auto;
  display: block;
}
.brand-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.brand-sub {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}
.nav-links {
  display: flex;
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.03em;
}
.nav-links a { position: relative; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 1px;
  background: rgba(255,255,255,0.75);
  transition: width 0.2s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; gap: 10px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  border: 1px solid var(--line-strong);
  background: #ffffff;
  color: #000000;
  transition: 0.2s ease;
}
.btn:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}
.btn-ghost {
  background: transparent;
  color: #ffffff;
}
.btn-ghost:hover { background: rgba(255,255,255,0.05); }
.badge, .eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.badge {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.04);
  color: #ffffff;
}
.eyebrow {
  margin-bottom: 12px;
  color: #ffffff;
}
h1 {
  margin: 0;
  font-size: clamp(40px, 5.2vw, 66px);
  line-height: 1.04;
  letter-spacing: -0.045em;
  text-wrap: balance;
}
h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
}
p { color: var(--muted); }
.lead {
  margin-top: 22px;
  font-size: 20px;
  max-width: 840px;
}
.lead.small { font-size: 18px; max-width: 720px; }
.hero { padding: 92px 0 108px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 54px;
  align-items: center;
}
.hero-copy { max-width: 680px; }
.hero-actions, .inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.hero-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
}
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.top-grid { margin-top: 34px; }
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: start; }
.stack { display: grid; gap: 16px; margin-top: 28px; }
.card {
  background: linear-gradient(180deg, rgba(10,10,10,0.98) 0%, rgba(3,3,3,0.99) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}
.accent-card {
  padding: 28px;
}
.card strong { color: #ffffff; }
.kpi {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
}
.kpi-number {
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}
.kpi-label { color: var(--muted); font-size: 15px; }
.list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ffffff;
  margin-top: 9px;
  flex: 0 0 9px;
}
.logo-hero-box,
.logo-panel {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #000000;
  padding: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.logo-hero {
  width: 100%;
  display: block;
  border-radius: 16px;
}
.hero-support {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}
.proof-box {
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 20px;
  background: rgba(255,255,255,0.02);
  color: var(--muted);
}
.cta-box {
  border: 1px solid var(--line-strong);
  border-radius: 32px;
  padding: 36px;
  background: linear-gradient(180deg, rgba(10,10,10,0.98) 0%, rgba(0,0,0,1) 100%);
  box-shadow: var(--shadow);
}
.contact-grid { align-items: center; }
.contact-card p { margin: 10px 0; }
.btn-stack { margin-top: 18px; }
footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
  font-size: 14px;
  color: var(--muted);
}
.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-links a:hover,
.nav-links a:hover { color: #ffffff; }

@media (max-width: 1040px) {
  .hero-grid,
  .split-grid,
  .grid-2,
  .grid-3,
  .hero-kpis,
  .hero-support { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .hero { padding: 68px 0 84px; }
  .nav { min-height: 76px; }
  .brand-sub { letter-spacing: 0.1em; }
}

.page-hero.hero { padding: 80px 0 84px; }
.hero-copy h1 { max-width: 760px; }
.card ul, .card ol { margin: 12px 0 0 20px; color: var(--muted); }
ul.clean-list, ol.clean-list { margin: 0; padding-left: 20px; color: var(--muted); }
ul.clean-list li, ol.clean-list li { margin: 10px 0; }
.contact-card p { margin: 10px 0; }
.btn-stack { margin-top: 18px; }


/* ===== Header / Navigation Update ===== */
header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(0,0,0,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(0,0,0,0.22);
}
.site-header {
  padding: 12px 0 14px;
}
.header-top {
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo-mini {
  width: 84px;
  height: auto;
  display: block;
  flex: 0 0 auto;
}
.brand-block {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.brand-title {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.02;
}
.brand-sub {
  margin-top: 4px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}
.header-actions {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.menu-toggle {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 16px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.menu-toggle-lines {
  width: 22px;
  height: 16px;
  position: relative;
}
.menu-toggle-lines span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}
.menu-toggle-lines span:nth-child(1) { top: 0; }
.menu-toggle-lines span:nth-child(2) { top: 7px; }
.menu-toggle-lines span:nth-child(3) { top: 14px; }

.desktop-nav {
  display: none;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 15px;
}
.desktop-nav a.active,
.desktop-nav a:hover {
  color: #fff;
}

.mobile-drawer {
  position: fixed;
  inset: 0 auto 0 0;
  width: min(86vw, 360px);
  background: #000;
  border-right: 1px solid var(--line);
  transform: translateX(-100%);
  transition: transform 0.25s ease;
  z-index: 80;
  padding: 24px 20px 32px;
  box-shadow: var(--shadow);
}
.mobile-drawer.open { transform: translateX(0); }

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.58);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 70;
}
.drawer-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}
.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.drawer-title {
  font-size: 18px;
  font-weight: 800;
}
.drawer-close {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.drawer-nav {
  display: grid;
  gap: 8px;
}
.drawer-link {
  padding: 14px 12px;
  border-radius: 14px;
  border: 1px solid transparent;
  color: #fff;
  font-weight: 700;
}
.drawer-link.active,
.drawer-link:hover {
  border-color: var(--line);
  background: rgba(255,255,255,0.04);
}
.drawer-footer {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}
body.menu-open { overflow: hidden; }

@media (min-width: 1100px) {
  .site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 14px 0;
  }
  .header-main {
    flex: 0 0 auto;
  }
  .header-actions {
    margin-top: 10px;
  }
  .desktop-nav {
    display: flex;
  }
  .menu-toggle,
  .mobile-drawer,
  .drawer-backdrop {
    display: none !important;
  }
}

@media (max-width: 700px) {
  .container { width: min(var(--max), calc(100% - 24px)); }
  .logo-mini { width: 70px; }
  .brand-title { font-size: 20px; }
  .brand-sub { font-size: 10px; letter-spacing: 0.1em; }
  .header-actions .btn {
    flex: 1 1 auto;
    min-height: 48px;
    font-size: 15px;
    padding: 0 14px;
  }
  .menu-toggle {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 14px;
  }
}


/* ===== Header layout final ===== */
.site-header {
  padding: 12px 0 14px;
}
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  flex: 1 1 auto;
}
.logo-mini {
  width: 84px;
  height: auto;
  display: block;
  flex: 0 0 auto;
}
.brand-block {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.brand-title {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.02;
}
.brand-sub {
  margin-top: 4px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}
.header-actions {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-actions .btn {
  min-height: 52px;
}
.menu-toggle {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 16px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.desktop-nav {
  display: none;
}
.hero-photo {
  position: relative;
  width: 100%;
  min-height: clamp(280px, 46vw, 580px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  min-height: clamp(280px, 46vw, 580px);
  object-fit: cover;
  display: block;
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.34) 60%, rgba(0,0,0,0.58) 100%);
}
.hero-photo-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 0 0 28px;
}
.hero-photo-card {
  max-width: 760px;
  background: rgba(0,0,0,0.64);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(10px);
  border-radius: 26px;
  padding: 22px 22px 20px;
  box-shadow: var(--shadow);
}
.hero-photo-card h1 {
  margin: 12px 0 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.98;
}
.hero-photo-card p {
  margin: 16px 0 0;
  font-size: 18px;
  color: rgba(255,255,255,0.86);
  max-width: 640px;
}
.hero-photo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
@media (min-width: 1100px) {
  .header-shell {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 28px;
  }
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    color: var(--muted);
    font-size: 15px;
    margin-top: 10px;
  }
  .desktop-nav a.active,
  .desktop-nav a:hover {
    color: #fff;
  }
}
@media (max-width: 700px) {
  .logo-mini {
    width: 66px;
  }
  .brand-title {
    font-size: 19px;
  }
  .brand-sub {
    font-size: 10px;
    letter-spacing: 0.1em;
  }
  .menu-toggle {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 14px;
  }
  .header-actions {
    gap: 10px;
  }
  .header-actions .btn {
    flex: 1 1 0;
    min-width: 0;
    min-height: 48px;
    padding: 0 14px;
    font-size: 15px;
  }
  .hero-photo-content {
    padding-bottom: 16px;
  }
  .hero-photo-card {
    border-radius: 20px;
    padding: 16px 16px 14px;
  }
  .hero-photo-card p {
    font-size: 16px;
  }
}


/* Umsetzung & Betrieb image section */
.topic-image-band {
  width: 100%;
  border-bottom: 1px solid var(--line);
  background: #000;
}
.topic-image-wrap {
  width: 100%;
}
.topic-image-wrap img {
  width: 100%;
  display: block;
  height: auto;
}


/* start page header cleanup */
header{
  background:#000 !important;
}
.site-header,
.header-shell,
.header-main,
.header-top,
.header-actions{
  background:#000 !important;
}
.brand-wrap{
  gap:0 !important;
}
.brand-block{
  display:none !important;
}
.logo-mini{
  width:340px !important;
  max-width:calc(100vw - 110px);
  height:auto;
  display:block;
}
.header-top{
  align-items:center !important;
}
.hero-photo{
  margin-top:0 !important;
  background:#000 !important;
  border-top:0 !important;
}
.hero-photo img{
  vertical-align:top;
}
@media (max-width:700px){
  .logo-mini{
    width:220px !important;
    max-width:calc(100vw - 86px);
  }
}


/* Header banner logo insertion */
.header-shell{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:28px;
}
.header-main{
  flex:0 0 auto;
}
.header-desktop-left{
  display:none;
}
.desktop-brand-logo{
  display:block;
  width:240px;
  height:auto;
}
@media (min-width: 1100px){
  .header-main{
    display:none;
  }
  .header-desktop-left{
    display:block;
    flex:0 0 auto;
    margin-top:2px;
  }
  .desktop-nav{
    display:flex;
    align-items:center;
    gap:22px;
    color: var(--muted);
    font-size:15px;
    margin-top:12px;
  }
}


/* ===== FINAL HEADER CLEANUP ===== */
header,
.site-header,
.header-shell,
.header-main,
.header-top,
.header-actions,
.header-desktop-left,
.desktop-nav {
  background: #000 !important;
}

.site-header {
  padding: 14px 0 16px !important;
}

.header-shell {
  display: block !important;
}

.header-desktop-left {
  display: none !important;
}

.desktop-brand-logo {
  display: block;
  width: 250px;
  height: auto;
}

.header-main {
  display: block !important;
}

.header-top {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
}

.brand-wrap {
  display: flex !important;
  align-items: center !important;
  gap: 0 !important;
  min-width: 0 !important;
  flex: 1 1 auto !important;
}

.brand-block {
  display: none !important;
}

.logo-mini {
  width: 250px !important;
  max-width: calc(100vw - 110px) !important;
  height: auto !important;
  display: block !important;
}

.header-actions {
  margin-top: 14px !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

.header-actions .btn {
  min-height: 52px !important;
}

.desktop-nav {
  display: none !important;
}

.menu-toggle {
  display: inline-flex !important;
}

/* Desktop: exactly one clean header */
@media (min-width: 1100px) {
  .site-header {
    padding: 16px 0 18px !important;
  }

  .header-shell {
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    grid-template-rows: auto auto !important;
    align-items: start !important;
    column-gap: 34px !important;
    row-gap: 14px !important;
  }

  .header-main {
    display: contents !important;
  }

  .header-top {
    grid-column: 1 / 2 !important;
    grid-row: 1 / 2 !important;
    justify-content: flex-start !important;
  }

  .brand-wrap {
    flex: 0 0 auto !important;
  }

  .logo-mini {
    width: 290px !important;
    max-width: none !important;
  }

  .menu-toggle {
    display: none !important;
  }

  .header-actions {
    grid-column: 1 / 2 !important;
    grid-row: 2 / 3 !important;
    margin-top: 0 !important;
    justify-content: flex-start !important;
  }

  .desktop-nav {
    grid-column: 2 / 3 !important;
    grid-row: 1 / 3 !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: 24px !important;
    margin-top: 10px !important;
    color: var(--muted) !important;
    font-size: 15px !important;
    white-space: nowrap !important;
  }

  .desktop-nav a.active,
  .desktop-nav a:hover {
    color: #fff !important;
  }

  .header-desktop-left,
  .desktop-brand-logo {
    display: none !important;
  }
}

/* Mobile */
@media (max-width: 700px) {
  .logo-mini {
    width: 210px !important;
    max-width: calc(100vw - 86px) !important;
  }

  .menu-toggle {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
  }

  .header-actions {
    gap: 10px !important;
  }

  .header-actions .btn {
    flex: 1 1 0 !important;
    min-width: 0 !important;
    min-height: 48px !important;
    padding: 0 14px !important;
    font-size: 15px !important;
  }
}

/* Mobile Hero Image */
.hero {
  background-image: url('hero-dsaas.jpg');
}

@media (max-width: 768px) {
  .hero {
    background-image: url('hero-mobile.jpg');
    background-size: cover;
    background-position: center;
  }
}


/* ===== HERO FEINSCHLIFF ===== */
.hero-photo {
  position: relative;
  width: 100%;
  min-height: clamp(320px, 46vw, 620px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #000;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  min-height: clamp(320px, 46vw, 620px);
  object-fit: cover;
  display: block;
}
.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.80) 0%,
    rgba(0,0,0,0.58) 38%,
    rgba(0,0,0,0.28) 68%,
    rgba(0,0,0,0.10) 100%
  );
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.12) 0%,
    rgba(0,0,0,0.22) 55%,
    rgba(0,0,0,0.48) 100%
  );
}
.hero-photo-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 34px 0;
}
.hero-photo-card {
  max-width: 620px;
  background: rgba(0,0,0,0.46);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  border-radius: 28px;
  padding: 28px 28px 26px;
  box-shadow: var(--shadow);
}
.hero-photo-card h1 {
  margin: 12px 0 0;
  font-size: clamp(42px, 5.6vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  max-width: 540px;
}
.hero-photo-card p {
  margin: 14px 0 0;
  font-size: 21px;
  line-height: 1.4;
  color: rgba(255,255,255,0.88);
  max-width: 540px;
}
.hero-photo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.hero-photo-actions .btn {
  min-height: 58px;
  padding: 0 24px;
}
.hero-photo-actions .btn-ghost {
  background: rgba(255,255,255,0.02);
}
@media (max-width: 900px) {
  .hero-photo {
    min-height: 560px;
  }
  .hero-photo img {
    min-height: 560px;
  }
  .hero-photo-content {
    align-items: flex-end;
    padding: 20px 0 24px;
  }
  .hero-photo-card {
    max-width: none;
    width: 100%;
    border-radius: 24px;
    padding: 22px 20px 20px;
    background: rgba(0,0,0,0.58);
  }
  .hero-photo-card h1 {
    font-size: clamp(36px, 12vw, 58px);
    margin-top: 10px;
  }
  .hero-photo-card p {
    font-size: 18px;
    margin-top: 12px;
    max-width: none;
  }
  .hero-photo-actions {
    margin-top: 20px;
    gap: 10px;
  }
  .hero-photo-actions .btn {
    width: 100%;
    min-height: 54px;
    justify-content: center;
  }
}


/* ===== SINGLE START HERO IMAGE ===== */
.start-hero-image {
  width: 100%;
  background: #000;
  border-bottom: 1px solid var(--line);
}
.start-hero-image img {
  width: 100%;
  display: block;
  height: auto;
}
.hero-photo,
.hero-photo-content,
.hero-photo-card {
  display: none !important;
}


/* ===== REMOVE OVERLAY HEROES / KEEP SIMPLE IMAGE BANDS ===== */
.hero-photo,
.hero-photo-content,
.hero-photo-card {
  display: none !important;
}

.start-hero-image,
.topic-image-band {
  width: 100%;
  background: #000;
  border-bottom: 1px solid var(--line);
}

.start-hero-image img,
.topic-image-wrap img {
  width: 100%;
  display: block;
  height: auto;
}


/* ===== VISUAL UPGRADE: BLACK + SILVER/GREY ===== */
:root {
  --bg: #000000;
  --bg-soft: #050505;
  --panel: #0b0b0b;
  --text: #e4e4e4;
  --muted: #b3b3b3;
  --line: rgba(255,255,255,0.10);
  --line-strong: rgba(255,255,255,0.18);
  --shadow: 0 16px 42px rgba(0,0,0,0.38);
}
html, body { background: #000 !important; color: var(--text) !important; }
body, p, li, .kpi-label, .brand-sub, footer, .lead, .lead.small { color: var(--muted) !important; }
h1, h2, h3, strong, .brand-title, .drawer-title { color: var(--text) !important; }
header, .site-header, .header-shell, .header-main, .header-top, .header-actions, .desktop-nav,
.mobile-drawer, .drawer-head, .drawer-nav, .drawer-footer, footer, .start-hero-image,
.topic-image-band, .card, .cta-box, .kpi { background-color: #000 !important; }
.card, .cta-box, .kpi, .logo-hero-box, .logo-panel, .menu-toggle, .drawer-close,
.btn-ghost, .drawer-link.active, .drawer-link:hover { border-color: var(--line-strong) !important; }
.btn { border-color: var(--line-strong) !important; }
.btn-solid { background: linear-gradient(145deg, #d8d8d8, #a8a8a8) !important; color: #050505 !important; box-shadow: 0 10px 26px rgba(0,0,0,0.28); }
.btn-ghost { background: rgba(255,255,255,0.03) !important; color: var(--text) !important; }
.btn-ghost:hover, .menu-toggle:hover, .drawer-close:hover { background: rgba(255,255,255,0.06) !important; }
.badge, .eyebrow { color: #c9c9c9 !important; }
.badge { background: rgba(255,255,255,0.03) !important; border-color: var(--line-strong) !important; }
.desktop-nav a, .footer-links a, .drawer-link { color: #c3c3c3 !important; }
.desktop-nav a.active, .desktop-nav a:hover, .footer-links a:hover, .drawer-link.active, .drawer-link:hover { color: #efefef !important; }
.menu-toggle-lines span { background: #d9d9d9 !important; }
.start-hero-image, .topic-image-band, .section-soft { background: #000 !important; }
.section-soft { border-top: 1px solid var(--line) !important; border-bottom: 1px solid var(--line) !important; }
.card { background: linear-gradient(180deg, rgba(12,12,12,0.98), rgba(5,5,5,0.99)) !important; }
.kpi { background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.012)) !important; }
a { color: inherit; }


/* ===== STARTPAGE HERO LAYOUT UPDATE ===== */
.home-intro-full {
  padding-top: 26px;
}
.home-intro-full .hero-grid {
  grid-template-columns: 1fr !important;
  gap: 0 !important;
}
.home-intro-full .hero-copy {
  max-width: none !important;
}
.home-intro-full .hero-copy h1,
.home-intro-full .hero-copy .lead {
  max-width: none !important;
}
.home-intro-full .hero-visual {
  display: none !important;
}
.home-intro-full .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
@media (max-width: 700px) {
  .home-intro-full .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}
