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

:root {
  --bg-primary: #f0f4f8;
  --bg-secondary: #e2e8f0;
  --bg-tertiary: #cbd5e1;
  --bg-hover: #b8c5d6;
  --border: #cbd5e1;
  --text-primary: #1e293b;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --accent: #2563eb;
  --accent-hover: #3b82f6;
  --accent-green: #16a34a;
  --accent-orange: #d97706;
  --accent-red: #dc2626;
  --accent-purple: #9333ea;
  --shadow: 0 1px 3px rgba(0,0,0,0.1);
  --radius: 8px;
  --sidebar-width: 280px;
  --font: 'JetBrains Mono', 'Fira Code', 'Cascadia Code', monospace;
}

html {
  font-size: 15px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg-primary);
  color: var(--text-primary);
  display: flex;
  min-height: 100vh;
  line-height: 1.7;
}
body.page-home {
  background: #fff;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.15s;
}

a:hover {
  color: var(--accent-hover);
}

.sidebar {
  width: var(--sidebar-width);
  min-width: var(--sidebar-width);
  background: var(--bg-secondary);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  height: 100vh;
  position: sticky;
  top: 0;
  overflow-y: auto;
}

.sidebar::-webkit-scrollbar {
  width: 6px;
}
.sidebar::-webkit-scrollbar-thumb {
  background: var(--bg-hover);
  border-radius: 3px;
}
.sidebar::-webkit-scrollbar-track {
  background: transparent;
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
}

.sidebar-logo {
  max-width: 180px;
  height: auto;
  display: block;
}
.sidebar-logo-link {
  display: flex;
  justify-content: center;
}
.sidebar-logo-link:hover {
  opacity: 0.85;
}
#sidebar-nav {
  padding-top: 0;
}
.nav-section {
  margin: 1px 0;
}

.nav-section-header {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  padding: 6px 16px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: color 0.15s;
}

.nav-section-header:hover {
  color: var(--text-primary);
}

.nav-section-header .section-arrow {
  margin-left: auto;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.nav-section-header .nf:first-child {
  color: var(--accent);
}

.nav-items {
  list-style: none;
  padding: 0 12px;
  overflow: hidden;
  transition: max-height 0.25s ease, opacity 0.2s ease;
  max-height: 2000px;
  opacity: 1;
}

.nav-section.collapsed .nav-items {
  max-height: 0;
  opacity: 0;
}

.nav-items li {
  margin: 1px 0;
}

.nav-items a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px;
  border-radius: var(--radius);
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: all 0.15s;
}

.nav-items a:hover {
  background: var(--bg-hover);
  color: var(--text-primary);
}

.nav-items a.active {
  background: var(--accent);
  color: #fff;
}

.nav-items a.active .nf {
  color: #fff;
}

.nav-items a .nf {
  font-size: 1rem;
  width: 20px;
  text-align: center;
  color: var(--accent);
}

.sidebar-footer {
  margin-top: auto;
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.sidebar-footer-b2b {
  margin: 0;
  line-height: 1.4;
}

.sidebar-footer a {
  margin-left: auto;
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: var(--border);
}

.sidebar-footer a:hover {
  color: var(--accent);
}

.nav-section[data-always-open] .nav-section-header {
  cursor: default;
}

.nav-section[data-always-open] .nav-section-header:hover {
  color: var(--text-muted);
}

.nav-section[data-always-open] .nav-items {
  max-height: none;
  opacity: 1;
}

.content {
  flex: 1;
  padding: 0;
  min-width: 0;
}

.content-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-bottom: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg-secondary) 85%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 10;
}
.content:has(.content-body.fullwidth) .content-header {
  background: #fff;
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: var(--radius);
  transition: background 0.15s;
}

.menu-btn:hover {
  background: var(--bg-hover);
}

.content-search {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  max-width: 320px;
  width: 100%;
  background: var(--bg-tertiary);
  border-radius: 6px;
  padding: 10px 12px;
}

.content-search .nf {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.content-search input {
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 0.85rem;
  outline: none;
  flex: 1;
  min-width: 0;
}

.content-search input::placeholder {
  color: var(--text-muted);
}

.header-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.header-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--bg-tertiary);
  border-radius: 6px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1.1rem;
  transition: background 0.15s, color 0.15s;
}
.header-btn:hover {
  background: var(--accent);
  color: #fff;
}

.content-body {
  display: flex;
  gap: 32px;
  padding: 40px;
  max-width: 1400px;
  align-items: flex-start;
}

.content-main {
  flex: 1;
  min-width: 0;
}

.toc {
  width: 220px;
  flex-shrink: 0;
  position: sticky;
  top: 80px;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  padding-left: 24px;
  font-size: 0.8rem;
  margin-top: 21px;
}

.toc-title {
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.7rem;
  margin-bottom: 8px;
}

.content-body .toc-list {
  list-style: none;
  padding-left: 12px;
  margin: 0;
}

.toc-list li {
  margin: 4px 0;
}

.toc-list a {
  color: var(--text-muted);
  text-decoration: none;
  display: block;
  padding: 3px 0;
  transition: color 0.15s;
  line-height: 1.4;
}

.toc-list a .nf {
  margin-right: 6px;
  font-size: 0.65rem;
}

.toc-list a:hover {
  color: var(--accent);
}

.toc-list a.toc-active {
  color: var(--accent);
}

.content-body h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 24px;
  padding-bottom: 12px;
  letter-spacing: -1px;
}

.content-body h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 32px 0 12px;
  padding-bottom: 8px;
}

.content-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 24px 0 8px;
}

.content-body p {
  margin: 12px 0;
  color: var(--text-secondary);
}

.content-body ul, .content-body ol {
  margin: 12px 0;
  padding-left: 24px;
  color: var(--text-secondary);
}

.content-body li {
  margin: 6px 0;
}

.content-body code {
  font-family: var(--font);
  background: var(--bg-tertiary);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.85rem;
  color: var(--accent-orange);
}

.content-body pre {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  margin: 16px 0;
  overflow-x: auto;
}

.content-body pre code {
  background: none;
  padding: 0;
  color: var(--text-primary);
  font-size: 0.85rem;
}

.content-body blockquote {
  border-left: 3px solid var(--accent);
  padding: 8px 16px;
  margin: 16px 0;
  background: var(--bg-tertiary);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--text-secondary);
}

.content-body hr {
  border: none;
  height: 0;
  margin: 32px 0;
}

.content-body .tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--bg-tertiary);
  color: var(--accent);
  border: 1px solid var(--border);
}

.content-body .tag.green {
  color: var(--accent-green);
}

.content-body .tag.orange {
  color: var(--accent-orange);
}

.content-body .tag.red {
  color: var(--accent-red);
}

.content-body .tag.purple {
  color: var(--accent-purple);
}

.content-body .tag.blue {
  color: var(--accent);
  background: rgba(88, 166, 255, 0.12);
  border-color: var(--accent);
}

.content-body .callout {
  padding: 12px 16px;
  margin: 16px 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  border-left: 4px solid;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.content-body .callout-tip {
  background: rgba(63, 185, 80, 0.08);
  border-color: var(--accent-green);
}

.content-body .callout-tip .callout-title {
  color: var(--accent-green);
}

.content-body .callout-info {
  background: rgba(88, 166, 255, 0.08);
  border-color: var(--accent);
}

.content-body .callout-info .callout-title {
  color: var(--accent);
}

.content-body .callout-warning {
  background: rgba(210, 153, 34, 0.08);
  border-color: var(--accent-orange);
}

.content-body .callout-warning .callout-title {
  color: var(--accent-orange);
}

.content-body .callout-title {
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.content-body .product-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 0.85rem;
}

.content-body .product-table thead th {
  background: var(--bg-tertiary);
  font-weight: 700;
  color: var(--text-primary);
  padding: 10px 12px;
  border: 1px solid var(--border);
  text-align: left;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.content-body .product-table tbody td {
  padding: 10px 12px;
  border: 1px solid var(--border);
  color: var(--text-secondary);
}

.content-body .product-table tbody tr:hover {
  background: var(--bg-hover);
}

.content-body .product-table tbody tr:hover td {
  color: var(--text-primary);
}

.content-body .product-table .price {
  font-weight: 700;
  color: var(--accent-green);
  white-space: nowrap;
}

.content-body .product-table .nf {
  margin-right: 6px;
  color: var(--accent);
}

.content-body .product-table.equal-cols {
  table-layout: fixed;
}
.content-body .product-table.equal-cols th,
.content-body .product-table.equal-cols td {
  width: 25%;
}
.content-body .product-table.equal-cols th:first-child,
.content-body .product-table.equal-cols td:first-child {
  width: 25%;
}

.content-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 0.85rem;
}

.content-body th, .content-body td {
  padding: 10px 12px;
  border: 1px solid var(--border);
  text-align: left;
}

.content-body th {
  background: var(--bg-tertiary);
  font-weight: 700;
  color: var(--text-primary);
}

.content-body td {
  color: var(--text-secondary);
}

.content-body kbd {
  display: inline-block;
  padding: 3px 8px;
  font-family: var(--font);
  font-size: 0.8rem;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: 4px;
  box-shadow: 0 1px 0 var(--border);
  color: var(--text-primary);
}

.no-results {
  text-align: center;
  padding: 48px 0;
  color: var(--text-muted);
}

.no-results .nf {
  font-size: 3rem;
  display: block;
  margin-bottom: 16px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.infobox {
  float: right;
  width: 280px;
  margin: 0 0 16px 24px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.infobox-img {
  width: 100%;
  display: block;
  border-bottom: 1px solid var(--border);
}

.infobox table {
  width: 100%;
  margin: 0;
  font-size: 0.8rem;
}

.infobox th, .infobox td {
  padding: 6px 10px;
  border: none;
  border-bottom: 1px solid var(--border);
}

.infobox th {
  background: none;
  color: var(--text-muted);
  font-weight: 700;
  width: 100px;
  white-space: nowrap;
}

.infobox td {
  color: var(--text-secondary);
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
  margin: 16px 0;
}

.link-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-secondary);
  font-size: 0.85rem;
  transition: all 0.15s;
  text-decoration: none;
}

.link-card:hover {
  background: var(--bg-hover);
  color: var(--text-primary);
  border-color: var(--accent);
}

.link-card .nf {
  font-size: 1.2rem;
  color: var(--accent);
}

.search-results-header {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.search-results-count {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-bottom: 20px;
}

.search-results {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.search-result {
  display: block;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}

.search-result:hover {
  border-color: var(--accent);
  background: var(--bg-hover);
}

.search-result-title {
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}

.search-result-snippet {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .content-search {
    display: none;
  }
}

@media (max-width: 768px) {
  .sidebar {
    position: fixed;
    left: -100%;
    z-index: 100;
    transition: left 0.25s ease;
    box-shadow: 4px 0 20px rgba(0,0,0,0.5);
  }

  .sidebar.open {
    left: 0;
  }

  #sidebar-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99;
    background: rgba(0,0,0,0.4);
  }

  .sidebar.open ~ #sidebar-backdrop,
  #sidebar-backdrop.open {
    display: block;
  }

  .menu-btn {
    display: block;
  }

  .content-header {
    padding: 12px 16px;
  }

  .content-body {
    padding: 16px;
    gap: 0;
  }

  .content-body .toc {
    display: none;
  }

  .content-body.fullwidth .content-main {
    padding: 16px;
  }
}

/* --- Full-width page mode --- */

.content-body.fullwidth {
  max-width: none;
  padding: 0;
  gap: 0;
  background: #fff;
}

.content-body.fullwidth .content-main {
  padding: 40px;
}

.content-body.fullwidth .toc {
  display: none;
}

/* --- Corporate Overview Page --- */

.page-overview {
  font-family: system-ui, -apple-system, sans-serif;
}

.page-overview .hero {
  padding: 80px 60px;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  text-align: center;
}

.page-overview .hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin: 0 0 16px;
  padding: 0;
  border: none;
  letter-spacing: -1.5px;
  line-height: 1.15;
  font-family: system-ui, -apple-system, sans-serif;
}

.page-overview .hero p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.page-overview .hero-icon {
  font-size: 4rem;
  color: var(--accent);
  margin-bottom: 24px;
  display: block;
}

.page-overview .btn {
  display: inline-block;
  padding: 14px 36px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
  font-family: system-ui, -apple-system, sans-serif;
}

.page-overview .btn:hover {
  background: var(--accent-hover);
  color: #fff;
}

.page-overview .btn .nf {
  margin-right: 8px;
}

.page-overview .section {
  padding: 64px 60px;
}

.page-overview .section-alt {
  background: var(--bg-secondary);
}

.page-overview .section h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 8px;
  padding: 0;
  border: none;
  text-align: center;
  font-family: system-ui, -apple-system, sans-serif;
}

.page-overview .section h3.section-heading {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 8px;
  padding: 0;
  border: none;
  text-align: center;
  font-family: system-ui, -apple-system, sans-serif;
  color: var(--text-primary);
}

.page-overview .section-sub {
  text-align: center;
  color: var(--text-muted);
  margin: 0 0 48px;
  font-size: 1rem;
}

.page-overview .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.page-overview .stat-item {
  background: var(--bg-primary);
  padding: 32px 16px;
  text-align: center;
}

.page-overview .stat-number {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

.page-overview .stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.page-overview .features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.page-overview .feature-card {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 24px;
  transition: border-color 0.2s;
}

.page-overview .feature-card:hover {
  border-color: var(--accent);
}

.page-overview .feature-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.page-overview .feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--text-primary);
  font-family: system-ui, -apple-system, sans-serif;
}

.page-overview .feature-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

.page-overview .checklist {
  max-width: 700px;
  margin: 0 auto;
}

.page-overview .check-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.page-overview .check-item:last-child {
  border-bottom: none;
}

.page-overview .check-icon {
  font-size: 1.3rem;
  color: var(--accent-green);
  flex-shrink: 0;
  margin-top: 1px;
}

.page-overview .check-item strong {
  color: var(--text-primary);
}

.page-overview .check-item span {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.page-overview .testimonial {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.7;
}

.page-overview .testimonial-attribution {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 16px;
}

.page-overview .cta-section {
  text-align: center;
  background: linear-gradient(135deg, rgba(88,166,255,0.08) 0%, rgba(88,166,255,0.03) 100%);
  border-top: 1px solid var(--border);
}

.page-overview .cta-section h2 {
  margin-bottom: 16px;
}

.page-overview .cta-section p {
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.page-overview .cta-section .btn {
  background: var(--accent-green);
}

.page-overview .cta-section .btn:hover {
  opacity: 0.9;
}

@media (max-width: 900px) {
  .page-overview .hero,
  .page-overview .section {
    padding: 40px 24px;
  }
  .page-overview .hero h1 {
    font-size: 2rem;
  }
  .page-overview .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-overview .features-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Home / Landing Hero Page --- */

.page-home {
  background: #fff;
}

.page-home .hero-section {
  position: relative;
  min-height: 30vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  overflow: hidden;
  padding: 0 20px;
}
.page-home .hero-overlay {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 20px 24px;
  max-width: 800px;
}

.page-home .hero-logo {
  max-width: 320px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 40px;
  filter: drop-shadow(0 0 24px rgba(0,0,0,0.7)) drop-shadow(0 4px 12px rgba(0,0,0,0.5));
}

.page-home .hero-logo-main {
  max-width: 800px;
  width: 100%;
  height: auto;
  display: block;
  margin: 48px auto 12px;
}
.page-home .hero-overlay .hero-subtitle {
  text-align: center;
  font-size: 1.8rem;
  color: #1e293b;
  margin: 0 auto 48px;
  font-weight: 700;
  max-width: none;
  text-shadow: none;
  line-height: 1.3;
}

.page-home .win-banner {
  background: var(--accent);
  padding: 64px 60px;
  color: #fff;
}
.page-home .win-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.page-home .win-banner-kim {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.page-home .win-banner-photo {
  width: 260px;
  height: 340px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  flex-shrink: 0;
}
.page-home .win-banner-quote {
  display: flex;
  flex-direction: column;
}
.page-home .win-banner-right {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 28px;
}
.page-home .win-banner-quote-text {
  font-size: 1.8rem;
  font-style: italic;
  margin: 0 0 16px;
  color: #fff;
  font-weight: 600;
}
.page-home .win-banner-quote p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  margin: 0 0 16px;
}
.page-home .win-banner-sign {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  margin-top: auto;
}
.page-home .win-banner .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: #fff;
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.page-home .win-banner .btn:hover {
  opacity: 0.9;
}

/* ---- Info Banner (used on Gebrauchte Software, etc.) ---- */
.info-banner {
  background: var(--accent);
  padding: 48px 48px 40px;
  color: #fff;
  border-radius: 0;
  margin-bottom: 32px;
}
.info-banner-title {
  font-size: 1.6rem;
  font-style: italic;
  margin: 0 0 16px;
  color: #fff;
  font-weight: 600;
}
.info-banner p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  margin: 0 0 16px;
}
.info-banner p:last-child {
  margin-bottom: 0;
}
.info-banner strong {
  color: #fff;
}
.info-banner-title--plain {
  font-style: normal;
}

.content-body .gebrauchte-subtitle {
  font-size: 1.3rem;
  color: var(--accent);
  margin: 0 0 28px;
  font-weight: 600;
}
.content-body h1 + .gebrauchte-subtitle {
  margin-top: -24px;
}

.gebrauchte-features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
  margin-bottom: 36px;
}
.gebrauchte-feature-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
.gebrauchte-feature-box .nf {
  font-size: 2rem;
  color: var(--accent);
}
.gebrauchte-feature-box strong {
  font-size: 0.95rem;
  color: var(--text-primary);
}
.gebrauchte-feature-box span:last-child {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.gebrauchte-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 24px;
  columns: 2;
}
.gebrauchte-list li {
  padding: 6px 0 6px 24px;
  position: relative;
  font-size: 0.92rem;
  color: var(--text-primary);
}
.gebrauchte-list li::before {
  content: "\f00c";
  font-family: "Nerd Font", "NerdFontsSymbols", "NFmFSA", "NFm", "Font Awesome 6 Free", sans-serif;
  position: absolute;
  left: 0;
  color: var(--accent-green);
  font-size: 0.85rem;
}

.gebrauchte-angebot-box {
  background: #fff;
  border: 1px solid var(--border);
  padding: 32px;
  margin-bottom: 32px;
}
.gebrauchte-angebot-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.gebrauchte-angebot-header .nf {
  font-size: 1.6rem;
  color: var(--accent);
}
.gebrauchte-angebot-header h2 {
  margin: 0 !important;
  padding: 0 !important;
  font-size: 1.3rem;
}
.gebrauchte-angebot-intro {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0 0 24px;
}
.gebrauchte-angebot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.gebrauchte-angebot-group h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--accent);
  padding: 0 0 6px;
  border-bottom: 1px solid var(--border);
}
.gebrauchte-angebot-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.gebrauchte-angebot-group li {
  font-size: 0.85rem;
  color: var(--text-primary);
  padding: 3px 0 3px 18px;
  line-height: 1.5;
  position: relative;
}
.gebrauchte-angebot-group li::before {
  content: "\2192";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.8rem;
}

.gebrauchte-oem-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.gebrauchte-oem-list li {
  font-size: 0.9rem;
  color: var(--text-primary);
  padding: 5px 0 5px 20px;
  position: relative;
  line-height: 1.4;
}
.gebrauchte-oem-list li::before {
  content: "\2192";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.85rem;
}

.gebrauchte-sicher-box {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(63, 185, 80, 0.08);
  border: 1px solid rgba(63, 185, 80, 0.25);
  padding: 22px 26px;
  margin-bottom: 28px;
}
.gebrauchte-sicher-box .nf {
  font-size: 1.6rem;
  color: var(--accent-green);
  flex-shrink: 0;
  margin-top: 2px;
}
.gebrauchte-sicher-content h3 {
  font-size: 1rem;
  margin: 0 0 8px;
  color: var(--text-primary);
}
.gebrauchte-sicher-content p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin: 0 0 8px;
}
.gebrauchte-sicher-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.gebrauchte-sicher-content li {
  font-size: 0.88rem;
  color: var(--text-primary);
  padding: 4px 0 4px 20px;
  position: relative;
  line-height: 1.4;
}
.gebrauchte-sicher-content li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--accent-green);
  font-weight: 700;
}

.gebrauchte-recht-box {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(88, 166, 255, 0.08);
  border: 1px solid rgba(88, 166, 255, 0.2);
  padding: 22px 26px;
  margin-bottom: 28px;
}
.gebrauchte-recht-box .nf {
  font-size: 1.6rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 1px;
}
.gebrauchte-recht-content h3 {
  font-size: 1rem;
  margin: 0 0 6px;
  color: var(--text-primary);
}
.gebrauchte-recht-content p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}
.gebrauchte-recht-content a {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 600;
}

.gebrauchte-cta {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  padding: 32px;
  text-align: center;
  margin-top: 36px;
}
.gebrauchte-cta h3 {
  font-size: 1.15rem;
  margin: 0 0 8px;
  color: var(--text-primary);
}
.gebrauchte-cta p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0 0 20px;
}
.gebrauchte-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--accent);
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.15s;
}
.gebrauchte-cta .btn:hover {
  opacity: 0.85;
}

.page-home .win10-section {
  margin-top: 32px;
}
.page-home .win10-inner {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.page-home .win10-icon {
  font-size: 2rem;
  color: #da3633;
  flex-shrink: 0;
}
.page-home .win10-content {
  flex: 1;
}
.page-home .win10-content h3 {
  margin: 0 0 4px;
  font-size: 1.1rem;
  color: var(--text-primary);
}
.page-home .win10-content p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.page-home .win10-inner .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
  flex-shrink: 0;
}
.page-home .win10-inner .btn:hover {
  opacity: 0.9;
}

.page-home .hersteller-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 0;
}
.page-home .hersteller-tags .tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 700;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
}
.page-home .hersteller-tags .tag.green { color: var(--accent-green); }
.page-home .hersteller-tags .tag.orange { color: var(--accent-orange); }
.page-home .hersteller-tags .tag.red { color: var(--accent-red); }
.page-home .hersteller-tags .tag.purple { color: var(--accent-purple); }
.page-home .hersteller-tags .tag.blue { color: var(--accent); }

.page-home .hero-overlay h1 {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin: 0 0 16px;
  padding: 0;
  border: none;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.8), 0 4px 8px rgba(0,0,0,0.4);
}

.page-home .hero-overlay p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  max-width: 650px;
  margin: 0 auto 32px;
  line-height: 1.7;
  text-shadow: 0 2px 16px rgba(0,0,0,0.7);
}

.page-home .hero-overlay .btn {
  display: inline-block;
  padding: 14px 36px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}

.page-home .hero-overlay .btn:hover {
  background: var(--accent-hover);
  color: #fff;
}

.page-home .hero-overlay .btn .nf {
  margin-right: 8px;
}

.page-home .section {
  padding: 24px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-home .home-headline {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 40px;
}

.page-home .home-values-banner {
  background: #1a2744;
  padding: 64px 60px;
  color: #fff;
  border-radius: 12px;
  max-width: 1200px;
  margin: 0 auto 12px;
}
.page-home .home-values-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.page-home .home-values-split {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}
.page-home .home-values-image {
  width: 320px;
  height: auto;
  border-radius: 12px;
  flex-shrink: 0;
  object-fit: cover;
  display: block;
}
.page-home .home-values-text {
  flex: 1;
}
.page-home .home-values-title {
  font-size: 1.8rem;
  font-style: italic;
  margin: 0 0 24px;
  color: #fff;
  font-weight: 600;
}
.page-home .home-values-inner p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin: 0 0 16px;
}
.page-home .home-values-text p:last-of-type {
  margin-bottom: 0;
}
.page-home .home-values-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}
.page-home .home-values-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: #fff;
  color: #1a2744;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.page-home .home-values-actions .btn:hover {
  opacity: 0.9;
}
.page-home .why-us-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.page-home .why-us-box {
  flex: 1;
}
.page-home .why-us-box {
  background: #fff;
  color: #1a2744;
  border-radius: 10px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.3;
}
.page-home .why-us-box .nf {
  font-size: 2rem;
  flex-shrink: 0;
  color: #1a2744;
}
.page-home .stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.page-home .stat-item {
  background: var(--accent);
  padding: 32px 16px;
  text-align: center;
  border-radius: 12px;
}

.page-home .stat-number {
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}

.page-home .stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
}

.page-home .features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.page-home .feature-card {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 24px;
  transition: border-color 0.2s;
}

.page-home .feature-card:hover {
  border-color: var(--accent);
}

.page-home .feature-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.page-home .feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--text-primary);
}

.page-home .feature-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

.page-home .checklist {
  max-width: 700px;
  margin: 0 auto;
}

.page-home .check-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.page-home .check-item:last-child {
  border-bottom: none;
}

.page-home .check-icon {
  font-size: 1.3rem;
  color: var(--accent-green);
  flex-shrink: 0;
  margin-top: 1px;
}

.page-home .check-item strong {
  color: var(--text-primary);
}

.page-home .check-item span {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.page-home .testimonial {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.7;
}

.page-home .testimonial-attribution {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 16px;
}

.page-home .cta-section {
  text-align: center;
}

.page-home .cta-section h3.section-heading {
  margin-bottom: 16px;
}

.page-home .cta-section p {
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.page-home .cta-section .btn {
  background: var(--accent-green);
}

.page-home .cta-section .btn:hover {
  opacity: 0.9;
}

.page-home .cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-home .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: transparent;
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 8px;
  border: 2px solid var(--accent);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.page-home .btn-outline:hover {
  background: var(--accent);
  color: #fff;
}

.page-home .process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.page-home .process-step {
  text-align: center;
  padding: 32px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-secondary);
}
.page-home .process-number {
  width: 44px;
  height: 44px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 1.2rem;
}
.page-home .process-step h4 {
  margin: 0 0 10px;
  font-size: 1rem;
}
.page-home .process-step p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.page-home .partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.page-home .partner-card {
  text-align: center;
  padding: 32px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-secondary);
}
.page-home .partner-card h4 {
  margin: 12px 0 10px;
  font-size: 1rem;
}
.page-home .partner-card p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .page-home .hero-section {
    min-height: 30vh;
  }
  .page-home .hero-logo {
    max-width: 200px;
  }
  .page-home .hero-logo-main {
    max-width: 500px;
  }
  .page-home .hero-overlay .hero-subtitle {
    font-size: 1.4rem;
  }
  .page-home .hero-overlay h1 {
  font-size: 2rem;
  }
  .page-home .section {
    padding: 24px 24px;
  }
  .page-home .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-home .features-grid {
    grid-template-columns: 1fr;
  }
  .page-home .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-home .partner-grid {
    grid-template-columns: 1fr;
  }
  .page-home .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .page-home .home-values-banner {
    padding: 40px 24px;
  }
  .page-home .home-values-split {
    flex-direction: column;
  }
  .page-home .home-values-image {
    width: 100%;
    max-width: 320px;
  }
  .page-home .home-values-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .page-home .why-us-grid {
    flex-direction: column;
  }
  .page-home .win-banner {
    padding: 40px 24px;
  }
  .page-home .win-banner-kim {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .page-home .win-banner-quote {
    display: block;
  }
  .page-home .win-banner-quote-text {
    text-align: center;
  }
  .page-home .win-banner-quote {
    text-align: center;
    display: block;
  }
  .page-home .win-banner-photo {
    width: 180px;
    height: 240px;
  }
  .page-home .win10-section {
    margin-top: 24px;
  }
  .page-home .win10-inner {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }
}

@media (max-width: 560px) {
  .page-home .hero-logo-main {
    max-width: 300px;
  }
  .page-home .hero-overlay .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 28px;
  }
  .page-home .stats-grid {
    grid-template-columns: 1fr;
  }
  .page-home .process-grid {
    grid-template-columns: 1fr;
  }
  .page-home .home-values-banner {
    padding: 28px 16px;
  }
  .page-home .home-values-image {
    max-width: 100%;
  }
  .page-home .home-values-title {
    font-size: 1.3rem;
  }
  .page-home .why-us-grid {
    gap: 8px;
  }
  .page-home .why-us-box {
    flex: 1 1 120px;
  }
  .page-home .win-banner {
    padding: 28px 16px;
  }
  .page-home .win-banner-photo {
    width: 140px;
    height: 190px;
  }
  .page-home .win-banner-quote-text {
    font-size: 1.3rem;
  }
  .page-home .win10-inner {
    padding: 18px;
  }
  .hero-section {
    padding: 0 12px;
  }
}

@media (max-width: 400px) {
  .page-home .hero-logo-main {
    max-width: 220px;
  }
  .page-home .hero-overlay .hero-subtitle {
    font-size: 0.95rem;
  }
  .page-home .why-us-box {
    flex: 1 1 100%;
  }

  .content-body {
    padding: 8px;
  }

  .content-body.fullwidth .content-main {
    padding: 8px;
  }
}

/* --- News / Neuigkeiten Page --- */

.page-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 32px;
}

.news-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 24px;
  transition: border-color 0.2s;
}

.news-card:hover {
  border-color: var(--accent);
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.news-date {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.news-date .nf {
  margin-right: 4px;
}

.news-card h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 12px;
  padding: 0;
  border: none;
  color: var(--text-primary);
}

.news-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0 0 12px;
  line-height: 1.7;
}

.news-card p:last-child {
  margin-bottom: 0;
}

.news-card .callout {
  margin-top: 16px;
  margin-bottom: 0;
}

.news-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  padding: 10px 20px;
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
  text-decoration: none;
  background: var(--accent);
  border-radius: 6px;
  transition: opacity 0.15s;
}

.news-cta:hover {
  opacity: 0.85;
  color: #fff;
}

/* --- Team / Ansprechpartner Page --- */

.team-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 8px;
}

.team-card {
  display: flex;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  padding: 0;
  transition: border-color 0.15s;
  align-items: stretch;
}

.team-card:hover {
  border-color: var(--border);
  border-left-color: var(--accent-hover);
}

.team-avatar-img {
  width: 180px;
  flex-shrink: 0;
  object-fit: cover;
  display: block;
  margin-right: 4px;
}

.team-avatar-placeholder {
  width: 180px;
  height: 242px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--border);
  font-size: 3rem;
  color: var(--text-muted);
  margin-right: 4px;
}

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 2.5rem;
  color: #fff;
  margin: 28px;
}

.team-info {
  flex: 1;
  min-width: 0;
  padding: 16px 28px 28px 28px;
  display: flex;
  flex-direction: column;
}

.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 10px;
}

.team-tags .tag {
  font-size: 0.65rem;
  padding: 1px 5px;
}

.team-card h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 12px;
  padding: 0;
  border: none;
  color: var(--text-primary);
}

.team-contact {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.team-contact span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.team-contact .nf {
  color: var(--accent);
  width: 16px;
  text-align: center;
}

/* --- Contact / Kontakt Page --- */

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.contact-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  padding: 24px;
  text-align: center;
  transition: border-color 0.15s;
}

.contact-card:hover {
  border-color: var(--accent);
}

.contact-card-icon {
  font-size: 2rem;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}

.contact-card h3 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin: 0 0 8px;
  padding: 0;
  border: none;
}

.contact-card p {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 4px;
}

.contact-card a {
  color: var(--accent);
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-card-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.contact-form-section {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  padding: 28px;
}

.contact-form-section h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 20px;
  padding: 0;
  border: none;
  color: var(--text-primary);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  padding: 10px 12px;
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 0.85rem;
  border-radius: 0;
  outline: none;
  transition: border-color 0.15s;
}

.form-row .form-group {
  margin-bottom: 0;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-submit {
  align-self: flex-start;
  padding: 12px 28px;
  background: var(--accent);
  color: #fff;
  border: none;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.15s;
}

.form-submit:hover {
  background: var(--accent-hover);
}

.form-submit .nf {
  margin-right: 8px;
}

.form-required-hint {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: -12px 0 20px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  cursor: pointer;
  line-height: 1.5;
}

.form-checkbox input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--accent);
}

.form-checkbox a {
  color: var(--accent);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .contact-info-cards {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* --- Kunde werden Page --- */

.kunde-form-section {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  padding: 24px;
  margin-top: 4px;
}

.kunde-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

.form-fieldset h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 16px;
  padding: 0;
  border: none;
  color: var(--text-primary);
}

.form-actions {
  padding-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-success-msg,
.form-error-msg {
  padding: 20px 24px;
  font-size: 0.92rem;
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 12px;
}
.form-success-msg {
  background: rgba(39, 174, 96, 0.1);
  border: 1px solid rgba(39, 174, 96, 0.3);
  color: var(--text-primary);
}
.form-success-msg .nf {
  font-size: 1.4rem;
  color: var(--accent-green);
}
.form-error-msg {
  background: rgba(192, 57, 43, 0.1);
  border: 1px solid rgba(192, 57, 43, 0.3);
  color: var(--text-primary);
  margin-bottom: 16px;
}
.form-error-msg .nf {
  font-size: 1.4rem;
  color: var(--accent-red);
  flex-shrink: 0;
}
.form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* ---- Hersteller Page ---- */
.hersteller-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.hersteller-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-secondary);
  text-align: center;
  transition: border-color 0.15s;
}
.hersteller-card:hover {
  border-color: var(--accent);
}
.hersteller-card img {
  max-width: 100%;
  height: 40px;
  object-fit: contain;
  filter: grayscale(0.3);
  transition: filter 0.15s;
}
.hersteller-card:hover img {
  filter: grayscale(0);
}
.hersteller-card span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}
.hersteller-textonly {
  justify-content: center;
}
.hersteller-textonly span {
  font-size: 1rem;
  color: var(--text-primary);
}
.hersteller-more {
  border-style: dashed;
  border-color: var(--border);
}
.hersteller-more span {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 400;
}

@media (max-width: 600px) {
  .hersteller-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 16px 24px;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.cookie-banner.hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.cookie-banner-content .nf {
  font-size: 1.3rem;
  color: var(--accent);
  flex-shrink: 0;
}
.cookie-banner-link {
  color: var(--accent);
  text-decoration: underline;
  flex-shrink: 0;
  font-weight: 600;
}
.cookie-banner-actions {
  display: flex;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
}
.cookie-banner-btn {
  flex-shrink: 0;
  padding: 8px 20px;
  background: var(--accent);
  color: #fff;
  border: none;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.15s;
}
.cookie-banner-btn:hover {
  background: var(--accent-hover);
}
.cookie-banner-btn-secondary {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}
.cookie-banner-btn-secondary:hover {
  background: var(--bg-tertiary);
  color: var(--text-primary);
}
@media (max-width: 600px) {
  .cookie-banner {
    padding: 12px 16px;
  }
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }
  .cookie-banner-actions {
    margin-left: 0;
    width: 100%;
    justify-content: center;
  }
  .cookie-banner-btn {
    flex: 1;
  }
}
