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

:root {
  --black: #060606;
  --dark: #151515;
  --orange: #ff7900;
  --text: #f7f7f7;
  --muted: #bdbdbd;
  --light: #f4f1eb;
  --radius: 22px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--black);
  color: var(--text);
  line-height: 1.6;
}

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

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

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(6, 6, 6, .90);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  letter-spacing: .02em;
}

.brand img {
  width: 74px;
  height: 58px;
  object-fit: contain;
  border-radius: 10px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #e8e8e8;
  font-weight: 700;
  font-size: 15px;
}

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

.header-btn {
  padding: 13px 20px;
  background: linear-gradient(135deg, var(--orange), #ff9d2e);
  color: #111;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 10px 30px rgba(255,121,0,.26);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,121,0,.22), transparent 28%),
    linear-gradient(90deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.74) 44%, rgba(0,0,0,.34) 100%),
    url("assets/referenzen/aussen_nachher.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 160px;
  background: linear-gradient(transparent, var(--black));
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  color: var(--orange);
  text-transform: uppercase;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .12em;
  margin-bottom: 14px;
}

h1 {
  font-size: clamp(42px, 7vw, 82px);
  line-height: .98;
  letter-spacing: -0.055em;
  max-width: 820px;
  margin-bottom: 26px;
}

h2 {
  font-size: clamp(32px, 4.5vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 22px;
}

h3 {
  font-size: 23px;
  line-height: 1.15;
  margin-bottom: 10px;
}

.lead {
  font-size: clamp(18px, 2vw, 23px);
  color: #e4e4e4;
  max-width: 720px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 42px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 15px 24px;
  font-weight: 900;
  font-size: 16px;
}

.btn-primary {
  color: #111;
  background: linear-gradient(135deg, var(--orange), #ffad42);
  box-shadow: 0 18px 38px rgba(255,121,0,.25);
}

.btn-ghost {
  border: 1px solid rgba(255,255,255,.25);
  color: white;
  background: rgba(255,255,255,.08);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 820px;
}

.trust-row div {
  padding: 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 18px;
}

.trust-row strong {
  display: block;
  font-size: 18px;
}

.trust-row span {
  color: var(--muted);
  font-size: 14px;
}

.hero-logo-card {
  justify-self: end;
  width: min(430px, 100%);
  padding: 28px;
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255,255,255,.14), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.15);
  box-shadow: 0 40px 90px rgba(0,0,0,.55);
}

.hero-logo-card img {
  width: 100%;
  border-radius: 22px;
}

.section {
  padding: 110px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-head.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

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

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border-radius: var(--radius);
  background: #181818;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}

.service-card img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  transition: transform .35s ease;
}

.service-card:hover img {
  transform: scale(1.06);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 25%, rgba(0,0,0,.90));
}

.service-content {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
}

.service-content span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: #111;
  border-radius: 14px;
  font-weight: 900;
  margin-bottom: 16px;
}

.service-content p {
  color: #d9d9d9;
}

.before-after-section {
  background:
    radial-gradient(circle at 15% 12%, rgba(255,121,0,.16), transparent 32%),
    #0d0d0d;
}

.before-after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.ba-card {
  background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 28px;
  padding: 18px;
  box-shadow: 0 24px 70px rgba(0,0,0,.25);
}

.ba-card.wide {
  grid-column: span 2;
}

.ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.ba-images div {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  min-height: 330px;
  background: #111;
}

.ba-card.wide .ba-images div {
  min-height: 420px;
}

.ba-images img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(.98) contrast(1.03);
  transition: transform .35s ease;
}

.ba-card:hover .ba-images img {
  transform: scale(1.045);
}

.ba-images span {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(0,0,0,.72);
  border: 1px solid rgba(255,255,255,.18);
  font-size: 13px;
  font-weight: 900;
  color: white;
}

.ba-images div:last-child span {
  background: var(--orange);
  color: #111;
}

.ba-text {
  padding: 22px 8px 8px;
}

.ba-text p {
  color: var(--muted);
}

.region-section {
  background: #080808;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.region-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 42px;
  align-items: center;
}

.region-grid p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.region-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.region-list span {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.11);
  font-weight: 900;
}

.region-list span::before {
  content: "• ";
  color: var(--orange);
}

.about-section {
  background: var(--light);
  color: #111;
}

.about-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 56px;
  align-items: center;
}

.about-card {
  border-radius: 34px;
  background: white;
  padding: 34px;
  box-shadow: 0 24px 70px rgba(0,0,0,.12);
}

.about-card img {
  border-radius: 24px;
}

.about-text p:not(.eyebrow) {
  font-size: 19px;
  color: #444;
  margin-bottom: 28px;
}

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

.about-points div {
  background: white;
  padding: 22px;
  border-radius: 20px;
  box-shadow: 0 16px 34px rgba(0,0,0,.08);
}

.about-points strong {
  color: var(--orange);
  display: block;
  font-size: 24px;
  margin-bottom: 8px;
}

.about-points span {
  font-weight: 800;
}

.contact-section {
  background:
    linear-gradient(rgba(0,0,0,.86), rgba(0,0,0,.92)),
    url("assets/referenzen/innen_nachher_2.jpg");
  background-size: cover;
  background-position: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 46px;
  align-items: start;
}

.contact-info p:not(.eyebrow) {
  color: #dfdfdf;
  font-size: 18px;
  margin-bottom: 28px;
}

.info-list {
  display: grid;
  gap: 14px;
}

.info-list p {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  padding: 20px;
  border-radius: 18px;
}

.info-list a {
  color: var(--orange);
}

.muted {
  color: var(--muted);
}

.contact-form {
  background: rgba(255,255,255,.98);
  color: #111;
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 30px 90px rgba(0,0,0,.40);
}

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

.contact-form label {
  display: block;
  font-weight: 900;
  margin-bottom: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 15px 16px;
  border: 1px solid #d5d5d5;
  border-radius: 14px;
  font: inherit;
  background: #f7f7f7;
}

.contact-form textarea {
  resize: vertical;
}

.check {
  display: flex !important;
  align-items: flex-start;
  gap: 12px;
  font-weight: 500 !important;
  color: #333;
}

.check input {
  width: auto;
  margin-top: 5px;
}

.full {
  width: 100%;
}

.form-note {
  margin-top: 14px;
  color: #666;
  font-size: 13px;
}

.footer {
  background: #050505;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #bbb;
  font-size: 14px;
}

.footer a {
  margin-left: 20px;
  color: #ddd;
}

@media (max-width: 980px) {
  .main-nav,
  .header-btn {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 80px 0 70px;
  }

  .hero-inner,
  .region-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-logo-card {
    justify-self: start;
    max-width: 360px;
  }

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

  .ba-card.wide {
    grid-column: span 2;
  }

  .trust-row,
  .about-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .header-inner {
    min-height: 76px;
  }

  .brand span {
    display: none;
  }

  .brand img {
    width: 62px;
    height: 50px;
  }

  .service-grid,
  .before-after-grid,
  .ba-images,
  .form-row,
  .region-list {
    grid-template-columns: 1fr;
  }

  .ba-card.wide {
    grid-column: auto;
  }

  .ba-card.wide .ba-images div,
  .ba-images div {
    min-height: 240px;
  }

  .section {
    padding: 76px 0;
  }

  .contact-form {
    padding: 24px;
  }
}


.legal-page {
  background: #f4f1eb;
  color: #111;
  min-height: 100vh;
  padding: 80px 0;
}

.legal-page h1 {
  color: #111;
  font-size: clamp(36px, 5vw, 64px);
  margin-bottom: 34px;
}

.legal-page h2 {
  color: #111;
  font-size: 26px;
  margin-top: 30px;
  margin-bottom: 12px;
}

.legal-page p {
  color: #333;
  font-size: 18px;
  margin-bottom: 18px;
}

.legal-page a {
  color: #ff7900;
  font-weight: 800;
}
