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

:root {
  --primary: #f37321;
  --primary-soft: #ffe4cc;
  --bg: #f5f5f7;
  --bg-soft: #ffffff;
  --text: #1f2933;
  --muted: #6b7280;
  --border: #e5e7eb;
  --radius-lg: 20px;
  --radius-md: 12px;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.16);
  --shadow-subtle: 0 10px 30px rgba(15, 23, 42, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #ffffff 0, #f3f4f6 35%, #e5e7eb 100%);
  color: var(--text);
  line-height: 1.6;
}

/* Barrierefreiheit */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: 8px 14px;
  background: #000;
  color: #fff;
  z-index: 1000;
}

.skip-link:focus {
  left: 10px;
  top: 10px;
  border-radius: 999px;
}

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

main {
  padding-top: 90px;
}

.section {
  padding: 70px 0;
}

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

.section-title {
  font-size: 30px;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.section-sub {
  font-size: 15px;
  color: var(--muted);
  max-width: 640px;
}

/* Header / Navigation */

.header {
  position: fixed;
  inset: 0 0 auto;
  height: 80px;
  backdrop-filter: blur(18px);
  background: rgba(248, 250, 252, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.9);
  z-index: 40;
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  overflow: hidden;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text-main {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-text-sub {
  font-size: 11px;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
}

.nav a {
  text-decoration: none;
  color: var(--text);
  position: relative;
  padding-bottom: 4px;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
  transition: width 0.2s ease;
}

.nav a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff !important;
  font-weight: 600;
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  font-size: 22px;
  cursor: pointer;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    background 0.15s ease, border-color 0.15s ease;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.25);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(148, 163, 184, 0.5);
  color: var(--text);
}

.btn-ghost:hover {
  background: #fff;
  box-shadow: var(--shadow-subtle);
}

.btn-pill {
  border-radius: 999px;
}

/* Hero */

.hero {
  padding-top: 50px;
  padding-bottom: 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(255, 255, 255, 0.96);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 18px;
}

.hero-kicker-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #16a34a;
}

.hero-title {
  font-size: clamp(32px, 3.1vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.hero-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 22px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 22px;
}

.hero-meta strong {
  color: var(--text);
}

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

.hero-right {
  border-radius: 26px;
  background: radial-gradient(circle at top left, #ffffff 0, #f97316 20%, #111827 100%);
  padding: 26px 26px 18px;
  color: #f9fafb;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid rgba(248, 250, 252, 0.5);
  background: rgba(15, 23, 42, 0.7);
  font-size: 11px;
  margin-bottom: 16px;
}

.hero-pill-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #22c55e;
}

.hero-card-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.hero-card-text {
  font-size: 13px;
  color: rgba(241, 245, 249, 0.9);
  margin-bottom: 16px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.hero-tag {
  font-size: 11px;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.85);
}

.hero-metric {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(226, 232, 240, 0.92);
}

/* Leistungen – Karten 1–12 */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
  margin-top: 26px;
}

.service-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: var(--shadow-subtle);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card-media {
  position: relative;
  overflow: hidden;
}

.service-card-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.service-card-body {
  padding: 14px 16px 16px;
}

.service-card-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 4px;
}

.service-card-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.service-card-text {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 10px;
}

.service-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

.service-card-footer a {
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}

/* Premium-Vorteile */

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.benefit-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 16px 14px;
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.benefit-title {
  font-weight: 600;
  margin-bottom: 4px;
}

.benefit-text {
  font-size: 13px;
  color: var(--muted);
}

/* KPI – Zahlen & Fakten */

.kpi-section {
  background: radial-gradient(circle at top, #ffffff 0, #f97316 5%, #0f172a 65%, #020617 100%);
  color: #e5e7eb;
  border-radius: 26px;
  padding: 26px 24px 22px;
  box-shadow: var(--shadow-soft);
  margin-top: 26px;
}

.kpi-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 18px;
}

.kpi-header h3 {
  font-size: 18px;
}

.kpi-header p {
  font-size: 13px;
  max-width: 420px;
  color: rgba(226, 232, 240, 0.85);
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 18px;
}

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

.kpi-circle {
  width: 90px;
  height: 90px;
  margin: 0 auto 8px;
  border-radius: 999px;
  background:
    conic-gradient(var(--primary) 0 260deg, rgba(15, 23, 42, 0.9) 260deg 360deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.kpi-circle-inner {
  width: 68px;
  height: 68px;
  border-radius: 999px;
  background: #020617;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.kpi-label {
  font-size: 12px;
  color: rgba(226, 232, 240, 0.9);
}

/* Galerie */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin-top: 22px;
}

.gallery-card {
  border-radius: 18px;
  overflow: hidden;
  background: #0f172a;
  color: #e5e7eb;
  box-shadow: var(--shadow-subtle);
}

.gallery-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.gallery-body {
  padding: 12px 14px 14px;
}

.gallery-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  opacity: 0.7;
  margin-bottom: 4px;
}

.gallery-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.gallery-text {
  font-size: 13px;
  color: rgba(226, 232, 240, 0.85);
}

/* Testimonials / Kundenstimmen */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 22px;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 18px 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-subtle);
  font-size: 14px;
}

.testimonial-name {
  font-weight: 600;
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
}

/* Video-Container */

.video-section {
  margin-top: 26px;
}

.video-box {
  border-radius: 22px;
  overflow: hidden;
  background: radial-gradient(circle at top, #111827 0, #020617 40%, #000000 100%);
  box-shadow: var(--shadow-soft);
  padding: 18px 18px 18px;
}

.video-frame {
  border-radius: 14px;
  background: #020617;
  border: 1px solid rgba(148, 163, 184, 0.6);
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e5e7eb;
  font-size: 14px;
}

/* Kontakt */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 30px;
  margin-top: 24px;
}

.contact-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px 20px 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-subtle);
  font-size: 14px;
}

.contact-list {
  list-style: none;
}

.contact-list li + li {
  margin-top: 6px;
}

.contact-list span {
  color: var(--muted);
}

.form-grid {
  display: grid;
  gap: 12px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.field label {
  font-size: 13px;
  color: var(--muted);
}

.field input,
.field textarea {
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 10px 12px;
  font-size: 14px;
  background: #ffffff;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px rgba(243, 115, 33, 0.22);
}

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

.field small {
  font-size: 11px;
  color: var(--muted);
}

/* Partnerbereich */

.partner-section {
  background: #111827;
  color: #e5e7eb;
  border-radius: 24px;
  padding: 22px 22px 18px;
  margin-top: 40px;
  box-shadow: var(--shadow-subtle);
}

.partner-header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-bottom: 10px;
}

.partner-header h3 {
  font-size: 18px;
}

.partner-text {
  font-size: 13px;
  color: rgba(226, 232, 240, 0.9);
}

/* Footer */

.footer {
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  background: #ffffff;
  margin-top: 40px;
}

.footer-inner {
  padding: 24px 0 20px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.9fr);
  gap: 24px;
  font-size: 13px;
  color: var(--muted);
}

.footer-heading {
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.footer-nav a {
  text-decoration: none;
  color: var(--muted);
  position: relative;
  padding-bottom: 2px;
}

.footer-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: width 0.2s ease;
}

.footer-nav a:hover::after {
  width: 100%;
}

.footer-meta {
  margin-top: 8px;
  font-size: 12px;
  opacity: 0.85;
}

/* Unterseiten: Hero vereinfachen */

.sub-hero {
  padding-top: 40px;
  padding-bottom: 60px;
}

.sub-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: center;
}

.sub-hero-title {
  font-size: clamp(30px, 2.7vw, 38px);
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}

.sub-hero-sub {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 18px;
}

.sub-hero-media img {
  width: 100%;
  border-radius: 22px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

/* Unterseiten – Inhalte */

.text-block {
  font-size: 15px;
  color: var(--text);
}

.text-block p + p {
  margin-top: 12px;
}

.text-block ul {
  margin-top: 10px;
  padding-left: 18px;
}

.text-block li {
  margin-bottom: 6px;
}

/* Responsive */

@media (max-width: 900px) {
  .hero-grid,
  .sub-hero-inner,
  .contact-grid,
  .footer-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 34px;
  }

  .kpi-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 780px) {
  main {
    padding-top: 76px;
  }

  .nav {
    position: fixed;
    inset: 72px 0 auto;
    background: rgba(248, 250, 252, 0.98);
    border-bottom: 1px solid rgba(148, 163, 184, 0.3);
    padding: 14px 20px 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.18s ease, opacity 0.18s ease;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-cta {
    width: 100%;
    justify-content: center;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero-title,
  .sub-hero-title {
    font-size: 26px;
  }

  .section {
    padding: 55px 0;
  }
}