:root {
  color-scheme: light;
  --bg: #ffffff;
  --paper: #ffffff;
  --band: #f4f8ff;
  --band-strong: #eaf2ff;
  --ink: #06143f;
  --text: #24304f;
  --muted: #61708f;
  --line: #dbe5f6;
  --blue: #0b63f6;
  --blue-strong: #0647c9;
  --blue-soft: #dceaff;
  --sky: #32a8ff;
  --green: #149463;
  --shadow: 0 18px 44px rgba(6, 20, 63, 0.10);
  --radius: 8px;
  --container: 1160px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.68;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

p {
  margin: 0 0 1rem;
}

strong {
  color: var(--ink);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  width: min(var(--container), calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 900;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  box-shadow: 0 12px 28px rgba(11, 99, 246, 0.24);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 0.94rem;
  font-weight: 760;
}

.main-nav a {
  color: var(--ink);
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--blue);
}

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

.header-actions .btn {
  white-space: nowrap;
}

.mobile-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  width: 42px;
  height: 42px;
  border-radius: 8px;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 820;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.btn-primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 14px 28px rgba(11, 99, 246, 0.22);
}

.btn-primary:hover {
  color: #fff;
  background: var(--blue-strong);
}

.btn-secondary {
  color: var(--blue);
  background: #fff;
  border-color: #b9cff4;
}

.btn-secondary:hover {
  background: var(--band);
}

.btn-white {
  color: var(--blue);
  background: #fff;
}

.section {
  padding: 86px 0;
}

.section[id],
.page-section[id] {
  scroll-margin-top: 96px;
}

.section.tight {
  padding: 58px 0;
}

.section.band {
  background: var(--band);
}

.section.blue {
  color: #fff;
  background: linear-gradient(135deg, #0647c9 0%, #0b63f6 58%, #32a8ff 100%);
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  padding: 76px 0 58px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.95fr);
  gap: 56px;
  align-items: center;
}

.hero h1,
.page-hero h1 {
  margin: 0 0 24px;
  color: var(--ink);
  font-size: clamp(2.55rem, 5.4vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-lead,
.page-lead {
  max-width: 720px;
  color: #30405f;
  font-size: clamp(1.05rem, 1.4vw, 1.24rem);
  line-height: 1.62;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.trust-list {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 13px;
  color: var(--ink);
  font-weight: 720;
}

.trust-list li,
.check-list li {
  position: relative;
  padding-left: 30px;
}

.trust-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: inset 0 0 0 5px var(--blue-soft);
}

.hero-visual,
.visual-frame {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-visual {
  padding: 18px;
}

.mini-proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  margin-top: 18px;
}

.mini-proof div {
  padding: 16px 12px 4px;
  border-right: 1px solid var(--line);
}

.mini-proof div:last-child {
  border-right: 0;
}

.mini-proof strong {
  display: block;
  font-size: 1.42rem;
}

.mini-proof span {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.3;
}

.section-head {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-head.left {
  margin-left: 0;
  text-align: left;
}

.section-head h2,
.content h2,
.page-section h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(2rem, 3.8vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-head p,
.content > p,
.page-section > p {
  color: #354562;
  font-size: 1.06rem;
}

.service-grid,
.blog-grid,
.feature-grid,
.usecase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

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

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(6, 20, 63, 0.05);
}

.card.highlight {
  border-color: #99bcff;
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.55rem;
  line-height: 1.18;
}

.card p {
  color: #3b4b68;
}

.icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--blue);
  margin-bottom: 18px;
}

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

.price-line {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin: 22px 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.price-line span {
  color: var(--muted);
  font-weight: 720;
}

.price-line strong {
  font-size: 2.05rem;
  line-height: 1;
}

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

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  box-shadow: 0 10px 28px rgba(6, 20, 63, 0.05);
}

.package-card.featured {
  border-color: #83adff;
  box-shadow: var(--shadow);
}

.package-badge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.package-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.38rem;
  line-height: 1.15;
}

.package-price {
  display: grid;
  gap: 4px;
}

.package-price strong {
  font-size: 2.15rem;
  line-height: 1;
}

.package-price span,
.package-meta {
  color: var(--muted);
  font-weight: 730;
}

.package-card ul {
  margin: 0;
  padding-left: 20px;
}

.package-card li {
  margin-bottom: 7px;
}

.package-actions {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.package-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.94rem;
  text-align: center;
}

.portal-overview .section-head {
  max-width: 930px;
  margin-bottom: 26px;
}

.portal-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 22px;
  align-items: stretch;
  margin-bottom: 26px;
  padding: 26px;
  border: 1px solid #c8d9f7;
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff 0%, #f4f8ff 100%);
  box-shadow: 0 14px 34px rgba(6, 20, 63, 0.06);
}

.portal-panel-text h3 {
  margin: 14px 0 10px;
  color: var(--ink);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.12;
}

.portal-panel-text p {
  margin-bottom: 0;
  color: #33445f;
}

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

.portal-metrics div {
  display: grid;
  align-content: center;
  min-height: 112px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.portal-metrics strong {
  display: block;
  color: var(--blue);
  font-size: 1.35rem;
  line-height: 1.1;
}

.portal-metrics span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 760;
  line-height: 1.28;
}

.portal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.portal-card {
  position: relative;
  display: flex;
  min-height: 86px;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  padding: 15px 16px 15px 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(6, 20, 63, 0.04);
}

.portal-card::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 0 0 5px var(--blue-soft);
  transform: translateY(-50%);
}

.portal-card strong {
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.22;
}

.portal-card span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 720;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1fr);
  gap: 48px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(420px, 1fr) minmax(0, 0.95fr);
}

.content h3,
.page-section h3 {
  margin: 30px 0 10px;
  color: var(--ink);
  font-size: 1.48rem;
  line-height: 1.18;
}

.content ul,
.page-section ul {
  margin: 18px 0 24px;
  padding-left: 22px;
}

.content li,
.page-section li {
  margin-bottom: 8px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.step {
  position: relative;
  padding: 22px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.step span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--blue-soft);
  color: var(--blue);
  font-weight: 900;
  margin-bottom: 14px;
}

.step h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 1.02rem;
}

.comparison {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(6, 20, 63, 0.05);
}

.comparison th,
.comparison td {
  border-bottom: 1px solid var(--line);
  padding: 17px 18px;
  text-align: left;
  vertical-align: top;
}

.comparison th {
  color: var(--ink);
  background: #f8fbff;
}

.comparison th:nth-child(3) {
  color: #fff;
  background: var(--blue);
}

.comparison tr:last-child td {
  border-bottom: 0;
}

.note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.metric {
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.metric strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.metric span {
  color: var(--muted);
  font-weight: 700;
}

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

.article-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 18px;
  background: var(--band);
}

.article-image-link {
  display: block;
  color: inherit;
}

.article-card time,
.meta {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 720;
}

.article-card h3 {
  margin-top: 10px;
}

.article-card h3 a {
  color: var(--ink);
}

.article-card h3 a:hover {
  color: var(--blue);
}

.article-card a:last-child {
  margin-top: auto;
  font-weight: 850;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
}

.pagination a,
.pagination span {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-weight: 850;
}

.pagination span {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

.pagination a:hover {
  border-color: #9ebdff;
  background: var(--band);
  color: var(--blue);
}

.related-posts {
  margin: 42px 0 34px;
  padding: 24px;
  border: 1px solid #c8d9f7;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(6, 20, 63, 0.05);
}

.related-posts h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1.18;
}

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

.related-card {
  display: grid;
  gap: 6px;
  min-height: 138px;
  align-content: start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--band);
}

.related-card strong {
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.26;
}

.related-card span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.42;
}

.related-card:hover {
  border-color: #9ebdff;
  background: #fff;
}

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

.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.faq summary {
  cursor: pointer;
  padding: 19px 22px;
  color: var(--ink);
  font-weight: 850;
}

.faq details div {
  padding: 0 22px 20px;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 42px;
  background: var(--blue);
  color: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.section.blue .cta-panel {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: none;
}

.cta-panel h2 {
  color: #fff;
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.08;
}

.cta-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.page-hero {
  padding: 74px 0 50px;
  background: linear-gradient(180deg, #fff 0%, #f4f8ff 100%);
  border-bottom: 1px solid var(--line);
}

.page-hero .container {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.8fr);
  gap: 46px;
  align-items: center;
}

.page-section {
  max-width: 880px;
  margin: 0 auto;
}

.page-section.wide {
  max-width: none;
}

.toc {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.toc strong {
  display: block;
  margin-bottom: 10px;
}

.toc a {
  display: block;
  padding: 8px 0;
  border-top: 1px solid var(--line);
  font-weight: 750;
}

.glossary-index {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 30px 0 0;
}

.glossary-index a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font-weight: 850;
}

.glossary-index a:hover {
  color: var(--blue);
  border-color: #9ebdff;
  background: var(--band);
}

.glossary-section {
  scroll-margin-top: 100px;
  margin-top: 58px;
}

.glossary-section h2 {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(1.9rem, 3vw, 2.7rem);
}

.glossary-section h2::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--line);
}

.term-list {
  display: grid;
  gap: 16px;
}

.term {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(6, 20, 63, 0.04);
}

.term h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 1.24rem;
  line-height: 1.2;
}

.term p {
  margin-bottom: 0;
}

.term .example {
  margin-top: 12px;
  padding: 12px 14px;
  border-left: 3px solid var(--blue);
  background: var(--band);
  color: #2d3c5a;
  font-size: 0.96rem;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) 300px;
  gap: 48px;
  align-items: start;
}

.article-body {
  color: #2d3c5a;
  font-size: 1.04rem;
}

.article-body h2 {
  margin: 46px 0 16px;
  color: var(--ink);
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 1.12;
}

.article-body h3 {
  margin: 32px 0 10px;
  color: var(--ink);
  font-size: 1.35rem;
}

.article-body ul {
  margin: 0 0 1.2rem;
  padding-left: 1.2rem;
}

.article-callout {
  margin: 32px 0;
  padding: 22px;
  border: 1px solid #b9cff4;
  border-left: 5px solid var(--blue);
  border-radius: 8px;
  background: var(--band);
}

.source-list {
  margin-top: 46px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.source-list h2 {
  margin-top: 0;
  font-size: 1.5rem;
}

.source-list a {
  display: block;
  margin: 8px 0;
  font-weight: 760;
}

.sidebar {
  position: sticky;
  top: 100px;
}

.site-footer {
  background: #06143f;
  color: rgba(255, 255, 255, 0.78);
  padding: 58px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 36px;
}

.site-footer h3,
.site-footer strong {
  color: #fff;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.86);
  display: block;
  margin: 8px 0;
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

.footer-bottom a {
  display: inline;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}

.impressum-plain {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.7;
}

.legal-box {
  padding: 24px;
  background: var(--band);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 100;
  padding: 10px 12px;
  background: var(--ink);
  color: #fff;
}

.skip-link:focus {
  left: 12px;
}

.pmv-page {
  --blue: #075ee8;
  --blue-strong: #0446b5;
  --blue-soft: #e3eeff;
  --band: #f3f7ff;
  --band-strong: #eaf2ff;
  --ink: #061942;
}

.pmv-brand {
  min-width: 0;
  max-width: 430px;
  white-space: nowrap;
  font-size: clamp(0.9rem, 1.3vw, 1.04rem);
}

.pmv-hero {
  position: relative;
  padding: 78px 0 66px;
  background:
    linear-gradient(180deg, #fff 0%, #fff 68%, #f3f7ff 100%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.pmv-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(480px, 1.05fr);
  gap: 46px;
  align-items: center;
}

.pmv-hero h1 {
  margin: 0 0 24px;
  color: var(--ink);
  font-size: clamp(2.35rem, 4.25vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.pmv-hero-copy {
  position: relative;
  z-index: 2;
}

.pmv-hero .hero-actions {
  margin-top: 24px;
}

.pmv-hero-note {
  margin-top: 24px;
  font-size: 1.04rem;
}

.pmv-hero-media {
  padding: 12px;
  border: 1px solid #cfe0fb;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(6, 25, 66, 0.12);
}

.pmv-hero-media img {
  display: block;
  width: 100%;
  border-radius: 6px;
}

.pmv-proof {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

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

.pmv-proof-grid div {
  padding: 22px 24px;
  border-right: 1px solid var(--line);
}

.pmv-proof-grid div:first-child {
  border-left: 1px solid var(--line);
}

.pmv-proof-grid strong {
  display: block;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.15;
}

.pmv-proof-grid span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
}

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

.pmv-audience-grid .card {
  min-height: 100%;
}

.pmv-compare-box {
  padding: 28px;
  border: 1px solid #b9cff4;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.pmv-compare-box h3 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(1.45rem, 2.4vw, 2.05rem);
  line-height: 1.12;
}

.pmv-compare-row {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 15px 0;
  border-top: 1px solid var(--line);
}

.pmv-compare-row span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pmv-compare-row strong {
  font-size: 1rem;
  line-height: 1.35;
}

.pmv-compare-row.bad strong {
  color: #8a2a2a;
}

.pmv-compare-row.good strong {
  color: #0a5f42;
}

.pmv-feature-grid .card {
  border-top: 5px solid var(--blue);
}

.pmv-steps {
  align-items: stretch;
}

.pmv-steps .step {
  min-height: 242px;
  padding: 20px 15px 22px;
  text-align: center;
}

.pmv-steps .step span {
  width: 28px;
  height: 28px;
  margin: 0 auto 9px;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  font-size: 0.82rem;
  box-shadow: 0 10px 22px rgba(11, 99, 246, 0.22);
}

.pmv-step-icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  margin: 0 auto 15px;
  border: 1px solid #b9cff4;
  border-radius: 999px;
  color: var(--blue);
  background: linear-gradient(180deg, #fff 0%, #edf4ff 100%);
  box-shadow: 0 12px 28px rgba(6, 20, 63, 0.07);
}

.pmv-steps .step h3 {
  font-size: 0.98rem;
  line-height: 1.2;
}

.pmv-steps .step p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.91rem;
  font-weight: 660;
  line-height: 1.48;
}

.pmv-pricing .package-card {
  min-height: 100%;
}

.pmv-favorite {
  transform: translateY(-10px);
}

.pmv-favorite::after {
  content: "Bestes Preis-Leistungs-Verhältnis";
  position: absolute;
  top: -14px;
  right: 18px;
  padding: 7px 11px;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(7, 94, 232, 0.24);
}

.pmv-portal-panel {
  background: linear-gradient(135deg, #fff 0%, #eef5ff 100%);
}

.pmv-target-strip-section {
  padding-top: 70px;
}

.pmv-target-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(98px, 1fr));
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff 0%, #f5f9ff 100%);
  box-shadow: 0 12px 32px rgba(6, 20, 63, 0.05);
}

.pmv-target-strip a {
  display: grid;
  min-height: 118px;
  align-content: start;
  justify-items: center;
  gap: 10px;
  padding: 13px 8px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--ink);
  text-align: center;
}

.pmv-target-strip a:hover {
  border-color: #b9cff4;
  background: #fff;
  color: var(--blue);
  box-shadow: 0 8px 22px rgba(6, 20, 63, 0.06);
}

.pmv-target-strip span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid #b9cff4;
  border-radius: 999px;
  color: var(--blue);
  background: var(--blue-soft);
}

.pmv-target-strip strong {
  color: inherit;
  font-size: 0.86rem;
  line-height: 1.18;
}

.pmv-keyword-panel {
  padding: 30px;
  border: 1px solid #c8d9f7;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.pmv-keyword-panel h3 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.12;
}

.pmv-keyword-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pmv-keyword-list span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid #b9cff4;
  border-radius: 999px;
  color: var(--blue);
  background: var(--blue-soft);
  font-size: 0.9rem;
  font-weight: 820;
}

.pmv-table td:first-child {
  color: var(--ink);
  font-weight: 850;
}

.blog-hero {
  padding: 76px 0 58px;
  background: linear-gradient(180deg, #fff 0%, #f3f7ff 100%);
  border-bottom: 1px solid var(--line);
}

.blog-hero .container {
  max-width: 980px;
}

.blog-hero h1 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(2.3rem, 5vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.blog-hero p {
  max-width: 820px;
  color: #30405f;
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
  line-height: 1.62;
}

.blog-back {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--blue);
  font-weight: 850;
}

.article-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.article-meta-row span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 11px;
  border: 1px solid #b9cff4;
  border-radius: 999px;
  color: var(--blue);
  background: var(--blue-soft);
  font-size: 0.84rem;
  font-weight: 820;
}

.section-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-list-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}

.blog-list-head h2 {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: 2rem;
  line-height: 1.12;
}

.blog-list-head p {
  margin: 0;
  color: var(--muted);
  font-weight: 690;
}

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

.blog-list-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(6, 20, 63, 0.05);
}

.blog-list-card > span {
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 900;
}

.blog-list-card h2 {
  margin: 12px 0 10px;
  color: var(--ink);
  font-size: 1.24rem;
  line-height: 1.18;
}

.blog-list-card h2 a {
  color: var(--ink);
}

.blog-list-card h2 a:hover {
  color: var(--blue);
}

.blog-list-card p {
  color: #3b4b68;
}

.blog-read {
  margin-top: auto;
  font-weight: 850;
}

.blog-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
}

.blog-pagination a,
.blog-pagination span {
  display: grid;
  min-width: 78px;
  min-height: 58px;
  place-items: center;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  line-height: 1.1;
  text-align: center;
}

.blog-pagination strong {
  color: inherit;
  font-size: 1.05rem;
  font-weight: 900;
}

.blog-pagination small {
  color: inherit;
  font-size: 0.72rem;
  font-weight: 760;
}

.blog-pagination span {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

.blog-pagination a:hover {
  border-color: #9ebdff;
  background: var(--band);
  color: var(--blue);
}

.blog-layout {
  grid-template-columns: minmax(0, 780px) 320px;
}

.blog-article .article-intro {
  color: #24304f;
  font-size: 1.18rem;
  line-height: 1.7;
}

.blog-article h2 {
  scroll-margin-top: 100px;
}

.blog-package-box {
  margin-bottom: 22px;
  padding: 22px;
  border: 1px solid #b9cff4;
  border-radius: 8px;
  background: linear-gradient(180deg, #fff 0%, #f3f7ff 100%);
  box-shadow: 0 10px 28px rgba(6, 20, 63, 0.05);
}

.blog-package-box h2 {
  margin: 14px 0 10px;
  color: var(--ink);
  font-size: 1.34rem;
  line-height: 1.18;
}

.blog-package-box ul {
  margin: 16px 0 20px;
  padding-left: 20px;
}

.blog-package-box li {
  margin-bottom: 8px;
}

.blog-package-box .btn {
  width: 100%;
}

.blog-faq {
  margin-top: 18px;
}

.editorial-related {
  margin-top: 46px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.editorial-related h2 {
  margin: 10px 0 18px;
  color: var(--ink);
  font-size: 1.65rem;
  line-height: 1.18;
}

.editorial-related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.editorial-related-card {
  display: flex;
  min-height: 152px;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(6, 20, 63, 0.04);
}

.editorial-related-card strong {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.26;
}

.editorial-related-card span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.45;
}

.editorial-related-card:hover {
  border-color: #9ebdff;
  background: var(--band);
}

@media (max-width: 980px) {
  .main-nav {
    position: fixed;
    inset: 76px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .nav-open .main-nav {
    display: flex;
  }

  .main-nav a {
    padding: 12px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .mobile-toggle {
    display: grid;
    place-items: center;
  }

  .header-actions .btn {
    display: none;
  }

  .hero-grid,
  .split,
  .split.reverse,
  .page-hero .container,
  .pmv-hero-grid,
  .portal-panel,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .visual-frame,
  .pmv-hero-media {
    max-width: 720px;
  }

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

  .service-grid,
  .feature-grid,
  .usecase-grid,
  .pmv-audience-grid,
  .blog-grid,
  .blog-list-head,
  .blog-list-grid,
  .editorial-related-grid,
  .related-grid,
  .pricing-grid,
  .metric-row,
  .pmv-proof-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .pmv-proof-grid div,
  .pmv-proof-grid div:first-child {
    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .pmv-favorite {
    transform: none;
  }

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

  .cta-panel {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }

  .blog-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .nav-wrap,
  .container {
    width: min(100% - 28px, var(--container));
  }

  .hero,
  .page-hero {
    padding-top: 52px;
  }

  .pmv-hero {
    padding: 52px 0 50px;
  }

  .pmv-hero h1 {
    font-size: clamp(2.18rem, 12vw, 3.05rem);
  }

  .pmv-brand {
    max-width: 220px;
    white-space: normal;
  }

  .section {
    padding: 62px 0;
  }

  .hero-actions,
  .cta-row {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .steps,
  .mini-proof,
  .portal-grid,
  .portal-metrics {
    grid-template-columns: 1fr;
  }

  .comparison {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .pmv-compare-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .card,
  .portal-panel,
  .pmv-compare-box,
  .pmv-keyword-panel,
  .cta-panel {
    padding: 22px;
  }
}
