/* ============================================================
   RITTER WEBSERVICE — styles.css
   Branding: Navy #071B3A · Blue #2487FF · BG #F5F8FC
   ============================================================ */
:root {
  --navy:    #071B3A;
  --navy2:   #0D2D5E;
  --blue:    #2487FF;
  --blue2:   #62B1FF;
  --bg:      #F5F8FC;
  --surface: #FFFFFF;
  --text:    #0F172A;
  --muted:   #64748B;
  --line:    #DFE8F5;
  --shadow:  0 30px 90px rgba(7, 27, 58, .12);
  --serif:   'DM Serif Display', Georgia, serif;
  --sans:    Inter, system-ui, -apple-system, sans-serif;
  --radius:  28px;
}

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

/* Critical: prevent display:grid/flex from overriding [hidden] */
[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

/* ── UNIVERSAL FORM CONTROLS ─────────────────────────────── */
/* accent-color: native browser rendering, zero repaint bugs  */
input[type="checkbox"],
input[type="radio"] {
  accent-color: var(--blue);
  width: 17px;
  height: 17px;
  cursor: pointer;
  flex-shrink: 0;
  vertical-align: text-bottom;
}

/* Colour variants for briefing feature tiers */
.bf-feat-medium input[type="checkbox"] {
  accent-color: #22c55e;
}

.bf-feat-expert input[type="checkbox"] {
  accent-color: #f59e0b;
}

.bf-feat-indiv  input[type="checkbox"] {
  accent-color: #ef4444;
}

/* ── BODY / PAGE BACKGROUND ──────────────────────────────── */
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background:
    linear-gradient(180deg,
      #e8f2ff 0%,
      #f0f6ff 12%,
      #f8fbff 28%,
      #ffffff 48%,
      #f5f8fc 64%,
      #eef5ff 80%,
      #f5f8fc 100%
    );
  background-attachment: fixed;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 6rem);
  letter-spacing: -.04em;
  font-weight: 400;
}

h1 em {
  font-style: italic;
  color: var(--blue);
}

h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.2vw, 3.8rem);
  letter-spacing: -.03em;
  font-weight: 400;
}

h3 {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -.01em;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.lead {
  max-width: 560px;
  margin: 20px 0 32px;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.button, .nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s;
  text-decoration: none;
}

.nav-cta {
  padding: 10px 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--navy2));
  font-size: .88rem;
}

.button {
  padding: 14px 26px;
}

.primary {
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--navy2));
  box-shadow: 0 14px 36px rgba(36, 135, 255, .28);
}

.secondary {
  color: var(--navy);
  background: white;
  border: 1px solid var(--line);
}

.button:hover, .nav-cta:hover {
  transform: translateY(-2px);
}

.primary:hover {
  box-shadow: 0 18px 44px rgba(36, 135, 255, .38);
}

.full {
  width: 100%;
}

/* ── HEADER ──────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 14px clamp(20px, 5vw, 78px);
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(223,232,245,.85);
}

.brand img {
  width: 180px;
  max-width: 48vw;
  height: auto;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 600;
}

.main-nav a:not(.nav-cta) {
  color: var(--muted);
  font-size: .9rem;
}

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

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--navy);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
  align-items: center;
  gap: clamp(40px, 6vw, 88px);
  padding: clamp(80px, 10vw, 140px) clamp(20px, 5vw, 78px);
  min-height: calc(100vh - var(--header-h, 90px));
  box-sizing: border-box;
  background:
    radial-gradient(circle at 82% 20%, rgba(98,177,255,.22), transparent 32%),
    radial-gradient(circle at 8% 15%, rgba(36,135,255,.08), transparent 28%),
    transparent;
  position: relative;
  overflow: hidden;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.micro-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.micro-trust span {
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.75);
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy2);
}

/* Hero panel */
.hero-panel {
  padding: clamp(28px, 4vw, 44px);
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  animation: heroFadeUp .8s ease backwards;
  animation-delay: .3s;
}

.panel-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.status-dot {
  width: 9px;
  height: 9px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(36,135,255,.14);
}

.hero-panel h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 4px;
}

.hero-panel-sub {
  color: var(--muted);
  margin-bottom: 22px;
}

.price {
  margin: 14px 0 6px;
  color: var(--navy);
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 900;
  letter-spacing: -.06em;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
}

.price.small {
  font-size: clamp(2.4rem, 3.8vw, 3.6rem);
}

ul {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

li {
  margin: 10px 0;
  color: var(--muted);
  font-size: .95rem;
}

li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--blue);
  font-weight: 900;
}

/* ── SECTIONS ────────────────────────────────────────────── */
.section, .process-section {
  padding: clamp(74px, 9vw, 120px) clamp(20px, 5vw, 78px);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 40px;
}

.section-heading p, .note {
  color: var(--muted);
  margin-top: 14px;
}

/* ── VALUE GRID ──────────────────────────────────────────── */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.value-grid article {
  padding: 30px;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(7,27,58,.06);
  /* scroll animation */
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .55s ease, transform .55s ease, box-shadow .2s, border-color .2s;
}

.value-grid article.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.value-grid article:nth-child(2) {
  transition-delay: .12s;
}

.value-grid article:nth-child(3) {
  transition-delay: .24s;
}

.value-grid article:hover {
  box-shadow: 0 20px 50px rgba(36,135,255,.13);
  border-color: rgba(36,135,255,.25);
  transform: translateY(-4px);
}

.value-grid article:hover span {
  color: var(--navy);
}

.value-grid span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 1.5rem;
  font-weight: 900;
  font-family: var(--serif);
  transition: color .2s;
}

.value-grid p {
  color: var(--muted);
  margin: 8px 0 0;
  font-size: .95rem;
}

/* Target pills */
.target-wrap {
  margin-top: 10px;
}

.target-label {
  color: var(--muted);
  font-size: .85rem;
  margin-bottom: 10px;
}

.target-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.target-pills span {
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  font-size: .85rem;
  color: var(--muted);
  font-weight: 500;
}

/* ── Leistungen Grid ─────────────────────────────────────── */
.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.leistung-card {
  display: flex;
  gap: 20px;
  padding: clamp(24px, 3vw, 32px);
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(7,27,58,.06);
  position: relative;
  transition: box-shadow .2s, transform .2s;
}

.leistung-card:hover {
  box-shadow: 0 16px 48px rgba(7,27,58,.11);
  transform: translateY(-2px);
}

.leistung-card--featured {
  border-color: rgba(36,135,255,.35);
  background: linear-gradient(150deg, #EEF6FF 0%, white 60%);
}

.leistung-abo-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(135deg, var(--blue), var(--navy2));
  color: white;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 4px 12px;
  border-radius: 999px;
}

.leistung-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #EEF6FF, #dbeeff);
  color: var(--blue);
  margin-top: 2px;
}

.leistung-icon svg {
  display: block;
}

.leistung-body {
  flex: 1;
  min-width: 0;
}

.leistung-body h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin: 0 0 8px;
}

.leistung-body > p {
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.6;
  margin: 0 0 14px;
}

.leistung-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.leistung-list li {
  font-size: .85rem;
  color: var(--text);
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0;
}

.leistung-list li::before {
  content: "✓";
  color: var(--blue);
  font-weight: 700;
  font-size: .8rem;
  flex-shrink: 0;
}

/* Keep old service-card for any possible reuse */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  padding: 28px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: box-shadow .2s, transform .2s;
}

.service-card:hover {
  box-shadow: 0 16px 40px rgba(7,27,58,.1);
  transform: translateY(-3px);
}

.service-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #EEF6FF, #dbeeff);
  border-radius: 12px;
  color: var(--blue);
  margin-bottom: 14px;
  flex-shrink: 0;
}

.service-icon svg {
  display: block;
}

.service-card p {
  color: var(--muted);
  margin: 8px 0 0;
  font-size: .9rem;
}

@media (max-width: 860px) {
  .leistungen-grid {
    grid-template-columns: 1fr;
  }

  .switch-steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .switch-arrow {
    flex-direction: row;
    justify-content: center;
    padding: 4px 0;
  }

  .switch-arrow svg {
    transform: rotate(90deg);
  }


}

@media (max-width: 640px) {
  .leistung-card {
    flex-direction: column;
    gap: 14px;
  }

  .leistung-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }

  .value-grid,
    .service-grid {
    grid-template-columns: 1fr;
  }

  .contact-item {
    font-size: .85rem;
    word-break: break-all;
    overflow-wrap: anywhere;
  }

  .steps article {
    padding: 20px;
  }

  .ref-slide-card {
    flex: 0 0 88vw;
    width: 88vw;
    min-width: 0;
  }

  .ref-slide-logo {
    height: 140px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    text-align: center;
  }

  .pricing-toggle {
    flex-direction: column;
    border-radius: 18px;
  }

  .pricing-abo-benefits {
    flex-direction: column;
    gap: 6px;
  }

  .form-tabs {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 12px;
  }

  .form-tab-badge {
    display: none;
  }

  .form-row-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .bf-meta-row {
    grid-template-columns: 1fr;
  }

  .bf-row-2 {
    grid-template-columns: 1fr;
  }

  .bf-style-grid {
    grid-template-columns: 1fr;
  }

  .bf-feat-grid {
    grid-template-columns: 1fr;
  }

  .bf-rec-price {
    text-align: left;
  }

  .branchen-card {
    flex-direction: column;
    gap: 12px;
  }

  .branchen-price {
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }

  .bp-abo, .bp-once {
    flex-direction: column;
    gap: 0;
  }

  .branchen-cta {
    margin-left: 0;
    width: 100%;
  }

  .hero-illustration {
    opacity: .6;
  }

  [data-deco="lines"]::after {
    display: none;
  }

  .about-section::before {
    font-size: 5rem;
    opacity: .025;
  }

  .addons-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .addons-strip-item {
    width: 100%;
  }

  .pricing-overview-grid {
    grid-template-columns: 1fr;
  }

  .digit-topics {
    grid-template-columns: 1fr;
  }

  .digit-packages {
    grid-template-columns: 1fr;
  }

  .digit-note {
    flex-direction: column;
  }

  .lp-cta-btns {
    flex-direction: column;
  }


}

/* ── REFERENCES ──────────────────────────────────────────── */
.references-section {
  padding: clamp(74px, 9vw, 120px) 0;
  background: transparent;
  overflow: hidden;
}

.references-heading {
  text-align: center;
  max-width: 820px;
  margin: 0 auto clamp(40px, 6vw, 64px);
  padding: 0 clamp(20px, 5vw, 78px);
}

.references-heading h2 {
  word-break: keep-all;
  hyphens: none;
}

.references-sub {
  color: var(--muted);
  margin-top: 14px;
  font-size: 1rem;
}

/* Scroll track */
.ref-scroll-wrapper {
  position: relative;
}

.ref-scroll-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 24px;
  overflow-x: scroll;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 12px clamp(20px, 5vw, 78px) 32px;
  scrollbar-width: none;
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
  will-change: scroll-position;
  touch-action: pan-x pan-y;
  width: 100%;
  box-sizing: border-box;
}

.ref-scroll-track::-webkit-scrollbar {
  display: none;
}

/* Slide cards */
.ref-slide-card {
  scroll-snap-align: start;
  flex: 0 0 480px;
  width: 480px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: white;
  transition: transform .22s ease, box-shadow .22s ease;
}

.ref-slide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 40px 100px rgba(7,27,58,.16);
}

.ref-slide-logo {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 36px;
}

.ref-slide-logo--ng {
  background: #fcf7f3;
}

.ref-slide-logo--dg {
  background: #ffffff;
}

.ref-slide-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.logo-blend-light {
  max-width: 78%;
  max-height: 134px;
}

.logo-blend-dark {
  mix-blend-mode: multiply;
  max-width: 80%;
  max-height: 140px;
}

.ref-slide-body {
  padding: clamp(24px, 3.5vw, 36px);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.ref-slide-body h3 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  margin: 10px 0 4px;
}

.ref-industry-tag {
  font-size: .8rem;
  font-weight: 600;
  color: var(--muted);
  margin: 0 0 12px;
}

.ref-slide-body > p:not(.ref-industry-tag) {
  color: var(--muted);
  font-size: .93rem;
  margin: 0 0 6px;
}

.ref-slide-body .project-actions {
  margin-top: auto;
  padding-top: 20px;
}

.ref-slide-card--placeholder {
  border: 2px dashed var(--line) !important;
  box-shadow: none !important;
  background: transparent !important;
  align-items: center;
  justify-content: center;
  min-height: 340px;
}

.ref-scroll-hint {
  text-align: center;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
  opacity: .6;
}

.project-features {
  margin: 18px 0 24px;
  padding: 0;
  list-style: none;
}

.project-features li {
  margin: 9px 0;
  color: var(--navy);
  font-weight: 700;
}

.project-features li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--blue);
}

.project-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.placeholder-inner {
  text-align: center;
  color: var(--muted);
}

.placeholder-plus {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px dashed var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--muted);
  margin: 0 auto 12px;
}

.placeholder-inner p {
  font-size: .9rem;
  margin-bottom: 12px;
}

/* ── REVIEWS SECTION ─────────────────────────────────────── */
.reviews-section {
  padding: clamp(48px, 8vw, 80px) clamp(16px, 5vw, 80px);
  background: transparent;
}

.reviews-inner {
  max-width: 900px;
  margin: 0 auto;
}

.reviews-inner h2 {
  margin: 0 0 12px;
  color: var(--navy);
}

.reviews-sub {
  margin: 0 0 36px;
  color: var(--muted);
  font-size: 1rem;
}

.review-card {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(24px, 3vw, 40px);
  max-width: 620px;
  position: relative;
}

.review-quote-mark {
  font-size: 5rem;
  line-height: 1;
  color: #EEF6FF;
  font-family: Georgia, serif;
  position: absolute;
  top: 14px;
  left: 22px;
  pointer-events: none;
  user-select: none;
}

.review-stars {
  color: #FBBF24;
  font-size: 1.1rem;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.review-stars-label {
  color: var(--muted);
  font-size: .85rem;
  margin-left: 6px;
}

.review-body {
  color: #334155;
  font-size: 1rem;
  line-height: 1.8;
  margin: 0 0 24px;
  position: relative;
  z-index: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.review-author-logo {
  display: block;
  flex-shrink: 0;
}

.review-author-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.review-author-name {
  font-weight: 700;
  color: var(--navy);
  font-size: .95rem;
}

.review-author-meta {
  color: var(--muted);
  font-size: .8rem;
}

.review-google-link {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--muted);
  font-size: .8rem;
  white-space: nowrap;
}

.reviews-all-link {
  margin-top: 24px;
  color: var(--muted);
  font-size: .9rem;
}

.reviews-all-link a {
  color: var(--blue);
  font-weight: 600;
}

/* ── PRICING ─────────────────────────────────────────────── */
/* ── PRICING SECTION ────────────────────────────────────── */
.pricing-section {
  padding: clamp(74px, 9vw, 122px) clamp(20px, 5vw, 78px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-header {
  max-width: 760px;
  margin: 0 auto 36px;
}

.pricing-header-sub {
  color: var(--muted);
  margin-top: 14px;
  font-size: 1rem;
}

/* ── Toggle ─────────────────────────────────────────────── */
.pricing-toggle {
  display: inline-flex;
  gap: 6px;
  background: rgba(255,255,255,.85);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px;
  margin: 0 auto 28px;
}

.pricing-toggle-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 999px;
  border: none;
  background: transparent;
  font: inherit;
  font-size: .9rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: background .18s, color .18s, box-shadow .18s;
  white-space: nowrap;
}

.pricing-toggle-btn.is-active {
  background: linear-gradient(135deg, var(--blue), var(--navy2));
  color: white;
  box-shadow: 0 6px 20px rgba(36,135,255,.28);
}

.pricing-toggle-tag {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  background: rgba(255,255,255,.25);
  border-radius: 999px;
  padding: 2px 8px;
}

/* ── Banners ────────────────────────────────────────────── */
.pricing-abo-banner,
.pricing-einmalig-banner {
  max-width: 900px;
  margin: 0 auto 32px;
  border-radius: 16px;
  padding: 18px 24px;
  text-align: left;
}

.pricing-abo-banner {
  background: linear-gradient(135deg, #EEF6FF, #e0f0ff);
  border: 1px solid rgba(36,135,255,.25);
}

.pricing-einmalig-banner {
  background: #FFFBEB;
  border: 1px solid #FDE68A;
}

.pricing-abo-banner-label,
.pricing-einmalig-banner-label {
  margin: 0 0 12px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--blue);
}

.pricing-einmalig-banner .pricing-abo-banner-label,
.pricing-einmalig-banner .pricing-einmalig-banner-label {
  color: #92400E;
}

.pricing-abo-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pricing-abo-benefits span {
  padding: 6px 14px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
}

.pricing-abo-banner .pricing-abo-benefits span {
  background: rgba(36,135,255,.1);
  color: var(--navy2);
  border: 1px solid rgba(36,135,255,.18);
}

.pricing-einmalig-banner .pricing-abo-benefits span {
  background: rgba(252,211,77,.18);
  color: #78350F;
  border: 1px solid rgba(252,211,77,.4);
}

/* ── 3-Column Grid ──────────────────────────────────────── */
.pricing-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1160px;
  margin: 0 auto;
  align-items: start;
}

/* ── Cards ──────────────────────────────────────────────── */
.pricing-card {
  padding: 32px 28px 28px;
  border-radius: var(--radius);
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  text-align: left;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform .2s, box-shadow .2s;
}

.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(7,27,58,.13);
}

.pricing-card.featured {
  border: 2px solid var(--blue);
  background: linear-gradient(160deg, #EEF6FF 0%, white 55%);
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(36,135,255,.18);
}

.pricing-card.featured:hover {
  transform: translateY(-9px);
}

.badge {
  position: absolute;
  top: -14px;
  left: 24px;
  background: linear-gradient(135deg, var(--blue), var(--navy2));
  color: white;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
}

/* Package name */
.pkg-label {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 4px;
  letter-spacing: -.02em;
}

.pkg-desc {
  font-size: .85rem;
  color: var(--muted);
  margin: 0 0 18px;
  line-height: 1.5;
  min-height: 40px;
}

.pricing-card .price {
  margin: 0 0 4px;
}

.pricing-card .sub {
  color: var(--muted);
  margin: 0 0 20px;
  font-size: .82rem;
}

/* Feature list */
.pkg-features {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  flex: 1;
}

.pkg-features li {
  margin: 8px 0;
  color: var(--muted);
  font-size: .88rem;
}

.pkg-features li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--blue);
  font-weight: 900;
}

/* Abo "Dauerhaft inklusive" box */
.pkg-abo-incl {
  margin-bottom: 20px;
  padding: 14px 16px;
  background: linear-gradient(135deg, #EEF6FF, #e8f3ff);
  border: 1px solid rgba(36,135,255,.2);
  border-radius: 14px;
}

.pkg-abo-incl-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 8px;
}

.pkg-abo-incl-items {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.pkg-abo-incl-items span {
  font-size: .76rem;
  font-weight: 600;
  color: var(--navy2);
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(36,135,255,.15);
  border-radius: 999px;
  padding: 3px 10px;
}

/* Einmalig "Nach Übergabe" box */
.pkg-einmalig-note {
  margin-bottom: 20px;
  padding: 14px 16px;
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  border-radius: 14px;
}

.pkg-einmalig-note p {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #92400E;
  margin: 0 0 8px;
}

.pkg-einmalig-note span {
  display: block;
  font-size: .82rem;
  color: #78350F;
  font-weight: 500;
  margin-bottom: 4px;
  line-height: 1.5;
}

.note {
  color: var(--muted);
}

/* ── Individual Pricing Card ────────────────────────────── */
.pricing-individual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  max-width: 1160px;
  margin: 28px auto 0;
  padding: clamp(28px, 4vw, 44px) clamp(28px, 4vw, 48px);
  background: var(--navy);
  border-radius: var(--radius);
  box-shadow: 0 24px 64px rgba(7,27,58,.22);
  position: relative;
  overflow: hidden;
}

/* decorative glow */
.pricing-individual::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(36,135,255,.22), transparent 70%);
  pointer-events: none;
}

.pricing-individual-left h3 {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: white;
  font-weight: 400;
  margin: 8px 0 14px;
  letter-spacing: -.02em;
  line-height: 1.2;
}

.pricing-individual-left p {
  color: rgba(255,255,255,.6);
  font-size: .93rem;
  line-height: 1.7;
  margin: 0;
}

.pricing-individual-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pricing-individual-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pricing-individual-examples span {
  padding: 7px 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  transition: background .15s, border-color .15s;
}

.pricing-individual-examples span:hover {
  background: rgba(36,135,255,.25);
  border-color: rgba(36,135,255,.4);
}

@media (max-width: 760px) {
  .pricing-individual {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .brand img {
    width: 148px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 68px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
    z-index: 30;
  }

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

  .nav-cta {
    text-align: center;
  }

  .hero {
    min-height: auto;
  }

  .footer a {
    margin: 0 10px 0 0;
  }

  .approach-tabs {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .approach-tab {
    padding: 14px 16px;
    gap: 12px;
  }

  .approach-tab-num {
    width: 30px;
    height: 30px;
    font-size: .72rem;
  }

  .branchen-grid {
    grid-template-columns: 1fr;
  }

  .baukasten-bases {
    grid-template-columns: 1fr;
  }

  .abo-compare-strip {
    grid-template-columns: 1fr;
  }

  .abo-compare-divider {
    width: 100%;
    height: 1px;
  }

  /* Approach tabs already 1-col – add desc back */
  .approach-tab-desc {
    display: block;
  }

  .bk-base-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
  }

  .bk-base-name {
    margin-bottom: 0;
    min-width: 60px;
  }

  .bk-base-price {
    font-size: 1.2rem;
    margin-bottom: 0;
  }

  .bk-base-desc {
    font-size: .73rem;
    flex: 1;
  }

  /* Baukasten addons: handle text wrapping */
  .bk-addon {
    flex-wrap: wrap;
    gap: 10px;
  }

  .bk-addon-body {
    min-width: 0;
    flex: 1 1 180px;
  }

  .bk-addon-name {
    font-size: .85rem;
  }

  .bk-addon-desc {
    font-size: .75rem;
    white-space: normal;
  }

  .bk-addon-price {
    flex-shrink: 0;
  }

  /* Baukasten summary when stacked */
  .bk-summary-inner {
    border-radius: var(--radius);
    padding: 22px 20px;
    margin-top: 0;
  }

  /* Branchen grid already 1-col */
  .branchen-card {
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .branchen-icon {
    flex-shrink: 0;
  }

  .branchen-body {
    flex: 1;
    min-width: 0;
  }

  .branchen-price {
    width: 100%;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 12px;
  }

  .bp-abo, .bp-once {
    display: flex;
    align-items: baseline;
    gap: 4px;
  }

  .bp-abo .branchen-price-num,
    .bp-once .branchen-price-num {
    font-size: 1.4rem;
  }

  .branchen-cta {
    margin-left: auto;
    flex-shrink: 0;
    padding: 10px 18px;
  }

  /* Abo compare strip: improve stacked layout */
  .abo-compare-col {
    padding: 14px 18px;
  }

  .abo-compare-pills {
    gap: 5px;
  }

  .abo-compare-pills span {
    font-size: .72rem;
    padding: 3px 8px;
  }

  /* Pricing toggle: full width */
  .pricing-section > .pricing-toggle {
    width: 100%;
    max-width: 100%;
    justify-content: center;
  }

  .pricing-toggle-btn {
    flex: 1;
    justify-content: center;
    font-size: .85rem;
  }

  .pricing-individual-examples {
    gap: 6px;
  }

  .pricing-individual-examples span {
    font-size: .78rem;
    padding: 5px 10px;
  }

  .section-deco--top-right {
    width: 260px;
    height: 200px;
    opacity: .6;
  }

  .section-deco {
    opacity: .7;
  }

  .page-hero-sub {
    flex-direction: column;
    text-align: center;
  }

  .page-hero-sub-img {
    width: 100%;
    max-width: 320px;
  }

  .pricing-overview-img {
    height: 120px;
  }

  .digit-topic-img {
    height: 100px;
  }

  .digit-pkg-img {
    height: 90px;
  }


}

/* ── STEPS ───────────────────────────────────────────────── */
.process-section {
  background: transparent;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 38px;
  left: calc(33.33% / 2 + 4px);
  right: calc(33.33% / 2 + 4px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue), rgba(36,135,255,.2));
  z-index: 0;
}

.steps article {
  padding: 36px 28px 32px;
  background: transparent;
  border: none;
  border-radius: 0;
  position: relative;
  z-index: 1;
  text-align: center;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .5s ease, transform .5s ease;
}

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

.steps article:nth-child(2) {
  transition-delay: .15s;
}

.steps article:nth-child(3) {
  transition-delay: .30s;
}

.steps strong {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin: 0 auto 24px;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--navy2));
  border-radius: 50%;
  font-size: 1.6rem;
  font-family: var(--serif);
  font-weight: 400;
  box-shadow: 0 8px 28px rgba(36,135,255,.35);
  position: relative;
  border: 3px solid white;
}

.steps h3 {
  font-size: 1.18rem;
  margin-bottom: 10px;
  color: var(--navy);
}

.steps p {
  color: var(--muted);
  margin: 0;
  font-size: .93rem;
  line-height: 1.65;
}

.step-meta {
  display: inline-block;
  margin-top: 14px;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(36,135,255,.08);
  font-size: .75rem;
  color: var(--blue);
  font-weight: 700;
  letter-spacing: .04em;
}

/* ── ABOUT ───────────────────────────────────────────────── */
.about-section {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 32px;
  align-items: center;
  background: transparent;
  padding: clamp(74px, 9vw, 120px) clamp(20px, 5vw, 78px);
  position: relative;
  overflow: hidden;
}

.about-section p {
  color: var(--muted);
  margin-top: 16px;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}

.about-stat {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 20px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.about-stat-num {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--blue);
  min-width: 56px;
  line-height: 1;
}

.about-stat-label {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.5;
}

.quote-card {
  padding: clamp(32px, 4vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: radial-gradient(circle at top right, rgba(98,177,255,.3), transparent 40%), var(--navy);
  color: white;
  display: flex;
  align-items: center;
}

.quote-card p {
  color: white;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.8vw, 2.4rem);
  line-height: 1.25;
  font-weight: 400;
  font-style: italic;
}

/* ── CONTACT ─────────────────────────────────────────────── */
.contact-section {
  padding: clamp(74px, 9vw, 120px) clamp(20px, 5vw, 78px);
}

.contact-heading {
  max-width: 850px;
  margin-bottom: 40px;
}

.contact-heading p {
  color: var(--muted);
  margin-top: 14px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, .85fr) minmax(380px, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.contact-layout > div {
  display: flex;
  flex-direction: column;
}

.contact-card {
  display: grid;
  gap: 12px;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}

.contact-layout.has-success {
  align-items: stretch;
}

.contact-layout.has-success > div {
  display: flex;
  flex-direction: column;
}

.contact-layout.has-success .contact-card {
  flex: 1;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 18px;
  border-radius: 16px;
  background: #EEF6FF;
  color: var(--navy);
  font-weight: 700;
  font-size: .95rem;
  transition: background .18s;
}

.contact-item:hover {
  background: #d6eaff;
}

.contact-item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  flex-shrink: 0;
  background: white;
  color: var(--blue);
  box-shadow: 0 2px 8px rgba(7,27,58,.1);
}

.contact-item .icon svg {
  display: block;
}

.contact-item--whatsapp {
  background: #E9F9EE;
  color: #1a5c35;
}

.contact-item--whatsapp:hover {
  background: #d0f4de;
}

.contact-item--whatsapp .icon {
  background: #25D366;
  color: white;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-weight: 700;
  font-size: .9rem;
}

.contact-form input:not([type="checkbox"]):not([type="radio"]),
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--text);
  font: inherit;
  font-size: .95rem;
  transition: border-color .18s, box-shadow .18s;
}

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

.contact-form input:not([type="checkbox"]):not([type="radio"]):focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(36,135,255,.12);
}

.privacy-check {
  display: flex !important;
  align-items: flex-start;
  gap: 10px !important;
  color: var(--muted) !important;
  font-size: .88rem;
  font-weight: 500 !important;
  line-height: 1.5;
}

.privacy-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 1px;
}

.privacy-check a {
  color: var(--blue);
  font-weight: 700;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: .85rem;
  text-align: center;
}

.hidden-field {
  display: none;
}

.contact-form button {
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  min-height: 54px;
  border-radius: 999px;
}

.contact-form button.primary {
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--navy2));
  box-shadow: 0 14px 36px rgba(36,135,255,.28);
  transition: transform .18s, box-shadow .18s;
}

.contact-form button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(36,135,255,.38);
}

.privacy-error {
  display: none;
  margin: -4px 0 0;
  color: #d93025;
  font-size: .88rem;
  font-weight: 700;
}

.privacy-error.is-visible {
  display: block;
}

.privacy-check.is-error {
  padding: 10px;
  border: 1px solid rgba(217,48,37,.35);
  border-radius: 12px;
  background: rgba(217,48,37,.05);
}

.field-error {
  display: none;
  color: #d93025;
  font-size: .85rem;
  font-weight: 700;
}

.field-error.is-visible {
  display: block;
}

.contact-form input:not([type="checkbox"]):not([type="radio"]).is-error,
.contact-form select.is-error,
.contact-form textarea.is-error {
  border-color: rgba(217,48,37,.65);
  box-shadow: 0 0 0 4px rgba(217,48,37,.10);
}

/* Form states */
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
  gap: 12px;
}

.form-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--navy2));
  color: white;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 36px rgba(36,135,255,.3);
  margin-bottom: 8px;
}

.form-success h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--navy);
  margin: 0;
}

.form-success p {
  color: var(--muted);
  font-size: .95rem;
  margin: 0;
}

.form-send-error {
  margin: 0;
  padding: 12px 16px;
  background: rgba(220,38,38,.08);
  border: 1px solid rgba(220,38,38,.25);
  border-radius: 12px;
  color: #dc2626;
  font-size: .9rem;
  font-weight: 600;
}

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 78px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: white;
  font-size: .9rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
}

.footer a {
  margin-left: 20px;
  font-weight: 700;
  color: var(--muted);
}

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

/* ── LEGAL PAGES ─────────────────────────────────────────── */
.legal {
  max-width: 860px;
  min-height: 100vh;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) clamp(20px, 4vw, 60px);
  background: white;
}

.legal-wrap {
  max-width: 760px;
}

.legal h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-family: var(--serif);
  margin-bottom: 28px;
}

.legal h2 {
  margin-top: 40px;
  margin-bottom: 0;
  font-size: 1rem;
  font-family: var(--sans);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--blue);
}

.legal p {
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.75;
}

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

.legal-note {
  margin-top: 48px;
  padding: 16px 20px;
  border-left: 3px solid var(--blue);
  border-radius: 0 12px 12px 0;
  background: #EEF6FF;
  font-size: .85rem;
  color: var(--navy) !important;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 980px) {
  .hero,
    .about-section,
    .contact-layout {
    grid-template-columns: 1fr;
  }

  /* Tabs become full-width single column when panels stack */
  .form-tabs {
    margin-bottom: 12px;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .hero-panel {
    display: none;
  }

  .value-grid,
    .service-grid {
    grid-template-columns: 1fr 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .steps::before {
    display: none;
  }

  .steps article {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 24px 20px;
    background: rgba(255,255,255,.75);
    border: 1px solid var(--line);
    border-radius: var(--radius);
  }

  .steps strong {
    width: 52px;
    height: 52px;
    font-size: 1.2rem;
    margin: 0 0 16px;
  }

  .pricing-grid-3 {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card {
    padding: 26px 22px;
  }

  .ref-slide-card {
    flex: 0 0 85vw;
    width: 85vw;
    min-width: 0;
  }

  .about-section {
    grid-template-columns: 1fr;
  }

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

  .contact-layout--briefing > div:first-child {
    display: none;
  }

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

  .why-points {
    flex-direction: column;
    gap: 0;
  }

  .why-point {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .why-point:last-child {
    border-bottom: none;
  }

  .why-point-divider {
    display: none;
  }


}

/* ── ACCESSIBILITY: REDUCED MOTION ─────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .value-grid article,
    .steps article {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  * {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }

  .hero-illustration {
    display: none;
  }

  .section-deco {
    display: none;
  }

  .hero-left .eyebrow,
    .hero-left h1,
    .hero-left .lead,
    .hero-left .hero-actions,
    .hero-left .micro-trust,
    .hero-panel {
    animation: none !important;
  }

  .hero-illustration svg {
    animation: none !important;
  }

  .anim-up {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }


}

/* ── TOUCH: disable sticky hover on cards ───────────────── */
@media (hover: none) {
  .value-grid article:hover,
    .service-card:hover,
    .ref-slide-card:hover,
    .button:hover,
    .nav-cta:hover {
    transform: none;
    box-shadow: initial;
  }

  .approach-tab:hover,
    .branchen-card:hover,
    .bk-base-card:hover .bk-base-inner,
    .bk-addon:hover {
    transform: none;
    box-shadow: initial;
  }


}

/* ============================================================
   FORM TABS + BRIEFING FORM
   ============================================================ */
/* ── Tab Switcher ────────────────────────────────────────── */
.form-tabs {
  /* Exact same columns + gap as .contact-layout so tabs align with panels below */
  display: grid;
  grid-template-columns: minmax(280px, .85fr) minmax(380px, 1fr);
  gap: clamp(28px, 5vw, 64px);
  margin-bottom: 16px;
}

.form-tab {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(255,255,255,.85);
  border: 2px solid var(--line);
  border-radius: 18px;
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: border-color .18s, background .18s, box-shadow .18s, transform .18s;
}

.form-tab:hover {
  border-color: rgba(36,135,255,.35);
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(7,27,58,.08);
}

.form-tab.is-active {
  border-color: var(--blue);
  background: white;
  box-shadow: 0 8px 28px rgba(36,135,255,.16);
}

.form-tab-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--muted);
  transition: color .18s;
}

.form-tab.is-active .form-tab-icon {
  color: var(--blue);
}

/* Banner pill state modifiers */
.pricing-einmalig-banner .pricing-abo-benefits span.is-ok {
  background: rgba(34,197,94,.1);
  border-color: rgba(34,197,94,.3);
  color: #166534;
}

.pricing-einmalig-banner .pricing-abo-benefits span.is-no {
  background: rgba(239,68,68,.08);
  border-color: rgba(239,68,68,.2);
  color: #991b1b;
}

.pricing-einmalig-banner .pricing-abo-benefits span.is-warn {
  background: rgba(252,211,77,.18);
  border-color: rgba(252,211,77,.4);
  color: #78350F;
}

/* Briefing sidebar SVG icon */
.briefing-sidebar-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #EEF6FF, #dbeeff);
  border-radius: 14px;
  color: var(--blue);
  margin-bottom: 4px;
}

.form-tab-content {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 0;
}

.form-tab-label {
  font-size: .92rem;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}

.form-tab.is-active .form-tab-label {
  color: var(--blue);
}

.form-tab-meta {
  font-size: .74rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.form-tab-badge {
  flex-shrink: 0;
  padding: 3px 10px;
  background: linear-gradient(135deg, var(--blue), var(--navy2));
  color: white;
  font-size: .68rem;
  font-weight: 700;
  border-radius: 999px;
  letter-spacing: .04em;
  white-space: nowrap;
}

/* Briefing sidebar card */
.contact-layout--briefing {
  align-items: start;
}

.briefing-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: clamp(22px, 3vw, 32px) !important;
}

.briefing-sidebar-intro {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.briefing-sidebar-intro h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin: 0;
}

.briefing-sidebar-intro p {
  font-size: .88rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

.briefing-sidebar-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  background: var(--bg);
  border-radius: 14px;
  border: 1px solid var(--line);
}

.briefing-step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .87rem;
  color: var(--navy);
  font-weight: 600;
}

.briefing-step-num {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--navy2));
  color: white;
  font-size: .72rem;
  font-weight: 700;
  flex-shrink: 0;
}

.briefing-download-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  border: 1.5px dashed var(--line);
  border-radius: 12px;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 600;
  transition: border-color .15s, color .15s, background .15s;
  text-decoration: none;
}

.briefing-download-link:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: #EEF6FF;
}

.briefing-download-link svg {
  flex-shrink: 0;
  opacity: .7;
}

/* ── Briefing Form ───────────────────────────────────────── */
.briefing-form {
  gap: 0 !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

/* Meta row: name + email side by side */
.bf-meta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: clamp(20px, 3vw, 28px);
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -2px 0 0 rgba(36,135,255,.08);
  margin-bottom: 2px;
}

/* Chapter blocks */
.bf-chapter {
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  border-top: none;
  padding: 0;
  margin-bottom: 2px;
}

.bf-chapter:last-of-type {
  border-radius: 0;
}

.bf-chapter-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  font-size: .78rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.bf-chapter-num {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--navy2));
  color: white;
  font-size: .68rem;
  font-weight: 700;
  flex-shrink: 0;
}

.bf-chapter > .bf-label,
.bf-chapter > .bf-row-2 {
  display: block;
  padding: 14px 22px;
  border-bottom: 1px solid var(--line);
}

.bf-chapter > .bf-label:last-child,
.bf-chapter > .bf-row-2:last-child {
  border-bottom: none;
}

.bf-label {
  display: flex !important;
  flex-direction: column;
  gap: 6px;
  font-size: .85rem !important;
  font-weight: 700 !important;
  color: var(--navy) !important;
}

.bf-hint {
  font-size: .76rem;
  font-weight: 500;
  color: var(--muted);
  font-style: italic;
  margin: -2px 0 2px;
}

.bf-row-2 {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: start;
}

/* Style picker */
.bf-style-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 4px;
}

.bf-style-opt {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color .15s, background .15s;
  font-size: .82rem !important;
  font-weight: 600 !important;
  color: var(--navy) !important;
  background: var(--bg);
}

.bf-style-opt:has(input:checked) {
  border-color: var(--blue);
  background: #EEF6FF;
}

.bf-style-opt input[type="radio"] {
  width: 15px;
  height: 15px;
}

/* Inline radio row */
.bf-radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.bf-radio-opt {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-size: .82rem !important;
  font-weight: 600 !important;
  color: var(--navy) !important;
  background: var(--bg);
  transition: border-color .15s, background .15s;
  white-space: nowrap;
}

.bf-radio-opt:has(input:checked) {
  border-color: var(--blue);
  background: #EEF6FF;
}

.bf-radio-opt input[type="radio"] {
  width: 14px;
  height: 14px;
}

/* Briefing submit row */
.briefing-form > .privacy-check,
.briefing-form > #briefingPrivacyError,
.briefing-form > .hidden-field,
.briefing-form > button,
.briefing-form > .form-note {
  padding-left: 0;
  padding-right: 0;
}

.briefing-form > .privacy-check,
.briefing-form > #briefingPrivacyError,
.briefing-form > button,
.briefing-form > .form-note {
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  border-top: none;
  padding: 14px 22px;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}

.briefing-form > button {
  border-top: 2px solid var(--line) !important;
  border-radius: 0 !important;
}

.briefing-form > .form-note {
  border-radius: 0 0 18px 18px !important;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 18px;
}

/* Override: briefing form inputs use site field styles */
.briefing-form input[type="text"],
.briefing-form input[type="email"],
.briefing-form input[type="url"],
.briefing-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--bg);
  color: var(--text);
  font: inherit;
  font-size: .88rem;
  transition: border-color .18s, box-shadow .18s;
  outline: none;
}

.briefing-form input:focus,
.briefing-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(36,135,255,.1);
  background: white;
}

.briefing-form input::placeholder,
.briefing-form textarea::placeholder {
  color: #c0cfe0;
}

.briefing-form textarea {
  min-height: 74px;
  resize: vertical;
}

/* Success state covers full panel */
.briefing-form .form-success {
  padding: 56px 24px;
}

/* ── 2-Column Form Row ───────────────────────────────────── */
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* ── Briefing Form: Inline Feature Check ─────────────────── */
.bf-feat-group-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 14px 0 8px;
}

.bf-feat-group-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}

.bf-pkg-tag {
  display: inline-block;
  padding: 2px 9px;
  border-radius: 999px;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.bf-pkg-simple {
  background: #EEF6FF;
  color: var(--blue);
}

.bf-pkg-medium {
  background: #F0FDF4;
  color: #166534;
}

.bf-pkg-expert {
  background: #FEF3C7;
  color: #92400E;
}

.bf-pkg-indiv {
  background: #FEE2E2;
  color: #991B1B;
}

.bf-feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 4px;
}

.bf-feat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1.5px solid var(--line);
  border-radius: 9px;
  cursor: pointer;
  transition: border-color .15s, background .15s;
  font-size: .82rem !important;
  font-weight: 600 !important;
  color: var(--navy) !important;
  background: var(--bg);
}

.bf-feat-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  border-radius: 4px;
}

/* Colour variants: green/amber/red checkmark for medium/expert/indiv */
.bf-feat-medium input[type="checkbox"]:checked {
  background-color: #22c55e;
  border-color: #22c55e;
}

.bf-feat-expert input[type="checkbox"]:checked {
  background-color: #f59e0b;
  border-color: #f59e0b;
}

.bf-feat-indiv input[type="checkbox"]:checked {
  background-color: #ef4444;
  border-color: #ef4444;
}

.bf-feat-item:has(input:checked) {
  border-color: var(--blue);
  background: #EEF6FF;
}

.bf-feat-medium:has(input:checked) {
  border-color: #22c55e;
  background: #F0FDF4;
}

.bf-feat-expert:has(input:checked) {
  border-color: #f59e0b;
  background: #FFFBEB;
}

.bf-feat-indiv:has(input:checked) {
  border-color: #ef4444;
  background: #FEF2F2;
}

/* Live recommendation box inside briefing form */
.bf-rec-box {
  margin-top: 16px;
  border: 2px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .25s;
}

.bf-rec-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.bf-rec-label {
  font-size: .72rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.bf-rec-tag {
  font-size: .68rem;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 999px;
}

.bf-rec-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  flex-wrap: wrap;
}

.bf-rec-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 3px;
}

.bf-rec-desc {
  font-size: .78rem;
  color: var(--muted);
  margin: 0;
}

.bf-rec-price {
  text-align: right;
}

.bf-rec-abo {
  font-size: .92rem;
  font-weight: 800;
  color: var(--blue);
  margin: 0;
  letter-spacing: -.02em;
}

.bf-rec-once {
  font-size: .74rem;
  color: var(--muted);
  margin: 0;
}

/* State colours */
.bf-rec-box[data-pkg="simple"] {
  border-color: var(--blue);
}

.bf-rec-box[data-pkg="simple"] .bf-rec-header {
  background: #EEF6FF;
}

.bf-rec-box[data-pkg="simple"] .bf-rec-abo {
  color: var(--blue);
}

.bf-rec-box[data-pkg="medium"] {
  border-color: #22c55e;
}

.bf-rec-box[data-pkg="medium"] .bf-rec-header {
  background: #F0FDF4;
}

.bf-rec-box[data-pkg="medium"] .bf-rec-abo {
  color: #16a34a;
}

.bf-rec-box[data-pkg="expert"] {
  border-color: #f59e0b;
}

.bf-rec-box[data-pkg="expert"] .bf-rec-header {
  background: #FFFBEB;
}

.bf-rec-box[data-pkg="expert"] .bf-rec-abo {
  color: #d97706;
}

.bf-rec-box[data-pkg="indiv"] {
  border-color: #ef4444;
}

.bf-rec-box[data-pkg="indiv"] .bf-rec-header {
  background: #FEF2F2;
}

.bf-rec-box[data-pkg="indiv"] .bf-rec-abo {
  color: #dc2626;
}

/* ============================================================
   APPROACH TABS + BRANCHEN + BAUKASTEN
   ============================================================ */
/* ── Approach Tab Switcher ──────────────────────────────── */
.approach-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 1160px;
  margin: 0 auto 36px;
}

.approach-tab {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: rgba(255,255,255,.85);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: border-color .18s, background .18s, box-shadow .18s, transform .18s;
}

.approach-tab:hover {
  border-color: rgba(36,135,255,.35);
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(7,27,58,.08);
}

.approach-tab.is-active {
  border-color: var(--blue);
  background: white;
  box-shadow: 0 8px 28px rgba(36,135,255,.16);
}

.approach-tab-num {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--line);
  font-size: .8rem;
  font-weight: 800;
  color: var(--muted);
  flex-shrink: 0;
  transition: background .18s, border-color .18s, color .18s;
}

.approach-tab.is-active .approach-tab-num {
  background: linear-gradient(135deg, var(--blue), var(--navy2));
  border-color: transparent;
  color: white;
}

.approach-tab-content {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.approach-tab-title {
  font-size: .92rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.approach-tab.is-active .approach-tab-title {
  color: var(--blue);
}

.approach-tab-desc {
  font-size: .76rem;
  color: var(--muted);
  line-height: 1.4;
}

.approach-panel {
  max-width: 1160px;
  margin: 0 auto;
}

.approach-intro {
  text-align: center;
  color: var(--muted);
  font-size: .95rem;
  max-width: 680px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* ── Branchen Grid ──────────────────────────────────────── */
.branchen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}

.branchen-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 4px 16px rgba(7,27,58,.06);
  transition: transform .2s, box-shadow .2s;
  height: 100%;
}

.branchen-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(7,27,58,.1);
}

.branchen-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #EEF6FF, #dbeeff);
  border-radius: 12px;
  color: var(--blue);
}

.branchen-icon svg {
  display: block;
}

.branchen-label {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--navy);
  letter-spacing: -.02em;
}

.branchen-basis {
  font-size: .75rem;
  font-weight: 600;
  color: var(--blue);
  background: #EEF6FF;
  border-radius: 999px;
  padding: 3px 10px;
  display: inline-block;
}

.branchen-body {
  flex: 1;
  min-height: 220px;
}

.branchen-features {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.branchen-features li {
  font-size: .83rem;
  color: var(--muted);
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin: 0;
}

.branchen-features li::before {
  content: "✓";
  color: var(--blue);
  font-weight: 700;
  font-size: .75rem;
  flex-shrink: 0;
}

.branchen-price {
  border-top: 1px solid var(--line);
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.branchen-price-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -.05em;
  line-height: 1;
}

.branchen-price-sub {
  font-size: .78rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.branchen-cta {
  width: 100%;
  justify-content: center;
}

/* ── Baukasten ──────────────────────────────────────────── */
.baukasten-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
  align-items: start;
}

.baukasten-step {
  margin-bottom: 28px;
}

.baukasten-step:last-child {
  margin-bottom: 0;
}

.baukasten-step-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.baukasten-step-num {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--navy2));
  color: white;
  font-size: .72rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Base cards */
.baukasten-bases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.bk-base-card {
  display: block;
  cursor: pointer;
}

.bk-base-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.bk-base-inner {
  padding: 16px 18px;
  border: 2px solid var(--line);
  border-radius: 16px;
  background: var(--bg);
  transition: border-color .15s, background .15s, box-shadow .15s;
}

.bk-base-card:has(input:checked) .bk-base-inner {
  border-color: var(--blue);
  background: white;
  box-shadow: 0 4px 16px rgba(36,135,255,.14);
}

.bk-base-name {
  font-weight: 700;
  color: var(--navy);
  font-size: .92rem;
  margin-bottom: 4px;
}

.bk-base-price {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--blue);
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 6px;
}

.bk-base-price span {
  font-size: .75rem;
  font-weight: 500;
  color: var(--muted);
}

.bk-base-desc {
  font-size: .75rem;
  color: var(--muted);
  line-height: 1.4;
}

/* Add-ons list */
.bk-addons {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bk-addon {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  background: white;
  cursor: pointer;
  transition: border-color .15s, background .15s, opacity .15s;
}

.bk-addon:has(input:checked) {
  border-color: var(--blue);
  background: #EEF6FF;
}

.bk-addon.is-included {
  opacity: .65;
  cursor: default;
  background: var(--bg);
}

.bk-addon-check {
  flex-shrink: 0;
}

.bk-addon-check input {
  pointer-events: none;
}

.bk-addon-body {
  flex: 1;
  min-width: 0;
}

.bk-addon-name {
  font-size: .88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.bk-addon-desc {
  font-size: .78rem;
  color: var(--muted);
}

.bk-addon-price {
  flex-shrink: 0;
  text-align: right;
}

.bk-price-tag {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  color: var(--blue);
  background: #EEF6FF;
  border-radius: 999px;
  padding: 3px 10px;
}

.bk-incl-tag {
  display: none;
  font-size: .75rem;
  font-weight: 700;
  color: #166534;
  background: #F0FDF4;
  border-radius: 999px;
  padding: 3px 10px;
  border: 1px solid rgba(34,197,94,.2);
}

.bk-addon.is-included .bk-price-tag {
  display: none;
}

.bk-addon.is-included .bk-incl-tag {
  display: inline-block;
}

/* Summary panel */
.baukasten-summary {
  position: sticky;
  top: 90px;
}

.bk-summary-inner {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 28px;
  color: white;
}

.bk-summary-title {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin: 0 0 16px;
}

.bk-summary-base {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 4px;
}

.bk-summary-base-name {
  font-size: .9rem;
  font-weight: 700;
  color: white;
}

.bk-summary-base-price {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
}

.bk-summary-addons {
  min-height: 32px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 16px;
}

.bk-summary-addons-empty {
  font-size: .8rem;
  color: rgba(255,255,255,.3);
  margin: 0;
  font-style: italic;
}

.bk-summary-addon-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 0;
}

.bk-summary-addon-row span:first-child {
  font-size: .82rem;
  color: rgba(255,255,255,.75);
}

.bk-summary-addon-row span:last-child {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
}

.bk-summary-divider {
  height: 1px;
  background: rgba(255,255,255,.1);
  margin-bottom: 16px;
}

.bk-summary-total {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}

.bk-summary-total-abo,
.bk-summary-total-once {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  transition: opacity .2s;
}

.bk-total-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}

.bk-total-price {
  font-size: 1.8rem;
  font-weight: 900;
  color: white;
  letter-spacing: -.04em;
  line-height: 1;
}

.bk-total-price small {
  font-size: .8rem;
  font-weight: 500;
  color: rgba(255,255,255,.5);
  letter-spacing: 0;
}

.bk-total-price-once {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,.6);
}

.bk-summary-note {
  font-size: .72rem;
  color: rgba(255,255,255,.3);
  text-align: center;
  margin: 0 0 16px;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1080px) {
  .branchen-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .baukasten-summary {
    position: static;
  }

  .bk-summary-inner {
    background: var(--navy);
  }

  .baukasten-config {
    margin-bottom: 4px;
  }

  .baukasten-step:last-child {
    margin-bottom: 24px;
  }

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

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


}

/* ── Abo vs. Einmalig Comparison Strip ──────────────────── */
.abo-compare-strip {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  max-width: 1160px;
  margin: 0 auto 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: white;
  box-shadow: 0 4px 16px rgba(7,27,58,.05);
}

.abo-compare-col {
  padding: 16px 22px;
}

.abo-compare-col--abo {
  background: linear-gradient(135deg, #EEF6FF, #e8f3ff);
}

.abo-compare-col--once {
  background: #FFFBEB;
}

.abo-compare-divider {
  width: 1px;
  background: var(--line);
  align-self: stretch;
}

.abo-compare-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.abo-compare-col--abo  .abo-compare-title {
  color: var(--blue);
}

.abo-compare-col--once .abo-compare-title {
  color: #92400E;
}

.abo-compare-title svg {
  flex-shrink: 0;
}

.abo-compare-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.abo-compare-pills span {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 600;
}

.abo-compare-col--abo .abo-compare-pills span {
  background: rgba(36,135,255,.1);
  color: var(--navy2);
  border: 1px solid rgba(36,135,255,.15);
}

.abo-compare-col--abo  .abo-compare-pills span.is-ok {
  background: rgba(36,135,255,.1);
  color: var(--navy2);
  border-color: rgba(36,135,255,.2);
}

.abo-compare-col--once .abo-compare-pills span.is-ok {
  background: rgba(34,197,94,.1);
  color: #166534;
  border: 1px solid rgba(34,197,94,.2);
}

.abo-compare-col--once .abo-compare-pills span.is-no {
  background: rgba(239,68,68,.08);
  color: #991B1B;
  border: 1px solid rgba(239,68,68,.18);
}

.abo-compare-col--once .abo-compare-pills span.is-warn {
  background: rgba(245,158,11,.1);
  color: #92400E;
  border: 1px solid rgba(245,158,11,.2);
}

/* ── Global Price Mode Toggle ───────────────────────────── */
/* Move pricing-toggle to sit between strip and panels */
.pricing-section > .pricing-toggle {
  max-width: 1160px;
  margin: 0 auto 28px;
  width: fit-content;
}

.bp-abo, .bp-once {
  display: flex;
  align-items: baseline;
  gap: 8px;
  transition: opacity .2s;
}

.bp-abo .branchen-price-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -.05em;
  line-height: 1;
}

.bp-once .branchen-price-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -.05em;
  line-height: 1;
}

.bp-abo .branchen-price-sub {
  font-size: .78rem;
  color: var(--muted);
}

.bp-once .branchen-price-sub {
  font-size: .78rem;
  color: var(--muted);
}

/* Abo mode: highlight abo, dim once */
.pricing-section[data-price-mode="abo"] .bp-abo {
  opacity: 1;
}

.pricing-section[data-price-mode="abo"] .bp-once {
  opacity: .35;
}

.pricing-section[data-price-mode="abo"] .bp-abo  .branchen-price-num {
  color: var(--blue);
}

/* Einmalig mode: highlight once, dim abo */
.pricing-section[data-price-mode="einmalig"] .bp-once {
  opacity: 1;
}

.pricing-section[data-price-mode="einmalig"] .bp-abo {
  opacity: .35;
}

.pricing-section[data-price-mode="einmalig"] .bp-once .branchen-price-num {
  color: var(--navy);
}

.pricing-section[data-price-mode="abo"] .bk-summary-total-abo {
  opacity: 1;
}

.pricing-section[data-price-mode="abo"] .bk-summary-total-once {
  opacity: .4;
}

.pricing-section[data-price-mode="abo"] .bk-total-price {
  font-size: 1.8rem;
}

.pricing-section[data-price-mode="abo"] .bk-total-price-once {
  font-size: 1rem;
}

.pricing-section[data-price-mode="einmalig"] .bk-summary-total-once {
  opacity: 1;
}

.pricing-section[data-price-mode="einmalig"] .bk-summary-total-abo {
  opacity: .4;
}

.pricing-section[data-price-mode="einmalig"] .bk-total-price-once {
  font-size: 1.8rem;
  font-weight: 900;
  color: white;
}

.pricing-section[data-price-mode="einmalig"] .bk-total-price {
  font-size: 1rem;
}

.pricing-section[data-price-mode="einmalig"] .bk-summary-note {
  display: none;
}

/* Baukasten addon price tags: switch per mode */
.pricing-section[data-price-mode="einmalig"] .bk-price-tag {
  display: none;
}

.pricing-section[data-price-mode="einmalig"] .bk-once-tag {
  display: inline-block;
}

.pricing-section[data-price-mode="abo"]      .bk-price-tag {
  display: inline-block;
}

.pricing-section[data-price-mode="abo"]      .bk-once-tag {
  display: none;
}

/* ============================================================
   MOBILE RESPONSIVENESS – NEW FEATURES
   ============================================================ */
/* ── 1100px: Approach tabs compact ──────────────────────── */
@media (max-width: 1100px) {
  .approach-tabs {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .approach-tab {
    padding: 14px 16px;
    gap: 12px;
  }

  .approach-tab-desc {
    display: none;
  }

  .approach-tab-num {
    width: 30px;
    height: 30px;
    font-size: .72rem;
    flex-shrink: 0;
  }

  .approach-tab-title {
    font-size: .85rem;
  }


}

/* ── 900px: Stack approach tabs ─────────────────────────── */
@media (max-width: 900px) {
  .approach-tabs {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .approach-tab {
    flex-direction: row;
    align-items: center;
  }

  .approach-tab-desc {
    display: block;
    font-size: .76rem;
    color: var(--muted);
  }

  /* Baukasten: 3-col bases → 1 col at tablet */
  .baukasten-bases {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  /* Branchen: ensure 2-col cards don't overflow */
  .branchen-card {
    padding: 18px;
  }

  .bk-base-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
    gap: 2px 12px;
    align-items: center;
  }

  .bk-base-name {
    grid-column: 1;
    grid-row: 1;
    font-size: .88rem;
  }

  .bk-base-price {
    grid-column: 1;
    grid-row: 2;
    font-size: 1.1rem;
    margin: 0;
  }

  .bk-base-desc {
    grid-column: 2 / 4;
    grid-row: 1 / 3;
    font-size: .75rem;
    align-self: center;
  }


}

/* ── 480px: Very small screens ───────────────────────────── */
@media (max-width: 480px) {
  /* Approach tabs: even more compact */
  .approach-tab {
    padding: 12px 14px;
    gap: 10px;
  }

  .approach-tab-desc {
    font-size: .72rem;
  }

  .approach-tab-num {
    display: none;
  }

  /* Baukasten base cards stacked full width */
  .bk-base-inner {
    padding: 12px 14px;
  }

  .bk-base-price {
    font-size: 1.1rem;
  }

  /* Baukasten addons: checkbox + text only, price below */
  .bk-addon {
    padding: 12px 12px;
  }

  /* Branchen price inline on small screens */
  .branchen-price {
    flex-direction: column;
    gap: 6px;
  }

  .branchen-cta {
    width: 100%;
    text-align: center;
  }

  /* Summary total */
  .bk-summary-total {
    gap: 8px;
  }

  .bk-total-price {
    font-size: 1.5rem !important;
  }

  /* Abo compare: hide "Einmalig" section on very small – show as simple note */
  .abo-compare-col--once {
    display: none;
  }

  .abo-compare-divider {
    display: none;
  }

  .abo-compare-strip {
    grid-template-columns: 1fr;
    border-radius: 12px;
  }


}

/* ============================================================
   VISUAL DECORATION
   ============================================================ */
.hero-illustration {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.hero-illustration svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: float 9s ease-in-out infinite;
}

/* Push hero content above illustration */
.hero-left,
.hero-panel {
  position: relative;
  z-index: 2;
}

/* ── Dot-grid pattern sections ───────────────────────────── */
[data-deco="dots"] {
  position: relative;
  overflow: hidden;
}

[data-deco="dots"]::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(36,135,255,.13) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

[data-deco="dots"] > * {
  position: relative;
  z-index: 1;
}

/* ── Diagonal-line pattern sections ─────────────────────── */
[data-deco="lines"] {
  position: relative;
  overflow: hidden;
}

[data-deco="lines"]::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(36,135,255,.04) 20px,
    rgba(36,135,255,.04) 21px
  );
  pointer-events: none;
  z-index: 0;
}

[data-deco="lines"] > * {
  position: relative;
  z-index: 1;
}

/* ── Leistungen: floating code badge ────────────────────── */
[data-deco="lines"]::after {
  content: '</>';
  position: absolute;
  bottom: 28px;
  right: clamp(24px, 5vw, 60px);
  font-family: 'Courier New', monospace;
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 700;
  color: var(--blue);
  opacity: .04;
  pointer-events: none;
  letter-spacing: -.05em;
  z-index: 0;
  user-select: none;
}

.about-section::before {
  content: '{ }';
  position: absolute;
  top: -20px;
  right: clamp(20px, 5vw, 80px);
  font-family: 'Courier New', monospace;
  font-size: clamp(5rem, 10vw, 10rem);
  font-weight: 700;
  color: var(--blue);
  opacity: .035;
  pointer-events: none;
  letter-spacing: -.1em;
  z-index: 0;
  user-select: none;
}

.about-section > * {
  position: relative;
  z-index: 1;
}

.pricing-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(36,135,255,.07), transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.pricing-section > * {
  position: relative;
  z-index: 1;
}

/* ── Section Decoration Containers ──────────────────────── */
.about-section,
.references-section,
.process-section {
  position: relative;
  overflow: hidden;
}

.section-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.section-deco svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-deco--top-right {
  inset: auto;
  top: 0;
  right: 0;
  width: 500px;
  height: 300px;
}

/* Ensure section content sits above deco */
.about-section > *:not(.section-deco),
.references-section > *:not(.section-deco),
.process-section > *:not(.section-deco),
[data-deco] > *:not(.section-deco) {
  position: relative;
  z-index: 1;
}

/* ============================================================
   WHY-SECTION – Warum eine Website?
   ============================================================ */
.why-section {
  background: linear-gradient(160deg, var(--navy) 0%, #0a2347 60%, #071B3A 100%);
  padding: clamp(74px, 9vw, 120px) clamp(20px, 5vw, 78px);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(36,135,255,.12), transparent 65%);
  pointer-events: none;
}

.why-inner {
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── Header ─────────────────────────────────────────────── */
.why-header {
  max-width: 680px;
  margin-bottom: clamp(40px, 6vw, 56px);
}

.why-header h2 {
  color: white;
  margin: 8px 0 0;
}

/* ── Stats ──────────────────────────────────────────────── */
.why-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 12px;
}

.why-stat {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  padding: clamp(20px, 2.5vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background .2s, border-color .2s;
}

.why-stat:hover {
  background: rgba(36,135,255,.1);
  border-color: rgba(36,135,255,.25);
}

.why-stat-num {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 4.5vw, 4rem);
  font-weight: 400;
  color: var(--blue2);
  letter-spacing: -.04em;
  line-height: 1;
  transition: color .4s ease;
}

.why-stat-label {
  font-size: .88rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  line-height: 1.4;
  flex: 1;
}

.why-stat-source {
  font-size: .68rem;
  color: rgba(255,255,255,.22);
  letter-spacing: .04em;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,.07);
}

/* ── Three punchy points ─────────────────────────────────── */
.why-points {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 32px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  overflow: hidden;
}

.why-point {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  padding: 18px 24px;
  font-size: .92rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
}

.why-point-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.1);
  flex-shrink: 0;
}

.why-point-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 10px;
  background: rgba(36,135,255,.2);
  color: var(--blue2);
  flex-shrink: 0;
}

.why-point-icon svg {
  display: block;
  width: 18px;
  height: 18px;
}

/* ── CTA block ──────────────────────────────────────────── */
.why-cta-block {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: clamp(18px, 2.5vw, 24px) clamp(20px, 3vw, 28px);
  background: rgba(36,135,255,.1);
  border: 1px solid rgba(36,135,255,.2);
  border-radius: 16px;
}

.why-cta-block p {
  margin: 0;
  flex: 1;
  min-width: 200px;
  font-size: .95rem;
  color: rgba(255,255,255,.65);
  font-style: italic;
}

@media (max-width: 540px) {
  .why-stats {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .why-stat-num {
    font-size: 2.4rem;
  }

  .why-cta-block {
    flex-direction: column;
    gap: 14px;
  }

  .why-cta-block .button {
    width: 100%;
    text-align: center;
  }

  .switch-pains {
    gap: 6px;
  }

  .switch-pains span {
    font-size: .76rem;
    padding: 5px 10px;
  }

  .footer {
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: center !important;
  }

  .footer > div:last-child {
    text-align: center;
  }


}

/* ============================================================
   ANIMATIONS
   ============================================================ */
/* ── Hero entrance ───────────────────────────────────────── */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }

}

.hero-left .eyebrow {
  animation: heroFadeUp .6s ease backwards;
  animation-delay: .05s;
  color: var(--blue2);
}

.hero-left h1 {
  animation: heroFadeUp .7s ease backwards;
  animation-delay: .15s;
  color: #FFFFFF;
}

.hero-left .lead {
  animation: heroFadeUp .7s ease backwards;
  animation-delay: .28s;
  color: rgba(255,255,255,.7);
}

.hero-left .hero-actions {
  animation: heroFadeUp .7s ease backwards;
  animation-delay: .4s;
}

.hero-left .micro-trust {
  animation: heroFadeUp .7s ease backwards;
  animation-delay: .52s;
}

/* ── Illustration: gentle float ──────────────────────────── */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }

}

/* ── Generic scroll-in ───────────────────────────────────── */
.anim-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}

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

/* ── Add-ons Strip ──────────────────────────────────────── */
.addons-strip {
  max-width: 1160px;
  margin: 28px auto 20px;
  padding: 18px 24px;
  background: rgba(255,255,255,.75);
  border: 1px solid var(--line);
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  backdrop-filter: blur(8px);
}

.addons-strip-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
}

.addons-strip-label svg {
  color: var(--blue);
}

.addons-strip-items {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex: 1;
}

.addons-strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  flex-wrap: wrap;
}

.addons-strip-item-name {
  font-size: .88rem;
  font-weight: 700;
  color: var(--navy);
}

.addons-strip-item-desc {
  font-size: .78rem;
  color: var(--muted);
}

.addons-strip-item-price {
  font-size: .82rem;
  font-weight: 700;
  color: var(--blue);
  background: #EEF6FF;
  border-radius: 999px;
  padding: 3px 10px;
  white-space: nowrap;
}

.addons-strip-item-cta {
  font-size: .78rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  padding: 5px 12px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  transition: border-color .15s, color .15s;
  white-space: nowrap;
}

.addons-strip-item-cta:hover {
  border-color: var(--blue);
  color: var(--blue);
}

/* Logo addon: always show einmalig tag */
.bk-addon--onetime .bk-price-onetime {
  background: #FEF3C7;
  color: #92400E;
  border: 1px solid rgba(245,158,11,.2);
}

/* Hide logo price tag from mode toggle (handled by JS) */
.bk-addon--onetime .bk-price-tag {
  display: inline-block !important;
}

/* ============================================================
   SWITCH SECTION – Wechseln & Sparen
   ============================================================ */
.switch-section {
  padding: clamp(74px, 9vw, 120px) clamp(20px, 5vw, 78px);
  background: linear-gradient(160deg, var(--navy) 0%, #0d2850 60%, #071B3A 100%);
  position: relative;
  overflow: hidden;
}

.switch-section::before {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(36,135,255,.1), transparent 65%);
  pointer-events: none;
}

.switch-inner {
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── Header ─────────────────────────────────────────────── */
.switch-header {
  max-width: 700px;
  margin-bottom: 32px;
}

.switch-header h2 {
  color: white;
  margin: 8px 0 12px;
}

.switch-lead {
  color: rgba(255,255,255,.6);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

/* ── Pain points ─────────────────────────────────────────── */
.switch-pains {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}

.switch-pains span {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  background: rgba(239,68,68,.12);
  border: 1px solid rgba(239,68,68,.22);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  color: #fca5a5;
}

.switch-pains span svg {
  color: #f87171;
  flex-shrink: 0;
}

/* ── Steps layout ────────────────────────────────────────── */
.switch-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
}

/* ── Step card ───────────────────────────────────────────── */
.switch-step {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}

.switch-step--featured {
  background: rgba(36,135,255,.1);
  border-color: rgba(36,135,255,.3);
  box-shadow: 0 0 0 1px rgba(36,135,255,.15);
}

.switch-step-badge {
  display: inline-block;
  padding: 3px 12px;
  background: rgba(255,255,255,.1);
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  width: fit-content;
}

.switch-step-badge--blue {
  background: rgba(36,135,255,.25);
  color: var(--blue2);
}

.switch-step-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(36,135,255,.2);
  border-radius: 14px;
  color: var(--blue2);
}

.switch-step-icon svg {
  display: block;
}

.switch-step h3 {
  font-size: 1.2rem;
  color: white;
  margin: 0;
}

.switch-step-price {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--blue2);
  letter-spacing: -.04em;
  margin: 0;
  line-height: 1;
}

.switch-step-desc {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  margin: 0;
  line-height: 1.6;
}

.switch-step-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}

.switch-step-list li {
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0;
}

.switch-step-list li::before {
  content: "✓";
  color: var(--blue2);
  font-weight: 700;
  font-size: .78rem;
  flex-shrink: 0;
}

.switch-cta {
  margin-top: 4px;
  justify-content: center;
}

.switch-step .secondary {
  border-color: rgba(255,255,255,.2);
  color: white;
  background: transparent;
}

.switch-step .secondary:hover {
  background: rgba(255,255,255,.08);
}

/* ── Arrow connector ─────────────────────────────────────── */
.switch-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.3);
}

.switch-arrow svg {
  flex-shrink: 0;
}

.switch-arrow span {
  font-size: .7rem;
  font-weight: 600;
  color: var(--blue2);
  text-align: center;
  line-height: 1.4;
  opacity: .7;
}

/* ── Bottom note ─────────────────────────────────────────── */
.switch-note {
  text-align: center;
  font-size: .88rem;
  color: rgba(255,255,255,.35);
  font-style: italic;
}

.switch-note a {
  color: rgba(255,255,255,.55);
  text-decoration: underline;
}

.switch-note a:hover {
  color: white;
}

/* ── Sportverein Branchen Card ───────────────────────────── */
.branchen-verein-calc {
  margin-top: 10px;
  padding: 10px 12px;
  background: rgba(36,135,255,.06);
  border: 1px solid rgba(36,135,255,.15);
  border-radius: 10px;
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.5;
}

.branchen-verein-label {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 4px;
}

.branchen-verein-example {
  color: var(--navy);
}

.branchen-verein-example strong {
  color: var(--blue);
}

/* ── Baukasten: Add-on group label ──────────────────────── */
.bk-addon-group-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 12px 0 4px;
  border-top: 1px solid var(--line);
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bk-addon-group-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}

/* ── Baukasten: Abteilungs quantity control ──────────────── */
.bk-abt-qty {
  display: none;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

.bk-abt-qty.is-active {
  display: flex;
}

.bk-qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: white;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .15s, background .15s;
  line-height: 1;
  padding: 0;
}

.bk-qty-btn:hover {
  border-color: var(--blue);
  background: #EEF6FF;
  color: var(--blue);
}

.bk-qty-val {
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  min-width: 20px;
  text-align: center;
}

.bk-qty-unit {
  font-size: .72rem;
  color: var(--muted);
}

/* Make verein addon show qty above price */
.bk-addon--verein .bk-addon-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

/* ── Branchen card: price breakdown pills ────────────────── */
.branchen-price-breakdown {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.branchen-price-pill {
  padding: 3px 9px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  white-space: nowrap;
}

.branchen-price-pill--base {
  background: #EEF6FF;
  color: var(--navy);
}

.branchen-price-pill--add {
  background: #F0FDF4;
  color: #166534;
}

.branchen-price-pill--note {
  background: #FEF3C7;
  color: #92400E;
  font-weight: 600;
}

.branchen-price-pill-sep {
  color: var(--blue);
  font-weight: 700;
  font-size: .8rem;
}

/* ============================================================
   LEISTUNGEN-PREISE SUBPAGE
   ============================================================ */
/* ── Page sub-hero ───────────────────────────────────────── */
.page-hero-sub {
  background: linear-gradient(160deg, var(--navy) 0%, #0d2850 100%);
  padding: clamp(100px,12vw,140px) clamp(20px,5vw,78px) clamp(60px,8vw,90px);
  position: relative;
  overflow: hidden;
  gap: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}

.page-hero-sub::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(36,135,255,.12) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.page-hero-sub-inner {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  text-align: center;
  max-width: 720px;
}

.page-hero-sub h1 {
  color: white;
  font-size: clamp(2.2rem,5vw,3.4rem);
  margin: 8px 0 16px;
}

.page-hero-sub-lead {
  color: rgba(255,255,255,.65);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 28px;
}

/* ── Nav active state ────────────────────────────────────── */
.nav-active {
  color: var(--blue) !important;
  font-weight: 700 !important;
}

/* ── Pricing overview cards (OnePage) ────────────────────── */
.pricing-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.pricing-overview-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 4px 16px rgba(7,27,58,.05);
  transition: transform .2s, box-shadow .2s;
}

.pricing-overview-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(7,27,58,.1);
}

.pricing-overview-card--highlight {
  border-color: var(--blue);
  background: linear-gradient(160deg, #EEF6FF, white);
}

.pricing-overview-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #EEF6FF, #dbeeff);
  border-radius: 12px;
  color: var(--blue);
}

.pricing-overview-icon svg {
  display: block;
}

.pricing-overview-body {
  flex: 1;
}

.pricing-overview-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.pricing-overview-body p {
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0 0 12px;
}

.pricing-overview-price {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--blue);
  letter-spacing: -.04em;
  line-height: 1;
}

.pricing-overview-price span {
  font-size: .8rem;
  font-weight: 500;
  color: var(--muted);
}

.pricing-overview-cta {
  width: 100%;
  justify-content: center;
  margin-top: auto;
  font-size: .84rem;
}

/* ── Digitalisierung Section ─────────────────────────────── */
.digit-section {
  padding: clamp(74px,9vw,120px) clamp(20px,5vw,78px);
  background: var(--bg);
}

.digit-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.digit-header {
  max-width: 700px;
  margin-bottom: clamp(36px,5vw,52px);
}

.digit-header h2 {
  margin: 8px 0 14px;
}

.digit-lead {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

.digit-topics {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 16px;
  margin-bottom: clamp(40px,6vw,56px);
}

.digit-topic {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  flex-direction: column;
}

.digit-topic-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #EEF6FF, #dbeeff);
  border-radius: 12px;
  color: var(--blue);
}

.digit-topic-icon svg {
  display: block;
}

.digit-topic h3 {
  font-size: 1rem;
  color: var(--navy);
  margin: 0 0 6px;
}

.digit-topic p {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.digit-pkg-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--navy);
  margin: 0 0 20px;
  font-weight: 400;
}

.digit-packages {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.digit-pkg {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px,2.5vw,28px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

.digit-pkg--featured {
  border-color: var(--blue);
  box-shadow: 0 8px 28px rgba(36,135,255,.14);
}

.digit-pkg-label {
  font-weight: 700;
  color: var(--navy);
  font-size: .95rem;
}

.digit-pkg-price {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--blue);
  letter-spacing: -.04em;
  line-height: 1;
}

.digit-pkg-price span {
  font-size: .78rem;
  font-weight: 500;
  color: var(--muted);
}

.digit-pkg-desc {
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.digit-pkg-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.digit-pkg-list li {
  font-size: .82rem;
  color: var(--text);
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin: 0;
}

.digit-pkg-list li::before {
  content: "✓";
  color: var(--blue);
  font-weight: 700;
  font-size: .74rem;
  flex-shrink: 0;
}

.digit-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 22px 28px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.digit-note p {
  margin: 0;
  font-size: .95rem;
  color: var(--muted);
  font-style: italic;
}

/* ── LP bottom CTA ───────────────────────────────────────── */
.lp-cta-section {
  background: var(--navy);
  padding: clamp(60px,8vw,100px) clamp(20px,5vw,78px);
  text-align: center;
}

.lp-cta-inner {
  max-width: 640px;
  margin: 0 auto;
}

.lp-cta-section h2 {
  color: white;
  margin: 0 0 12px;
}

.lp-cta-section p {
  color: rgba(255,255,255,.6);
  margin: 0 0 28px;
  line-height: 1.7;
}

.lp-cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.lp-cta-section .secondary {
  border-color: rgba(255,255,255,.2);
  color: white;
  background: transparent;
}

.footer-center {
  text-align: center;
}

.footer-version {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--muted);
  text-transform: uppercase;
  background: var(--bg);
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
}

.footer > div:last-child {
  text-align: right;
}

/* ── Ghost button for dark hero backgrounds ──────────────── */
.hero-btn-ghost {
  border-color: rgba(255,255,255,.4) !important;
  color: white !important;
  background: transparent !important;
}

.hero-btn-ghost:hover {
  background: rgba(255,255,255,.1) !important;
  border-color: white !important;
}

/* ============================================================
   ILLUSTRATION IMAGES
   ============================================================ */
/* ── Hero: replace SVG with PNG ─────────────────────────── */
.hero-illustration img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.18;
  mix-blend-mode: luminosity;
}

/* ── Pricing overview card image ─────────────────────────── */
.pricing-overview-img {
  width: 100%;
  height: 160px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 4px;
  background: #EEF6FF;
}

.pricing-overview-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .4s ease;
}

.pricing-overview-card:hover .pricing-overview-img img {
  transform: scale(1.04);
}

/* ── Ablauf: illustration above steps ────────────────────── */
.ablauf-illustration {
  max-width: 640px;
  margin: 0 auto 36px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(7,27,58,.1);
}

.ablauf-illustration img {
  width: 100%;
  height: auto;
  display: block;
}

.page-hero-sub-img {
  width: clamp(200px, 30vw, 380px);
  flex-shrink: 0;
  border-radius: var(--radius);
  overflow: hidden;
  opacity: .85;
}

.page-hero-sub-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Switch section visual ────────────────────────────────── */
.switch-visual {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 36px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,.25);
}

.switch-visual img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Digit topic image ────────────────────────────────────── */
.digit-topic-img {
  width: 100%;
  height: 130px;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 8px;
}

.digit-topic-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ── Digit package image ──────────────────────────────────── */
.digit-pkg-img {
  width: 100%;
  height: 120px;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 4px;
}

.digit-pkg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ── LP hosting visual banner ─────────────────────────────── */
.lp-hosting-visual {
  background: var(--navy);
  padding: 0;
  overflow: hidden;
  max-height: 320px;
}

.lp-hosting-visual img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: .85;
}

/* ── LP Hero: fullscreen background image ─────────────────── */
.page-hero-sub[style*="background-image"] {
  background-blend-mode: multiply;
  position: relative;
}

.page-hero-sub[style*="background-image"]::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(7,27,58,.88) 0%, rgba(13,40,80,.82) 100%);
  z-index: 0;
}

.page-hero-sub[style*="background-image"] .page-hero-sub-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
}

/* Dark gradient overlay sits between image and content */
.hero-illustration::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(7,27,58,.94) 0%,
    rgba(7,27,58,.85) 45%,
    rgba(7,27,58,.65) 100%
  );
  z-index: 1;
}

/* ── Hero: 4-service panel ───────────────────────────────── */
.hero-panel--services {
  min-width: 380px;
  max-width: 600px;
  width: 100%;
  padding: 34px 34px 26px;
}

.hero-panel-eyebrow {
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 14px;
  font-size: .78rem;
  margin-bottom: 18px;
}

.hero-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 18px;
}

.hero-service-tile {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--line);
  background: var(--bg);
  text-decoration: none;
  transition: border-color .15s, background .15s, transform .15s;
  padding: 18px 20px;
  gap: 14px;
  border-radius: 16px;
}

.hero-service-tile:hover {
  border-color: var(--blue);
  background: white;
  transform: translateY(-2px);
}

.hero-service-tile--highlight {
  border-color: rgba(36,135,255,.3);
  background: #EEF6FF;
}

.hero-service-tile-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  color: var(--blue);
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(7,27,58,.08);
  width: 44px;
  height: 44px;
  border-radius: 12px;
}

.hero-service-tile-name {
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 2px;
  font-size: .9rem;
}

.hero-service-tile-price {
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -.02em;
  font-size: 1.05rem;
}

.hero-service-tile-price span {
  font-weight: 500;
  color: var(--muted);
  font-size: .76rem;
}

.hero-panel-footer {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 4px;
}

.hero-panel-footer span {
  color: var(--muted);
  font-weight: 600;
  font-size: .78rem;
}

/* FIX 2: Thinner secondary button in hero */
.hero-secondary-btn {
  border-width: 1.5px !important;
  font-weight: 500 !important;
  color: white !important;
  border-color: rgba(255,255,255,.35) !important;
  background: transparent !important;
}

.hero-secondary-btn:hover {
  background: rgba(255,255,255,.08) !important;
  border-color: white !important;
}

/* FIX 3: Wechseln image – truly full width */
.switch-visual--full {
  max-width: 100%;
  border-radius: 0;
  margin-left: -clamp(20px,5vw,78px);
  margin-right: -clamp(20px,5vw,78px);
  width: calc(100% + clamp(40px,10vw,156px));
}

.switch-visual--full img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  object-position: center;
}

/* ============================================================
   FIXES: Hero contrast, anchor scroll offset, panel sizing
   ============================================================ */
.hero-left h1 em {
  color: var(--blue2);
}

/* ── FIX 3: Sticky header overlaps anchor targets on jump —
   give every anchor-linked section breathing room above it
   equal to the sticky header height + a little padding. ──── */
#start,
#ueber,
#referenzen,
#preise,
#ablauf,
#kontakt,
#digitalisierung,
#audit,
#sportverein {
  scroll-margin-top: 110px;
}

/* ── FIX 2: Hero services panel was capped too small on
   laptop screens, leaving empty space in its grid column. ── */
@media (min-width: 981px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(400px, 1fr);
  }


}

.hero-service-tile-icon svg {
  width: 22px;
  height: 22px;
}

