﻿:root {
  --cyan: #0d3f3c;
  --cyan-dark: #062b2a;
  --cyan-soft: #e9f3f1;
  --text: #122927;
  --muted: #667674;
  --line: #dfe9e6;
  --surface: #f7faf9;
  --white: #ffffff;
  --page: #ffffff;
  --card: #ffffff;
  --header-bg: rgba(255, 255, 255, 0.92);
  --hero-bg: radial-gradient(circle at 82% 18%, rgba(13, 63, 60, 0.11), transparent 28%), linear-gradient(90deg, rgba(233, 243, 241, 0.9), rgba(255, 255, 255, 0.78)), #ffffff;
  --on-cyan: #ffffff;
  --accent: #b48a45;
  --shadow: 0 22px 60px rgba(6, 43, 42, 0.08);
  --shadow-strong: 0 28px 80px rgba(6, 43, 42, 0.14);
  --card-shadow: 0 16px 40px rgba(6, 43, 42, 0.055);
  --number-size: 2.25rem;
  --h1-size: clamp(2.05rem, 3.6vw, 3.05rem);
  --h2-size: clamp(1.65rem, 2.6vw, 2.28rem);
  --card-title-size: 1.08rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

:where(section[id], #kontaktformular) {
  scroll-margin-top: 104px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--page);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 29;
  pointer-events: none;
  background: rgba(6, 43, 42, 0);
  transition: background 180ms ease;
}

body.nav-open {
  overflow: hidden;
}

body.nav-open::before {
  pointer-events: none;
  background: transparent;
}

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

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

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 12px clamp(20px, 5vw, 72px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9));
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 34px rgba(6, 43, 42, 0.04);
}

.brand img {
  width: 285px;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--cyan-dark);
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-7px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(7px);
}

.nav-open .menu-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .menu-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

.main-nav {
  display: flex;
  gap: 18px;
  margin-left: auto;
  color: var(--muted);
  font-size: 0.9rem;
  white-space: nowrap;
}

.main-nav a:hover,
.footer-links a:hover {
  color: var(--cyan);
}

.main-nav a {
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.mobile-menu-social {
  display: none;
}

.mobile-menu-legal,
.mobile-menu-copy {
  display: none;
}

.mobile-menu-brand {
  display: none;
}

.mobile-only-nav {
  display: none;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 4px;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.header-cta,
.button.primary {
  color: var(--on-cyan);
  background: var(--cyan);
  box-shadow: 0 12px 28px rgba(13, 63, 60, 0.18);
}

.button.secondary {
  color: var(--cyan);
  border: 1px solid var(--line);
  background: var(--card);
}

.header-cta:hover,
.button.primary:hover {
  background: var(--cyan-dark);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(6, 43, 42, 0.22);
}

.button.secondary:hover {
  border-color: var(--cyan);
  transform: translateY(-2px);
  box-shadow: var(--card-shadow);
}

.section {
  padding: clamp(64px, 7vw, 104px) clamp(20px, 5vw, 72px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.82fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: center;
  min-height: calc(92vh - 76px);
  background: var(--hero-bg);
  overflow: hidden;
}

.hero::before,
.industry-hero::before {
  content: "";
  position: absolute;
  inset: auto clamp(20px, 5vw, 72px) 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(13, 63, 60, 0.18), transparent);
}

.hero-copy {
  max-width: 960px;
}

.eyebrow,
.solution-list article > span,
.case-grid article > span,
.contact-box span {
  display: inline-flex;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  color: var(--cyan-dark);
  font-size: var(--h1-size);
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  color: var(--cyan-dark);
  font-size: var(--h2-size);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--cyan-dark);
  font-size: var(--card-title-size);
  line-height: 1.25;
}

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

.hero-text {
  max-width: 740px;
  margin-bottom: 0;
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-points {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cyan-dark);
  font-weight: 800;
  line-height: 1.35;
}

.hero-points li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: var(--white);
  background: var(--cyan);
  font-size: 0.8rem;
}

.hero-image {
  position: relative;
  margin: 0;
}

.hero-image img {
  width: 100%;
  height: min(500px, 58vh);
  object-fit: contain;
  filter: drop-shadow(0 28px 34px rgba(6, 43, 42, 0.14));
}

.hero-summary {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
  box-shadow: var(--shadow);
}

.hero-summary div {
  padding: 24px;
  background: var(--card);
}

.hero-summary span {
  display: block;
  margin-bottom: 10px;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-summary strong {
  display: block;
  margin-bottom: 6px;
  color: var(--cyan-dark);
  font-size: 1.55rem;
  line-height: 1.1;
}

.hero-summary p {
  margin-bottom: 0;
}

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

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 78px);
}

.text-grid,
.industry-grid,
.case-grid,
.stats-grid,
.pricing-grid,
.tools-grid,
.usecase-grid,
.trust-grid {
  display: grid;
  gap: 18px;
}

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

.text-grid article,
.industry-grid article,
.industry-grid a,
.case-grid article,
.pricing-grid article,
.stats-grid article,
.tools-grid article,
.usecase-grid article,
.trust-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92));
  box-shadow: var(--card-shadow);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.industry-grid article:hover,
.industry-grid a:hover,
.case-grid article:hover,
.pricing-grid article:hover,
.tools-grid article:hover,
.solution-list article:hover,
.usecase-grid article:hover,
.trust-grid article:hover {
  border-color: rgba(13, 63, 60, 0.32);
  box-shadow: var(--shadow-strong);
  transform: translateY(-2px);
}

.text-grid article {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  column-gap: 14px;
}

.text-grid article::before,
.industry-grid a::before,
.case-grid article::before,
.pricing-grid article::before,
.tools-grid article::before,
.usecase-grid article::before,
.trust-grid article::before,
.decision-grid article::before {
  content: "";
  display: block;
  width: 46px;
  height: 3px;
  margin-bottom: 18px;
  background: rgba(13, 63, 60, 0.28);
}

.text-grid article::before {
  grid-column: 2;
}

.text-grid article h3,
.text-grid article p {
  grid-column: 2;
}

.muted-section,
.faq-section,
.tools-section {
  background: var(--surface);
}

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

.tool-group + .tool-group {
  margin-top: 42px;
}

.tool-group-heading {
  max-width: 760px;
  margin-bottom: 18px;
}

.tool-group-heading span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.tool-group-heading h3 {
  margin-bottom: 0;
  color: var(--cyan-dark);
  font-size: 1.18rem;
}

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

.tools-grid article {
  min-height: 220px;
}

.tool-logo {
  display: flex;
  align-items: center;
  height: 48px;
  margin-bottom: 20px;
}

.tool-logo img {
  display: block;
  width: auto;
  max-width: 152px;
  max-height: 42px;
  object-fit: contain;
}

.tool-logo-text strong {
  color: var(--cyan-dark);
  font-size: 1.55rem;
  line-height: 1;
}

.tools-grid span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.data-location {
  margin-top: 16px;
  margin-bottom: 0;
  padding: 16px 18px;
  color: var(--muted);
  border-left: 4px solid var(--cyan);
  background: var(--cyan-soft);
  font-size: 0.9rem;
  line-height: 1.5;
}

.data-location strong {
  color: var(--cyan-dark);
}

.brand-disclaimer {
  max-width: 860px;
  margin: 22px 0 0;
  padding: 16px 18px;
  color: var(--muted);
  border-left: 4px solid var(--cyan);
  background: var(--cyan-soft);
  font-size: 0.9rem;
  line-height: 1.5;
}

.solution-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  border-top: 0;
}

.solution-list article {
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 18px;
  min-height: 285px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--card);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.solution-list article > span {
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0;
  color: var(--cyan-dark);
  border: 0;
  background: transparent;
  font-size: var(--number-size);
  font-weight: 900;
}

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

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

.industry-grid article,
.industry-grid a {
  display: grid;
  align-content: start;
  min-height: 178px;
}

.industry-grid a > strong {
  display: inline-flex;
  margin-top: 12px;
  color: var(--cyan);
  font-size: 0.9rem;
}

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

.usecase-grid article {
  min-height: 220px;
}

.usecase-grid span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--cyan-dark);
  font-size: var(--number-size);
  font-weight: 900;
  line-height: 1;
}

.usecase-grid p,
.trust-grid p {
  margin-bottom: 0;
}

.industry-icon,
.case-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  color: var(--cyan-dark);
  -webkit-text-fill-color: var(--cyan-dark);
  border: 0;
  background: transparent;
  font-size: 2rem;
  font-weight: 800;
}

.industry-icon svg,
.case-icon svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: var(--cyan-dark);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.industry-icon svg.filled-industry-icon {
  fill: var(--cyan-dark);
  stroke: none;
}

.case-icon {
  font-size: 2.15rem;
}

.case-grid article > .case-number {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  color: var(--cyan-dark);
  font-size: var(--number-size);
  font-weight: 900;
  line-height: 1;
  text-transform: none;
}

.case-grid,
.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.case-grid article {
  display: grid;
  grid-template-rows: auto auto auto minmax(86px, 1fr) auto;
  min-height: 390px;
  height: 100%;
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.before-after div {
  position: relative;
  display: grid;
  gap: 5px;
  min-height: 96px;
  height: 96px;
  padding: 14px 14px 14px 42px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.before-after div::before {
  position: absolute;
  top: 16px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
}

.before-after .before-state::before {
  content: "−";
  background: var(--muted);
}

.before-after .after-state {
  border-color: rgba(13, 63, 60, 0.28);
  background: var(--cyan-soft);
}

.before-after .after-state::before {
  content: "✓";
  background: var(--cyan);
}

.before-after span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.before-after strong {
  color: var(--cyan-dark);
  font-size: 0.98rem;
  line-height: 1.25;
}

.pilot-card {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(260px, 0.8fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
  box-shadow: var(--shadow);
}

.pilot-card > div,
.pilot-card > aside {
  padding: 26px;
  background: var(--card);
}

.pilot-card span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pilot-card p {
  margin-bottom: 0;
}

.pilot-card aside {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
  background: var(--cyan-dark);
}

.pilot-card aside strong {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
  font-size: var(--number-size);
  line-height: 1.08;
}

.pilot-card aside p {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.74);
}

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

.decision-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--card);
}

.decision-grid ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.decision-grid li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

.decision-grid li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 900;
}

.decision-grid article:nth-child(2) li::before {
  content: "−";
  color: var(--muted);
}

.decision-grid p {
  margin-bottom: 0;
}

.process-section {
  color: var(--white);
  background: radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.08), transparent 26%), var(--cyan-dark);
}

.process-section .eyebrow,
.process-section h2,
.process-section h3 {
  color: var(--white);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: transparent;
}

.process-list li {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 270px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.045));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
}

.process-list li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 26px;
  right: 26px;
  height: 3px;
  background: rgba(255, 255, 255, 0.42);
}

.process-list span {
  display: inline-flex;
  align-items: center;
  width: auto;
  height: auto;
  margin-bottom: 44px;
  color: var(--white);
  background: transparent;
  font-size: var(--number-size);
  font-weight: 900;
  line-height: 1;
}

.process-list h3 {
  margin-bottom: 12px;
  font-size: 1.12rem;
}

.process-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.trust-section {
  background: var(--page);
}

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

.stats-grid article {
  background: var(--surface);
}

.trust-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.trust-grid article {
  background: var(--card);
}

.stats-grid strong,
.pricing-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--cyan-dark);
  font-size: var(--number-size);
  line-height: 1.1;
}

.stats-grid p {
  margin-bottom: 0;
}

.note {
  margin-top: 22px;
  padding: 24px;
  color: var(--muted);
  border-left: 4px solid var(--cyan);
  background: var(--cyan-soft);
}

.note strong {
  color: var(--cyan-dark);
}

.proof-note {
  background: var(--surface);
}

.startup-safety {
  display: grid;
  gap: 22px;
  margin-top: 26px;
  padding: clamp(24px, 4vw, 38px);
  color: var(--white);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.12), transparent 28%),
    linear-gradient(135deg, var(--cyan-dark), var(--cyan));
  box-shadow: var(--shadow-strong);
}

.startup-safety .eyebrow,
.startup-safety h3,
.startup-safety h4 {
  color: var(--white);
}

.startup-safety h3 {
  max-width: 680px;
  margin-bottom: 0;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

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

.startup-safety-grid article {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.startup-safety-grid span {
  display: block;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--number-size);
  font-weight: 900;
  line-height: 1;
}

.startup-safety-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

.about-section {
  background: var(--surface);
}

.about-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.56fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
}

.about-copy {
  max-width: 760px;
}

.about-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
}

.about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.about-points span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  color: var(--cyan-dark);
  border: 1px solid rgba(13, 63, 60, 0.18);
  background: var(--white);
  font-size: 0.88rem;
  font-weight: 900;
}

.about-image {
  margin: 0;
}

.about-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow-strong);
}

.about-image figcaption {
  display: grid;
  gap: 2px;
  margin-top: 14px;
  color: var(--muted);
}

.about-image figcaption strong {
  color: var(--cyan-dark);
}

.pricing-grid article {
  display: flex;
  flex-direction: column;
  min-height: 330px;
}

.pricing-grid article.featured {
  border-color: var(--cyan);
  box-shadow: var(--shadow);
}

.pricing-grid .button {
  margin-top: auto;
}

.price-features {
  display: grid;
  gap: 8px;
  margin: 18px 0 24px;
  padding: 0;
  list-style: none;
}

.price-features li {
  display: flex;
  gap: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.35;
}

.price-features li::before {
  content: "✓";
  color: var(--cyan);
  font-weight: 900;
}

.pricing-note {
  max-width: 900px;
  margin: 22px 0 0;
  padding: 16px 18px;
  color: var(--muted);
  border-left: 4px solid var(--cyan);
  background: var(--card);
  font-size: 0.92rem;
  line-height: 1.5;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  background: var(--card);
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--cyan-dark);
  font-weight: 800;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: center;
  background: var(--cyan-soft);
}

.contact-intro {
  max-width: 900px;
}

.contact-content {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.78fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}

.contact-image {
  margin: 0;
}

.contact-image img {
  width: 100%;
  max-height: 430px;
  object-fit: contain;
}

.contact-box {
  padding: 28px;
  color: var(--white);
  background: var(--cyan-dark);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
}

.step-form {
  align-content: start;
}

.form-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  grid-column: 1 / -1;
  margin-bottom: 4px;
}

.form-progress span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  color: var(--muted);
  border: 1px solid var(--line);
  background: var(--surface);
  font-size: 0.86rem;
  font-weight: 900;
}

.form-progress span.active {
  color: var(--white);
  border-color: var(--cyan);
  background: var(--cyan);
}

.form-step {
  display: none;
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  border: 0;
}

.form-step.active {
  display: grid;
}

.form-step legend {
  grid-column: 1 / -1;
  margin-bottom: 4px;
  color: var(--cyan-dark);
  font-size: 1.25rem;
  font-weight: 900;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  grid-column: 1 / -1;
}

.choice-grid label {
  cursor: pointer;
}

.choice-grid input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-grid span {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 14px;
  color: var(--cyan-dark);
  border: 1px solid var(--line);
  background: var(--surface);
  font-weight: 800;
}

.choice-grid input:checked + span {
  border-color: var(--cyan);
  background: var(--cyan-soft);
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  grid-column: 1 / -1;
}

.form-row {
  display: grid;
  gap: 7px;
  grid-column: 1 / -1;
}

.form-row.half {
  grid-column: span 1;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-row label {
  color: var(--cyan-dark);
  font-size: 0.86rem;
  font-weight: 800;
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  color: var(--text);
  border: 1px solid var(--line);
  background: var(--surface);
  font: inherit;
}

.form-row textarea {
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: 2px solid rgba(13, 63, 60, 0.16);
  border-color: var(--cyan);
}

.consent-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.consent-row input {
  margin-top: 4px;
  accent-color: var(--cyan);
}

.contact-form .button {
  grid-column: 1 / -1;
}

.contact-box span {
  color: var(--white);
  opacity: 0.76;
}

.contact-box a {
  display: block;
  margin-bottom: 14px;
  font-size: 1.35rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

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

.site-footer {
  padding: 48px clamp(20px, 5vw, 72px) 24px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--cyan-dark);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.05fr) minmax(0, 3fr);
  justify-content: stretch;
  justify-items: stretch;
  align-items: start;
  gap: clamp(34px, 5vw, 78px);
  padding-bottom: 34px;
  text-align: left;
}

.footer-brand {
  display: grid;
  justify-items: start;
  max-width: 460px;
  text-align: left;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 340px);
  margin-bottom: 18px;
  padding: 0;
  background: transparent;
}

.footer-logo img {
  width: 340px;
  filter: none;
}

.footer-brand p {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-navs {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  justify-items: start;
  align-items: start;
  gap: clamp(22px, 3vw, 42px);
  width: 100%;
}

.footer-column {
  display: grid;
  justify-items: start;
  text-align: left;
}

.footer-column h3 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 0.95rem;
  text-transform: uppercase;
}

.footer-links,
.social-links,
.contact-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
}

.social-links,
.contact-links {
  display: grid;
  justify-items: start;
}

.footer-menu {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: 560px;
  justify-items: start;
}

.footer-menu a,
.footer-links a {
  color: rgba(255, 255, 255, 0.78);
}

.footer-menu a:hover,
.footer-links a:hover {
  color: var(--white);
}

.social-links a,
.contact-links a,
.address-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  min-height: auto;
  padding: 0;
  color: rgba(255, 255, 255, 0.78);
  border: 0;
  background: transparent;
  font-weight: 400;
}

.social-links a:hover,
.contact-links a:hover {
  color: rgba(255, 255, 255, 0.72);
}

.social-links svg,
.contact-links svg,
.address-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: 0 0 auto;
}

.address-link {
  align-items: flex-start;
  line-height: 1.45;
}

.whatsapp-link {
  margin-top: 4px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  text-align: left;
}

.copyright {
  margin: 0;
  color: var(--white);
  font-size: 0.9rem;
}

.legal-page {
  background: var(--surface);
}

.industry-page {
  background: var(--page);
}

.industry-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.9fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: center;
  min-height: 58vh;
  background: var(--hero-bg);
  overflow: hidden;
}

.industry-hero p:not(.eyebrow) {
  max-width: 760px;
  font-size: 1.12rem;
}

.industry-hero .button {
  margin-top: 14px;
}

.industry-hero-image {
  margin: 0;
}

.industry-hero-image img {
  width: 100%;
  max-height: 480px;
  object-fit: contain;
  filter: drop-shadow(0 28px 34px rgba(6, 43, 42, 0.14));
}

.impact-section {
  color: var(--white);
  background: radial-gradient(circle at 88% 22%, rgba(255, 255, 255, 0.08), transparent 26%), var(--cyan-dark);
}

.impact-section .eyebrow,
.impact-section h2 {
  color: var(--white);
}

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

.impact-grid article {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 270px;
  padding: 26px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.045));
  box-shadow: none;
  transform: none;
  transition: border-color 180ms ease, background 180ms ease;
  overflow: hidden;
}

.impact-grid article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 26px;
  right: 26px;
  height: 3px;
  background: rgba(255, 255, 255, 0.42);
  pointer-events: none;
}

.impact-grid article::after {
  content: none;
}

.impact-grid article:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.09);
}

.impact-grid strong {
  position: relative;
  display: block;
  margin-bottom: 44px;
  color: var(--white);
  font-size: var(--number-size);
  font-weight: 900;
  line-height: 1;
}

.impact-grid span {
  position: relative;
  display: block;
  margin-bottom: 12px;
  color: var(--white);
  font-size: 1.12rem;
  font-weight: 900;
  line-height: 1.25;
  text-transform: none;
}

.impact-grid p {
  position: relative;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.impact-context {
  max-width: 920px;
  margin: 22px 0 0;
  padding: 16px 18px;
  color: rgba(255, 255, 255, 0.74);
  border-left: 4px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.92rem;
}

.industry-cta {
  position: relative;
  color: var(--white);
  background: radial-gradient(circle at 82% 16%, rgba(255, 255, 255, 0.11), transparent 28%), var(--cyan-dark);
  overflow: hidden;
}

.industry-cta .eyebrow,
.industry-cta h2 {
  color: var(--white);
}

.industry-cta .button {
  margin-top: 10px;
}

.legal-main {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(64px, 8vw, 104px) 20px;
}

.legal-card {
  padding: clamp(30px, 5vw, 64px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
  box-shadow: var(--card-shadow);
}

.legal-card h1 {
  margin-bottom: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  color: var(--cyan-dark);
  font-size: var(--h1-size);
  line-height: 1.08;
}

.legal-card h2 {
  margin-top: clamp(34px, 5vw, 52px);
  margin-bottom: 12px;
  color: var(--cyan-dark);
  font-size: clamp(1.18rem, 2vw, 1.42rem);
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.75;
}

.legal-card p {
  margin-top: 0;
  margin-bottom: 18px;
}

.legal-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  padding-left: 22px;
}

.legal-card a {
  color: var(--cyan-dark);
  font-weight: 800;
}

.legal-card .plain-contact a {
  color: var(--muted);
  font-weight: 400;
}

.legal-card a:hover {
  color: var(--cyan);
}

.back-link {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--cyan);
  font-weight: 800;
}

.cookie-banner {
  position: fixed;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  max-width: 980px;
  margin: 0 auto;
  padding: 18px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-left: 4px solid var(--cyan);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner strong {
  display: block;
  margin-bottom: 4px;
  color: var(--cyan-dark);
}

.cookie-banner p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

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

.cookie-actions a {
  color: var(--cyan-dark);
  font-size: 0.92rem;
}

.cookie-actions button {
  min-height: 42px;
  padding: 10px 16px;
  color: var(--white);
  border: 0;
  border-radius: 4px;
  background: var(--cyan);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.cookie-actions button:hover {
  background: var(--cyan-dark);
}

.overview-page {
  min-height: 100vh;
  background: var(--surface);
}

.overview-main {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(34px, 6vw, 72px) 20px;
}

.overview-hero {
  max-width: 780px;
  margin-bottom: 34px;
}

.overview-hero img {
  width: min(260px, 72vw);
  margin-bottom: 34px;
}

.overview-hero h1 {
  max-width: 760px;
  font-size: var(--h1-size);
}

.overview-hero p:last-child {
  max-width: 680px;
  font-size: 1.08rem;
}

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

.overview-grid a {
  display: grid;
  align-content: start;
  min-height: 210px;
  padding: 24px;
  color: var(--text);
  border: 1px solid var(--line);
  background: var(--card);
}

.overview-grid a:hover {
  border-color: var(--cyan);
  box-shadow: var(--shadow);
}

.overview-grid span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.overview-grid strong {
  margin-bottom: 12px;
  color: var(--cyan-dark);
  font-size: 1.35rem;
  line-height: 1.2;
}

.overview-grid p {
  margin-bottom: 0;
}

@media (max-width: 1120px) {
  .solution-list,
  .industry-grid,
  .case-grid,
  .pricing-grid,
  .stats-grid,
  .tools-grid,
  .usecase-grid,
  .trust-grid,
  .startup-safety-grid,
  .decision-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .footer-main {
    grid-template-columns: minmax(0, 760px);
    justify-content: center;
    justify-items: center;
    text-align: center;
  }

  .footer-navs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-column: auto;
    justify-items: center;
    gap: 30px;
  }

  .footer-brand,
  .footer-column {
    justify-items: center;
    text-align: center;
  }

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

@media (max-width: 880px) {
  :where(section[id], #kontaktformular) {
    scroll-margin-top: 96px;
  }

  .site-header {
    position: relative;
    gap: 12px;
    min-height: 72px;
  }

  .menu-toggle {
    position: relative;
    z-index: 42;
    display: inline-flex;
    margin-left: auto;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 41;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100vw;
    height: 100vh;
    margin-left: 0;
    padding: 34px 28px 28px;
    color: var(--cyan-dark);
    background: var(--white);
    border-left: 0;
    box-shadow: none;
    transform: translateX(100%);
    transition: transform 220ms ease;
    overflow-y: auto;
    text-align: center;
  }

  .main-nav::before {
    display: none;
  }

  .mobile-menu-brand {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 6px 0 28px;
  }

  .mobile-menu-brand img {
    width: 82px;
    height: 82px;
    object-fit: contain;
  }

  .nav-open .main-nav {
    transform: translateX(0) !important;
  }

  .main-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 0;
    color: var(--cyan-dark);
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
    font-weight: 800;
    width: 100%;
  }

  .main-nav .mobile-only-nav {
    display: flex;
  }

  .main-nav a::after {
    display: none;
  }

  .mobile-menu-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex: 0 0 auto;
    min-height: 72px;
    margin-top: 12px;
    padding: 0;
    border-top: 0;
    border-bottom: 0;
  }

  .mobile-menu-social span {
    display: none;
  }

  .mobile-menu-social div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    min-height: 100%;
  }

  .mobile-menu-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-height: 44px;
    padding: 0;
    box-sizing: border-box;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--cyan-dark);
    background: var(--white);
  }

  .mobile-menu-social svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
  }

  .mobile-menu-legal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
    gap: 10px 14px;
    width: 100%;
    min-height: 64px;
    margin-top: 0;
    padding: 18px 0;
    border-top: 1px solid var(--line);
  }

  .mobile-menu-legal a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-height: 28px;
    padding: 0;
    border-bottom: 0;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 800;
  }

  .mobile-menu-copy {
    display: block;
    width: 100%;
    margin: 8px 0 0;
    padding-top: 22px;
    color: var(--muted);
    border-top: 1px solid var(--line);
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
  }

  .header-cta {
    margin-left: 0;
  }

  .hero,
  .split-section,
  .about-content,
  .contact-section,
  .contact-content,
  .industry-hero {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

  .hero-image img {
    max-height: 380px;
  }

  .hero-image {
    order: -1;
  }

  .about-image {
    order: -1;
    max-width: 520px;
    margin: 0 auto;
  }

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

@media (max-width: 620px) {
  :where(section[id], #kontaktformular) {
    scroll-margin-top: 92px;
  }

  .section {
    padding: 58px 18px;
  }

  .site-header {
    flex-wrap: wrap;
    padding: 12px 16px;
  }

  .brand img {
    width: 225px;
  }

  .header-cta {
    order: 3;
  }

  .header-cta,
  .hero-actions,
  .button {
    width: 100%;
  }

  h2 {
    font-size: 1.62rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-image {
    order: -1;
  }

  .hero-image img {
    max-height: 260px;
    filter: drop-shadow(0 18px 22px rgba(6, 43, 42, 0.12));
  }

  .industry-hero-image {
    order: -1;
  }

  .industry-hero-image img {
    max-height: 260px;
    filter: drop-shadow(0 18px 22px rgba(6, 43, 42, 0.12));
  }

  .text-grid article,
  .industry-grid article,
  .industry-grid a,
  .case-grid article,
  .pricing-grid article,
  .stats-grid article,
  .tools-grid article,
  .usecase-grid article,
  .trust-grid article {
    box-shadow: 0 10px 28px rgba(6, 43, 42, 0.05);
  }

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

  .legal-main {
    padding: 42px 16px;
  }

  .legal-card {
    padding: 26px 20px;
  }

  .legal-card h1 {
    padding-bottom: 18px;
  }

  .solution-list,
  .industry-grid,
  .case-grid,
  .pricing-grid,
  .stats-grid,
  .tools-grid,
  .usecase-grid,
  .trust-grid,
  .startup-safety-grid,
  .decision-grid,
  .pilot-card,
  .process-list {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
    justify-content: center;
    justify-items: center;
    text-align: center;
  }

  .footer-navs {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 28px;
  }

  .footer-brand,
  .footer-column,
  .footer-menu,
  .social-links,
  .contact-links {
    justify-items: center;
    text-align: center;
  }

  .social-links a,
  .contact-links a,
  .address-link {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .footer-bottom .footer-links {
    order: 1;
  }

  .footer-bottom .copyright {
    order: 2;
  }

  .footer-links {
    justify-content: center;
    gap: 12px 16px;
  }

  .contact-form,
  .form-row.half,
  .form-step,
  .choice-grid {
    grid-template-columns: 1fr;
    grid-column: 1 / -1;
  }

  .form-actions {
    flex-direction: column;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .cookie-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .cookie-actions button {
    width: 100%;
  }

  .overview-main {
    padding: 28px 16px;
  }

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

  .overview-grid a {
    min-height: auto;
  }

  .impact-grid article {
    min-height: 220px;
    transform: none;
  }

  .impact-grid article:hover {
    transform: translateY(-3px);
  }
}









