:root {
  --navy: #0f3b46;
  --navy-deep: #092a34;
  --green: #2e7d32;
  --cream: #f7f6f2;
  --soft: #eef4f3;
  --text: #18323a;
  --muted: #5f747a;
  --white: #fff;
  --border: #dbe5e3;
  --header-h: 72px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

img { max-width: 100%; height: auto; }
a { color: inherit; }

.container {
  width: min(1080px, calc(100% - 48px));
  margin-inline: auto;
}

.skip-link { position: absolute; left: -9999px; }
.skip-link:focus {
  left: 20px;
  top: 20px;
  background: #fff;
  padding: 10px;
  z-index: 9999;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 24px;
}

.brand img {
  display: block;
  width: 200px;
}

nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.9rem;
  font-weight: 600;
}

nav a { text-decoration: none; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 14px 22px;
  border-radius: 8px;
}

.button:hover { background: var(--navy-deep); }
.button-small { padding: 10px 16px; font-size: 0.86rem; }
.button-light { background: #fff; color: var(--navy); }
.button-light:hover { background: var(--soft); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--green);
  margin: 0 0 14px;
}

h1, h2, h3 {
  line-height: 1.18;
  margin-top: 0;
  color: var(--navy);
}

h1 {
  font-size: clamp(2rem, 4.2vw, 2.9rem);
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

h2 {
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}

h3 { font-size: 1.05rem; margin-bottom: 8px; }

.lead {
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  color: var(--muted);
  margin: 0 0 24px;
}

.lead-small {
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0;
}

.microcopy {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero {
  padding: 40px 0 48px;
  text-align: center;
}

.hero-inner {
  max-width: 760px;
  margin-inline: auto;
}

.hero h1 {
  max-width: 16em;
  margin-inline: auto;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.text-link {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.text-link:hover { color: var(--navy); }

.text-link-light {
  color: #d8e7e4;
}

.text-link-light:hover { color: #fff; }

.cta-reassurance {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.cta-reassurance-light {
  color: #d8e7e4;
  margin: 4px 0 0;
}

.section { padding: 64px 0; }
.section-alt { background: var(--cream); }

.section-heading {
  max-width: 640px;
  margin: 0 auto 32px;
  text-align: center;
}

.problem-grid,
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 24px;
}

.offer-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

.problem, .offer {
  padding: 0;
  background: transparent;
}

.offer {
  border-top: 2px solid var(--navy);
  padding-top: 22px;
}

.problem p, .offer p, .usecase p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.usecase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.usecase {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 26px;
  background: var(--cream);
  text-align: left;
}

.usecase .eyebrow { margin-bottom: 10px; }
.usecase h3 { margin-bottom: 10px; }

.icon-line {
  width: 26px;
  height: 26px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-bottom: 14px;
  display: block;
}

.scenario {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  counter-reset: step;
}

.scenario li {
  margin: 0;
  padding-top: 8px;
  border-top: 2px solid var(--green);
}

.scenario li::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--green);
  margin-bottom: 12px;
}

.scenario strong {
  display: block;
  color: var(--navy);
  margin-bottom: 8px;
}

.scenario span {
  display: block;
  color: var(--muted);
  font-size: 0.94rem;
}

.cta-band {
  padding: 40px 0;
  border-block: 1px solid var(--border);
}

.cta-band-inner,
.cta-inner {
  display: grid;
  grid-template-columns: 1.3fr auto;
  gap: 32px;
  align-items: center;
}

.cta-band h2, .cta h2 { margin-bottom: 10px; }
.cta-band p { margin: 0; color: var(--muted); }

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: start;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 22px;
  counter-reset: methode;
}

.steps li {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 16px;
  color: var(--muted);
  align-items: start;
}

.steps li::before {
  counter-increment: methode;
  content: counter(methode);
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--navy);
}

.steps strong {
  display: block;
  color: var(--text);
  margin-bottom: 4px;
}

.local { max-width: 720px; }
.local p { color: var(--muted); font-size: 1.08rem; }

.local-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}

.local-points li {
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  background: var(--white);
}

.about {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 40px;
  align-items: start;
  max-width: 800px;
}

.about-mark {
  display: grid;
  place-items: center;
  width: 140px;
  height: 140px;
  padding: 22px;
  border-radius: 50%;
  background: #111;
  overflow: hidden;
}

.about-mark img {
  width: 100%;
  height: auto;
}

.about-role {
  font-weight: 600;
  margin: 0 0 8px;
}

.about-stack {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 600;
}

.about p { color: var(--muted); }
.about .about-role,
.about .about-stack { color: var(--navy); }

.faq details {
  border-top: 1px solid var(--border);
  padding: 18px 0;
}

.faq details:last-child { border-bottom: 1px solid var(--border); }
.faq summary { cursor: pointer; font-weight: 700; }
.faq details p { color: var(--muted); max-width: 720px; }

.cta {
  background: var(--navy);
  color: #fff;
  padding: 56px 0;
}

.cta h2, .cta .eyebrow { color: #fff; }
.cta p { color: #d8e7e4; margin: 0; }

.cta-actions {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.cta-phone {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

footer {
  padding: 40px 0;
  background: #072630;
  color: #dce9e7;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 28px;
}

footer p { margin: 6px 0 0; color: #9db8b3; font-size: 0.86rem; }
footer a { color: #fff; text-decoration: none; }

.legal { max-width: 760px; }
.legal h1 {
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  max-width: none;
  margin-bottom: 14px;
}
.legal h2 {
  font-size: 1.45rem;
  letter-spacing: -0.02em;
  margin: 42px 0 14px;
}
.legal p, .legal li { color: var(--muted); }
.legal a { text-decoration: underline; text-underline-offset: 3px; }
.legal .back-link { margin: 0 0 28px; }
.legal .back-link a { font-weight: 700; text-decoration: none; }
.legal strong { color: var(--text); }

@media (max-width: 900px) {
  nav > a:not(.button) { display: none; }
  .problem-grid,
  .offer-grid,
  .usecase-grid,
  .scenario,
  .split,
  .cta-band-inner,
  .cta-inner,
  .about {
    grid-template-columns: 1fr;
  }
  .hero { padding: 32px 0 40px; }
}

@media (max-width: 620px) {
  :root { --header-h: 64px; }
  .container { width: min(100% - 32px, 1080px); }
  .brand img { width: 168px; }
  .button-small { display: none; }
  .section { padding: 48px 0; }
  .footer-grid { grid-template-columns: 1fr; }
}
