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

:root {
  --bg-body: #f5f5f4;
  --bg-surface: #ffffff;
  --bg-soft: #e7e5e4;
  --border-soft: #d4d4d4;
  --accent: #16a34a;
  --accent-soft: rgba(22, 163, 74, 0.08);
  --accent-2: #0ea5e9;
  --text-main: #111827;
  --text-muted: #4b5563;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(245, 245, 244, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(209, 213, 219, 0.9);
}

.header-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem 0.35rem;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.logo-mark {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: radial-gradient(circle at 30% 25%, #22c55e, #16a34a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ecfdf5;
  font-size: 0.85rem;
  font-weight: 700;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.logo-sub {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.header-contact {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  text-align: right;
}

.header-contact a {
  color: var(--text-main);
  font-weight: 500;
}

nav {
  margin-top: 0.45rem;
  padding-top: 0.35rem;
  border-top: 1px solid rgba(209, 213, 219, 0.8);
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.2rem;
  font-size: 0.82rem;
}

nav a {
  padding-bottom: 0.2rem;
  border-bottom: 2px solid transparent;
  color: #111827;
}

nav a:hover {
  border-color: var(--accent);
}

main {
  max-width: 1160px;
  margin: 0 auto 3rem;
  padding: 1.8rem 1.25rem 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 3.1fr) minmax(0, 2.2fr);
  gap: 2rem;
  align-items: center;
  margin-bottom: 2.6rem;
}

.hero-left {
  padding-right: 0.5rem;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.18rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.hero-pill span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}

.hero h1 {
  font-size: 2.1rem;
  margin: 0.9rem 0 0.5rem;
}

.hero p {
  margin-bottom: 0.55rem;
  color: var(--text-muted);
}

.hero-highlight {
  font-weight: 500;
  color: var(--text-main);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 0.8rem;
}

.hero-stat {
  background: var(--bg-surface);
  border-radius: 0.9rem;
  border: 1px solid var(--border-soft);
  padding: 0.65rem 0.75rem;
  font-size: 0.78rem;
}

.hero-stat span {
  display: block;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.hero-right {
  background: var(--bg-surface);
  border-radius: 1.4rem;
  border: 1px solid var(--border-soft);
  padding: 1.1rem 1.3rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr);
  gap: 1.2rem;
}

.hero-illustration {
  border-radius: 1rem;
  background-image: url("/assets/img/hero-linie.jpg");
  background-size: cover;
  background-position: center;
  min-height: 180px;
}

.hero-form h2 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.hero-form p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.7rem;
}

.hero-form form {
  display: grid;
  gap: 0.55rem;
}

.hero-form label {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.hero-form input,
.hero-form select,
.hero-form textarea {
  margin-top: 0.15rem;
  padding: 0.45rem 0.6rem;
  border-radius: 0.55rem;
  border: 1px solid var(--border-soft);
  background: #f9fafb;
  color: var(--text-main);
  font: inherit;
}

.hero-form textarea {
  resize: vertical;
  min-height: 56px;
}

.hero-form button {
  margin-top: 0.3rem;
  justify-self: flex-start;
}

.section {
  margin-bottom: 2.8rem;
}

.section h1 {
  font-size: 1.7rem;
  margin-bottom: 0.7rem;
}

.section h2 {
  font-size: 1.25rem;
  margin: 0.9rem 0 0.55rem;
}

.section h3 {
  font-size: 1.02rem;
  margin: 0.8rem 0 0.4rem;
}

.section p {
  margin-bottom: 0.55rem;
  color: var(--text-muted);
}

.section strong {
  color: var(--text-main);
}

.badge {
  display: inline-flex;
  padding: 0.14rem 0.7rem;
  border-radius: 999px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  background: var(--accent-soft);
  color: #166534;
  margin-bottom: 0.5rem;
}

.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.1rem;
}

.card {
  background: var(--bg-surface);
  border-radius: 1rem;
  border: 1px solid var(--border-soft);
  padding: 0.95rem 1rem;
}

.card h3 {
  margin-bottom: 0.35rem;
}

.card p {
  font-size: 0.88rem;
}

.card-accent {
  border-color: var(--accent);
  box-shadow: inset 0 0 0 1px rgba(22, 163, 74, 0.15);
}

ul, ol {
  margin-left: 1.25rem;
  margin-bottom: 0.75rem;
}

li {
  margin-bottom: 0.25rem;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
  gap: 1.8rem;
}

.content-layout img {
  border-radius: 1.1rem;
  border: 1px solid var(--border-soft);
}

.content-layout aside {
  font-size: 0.82rem;
  color: var(--text-muted);
}

form {
  display: grid;
  gap: 0.7rem;
}

label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

input,
textarea,
select {
  padding: 0.55rem 0.7rem;
  border-radius: 0.6rem;
  border: 1px solid var(--border-soft);
  background: #f9fafb;
  color: var(--text-main);
  font: inherit;
}

textarea {
  resize: vertical;
}

button {
  padding: 0.55rem 1.3rem;
  border-radius: 999px;
  border: none;
  background: #16a34a;
  color: #f9fafb;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.88rem;
}

button:hover {
  background: #15803d;
}

footer {
  border-top: 1px solid var(--border-soft);
  background: #e7e5e4;
  padding: 1.5rem 1.25rem;
  margin-top: 2.5rem;
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-inner a {
  color: var(--accent);
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  background: #111827;
  color: #e5e7eb;
  padding: 0.9rem 1rem;
  font-size: 0.8rem;
}

.cookie-banner-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie-banner p {
  margin: 0;
  color: #e5e7eb;
}

.cookie-banner a {
  color: #a5f3fc;
  text-decoration: underline;
}

.cookie-banner button {
  border-radius: 999px;
  border: none;
  padding: 0.45rem 1.2rem;
  font-weight: 600;
  cursor: pointer;
  background: #22c55e;
  color: #022c22;
  white-space: nowrap;
  font-size: 0.8rem;
}

.cookie-banner button:hover {
  background: #16a34a;
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-right {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .header-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .header-contact {
    text-align: left;
  }
}

@media (max-width: 640px) {
  main {
    padding-inline: 1rem;
  }
  nav ul {
    gap: 0.4rem 0.9rem;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .content-layout {
    grid-template-columns: 1fr;
  }
  .cookie-banner-inner {
    align-items: flex-start;
  }
  img {
    max-width: 300px;
    width: auto;
  }
}
