:root {
  --ink: #111714;
  --muted: #66736e;
  --line: #dce5df;
  --surface: #f7faf8;
  --surface-strong: #eef5f1;
  --teal: #087d78;
  --teal-dark: #055955;
  --lime: #9dcc32;
  --amber: #e4a528;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(17, 23, 20, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(220, 229, 223, 0.75);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  border-radius: 8px;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav {
  display: flex;
  gap: clamp(14px, 3vw, 34px);
  color: #35423d;
  font-size: 0.95rem;
  font-weight: 600;
}

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

.hero {
  position: relative;
  display: grid;
  min-height: min(760px, calc(100vh - 70px));
  overflow: hidden;
  background: #edf5f2;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(247, 250, 248, 0.98) 0%, rgba(247, 250, 248, 0.88) 34%, rgba(247, 250, 248, 0.24) 62%, rgba(247, 250, 248, 0.02) 100%),
    linear-gradient(0deg, rgba(17, 23, 20, 0.18), rgba(17, 23, 20, 0));
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  padding: clamp(76px, 11vw, 144px) clamp(20px, 5vw, 72px);
  align-self: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 680px;
  margin-bottom: 24px;
  font-size: clamp(2.5rem, 7vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 32px;
  color: #31403a;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions,
.contact-section {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--white);
  background: var(--teal-dark);
  box-shadow: 0 14px 30px rgba(5, 89, 85, 0.25);
}

.button.primary:hover {
  background: var(--teal);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(17, 23, 20, 0.18);
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-band div {
  padding: clamp(22px, 4vw, 36px) clamp(20px, 5vw, 72px);
  background: var(--white);
}

.trust-band strong {
  display: block;
  margin-bottom: 4px;
  color: var(--teal-dark);
  font-size: 1.14rem;
}

.trust-band span {
  color: var(--muted);
}

.section,
.feature-section,
.contact-section,
.imprint,
.site-footer {
  padding-inline: clamp(20px, 5vw, 72px);
}

.section {
  padding-top: clamp(72px, 10vw, 120px);
  padding-bottom: clamp(72px, 10vw, 120px);
}

.section-heading {
  max-width: 790px;
  margin-bottom: 42px;
}

.section-heading p:not(.eyebrow),
.feature-copy p,
.contact-section p,
.service-card p,
.process-list p {
  color: var(--muted);
}

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

.service-card {
  min-height: 290px;
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.icon-dot {
  display: block;
  width: 34px;
  height: 34px;
  margin-bottom: 28px;
  background:
    radial-gradient(circle at 68% 32%, var(--lime) 0 18%, transparent 19%),
    linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: 8px;
}

.feature-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
  padding-top: clamp(72px, 10vw, 120px);
  padding-bottom: clamp(72px, 10vw, 120px);
  background: var(--surface-strong);
}

.feature-copy {
  max-width: 680px;
}

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

.process-list div {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(17, 23, 20, 0.05);
}

.process-list span {
  display: block;
  margin-bottom: 10px;
  color: var(--amber);
  font-weight: 800;
}

.process-list strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.process-list p {
  margin-bottom: 0;
}

.contact-section {
  justify-content: space-between;
  padding-top: clamp(58px, 8vw, 92px);
  padding-bottom: clamp(58px, 8vw, 92px);
  background: #10201c;
  color: var(--white);
}

.contact-section > div {
  max-width: 720px;
}

.contact-section p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

.contact-section .eyebrow {
  color: var(--lime);
}

.contact-section .button.primary {
  color: #10201c;
  background: var(--lime);
  box-shadow: none;
}

.imprint {
  padding-top: 32px;
  padding-bottom: 32px;
  background: #f3f7f4;
  border-top: 1px solid var(--line);
}

.imprint h2 {
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.2;
}

.imprint address {
  color: var(--muted);
  font-style: normal;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 28px;
  padding-bottom: 28px;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer a {
  color: var(--teal-dark);
  font-weight: 700;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    min-height: auto;
  }

  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(247, 250, 248, 0.94) 0%, rgba(247, 250, 248, 0.84) 55%, rgba(247, 250, 248, 0.52) 100%),
      linear-gradient(0deg, rgba(17, 23, 20, 0.1), rgba(17, 23, 20, 0));
  }

  .hero-content {
    padding-top: 72px;
    padding-bottom: 120px;
  }

  .trust-band,
  .service-grid,
  .feature-section {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .nav {
    width: 100%;
    justify-content: space-between;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  h1 {
    font-size: clamp(2.35rem, 15vw, 3.7rem);
  }

  .hero-actions,
  .hero-actions .button,
  .contact-section .button {
    width: 100%;
  }

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