:root {
  --blue: #0759d6;
  --blue-dark: #063f9c;
  --navy: #071829;
  --text: #102033;
  --muted: #5b6778;
  --line: #dfe7f2;
  --bg: #f6f9fd;
  --white: #fff;
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: grid;
  grid-template-columns: 10fr 1fr;
  align-items: center;
  gap: 28px;
  min-height: 78px;
}

.brand {
  display: flex;
  align-items: center;
}

.brand img.logo {
  display: block;
  height: 80px;
  width: auto;
  max-width: none;
  object-fit: contain;
}

.brand img:not(.logo) {
  display: block;
  height: 46px;
  max-width: 260px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
  font-weight: 700;
  font-size: 15px;
}

.main-nav a {
  text-decoration: none;
  color: #0b1d35;
}

.main-nav a:hover {
  color: var(--blue);
}

.language-switch {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  background: var(--white);
}

.language-switch button {
  border: 0;
  background: transparent;
  padding: 7px 10px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  color: var(--muted);
}

.language-switch button.active {
  background: var(--blue);
  color: white;
}

/* Hero / Slider */
.hero {
  position: relative;
  height: 560px;
  min-height: 560px;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
  display: flex;
  height: 100%;
  transition: transform 900ms cubic-bezier(.22, .61, .36, 1);
  will-change: transform;
}

.hero-slide {
  flex: 0 0 100%;
  height: 100%;
  background-size: center;
  background-position: center;  
}

.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(3, 14, 28, 0.92) 0%, rgba(3, 14, 28, 0.76) 43%, rgba(3, 14, 28, 0.16) 100%),
    linear-gradient(0deg, rgba(3, 14, 28, 0.28), rgba(3, 14, 28, 0.05));
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-text {
  max-width: 650px;
  padding: 76px 0;
}

.hero .eyebrow {
  color: #9dc2ff;
}

#heroHeadline {
  min-height: 200px;
}

#heroSubline {
  min-height: 120px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  min-height: 10px;
}

.hero-dots {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.hero-dot {
  width: 38px;
  height: 7px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
  padding: 0;
}

.hero-dot.active {
  background: #fff;
}

/* Typography */
.eyebrow {
  margin: 0 0 10px;
  color: #2f7cff;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.05;
  margin-bottom: 24px;
}

.lead {
  font-size: clamp(18px, 2.1vw, 24px);
  max-width: 600px;
  margin-bottom: 34px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
}

.btn.primary {
  background: var(--blue);
  color: white;
}

.btn.primary:hover {
  background: var(--blue-dark);
}

.btn.secondary {
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: white;
}

/* Services */
.services-section {
  padding: 56px 0 24px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.section-heading h2 {
  font-size: clamp(28px, 3vw, 42px);
  margin: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 8px 24px rgba(8, 28, 56, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(8, 28, 56, 0.10);
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  color: var(--blue);
}

.service-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.service-link {
  display: inline-block;
  margin-top: 14px;
  padding: 6px 12px;
  border-radius: 6px;
  background: rgba(7, 89, 214, 0.1);
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}

.service-link:hover {
  background: rgba(7, 89, 214, 0.2);
}

/* Teaser cards */
.teaser-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 18px 0 56px;
}

.teaser-card {
  min-height: 210px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(8, 28, 56, 0.04);
  padding: 28px;
  display: flex;
  gap: 24px;
  align-items: center;
  overflow: hidden;
}

.teaser-card h3 {
  color: var(--blue-dark);
  font-size: 21px;
}

.teaser-card p {
  color: var(--muted);
}

.teaser-card a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 800;
}

.experience-badge {
  flex: 0 0 auto;
  width: 116px;
  height: 116px;
  border: 8px solid #dce9fa;
  border-right-color: var(--blue);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 38px;
  font-weight: 900;
  color: var(--blue);
}

.image-card {
  justify-content: space-between;
}

.image-card img {
  width: 220px;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
}

/* Footer */
.site-footer {
  background: linear-gradient(135deg, #071829, #062d50);
  color: white;
  padding-top: 44px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 36px;
}

.footer-logo {
  height: 60px;  
  max-width: 240px;
  object-fit: contain;
  padding: 4px 8px;
}

.site-footer a {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  margin: 4px 0;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 360px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.footer-bottom a {
  display: inline;
}

/* Legal pages */
.imprint-box,
.legal-box,
.contact-box {
  margin-top: 30px;
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(8, 28, 56, 0.04);
}

.imprint-box h3,
.contact-box h3,
.legal-box h3 {
  margin-top: 25px;
  color: var(--blue-dark);
}

.imprint-box p,
.contact-box p,
.legal-box p,
.legal-box li {
  color: var(--muted);
}

.imprint-box a,
.contact-box a,
.legal-box a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 700;
}

.imprint-box a:hover,
.contact-box a:hover,
.legal-box a:hover {
  text-decoration: underline;
}

.legal-page {
  padding: 64px 0;
}

.legal-box {
  margin-top: 28px;
  padding: 34px;
}

.legal-box h2 {
  margin-top: 34px;
  color: var(--blue-dark);
  font-size: 26px;
}

.legal-note {
  color: var(--muted);
  font-size: 15px;
}

.external-link-label {
  display: inline-block;
  margin-left: 4px;
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  vertical-align: super;
}

.all-caps {
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text);
}

/* Contact page */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-right img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(8, 28, 56, 0.08);
}

.contact-image-placeholder {
  margin-top: 30px;
  height: 200px;
  border-radius: 12px;
  border: 2px dashed var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  background: #f9fbff;
}

/* Responsive */
@media (max-width: 900px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-layout,
  .teaser-section,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  #heroHeadline {
    min-height: 120px;
  }

  #heroSubline {
    min-height: 80px;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(100% - 26px, 1180px);
  }

  .nav-wrap {
    min-height: 62px;
    gap: 12px;
  }

  .brand img.logo {
    height: 54px;
    max-width: 190px;
  }

  .hero {
    min-height: 620px;
  }

  .hero-text {
    padding: 58px 0;
  }

  #heroHeadline {
    min-height: 150px;
  }

  #heroSubline {
    min-height: 105px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 22px;
  }

  .teaser-card {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .legal-box {
    padding: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-slider,
  .service-card {
    transition: none;
  }
}


.customer-logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 16px;
  align-items: center;
}

.customer-logos img {
  max-width: 100%;
  max-height: 40px;
  object-fit: contain;
/*  filter: grayscale(100%);*/
  opacity: 0.8;
  transition: all 0.2s ease;
}

.customer-logos img:hover {
  filter: none;
  opacity: 1;
}

.database-image{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  border-radius:18px;
}