/* ─── Reset & Base ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0B0F1A;
  --surface:   #111827;
  --surface-2: #1a2233;
  --border:    #1F2937;
  --accent-1:  #004994;
  --accent-2:  #0062cc;
  --text:      #F9FAFB;
  --muted:     #9CA3AF;
  --muted-2:   #6B7280;

  --gradient: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  --radius:   10px;
  --radius-lg:16px;
  --transition: 200ms ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ─── Typography ────────────────────────────────────────────────────── */
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; letter-spacing: -0.03em; line-height: 1.1; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 600; letter-spacing: -0.02em; line-height: 1.2; }
h3 { font-size: 1.15rem; font-weight: 600; letter-spacing: -0.01em; }
p  { color: var(--muted); }

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Layout ────────────────────────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
section { padding: 96px 0; }

/* ─── Navigation ────────────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 15, 26, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img { height: 41px; width: auto; }
footer .nav-logo img { height: 36px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--text); }

.nav-right { display: flex; align-items: center; gap: 16px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: var(--accent-1); color: var(--text); }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--muted);
  border-radius: 2px;
  transition: all var(--transition);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}
.mobile-menu a {
  padding: 14px 24px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--text); }
.mobile-menu .btn { margin: 16px 24px; }
.mobile-menu.open { display: flex; }

/* ─── Hero ──────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.4;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 99px;
  border: 1px solid rgba(99, 102, 241, 0.35);
  background: rgba(99, 102, 241, 0.08);
  font-size: 0.8rem;
  font-weight: 500;
  color: #a5b4fc;
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-1);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

.hero h1 { margin-bottom: 20px; }

.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-lg { padding: 13px 30px; font-size: 0.95rem; }

/* ─── Section Labels ────────────────────────────────────────────────── */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-1);
  margin-bottom: 12px;
}

.section-heading { margin-bottom: 16px; }
.section-sub { max-width: 520px; margin-bottom: 56px; }

/* ─── Services Grid ─────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: var(--gradient);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  border-color: var(--accent-1);
  transform: translateY(-3px);
}
.service-card:hover::before { opacity: 0.04; }

.service-card.secondary {
  background: transparent;
  border-color: var(--border);
}
.service-card.secondary .service-icon { opacity: 0.65; }
.service-card.secondary h3 { font-size: 1rem; }

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: rgba(99, 102, 241, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent-1);
}
.service-icon svg { width: 22px; height: 22px; }

.service-card h3 { margin-bottom: 10px; }
.service-card p { font-size: 0.9rem; line-height: 1.65; }

/* ─── Products Preview ──────────────────────────────────────────────── */
.products-preview { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

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

.product-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all var(--transition);
  cursor: default;
}

.product-card:hover {
  border-color: var(--accent-1);
  transform: translateY(-2px);
  background: var(--surface-2);
}

.product-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-icon img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.product-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}

.products-link {
  margin-top: 36px;
  text-align: center;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-1);
  transition: gap var(--transition);
}
.link-arrow:hover { gap: 14px; }
.link-arrow svg { width: 16px; height: 16px; }

/* ─── Stats ─────────────────────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.stat {
  background: var(--surface);
  padding: 40px 36px;
  text-align: center;
}

.stat-value {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--muted);
  font-weight: 500;
}

/* ─── IT Support Section (secondary) ───────────────────────────────── */
.support-section { padding: 64px 0; }

.support-inner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}

.support-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 8px;
}

.support-inner h3 {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 10px;
  font-weight: 500;
}

.support-inner p {
  font-size: 0.875rem;
  color: var(--muted);
  max-width: 480px;
}

.region-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.tag {
  padding: 4px 12px;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid var(--border);
  color: var(--muted);
}

/* ─── Footer ────────────────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 12px;
  max-width: 280px;
  line-height: 1.65;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 16px;
}

.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 0.875rem;
  color: var(--muted);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--muted-2);
}

/* ─── Hosting Page ──────────────────────────────────────────────────── */
.page-hero {
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.3;
}

.page-hero-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(99,102,241,0.12) 0%, transparent 70%);
}

.page-hero-content { position: relative; }

/* Product Search */
.product-search-wrap {
  position: relative;
  margin-bottom: 20px;
}

.product-search-wrap svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted-2);
  pointer-events: none;
}

.product-search-wrap input {
  width: 100%;
  max-width: 400px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 16px 10px 40px;
  font-size: 0.9rem;
  color: var(--text);
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition);
}

.product-search-wrap input::placeholder { color: var(--muted-2); }
.product-search-wrap input:focus { border-color: var(--accent-1); }

/* Filters */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 8px 18px;
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 500;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--accent-1);
  background: rgba(99, 102, 241, 0.1);
  color: var(--text);
}

/* All Products Grid */
.all-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.all-product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}

.all-product-card:hover {
  border-color: var(--accent-1);
  transform: translateY(-3px);
}

.all-product-card.hidden { display: none; }

.all-product-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.all-product-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: rgba(99,102,241,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.all-product-icon img {
  width: 26px;
  height: 26px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.all-product-card h3 { font-size: 1rem; }

.all-product-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.all-product-card .category-badge {
  display: inline-flex;
  padding: 3px 10px;
  border-radius: 99px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  color: var(--muted-2);
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 16px; }
.contact-info p { font-size: 0.9rem; margin-bottom: 32px; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-detail-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  background: rgba(99,102,241,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-1);
}
.contact-detail-icon svg { width: 18px; height: 18px; }

.contact-detail-text small {
  display: block;
  font-size: 0.75rem;
  color: var(--muted-2);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

.contact-detail-text span {
  font-size: 0.9rem;
  color: var(--text);
}

/* Form */
.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

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

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--text);
  font-family: inherit;
  transition: border-color var(--transition);
  outline: none;
}

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

.form-group textarea { resize: vertical; min-height: 120px; }

.form-group select option { background: var(--surface); }

/* ─── Legal Pages ────────────────────────────────────────────────────── */
.legal-page { padding: 64px 0 96px; }

.legal-page h1 { margin-bottom: 8px; }

.legal-intro {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 56px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.legal-body h2 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin-top: 48px;
  margin-bottom: 16px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.legal-body h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }

.legal-body h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-top: 24px;
  margin-bottom: 10px;
}

.legal-body p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 14px;
}

.legal-body ul, .legal-body ol {
  margin: 12px 0 16px 20px;
}

.legal-body ul { list-style: disc; }
.legal-body ol { list-style: decimal; }

.legal-body li {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 6px;
}

.legal-body a {
  color: var(--accent-1);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-body a:hover { opacity: 0.8; }

.legal-placeholder {
  background: rgba(0, 73, 148, 0.12);
  border: 1px dashed var(--accent-1);
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 0.85rem;
  color: #7ab3e0;
  font-style: italic;
}

.legal-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 16px 0;
}

.legal-box p { margin-bottom: 4px; }
.legal-box p:last-child { margin-bottom: 0; }

.legal-toc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 48px;
}

.legal-toc h3 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 16px;
}

.legal-toc ol { margin-left: 16px; list-style: decimal; }

.legal-toc li {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 6px;
  line-height: 1.5;
}

.legal-toc a {
  color: var(--muted);
  text-decoration: none;
  transition: color var(--transition);
}
.legal-toc a:hover { color: var(--text); }

/* ─── Scroll Fade In ────────────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Responsive ────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr; gap: 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .support-inner { grid-template-columns: 1fr; }
  .support-inner .btn { display: none; }
}

@media (max-width: 640px) {
  section { padding: 64px 0; }
  .nav-links { display: none; }
  .nav-right .btn { display: none; }
  .burger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .all-products-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .stats-grid { border-radius: var(--radius); }
  .contact-grid { gap: 32px; }
}

/* Sehr kleine Screens (< 400px) */
@media (max-width: 400px) {
  .container { padding: 0 16px; }
  h1 { font-size: 2rem; }
}

/* ─── Über uns ──────────────────────────────────────────────────────── */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-story-text h2 { margin-bottom: 20px; }
.about-story-text p { font-size: 0.95rem; line-height: 1.75; }

.about-story-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
}

.about-stat-value {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}

.about-stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
}

/* ─── Timeline (alternierend links/rechts) ──────────────────────────── */
.timeline {
  position: relative;
  padding: 8px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0; bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 0;
  margin-bottom: 40px;
  align-items: center;
  position: relative;
}

/* Linke Items: Karte links, Badge mitte, leer rechts */
.timeline-item.tl-left .tl-card  { grid-column: 1; padding-right: 32px; }
.timeline-item.tl-left .tl-badge { grid-column: 2; }
.timeline-item.tl-left .tl-empty { grid-column: 3; }

/* Rechte Items: leer links, Badge mitte, Karte rechts */
.timeline-item.tl-right .tl-empty { grid-column: 1; }
.timeline-item.tl-right .tl-badge { grid-column: 2; }
.timeline-item.tl-right .tl-card  { grid-column: 3; padding-left: 32px; }

.tl-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  z-index: 1;
  margin: 0 auto;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px var(--bg), 0 0 0 6px var(--border);
}

.tl-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  transition: border-color var(--transition);
}
.tl-card:hover { border-color: var(--accent-1); }

.tl-year {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-1);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.tl-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.tl-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* Timeline mobil: einspaltig */
@media (max-width: 768px) {
  .timeline::before { left: 24px; transform: none; }
  .timeline-item { grid-template-columns: 56px 1fr; gap: 0; }
  .timeline-item.tl-left .tl-badge,
  .timeline-item.tl-right .tl-badge { grid-column: 1; width: 40px; height: 40px; font-size: 0.68rem; }
  .timeline-item.tl-left .tl-card,
  .timeline-item.tl-right .tl-card  { grid-column: 2; padding: 20px; }
  .timeline-item.tl-left .tl-empty,
  .timeline-item.tl-right .tl-empty { display: none; }
  .timeline-item.tl-left .tl-card { padding-right: 20px; }
  .timeline-item.tl-right .tl-card { padding-left: 20px; }
}

/* ─── Leistungen-Seite ───────────────────────────────────────────────── */
.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.leistung-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}
.leistung-card:hover { border-color: var(--accent-1); transform: translateY(-2px); }

.leistung-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius);
  background: rgba(0,73,148,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-1);
  margin-bottom: 18px;
}
.leistung-icon svg { width: 22px; height: 22px; }
.leistung-card h3 { font-size: 1rem; margin-bottom: 10px; }
.leistung-card p  { font-size: 0.875rem; line-height: 1.7; }

/* ─── Case Study ─────────────────────────────────────────────────────── */
.cs-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.cs-logo-box {
  width: 120px; height: 80px;
  background: white;
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  padding: 12px; flex-shrink: 0;
}

.cs-logo-box img { max-width: 100%; max-height: 100%; object-fit: contain; }

.cs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}

.cs-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.cs-box h3 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 16px;
}

.cs-list { list-style: none; }
.cs-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 10px;
  line-height: 1.5;
}
.cs-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-1);
  flex-shrink: 0;
  margin-top: 6px;
}

.cs-tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cs-tech-tag {
  padding: 5px 12px;
  background: rgba(0,73,148,0.1);
  border: 1px solid rgba(0,73,148,0.2);
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 500;
  color: #7ab3e0;
}

@media (max-width: 640px) {
  .cs-grid { grid-template-columns: 1fr; }
  .cs-header { flex-direction: column; align-items: flex-start; }
}

/* ─── Werte ──────────────────────────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition);
}

.value-card:hover {
  border-color: var(--accent-1);
  transform: translateY(-3px);
}

.value-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: rgba(0, 73, 148, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--accent-1);
}
.value-icon svg { width: 22px; height: 22px; }

.value-card h3 { font-size: 0.95rem; margin-bottom: 10px; }
.value-card p { font-size: 0.85rem; line-height: 1.65; }

/* ─── Referenzen ─────────────────────────────────────────────────────── */
.ref-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.ref-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}

.ref-card:hover { border-color: var(--accent-1); transform: translateY(-3px); }

.ref-card-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-style: dashed;
}

.ref-placeholder-inner { text-align: center; }
.ref-placeholder-inner .ref-icon { margin: 0 auto 16px; }

.ref-card-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.ref-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: rgba(0, 73, 148, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-1);
}
.ref-icon svg { width: 22px; height: 22px; }

.ref-card-header h3 { font-size: 1.05rem; margin-bottom: 4px; }

.ref-location {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  color: var(--muted-2);
}

.ref-description {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 20px;
}

.ref-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.ref-tag {
  padding: 4px 10px;
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: rgba(0, 73, 148, 0.1);
  border: 1px solid rgba(0, 73, 148, 0.2);
  color: #7ab3e0;
}

.ref-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
}

.ref-type { color: var(--accent-1); font-weight: 600; }
.ref-year { color: var(--muted-2); }

.ref-region-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.ref-region-text h3 { font-size: 1.1rem; margin-bottom: 10px; }
.ref-region-text p { font-size: 0.875rem; color: var(--muted); max-width: 520px; }

/* ─── Responsive Über uns & Referenzen ──────────────────────────────── */
@media (max-width: 900px) {
  .about-story { grid-template-columns: 1fr; gap: 40px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .ref-grid { grid-template-columns: 1fr; }
  .ref-region-box { flex-direction: column; align-items: flex-start; gap: 24px; }
}

@media (max-width: 640px) {
  .about-story-stats { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .timeline { padding-left: 24px; }
  .timeline-item { grid-template-columns: 60px 1fr; gap: 16px; }
  .ref-region-box { padding: 24px; }
}

/* ─── Honeypot (Spam-Schutz) ────────────────────────────────────────── */
.hp-wrap {
  display: none !important;
}

/* ─── Formular-Meldungen ────────────────────────────────────────────── */
.form-message {
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 24px;
}
.form-message a { color: inherit; text-decoration: underline; }
.form-message.success {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #6ee7b7;
}
.form-message.error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}
