:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface-strong: #101729;
  --text: #1a2640;
  --text-soft: #556583;
  --line: #d8e0f0;
  --brand: #007a6c;
  --brand-strong: #005b52;
  --accent: #ff8f3f;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow-soft: 0 14px 34px rgba(16, 23, 41, 0.08);
  --hero-bg: radial-gradient(circle at 16% 16%, rgba(0, 122, 108, 0.14) 0%, rgba(0, 122, 108, 0) 52%), radial-gradient(circle at 82% 10%, rgba(255, 143, 63, 0.14) 0%, rgba(255, 143, 63, 0) 42%), linear-gradient(145deg, #f7fbff 0%, #eef5ff 46%, #f9fcff 100%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Space Grotesk", sans-serif;
  font-size: 17px;
  color: var(--text);
  background: linear-gradient(180deg, #eef3fb 0%, #f7f9fd 30%, #f4f7fb 100%);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
  background: rgba(244, 247, 251, 0.86);
  border-bottom: 1px solid rgba(216, 224, 240, 0.8);
}

.header-row {
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0.55rem;
  padding: 0.75rem 0 0.9rem;
}

.brand {
  justify-content: center;
}

.header-row nav {
  width: 100%;
}

.nav-list {
  justify-content: center;
}

.brand {
  text-decoration: none;
  color: var(--surface-strong);
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.brand-logo {
  height: 34px;
  width: auto;
  display: block;
}

.brand-name {
  font-size: 1.02rem;
}

.hero-claim {
  width: min(520px, 90%);
  height: auto;
  margin: 0.2rem 0 0.9rem;
  opacity: 0.98;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-list a {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-list a:hover,
.nav-list a:focus-visible,
.nav-list a.active {
  color: var(--brand-strong);
}

.hero,
.page-hero {
  padding: 4rem 0 2.6rem;
}

.hero-panel {
  background: var(--hero-bg);
  color: var(--text);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 46px rgba(10, 24, 48, 0.14);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  padding: clamp(1.5rem, 2.4vw, 2.8rem);
  align-items: end;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--brand-strong);
  font-weight: 700;
  margin-bottom: 0.9rem;
}

h1,
h2,
h3 {
  color: var(--surface-strong);
}

.hero h1,
.page-hero h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 4.3vw, 3.85rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.1rem;
  color: var(--surface-strong);
}

.page-hero h1 {
  max-width: none;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
}

.hero p,
.page-hero p {
  color: var(--text-soft);
  max-width: none;
  font-size: 1.12rem;
  margin-bottom: 1.4rem;
}

/* Unterseiten: großes Hero-Bild oben, Text darunter in eigener Box */
.page-hero .hero-grid {
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: start;
}

.page-hero .hero-image-wrap {
  order: 1;
  aspect-ratio: 16 / 7;
  max-height: 460px;
}

.page-hero .hero-grid > div {
  order: 2;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: clamp(0.95rem, 1.5vw, 1.25rem);
  box-shadow: 0 10px 28px rgba(12, 26, 48, 0.08);
}

.page-hero .hero-grid > div .hero-cta {
  margin-top: 0.4rem;
}

/* Startseite: Hero-Bild oben, Logo und Text darunter */
body.home-hero-stacked .hero .hero-grid {
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: start;
}

body.home-hero-stacked .hero .hero-image-wrap {
  order: 1;
  aspect-ratio: 16 / 7;
  max-height: 480px;
}

body.home-hero-stacked .hero .hero-grid > div {
  order: 2;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: clamp(0.95rem, 1.4vw, 1.2rem);
  box-shadow: 0 10px 28px rgba(12, 26, 48, 0.08);
}


body.home-hero-stacked .hero-claim {
  margin-left: auto;
  margin-right: auto;
}

.hero-image-wrap {
  aspect-ratio: 3 / 2;
  min-height: 0;
  max-height: 420px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}

.hero-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(14, 28, 52, 0.18) 100%);
  pointer-events: none;
}

.hero-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-image.is-clickable {
  cursor: zoom-in;
}

.hero-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3vw, 2rem);
  background: rgba(8, 13, 24, 0.86);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.hero-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.hero-lightbox__inner {
  position: relative;
  width: fit-content;
  max-width: min(1400px, 96vw);
}

.hero-lightbox__image {
  width: auto;
  height: auto;
  max-width: min(1400px, 96vw);
  max-height: 86vh;
  border-radius: 14px;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.45);
}

.hero-lightbox__close {
  position: absolute;
  top: -0.7rem;
  right: -0.7rem;
  width: 2.2rem;
  height: 2.2rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #0d1a2f;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

.hero-lightbox__caption {
  margin-top: 0.7rem;
  color: #e9f0ff;
  font-size: 0.95rem;
  text-align: center;
}

body.lightbox-open {
  overflow: hidden;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  border-radius: 11px;
  font-size: 0.93rem;
  font-weight: 700;
  padding: 0.78rem 1.15rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand), #0b9b89);
  color: #f0fdfa;
  box-shadow: 0 10px 24px rgba(0, 122, 108, 0.38);
}

.btn-secondary {
  color: #12325f;
  border: 1px solid #bfd2ea;
  background: rgba(255, 255, 255, 0.9);
}

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

main section {
  padding: 4rem 0;
}

.section-head {
  margin-bottom: 1.8rem;
  max-width: 78ch;
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 0.8rem;
  display: block;
}

h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

.section-head p,
.copy {
  color: var(--text-soft);
  font-size: 1.08rem;
}

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

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.3rem;
  box-shadow: var(--shadow-soft);
}

.card h3 {
  font-size: 1.12rem;
  margin-bottom: 0.5rem;
}

.card p,
.card li {
  font-size: 1rem;
  color: var(--text-soft);
}

.card ul {
  padding-left: 1rem;
}

.product-card {
  overflow: hidden;
}

.product-image {
  width: calc(100% + 2.6rem);
  margin: -1.3rem -1.3rem 1rem;
  height: 200px;
  display: block;
  object-fit: contain;
  object-position: center;
  padding: 0.7rem;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.site-shot {
  width: calc(100% + 2.6rem);
  margin: -1.3rem -1.3rem 0.9rem;
  height: 170px;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  background: #eaf0fb;
}

.site-logo {
  width: calc(100% + 2.6rem);
  margin: -1.3rem -1.3rem 0.9rem;
  height: 140px;
  object-fit: contain;
  padding: 0.9rem;
  border-bottom: 1px solid var(--line);
  background: #f6f9ff;
}

.ref-logo-link {
  display: block;
  width: calc(100% + 2.6rem);
  margin: -1.3rem -1.3rem 0.9rem;
  min-height: 140px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #f8fbff 0%, #f3f7ff 100%);
  text-decoration: none;
}

.ref-logo-link .site-logo {
  width: 100%;
  margin: 0;
  border-bottom: 0;
  background: transparent;
}

.site-logo--wide {
  height: 170px;
  padding: 0.7rem 1.1rem;
}

.mini-product-nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.mini-product-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-decoration: none;
  color: var(--surface-strong);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.55rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.mini-product-item img {
  display: block;
  width: 100%;
  height: 62px;
  object-fit: contain;
  object-position: center;
  background: #ffffff;
  padding: 0.15rem;
  border-radius: 8px;
  margin-bottom: 0.4rem;
}

.mini-product-item span {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
}

.pill-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.pill-btn {
  border: 1px solid var(--line);
  background: #eef3fb;
  color: var(--text-soft);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
}

.pill-btn.active {
  background: #101729;
  color: #ecf4ff;
  border-color: #101729;
}

.product-grid .product-card h3 {
  margin-top: 0.2rem;
}

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

.logo-tile {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.8rem;
  box-shadow: var(--shadow-soft);
}

.logo-tile img {
  width: 100%;
  height: 74px;
  object-fit: contain;
}

.logo-tile h3 {
  font-size: 1.02rem;
  margin-bottom: 0.35rem;
}

.logo-tile p {
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.5;
}

.logo-note {
  margin-top: 0.85rem;
}

.partner-card .partner-mark {
  width: 100%;
  height: 58px;
  object-fit: contain;
  margin-bottom: 0.7rem;
}

.partner-mark-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 0.7rem;
}

.partner-mark-duo .partner-mark {
  margin-bottom: 0;
}

.partner-copy {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-top: 0.2rem;
  margin-bottom: 0.45rem;
}

.badge {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--brand-strong);
  background: rgba(0, 122, 108, 0.12);
  border-radius: 999px;
  padding: 0.28rem 0.62rem;
  display: inline-flex;
  margin-bottom: 0.7rem;
  font-weight: 700;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.block {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  box-shadow: var(--shadow-soft);
}

.block h3 {
  font-size: 1.2rem;
  margin-bottom: 0.55rem;
}

.block p,
.block li {
  color: var(--text-soft);
  font-size: 1rem;
}

.story-block {
  padding: 1.7rem;
  max-width: 100%;
}

.story-title {
  font-size: clamp(2.1rem, 4.6vw, 3.2rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
  margin-bottom: 1.15rem;
}

.story-block p {
  font-size: 1.08rem;
  line-height: 1.72;
  margin-bottom: 1rem;
  max-width: 70ch;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.story-block h3 {
  font-size: clamp(1.2rem, 2.3vw, 1.46rem);
  line-height: 1.3;
  margin: 1.25rem 0 0.7rem;
  max-width: 32ch;
}

.story-block ul {
  max-width: 70ch;
  margin: 0.3rem 0 1.05rem;
  padding-left: 1.2rem;
}

.story-block li {
  margin-bottom: 0.42rem;
  line-height: 1.62;
  overflow-wrap: anywhere;
  hyphens: auto;
}

@media (max-width: 820px) {
  .story-title {
    line-height: 1.18;
  }

  .story-block p,
  .story-block li {
    font-size: 1.02rem;
    line-height: 1.66;
    max-width: none;
  }

  .story-block h3 {
    line-height: 1.34;
    margin-top: 1.1rem;
    max-width: none;
  }
}

.block ul {
  padding-left: 1rem;
}

.offer-box {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid #cfe0f6;
  border-radius: 14px;
  padding: 1rem 1.1rem;
  box-shadow: 0 10px 22px rgba(18, 32, 58, 0.06);
}

.offer-box h3 {
  margin-bottom: 0.45rem;
}

.offer-box p {
  color: #415a78;
}

.offer-points {
  margin: 0.55rem 0 0.7rem;
  padding-left: 1rem;
}

.offer-points li {
  color: #2f4968;
  margin: 0.2rem 0;
}

.offer-box-compact {
  margin: 0.8rem 0;
}

.trust-section {
  padding-top: 0.5rem;
}

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

.trust-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 0.95rem;
  box-shadow: var(--shadow-soft);
}

.trust-kicker {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-strong);
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.trust-item strong {
  font-size: 0.95rem;
  color: var(--surface-strong);
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.2rem;
  box-shadow: var(--shadow-soft);
}

.faq-item h3 {
  font-size: 1.08rem;
  margin-bottom: 0.45rem;
}

.faq-item p {
  color: var(--text-soft);
  font-size: 1rem;
}

.mobile-cta {
  display: none;
}

.cta-band {
  background: #101729;
  color: #e9f3ff;
  border-radius: var(--radius-md);
  padding: 1.4rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.cta-band h3 {
  color: #e9f3ff;
  margin-bottom: 0.3rem;
}

.cta-band p {
  color: rgba(233, 243, 255, 0.88);
}

.cta-band-link {
  color: #e9f3ff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cta-band-link:hover,
.cta-band-link:focus-visible {
  color: #ffffff;
}

.sylt-link-row {
  margin-top: 1rem;
}

.sylt-partner-highlight {
  margin: 0 0 1rem;
  border: 1px solid #cfe0ff;
  background: linear-gradient(180deg, #f7fbff 0%, #f2f7ff 100%);
}

.sylt-partner-highlight h3 {
  margin-top: 0.1rem;
}

.contact-list {
  list-style: none;
  display: grid;
  gap: 0.9rem;
}

.contact-list strong {
  font-size: 0.78rem;
  color: var(--brand-strong);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
}

.contact-list a,
.contact-list span {
  color: var(--surface-strong);
  text-decoration: none;
  font-weight: 600;
}

.compact-steps {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.compact-steps li {
  margin: 0;
  padding: 0.5rem 0.65rem;
  border: 1px solid #dbe4f1;
  border-radius: 10px;
  background: #fbfdff;
  color: #334863;
  font-size: 0.98rem;
  line-height: 1.45;
}

.compact-steps li strong {
  color: #1f3553;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.38rem 0.68rem;
  background: #fff;
  color: var(--surface-strong);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
}

.social-link img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
  filter: grayscale(1) brightness(0.2);
  opacity: 0.9;
}

.social-link:hover {
  border-color: rgba(0, 122, 108, 0.45);
  box-shadow: 0 4px 12px rgba(16, 23, 41, 0.08);
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-feedback {
  display: none;
  border-radius: 10px;
  padding: 0.75rem 0.85rem;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.form-feedback-success {
  display: block;
  background: rgba(0, 122, 108, 0.12);
  border: 1px solid rgba(0, 122, 108, 0.35);
  color: #005b52;
}

.form-feedback-error {
  display: block;
  background: rgba(181, 48, 48, 0.1);
  border: 1px solid rgba(181, 48, 48, 0.35);
  color: #7c1f1f;
}

label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
  color: var(--surface-strong);
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fbfdff;
  color: var(--surface-strong);
  font: inherit;
  padding: 0.72rem 0.8rem;
}

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

input:focus,
textarea:focus {
  outline: 2px solid rgba(0, 122, 108, 0.2);
  border-color: rgba(0, 122, 108, 0.55);
}

.footer {
  padding: 2.2rem 0 3rem;
}

.footer-wrap {
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  color: var(--text-soft);
  font-size: 0.88rem;
}

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

.footer-links a {
  color: var(--text-soft);
  text-decoration: none;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin-bottom: 1rem;
}

.breadcrumbs a {
  color: #2d5f96;
  text-decoration: none;
  font-size: 0.85rem;
}

.breadcrumbs li {
  color: #4e6f96;
  font-size: 0.85rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .cards,
  .two-col {
    grid-template-columns: 1fr;
  }

  .mini-product-nav {
    grid-template-columns: repeat(4, minmax(100px, 1fr));
  }

  .hero-image-wrap {
    aspect-ratio: 16 / 10;
    max-height: 340px;
  }

  .page-hero .hero-image-wrap {
    aspect-ratio: 16 / 9;
    max-height: 320px;
  }
}

@media (max-width: 620px) {
  .nav-list {
    gap: 0.55rem 0.9rem;
  }

  .header-row {
    padding: 0.75rem 0;
  }

  body {
    padding-bottom: 74px;
  }

  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 120;
    background: rgba(10, 18, 32, 0.95);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(216, 224, 240, 0.22);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    padding: 0.7rem 0.9rem calc(0.7rem + env(safe-area-inset-bottom));
  }

  .mobile-cta-btn {
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 10px;
    text-align: center;
    padding: 0.68rem 0.55rem;
  }

  .mobile-cta-primary {
    background: linear-gradient(135deg, var(--brand), #0b9b89);
    color: #f0fdfa;
  }

  .mobile-cta-secondary {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(246, 248, 255, 0.32);
    color: #eef5ff;
  }
}

/* --- Startseiten Varianten (nur index-a/b/c) --- */
.variant-switch {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  padding-top: 1.1rem;
}

.variant-switch a {
  text-decoration: none;
  border: 1px solid #c7d6eb;
  background: #ffffff;
  color: #18416f;
  border-radius: 999px;
  padding: 0.38rem 0.78rem;
  font-size: 0.82rem;
  font-weight: 700;
}

body.variant-a .hero-panel {
  background: linear-gradient(145deg, rgba(255,255,255,0.95) 0%, rgba(242,248,255,0.95) 100%);
  border: 1px solid #d6e3f5;
  box-shadow: 0 20px 48px rgba(23, 42, 70, 0.12);
}

body.variant-a .hero-image-wrap::after {
  background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(17, 34, 58, 0.14) 100%);
}

body.variant-a .btn-primary {
  background: linear-gradient(135deg, #0b8f80, #10a696);
}

body.variant-a .hero h1 {
  font-size: clamp(1.85rem, 2.8vw, 2.8rem);
  max-width: none;
  line-height: 1.15;
  margin-bottom: 0.65rem;
}

body.variant-a .hero p {
  font-size: 0.98rem;
  line-height: 1.5;
  max-width: none;
  margin-bottom: 0.75rem;
  color: #3e5677;
}

/* Einheitliche Hero-Typo auf allen Unterseiten: mehr Breite, weniger harte Umbrüche */
body.variant-a .page-hero h1 {
  font-size: clamp(1.55rem, 2.2vw, 2.1rem);
  line-height: 1.2;
  max-width: none;
  margin-bottom: 0.65rem;
}

body.variant-a .page-hero p {
  font-size: 0.96rem;
  line-height: 1.5;
  max-width: none;
  margin-bottom: 0.75rem;
}

body.variant-a .page-hero .hero-grid > div {
  padding: clamp(0.85rem, 1.15vw, 1.05rem);
}

body.variant-a .section-head {
  max-width: 86ch;
}

body.variant-a .section-head p,
body.variant-a .copy {
  font-size: 1.08rem;
  line-height: 1.78;
  color: #506381;
}

body.variant-a .cards {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.15rem;
}

body.variant-a .cards-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.variant-a .card {
  border: 1px solid #d3deef;
  border-radius: 16px;
  padding: 1.35rem 1.35rem 1.25rem;
  box-shadow: 0 12px 30px rgba(15, 30, 56, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

body.variant-a .card:hover {
  transform: translateY(-3px);
  border-color: #bfd1ea;
  box-shadow: 0 18px 34px rgba(12, 34, 64, 0.12);
}

body.variant-a .card h3 {
  font-size: 1.18rem;
  line-height: 1.28;
  margin-bottom: 0.55rem;
  color: #152846;
}

body.variant-a .card p,
body.variant-a .card li {
  font-size: 1.02rem;
  line-height: 1.72;
  color: #4b5f7d;
}

body.variant-a .card a {
  font-weight: 700;
  text-decoration: none;
  color: #0d6f92;
}

body.variant-a .card a:hover,
body.variant-a .card a:focus-visible {
  text-decoration: underline;
}

body.variant-a .cards-modern {
  counter-reset: service-card;
}

body.variant-a .cards-modern .card {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #fafcff 100%);
  border: 1px solid #dde6f2;
  padding: 1.35rem 1.35rem 1.2rem;
  border-radius: 22px;
  overflow: hidden;
  min-height: 240px;
  box-shadow: 0 10px 24px rgba(18, 30, 51, 0.06);
}

body.variant-a .cards-modern .card::before {
  counter-increment: service-card;
  content: "0" counter(service-card);
  position: absolute;
  top: 0.9rem;
  right: 0.95rem;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #7e8ea5;
  background: #f3f6fb;
  border: 1px solid #e2e8f2;
}

body.variant-a .cards-modern .card h3 {
  margin-top: 0.2rem;
  margin-bottom: 0.55rem;
  padding-right: 2.4rem;
  font-size: 1.22rem;
  letter-spacing: -0.015em;
}

body.variant-a .cards-modern .card p:last-child {
  margin-top: 0.85rem;
  margin-bottom: 0;
}

body.variant-a .cards-modern .card p:last-child a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: #0b4c82;
  font-size: 0.96rem;
  font-weight: 700;
  text-decoration: none;
}

body.variant-a .cards-modern .card p:last-child a::after {
  content: "›";
  font-size: 1.05rem;
  line-height: 1;
}

body.variant-a .cards-modern .card:hover {
  transform: translateY(-3px);
  border-color: #cad7e8;
  box-shadow: 0 16px 32px rgba(18, 35, 61, 0.1);
}

body.variant-a .cards-modern .card p:last-child a:hover,
body.variant-a .cards-modern .card p:last-child a:focus-visible {
  text-decoration: underline;
}

body.variant-a .section-divider {
  position: relative;
}

body.variant-a .section-divider::before {
  content: "";
  position: absolute;
  top: -0.9rem;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(165, 183, 208, 0) 0%, rgba(165, 183, 208, 0.7) 20%, rgba(165, 183, 208, 0.7) 80%, rgba(165, 183, 208, 0) 100%);
}

body.variant-a .quick-facts {
  padding-top: 1rem;
  padding-bottom: 2rem;
}

body.variant-a .quick-facts-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.65rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

body.variant-a .quick-fact-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex: 0 0 auto;
  border: 1px solid #c7ccd4;
  background: #ffffff;
  color: #1d1d1f;
  border-radius: 999px;
  padding: 0.48rem 0.82rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.005em;
  box-shadow: 0 6px 16px rgba(17, 24, 39, 0.08);
}

body.variant-a .quick-fact-pill::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: #0071e3;
  box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.14);
}

body.variant-a .quick-fact-pill:hover {
  border-color: #b7c0cc;
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(17, 24, 39, 0.12);
}

body.variant-a .section-divider-spaced::before {
  top: 0.2rem;
}

body.variant-b {
  background: linear-gradient(180deg, #edf3ff 0%, #f3f7ff 44%, #edf3ff 100%);
}

body.variant-b .hero-panel {
  background: linear-gradient(135deg, #0f2039 0%, #1d3e66 44%, #286f83 100%);
  border: 1px solid rgba(90, 132, 182, 0.45);
  box-shadow: 0 30px 64px rgba(10, 21, 38, 0.34);
}

body.variant-b .eyebrow {
  color: #cde6ff;
}

body.variant-b .btn-primary {
  background: linear-gradient(135deg, #ff8a2a, #ffc04f);
  color: #102039;
  box-shadow: 0 14px 28px rgba(255, 138, 42, 0.34);
}

body.variant-b .btn-secondary {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.55);
  color: #eff6ff;
}

body.variant-b .hero h1,
body.variant-b .page-hero h1 {
  color: #eef6ff;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

body.variant-b .hero p,
body.variant-b .page-hero p {
  color: rgba(232, 242, 255, 0.94);
}

body.variant-b .hero-image-wrap {
  border-radius: 18px;
  border: 1px solid rgba(199, 223, 255, 0.26);
}

body.variant-b .hero-image-wrap::after {
  background: linear-gradient(180deg, rgba(6, 18, 35, 0.04) 0%, rgba(8, 26, 48, 0.2) 100%);
}

body.variant-b .section-label {
  color: #0f4d9b;
}

body.variant-b .card {
  border: 1px solid #c2d4ec;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
  box-shadow: 0 14px 32px rgba(13, 33, 66, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

body.variant-b .card:hover {
  transform: translateY(-4px);
  border-color: #99b8e0;
  box-shadow: 0 22px 40px rgba(13, 33, 66, 0.18);
}

body.variant-b .trust-item {
  border: 1px solid #c2d6ef;
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

body.variant-b .quick-fact-pill::before {
  background: #ff8a2a;
  box-shadow: 0 0 0 3px rgba(255, 138, 42, 0.2);
}

body.variant-c {
  background: linear-gradient(180deg, #f8f8f6 0%, #f3f3f1 46%, #f8f8f6 100%);
  font-family: "Avenir Next", "Helvetica Neue", "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;
}

body.variant-c .hero-panel {
  background: #fdfdfb;
  border: 1px solid #dad8d2;
  box-shadow: 0 10px 24px rgba(20, 20, 18, 0.08);
}

body.variant-c .hero-image-wrap::after {
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(22, 22, 19, 0.12) 100%);
}

body.variant-c .hero h1,
body.variant-c .page-hero h1 {
  font-size: clamp(2.25rem, 4.8vw, 4.35rem);
  letter-spacing: -0.03em;
  color: #11110f;
  font-family: "Fraunces", serif;
  font-weight: 600;
}

body.variant-c .hero p,
body.variant-c .page-hero p,
body.variant-c .copy,
body.variant-c .section-head p {
  color: #3e3d39;
}

body.variant-c .eyebrow,
body.variant-c .section-label,
body.variant-c .trust-kicker,
body.variant-c .badge {
  color: #6c5a36;
}

body.variant-c .btn-primary {
  background: linear-gradient(135deg, #1b1b18, #3a3830);
  color: #f9f6ef;
  box-shadow: 0 10px 20px rgba(22, 22, 18, 0.2);
}

body.variant-c .btn-secondary {
  background: #f4f1e9;
  border-color: #cdc6b8;
  color: #2b2a25;
}

body.variant-c .card {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(24, 24, 21, 0.05);
  border: 1px solid #d7d2c6;
  background: #fffefb;
  padding: 1.25rem 1.2rem;
}

body.variant-c .section-label {
  letter-spacing: 0.11em;
}

body.variant-c .trust-item {
  border: 1px solid #d7d2c6;
  background: #fffefb;
}

body.variant-c .quick-fact-pill {
  border-color: #d2ccbf;
  background: #fffdf7;
  color: #2f2d28;
  box-shadow: 0 4px 10px rgba(18, 18, 16, 0.06);
}

body.variant-c .quick-fact-pill::before {
  background: #9e7e3b;
  box-shadow: 0 0 0 3px rgba(158, 126, 59, 0.18);
}


/* Variant C refresh: Apple Support inspired */
body.variant-c {
  background: #f5f5f7;
  color: #1d1d1f;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
}

body.variant-c .site-header {
  background: rgba(251, 251, 253, 0.9);
  border-bottom: 1px solid #e5e5e7;
  backdrop-filter: saturate(180%) blur(18px);
}

body.variant-c .brand,
body.variant-c .brand-name {
  color: #1d1d1f;
}

body.variant-c .nav-list a {
  color: #424245;
  font-size: 0.87rem;
  font-weight: 500;
}

body.variant-c .nav-list a:hover,
body.variant-c .nav-list a:focus-visible,
body.variant-c .nav-list a.active {
  color: #06c;
}

body.variant-c .hero,
body.variant-c .page-hero {
  padding-top: 2.8rem;
}

body.variant-c .hero-panel {
  background: #fff;
  border: 1px solid #e8e8ed;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

body.variant-c .hero .hero-grid > div {
  text-align: center;
}

body.variant-c .hero .eyebrow {
  color: #6e6e73;
  letter-spacing: 0.04em;
  font-size: 0.8rem;
}

body.variant-c .hero h1,
body.variant-c .page-hero h1 {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  color: #1d1d1f;
  letter-spacing: -0.02em;
}

body.variant-c .hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.08;
}

body.variant-c .page-hero h1 {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
}

body.variant-c .hero p,
body.variant-c .page-hero p,
body.variant-c .copy,
body.variant-c .section-head p {
  color: #424245;
}

body.variant-c .hero .hero-cta {
  justify-content: center;
}

body.variant-c .btn-primary {
  background: #06c;
  color: #fff;
  border: 1px solid #06c;
  box-shadow: none;
}

body.variant-c .btn-primary:hover,
body.variant-c .btn-primary:focus-visible {
  background: #0077ed;
  border-color: #0077ed;
}

body.variant-c .btn-secondary {
  background: #fff;
  color: #06c;
  border: 1px solid #d2d2d7;
}

body.variant-c .btn-secondary:hover,
body.variant-c .btn-secondary:focus-visible {
  border-color: #06c;
}

body.variant-c .hero-image-wrap {
  border-radius: 20px;
  border: 1px solid #ececf0;
}

body.variant-c .hero-image-wrap::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 40%, rgba(0, 0, 0, 0.06) 100%);
}

body.variant-c .section-label {
  color: #6e6e73;
  letter-spacing: 0.06em;
}

body.variant-c .section-head h2 {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

body.variant-c .trust-item {
  border: 1px solid #e5e5ea;
  background: #fff;
  box-shadow: none;
  border-radius: 16px;
}

body.variant-c .trust-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #005bb5;
  background: rgba(0, 102, 204, 0.08);
  border: 1px solid rgba(0, 102, 204, 0.22);
  border-radius: 999px;
  padding: 0.24rem 0.56rem;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  font-weight: 800;
  margin-bottom: 0.55rem;
}

body.variant-c .trust-kicker::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: #06c;
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.16);
}

body.variant-c .trust-item strong {
  display: block;
  font-size: 1.12rem;
  line-height: 1.52;
  color: #1d1d1f;
  font-weight: 620;
}

body.variant-c .quick-fact-pill {
  border: 1px solid #d2d2d7;
  background: #fff;
  color: #1d1d1f;
  box-shadow: none;
}

body.variant-c .quick-fact-pill::before {
  background: #06c;
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.14);
}

body.variant-c .cards {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.1rem;
}

body.variant-c .cards-home-services {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.variant-c .cards .card {
  position: relative;
  border-radius: 22px;
  border: 1px solid #e2e2e8;
  background: linear-gradient(180deg, #ffffff 0%, #fcfcfd 100%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.035);
  padding: 1.35rem 1.25rem 1.2rem;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

body.variant-c .cards .card:hover {
  transform: translateY(-4px);
  border-color: #cfd0d7;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.085);
}

body.variant-c .cards .card .badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.22rem 0.58rem;
  border-radius: 999px;
  background: #eef5ff;
  border: 1px solid #c9dcff;
  color: #205ea9;
  font-size: 0.72rem;
  letter-spacing: 0.075em;
  font-weight: 750;
  margin-bottom: 0.72rem;
}

body.variant-c .cards .card h3 {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  color: #141416;
  font-size: 1.34rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.24;
  margin-bottom: 0.62rem;
}

body.variant-c .cards .card p,
body.variant-c .cards .card li {
  color: #4a4a51;
  font-size: 1rem;
  line-height: 1.56;
}

body.variant-c .cards .card p:last-child a {
  color: #06c;
  border-bottom: none;
  text-decoration: none;
  font-weight: 620;
}

body.variant-c .cards .card p:last-child a::after {
  content: "›";
}

body.variant-c .cards .card p:last-child a:hover,
body.variant-c .cards .card p:last-child a:focus-visible {
  color: #0077ed;
  text-decoration: underline;
}

@media (max-width: 1100px) {
  body.variant-c .cards-home-services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  body.variant-c .cards-home-services {
    grid-template-columns: 1fr;
  }
}


/* Mobile / Tablet Hamburger Menu */
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid #d2d2d7;
  background: #fff;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #1d1d1f;
}

.menu-toggle:focus-visible {
  outline: 2px solid rgba(0, 102, 204, 0.3);
  outline-offset: 2px;
}

.menu-toggle-icon,
.menu-toggle-icon::before,
.menu-toggle-icon::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
  content: "";
}

.menu-toggle-icon::before {
  transform: translateY(-6px);
}

.menu-toggle-icon::after {
  transform: translateY(4px);
}

.site-header.nav-open .menu-toggle-icon {
  background: transparent;
}

.site-header.nav-open .menu-toggle-icon::before {
  transform: translateY(0) rotate(45deg);
}

.site-header.nav-open .menu-toggle-icon::after {
  transform: translateY(-2px) rotate(-45deg);
}

@media (max-width: 1024px) {
  .header-row {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem;
  }

  .brand {
    justify-content: flex-start;
  }

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

  .header-row nav {
    width: 100%;
    display: none;
  }

  .site-header.nav-open .header-row nav {
    display: block;
  }

  .nav-list {
    justify-content: flex-start;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid #e5e5ea;
    padding-top: 0.45rem;
    margin-top: 0.25rem;
  }

  .nav-list li {
    width: 100%;
  }

  .nav-list a {
    display: block;
    width: 100%;
    padding: 0.72rem 0.2rem;
    font-size: 1rem;
  }
}


/* Punkte vor Labels/Pills global entfernen */
.quick-fact-pill::before,
.trust-kicker::before,
.badge::before {
  content: none !important;
  display: none !important;
}

body.home-hero-stacked .hero-claim-simple {
  width: min(150px, 36vw);
  height: auto;
}


/* Mascot component */
.mascot-row {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-top: 0.45rem;
  padding-bottom: 0.25rem;
}

.mascot {
  display: inline-flex;
  align-items: flex-end;
  gap: 0.45rem;
  max-width: 150px;
  margin-top: 0;
}

.mascot img {
  display: block;
  width: 100%;
  max-width: 116px;
  height: auto;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.12));
}

.mascot-bubble {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid #d8dbe2;
  border-radius: 999px;
  padding: 0.28rem 0.54rem;
  font-size: 0.76rem;
  line-height: 1.2;
  color: #1d1d1f;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.07);
  white-space: nowrap;
}

.mascot--hero {
  margin-left: auto;
}

.mascot--inline {
  position: static;
}

.mascot--legal {
  max-width: 102px;
}

.mascot--standard img { max-width: 112px; }
.mascot--business img { max-width: 104px; }
.mascot--private img { max-width: 112px; }
.mascot--partner img { max-width: 108px; }

@media (max-width: 1024px) {
  .mascot-row {
    justify-content: flex-start;
    padding-top: 0.35rem;
  }

  .mascot {
    max-width: 128px;
  }

  .mascot img {
    max-width: 96px;
  }

  .mascot-bubble {
    font-size: 0.74rem;
    padding: 0.26rem 0.5rem;
  }
}

@media (max-width: 620px) {
  .mascot-row {
    justify-content: flex-start;
    padding-top: 0.25rem;
  }

  .mascot {
    max-width: 110px;
  }

  .mascot img {
    max-width: 82px;
  }

  .mascot-bubble {
    font-size: 0.71rem;
    white-space: normal;
    max-width: 120px;
  }
}


/* Global hero stack: image first, text below (all pages) */
.hero .hero-grid,
.page-hero .hero-grid {
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: start;
}

.hero .hero-image-wrap,
.page-hero .hero-image-wrap {
  order: 1;
  aspect-ratio: 16 / 7;
  max-height: 480px;
}

.hero .hero-grid > div,
.page-hero .hero-grid > div {
  order: 2;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: clamp(0.95rem, 1.5vw, 1.25rem);
  box-shadow: 0 10px 28px rgba(12, 26, 48, 0.08);
  max-width: none;
}

/* Test in index-a: mascot inset placement */
.mascot-row--inset {
  justify-content: center;
  margin: 1.25rem auto 2rem;
}

.mascot-row--inset .mascot {
  gap: 0.6rem;
}

.mascot-row--inset .mascot img {
  max-width: 108px;
}

@media (max-width: 820px) {
  .mascot-row--inset {
    justify-content: flex-start;
    margin: 1rem 0 1.5rem;
  }

  .mascot-row--inset .mascot img {
    max-width: 88px;
  }
}

/* Hero cleanup: remove blue primary button in hero blocks */
.hero-cta .btn-primary {
  display: none;
}

/* Hero cleanup: hide all hero buttons */
.hero-cta {
  display: none;
}

/* DPP Partner page extensions */
.dpp-anchor-nav {
  margin-top: 1.05rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.dpp-anchor-nav a {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.72rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--surface-strong);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.dpp-anchor-nav a:hover,
.dpp-anchor-nav a:focus-visible {
  border-color: #9ebad8;
  background: #f4f9ff;
}

.dpp-image-frame {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.dpp-image-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.dpp-image-frame figcaption {
  padding: 0.7rem 0.95rem 0.9rem;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.block .dpp-image-frame {
  margin: 0 0 0.85rem;
}

.dpp-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

@media (max-width: 820px) {
  .dpp-anchor-nav {
    margin-top: 0.8rem;
  }

  .dpp-anchor-nav a {
    font-size: 0.86rem;
    padding: 0.4rem 0.62rem;
  }
}
