﻿@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #f4f9ff;
  --bg-alt: #ecf5ff;
  --surface: #ffffff;
  --text: #08285f;
  --muted: #536987;
  --primary: #1f7cff;
  --primary-strong: #1769d9;
  --brand-accent: #5890cc;
  --accent: #7fc3ff;
  --stroke: #d4e6fc;
  --shadow-soft: 0 14px 40px rgba(16, 39, 66, 0.1);
  --shadow-strong: 0 18px 38px rgba(23, 89, 179, 0.22);
  --radius-lg: 22px;
  --radius-md: 14px;
  --container: min(1120px, 92vw);
  --header-h: 76px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background:
    radial-gradient(circle at 5% 8%, #dff0ff 0, transparent 30%),
    radial-gradient(circle at 88% 16%, #e6f3ff 0, transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #f2f8ff 60%, #eff6ff 100%);
}

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

a {
  color: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: clamp(3rem, 7vw, 5.2rem) 0;
}

h1,
h2,
h3 {
  margin: 0 0 0.75rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2.05rem, 4.2vw, 3.5rem);
}

h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.35rem);
  text-align: center;
  margin-bottom: 1.8rem;
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.28rem);
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--header-h);
  border-bottom: 1px solid #d4e6fc;
  background: #ffffff;
}

.nav {
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  height: 54px;
  width: auto;
  display: block;
  object-fit: contain;
}

.menu {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 auto;
  justify-self: center;
}

.menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  color: var(--muted);
  padding: 0.58rem 0.92rem;
  border-radius: 999px;
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.menu a.menu-primary-cta,
.nav .nav-gps-fixed.menu-primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(120deg, var(--primary) 0%, var(--primary-strong) 100%);
  border: 1px solid transparent;
  box-shadow:
    0 12px 26px rgba(31, 124, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  font-weight: 700;
  font-size: 0.94rem;
  letter-spacing: 0.003em;
  padding: 0.5rem 1rem;
  border-radius: 12px;
  line-height: 1.1;
  min-height: 44px;
  white-space: nowrap;
  overflow: hidden;
  text-align: center;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.menu-primary-cta__content {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.34rem;
}

.menu-primary-cta__icon {
  width: 22px;
  height: 22px;
  min-width: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
  line-height: 0;
  overflow: hidden;
  transform: none;
}

.menu-primary-cta__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-left: 0;
  line-height: 1.1;
  white-space: nowrap;
  transform: none;
}

.menu-primary-cta__icon svg {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: block;
  transform: scale(1.41);
  transform-origin: center;
}

.menu-primary-cta__icon svg path,
.menu-primary-cta__icon svg circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu a:hover,
.menu a:focus-visible,
.menu a.active {
  color: var(--primary-strong);
  background: #eaf3ff;
  transform: translateY(-1px);
  outline: none;
}

.menu a.menu-primary-cta:hover,
.menu a.menu-primary-cta:focus-visible,
.nav .nav-gps-fixed.menu-primary-cta:hover,
.nav .nav-gps-fixed.menu-primary-cta:focus-visible {
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(120deg, var(--primary) 0%, var(--primary-strong) 100%);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow:
    0 14px 24px rgba(18, 87, 179, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  filter: saturate(1.05);
  outline: none;
}

.menu a.menu-primary-cta.active,
.nav .nav-gps-fixed.menu-primary-cta.active {
  color: #ffffff;
  background: linear-gradient(120deg, var(--primary) 0%, var(--primary-strong) 100%);
  border-color: transparent;
  transform: none;
  box-shadow:
    0 12px 26px rgba(31, 124, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  filter: none;
}

.menu a.menu-primary-cta.active:hover,
.menu a.menu-primary-cta.active:focus-visible,
.nav .nav-gps-fixed.menu-primary-cta.active:hover,
.nav .nav-gps-fixed.menu-primary-cta.active:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 14px 24px rgba(18, 87, 179, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  filter: saturate(1.05);
}

.menu a.menu-primary-cta-mobile {
  display: none;
}

.nav .nav-gps-fixed.menu-primary-cta {
  justify-self: end;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--stroke);
  background: #fff;
  border-radius: 11px;
  width: 46px;
  height: 42px;
  padding: 0;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #31517d;
  border-radius: 99px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

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

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

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

.hero {
  padding: clamp(2.6rem, 6vw, 4.4rem) 0 clamp(2.1rem, 5vw, 3.2rem);
  color: var(--text);
}

.hero .container {
  text-align: center;
  padding: clamp(2.1rem, 5vw, 3.8rem);
  border-radius: var(--radius-lg);
  color: var(--text);
  box-shadow: var(--shadow-strong);
  background: rgba(10, 31, 68, 0.28);
  position: relative;
  overflow: hidden;
}

.hero .container::before,
.hero .container::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero .container::before {
  width: 240px;
  height: 240px;
  top: -120px;
  left: -88px;
  background: rgba(255, 255, 255, 0.18);
}

.hero .container::after {
  width: 190px;
  height: 190px;
  bottom: -105px;
  right: -60px;
  background: rgba(126, 202, 255, 0.35);
}

.home-page .hero,
body:not(.home-page) .hero {
  min-height: clamp(460px, 56vw, 560px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-image:
    radial-gradient(circle at 14% 28%, rgba(90, 155, 216, 0.14), transparent 40%),
    radial-gradient(circle at 86% 30%, rgba(90, 155, 216, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(238, 246, 255, 0.32) 0%, rgba(223, 237, 255, 0.28) 100%),
    url("../image/background-dev.png");
  background-size: auto, auto, auto, cover;
  background-position: center, center, center, center 58%;
  background-repeat: no-repeat;
  color: var(--text);
}

.home-page .hero::before,
body:not(.home-page) .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.1;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Crect x='4' y='4.8' width='16' height='5.8' rx='1.4' stroke='%234b84c2' stroke-width='1.2'/%3E%3Crect x='4' y='13.4' width='16' height='5.8' rx='1.4' stroke='%234b84c2' stroke-width='1.2'/%3E%3Ccircle cx='8' cy='7.7' r='1.1' fill='%234b84c2'/%3E%3Ccircle cx='8' cy='16.3' r='1.1' fill='%234b84c2'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7.5 17.5h9a3.8 3.8 0 1 0-.9-7.5A5.1 5.1 0 0 0 6 11.6a3.4 3.4 0 0 0 1.5 5.9z' stroke='%234b84c2' stroke-width='1.2'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 4.8l6.2 2.7v5.1c0 3.7-2.5 6.4-6.2 7.6-3.7-1.2-6.2-3.9-6.2-7.6V7.5L12 4.8z' stroke='%234b84c2' stroke-width='1.2'/%3E%3Cpath d='M10.2 12.1l1.3 1.3 2.4-2.6' stroke='%234b84c2' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7 16.5h3l3.7 2.7-.8-2.7h2.7A3.5 3.5 0 0 0 19 13V8.5A3.5 3.5 0 0 0 15.5 5h-8A3.5 3.5 0 0 0 4 8.5V13A3.5 3.5 0 0 0 7 16.5z' stroke='%234b84c2' stroke-width='1.2'/%3E%3Ccircle cx='8.5' cy='10.6' r='0.8' fill='%234b84c2'/%3E%3Ccircle cx='11.8' cy='10.6' r='0.8' fill='%234b84c2'/%3E%3Ccircle cx='15.1' cy='10.6' r='0.8' fill='%234b84c2'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M8.1 8.2 4.6 12l3.5 3.8M15.9 8.2l3.5 3.8-3.5 3.8M13.4 6.5l-2.8 11' stroke='%234b84c2' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6.4 10.8a8 8 0 0 1 11.2 0M9.2 13.6a4 4 0 0 1 5.6 0' stroke='%234b84c2' stroke-width='1.2' stroke-linecap='round'/%3E%3Ccircle cx='12' cy='17.2' r='1.5' fill='%234b84c2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size:
    84px 84px,
    84px 84px,
    84px 84px,
    84px 84px,
    84px 84px,
    84px 84px;
  background-position:
    12% 24%,
    86% 22%,
    10% 72%,
    88% 66%,
    21% 84%,
    79% 80%;
}

/* Subtle network connections + nodes (instead of hard grid look) */
.home-page .hero::after,
body:not(.home-page) .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: none;
}

.home-page .hero .container,
body:not(.home-page) .hero .container {
  max-width: 900px;
  margin: 0 auto;
  background: transparent;
  box-shadow: none;
  color: var(--text);
  border-radius: 0;
  position: relative;
  z-index: 1;
}

.home-page .hero .container::before,
.home-page .hero .container::after,
body:not(.home-page) .hero .container::before,
body:not(.home-page) .hero .container::after {
  content: none;
}

.home-page .hero h1,
body:not(.home-page) .hero h1 {
  font-size: clamp(2.125rem, 6vw, 4rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

.home-page .hero h1 {
  font-size: clamp(2.05rem, 6.8vw, 4.8rem);
}

.home-page .hero h1 .hero-title-main {
  display: block;
  white-space: nowrap;
  text-wrap: nowrap;
}

.home-page .hero h1 .hero-title-subline {
  display: block;
  margin-top: 0.2em;
  text-align: center;
  font-size: 0.56em;
  line-height: 1.08;
}

.home-page .hero .hero-sub,
body:not(.home-page) .hero .hero-sub {
  font-size: clamp(1.125rem, 2.2vw, 1.375rem);
  line-height: 1.45;
  margin: 0 auto 1.8rem;
  max-width: 900px;
  color: var(--muted);
}

.home-page .hero .hero-sub .hero-subline-break {
  display: block;
}

.home-page .hero .btn,
body:not(.home-page) .hero .btn {
  background: linear-gradient(120deg, var(--primary) 0%, var(--primary-strong) 100%);
  color: #ffffff;
  border-radius: 12px;
  padding: 0.88rem 1.45rem;
  box-shadow: 0 12px 26px rgba(31, 124, 255, 0.3);
}

/* Keep Telematik hero icons exactly same size/placement as Startseite */
body.iot-page .hero::before {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 4.6c3.4 0 6.1 2.7 6.1 6.1 0 4.7-6.1 8.8-6.1 8.8S5.9 15.4 5.9 10.7c0-3.4 2.7-6.1 6.1-6.1z' stroke='%234b84c2' stroke-width='1.2'/%3E%3Ccircle cx='12' cy='10.7' r='2.1' stroke='%234b84c2' stroke-width='1.2'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Crect x='4' y='7' width='16' height='10' rx='2' stroke='%234b84c2' stroke-width='1.2'/%3E%3Cpath d='M8 17v2m8-2v2M4 11h16' stroke='%234b84c2' stroke-width='1.2' stroke-linecap='round'/%3E%3Ccircle cx='9' cy='11' r='1' fill='%234b84c2'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Crect x='3.5' y='8' width='6' height='8' rx='1.4' stroke='%234b84c2' stroke-width='1.2'/%3E%3Crect x='14.5' y='8' width='6' height='8' rx='1.4' stroke='%234b84c2' stroke-width='1.2'/%3E%3Cpath d='M9.6 12h4.8' stroke='%234b84c2' stroke-width='1.2' stroke-linecap='round'/%3E%3Ccircle cx='12' cy='12' r='1' fill='%234b84c2'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Crect x='7' y='7' width='10' height='10' rx='2' stroke='%234b84c2' stroke-width='1.2'/%3E%3Cpath d='M12 4v3M12 17v3M4 12h3M17 12h3M6.8 6.8l1.8 1.8M15.4 15.4l1.8 1.8M6.8 17.2l1.8-1.8M15.4 8.6l1.8-1.8' stroke='%234b84c2' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cellipse cx='12' cy='7' rx='6.5' ry='2.7' stroke='%234b84c2' stroke-width='1.2'/%3E%3Cpath d='M5.5 7v7.5c0 1.5 2.9 2.7 6.5 2.7s6.5-1.2 6.5-2.7V7' stroke='%234b84c2' stroke-width='1.2'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6.4 10.8a8 8 0 0 1 11.2 0M9.2 13.6a4 4 0 0 1 5.6 0' stroke='%234b84c2' stroke-width='1.2' stroke-linecap='round'/%3E%3Ccircle cx='12' cy='17.2' r='1.5' fill='%234b84c2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  opacity: 0.1;
  background-size:
    84px 84px,
    84px 84px,
    84px 84px,
    84px 84px,
    84px 84px,
    84px 84px;
  background-position:
    12% 24%,
    86% 22%,
    10% 72%,
    88% 66%,
    21% 84%,
    79% 80%;
}

/* Keep Hardware hero icons exactly same size/placement as Startseite */
body.hardware-page .hero::before {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Crect x='4' y='4.8' width='16' height='5.8' rx='1.4' stroke='%234b84c2' stroke-width='1.2'/%3E%3Crect x='4' y='13.4' width='16' height='5.8' rx='1.4' stroke='%234b84c2' stroke-width='1.2'/%3E%3Ccircle cx='8' cy='7.7' r='1.1' fill='%234b84c2'/%3E%3Ccircle cx='8' cy='16.3' r='1.1' fill='%234b84c2'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Crect x='3.5' y='9' width='6' height='6' rx='1.2' stroke='%234b84c2' stroke-width='1.2'/%3E%3Crect x='14.5' y='5' width='6' height='6' rx='1.2' stroke='%234b84c2' stroke-width='1.2'/%3E%3Crect x='14.5' y='13' width='6' height='6' rx='1.2' stroke='%234b84c2' stroke-width='1.2'/%3E%3Cpath d='M9.8 12h4.2M14 8h-2.4m2.4 8h-2.4' stroke='%234b84c2' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 4.8l6.2 2.7v5.1c0 3.7-2.5 6.4-6.2 7.6-3.7-1.2-6.2-3.9-6.2-7.6V7.5L12 4.8z' stroke='%234b84c2' stroke-width='1.2'/%3E%3Cpath d='M10.2 12.1l1.3 1.3 2.4-2.6' stroke='%234b84c2' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cellipse cx='12' cy='7' rx='6.5' ry='2.7' stroke='%234b84c2' stroke-width='1.2'/%3E%3Cpath d='M5.5 7v7.5c0 1.5 2.9 2.7 6.5 2.7s6.5-1.2 6.5-2.7V7' stroke='%234b84c2' stroke-width='1.2'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Crect x='4' y='5.5' width='16' height='10' rx='1.8' stroke='%234b84c2' stroke-width='1.2'/%3E%3Cpath d='M9.5 18.5h5M12 15.5v3' stroke='%234b84c2' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Crect x='7' y='7' width='10' height='10' rx='2' stroke='%234b84c2' stroke-width='1.2'/%3E%3Cpath d='M12 4v3M12 17v3M4 12h3M17 12h3M6.8 6.8l1.8 1.8M15.4 15.4l1.8 1.8M6.8 17.2l1.8-1.8M15.4 8.6l1.8-1.8' stroke='%234b84c2' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  opacity: 0.1;
  background-size:
    84px 84px,
    84px 84px,
    84px 84px,
    84px 84px,
    84px 84px,
    84px 84px;
  background-position:
    12% 24%,
    86% 22%,
    10% 72%,
    88% 66%,
    21% 84%,
    79% 80%;
}

/* Keep Beratung hero icons exactly same size/placement as Startseite */
body.beratung-page .hero::before {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7 16.5h3l3.7 2.7-.8-2.7h2.7A3.5 3.5 0 0 0 19 13V8.5A3.5 3.5 0 0 0 15.5 5h-8A3.5 3.5 0 0 0 4 8.5V13A3.5 3.5 0 0 0 7 16.5z' stroke='%234b84c2' stroke-width='1.2'/%3E%3Ccircle cx='8.5' cy='10.6' r='0.8' fill='%234b84c2'/%3E%3Ccircle cx='11.8' cy='10.6' r='0.8' fill='%234b84c2'/%3E%3Ccircle cx='15.1' cy='10.6' r='0.8' fill='%234b84c2'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Crect x='4' y='4.8' width='16' height='5.8' rx='1.4' stroke='%234b84c2' stroke-width='1.2'/%3E%3Crect x='4' y='13.4' width='16' height='5.8' rx='1.4' stroke='%234b84c2' stroke-width='1.2'/%3E%3Ccircle cx='8' cy='7.7' r='1.1' fill='%234b84c2'/%3E%3Ccircle cx='8' cy='16.3' r='1.1' fill='%234b84c2'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7.5 17.5h9a3.8 3.8 0 1 0-.9-7.5A5.1 5.1 0 0 0 6 11.6a3.4 3.4 0 0 0 1.5 5.9z' stroke='%234b84c2' stroke-width='1.2'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M8.1 8.2 4.6 12l3.5 3.8M15.9 8.2l3.5 3.8-3.5 3.8M13.4 6.5l-2.8 11' stroke='%234b84c2' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 4.8l6.2 2.7v5.1c0 3.7-2.5 6.4-6.2 7.6-3.7-1.2-6.2-3.9-6.2-7.6V7.5L12 4.8z' stroke='%234b84c2' stroke-width='1.2'/%3E%3Cpath d='M10.2 12.1l1.3 1.3 2.4-2.6' stroke='%234b84c2' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Crect x='3.5' y='9' width='6' height='6' rx='1.2' stroke='%234b84c2' stroke-width='1.2'/%3E%3Crect x='14.5' y='5' width='6' height='6' rx='1.2' stroke='%234b84c2' stroke-width='1.2'/%3E%3Crect x='14.5' y='13' width='6' height='6' rx='1.2' stroke='%234b84c2' stroke-width='1.2'/%3E%3Cpath d='M9.8 12h4.2M14 8h-2.4m2.4 8h-2.4' stroke='%234b84c2' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  opacity: 0.1;
  background-size:
    84px 84px,
    84px 84px,
    84px 84px,
    84px 84px,
    84px 84px,
    84px 84px;
  background-position:
    12% 24%,
    86% 22%,
    10% 72%,
    88% 66%,
    21% 84%,
    79% 80%;
}

/* Keep Software hero icons exactly same size/placement as Startseite */
body.software-page .hero::before {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M8.1 8.2 4.6 12l3.5 3.8M15.9 8.2l3.5 3.8-3.5 3.8M13.4 6.5l-2.8 11' stroke='%234b84c2' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Crect x='3.5' y='8' width='6' height='8' rx='1.4' stroke='%234b84c2' stroke-width='1.2'/%3E%3Crect x='14.5' y='8' width='6' height='8' rx='1.4' stroke='%234b84c2' stroke-width='1.2'/%3E%3Cpath d='M9.6 12h4.8' stroke='%234b84c2' stroke-width='1.2' stroke-linecap='round'/%3E%3Ccircle cx='12' cy='12' r='1' fill='%234b84c2'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cellipse cx='12' cy='7' rx='6.5' ry='2.7' stroke='%234b84c2' stroke-width='1.2'/%3E%3Cpath d='M5.5 7v7.5c0 1.5 2.9 2.7 6.5 2.7s6.5-1.2 6.5-2.7V7' stroke='%234b84c2' stroke-width='1.2'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7.5 17.5h9a3.8 3.8 0 1 0-.9-7.5A5.1 5.1 0 0 0 6 11.6a3.4 3.4 0 0 0 1.5 5.9z' stroke='%234b84c2' stroke-width='1.2'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Crect x='4' y='5.5' width='16' height='10' rx='1.8' stroke='%234b84c2' stroke-width='1.2'/%3E%3Cpath d='M9.5 18.5h5M12 15.5v3' stroke='%234b84c2' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 5.2a6.8 6.8 0 1 0 4.9 11.5' stroke='%234b84c2' stroke-width='1.2'/%3E%3Cpath d='M15 5.3h4v4' stroke='%234b84c2' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M19 5.3 15.4 9' stroke='%234b84c2' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  opacity: 0.1;
  background-size:
    84px 84px,
    84px 84px,
    84px 84px,
    84px 84px,
    84px 84px,
    84px 84px;
  background-position:
    12% 24%,
    86% 22%,
    10% 72%,
    88% 66%,
    21% 84%,
    79% 80%;
}

/* Keep Managed hero icons exactly same size/placement as Startseite */
body.managed-page .hero::before {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7.5 17.5h9a3.8 3.8 0 1 0-.9-7.5A5.1 5.1 0 0 0 6 11.6a3.4 3.4 0 0 0 1.5 5.9z' stroke='%234b84c2' stroke-width='1.2'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cellipse cx='12' cy='7' rx='6.5' ry='2.7' stroke='%234b84c2' stroke-width='1.2'/%3E%3Cpath d='M5.5 7v7.5c0 1.5 2.9 2.7 6.5 2.7s6.5-1.2 6.5-2.7V7' stroke='%234b84c2' stroke-width='1.2'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Crect x='4' y='4.8' width='16' height='5.8' rx='1.4' stroke='%234b84c2' stroke-width='1.2'/%3E%3Crect x='4' y='13.4' width='16' height='5.8' rx='1.4' stroke='%234b84c2' stroke-width='1.2'/%3E%3Ccircle cx='8' cy='7.7' r='1.1' fill='%234b84c2'/%3E%3Ccircle cx='8' cy='16.3' r='1.1' fill='%234b84c2'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Crect x='3.5' y='8' width='6' height='8' rx='1.4' stroke='%234b84c2' stroke-width='1.2'/%3E%3Crect x='14.5' y='8' width='6' height='8' rx='1.4' stroke='%234b84c2' stroke-width='1.2'/%3E%3Cpath d='M9.6 12h4.8' stroke='%234b84c2' stroke-width='1.2' stroke-linecap='round'/%3E%3Ccircle cx='12' cy='12' r='1' fill='%234b84c2'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 4.8l6.2 2.7v5.1c0 3.7-2.5 6.4-6.2 7.6-3.7-1.2-6.2-3.9-6.2-7.6V7.5L12 4.8z' stroke='%234b84c2' stroke-width='1.2'/%3E%3Cpath d='M10.2 12.1l1.3 1.3 2.4-2.6' stroke='%234b84c2' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 5.2a6.8 6.8 0 1 0 4.9 11.5' stroke='%234b84c2' stroke-width='1.2'/%3E%3Cpath d='M15 5.3h4v4' stroke='%234b84c2' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M19 5.3 15.4 9' stroke='%234b84c2' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  opacity: 0.1;
  background-size:
    84px 84px,
    84px 84px,
    84px 84px,
    84px 84px,
    84px 84px,
    84px 84px;
  background-position:
    12% 24%,
    86% 22%,
    10% 72%,
    88% 66%,
    21% 84%,
    79% 80%;
}

/* Keep Telefonie hero icons exactly same size/placement as Startseite */
body.telefonie-page .hero::before {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7 16.5h3l3.7 2.7-.8-2.7h2.7A3.5 3.5 0 0 0 19 13V8.5A3.5 3.5 0 0 0 15.5 5h-8A3.5 3.5 0 0 0 4 8.5V13A3.5 3.5 0 0 0 7 16.5z' stroke='%234b84c2' stroke-width='1.2'/%3E%3Ccircle cx='8.5' cy='10.6' r='0.8' fill='%234b84c2'/%3E%3Ccircle cx='11.8' cy='10.6' r='0.8' fill='%234b84c2'/%3E%3Ccircle cx='15.1' cy='10.6' r='0.8' fill='%234b84c2'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Crect x='3.5' y='8' width='6' height='8' rx='1.4' stroke='%234b84c2' stroke-width='1.2'/%3E%3Crect x='14.5' y='8' width='6' height='8' rx='1.4' stroke='%234b84c2' stroke-width='1.2'/%3E%3Cpath d='M9.6 12h4.8' stroke='%234b84c2' stroke-width='1.2' stroke-linecap='round'/%3E%3Ccircle cx='12' cy='12' r='1' fill='%234b84c2'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Crect x='4' y='4.8' width='16' height='5.8' rx='1.4' stroke='%234b84c2' stroke-width='1.2'/%3E%3Crect x='4' y='13.4' width='16' height='5.8' rx='1.4' stroke='%234b84c2' stroke-width='1.2'/%3E%3Ccircle cx='8' cy='7.7' r='1.1' fill='%234b84c2'/%3E%3Ccircle cx='8' cy='16.3' r='1.1' fill='%234b84c2'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7.5 17.5h9a3.8 3.8 0 1 0-.9-7.5A5.1 5.1 0 0 0 6 11.6a3.4 3.4 0 0 0 1.5 5.9z' stroke='%234b84c2' stroke-width='1.2'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Crect x='4' y='5.5' width='16' height='10' rx='1.8' stroke='%234b84c2' stroke-width='1.2'/%3E%3Cpath d='M9.5 18.5h5M12 15.5v3' stroke='%234b84c2' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M8.1 8.2 4.6 12l3.5 3.8M15.9 8.2l3.5 3.8-3.5 3.8M13.4 6.5l-2.8 11' stroke='%234b84c2' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  opacity: 0.1;
  background-size:
    84px 84px,
    84px 84px,
    84px 84px,
    84px 84px,
    84px 84px,
    84px 84px;
  background-position:
    12% 24%,
    86% 22%,
    10% 72%,
    88% 66%,
    21% 84%,
    79% 80%;
}

/* Keep Firewall hero icons exactly same size/placement as Startseite */
body.firewall-page .hero::before {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 4.8l6.2 2.7v5.1c0 3.7-2.5 6.4-6.2 7.6-3.7-1.2-6.2-3.9-6.2-7.6V7.5L12 4.8z' stroke='%234b84c2' stroke-width='1.2'/%3E%3Cpath d='M10.2 12.1l1.3 1.3 2.4-2.6' stroke='%234b84c2' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Crect x='3.5' y='9' width='6' height='6' rx='1.2' stroke='%234b84c2' stroke-width='1.2'/%3E%3Crect x='14.5' y='5' width='6' height='6' rx='1.2' stroke='%234b84c2' stroke-width='1.2'/%3E%3Crect x='14.5' y='13' width='6' height='6' rx='1.2' stroke='%234b84c2' stroke-width='1.2'/%3E%3Cpath d='M9.8 12h4.2M14 8h-2.4m2.4 8h-2.4' stroke='%234b84c2' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 5.2a6.8 6.8 0 1 0 4.9 11.5' stroke='%234b84c2' stroke-width='1.2'/%3E%3Cpath d='M15 5.3h4v4' stroke='%234b84c2' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M19 5.3 15.4 9' stroke='%234b84c2' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6.4 10.8a8 8 0 0 1 11.2 0M9.2 13.6a4 4 0 0 1 5.6 0' stroke='%234b84c2' stroke-width='1.2' stroke-linecap='round'/%3E%3Ccircle cx='12' cy='17.2' r='1.5' fill='%234b84c2'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Crect x='4' y='4.8' width='16' height='5.8' rx='1.4' stroke='%234b84c2' stroke-width='1.2'/%3E%3Crect x='4' y='13.4' width='16' height='5.8' rx='1.4' stroke='%234b84c2' stroke-width='1.2'/%3E%3Ccircle cx='8' cy='7.7' r='1.1' fill='%234b84c2'/%3E%3Ccircle cx='8' cy='16.3' r='1.1' fill='%234b84c2'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7 16.5h3l3.7 2.7-.8-2.7h2.7A3.5 3.5 0 0 0 19 13V8.5A3.5 3.5 0 0 0 15.5 5h-8A3.5 3.5 0 0 0 4 8.5V13A3.5 3.5 0 0 0 7 16.5z' stroke='%234b84c2' stroke-width='1.2'/%3E%3Ccircle cx='8.5' cy='10.6' r='0.8' fill='%234b84c2'/%3E%3Ccircle cx='11.8' cy='10.6' r='0.8' fill='%234b84c2'/%3E%3Ccircle cx='15.1' cy='10.6' r='0.8' fill='%234b84c2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  opacity: 0.1;
  background-size:
    84px 84px,
    84px 84px,
    84px 84px,
    84px 84px,
    84px 84px,
    84px 84px;
  background-position:
    12% 24%,
    86% 22%,
    10% 72%,
    88% 66%,
    21% 84%,
    79% 80%;
}

/* Keep Datenanalyse hero icons exactly same size/placement as Startseite */
body.daten-page .hero::before {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cellipse cx='12' cy='7' rx='6.5' ry='2.7' stroke='%234b84c2' stroke-width='1.2'/%3E%3Cpath d='M5.5 7v7.5c0 1.5 2.9 2.7 6.5 2.7s6.5-1.2 6.5-2.7V7' stroke='%234b84c2' stroke-width='1.2'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7 16.5h3l3.7 2.7-.8-2.7h2.7A3.5 3.5 0 0 0 19 13V8.5A3.5 3.5 0 0 0 15.5 5h-8A3.5 3.5 0 0 0 4 8.5V13A3.5 3.5 0 0 0 7 16.5z' stroke='%234b84c2' stroke-width='1.2'/%3E%3Ccircle cx='8.5' cy='10.6' r='0.8' fill='%234b84c2'/%3E%3Ccircle cx='11.8' cy='10.6' r='0.8' fill='%234b84c2'/%3E%3Ccircle cx='15.1' cy='10.6' r='0.8' fill='%234b84c2'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Crect x='3.5' y='8' width='6' height='8' rx='1.4' stroke='%234b84c2' stroke-width='1.2'/%3E%3Crect x='14.5' y='8' width='6' height='8' rx='1.4' stroke='%234b84c2' stroke-width='1.2'/%3E%3Cpath d='M9.6 12h4.8' stroke='%234b84c2' stroke-width='1.2' stroke-linecap='round'/%3E%3Ccircle cx='12' cy='12' r='1' fill='%234b84c2'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 5.2a6.8 6.8 0 1 0 4.9 11.5' stroke='%234b84c2' stroke-width='1.2'/%3E%3Cpath d='M15 5.3h4v4' stroke='%234b84c2' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M19 5.3 15.4 9' stroke='%234b84c2' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Crect x='4' y='4.8' width='16' height='5.8' rx='1.4' stroke='%234b84c2' stroke-width='1.2'/%3E%3Crect x='4' y='13.4' width='16' height='5.8' rx='1.4' stroke='%234b84c2' stroke-width='1.2'/%3E%3Ccircle cx='8' cy='7.7' r='1.1' fill='%234b84c2'/%3E%3Ccircle cx='8' cy='16.3' r='1.1' fill='%234b84c2'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M8.1 8.2 4.6 12l3.5 3.8M15.9 8.2l3.5 3.8-3.5 3.8M13.4 6.5l-2.8 11' stroke='%234b84c2' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  opacity: 0.1;
  background-size:
    84px 84px,
    84px 84px,
    84px 84px,
    84px 84px,
    84px 84px,
    84px 84px;
  background-position:
    12% 24%,
    86% 22%,
    10% 72%,
    88% 66%,
    21% 84%,
    79% 80%;
}

/* Keep Automatisierung hero icons exactly same size/placement as Startseite */
body.autom-page .hero::before {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 5.2a6.8 6.8 0 1 0 4.9 11.5' stroke='%234b84c2' stroke-width='1.2'/%3E%3Cpath d='M15 5.3h4v4' stroke='%234b84c2' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M19 5.3 15.4 9' stroke='%234b84c2' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M8.1 8.2 4.6 12l3.5 3.8M15.9 8.2l3.5 3.8-3.5 3.8M13.4 6.5l-2.8 11' stroke='%234b84c2' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7.5 17.5h9a3.8 3.8 0 1 0-.9-7.5A5.1 5.1 0 0 0 6 11.6a3.4 3.4 0 0 0 1.5 5.9z' stroke='%234b84c2' stroke-width='1.2'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Crect x='4' y='4.8' width='16' height='5.8' rx='1.4' stroke='%234b84c2' stroke-width='1.2'/%3E%3Crect x='4' y='13.4' width='16' height='5.8' rx='1.4' stroke='%234b84c2' stroke-width='1.2'/%3E%3Ccircle cx='8' cy='7.7' r='1.1' fill='%234b84c2'/%3E%3Ccircle cx='8' cy='16.3' r='1.1' fill='%234b84c2'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Crect x='3.5' y='8' width='6' height='8' rx='1.4' stroke='%234b84c2' stroke-width='1.2'/%3E%3Crect x='14.5' y='8' width='6' height='8' rx='1.4' stroke='%234b84c2' stroke-width='1.2'/%3E%3Cpath d='M9.6 12h4.8' stroke='%234b84c2' stroke-width='1.2' stroke-linecap='round'/%3E%3Ccircle cx='12' cy='12' r='1' fill='%234b84c2'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6.4 10.8a8 8 0 0 1 11.2 0M9.2 13.6a4 4 0 0 1 5.6 0' stroke='%234b84c2' stroke-width='1.2' stroke-linecap='round'/%3E%3Ccircle cx='12' cy='17.2' r='1.5' fill='%234b84c2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  opacity: 0.1;
  background-size:
    84px 84px,
    84px 84px,
    84px 84px,
    84px 84px,
    84px 84px,
    84px 84px;
  background-position:
    12% 24%,
    86% 22%,
    10% 72%,
    88% 66%,
    21% 84%,
    79% 80%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.15rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(120deg, var(--primary) 0%, var(--primary-strong) 100%);
  box-shadow: 0 8px 18px rgba(31, 124, 255, 0.25);
}

#solutions .grid,
#services .grid,
#hardware .grid,
#technology .grid {
  gap: 0.95rem;
}

#solutions .card,
#services .card,
#hardware .card,
#technology .card {
  min-height: 136px;
  padding: 1.05rem 1.05rem;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(16, 39, 66, 0.08);
}

#solutions .card-link,
#services .card-link,
#hardware .card-link,
#technology .card-link {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  height: 100%;
}

.card-link-static {
  cursor: default;
}

.service-content {
  display: grid;
  gap: 0.2rem;
}

.service-content p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #d8e6fa;
  border: 1px solid #c5daf8;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 36px 36px;
  filter: saturate(1.12) contrast(1.05);
}

#solutions .title-link-arrow,
#services .title-link-arrow {
  font-size: 1.08rem;
  font-weight: 700;
  color: #08285f;
  margin-bottom: 0.12rem;
}

#solutions .title-link-arrow span,
#services .title-link-arrow span {
  font-size: 1.12rem;
}

/* Stronger hover color for card titles in service grids */
#solutions .card:hover h3,
#services .card:hover h3,
#hardware .card:hover h3,
#technology .card:hover h3 {
  color: #0d5ed0;
}

#solutions .card:hover .title-link-arrow,
#services .card:hover .title-link-arrow,
#hardware .card:hover .title-link-arrow,
#technology .card:hover .title-link-arrow {
  color: #0d5ed0;
}

.icon-infra {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Crect x='4' y='4.8' width='16' height='5.8' rx='1.4' stroke='%231f7cff' stroke-width='1.8'/%3E%3Crect x='4' y='13.4' width='16' height='5.8' rx='1.4' stroke='%231f7cff' stroke-width='1.8'/%3E%3Ccircle cx='8' cy='7.7' r='1.1' fill='%231f7cff'/%3E%3Ccircle cx='8' cy='16.3' r='1.1' fill='%231f7cff'/%3E%3C/svg%3E");
}

.icon-managed {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7.5 17.5h9a3.8 3.8 0 1 0-.9-7.5A5.1 5.1 0 0 0 6 11.6a3.4 3.4 0 0 0 1.5 5.9z' stroke='%231f7cff' stroke-width='1.8'/%3E%3C/svg%3E");
}

.icon-hardware {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 4.8l6.2 2.7v5.1c0 3.7-2.5 6.4-6.2 7.6-3.7-1.2-6.2-3.9-6.2-7.6V7.5L12 4.8z' stroke='%231f7cff' stroke-width='1.8'/%3E%3Cpath d='M10.2 12.1l1.3 1.3 2.4-2.6' stroke='%231f7cff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.icon-beratung {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7 16.5h3l3.7 2.7-.8-2.7h2.7A3.5 3.5 0 0 0 19 13V8.5A3.5 3.5 0 0 0 15.5 5h-8A3.5 3.5 0 0 0 4 8.5V13A3.5 3.5 0 0 0 7 16.5z' stroke='%231f7cff' stroke-width='1.8'/%3E%3Ccircle cx='8.5' cy='10.6' r='0.8' fill='%231f7cff'/%3E%3Ccircle cx='11.8' cy='10.6' r='0.8' fill='%231f7cff'/%3E%3Ccircle cx='15.1' cy='10.6' r='0.8' fill='%231f7cff'/%3E%3C/svg%3E");
}

.icon-software {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M8.1 8.2 4.6 12l3.5 3.8M15.9 8.2l3.5 3.8-3.5 3.8M13.4 6.5l-2.8 11' stroke='%231f7cff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.icon-telematik {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6.4 10.8a8 8 0 0 1 11.2 0M9.2 13.6a4 4 0 0 1 5.6 0M12 17.8h.01' stroke='%231f7cff' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
}

.icon-gps {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 4.6c3.4 0 6.1 2.7 6.1 6.1 0 4.7-6.1 8.8-6.1 8.8S5.9 15.4 5.9 10.7c0-3.4 2.7-6.1 6.1-6.1z' stroke='%231f7cff' stroke-width='1.8'/%3E%3Ccircle cx='12' cy='10.7' r='2.1' stroke='%231f7cff' stroke-width='1.8'/%3E%3C/svg%3E");
}

.icon-machine {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Crect x='4' y='7' width='16' height='10' rx='2' stroke='%231f7cff' stroke-width='1.8'/%3E%3Cpath d='M8 17v2m8-2v2M4 11h16' stroke='%231f7cff' stroke-width='1.8' stroke-linecap='round'/%3E%3Ccircle cx='9' cy='11' r='1' fill='%231f7cff'/%3E%3C/svg%3E");
}

.icon-m2m {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Crect x='3.5' y='8' width='6' height='8' rx='1.4' stroke='%231f7cff' stroke-width='1.8'/%3E%3Crect x='14.5' y='8' width='6' height='8' rx='1.4' stroke='%231f7cff' stroke-width='1.8'/%3E%3Cpath d='M9.6 12h4.8' stroke='%231f7cff' stroke-width='1.8' stroke-linecap='round'/%3E%3Ccircle cx='12' cy='12' r='1' fill='%231f7cff'/%3E%3C/svg%3E");
}

.icon-iotchip {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Crect x='7' y='7' width='10' height='10' rx='2' stroke='%231f7cff' stroke-width='1.8'/%3E%3Cpath d='M12 4v3M12 17v3M4 12h3M17 12h3M6.8 6.8l1.8 1.8M15.4 15.4l1.8 1.8M6.8 17.2l1.8-1.8M15.4 8.6l1.8-1.8' stroke='%231f7cff' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
}

.icon-data {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cellipse cx='12' cy='7' rx='6.5' ry='2.7' stroke='%231f7cff' stroke-width='1.8'/%3E%3Cpath d='M5.5 7v7.5c0 1.5 2.9 2.7 6.5 2.7s6.5-1.2 6.5-2.7V7' stroke='%231f7cff' stroke-width='1.8'/%3E%3C/svg%3E");
}

.icon-auto {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 5.2a6.8 6.8 0 1 0 4.9 11.5' stroke='%231f7cff' stroke-width='1.8'/%3E%3Cpath d='M15 5.3h4v4' stroke='%231f7cff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M19 5.3 15.4 9' stroke='%231f7cff' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
}

.icon-network {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Crect x='3.5' y='9' width='6' height='6' rx='1.2' stroke='%231f7cff' stroke-width='1.8'/%3E%3Crect x='14.5' y='5' width='6' height='6' rx='1.2' stroke='%231f7cff' stroke-width='1.8'/%3E%3Crect x='14.5' y='13' width='6' height='6' rx='1.2' stroke='%231f7cff' stroke-width='1.8'/%3E%3Cpath d='M9.8 12h4.2M14 8h-2.4m2.4 8h-2.4' stroke='%231f7cff' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
}

.icon-workstation {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Crect x='4' y='5.5' width='16' height='10' rx='1.8' stroke='%231f7cff' stroke-width='1.8'/%3E%3Cpath d='M9.5 18.5h5M12 15.5v3' stroke='%231f7cff' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
}


.eyebrow {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0.9;
}

.hero-sub {
  font-size: clamp(1.02rem, 2.1vw, 1.22rem);
  opacity: 0.95;
  margin: 0 0 1.55rem;
}

.hero-accent {
  color: #ffcc00;
}

.section-sub {
  text-align: center;
  color: var(--muted);
  max-width: 72ch;
  margin: -0.8rem auto 1.25rem;
}

.intro-copy {
  max-width: 78ch;
  margin: 0 auto;
  text-align: center;
  font-size: clamp(1.05rem, 1.7vw, 1.22rem);
  line-height: 1.72;
  color: var(--muted);
}

.infra-example-media {
  margin: 1.2rem auto 0;
  max-width: 980px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.infra-example-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  background: transparent;
}

.practice-title {
  max-width: 30ch;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}

.practice-copy {
  max-width: 84ch;
  font-size: clamp(0.98rem, 1.45vw, 1.1rem);
  line-height: 1.66;
  text-wrap: pretty;
}

.btn,
.contact button {
  appearance: none;
  border: 0;
  border-radius: 12px;
  padding: 0.8rem 1.3rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn {
  display: inline-block;
  color: #1557b2;
  background: linear-gradient(120deg, #ffffff 0%, #e6f2ff 100%);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(18, 87, 179, 0.22);
  filter: saturate(1.05);
  outline: none;
}

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

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

.card,
.step {
  background: linear-gradient(180deg, #ffffff 0%, #fafdff 100%);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-md);
  padding: 1.3rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.card:hover,
.step:hover {
  transform: translateY(-4px);
  border-color: #b8d7ff;
  box-shadow: 0 16px 36px rgba(18, 92, 184, 0.18);
}

.card p,
.step p {
  margin: 0;
  color: var(--muted);
}

.card h3 {
  transition: color 0.2s ease;
}

.card:hover h3 {
  color: var(--primary-strong);
}

.process .step-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 0.62rem;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eef5ff;
  border: 1px solid #d6e7ff;
  color: #1f73f1;
}

.process .step-icon svg {
  width: 23px;
  height: 23px;
}

.process .step-icon svg * {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step:hover .step-icon {
  background: #e5f0ff;
  border-color: #b9d6ff;
}

.telematik-portal-page .compact-grid-section {
  padding-top: clamp(1.5rem, 3.2vw, 2.4rem);
  padding-bottom: clamp(2.2rem, 4.3vw, 3.2rem);
}

.telematik-portal-page .compact-grid-section h2 {
  margin-bottom: 1.35rem;
}

.telematik-portal-page .compact-grid-section .grid-4 {
  gap: 1.1rem;
  align-items: stretch;
}

.telematik-portal-page .compact-grid-section .card {
  height: 100%;
  min-height: 208px;
  padding: 1.2rem 1.2rem 1.25rem;
  display: flex;
  flex-direction: column;
}

.telematik-portal-page .compact-grid-section .card h3 {
  margin-bottom: 0.55rem;
  line-height: 1.16;
}

.telematik-portal-page .compact-grid-section .card p {
  font-size: clamp(1rem, 1.05vw, 1.12rem);
  line-height: 1.52;
  text-wrap: pretty;
}

.telematik-portal-page #branchen .card-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.55rem;
}

.telematik-portal-page #branchen .card-head h3 {
  margin: 0;
}

.telematik-portal-page #branchen .tile-icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  border: 1px solid #c7defa;
  background: #f6fbff;
  color: var(--primary-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  transition: transform 0.22s ease, background-color 0.22s ease, border-color 0.22s ease;
}

.telematik-portal-page #branchen .tile-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.telematik-portal-page #branchen .card:hover .tile-icon {
  transform: translateY(-1px);
  background: #eaf4ff;
  border-color: #b8d7ff;
}

.telematik-portal-page #branchen.compact-grid-section {
  padding-top: clamp(1.05rem, 2.2vw, 1.6rem);
}

.telematik-portal-page #branchen.compact-grid-section + .compact-grid-section {
  padding-top: clamp(1.1rem, 2.4vw, 1.8rem);
}

.telematik-portal-page .portal-overview,
.telematik-portal-page .portal-features,
.telematik-portal-page .portal-integration {
  padding-top: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(2.2rem, 4.5vw, 3.3rem);
}

.telematik-portal-page .portal-subtitle {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.55rem;
  text-wrap: pretty;
}

.telematik-portal-page .portal-grid {
  display: grid;
  gap: 1rem;
}

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

.telematik-portal-page .portal-grid-8 {
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 0.8rem;
}

.telematik-portal-page .portal-card {
  border: 1px solid #dbe7f7;
  box-shadow: 0 10px 26px rgba(14, 44, 84, 0.08);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.telematik-portal-page .branch-card {
  min-height: 182px;
  display: flex;
  gap: 0.95rem;
  padding: 1.25rem;
  align-items: flex-start;
}

.telematik-portal-page .branch-card h3 {
  margin: 0 0 0.55rem;
  line-height: 1.2;
}

.telematik-portal-page .branch-card p {
  margin: 0;
  line-height: 1.5;
}

.telematik-portal-page .portal-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  flex: 0 0 auto;
}

.telematik-portal-page .portal-icon svg {
  width: 38px;
  height: 38px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.telematik-portal-page .icon-blue {
  color: #1f68dc;
  background: #edf4ff;
}

.telematik-portal-page .icon-green {
  color: #2f9b4a;
  background: #ebf8ee;
}

.telematik-portal-page .icon-purple {
  color: #6a48cb;
  background: #f0ebff;
}

.telematik-portal-page .feature-card {
  min-height: 178px;
  padding: 1rem 0.8rem 1.05rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.telematik-portal-page .feature-card .portal-icon {
  width: 48px;
  height: 48px;
  border-radius: 999px;
}

.telematik-portal-page .feature-card .portal-icon svg {
  width: 30px;
  height: 30px;
}

.telematik-portal-page .feature-card h3 {
  margin: 0;
  font-size: 1.06rem;
}

.telematik-portal-page .feature-card p {
  margin: 0;
  font-size: 0.99rem;
  line-height: 1.48;
}

.telematik-portal-page .integration-grid {
  align-items: start;
}

.telematik-portal-page .portal-integration-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  column-gap: 0.8rem;
  row-gap: 0.35rem;
  align-items: start;
}

.telematik-portal-page .portal-integration-item h3 {
  margin: 0;
  font-size: 1.32rem;
}

.telematik-portal-page .portal-integration-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  grid-column: 2;
}

.telematik-portal-page .gps-section {
  background: #f4f9ff;
  padding: 80px 20px;
  color: #071b4d;
}

.telematik-portal-page .gps-container {
  max-width: 1200px;
  margin: 0 auto;
}

.telematik-portal-page .section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 38px;
}

.telematik-portal-page .section-header h2 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 14px;
  color: #061b55;
  font-weight: 800;
}

.telematik-portal-page .section-header p {
  font-size: 18px;
  color: #40517a;
  line-height: 1.7;
}

.telematik-portal-page .section-header.small {
  margin-top: 55px;
  margin-bottom: 28px;
}

.telematik-portal-page .section-header.small h2 {
  font-size: 30px;
}

.telematik-portal-page .industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.telematik-portal-page .industry-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 32px 28px;
  min-height: 230px;
  border: 1px solid #e1ebfa;
  box-shadow: 0 12px 35px rgba(30, 80, 150, 0.08);
  transition: 0.25s ease;
}

.telematik-portal-page .industry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(30, 80, 150, 0.14);
}

.telematik-portal-page .icon {
  color: #1f73f1;
  margin-bottom: 20px;
  line-height: 0;
}

.telematik-portal-page .icon svg {
  width: 52px;
  height: 52px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.telematik-portal-page .industry-card h3 {
  font-size: 21px;
  line-height: 1.25;
  margin-bottom: 14px;
  color: #061b55;
}

.telematik-portal-page .industry-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #1f315f;
  margin: 0;
}

.telematik-portal-page .feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.telematik-portal-page .feature-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
  border: 1px solid #e1ebfa;
  box-shadow: 0 10px 28px rgba(30, 80, 150, 0.07);
  min-height: 190px;
}

.telematik-portal-page .feature-icon {
  color: #2f9b4a;
  margin-bottom: 14px;
  line-height: 0;
}

.telematik-portal-page .feature-icon svg {
  width: 40px;
  height: 40px;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.telematik-portal-page .feature-card h3 {
  font-size: 15px;
  margin-bottom: 10px;
  color: #061b55;
}

.telematik-portal-page .feature-card p {
  font-size: 13px;
  line-height: 1.6;
  color: #263865;
  margin: 0;
}

.telematik-portal-page .integration-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.telematik-portal-page .integration-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 26px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  border: 1px solid #e1ebfa;
  box-shadow: 0 10px 28px rgba(30, 80, 150, 0.07);
}

.telematik-portal-page .integration-icon {
  color: #6b42d8;
  line-height: 0;
}

.telematik-portal-page .integration-icon svg {
  width: 42px;
  height: 42px;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.telematik-portal-page .cta-image svg {
  width: 86px;
  height: 86px;
  color: #1f73f1;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.telematik-portal-page .integration-icon,
.telematik-portal-page .cta-image {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.telematik-portal-page .cta-image {
  color: #6b42d8;
  margin: 0 auto;
}

.telematik-portal-page .integration-card h3 {
  font-size: 18px;
  color: #5b35c9;
  margin-bottom: 8px;
}

.telematik-portal-page .integration-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #263865;
  margin: 0;
}

.telematik-portal-page .gps-cta {
  margin-top: 50px;
  background: linear-gradient(135deg, #eef7ff, #ffffff);
  border: 1px solid #cfe1ff;
  border-radius: 18px;
  padding: 34px 44px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 35px;
  align-items: center;
  box-shadow: 0 14px 40px rgba(30, 80, 150, 0.1);
}

.telematik-portal-page .cta-image {
  font-size: 86px;
  text-align: center;
}

.telematik-portal-page .gps-cta h2 {
  font-size: 28px;
  margin-bottom: 12px;
  color: #061b55;
  text-align: left;
}

.telematik-portal-page .gps-cta p {
  font-size: 16px;
  line-height: 1.7;
  color: #263865;
  margin-bottom: 22px;
}

.telematik-portal-page .cta-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.telematik-portal-page .btn-primary,
.telematik-portal-page .btn-secondary {
  display: inline-block;
  padding: 13px 24px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
}

.telematik-portal-page .btn-primary {
  background: #1f73f1;
  color: #ffffff;
}

.telematik-portal-page .btn-secondary {
  border: 1px solid #1f73f1;
  color: #1f73f1;
  background: transparent;
}

.telematik-portal-page .btn-primary:hover,
.telematik-portal-page .btn-secondary:hover {
  transform: translateY(-2px);
}

.telematik-portal-page .gps-solutions {
  background: #f4f9ff;
  padding: 80px 20px;
  color: #071b4d;
}

.telematik-portal-page .gps-wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.telematik-portal-page .gps-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 38px;
}

.telematik-portal-page .gps-head h2 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 14px;
  color: #061b55;
  font-weight: 800;
}

.telematik-portal-page .gps-head p {
  font-size: 18px;
  color: #40517a;
  line-height: 1.7;
}

.telematik-portal-page .gps-head-small {
  margin-top: 55px;
  margin-bottom: 28px;
}

.telematik-portal-page .gps-head-small h2 {
  font-size: 30px;
}

.telematik-portal-page .industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.telematik-portal-page .industry-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px 18px;
  min-height: 170px;
  border: 1px solid #c8dcf7;
  box-shadow: 0 10px 24px rgba(28, 86, 162, 0.07);
  display: grid;
  grid-template-columns: 64px 1fr;
  column-gap: 14px;
  align-items: start;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.telematik-portal-page .industry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(28, 86, 162, 0.12);
}

.telematik-portal-page .industry-icon {
  width: 58px;
  height: 58px;
  color: #1f73f1;
  border-radius: 999px;
  background: #cfe1f5;
  border: 1px solid #b7d2f3;
  padding: 12px;
  margin-top: 0;
  grid-row: 1 / span 2;
}

.telematik-portal-page .industry-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.telematik-portal-page .industry-card h3 {
  font-size: clamp(1.18rem, 1.55vw, 1.55rem);
  line-height: 1.25;
  margin: 3px 0 6px;
  color: #061b55;
}

.telematik-portal-page .industry-card p {
  font-size: clamp(1rem, 1.2vw, 1.22rem);
  line-height: 1.45;
  color: #345480;
  margin: 0;
  max-width: 28ch;
}

.telematik-portal-page .feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.telematik-portal-page .feature-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 24px 16px;
  text-align: center;
  border: 1px solid #c8dcf7;
  box-shadow: 0 10px 24px rgba(28, 86, 162, 0.07);
  min-height: 190px;
}

.telematik-portal-page .feature-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  color: #2ea44f;
  border-radius: 999px;
  background: #eaf7ef;
  border: 1px solid #cfead8;
  padding: 9px;
}

.telematik-portal-page .feature-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.telematik-portal-page .feature-card h3 {
  font-size: 15px;
  margin-bottom: 10px;
  color: #061b55;
}

.telematik-portal-page .feature-card p {
  font-size: 13px;
  line-height: 1.6;
  color: #263865;
  margin: 0;
}

.telematik-portal-page .integration-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.telematik-portal-page .integration-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 26px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  border: 1px solid #c8dcf7;
  box-shadow: 0 10px 24px rgba(28, 86, 162, 0.07);
}

.telematik-portal-page .integration-icon {
  width: 42px;
  height: 42px;
  color: #6b42d8;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #f1ebff;
  border: 1px solid #dfd3ff;
  padding: 7px;
}

.telematik-portal-page .integration-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.telematik-portal-page .integration-card h3 {
  font-size: 18px;
  color: #5b35c9;
  margin-bottom: 8px;
}

.telematik-portal-page .integration-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #263865;
  margin: 0;
}

.telematik-portal-page .gps-cta {
  margin-top: 50px;
  background: linear-gradient(135deg, #eef7ff, #ffffff);
  border: 1px solid #cfe1ff;
  border-radius: 18px;
  padding: 34px 44px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 35px;
  align-items: center;
  box-shadow: 0 14px 40px rgba(30, 80, 150, 0.1);
}

.telematik-portal-page .cta-visual {
  position: relative;
  height: 150px;
}

.telematik-portal-page .cta-visual .screen {
  position: absolute;
  left: 30px;
  top: 20px;
  width: 170px;
  height: 105px;
  border: 3px solid #1f73f1;
  border-radius: 10px;
  background: #f6fbff;
}

.telematik-portal-page .cta-visual .screen::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -16px;
  width: 60px;
  height: 3px;
  background: #1f73f1;
  transform: translateX(-50%);
  border-radius: 2px;
}

.telematik-portal-page .cta-visual .phone {
  position: absolute;
  right: 18px;
  bottom: 14px;
  width: 52px;
  height: 96px;
  border: 3px solid #6b42d8;
  border-radius: 12px;
  background: #f8f4ff;
}

.telematik-portal-page .cta-text h2 {
  font-size: 28px;
  margin-bottom: 12px;
  color: #061b55;
  text-align: left;
}

.telematik-portal-page .cta-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #263865;
  margin-bottom: 22px;
}

.telematik-portal-page .cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.telematik-portal-page .btn-main,
.telematik-portal-page .btn-light {
  display: inline-block;
  padding: 13px 24px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
}

.telematik-portal-page .btn-main {
  background: #1f73f1;
  color: #fff;
}

.telematik-portal-page .btn-light {
  border: 1px solid #1f73f1;
  color: #1f73f1;
  background: transparent;
}

.telematik-portal-page .btn-main:hover,
.telematik-portal-page .btn-light:hover {
  transform: translateY(-2px);
}

.card-link {
  display: block;
  text-decoration: none;
}

.card-link h3,
.card-link p {
  transition: color 0.2s ease;
}

.card-link:hover h3,
.card-link:focus-visible h3 {
  color: var(--primary-strong);
}

.card-link:focus-visible {
  outline: 2px solid #8ebfff;
  outline-offset: 4px;
  border-radius: 8px;
}

.title-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.35rem;
}

.title-link-arrow span {
  font-size: 1.35em;
  line-height: 1;
  transition: transform 0.2s ease;
}

.card-link:hover .title-link-arrow,
.card-link:focus-visible .title-link-arrow {
  color: var(--primary-strong);
}

.card-link:hover .title-link-arrow span,
.card-link:focus-visible .title-link-arrow span {
  transform: translateX(3px);
}

.card:hover .title-link-arrow span {
  transform: translateX(3px);
}

.security {
  background: linear-gradient(180deg, transparent 0, var(--bg-alt) 100%);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.managed-box-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.managed-box {
  border-radius: var(--radius-md);
  padding: 1.35rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--stroke);
}

.managed-box h3 {
  margin-bottom: 0.55rem;
}

.managed-box p {
  margin: 0.3rem 0;
}

.managed-box-light {
  background: #fff8df;
  color: #1f3553;
}

.managed-box-dark {
  background: #0d2749;
  color: #ffffff;
  border-color: #0d2749;
}

.advantages-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.8rem;
  max-width: 820px;
  margin-inline: auto;
}

.advantages-list li {
  background: #fff;
  border: 1px solid var(--stroke);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  box-shadow: var(--shadow-soft);
  color: #234160;
  position: relative;
  padding-left: 2.6rem;
}

.advantages-list li::before {
  content: "\2713";
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #0f68da;
  font-weight: 800;
}

.contact form {
  max-width: 640px;
  margin: 0 auto;
  display: grid;
  gap: 0.8rem;
  padding: 1.35rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--stroke);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.contact input,
.contact textarea {
  width: 100%;
  border: 1px solid #c6dcfb;
  border-radius: 10px;
  padding: 0.74rem 0.85rem;
  font: inherit;
  color: var(--text);
  background: #fbfdff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact textarea {
  min-height: 140px;
  resize: vertical;
}

.contact input:focus,
.contact textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(47, 143, 255, 0.16);
}

.contact button {
  background: linear-gradient(120deg, var(--primary), var(--primary-strong));
  color: #fff;
}

.contact button:hover,
.contact button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(26, 103, 214, 0.26);
  outline: none;
}

.footer {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, #f7fbff 100%);
  color: var(--muted);
  border-top: 1px solid rgba(212, 230, 252, 0.9);
}

.footer a {
  color: #35557d;
  text-decoration: none;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-top: 3rem;
  padding-bottom: 2.2rem;
}

.footer-col h3 {
  margin-bottom: 0.95rem;
  color: var(--text);
  font-size: 1.1rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.7rem;
}

.footer-col li a {
  color: var(--muted);
}

.footer-col li a:hover,
.footer-col li a:focus-visible {
  color: var(--text);
  text-decoration: underline;
}

.footer-logo {
  display: inline-block;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 1rem;
  color: var(--text);
}

.footer-logo span {
  color: var(--brand-accent);
}

.footer-brand-col p {
  color: var(--muted);
  max-width: 30ch;
}

.footer-badges {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  align-items: center;
  border: 1px solid #bcd3f2;
  border-radius: 16px;
  overflow: hidden;
  width: min(100%, 560px);
  background: #f4f8ff;
}

.footer-badge {
  padding: 0.62rem 0.92rem;
  color: #1a3e70;
  font-weight: 700;
  font-size: 0.82rem;
  line-height: 1.25;
  display: flex;
  align-items: center;
  gap: 0.62rem;
  min-height: 52px;
}

.footer-badge + .footer-badge {
  border-left: 1px solid #c9dbf6;
}

.footer-badge::before {
  content: "";
  width: 40px;
  height: 40px;
  display: inline-block;
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.footer-badge-iso::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='10' stroke='%2324508c' stroke-width='1.8'/%3E%3Cpath d='M12 6.4l4 1.7v3.4c0 2.5-1.7 4.4-4 5.2-2.3-.8-4-2.7-4-5.2V8.1L12 6.4z' stroke='%2324508c' stroke-width='1.6'/%3E%3Cpath d='M10.2 11.5l1.1 1.1 2.3-2.4' stroke='%2324508c' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.footer-badge-nis2::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Crect x='6' y='11' width='12' height='9' rx='2' stroke='%2324508c' stroke-width='1.8'/%3E%3Cpath d='M8.8 11V8.8a3.2 3.2 0 1 1 6.4 0V11' stroke='%2324508c' stroke-width='1.8'/%3E%3Ccircle cx='12' cy='15.6' r='1.1' fill='%2324508c'/%3E%3C/svg%3E");
}

.footer-address {
  color: var(--muted);
  margin-bottom: 0.9rem;
}

.footer-phone {
  display: inline-block;
  color: var(--primary-strong);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
  white-space: nowrap;
}

.footer-mail {
  display: inline-block;
  color: var(--text);
  text-decoration: underline;
  margin-bottom: 1rem;
}

.footer-portal {
  display: inline-block;
  padding-top: 0.85rem;
  border-top: 1px solid #c9dcf8;
  font-weight: 700;
}

.footer-partners {
  border-top: 1px solid #d4e6fc;
  border-bottom: 1px solid #d4e6fc;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.8rem 2.8rem;
  padding: 1.1rem 0;
  color: var(--muted);
  font-weight: 700;
}

.footer-bottom {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-links a {
  color: var(--text);
}

.footer-bottom-links a:hover,
.footer-bottom-links a:focus-visible {
  text-decoration: underline;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  box-shadow: 0 12px 24px rgba(16, 39, 66, 0.22);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 1100;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  filter: brightness(1.06);
  outline: none;
}

.gps-favorite-link {
  position: fixed;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1090;
  min-width: 148px;
  height: 56px;
  border-radius: 14px;
  border: 1px solid #bcd6f7;
  background: #ffffff;
  color: #1f73f1;
  box-shadow: 0 12px 24px rgba(16, 39, 66, 0.2);
  display: inline-grid;
  grid-template-columns: 40px 1fr;
  column-gap: 0.55rem;
  align-items: center;
  justify-content: start;
  padding: 0 0.8rem 0 0.55rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.gps-favorite-link:hover,
.gps-favorite-link:focus-visible {
  transform: translateY(calc(-50% - 2px));
  box-shadow: 0 16px 30px rgba(16, 39, 66, 0.26);
  border-color: #9fc4f4;
  background: #f8fbff;
  outline: none;
}

.gps-favorite-link__icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid #c5daf8;
  background: #d8e6fa;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.gps-favorite-link svg {
  width: 23px;
  height: 23px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gps-favorite-link__text {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #11448f;
  white-space: nowrap;
}

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

  .reveal,
  .reveal.in-view,
  .card,
  .step,
  .btn,
  .contact button,
  .menu a,
  .back-to-top {
    transition: none;
    transform: none;
  }
}

@media (max-width: 980px) {
  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .managed-box-grid {
    grid-template-columns: 1fr;
  }

  .telematik-portal-page .compact-grid-section .card {
    min-height: 196px;
  }

  .telematik-portal-page .portal-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .telematik-portal-page .portal-grid-8 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .telematik-portal-page .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .telematik-portal-page .integration-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  :root {
    --header-h: 68px;
  }

  .nav {
    min-height: var(--header-h);
    display: flex;
    justify-content: space-between;
  }

  .logo-mark {
    height: 44px;
  }

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

  .menu {
    position: absolute;
    top: calc(var(--header-h) - 2px);
    right: 4vw;
    width: min(360px, 92vw);
    display: grid;
    gap: 0.35rem;
    background: #fff;
    border: 1px solid var(--stroke);
    border-radius: 12px;
    padding: 0.55rem;
    box-shadow: var(--shadow-soft);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .menu a {
    text-align: center;
    padding: 0.75rem;
  }

  .menu a.menu-primary-cta {
    border-radius: 10px;
    width: 100%;
    margin-top: 0.15rem;
    opacity: 1;
  }

  .menu a.menu-primary-cta-mobile {
    display: inline-flex;
  }

  .nav .nav-gps-fixed.menu-primary-cta {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .telematik-portal-page .compact-grid-section {
    padding-top: 1.1rem;
    padding-bottom: 1.8rem;
  }

  .telematik-portal-page .compact-grid-section h2 {
    margin-bottom: 1rem;
  }

  .telematik-portal-page .compact-grid-section .card {
    min-height: 0;
  }

  .telematik-portal-page .portal-grid-4,
  .telematik-portal-page .portal-grid-8 {
    grid-template-columns: 1fr;
  }

  .telematik-portal-page .branch-card {
    min-height: 0;
    padding: 1.05rem;
  }

  .telematik-portal-page .feature-card {
    min-height: 0;
  }

  .telematik-portal-page .portal-integration-item {
    grid-template-columns: 48px 1fr;
  }

  .telematik-portal-page .portal-integration-item h3 {
    font-size: 1.15rem;
  }

  .telematik-portal-page .gps-section {
    padding: 55px 16px;
  }

  .telematik-portal-page .section-header h2 {
    font-size: 32px;
  }

  .telematik-portal-page .industry-grid,
  .telematik-portal-page .integration-grid {
    grid-template-columns: 1fr;
  }

  .telematik-portal-page .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .telematik-portal-page .gps-cta {
    grid-template-columns: 1fr;
    padding: 28px 22px;
    text-align: center;
  }

  .telematik-portal-page .gps-cta h2 {
    text-align: center;
  }

  .telematik-portal-page .cta-buttons {
    justify-content: center;
  }

  .home-page .hero,
  body:not(.home-page) .hero {
    min-height: 460px;
  }

  .home-page .hero::before,
  body:not(.home-page) .hero::before {
    opacity: 0.1;
    background-size:
      76px 76px,
      76px 76px,
      76px 76px,
      76px 76px,
      76px 76px,
      76px 76px;
    background-position:
      8% 18%,
      92% 17%,
      8% 82%,
      92% 76%,
      18% 86%,
      82% 84%;
  }

  .home-page .hero::after,
  body:not(.home-page) .hero::after {
    opacity: 0;
    background: none;
  }

  body.iot-page .hero::before {
    opacity: 0.1;
    background-size:
      76px 76px,
      76px 76px,
      76px 76px,
      76px 76px,
      76px 76px,
      76px 76px;
    background-position:
      8% 18%,
      92% 17%,
      8% 82%,
      92% 76%,
      18% 86%,
      82% 84%;
  }
  body.hardware-page .hero::before {
    opacity: 0.1;
    background-size:
      76px 76px,
      76px 76px,
      76px 76px,
      76px 76px,
      76px 76px,
      76px 76px;
    background-position:
      8% 18%,
      92% 17%,
      8% 82%,
      92% 76%,
      18% 86%,
      82% 84%;
  }
  body.beratung-page .hero::before {
    opacity: 0.1;
    background-size:
      76px 76px,
      76px 76px,
      76px 76px,
      76px 76px,
      76px 76px,
      76px 76px;
    background-position:
      8% 18%,
      92% 17%,
      8% 82%,
      92% 76%,
      18% 86%,
      82% 84%;
  }
  body.software-page .hero::before {
    opacity: 0.1;
    background-size:
      76px 76px,
      76px 76px,
      76px 76px,
      76px 76px,
      76px 76px,
      76px 76px;
    background-position:
      8% 18%,
      92% 17%,
      8% 82%,
      92% 76%,
      18% 86%,
      82% 84%;
  }
  body.managed-page .hero::before {
    opacity: 0.1;
    background-size:
      76px 76px,
      76px 76px,
      76px 76px,
      76px 76px,
      76px 76px,
      76px 76px;
    background-position:
      8% 18%,
      92% 17%,
      8% 82%,
      92% 76%,
      18% 86%,
      82% 84%;
  }
  body.telefonie-page .hero::before {
    opacity: 0.1;
    background-size:
      76px 76px,
      76px 76px,
      76px 76px,
      76px 76px,
      76px 76px,
      76px 76px;
    background-position:
      8% 18%,
      92% 17%,
      8% 82%,
      92% 76%,
      18% 86%,
      82% 84%;
  }
  body.firewall-page .hero::before {
    opacity: 0.1;
    background-size:
      76px 76px,
      76px 76px,
      76px 76px,
      76px 76px,
      76px 76px,
      76px 76px;
    background-position:
      8% 18%,
      92% 17%,
      8% 82%,
      92% 76%,
      18% 86%,
      82% 84%;
  }
  body.daten-page .hero::before {
    opacity: 0.1;
    background-size:
      76px 76px,
      76px 76px,
      76px 76px,
      76px 76px,
      76px 76px,
      76px 76px;
    background-position:
      8% 18%,
      92% 17%,
      8% 82%,
      92% 76%,
      18% 86%,
      82% 84%;
  }
  body.autom-page .hero::before {
    opacity: 0.1;
    background-size:
      76px 76px,
      76px 76px,
      76px 76px,
      76px 76px,
      76px 76px,
      76px 76px;
    background-position:
      8% 18%,
      92% 17%,
      8% 82%,
      92% 76%,
      18% 86%,
      82% 84%;
  }
  body.iot-page .hero::after {
    opacity: 0;
    background: none;
  }
  body.hardware-page .hero::after {
    opacity: 0;
    background: none;
  }
  body.beratung-page .hero::after {
    opacity: 0;
    background: none;
  }
  body.software-page .hero::after {
    opacity: 0;
    background: none;
  }
  body.managed-page .hero::after {
    opacity: 0;
    background: none;
  }
  body.telefonie-page .hero::after {
    opacity: 0;
    background: none;
  }
  body.firewall-page .hero::after {
    opacity: 0;
    background: none;
  }
  body.daten-page .hero::after {
    opacity: 0;
    background: none;
  }
  body.autom-page .hero::after {
    opacity: 0;
    background: none;
  }

  .grid,
  .grid-4,
  .steps {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 1.4rem;
    padding-top: 2.2rem;
    padding-bottom: 1.6rem;
  }

  .footer-badges {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .footer-badge + .footer-badge {
    border-left: 0;
    border-top: 1px solid #c9dbf6;
  }

  .footer-partners {
    justify-content: center;
    gap: 0.8rem 1.2rem;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 0 1.2rem;
  }

  .footer-contact-col .footer-address {
    margin-bottom: 0.72rem;
  }

  .footer-contact-col .footer-phone,
  .footer-contact-col .footer-mail,
  .footer-contact-col .footer-portal {
    display: block;
    white-space: normal;
  }

  .footer-contact-col .footer-phone {
    margin-bottom: 0.35rem;
    line-height: 1.2;
  }

  .footer-contact-col .footer-mail {
    margin-bottom: 0.78rem;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
  }

  .footer-contact-col .footer-portal {
    margin-top: 0;
    padding-top: 0.72rem;
  }
}




#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translate(-50%, 16px);
  width: min(1040px, calc(100% - 2rem));
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
}

.cookie-banner.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.cookie-banner__content {
  border: 1px solid rgba(123, 179, 255, 0.32);
  border-radius: 14px;
  background: linear-gradient(160deg, #08285f 0%, #0d356f 100%);
  box-shadow: 0 16px 36px rgba(8, 29, 64, 0.32);
  padding: 1rem 1rem 0.95rem;
  display: grid;
  gap: 0.9rem;
}

.cookie-banner__text {
  margin: 0;
  color: #f5f9ff;
  font-size: 0.95rem;
  line-height: 1.58;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.cookie-btn {
  appearance: none;
  border-radius: 10px;
  padding: 0.62rem 0.96rem;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.cookie-btn:hover,
.cookie-btn:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.cookie-btn--primary {
  background: #ffffff;
  color: #08285f;
  border-color: #ffffff;
}

.cookie-btn--secondary {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.72);
}

.cookie-settings-toggle {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  border: 1px solid rgba(123, 179, 255, 0.32);
  border-radius: 50%;
  background: #0d356f;
  color: #ffffff;
  width: 54px;
  height: 54px;
  padding: 0;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(8, 29, 64, 0.26);
  transition: opacity 0.24s ease, visibility 0.24s ease, transform 0.2s ease;
}

.cookie-settings-toggle.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.cookie-settings-toggle:hover,
.cookie-settings-toggle:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.cookie-settings-toggle svg {
  width: 33px;
  height: 33px;
  display: block;
  margin: 0 auto;
}

.cookie-settings-toggle path {
  fill: none;
  stroke: #ffffff;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 760px) {
  .cookie-banner {
    width: calc(100% - 1rem);
    bottom: 0.55rem;
  }

  .cookie-banner__content {
    padding: 0.85rem 0.85rem 0.82rem;
  }

  .cookie-banner__text {
    font-size: 0.91rem;
  }

  .cookie-btn {
    width: 100%;
    text-align: center;
  }

  .cookie-settings-toggle {
    left: 0.55rem;
    bottom: 0.55rem;
  }
}



@media (max-width: 1100px) {
  .telematik-portal-page .gps-solutions .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .telematik-portal-page .gps-solutions .feature-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .telematik-portal-page .gps-solutions .integration-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .telematik-portal-page .gps-solutions {
    padding: 55px 16px;
  }

  .telematik-portal-page .gps-head h2 {
    font-size: 32px;
  }

  .telematik-portal-page .gps-solutions .industry-grid,
  .telematik-portal-page .gps-solutions .integration-grid {
    grid-template-columns: 1fr;
  }

  .telematik-portal-page .gps-solutions .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .telematik-portal-page .gps-solutions .gps-cta {
    grid-template-columns: 1fr;
    padding: 28px 22px;
    text-align: center;
  }

  .telematik-portal-page .gps-solutions .cta-text h2 {
    text-align: center;
  }

  .telematik-portal-page .gps-solutions .cta-actions {
    justify-content: center;
  }

  .telematik-portal-page .gps-solutions .cta-visual {
    height: 120px;
  }
}

/* GPS cards aligned to main-site service card standard */
.telematik-portal-page .gps-solutions .industry-grid,
.telematik-portal-page .gps-solutions .feature-grid,
.telematik-portal-page .gps-solutions .integration-grid {
  align-items: stretch;
}

.telematik-portal-page .gps-solutions .gps-icon {
  width: 100%;
  height: 100%;
  display: block;
  color: #1874f4;
}

.telematik-portal-page .gps-solutions .gps-icon.blue {
  color: #1874f4;
}

.telematik-portal-page .gps-solutions .gps-icon.green {
  color: #2ea94f;
}

.telematik-portal-page .gps-solutions .gps-icon.purple {
  color: #6f46d9;
}

.telematik-portal-page .gps-solutions .gps-icon * {
  fill: currentColor;
}

.telematik-portal-page .gps-solutions .gps-icon [fill="none"] {
  fill: none;
}

.telematik-portal-page .gps-solutions .gps-icon [fill="#fff"],
.telematik-portal-page .gps-solutions .gps-icon [fill="#ffffff"] {
  fill: #fff;
}

.telematik-portal-page .about .intro-copy + .intro-copy {
  margin-top: 0.9rem;
}

.telematik-portal-page .about h2 {
  margin-bottom: 1.1rem;
  font-size: clamp(1.95rem, 3.4vw, 2.7rem);
  text-align: center;
}

.telematik-portal-page #portal-app .app-store-actions {
  justify-content: center;
  margin-top: 1.2rem;
  gap: 1rem;
  align-items: flex-start;
}

.telematik-portal-page #portal-app .store-item {
  position: relative;
}

.telematik-portal-page #portal-app h2 {
  font-size: clamp(2.05rem, 3.6vw, 2.9rem);
  margin-bottom: 1.2rem;
}

.telematik-portal-page #portal-app .section-sub {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.08rem;
}

.telematik-portal-page #portal-app .store-badge {
  min-width: 280px;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1.02rem;
  border: 1px solid #1f73f1;
  border-radius: 12px;
  background: #ffffff;
  color: #0f3f8b;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(16, 39, 66, 0.1);
}

.telematik-portal-page #portal-app .store-badge[aria-disabled="true"] {
  cursor: default;
}

.telematik-portal-page #portal-app .store-badge__icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.telematik-portal-page #portal-app .store-badge__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.telematik-portal-page #portal-app .store-badge-ios .store-badge__icon svg {
  fill: currentColor;
}

.telematik-portal-page #portal-app .store-badge__text {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.12;
}

.telematik-portal-page #portal-app .store-badge__hint {
  font-size: 0.76rem;
  font-weight: 600;
  color: #47628f;
}

.telematik-portal-page #portal-app .store-badge__title {
  font-size: 1.08rem;
  font-weight: 800;
  color: #0b2d67;
}

.telematik-portal-page #portal-app .store-qr-grid {
  display: none;
}

.telematik-portal-page #portal-app .store-qr-card {
  width: 170px;
  border: 1px solid #d6e7ff;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(16, 39, 66, 0.1);
  padding: 0.72rem 0.72rem 0.66rem;
  text-decoration: none;
  color: #0b2d67;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  position: absolute;
  bottom: calc(100% + 0.45rem);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 5;
}

.telematik-portal-page #portal-app .store-item:hover .store-qr-card,
.telematik-portal-page #portal-app .store-item:focus-within .store-qr-card,
.telematik-portal-page #portal-app .store-item.qr-active .store-qr-card {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.telematik-portal-page #portal-app .store-qr-card img {
  width: 130px;
  height: 130px;
  border-radius: 6px;
  border: 1px solid #e5eefc;
  background: #ffffff;
}

.telematik-portal-page #portal-app .store-qr-card span {
  display: block;
  text-align: center;
  font-size: 0.83rem;
  line-height: 1.4;
  font-weight: 600;
  color: #325281;
}

@media (max-width: 760px) {
  .telematik-portal-page #portal-app .app-store-actions {
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
  }

  .telematik-portal-page #portal-app .store-item {
    width: min(320px, 100%);
  }

  .telematik-portal-page #portal-app .store-badge {
    min-width: 0;
    width: 100%;
    min-height: 74px;
    margin-left: auto;
    margin-right: auto;
    padding: 0.72rem 0.92rem;
    justify-content: center;
  }

  .telematik-portal-page #portal-app .store-badge__text {
    align-items: center;
    text-align: center;
  }

  .telematik-portal-page #portal-app .store-badge__icon {
    width: 30px;
    height: 30px;
  }

  .telematik-portal-page #portal-app .store-qr-card {
    display: none;
  }
}

.telematik-portal-page .faq {
  padding-top: clamp(2.4rem, 5vw, 3.5rem);
}

.telematik-portal-page .faq-accordion {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 0.78rem;
}

.telematik-portal-page .faq-item {
  border: 1px solid #d9e7fb;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(16, 39, 66, 0.06);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.telematik-portal-page .faq-item:hover {
  border-color: #c6dcfa;
  box-shadow: 0 10px 22px rgba(16, 39, 66, 0.09);
}

.telematik-portal-page .faq-question {
  width: 100%;
  border: 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  color: #08285f;
  font: inherit;
  font-weight: 700;
  font-size: 1.02rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
}

.telematik-portal-page .faq-question:focus-visible {
  outline: 2px solid #2f8cff;
  outline-offset: -2px;
}

.telematik-portal-page .faq-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  border: 1px solid #cddff9;
  color: #1f73f1;
  background: #eef5ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.telematik-portal-page .faq-icon svg {
  width: 14px;
  height: 14px;
}

.telematik-portal-page .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
}

.telematik-portal-page .faq-answer p {
  margin: 0;
  padding: 0 1.1rem 1rem;
  color: #40517a;
  line-height: 1.68;
}

.telematik-portal-page .faq-item.is-open .faq-icon {
  transform: rotate(180deg);
  background: #dceaff;
  border-color: #b9d3fb;
}

.telematik-portal-page .hero::before {
  opacity: 0.17;
  z-index: 1;
}

.telematik-portal-page .hero .container {
  position: relative;
  z-index: 2;
}

.telematik-portal-page .hero .container {
  max-width: 940px;
}

.telematik-portal-page .hero .hero-sub {
  max-width: 920px;
}

.telematik-portal-page .hero-kicker {
  margin: 0 auto 0.55rem;
  font-size: clamp(0.92rem, 1.5vw, 1.04rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2f5b97;
}

.telematik-portal-page .hero-actions {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.72rem;
  flex-wrap: wrap;
}

.telematik-portal-page .hero-actions .btn {
  margin: 0;
}

.telematik-portal-page .hero-actions .btn-light {
  box-shadow: none;
}

@media (max-width: 760px) {
  .telematik-portal-page .faq-question {
    font-size: 0.97rem;
    padding: 0.9rem 0.92rem;
  }

  .telematik-portal-page .faq-answer p {
    padding: 0 0.92rem 0.92rem;
  }
}

.telematik-portal-page .gps-solutions .industry-grid {
  grid-auto-rows: 1fr;
}

.telematik-portal-page .gps-solutions .feature-grid,
.telematik-portal-page .gps-solutions .integration-grid {
  grid-auto-rows: 1fr;
}

.telematik-portal-page .gps-solutions .industry-card {
  min-height: 0;
  height: 252px;
  padding: 1.05rem 1.05rem;
  border-radius: 10px;
  border: 1px solid #e1ebfa;
  box-shadow: 0 8px 20px rgba(16, 39, 66, 0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 0.3rem;
}

.telematik-portal-page .gps-solutions .industry-card:hover,
.telematik-portal-page .gps-solutions .feature-card:hover,
.telematik-portal-page .gps-solutions .integration-card:hover {
  transform: translateY(-4px);
  border-color: #b8d7ff;
  box-shadow: 0 16px 36px rgba(18, 92, 184, 0.18);
}

.telematik-portal-page .gps-solutions .industry-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 0.45rem;
  background: transparent;
  border: 0;
  padding: 0;
  border-radius: 0;
}

.telematik-portal-page .gps-solutions .industry-card h3 {
  font-size: 1.02rem;
  line-height: 1.28;
  margin: 0 0 0.16rem;
  min-height: 2.5em;
}

.telematik-portal-page .gps-solutions .industry-card p {
  font-size: 0.88rem;
  line-height: 1.52;
  max-width: none;
  text-wrap: pretty;
  display: block;
  overflow: visible;
}

.telematik-portal-page .gps-solutions .feature-card {
  min-height: 220px;
  height: auto;
  padding: 1rem 0.85rem;
  border-radius: 10px;
  border: 1px solid #e1ebfa;
  box-shadow: 0 8px 20px rgba(16, 39, 66, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.telematik-portal-page .gps-solutions .feature-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 0.62rem;
  background: transparent;
  border: 0;
  padding: 0;
}

.telematik-portal-page .gps-solutions .feature-card h3 {
  font-size: 0.95rem;
  min-height: 2.3em;
  margin-bottom: 0.4rem;
}

.telematik-portal-page .gps-solutions .feature-card p {
  font-size: 0.82rem;
  line-height: 1.5;
  display: block;
  overflow: visible;
}

.telematik-portal-page .gps-solutions .integration-card {
  min-height: 190px;
  height: auto;
  padding: 1.05rem 1.05rem;
  border-radius: 10px;
  border: 1px solid #e1ebfa;
  box-shadow: 0 8px 20px rgba(16, 39, 66, 0.08);
}

.telematik-portal-page .gps-solutions .integration-icon {
  width: 48px;
  height: 48px;
  background: transparent;
  border: 0;
  padding: 0;
}

.telematik-portal-page .gps-solutions .integration-card h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  min-height: 2.4em;
}

.telematik-portal-page .gps-solutions .integration-card p {
  font-size: 0.86rem;
  line-height: 1.5;
  display: block;
  overflow: visible;
}

@media (max-width: 1100px) {
  .telematik-portal-page .gps-solutions .industry-card {
    height: 236px;
  }

  .telematik-portal-page .gps-solutions .feature-card {
    min-height: 205px;
    height: auto;
  }

  .telematik-portal-page .gps-solutions .integration-card {
    min-height: 178px;
    height: auto;
  }
}

@media (max-width: 700px) {
  .telematik-portal-page .gps-solutions .industry-card,
  .telematik-portal-page .gps-solutions .feature-card,
  .telematik-portal-page .gps-solutions .integration-card {
    min-height: 0;
    height: auto;
  }

  .telematik-portal-page .gps-solutions .industry-icon {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 760px) {
  .gps-favorite-link {
    right: 14px;
    top: auto;
    bottom: 78px;
    transform: none;
    min-width: 128px;
    height: 50px;
    grid-template-columns: 34px 1fr;
    padding: 0 0.65rem 0 0.45rem;
  }

  .gps-favorite-link svg {
    width: 20px;
    height: 20px;
  }

  .gps-favorite-link__icon {
    width: 34px;
    height: 34px;
  }

  .gps-favorite-link__text {
    font-size: 0.82rem;
  }

  .gps-favorite-link:hover,
  .gps-favorite-link:focus-visible {
    transform: translateY(-2px);
  }
}
