﻿:root {
  --brand-blue: #0a437f;
  --brand-blue-dark: #072f5c;
  --brand-green: #73bf45;
  --ink: #0c1728;
  --muted: #46586f;
  --paper: #dfeaf2;
  --paper-warm: #e7efe0;
  --mist: #d3e1ec;
  --white: #ffffff;
  --line: #c4d0dc;
  --shadow: 0 10px 24px rgba(12, 23, 40, 0.12);
  --radius-lg: 8px;
  --radius-md: 8px;
  --radius-sm: 6px;
  --max: 1160px;
}

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

html {
  scroll-behavior: smooth;
}

.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.34s ease,
    transform 0.34s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

body {
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #d2dee7;
  line-height: 1.55;
}

.container {
  width: min(var(--max), 94vw);
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(226, 235, 242, 0.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 10px rgba(20, 35, 58, 0.05);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 1rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: inherit;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: var(--radius-md);
  background: #fff;
  padding: 3px;
}

.brand strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.02rem;
  line-height: 1.15;
}

.brand span {
  display: block;
  font-size: 0.76rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.08rem;
}

.nav-links {
  display: flex;
  gap: 1.2rem;
  list-style: none;
  font-weight: 600;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.95rem;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a.active {
  color: var(--brand-blue);
  border-bottom-color: var(--brand-green);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(8, 56, 111, 0.2);
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--ink);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: #143a66;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

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

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

h1,
h2,
h3 {
  font-family: "Sora", sans-serif;
  line-height: 1.15;
  color: #081a33;
}

.btn {
  border: 0;
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.45rem;
  border-radius: var(--radius-md);
  padding: 0.8rem 1.25rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--brand-blue);
  color: var(--white);
  box-shadow: 0 8px 16px rgba(11, 77, 155, 0.18);
}

.btn-secondary {
  background: var(--white);
  color: var(--brand-blue);
  border: 1px solid rgba(11, 77, 155, 0.25);
}

.hero {
  padding: 4.2rem 0 3.4rem;
  background: #dbe5ec;
  border-bottom: 1px solid var(--line);
}

.home .hero {
  position: relative;
  min-height: calc(88vh - 78px);
  min-height: calc(88svh - 78px);
  background:
    radial-gradient(740px 440px at 27% 44%, rgba(2, 8, 18, 0.82) 0%, rgba(2, 8, 18, 0.54) 46%, rgba(2, 8, 18, 0) 74%),
    linear-gradient(90deg, rgba(5, 13, 25, 0.82) 0%, rgba(8, 18, 32, 0.68) 36%, rgba(8, 18, 32, 0.34) 62%, rgba(8, 18, 32, 0.12) 100%),
    linear-gradient(180deg, rgba(5, 13, 25, 0.14), rgba(5, 13, 25, 0.48)),
    url("assets/Hero_bild.webp") right top / cover no-repeat;
  border-bottom: 0;
  overflow: hidden;
}

.home .hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 170px;
  background: linear-gradient(180deg, rgba(210, 222, 231, 0) 0%, rgba(210, 222, 231, 0.46) 52%, #d2dee7 100%);
  pointer-events: none;
}

.hero-wrap,
.two-col {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.home .hero-wrap {
  grid-template-columns: 1fr;
  position: relative;
  z-index: 1;
  min-height: calc(88vh - 78px - 7.6rem);
  min-height: calc(88svh - 78px - 7.6rem);
  align-content: center;
}

.home .hero h1,
.home .hero .lead {
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}

.home .hero-wrap > div {
  width: min(100%, 610px);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.home .hero .pill {
  background: rgba(7, 18, 32, 0.48);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(5px);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(11, 77, 155, 0.08);
  color: var(--brand-blue);
  font-size: 0.84rem;
  padding: 0.44rem 0.78rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  margin: 0.8rem 0 1rem;
  max-width: 18ch;
}

.lead {
  color: var(--muted);
  max-width: 58ch;
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.4rem;
  flex-wrap: wrap;
}

.card,
.panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.panel {
  padding: 1.1rem;
}

.panel-image {
  width: 100%;
  min-height: 220px;
  border-radius: var(--radius-md);
  object-fit: cover;
  display: block;
}

.combined-panel {
  padding: 1.1rem;
  background: linear-gradient(180deg, rgba(248, 251, 253, 0.96), rgba(236, 243, 248, 0.96));
}

.combined-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 1.1rem;
  align-items: center;
}

.panel-image-small {
  min-height: 0;
  height: 280px;
  object-position: center bottom;
}

.comparison-section {
  padding-top: 7rem;
}

.comparison-panel {
  padding: 0;
  overflow: hidden;
}

.comparison-slider {
  position: relative;
  min-height: 360px;
  background: #0e1c30;
}

.comparison-track,
.comparison-slide {
  position: absolute;
  inset: 0;
}

.comparison-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.comparison-slide.is-active {
  opacity: 1;
}

.comparison-control {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: var(--radius-md);
  background: rgba(8, 18, 34, 0.66);
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  cursor: pointer;
  backdrop-filter: blur(6px);
}

.comparison-prev {
  left: 14px;
}

.comparison-next {
  right: 14px;
}

.image-placeholder {
  width: 100%;
  min-height: 220px;
  border: 2px dashed rgba(11, 77, 155, 0.35);
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(11, 77, 155, 0.07), rgba(115, 191, 69, 0.08));
  display: grid;
  place-items: center;
  text-align: center;
  color: #2f5379;
  font-weight: 700;
  padding: 1rem;
}

.color-system-panel {
  padding: 1.4rem;
  background: linear-gradient(135deg, #183b63 0%, #274d76 52%, #224b5b 100%);
  color: #fff;
}

.color-system-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.4rem;
  align-items: center;
}

.color-system-panel h2 {
  color: #fff;
}

.color-system-panel .pill {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 8px 18px rgba(4, 12, 28, 0.18);
}

.color-system-panel .lead {
  color: rgba(255, 255, 255, 0.9);
  max-width: 52ch;
}

.color-system-list {
  margin-top: 1rem;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.96);
}

.color-system-list li {
  line-height: 1.6;
}

.color-wheel-card {
  display: grid;
  place-items: center;
}

.color-wheel {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 50%;
  background: conic-gradient(
    from -45deg,
    #4b95db 0deg 90deg,
    #ef2b16 90deg 180deg,
    #ffc31a 180deg 270deg,
    #66b442 270deg 360deg
  );
  box-shadow: 0 22px 38px rgba(5, 14, 30, 0.28);
}

.color-wheel::before {
  content: "";
  position: absolute;
  inset: 31%;
  border-radius: 50%;
  background: rgba(9, 21, 39, 0.88);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.color-wheel-hole {
  position: absolute;
  inset: 31%;
  display: grid;
  place-items: center;
  text-align: center;
  color: rgba(255, 255, 255, 0.92);
  font-family: "Sora", sans-serif;
  font-size: clamp(0.95rem, 2vw, 1.35rem);
  line-height: 1.15;
  z-index: 2;
  width: auto;
}

.wheel-label {
  position: absolute;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  color: rgba(7, 18, 32, 0.88);
  z-index: 2;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.22);
  white-space: nowrap;
}

.wheel-label-blue {
  top: 16%;
  left: 50%;
  transform: translate(-50%, 0);
}

.wheel-label-green {
  left: 16%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.wheel-label-red {
  right: 10%;
  top: 50%;
  transform: translate(0, -50%);
}

.wheel-label-yellow {
  left: 50%;
  bottom: 12%;
  transform: translate(-50%, 0);
  text-align: center;
}

.distinction-section {
  align-items: stretch;
  gap: 1.4rem;
  padding: 1.3rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(246, 250, 255, 0.92));
  border: 1px solid rgba(8, 56, 111, 0.08);
  box-shadow: 0 18px 38px rgba(8, 56, 111, 0.08);
}

.distinction-panel {
  padding: 0;
  background: linear-gradient(160deg, #071a32 0%, #0a3768 56%, #194c79 100%);
  color: #fff;
  border: 0;
  box-shadow: 0 16px 32px rgba(7, 26, 50, 0.22);
}

.distinction-visual {
  min-height: 100%;
  border-radius: var(--radius-md);
  padding: 1.45rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.11);
}

.distinction-visual .pill {
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
}

.distinction-visual h3 {
  margin-top: 0.95rem;
  color: #fff;
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  line-height: 1.12;
}

.distinction-visual p {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.92);
  max-width: 34ch;
}

.distinction-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.25rem;
}

.distinction-badges span {
  padding: 0.58rem 0.84rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.84rem;
  font-weight: 700;
}

.distinction-copy {
  display: grid;
  align-content: start;
}

.distinction-copy h2 {
  font-size: clamp(1.6rem, 2.7vw, 2.4rem);
}

.distinction-copy .lead {
  max-width: 56ch;
}

.distinction-points {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}

.distinction-point {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.95));
  border: 1px solid rgba(8, 56, 111, 0.08);
  border-left: 4px solid rgba(11, 77, 155, 0.28);
  border-radius: var(--radius-md);
  padding: 1rem 1.05rem;
  box-shadow: 0 10px 24px rgba(8, 56, 111, 0.05);
}

.distinction-point strong {
  display: block;
  color: var(--brand-blue-dark);
  font-family: "Sora", sans-serif;
  font-size: 1.02rem;
}

.distinction-point p {
  margin-top: 0.42rem;
  color: var(--muted);
}

section {
  padding: 3.6rem 0;
}

main > section:nth-of-type(even) {
  background: #d2dee7;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-overview {
  background: #d2dee7;
}

.home .service-overview {
  margin-top: -2.7rem;
  padding-top: 5.4rem;
  position: relative;
  z-index: 2;
}

.section-head {
  margin-bottom: 1.4rem;
}

.service-head {
  text-align: center;
  margin-bottom: 2.3rem;
}

.service-head span {
  display: block;
  color: var(--muted);
  font-size: 0.96rem;
  margin-bottom: 0.35rem;
}

.section-head h2 {
  font-size: clamp(1.45rem, 3vw, 2.2rem);
}

.service-head h2 {
  font-size: 2.55rem;
}

.section-head p {
  margin-top: 0.7rem;
  color: var(--muted);
  max-width: 58ch;
}

.service-head p {
  max-width: none;
  color: #18263b;
  font-size: 1.12rem;
}

.grid-3,
.grid-4 {
  display: grid;
  gap: 1.6rem;
}

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

.service-grid.grid-4,
.service-grid.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.service-grid {
  gap: 1.8rem;
}

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

.service-card,
.info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-grid .service-card {
  position: relative;
  padding: 0;
  overflow: hidden;
  text-align: center;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(20, 35, 58, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.service-grid .service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid var(--brand-green);
  border-radius: inherit;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.96);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.service-grid .service-card:hover,
.service-grid .service-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(11, 77, 155, 0.18);
}

.service-grid .service-card:hover::after,
.service-grid .service-card:focus-visible::after {
  opacity: 1;
  transform: scale(1);
}

.service-grid .service-card:focus-visible {
  outline: 3px solid rgba(11, 77, 155, 0.28);
  outline-offset: 4px;
}

.service-card-media {
  width: 100%;
  height: 190px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-md);
  margin-bottom: 0.85rem;
  border: 1px solid rgba(8, 56, 111, 0.08);
}

.service-grid .service-card-media {
  height: 176px;
  margin: 0;
  border: 0;
  border-radius: 0;
}

.home .service-overview .service-card:nth-child(1) .service-card-media {
  object-position: center 80%;
}

.home .service-overview .service-card:nth-child(2) .service-card-media {
  object-position: center 52%;
}

.home .service-overview .service-card:nth-child(3) .service-card-media {
  object-position: center 22%;
}

.services-list .service-card-media {
  height: 220px;
  object-fit: cover;
  object-position: center 45%;
}

.services-list .service-card:nth-child(1) .service-card-media,
.services-list .service-card:nth-child(8) .service-card-media,
.services-list .service-card:nth-child(10) .service-card-media,
.services-list .service-card:nth-child(11) .service-card-media {
  object-position: center 80%;
}

.services-list .service-card:nth-child(5) .service-card-media,
.services-list .service-card:nth-child(7) .service-card-media,
.services-list .service-card:nth-child(9) .service-card-media,
.services-list .service-card:nth-child(12) .service-card-media {
  object-position: center 22%;
}

.services-list .service-card:nth-child(2) .service-card-media,
.services-list .service-card:nth-child(3) .service-card-media,
.services-list .service-card:nth-child(4) .service-card-media,
.services-list .service-card:nth-child(7) .service-card-media {
  object-position: center 52%;
}

.services-list .service-card:nth-child(6) .service-card-media {
  object-position: center 8%;
}

.service-grid .service-card h3 {
  min-height: 88px;
  display: grid;
  place-items: center;
  padding: 1rem 1.15rem;
  font-size: 1.08rem;
  line-height: 1.35;
  color: #0d1728;
  background: rgba(255, 255, 255, 0.96);
}

.service-grid .service-card p {
  display: none;
}

.service-more {
  display: block;
  position: relative;
  margin-top: 0.1rem;
  padding: 0 1.15rem 1.15rem;
  color: var(--brand-blue);
  font-size: 0.92rem;
  font-weight: 800;
}

.service-more::before {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin: 0 auto 0.62rem;
  border-radius: 999px;
  background: rgba(11, 77, 155, 0.28);
}

.service-card p,
.info-card p {
  color: var(--muted);
  margin-top: 0.35rem;
  font-size: 0.93rem;
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  list-style: none;
  margin-top: 1rem;
  color: #294969;
  font-size: 0.9rem;
  font-weight: 700;
}

.trust-line li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.trust-line li::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--brand-green);
}

.home .hero .trust-line {
  gap: 0.85rem;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.84rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.58);
}

.home .hero .trust-line li {
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
}

.home .hero .trust-line li::before {
  width: 0.36rem;
  height: 0.36rem;
  box-shadow: 0 0 10px rgba(115, 191, 69, 0.6);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
}

.contact-form-section {
  padding: 3rem 0;
}

.contact-office-section {
  padding: 3rem 0;
}

.contact-info,
form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.2rem;
}

.contact-info {
  background: #08386f;
  color: #fff;
  border: 1px solid rgba(8, 56, 111, 0.2);
}

.contact-info h2 {
  color: #fff;
  margin-top: 0.7rem;
}

.contact-intro {
  color: rgba(255, 255, 255, 0.92);
  margin-top: 0.7rem;
}

.contact-methods {
  margin-top: 1rem;
  display: grid;
  gap: 0.6rem;
}

.contact-method {
  text-decoration: none;
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-md);
  padding: 0.72rem 0.8rem;
  display: grid;
  gap: 0.1rem;
}

.contact-method strong {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.92;
}

.contact-method span {
  font-size: 1rem;
  font-weight: 700;
}

.contact-info ul {
  list-style: none;
  margin-top: 1rem;
  display: grid;
  gap: 0.55rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.93);
}

.contact-info li {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.92rem;
}

.contact-info li b {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.86;
}

.contact-note {
  margin-top: 0.9rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 0.72rem;
  font-size: 0.88rem;
}

.contact-office-image {
  display: block;
  width: 100%;
  height: 220px;
  margin-top: 0.9rem;
  border-radius: var(--radius-md);
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
}

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

.fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.87rem;
  font-weight: 700;
  color: #19385b;
}

input,
textarea,
select {
  width: 100%;
  border-radius: var(--radius-md);
  border: 1px solid rgba(8, 56, 111, 0.18);
  padding: 0.72rem 0.75rem;
  font: inherit;
  color: var(--ink);
  background: #fbfdff;
}

textarea {
  min-height: 112px;
  resize: vertical;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.84rem;
  color: var(--muted);
  font-weight: 500;
}

.consent input {
  width: 16px;
  height: 16px;
  margin-top: 0.15rem;
}

footer {
  padding: 1.25rem 0 2.2rem;
  color: #3c5777;
  font-size: 0.87rem;
  background: #d2dee7;
}

footer a {
  color: inherit;
  font-weight: 700;
  text-decoration: none;
}

footer a:hover {
  color: var(--brand-blue);
}

.stack-title {
  margin-top: 0.7rem;
}

.text-stack {
  margin-top: 0.7rem;
}

.section-cta {
  margin-top: 1rem;
}

.legal-hero {
  padding-bottom: 1.8rem;
}

.legal-section {
  padding-top: 0;
  background: #d2dee7;
}

.legal-content {
  max-width: 1040px;
}

.legal-panel {
  padding: 1.6rem;
}

.legal-panel h2 {
  margin-top: 1.4rem;
  font-size: 1.15rem;
}

.legal-panel h2:first-child {
  margin-top: 0;
}

.legal-panel p {
  margin-top: 0.55rem;
  color: var(--muted);
}

.legal-panel a {
  color: var(--brand-blue);
  font-weight: 700;
}

.focus-section {
  background: linear-gradient(180deg, #c8d6e0 0%, #bccbd8 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
}

.focus-card {
  min-height: 260px;
  position: relative;
  display: grid;
  align-content: end;
  gap: 0.45rem;
  overflow: hidden;
  padding: 1.2rem;
  color: #fff;
  text-decoration: none;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.focus-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(6, 21, 40, 0.08) 0%, rgba(6, 21, 40, 0.72) 100%);
}

.focus-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.focus-card:hover img {
  transform: scale(1.03);
}

.focus-card span {
  width: fit-content;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.26);
  padding: 0.36rem 0.62rem;
  font-weight: 800;
  font-size: 0.86rem;
}

.focus-card strong {
  max-width: 46ch;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.25;
}

.focus-card em {
  width: fit-content;
  margin-top: 0.15rem;
  padding: 0.48rem 0.8rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.96);
  color: var(--brand-blue);
  border: 1px solid rgba(255, 255, 255, 0.72);
  font-style: normal;
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: 0 10px 20px rgba(10, 28, 53, 0.16);
}

.focus-card em::after {
  content: " ->";
}

.focus-card:hover em,
.focus-card:focus-visible em {
  background: #ffffff;
  transform: translateY(-1px);
}

.footer-line {
  border-top: 1px solid rgba(8, 56, 111, 0.13);
  padding-top: 1.1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 1280px) {
  .home .hero {
    background-position: 64% top;
  }
}

@media (max-width: 1020px) {
  .hero-wrap,
  .two-col,
  .combined-grid,
  .contact-wrap,
  .color-system-grid {
    grid-template-columns: 1fr;
  }

  .home .hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(14, 28, 48, 0.76) 0%, rgba(14, 28, 48, 0.58) 46%, rgba(14, 28, 48, 0.82) 100%),
      url("assets/Hero_bild.webp") 68% top / cover no-repeat;
    padding-bottom: 5rem;
  }

  .home .hero-wrap {
    min-height: 0;
    align-content: start;
  }

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

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

  .service-grid.grid-4,
  .service-grid.grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-head h2 {
    font-size: 2rem;
  }

  .color-wheel {
    width: min(100%, 360px);
  }

}

@media (max-width: 760px) {
  .nav {
    position: relative;
    min-height: 72px;
    padding: 0.45rem 0;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 30;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(8, 56, 111, 0.12);
    border-radius: var(--radius-md);
    box-shadow: 0 16px 30px rgba(8, 56, 111, 0.16);
    padding: 0.9rem;
    display: grid;
    gap: 0.75rem;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav.nav-open .nav-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links {
    display: grid;
    gap: 0.15rem;
  }

  .nav-links a {
    display: block;
    border-bottom: 0;
    padding: 0.65rem 0.2rem;
    border-radius: 8px;
  }

  .nav-links a.active {
    border-bottom: 0;
    background: rgba(11, 77, 155, 0.08);
    padding-left: 0.5rem;
  }

  .nav-cta {
    width: 100%;
  }

  .hero {
    padding-top: 2.4rem;
  }

  .home .hero {
    background:
      radial-gradient(520px 380px at 30% 50%, rgba(2, 8, 18, 0.68) 0%, rgba(2, 8, 18, 0.34) 55%, rgba(2, 8, 18, 0) 78%),
      linear-gradient(180deg, rgba(14, 28, 48, 0.56) 0%, rgba(14, 28, 48, 0.46) 48%, rgba(14, 28, 48, 0.82) 100%),
      url("assets/Hero_bild.webp") 74% top / cover no-repeat;
    padding-bottom: 8rem;
  }

  .home .hero-wrap {
    min-height: 0;
    padding-bottom: 0.6rem;
  }

  .home .hero .trust-line {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.34rem;
    margin-top: 1rem;
    font-size: 0.86rem;
    line-height: 1.25;
    text-shadow: 0 3px 14px rgba(0, 0, 0, 0.86);
  }

  .home .hero .trust-line li {
    width: fit-content;
  }

  .fields,
  .grid-4,
  .grid-3,
  .service-grid.grid-4,
  .service-grid.grid-3,
  .focus-grid {
    grid-template-columns: 1fr;
  }

  .service-grid {
    gap: 1.2rem;
  }

  .services-list .service-card-media {
    height: 240px;
  }

  .comparison-section {
    padding-top: 4.4rem;
  }

  .comparison-slider {
    min-height: 280px;
  }

  .color-system-panel {
    padding: 1rem;
  }

  .wheel-label {
    font-size: 0.95rem;
  }

  .wheel-label-red {
    right: 3%;
  }

  .wheel-label-green {
    left: 12%;
  }

  .hero-actions .btn,
  form .btn {
    width: 100%;
  }

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

@media (max-width: 560px) {
  .container {
    width: 92vw;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand strong {
    font-size: 0.82rem;
    max-width: 220px;
  }

  .brand span {
    font-size: 0.7rem;
  }

  .nav-links a {
    font-size: 0.9rem;
  }

  h1 {
    max-width: 14ch;
  }

  .lead {
    font-size: 0.98rem;
  }

  .service-head h2 {
    font-size: 1.85rem;
  }

  .service-head p {
    font-size: 1rem;
  }

  section {
    padding: 2.8rem 0;
  }
}

