/* WIP GmbH – Basis-CSS gemäß CI Guide */

:root {
  --wip-bg: #121212;
  --wip-green: #00965F;
  --wip-white: #FFFFFF;
  --wip-text-muted: rgba(255, 255, 255, 0.78);
  --wip-line: rgba(255, 255, 255, 0.10);
  --wip-panel: #181818;
  --wip-panel-2: #1F1F1F;
  --wip-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  --wip-radius: 18px;
  --wip-radius-sm: 10px;
  --wip-max: 1280px;
  --wip-header-h: 104px;
  --wip-gap: 24px;
  --wip-font: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--wip-bg);
  color: var(--wip-white);
  font-family: var(--wip-font);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea,
select {
  font: inherit;
}

/* Layout */
.container {
  width: min(100% - 32px, var(--wip-max));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section--tight {
  padding: 56px 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--wip-header-h);
  background: rgba(18, 18, 18, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--wip-line);
}

.site-header__inner {
  min-height: var(--wip-header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  min-width: 180px;
}

.site-logo img {
  width: auto;
  max-height: 62px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--wip-white);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 10px 12px;
  border-radius: 999px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--wip-white);
  background: rgba(0, 150, 95, 0.16);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--wip-green);
  color: var(--wip-white);
  box-shadow: 0 10px 24px rgba(0, 150, 95, 0.22);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: #00a86b;
}

.btn--secondary {
  background: transparent;
  color: var(--wip-white);
  border-color: rgba(255, 255, 255, 0.22);
}

.btn--secondary:hover,
.btn--secondary:focus-visible {
  border-color: var(--wip-green);
  background: rgba(0, 150, 95, 0.12);
}

/* Hero / content */
.hero {
  padding: 72px 0 40px;
}

.hero__media,
.content-card,
.slider-box {
  background: linear-gradient(180deg, var(--wip-panel) 0%, var(--wip-panel-2) 100%);
  border: 1px solid var(--wip-line);
  border-radius: var(--wip-radius);
  box-shadow: var(--wip-shadow);
  overflow: hidden;
}

.hero__media {
  aspect-ratio: 16 / 10;
  min-height: 320px;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(0, 150, 95, 0.38);
  border-radius: 999px;
  color: var(--wip-green);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--wip-white);
  font-weight: 700;
  line-height: 1.08;
}

h1 {
  font-size: clamp(38px, 6vw, 64px);
}

h2 {
  font-size: clamp(28px, 4vw, 42px);
}

h3 {
  font-size: clamp(22px, 3vw, 28px);
}

.lead {
  margin: 0;
  color: var(--wip-text-muted);
  font-size: 18px;
  max-width: 62ch;
}

.text,
.content-card p,
.content-card li {
  color: var(--wip-text-muted);
  font-size: 16px;
}

.highlight {
  color: var(--wip-green);
}

/* Slider / image frame */
.slider-box {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 280px;
}

.slider-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-box__controls {
  position: absolute;
  inset: auto 18px 18px auto;
  display: flex;
  gap: 10px;
}

.slider-box__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
  border: 0;
}

.slider-box__dot.is-active {
  background: var(--wip-green);
}

/* Service cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.card {
  padding: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border: 1px solid var(--wip-line);
  border-radius: var(--wip-radius);
  box-shadow: var(--wip-shadow);
}

.card h3 {
  margin-bottom: 12px;
}

.card ul {
  margin: 0;
  padding-left: 18px;
}

/* Footer */
.site-footer {
  margin-top: 40px;
  border-top: 1px solid var(--wip-line);
  background: #0f0f0f;
}

.site-footer__inner {
  padding: 42px 0;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.8fr;
  gap: 28px;
}

.footer-title {
  margin-bottom: 12px;
  color: var(--wip-white);
  font-size: 16px;
  font-weight: 700;
}

.footer-list,
.social-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-list a,
.social-list a {
  color: var(--wip-text-muted);
}

.footer-list a:hover,
.social-list a:hover {
  color: var(--wip-green);
}

.footer-bottom {
  padding: 18px 0 28px;
  border-top: 1px solid var(--wip-line);
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
}

/* Utilities */
.only-mobile {
  display: none;
}

.text-center {
  text-align: center;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 1120px) {
  .site-header__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 16px 0;
  }

  .site-nav {
    justify-content: center;
  }

  .header-actions {
    width: 100%;
    justify-content: center;
  }

  .grid-2,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  :root {
    --wip-header-h: auto;
  }

  .section {
    padding: 64px 0;
  }

  .hero {
    padding-top: 40px;
  }

  .container {
    width: min(100% - 24px, var(--wip-max));
  }

  .site-nav {
    gap: 8px;
  }

  .site-nav a {
    font-size: 14px;
    padding: 8px 10px;
  }

  .btn {
    min-height: 44px;
    padding: 0 18px;
    font-size: 14px;
  }

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

  .hero__media,
  .slider-box {
    min-height: 220px;
  }

  .lead {
    font-size: 17px;
  }
}
.slider-box {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 280px;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.slide.is-active {
  opacity: 1;
  z-index: 1;
}

.slider-box__controls {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: flex;
  gap: 10px;
  z-index: 2;
}

.slider-box__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}

.slider-box__dot.is-active {
  background: #00965F;
}
.footer-keywords {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-keyword-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 10px;
}

.footer-keyword-list a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s ease;
}

.footer-keyword-list a:hover {
  color: #00965F;
}