/* ============================================================
   TcNet GmbH – Design System
   PANTONE 144 U → #FF8500 (Orange)
   PANTONE 288 U → #0041C4 (Blau) / #0D1A3A (dunkel)
   ============================================================ */
:root {
  --signal:      #FF8500;
  --brandblue:   #0041C4;
  --deepsea:     #0D1A3A;
  --deepsea-mid: #122060;
  --ink:         #0B1416;
  --glacier:     #F6F7F5;
  --glacier-dim: #ECEEEA;
  --fog:         #8C9AA0;
  --fog-line:    #D9DCD8;
  --trust-bg:    #E8EEFF;
  --trust-dark:  #0A2680;
  --trust-text:  #1A3070;
  --route-line:  #1A3060;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'IBM Plex Sans', sans-serif; color: var(--ink); background: var(--glacier); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── UTILS ──────────────────────────────── */
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 40px; }
.mono { font-family: 'IBM Plex Mono', monospace; }

/* ── HEADER / NAV ───────────────────────── */
header { background: var(--deepsea); position: sticky; top: 0; z-index: 200; }
.topbar { background: var(--deepsea); padding: 8px 40px; display: flex; justify-content: flex-end; align-items: center; gap: 22px; border-bottom: 2px solid var(--route-line); }
.topbar a { font-family: 'IBM Plex Mono', monospace; font-size: 12px; letter-spacing: 0.02em; color: #A8BAD0; transition: color .15s; display: inline-flex; align-items: center; gap: 5px; }
.topbar a .bi { font-size: 0.72rem; color: var(--signal); line-height: 1; transition: color .15s; }
.topbar a:hover { color: var(--signal); }
.topbar a:hover .bi { color: #E07200; }
.navbar { display: flex; align-items: center; justify-content: space-between; padding: 20px 40px; position: relative; }
header .navbar { --bs-navbar-color: #A8BAD0; --bs-navbar-hover-color: #F6F7F5; --bs-navbar-active-color: #F6F7F5; background: transparent; margin-bottom: 0; }
.logo { display: flex; align-items: center; cursor: pointer; flex-shrink: 0; }
.logo img { height: 40px; width: auto; display: block; }
.main-nav { display: flex; gap: 0; list-style: none; position: relative; margin: 0; padding: 0; }
.main-nav > li { position: relative; }
.main-nav > li > a { display: inline-flex; align-items: center; gap: 7px; padding: 8px 14px; color: #A8BAD0; font-size: 14px; cursor: pointer; transition: color .15s; white-space: nowrap; }
.main-nav > li > a .bi.nav-icon { color: var(--signal); font-size: 1.05rem; line-height: 1; flex-shrink: 0; }
.main-nav > li > a .nav-chevron { color: var(--signal); font-size: 0.65rem; line-height: 1; margin-left: 1px; }
.main-nav > li > a:hover,
.main-nav > li.open > a,
.main-nav > li:focus-within > a { color: var(--glacier); }
.main-nav > li > a.nav-current { color: var(--glacier); font-weight: 600; border-bottom: 2px solid var(--signal); }
.dropdown a { display: flex; align-items: center; gap: 10px; padding: 9px 18px; font-size: 13.5px; color: #A8BAD0; cursor: pointer; transition: background .12s, color .12s; }
.dropdown a .bi { color: var(--signal); font-size: 1rem; flex-shrink: 0; width: 1.1rem; text-align: center; }
.dropdown a.nav-current { color: var(--glacier); background: #1A3268; }
.dropdown a:hover { background: #1A3268; color: var(--glacier); }
.dropdown { display: none; position: absolute; top: 100%; left: 0; background: #152848; border: 1px solid #334868; border-radius: 4px; min-width: 200px; padding: 8px 0 10px; box-shadow: 0 12px 40px rgba(0,0,0,.45); z-index: 300; }
.main-nav > li.open .dropdown { display: block; }
.dropdown .dd-label { padding: 10px 18px 6px; font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: 1.2px; color: var(--signal); text-transform: uppercase; font-weight: 500; }
.dropdown hr { border: none; border-top: 1px solid #2A4060; margin: 6px 0; }
.dropdown a.dd-highlight { color: var(--signal); }
.mega { min-width: 600px; left: 0; }
.main-nav > li.open .mega { display: grid; grid-template-columns: repeat(3, 1fr); }
.mega-col { padding: 14px 0; }
.mega-col + .mega-col { border-left: 1px solid #2A4060; }

/* Dropdown ohne JavaScript: Untermenüs immer sichtbar */
body:not(.nav-enhanced) .nav-item-has-dropdown .dropdown {
  display: block;
  position: static;
  box-shadow: none;
  border: none;
  min-width: 0;
  padding: 0 0 12px 12px;
  margin-bottom: 4px;
}
body:not(.nav-enhanced) .nav-item-has-dropdown .mega {
  display: grid;
  grid-template-columns: 1fr;
  min-width: 0;
}
@media (min-width: 901px) {
  body:not(.nav-enhanced) .nav-item-has-dropdown .mega {
    grid-template-columns: repeat(3, 1fr);
  }
  body:not(.nav-enhanced) .nav-item-has-dropdown .mega-col + .mega-col {
    border-left: 1px solid #2A4060;
    border-top: none;
  }
}
body:not(.nav-enhanced) .nav-item-has-dropdown .mega-col + .mega-col {
  border-left: none;
  border-top: 1px solid #2A4060;
}

/* Dropdown mit JavaScript: Hover & Tastatur (Desktop) */
@media (min-width: 901px) {
  body.nav-enhanced .nav-item-has-dropdown:hover > .dropdown,
  body.nav-enhanced .nav-item-has-dropdown:focus-within > .dropdown { display: block; }
  body.nav-enhanced .nav-item-has-dropdown:hover > .mega,
  body.nav-enhanced .nav-item-has-dropdown:focus-within > .mega {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
.nav-cta { background: var(--signal); color: #fff; padding: 9px 18px; border-radius: 3px; font-size: 14px; font-weight: 500; cursor: pointer; transition: background .15s; flex-shrink: 0; display: inline-flex; align-items: center; gap: 8px; }
.nav-cta:hover { background: #E07200; color: #fff; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; border: none; background: none; }
.hamburger span { width: 22px; height: 2px; background: var(--glacier); border-radius: 2px; transition: all .3s; }

/* ── BREADCRUMB ─────────────────────────── */
.page-breadcrumb { background: var(--deepsea); margin: 0; padding: 0 40px; }
.page-breadcrumb .wrap { padding: 10px 0 14px; }
.page-breadcrumb span, .page-breadcrumb a { font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: #5A7090; }
.page-breadcrumb a:hover { color: #A8BAD0; }
.page-product > .page-hero { padding-top: 28px; }

/* ── HERO ───────────────────────────────── */
.hero { background: var(--deepsea); color: var(--glacier); padding: 10px 40px 44px; }
.hero-inner { max-width: 1120px; margin: 0 auto; }
.eyebrow { font-family: 'IBM Plex Mono', monospace; font-size: 12.5px; letter-spacing: 1.5px; color: var(--signal); text-transform: uppercase; margin-bottom: 18px; }
h1 { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 50px; line-height: 1.15; max-width: 680px; margin-bottom: 20px; }
.hero-sub { font-size: 17px; color: #A8BAD0; max-width: 540px; margin-bottom: 34px; }
.cta-row { display: flex; gap: 14px; margin-bottom: 56px; flex-wrap: wrap; }
.btn-primary { background: var(--signal); color: #fff; padding: 13px 26px; border-radius: 3px; font-size: 15px; font-weight: 500; cursor: pointer; transition: background .15s; display: inline-flex; align-items: center; gap: 8px; border: none; }
.btn-primary:hover { background: #E07200; color: #fff; }
.btn-ghost { border: 1px solid #2A4060; color: var(--glacier); padding: 13px 26px; border-radius: 3px; font-size: 15px; cursor: pointer; transition: border-color .15s; display: inline-flex; align-items: center; gap: 8px; }
.btn-ghost:hover { border-color: var(--brandblue); color: var(--glacier); }

/* Hero-Karussell (Startseite) */
.hero-carousel { position: relative; padding-bottom: 0; }
.hero-carousel .carousel-inner { overflow: visible; }
.hero-carousel .carousel-item { transition: transform 0.7s ease-in-out; }
.hero-carousel .hero-slide-body { min-height: 420px; display: flex; flex-direction: column; padding-bottom: 12px; }
.hero-carousel .hero-slide-body.no-route { min-height: 360px; padding-bottom: 36px; }
.hero-carousel .carousel-indicators { margin-bottom: 0; bottom: 0; gap: 6px; position: absolute; }
.hero-carousel .carousel-indicators [data-bs-target] {
  width: 9px; height: 9px; border-radius: 50%; border: none; margin: 0;
  background-color: #4A6080; opacity: 1;
}
.hero-carousel .carousel-indicators .active { background-color: var(--signal); }
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next { width: 44px; height: 44px; top: 42%; opacity: 0.85; }
.hero-carousel .carousel-control-prev { left: -12px; }
.hero-carousel .carousel-control-next { right: -12px; }
.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon { filter: invert(1); width: 1.4rem; height: 1.4rem; }
.hero-carousel .cta-row { margin-bottom: 0; }
.hero-carousel .carousel-item .route { margin-top: auto; padding-bottom: 16px; }

/* ── VERBINDUNGSLINIE ───────────────────── */
.route { position: relative; padding-bottom: 54px; }
.route svg { display: block; width: 100%; height: auto; }
.route-label { position: absolute; font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: #7090A8; }
.route-label .city { display: block; font-size: 13.5px; color: var(--glacier); font-weight: 500; letter-spacing: .5px; }
.route-label.left  { left: 0; bottom: 48px; }
.route-label.right { right: 0; bottom: 48px; text-align: right; }
.pulse-dot { animation: pulse 2.6s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:.3;} 50%{opacity:1;} }

/* ── STATUSLEISTE ───────────────────────── */
.statusbar { background: var(--glacier-dim); border-bottom: 1px solid var(--fog-line); }
.statusbar .wrap { display: flex; justify-content: space-between; padding: 18px 40px; flex-wrap: wrap; gap: 18px; }
.stat { font-family: 'IBM Plex Mono', monospace; font-size: 13px; color: var(--fog); }
.stat strong { color: var(--ink); font-size: 14px; display: block; margin-bottom: 3px; font-weight: 500; }

/* ── PRODUKT-PANEL ──────────────────────── */
.panel { padding: 70px 40px 50px; }
.panel-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; }
.panel-head h2 { font-family: 'Space Grotesk', sans-serif; font-size: 26px; font-weight: 600; }
.panel-head .count { font-family: 'IBM Plex Mono', monospace; font-size: 12.5px; color: var(--fog); }
.service-row { display: flex; align-items: center; justify-content: space-between; flex-wrap: nowrap; padding: 22px 0; border-top: 1px solid var(--fog-line); gap: 20px; transition: background .1s; color: inherit; }
a.service-row { text-decoration: none; }
.service-row:last-child { border-bottom: 1px solid var(--fog-line); }
.service-row:hover { background: #F0F2F0; margin: 0 -8px; padding: 22px 8px; }
.row-left { display: flex; align-items: center; gap: 20px; flex: 1; }
.row-icon { flex-shrink: 0; width: 2rem; display: flex; align-items: center; justify-content: center; color: var(--signal); font-size: 1.4rem; line-height: 1; }
.row-tag { font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: var(--signal); min-width: 110px; letter-spacing: .5px; }
.row-title { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 17px; min-width: 160px; }
.row-desc { color: var(--fog); font-size: 14.5px; }
.row-arrow { flex-shrink: 0; margin-left: auto; display: inline-flex; align-items: center; justify-content: center; color: var(--fog); font-size: 1.2rem; line-height: 1; transition: color .15s; }
.service-row:hover .row-arrow { color: var(--brandblue); }

/* ── TRUST ──────────────────────────────── */
.trust { background: #E8EEFF; padding: 64px 40px; }
.trust-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; }
.trust-item .num { font-family: 'IBM Plex Mono', monospace; color: var(--trust-dark); font-size: 13px; margin-bottom: 10px; letter-spacing: 1px; }
.trust-item h3 { font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.trust-item p { color: var(--trust-text); font-size: 14.5px; }

/* ── TEAM ───────────────────────────────── */
.team { padding: 64px 40px; }
.team h2 { font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 600; margin-bottom: 30px; }
.team-grid { display: flex; gap: 34px; flex-wrap: wrap; }
.member { display: flex; align-items: center; gap: 12px; }
.avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--deepsea); color: var(--glacier); display: flex; align-items: center; justify-content: center; font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 600; }
.member-name { font-size: 14.5px; font-weight: 500; }
.member-role { font-size: 13px; color: var(--fog); }

/* ── FAQ ────────────────────────────────── */
.faq { padding: 64px 40px 70px; }
.faq h2 { font-family: 'Space Grotesk', sans-serif; font-size: 26px; font-weight: 600; margin-bottom: 30px; }
.faq-row { padding: 22px 0; border-top: 1px solid var(--fog-line); cursor: pointer; }
.faq-row:last-child { border-bottom: 1px solid var(--fog-line); }
.faq-q { display: flex; gap: 18px; align-items: baseline; margin-bottom: 0; }
.faq-tag { font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: var(--signal); min-width: 36px; }
.faq-q-text { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 16px; }
.faq-chevron { margin-left: auto; font-family: 'IBM Plex Mono', monospace; color: var(--fog); transition: transform .25s; }
.faq-row.open .faq-chevron { transform: rotate(180deg); }
.faq-a { color: var(--fog); font-size: 14.5px; margin-left: 54px; max-height: 0; overflow: hidden; transition: max-height .35s ease, margin-top .3s; }
.faq-row.open .faq-a { max-height: 480px; margin-top: 10px; }
.faq-row.open .faq-a.faq-a-rich { max-height: 1200px; }
.faq-row.open .faq-a.faq-a-long { max-height: 2000px; }
.faq-a a { color: var(--brandblue); text-decoration: underline; text-underline-offset: 2px; }
.faq-a-rich { display: block; }
.faq-table { width: 100%; max-width: 420px; border-collapse: collapse; margin: 4px 0 10px; font-family: 'IBM Plex Mono', monospace; font-size: 13px; }
.faq-table th, .faq-table td { text-align: left; padding: 8px 12px; border-bottom: 1px solid var(--fog-line); }
.faq-table th { color: var(--ink); font-weight: 500; }
.faq-table td { color: var(--fog); }
.faq-table-note { font-size: 12.5px; color: var(--fog); margin: 0; }

/* ── PRODUKTUNTERSEITE ──────────────────── */
.page-hero { background: var(--deepsea); color: var(--glacier); padding: 36px 40px 48px; }
.page-hero .wrap { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
.page-hero-left { max-width: 580px; }
.page-hero h1 { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 42px; line-height: 1.18; margin-bottom: 14px; max-width: none; }
.page-hero-sub { font-size: 16px; color: #A8BAD0; max-width: 480px; margin-bottom: 0; }
.page-hero-stats { display: flex; gap: 36px; padding-bottom: 4px; flex-shrink: 0; }
.hero-stat { text-align: right; }
.hero-stat strong { font-family: 'IBM Plex Mono', monospace; font-size: 28px; font-weight: 500; color: var(--glacier); display: block; line-height: 1; }
.hero-stat span { font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: #7090A8; letter-spacing: .5px; display: block; margin-top: 5px; }
.products-section { padding: 56px 40px; }
.product-intro { color: var(--fog); font-size: 15.5px; max-width: 640px; margin: 0 0 28px; line-height: 1.65; }
.section-label { font-family: 'IBM Plex Mono', monospace; font-size: 12px; letter-spacing: 1.5px; color: var(--signal); text-transform: uppercase; margin-bottom: 20px; display: flex; align-items: center; gap: 14px; }
.section-label::after { content: ''; flex: 1; height: 1px; background: var(--fog-line); }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 0; }
.product-card { background: #fff; padding: 28px 24px 32px; border: 1px solid var(--fog-line); border-radius: 10px; position: relative; transition: border-color .2s, box-shadow .2s; display: flex; flex-direction: column; }
.product-card:hover { border-color: rgba(255, 133, 0, .45); box-shadow: 0 6px 28px rgba(13, 26, 58, .08); z-index: 1; }
.product-card.highlight { border-color: var(--signal); box-shadow: 0 4px 20px rgba(255, 133, 0, .12); }
.product-card.highlight::before { content: 'EMPFOHLEN'; font-family: 'IBM Plex Mono', monospace; font-size: 10px; letter-spacing: 1px; background: var(--signal); color: #fff; padding: 5px 12px; position: absolute; top: 0; right: 0; border-radius: 0 9px 0 8px; }
.card-tag { font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--signal); letter-spacing: .8px; margin-bottom: 14px; }
.card-title { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 20px; margin-bottom: 10px; }
.card-desc { color: var(--fog); font-size: 14px; line-height: 1.6; margin-bottom: 24px; }
.card-features { list-style: none; margin-bottom: 28px; flex: 1; }
.card-features li { font-size: 13.5px; padding: 7px 0; border-bottom: 1px solid var(--fog-line); display: flex; align-items: center; gap: 10px; color: var(--ink); }
.card-features li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--signal); flex-shrink: 0; }
.card-price { font-family: 'IBM Plex Mono', monospace; font-size: 13px; color: var(--fog); margin-bottom: 16px; }
.card-price strong { font-family: 'Space Grotesk', sans-serif; font-size: 26px; color: var(--ink); font-weight: 600; margin-right: 4px; }
.card-price-on-request strong { font-size: 22px; }
.card-cta { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 11px; border: 1.5px solid var(--deepsea); color: var(--deepsea); font-family: 'IBM Plex Mono', monospace; font-size: 13px; letter-spacing: .5px; border-radius: 6px; transition: all .15s; text-decoration: none; cursor: pointer; margin-top: auto; }
.card-cta .bi { font-size: 1.05rem; line-height: 1; flex-shrink: 0; }
.card-cta:hover { background: var(--signal); border-color: var(--signal); color: #fff; }
.card-cta-primary { background: var(--signal); color: #fff; border-color: var(--signal); }
.card-cta-primary:hover { background: #E07200; border-color: #E07200; color: #fff; }
.trust-band { background: #E8EEFF; padding: 48px 40px; }
.trust-band .trust-grid { grid-template-columns: repeat(4, 1fr); gap: 32px; }
.trust-band .trust-grid.trust-grid-3 { grid-template-columns: repeat(3, 1fr); }
.trust-band .trust-grid.trust-grid-5 { grid-template-columns: repeat(5, 1fr); }
.trust-band .trust-item h3 { font-size: 16px; }
.trust-band .trust-item p { font-size: 13.5px; }
.trust-band .trust-item a { color: var(--brandblue); text-decoration: underline; text-underline-offset: 2px; }
.price-note { font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: var(--fog); margin-top: 18px; }
.price-note a { color: var(--brandblue); text-decoration: underline; text-underline-offset: 2px; }
.cta-band { background: var(--deepsea); color: var(--glacier); padding: 56px 40px; }
.cta-band .wrap { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-band h2 { font-family: 'Space Grotesk', sans-serif; font-size: 28px; font-weight: 600; max-width: 480px; margin-bottom: 0; }
.cta-band p { color: #A8BAD0; font-size: 15px; margin-top: 10px; max-width: 400px; }
.cta-band-right { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }
.page-hero-actions { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 12px; }
.content-section { padding: 56px 40px; }
.content-section.alt { background: #F0F3F8; }
.content-section h2 { font-family: 'Space Grotesk', sans-serif; font-size: 26px; font-weight: 600; margin-bottom: 14px; }
.legal-text { max-width: 820px; }
.legal-text h1 { font-family: 'Space Grotesk', sans-serif; font-size: 32px; font-weight: 600; margin-bottom: 16px; }
.legal-text h2 { margin-top: 32px; }
.legal-text h3 { font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 600; margin: 22px 0 10px; }
.legal-text p { margin-bottom: 14px; }
.legal-text a { color: var(--brandblue); text-decoration: underline; text-underline-offset: 2px; }
.legal-text ul { margin: 0 0 16px 1.3em; }
.legal-text li { margin-bottom: 8px; }
.doc-list { list-style: none; margin: 0; padding: 0; max-width: 720px; border: 1px solid var(--fog-line); border-radius: 10px; overflow: hidden; background: #fff; }
.doc-list li + li { border-top: 1px solid var(--fog-line); }
.doc-list a { display: flex; align-items: center; gap: 14px; padding: 16px 18px; color: var(--deepsea); text-decoration: none; transition: background .15s; }
.doc-list a:hover { background: #F7F9FC; color: var(--deepsea); }
.doc-list .bi { font-size: 22px; color: var(--signal); flex-shrink: 0; }
.doc-name { flex: 1; font-weight: 500; word-break: break-word; }
.doc-meta { font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: var(--fog); flex-shrink: 0; }
.doc-empty { color: var(--fog); margin: 0; }
.content-section > .wrap > p.lead,
.content-lead { color: var(--fog); font-size: 15.5px; max-width: 720px; line-height: 1.65; margin: 0 0 28px; }
.content-section > .wrap > .content-lead:last-child { margin-bottom: 0; }
.content-section + .products-section { padding-top: 12px; }
.content-section:has(+ .products-section) { padding-bottom: 8px; }
.products-section + .content-section { padding-top: 12px; }
.products-section:has(+ .content-section) { padding-bottom: 8px; }
.option-block { margin-bottom: 36px; }
.option-block:last-child { margin-bottom: 0; }
.option-block h3 { font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.option-block p { color: var(--fog); font-size: 14.5px; line-height: 1.65; margin-bottom: 14px; max-width: 720px; }
.compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 8px 0 16px; }
.compare-table { width: 100%; min-width: 720px; border-collapse: collapse; font-size: 13.5px; }
.compare-table th, .compare-table td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--fog-line); vertical-align: top; }
.compare-table th { font-family: 'IBM Plex Mono', monospace; font-size: 12px; font-weight: 500; color: var(--ink); background: #fff; }
.compare-table td:first-child { font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: var(--fog); white-space: nowrap; }
.compare-table td { color: var(--ink); }
.compare-table tbody tr:hover td { background: rgba(232, 238, 255, .45); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 8px; }
.step-item { background: #fff; border: 1px solid var(--fog-line); border-radius: 10px; padding: 24px 22px; }
.step-item .num { font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: var(--signal); margin-bottom: 12px; }
.step-item h3 { font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.step-item p { color: var(--fog); font-size: 14px; line-height: 1.6; margin: 0; }
.countries-box { background: #fff; border: 1px solid var(--fog-line); border-radius: 10px; padding: 22px 24px; color: var(--fog); font-size: 14px; line-height: 1.7; }
.compare-details { border: none; }
.compare-details summary {
  list-style: none;
  cursor: pointer;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  color: var(--deepsea);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .15s;
  text-decoration: none;
  padding: 0;
}
.compare-details summary:hover { color: var(--signal); }
.compare-details summary::-webkit-details-marker { display: none; }
.compare-details summary .bi { font-size: 1rem; line-height: 1; transition: transform .2s; }
.compare-details[open] summary .bi { transform: rotate(90deg); }
.compare-details-body { margin-top: 24px; }
.compare-details-body h2 { font-family: 'Space Grotesk', sans-serif; font-size: 26px; font-weight: 600; margin-bottom: 14px; }
.compare-details-collapse {
  margin-top: 20px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  color: var(--deepsea);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .15s;
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.compare-details-collapse:hover { color: var(--signal); }
.compare-details-collapse .bi { font-size: 1rem; line-height: 1; }
#vergleich { scroll-margin-top: 24px; }
#faq { scroll-margin-top: 24px; }

/* ── PRODUKTE-ÜBERSICHT (Filter) ────────── */
.filterbar { border-bottom: 1px solid var(--fog-line); background: var(--glacier); position: sticky; top: 0; z-index: 90; }
.filterbar .wrap { display: flex; gap: 0; overflow-x: auto; padding-left: 0; padding-right: 0; }
.filter-btn { font-family: 'IBM Plex Mono', monospace; font-size: 13px; padding: 16px 22px; color: var(--fog); cursor: pointer; white-space: nowrap; border-bottom: 2px solid transparent; transition: all .15s; background: none; border-top: none; border-left: none; border-right: none; text-decoration: none; display: inline-block; }
.filter-btn:hover { color: var(--ink); }
.filter-btn.active { color: var(--brandblue); border-bottom-color: var(--brandblue); }
.product-section-block { margin-top: 56px; }
.product-section-block:first-of-type { margin-top: 0; }
.product-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.product-list-row { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; border-top: 1px solid var(--fog-line); gap: 20px; transition: background .1s; color: inherit; }
a.product-list-row { text-decoration: none; }
.product-list-row:last-child { border-bottom: 1px solid var(--fog-line); }
.product-list-row:hover { background: #F0F2F0; margin: 0 -8px; padding: 22px 8px; }
.list-left { display: flex; align-items: baseline; gap: 20px; flex: 1; flex-wrap: wrap; }
.list-tag { font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--signal); min-width: 110px; letter-spacing: .5px; }
.list-title { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 16px; min-width: 160px; }
.list-desc { color: var(--fog); font-size: 14px; }
.list-price { font-family: 'IBM Plex Mono', monospace; font-size: 13px; color: var(--ink); white-space: nowrap; }
@media (max-width: 960px) {
  .product-grid-2 { grid-template-columns: 1fr; }
}

/* ── BLOG ───────────────────────────────── */
.blog-section { padding: 56px 40px 70px; }
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.blog-card { background: #fff; border: 1px solid var(--fog-line); border-radius: 10px; padding: 28px 26px 30px; display: flex; flex-direction: column; transition: border-color .2s, box-shadow .2s; }
.blog-card:hover { border-color: rgba(255, 133, 0, .45); box-shadow: 0 6px 28px rgba(13, 26, 58, .08); }
.blog-card.featured { grid-column: 1 / -1; border-color: var(--signal); box-shadow: 0 4px 20px rgba(255, 133, 0, .1); }
.blog-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-bottom: 14px; font-family: 'IBM Plex Mono', monospace; font-size: 11.5px; color: var(--fog); }
.blog-meta .blog-cat { color: var(--signal); letter-spacing: .5px; text-transform: uppercase; }
.blog-card h2 { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 22px; line-height: 1.25; margin-bottom: 12px; }
.blog-card h2 a { color: var(--ink); transition: color .15s; }
.blog-card h2 a:hover { color: var(--brandblue); }
.blog-excerpt { color: var(--fog); font-size: 14.5px; line-height: 1.65; margin-bottom: 22px; flex: 1; }
.blog-read-more { font-family: 'IBM Plex Mono', monospace; font-size: 13px; color: var(--deepsea); display: inline-flex; align-items: center; gap: 8px; transition: color .15s; }
.blog-read-more:hover { color: var(--signal); }
.blog-empty { background: var(--glacier-dim); border: 1px dashed var(--fog-line); border-radius: 10px; padding: 40px 32px; text-align: center; color: var(--fog); font-size: 15px; }
.blog-article { padding: 48px 40px 70px; }
.blog-article-header { max-width: 720px; margin-bottom: 36px; background: none; position: static; top: auto; z-index: auto; }
.blog-article-header h1 { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 40px; line-height: 1.2; max-width: none; margin-bottom: 16px; color: var(--ink); }
.blog-article-meta { font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: var(--fog); display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 0; }
.blog-content { max-width: 720px; font-size: 16px; line-height: 1.75; color: var(--ink); }
.blog-content > * + * { margin-top: 1.25em; }
.blog-content h2 { font-family: 'Space Grotesk', sans-serif; font-size: 24px; font-weight: 600; margin-top: 2em; margin-bottom: .5em; }
.blog-content h3 { font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 600; margin-top: 1.75em; margin-bottom: .4em; }
.blog-content p { color: var(--ink); }
.blog-content a { color: var(--brandblue); text-decoration: underline; text-underline-offset: 2px; }
.blog-content ul, .blog-content ol { padding-left: 1.4em; }
.blog-content li + li { margin-top: .4em; }
.blog-content img { border-radius: 8px; margin: 1.5em 0; }
.blog-content figure { margin: 1.5em 0; }
.blog-content figcaption { font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: var(--fog); margin-top: 8px; }
.blog-content blockquote { border-left: 3px solid var(--signal); padding-left: 20px; color: var(--fog); font-style: italic; }
.blog-content code { font-family: 'IBM Plex Mono', monospace; font-size: 0.9em; background: var(--glacier-dim); padding: 2px 6px; border-radius: 3px; }
.blog-content table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.blog-content th, .blog-content td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--fog-line); vertical-align: top; }
.blog-content th { font-family: 'IBM Plex Mono', monospace; font-size: 12px; font-weight: 500; }
.blog-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--fog-line); max-width: 720px; }
.blog-tag { font-family: 'IBM Plex Mono', monospace; font-size: 11px; padding: 6px 12px; border-radius: 4px; background: var(--glacier-dim); color: var(--fog); }
@media (max-width: 900px) {
  .blog-section { padding: 40px 20px 50px; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card.featured { grid-column: auto; }
  .blog-article { padding: 0 20px 50px; }
  .blog-article-header h1 { font-size: 32px; }
}

/* ── KONTAKT ────────────────────────────── */
.contact-section { padding: 56px 40px 64px; background: var(--glacier); }
.contact-channels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 8px; }
.contact-channel {
  display: flex; flex-direction: column; gap: 8px; text-align: left;
  background: #fff; border: 1px solid var(--fog-line); border-radius: 10px;
  padding: 24px 22px; color: inherit; text-decoration: none;
  transition: border-color .15s, box-shadow .15s;
}
a.contact-channel:hover, button.contact-channel:hover {
  border-color: rgba(255, 133, 0, .45); box-shadow: 0 6px 24px rgba(13, 26, 58, .08);
}
.contact-channel-btn { width: 100%; cursor: pointer; font: inherit; }
.contact-channel-label {
  font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: .8px;
  text-transform: uppercase; color: var(--signal);
}
.contact-channel-value {
  font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 20px;
  color: var(--ink); line-height: 1.25;
}
.contact-channel-hint { font-size: 13.5px; color: var(--fog); }
.contact-hours {
  margin-top: 28px; background: #fff; border: 1px solid var(--fog-line);
  border-radius: 10px; padding: 26px 28px;
}
.contact-hours h2 {
  font-family: 'Space Grotesk', sans-serif; font-size: 20px; font-weight: 600;
  color: var(--ink); margin: 0 0 12px;
}
.contact-hours p { color: var(--ink); font-size: 15px; line-height: 1.55; margin: 0 0 8px; }
.contact-hours p:last-child { margin-bottom: 0; }
.contact-locations { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 8px; }
.contact-location {
  background: #fff; border: 1px solid var(--fog-line); border-radius: 10px;
  padding: 28px 26px 30px;
}
.contact-location h2 {
  font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 600;
  color: var(--ink); margin: 0 0 14px; display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap;
}
.contact-location-tag {
  font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: .6px;
  text-transform: uppercase; color: var(--signal); font-weight: 500;
}
.contact-company { color: var(--ink); font-size: 15px; font-weight: 500; margin: 0 0 6px; }
.contact-address { color: var(--ink); font-size: 15.5px; line-height: 1.55; margin: 0 0 10px; }
.contact-coord {
  font-family: 'IBM Plex Mono', monospace; font-size: 12.5px; color: var(--fog);
  margin: 0 0 18px;
}
.contact-map-link {
  font-family: 'IBM Plex Mono', monospace; font-size: 12.5px; color: var(--brandblue);
  text-decoration: underline; text-underline-offset: 2px;
}
.contact-map-link:hover { color: var(--signal); }
.support-tools { display: flex; flex-direction: column; margin-top: 4px; }
.support-tool {
  display: flex; align-items: baseline; justify-content: space-between; gap: 20px;
  padding: 18px 0; border-top: 1px solid var(--fog-line); color: inherit; text-decoration: none;
  transition: background .1s;
}
.support-tool:last-child { border-bottom: 1px solid var(--fog-line); }
.support-tool:hover { background: #F0F2F0; margin: 0 -8px; padding: 18px 8px; }
.support-tool-name {
  font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 16px;
  color: var(--ink); min-width: 160px;
}
.support-tool-desc { color: var(--fog); font-size: 14px; flex: 1; }
.partner-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 8px;
}
.partner-card {
  background: #fff; border: 2px solid var(--fog-line); border-radius: 10px;
  padding: 28px 26px 30px; display: flex; flex-direction: column;
  box-shadow: 0 2px 12px rgba(13, 26, 58, .06);
  transition: border-color .2s, box-shadow .2s;
}
.partner-card:hover {
  border-color: rgba(255, 133, 0, .45); box-shadow: 0 6px 28px rgba(13, 26, 58, .10);
}
.partner-tag {
  font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: .8px;
  text-transform: uppercase; color: var(--signal); margin-bottom: 12px;
}
.partner-logo {
  max-width: 200px;
  width: auto;
  height: 56px;
  object-fit: contain;
  object-position: left center;
  display: block;
  margin: 0 0 16px;
}
.partner-card h2 {
  font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 600;
  color: var(--ink); margin: 0 0 12px;
}
.partner-card p {
  color: var(--fog); font-size: 14.5px; line-height: 1.65; margin: 0 0 20px; flex: 1;
}
.partner-card .blog-read-more { margin-top: auto; }
.content-lead a { color: var(--brandblue); text-decoration: underline; text-underline-offset: 2px; }
.content-lead a:hover { color: var(--signal); }
@media (max-width: 900px) {
  .contact-section { padding: 40px 20px 48px; }
  .contact-channels, .contact-locations { grid-template-columns: 1fr; }
  .support-tool { flex-direction: column; gap: 4px; }
  .support-tool-name { min-width: 0; }
}
@media (max-width: 600px) {
  .partner-grid { grid-template-columns: 1fr; }
}

/* ── FOOTER ─────────────────────────────── */
footer { background: var(--deepsea); color: #A8BAD0; padding: 56px 40px 28px; }
.foot-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.foot-col h4 { font-family: 'IBM Plex Mono', monospace; font-size: 12px; letter-spacing: 1px; color: var(--signal); text-transform: uppercase; margin-bottom: 14px; }
.foot-col p, .foot-col a { color: #A8BAD0; font-size: 14px; display: block; margin-bottom: 6px; transition: color .15s; }
.foot-col a:hover { color: var(--glacier); }
.coord { font-family: 'IBM Plex Mono', monospace; font-size: 12.5px; color: #4A6080; }
.foot-bottom { border-top: 1px solid #1A2E4A; padding-top: 20px; display: flex; justify-content: space-between; font-size: 12.5px; color: #4A6080; flex-wrap: wrap; gap: 10px; }
.foot-bottom a { color: #7090A8; margin-right: 16px; }
.foot-bottom a:hover { color: var(--glacier); }

/* ── MOBILE ─────────────────────────────── */
@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .product-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .topbar { padding: 6px 20px; gap: 14px; flex-wrap: wrap; justify-content: center; }
  .navbar { padding: 16px 20px; flex-wrap: wrap; align-items: flex-start; }
  .wrap { padding: 0 20px; }

  /* Mit JavaScript: Hamburger-Menü */
  body.nav-enhanced .main-nav,
  body.nav-enhanced .nav-cta { display: none; }
  body.nav-enhanced .main-nav.mobile-open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--deepsea); padding: 12px 20px 16px; border-top: 1px solid #1A2E4A; z-index: 300; gap: 0; }
  body.nav-enhanced .main-nav.mobile-open > li > a { padding: 12px 0; border-bottom: 1px solid #1A2E4A; }
  body.nav-enhanced .main-nav.mobile-open .dropdown { position: static; box-shadow: none; border: none; min-width: 0; padding: 0 0 8px 12px; display: block; }
  body.nav-enhanced .main-nav.mobile-open .mega { min-width: 0; grid-template-columns: 1fr; display: grid; }
  body.nav-enhanced .main-nav.mobile-open .mega-col + .mega-col { border-left: none; border-top: 1px solid #1A2E4A; }
  body.nav-enhanced .hamburger { display: flex; }

  /* Ohne JavaScript: Navigation dauerhaft sichtbar */
  body:not(.nav-enhanced) .hamburger { display: none; }
  body:not(.nav-enhanced) .navbar { flex-direction: column; align-items: stretch; gap: 12px; }
  body:not(.nav-enhanced) .main-nav,
  body:not(.nav-enhanced) .nav-cta { display: flex; width: 100%; }
  body:not(.nav-enhanced) .main-nav { flex-direction: column; position: static; padding: 0; border-top: 1px solid #1A2E4A; }
  body:not(.nav-enhanced) .main-nav > li > a { padding: 12px 0; border-bottom: 1px solid #1A2E4A; width: 100%; }
  body:not(.nav-enhanced) .nav-item-has-dropdown .mega { grid-template-columns: 1fr; }
  body:not(.nav-enhanced) .nav-item-has-dropdown .mega-col + .mega-col { border-left: none; border-top: 1px solid #2A4060; }
  body:not(.nav-enhanced) .nav-cta { justify-content: center; margin-top: 4px; }
  h1 { font-size: 32px; }
  .trust-grid { grid-template-columns: 1fr; gap: 28px; }
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  .service-row { flex-direction: row; flex-wrap: nowrap; align-items: center; gap: 12px; }
  .service-row .row-left { flex: 1; min-width: 0; }
  .faq-a { margin-left: 0; }
  .hero { padding: 10px 20px 36px; }
  .hero-carousel .carousel-control-prev { left: 0; }
  .hero-carousel .carousel-control-next { right: 0; }
  .hero-carousel .hero-slide-body { min-height: 0; }
  .hero-carousel .hero-slide-body.no-route { padding-bottom: 48px; }
  .statusbar .wrap { padding: 14px 20px; }
  .panel { padding: 40px 20px 30px; }
  .trust { padding: 40px 20px; }
  .team { padding: 40px 20px; }
  .faq { padding: 40px 20px 50px; }
  footer { padding: 40px 20px 20px; }
  .page-breadcrumb { padding: 0 20px; }
  .page-hero { padding: 32px 20px 40px; }
  .page-hero .wrap { flex-direction: column; align-items: flex-start; }
  .page-hero-stats { flex-wrap: wrap; gap: 24px; }
  .products-section { padding: 40px 20px; }
  .product-grid { grid-template-columns: 1fr; }
  .content-section { padding: 40px 20px; }
  .steps-grid { grid-template-columns: 1fr; }
  .trust-band { padding: 36px 20px; }
  .trust-band .trust-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 40px 20px; }
  .cta-band .wrap { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .team-grid { flex-direction: column; gap: 20px; }
  .row-left { flex-direction: column; gap: 4px; }
}
