body { font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif; }

/* Panel navigation (header) — Stil aus dem Panel-Header (panel-name-badge.blade.php) übernommen */
.panel-nav { display: none; align-items: center; gap: 0.5rem; }
@media (min-width: 640px) { .panel-nav { display: flex; } }
.panel-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  border-radius: 9999px;
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  background: #fff;
  color: var(--module-color, #9A0056);
  border: 1px solid var(--module-color, #9A0056);
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  text-decoration: none;
  transition: transform 0.15s ease, background-color 0.15s ease;
}
.panel-nav-link:hover { transform: scale(1.05); background-color: var(--module-tint, #FAECE7); }
.panel-nav-link svg { height: 1rem; width: 1rem; opacity: 0.9; }
.panel-nav-link--active {
  background: var(--module-color, #9A0056);
  color: #fff;
  border-color: var(--module-color, #9A0056);
  cursor: default;
}
.panel-nav-link--active:hover { transform: none; background-color: var(--module-color, #9A0056); }
.panel-nav-label { display: none; }
@media (min-width: 768px) { .panel-nav-label { display: inline; } }

/* Modul-Farbvariablen für die Header-Buttons */
.panel-nav-link--isms { --module-color: #185FA5; --module-tint: #E6F1FB; }
.panel-nav-link--itms { --module-color: #0F6E56; --module-tint: #E1F5EE; }
.panel-nav-link--crm { --module-color: #D85A30; --module-tint: #FAECE7; }
.panel-nav-link--service { --module-color: #3B6D11; --module-tint: #EAF3DE; }
.panel-nav-link--preise { --module-color: #9A0056; --module-tint: #F7E4EF; }

/* Hero */
.hero-animated {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.24), transparent 36%), radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.2), transparent 34%), linear-gradient(135deg, #a3e635 0%, #4d7c0f 45%, #3f6212 55%, #a3e635 100%);
  background-size: 140% 140%;
  animation: heroGradientShift 16s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  isolation: isolate;
}
.hero-inner { padding-top: 4rem; padding-bottom: 4rem; }
.hero-title { font-size: 1.875rem; }
.hero-subtitle { margin-top: 1.5rem; max-width: 42rem; font-size: 1.125rem; color: #cbd5e1; }
.hero-flow-layer {
  pointer-events: none;
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(38% 45% at 18% 22%, rgba(255, 255, 255, 0.22), transparent 62%),
    radial-gradient(32% 38% at 82% 26%, rgba(154, 0, 86, 0.30), transparent 65%),
    radial-gradient(44% 52% at 58% 82%, rgba(132, 204, 22, 0.26), transparent 66%);
  filter: blur(20px);
  opacity: 0.92;
  mix-blend-mode: screen;
  transform-origin: 50% 50%;
  animation: heroFlowDrift 20s ease-in-out infinite alternate, heroFlowSpin 36s linear infinite;
  z-index: 0;
}
.hero-flow-layer::after {
  content: '';
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(42% 40% at 72% 20%, rgba(255, 255, 255, 0.24), transparent 64%),
    radial-gradient(36% 44% at 26% 74%, rgba(16, 185, 129, 0.28), transparent 68%);
  filter: blur(22px);
  opacity: 0.75;
  transform-origin: 50% 50%;
  animation: heroFlowDriftTwo 18s ease-in-out infinite alternate-reverse, heroFlowSpin 42s linear infinite reverse;
}
.hero-orb-one, .hero-orb-two {
  pointer-events: none;
  position: absolute;
  z-index: 1;
  height: 18rem;
  width: 18rem;
  border-radius: 9999px;
  filter: blur(64px);
}
.hero-orb-one { left: -5rem; top: 0; background: rgba(255, 255, 255, 0.1); animation: heroOrbFloatOne 14s ease-in-out infinite; }
.hero-orb-two { right: 0; top: 5rem; background: rgba(232, 121, 249, 0.2); animation: heroOrbFloatTwo 16s ease-in-out infinite; }

/* Modul-Hero-Varianten: Farben abgeleitet aus den Modulfarben (Icon-Badges), eigenes Animations-Timing je Seite */
.hero-animated--isms {
  background: radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.24), transparent 36%), radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.2), transparent 34%), linear-gradient(135deg, #6997c5 0%, #185fa5 45%, #0e3963 55%, #6997c5 100%);
  animation-duration: 14s;
}
.hero-animated--isms .hero-flow-layer {
  background:
    radial-gradient(38% 45% at 18% 22%, rgba(255, 255, 255, 0.22), transparent 62%),
    radial-gradient(32% 38% at 82% 26%, rgba(154, 0, 86, 0.30), transparent 65%),
    radial-gradient(44% 52% at 58% 82%, rgba(24, 95, 165, 0.30), transparent 66%);
  animation-duration: 18s, 32s;
  animation-direction: alternate-reverse, reverse;
}
.hero-animated--isms .hero-flow-layer::after {
  background:
    radial-gradient(42% 40% at 72% 20%, rgba(255, 255, 255, 0.24), transparent 64%),
    radial-gradient(36% 44% at 26% 74%, rgba(14, 57, 99, 0.32), transparent 68%);
  animation-duration: 16s, 38s;
  animation-direction: alternate, normal;
}
.hero-animated--isms .hero-orb-one { background: rgba(255, 255, 255, 0.12); animation-duration: 12s; }
.hero-animated--isms .hero-orb-two { background: rgba(24, 95, 165, 0.28); animation-duration: 15s; }

.hero-animated--itms {
  background: radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.24), transparent 36%), radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.2), transparent 34%), linear-gradient(135deg, #63a191 0%, #0f6e56 45%, #094234 55%, #63a191 100%);
  animation-duration: 18s;
}
.hero-animated--itms .hero-flow-layer {
  background:
    radial-gradient(38% 45% at 18% 22%, rgba(255, 255, 255, 0.22), transparent 62%),
    radial-gradient(32% 38% at 82% 26%, rgba(154, 0, 86, 0.30), transparent 65%),
    radial-gradient(44% 52% at 58% 82%, rgba(15, 110, 86, 0.30), transparent 66%);
  animation-duration: 22s, 40s;
}
.hero-animated--itms .hero-flow-layer::after {
  background:
    radial-gradient(42% 40% at 72% 20%, rgba(255, 255, 255, 0.24), transparent 64%),
    radial-gradient(36% 44% at 26% 74%, rgba(9, 66, 52, 0.34), transparent 68%);
  animation-duration: 20s, 46s;
}
.hero-animated--itms .hero-orb-one { background: rgba(255, 255, 255, 0.12); animation-duration: 15s; }
.hero-animated--itms .hero-orb-two { background: rgba(15, 110, 86, 0.28); animation-duration: 17s; }

.hero-animated--crm {
  background: radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.24), transparent 36%), radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.2), transparent 34%), linear-gradient(135deg, #e48c6e 0%, #d85a30 45%, #82361d 55%, #e48c6e 100%);
  animation-duration: 20s;
}
.hero-animated--crm .hero-flow-layer {
  background:
    radial-gradient(38% 45% at 18% 22%, rgba(255, 255, 255, 0.22), transparent 62%),
    radial-gradient(32% 38% at 82% 26%, rgba(154, 0, 86, 0.30), transparent 65%),
    radial-gradient(44% 52% at 58% 82%, rgba(216, 90, 48, 0.30), transparent 66%);
  animation-duration: 24s, 44s;
  animation-direction: alternate-reverse, reverse;
}
.hero-animated--crm .hero-flow-layer::after {
  background:
    radial-gradient(42% 40% at 72% 20%, rgba(255, 255, 255, 0.24), transparent 64%),
    radial-gradient(36% 44% at 26% 74%, rgba(130, 54, 29, 0.34), transparent 68%);
  animation-duration: 22s, 50s;
  animation-direction: alternate, normal;
}
.hero-animated--crm .hero-orb-one { background: rgba(255, 255, 255, 0.12); animation-duration: 16s; }
.hero-animated--crm .hero-orb-two { background: rgba(216, 90, 48, 0.28); animation-duration: 18s; }

.hero-animated--service {
  background: radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.24), transparent 36%), radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.2), transparent 34%), linear-gradient(135deg, #80a064 0%, #3b6d11 45%, #23410a 55%, #80a064 100%);
  animation-duration: 15s;
}
.hero-animated--service .hero-flow-layer {
  background:
    radial-gradient(38% 45% at 18% 22%, rgba(255, 255, 255, 0.22), transparent 62%),
    radial-gradient(32% 38% at 82% 26%, rgba(154, 0, 86, 0.30), transparent 65%),
    radial-gradient(44% 52% at 58% 82%, rgba(59, 109, 17, 0.30), transparent 66%);
  animation-duration: 19s, 34s;
}
.hero-animated--service .hero-flow-layer::after {
  background:
    radial-gradient(42% 40% at 72% 20%, rgba(255, 255, 255, 0.24), transparent 64%),
    radial-gradient(36% 44% at 26% 74%, rgba(35, 65, 10, 0.34), transparent 68%);
  animation-duration: 17s, 40s;
}
.hero-animated--service .hero-orb-one { background: rgba(255, 255, 255, 0.12); animation-duration: 13s; }
.hero-animated--service .hero-orb-two { background: rgba(59, 109, 17, 0.28); animation-duration: 16s; }

@keyframes heroGradientShift {
  0% { background-position: 8% 42%; background-size: 140% 140%; }
  18% { background-position: 74% 18%; background-size: 148% 143%; }
  37% { background-position: 26% 78%; background-size: 142% 150%; }
  56% { background-position: 88% 64%; background-size: 150% 146%; }
  79% { background-position: 44% 24%; background-size: 145% 141%; }
  100% { background-position: 8% 42%; background-size: 140% 140%; }
}
@keyframes heroFlowDrift {
  0% { transform: translate3d(-5%, -6%, 0) scale(1); }
  35% { transform: translate3d(8%, -2%, 0) scale(1.08); }
  70% { transform: translate3d(-3%, 7%, 0) scale(0.96); }
  100% { transform: translate3d(6%, 3%, 0) scale(1.06); }
}
@keyframes heroFlowDriftTwo {
  0% { transform: translate3d(4%, -3%, 0) scale(0.98); }
  45% { transform: translate3d(-6%, 5%, 0) scale(1.08); }
  100% { transform: translate3d(3%, 7%, 0) scale(1.02); }
}
@keyframes heroFlowSpin {
  0% { rotate: 0deg; }
  100% { rotate: 360deg; }
}
@keyframes heroOrbFloatOne {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(12px, -10px, 0) scale(1.04); }
}
@keyframes heroOrbFloatTwo {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-10px, 12px, 0) scale(1.06); }
}

/* Hero cards grid */
.hero-cards { display: grid; grid-template-columns: 1fr; gap: 1rem; align-items: flex-start; max-width: 72rem; margin-top: 2rem; }
@media (min-width: 640px) { .hero-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .hero-cards { grid-template-columns: repeat(4, 1fr); } }
.hero-card { display: flex; align-items: center; gap: 0.75rem; border-radius: 1rem; border: 1px solid #9A0056; background: #fff; padding: 0.625rem 1rem; box-shadow: 0 10px 25px rgba(15,23,42,0.22); color: #0f172a; }
.hero-card-icon { display: flex; height: 2.5rem; width: 2.5rem; flex-shrink: 0; align-items: center; justify-content: center; border-radius: 0.75rem; }
.hero-card-icon svg { height: 1.25rem; width: 1.25rem; }
.hero-card-body { min-width: 0; }
.hero-card-body .title { font-size: 1.125rem; font-weight: 700; line-height: 1.25; color: #0f172a; }
.hero-card-body .subtitle { margin-top: 0.125rem; font-size: 0.875rem; line-height: 1.25rem; color: #334155; }

/* Reusable icon badge (feature blocks) */
.icon-emerald { background-color: rgba(16, 185, 129, 0.12); color: #10b981; }
.icon-blue { background-color: rgba(59, 130, 246, 0.12); color: #3b82f6; }
.icon-violet { background-color: rgba(139, 92, 246, 0.12); color: #8b5cf6; }
.icon-on-hero { background-color: rgba(255, 255, 255, 0.18); color: #fff; }

/* Modulfarben (Icon-Badges für ISMS / ITMS / CRM / Service) */
.icon-isms { background-color: #E6F1FB; color: #185FA5; }
.icon-itms { background-color: #E1F5EE; color: #0F6E56; }
.icon-crm { background-color: #FAECE7; color: #D85A30; }
.icon-service { background-color: #EAF3DE; color: #3B6D11; }

/* Module-Seiten Hero-Kicker (Icon + Label über dem H1) */
.hero-kicker { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.hero-kicker-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(255, 255, 255, 0.85); }

/* Section headings / body copy */
.section-title { font-size: 1.875rem; font-weight: 700; letter-spacing: -0.025em; color: #0f172a; }
.lead-text { font-size: 1.125rem; line-height: 1.75; color: #334155; }
.lead-group { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.text-strong { font-weight: 600; }
.text-brand { font-weight: 600; color: #9A0056; }

/* Leistungsumfang + Preis-Teaser nebeneinander (Detailseiten) */
.leistung-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: start; }
@media (min-width: 900px) {
  .leistung-grid { grid-template-columns: minmax(0, 1fr) minmax(16rem, 20rem); gap: 2.5rem; }
}

.pricing-teaser {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  border: 1px solid rgba(154, 0, 86, 0.25);
  border-radius: 1rem;
  background: #F7E4EF;
  padding: 1.5rem;
}
.pricing-teaser-title { font-size: 1.05rem; font-weight: 700; color: #0f172a; }
.pricing-teaser-text { font-size: 0.9rem; line-height: 1.6; color: #334155; }
.pricing-teaser-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.25rem;
  border-radius: 0.65rem;
  background: #9A0056;
  color: #fff;
  padding: 0.6rem 1.1rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.15s ease;
}
.pricing-teaser-link:hover { background: #7A0046; }

/* Bordered side notes ("Zitat"-artige Absätze) */
.side-note { border-left: 2px solid; padding-left: 1.5rem; display: flex; flex-direction: column; gap: 2rem; }
.side-note--lime { border-color: #84cc16; }
.side-note--pink { border-color: rgba(154, 0, 86, 0.4); }
.side-note--spaced { margin-top: 2.5rem; }

/* Section spacing */
.section-intro { padding-top: 6rem; }
.section-slider { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.section-features { padding-bottom: 6rem; }

/* Slider */
.slider-article { position: relative; display: grid; gap: 2.5rem; border-radius: 1rem; border: 1px solid #e2e8f0; background: #fff; padding: 1.5rem; box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05); }
@media (min-width: 640px) { .slider-article { gap: 3rem; padding: 2rem; } }
@media (min-width: 1024px) { .slider-article { grid-template-columns: 1fr 1fr; gap: 5rem; padding: 3rem; } }
.slider-btn { position: absolute; top: 50%; z-index: 10; transform: translateY(-50%); border-radius: 9999px; border: 1px solid #cbd5e1; background: #fff; padding: 0.5rem; color: #334155; box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); cursor: pointer; transition: background-color 0.15s; }
.slider-btn:hover { background-color: #f8fafc; }
.slider-btn svg { height: 1.25rem; width: 1.25rem; }
.slider-btn-prev { left: 0.75rem; }
.slider-btn-next { right: 0.75rem; }
@media (min-width: 640px) { .slider-btn-prev { left: 1rem; } .slider-btn-next { right: 1rem; } }
.slider-img-wrap { padding: 0.5rem; }
@media (min-width: 640px) { .slider-img-wrap { padding: 0.75rem; } }
.slider-img { width: 100%; height: auto; border-radius: 0.75rem; border: 1px solid #e2e8f0; object-fit: cover; box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); }
.slider-text-wrap { display: flex; flex-direction: column; justify-content: flex-start; padding-top: 0.5rem; }
@media (min-width: 1024px) { .slider-text-wrap { padding-right: 1.25rem; } }
.slider-title { font-size: 1.5rem; font-weight: 600; letter-spacing: -0.025em; color: #0f172a; }
@media (min-width: 640px) { .slider-title { font-size: 1.875rem; } }

/* Panel grid (ISMS / ITMS / CRM overview) */
.panel-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.panel-card {
  display: flex;
  align-items: stretch;
  gap: 1.25rem;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  background: #fff;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}
.panel-card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.1rem 1.25rem 1.1rem 0;
}
.panel-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 7rem;
  min-width: 7rem;
  align-self: stretch;
  flex-shrink: 0;
}
.panel-card-icon svg {
  width: 3rem;
  height: 3rem;
}
.panel-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.6rem;
}
.panel-card-list {
  margin: 0;
  padding-left: 1.1rem;
  color: #334155;
  line-height: 1.65;
  font-size: 0.98rem;
}

/* Feature blocks (Schnittstellen, KI-Wizard, 3CX) */
.feature-block { margin-top: 2.5rem; }
.feature-block--lead { margin-top: 3rem; }
.feature-block-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; }
.feature-block-title { font-size: 1.25rem; font-weight: 700; color: #0f172a; }
.icon-badge { display: flex; align-items: center; justify-content: center; width: 2.5rem; height: 2.5rem; border-radius: 0.75rem; flex-shrink: 0; }
.icon-badge svg { width: 1.25rem; height: 1.25rem; }

.highlight-box { margin-top: 2.5rem; background-color: #f1f5f9; border-radius: 0.75rem; padding: 1rem 1.5rem; font-size: 1.125rem; line-height: 1.75; font-weight: 500; color: #334155; }

/* Feature-Detailbereich (Module-Seiten: Icon + Titel + Text + Screenshot-Platzhalter) */
.feature-detail-list { margin-top: 3rem; display: flex; flex-direction: column; gap: 3.5rem; }
.feature-detail-list .lead-text { margin-top: 0.75rem; }
.mt-14 { margin-top: 4rem; }

/* Screenshot-Platzhalter */
.screenshot-placeholder {
  margin-top: 1.5rem;
  display: flex;
  min-height: 14rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 2px dashed #cbd5e1;
  border-radius: 0.75rem;
  background: #f8fafc;
  padding: 1.5rem;
  text-align: center;
  color: #94a3b8;
}
.screenshot-placeholder svg { height: 2.25rem; width: 2.25rem; }
.screenshot-placeholder span { font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.02em; }

/* Screenshot-Galerie je Feature: immer in einer Zeile, gleichmäßig verteilt, einheitliche Höhe */
.feature-shots { margin-top: 1.5rem; display: flex; gap: 1rem; }
.feature-shot {
  display: block;
  flex: 1 1 0;
  min-width: 0;
  height: 200px;
  overflow: hidden;
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
  background: #f1f5f9;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}
.feature-shot img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: top left; cursor: zoom-in; }
@media (min-width: 640px) { .feature-shot { height: 240px; } }

/* Großes Vorschaubild (z. B. Dashboard-Übersicht) */
.hero-shot { margin-top: 2rem; height: 320px; overflow: hidden; border-radius: 1rem; border: 1px solid #e2e8f0; box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); }
.hero-shot img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: top left; cursor: zoom-in; }
@media (min-width: 640px) { .hero-shot { height: 420px; } }

/* Screenshot-Modal (Klick-Vergrößerung) */
.screenshot-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
}
.screenshot-modal.is-open { display: flex; }
.screenshot-modal-backdrop { position: absolute; inset: 0; background: rgba(15, 23, 42, 0.8); }
.screenshot-modal-content { position: relative; z-index: 1; max-width: 1000px; width: 100%; }
.screenshot-modal-content img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 0.75rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  background: #fff;
}
.screenshot-modal-close {
  position: absolute;
  top: -2.75rem;
  right: 0;
  display: flex;
  height: 2.25rem;
  width: 2.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.15s ease;
}
.screenshot-modal-close:hover { background: rgba(255, 255, 255, 0.3); }

/* Preisvergleich-Tabelle (Modul-Feature-Matrix) */
.comparison-table-wrap { margin-top: 2rem; overflow-x: auto; border: 1px solid #e2e8f0; border-radius: 1rem; background: #fff; }
.comparison-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.comparison-table th, .comparison-table td { padding: 0.85rem 1.1rem; text-align: left; border-bottom: 1px solid #e2e8f0; vertical-align: top; }
.comparison-table thead th { background: #f8fafc; font-weight: 700; color: #0f172a; white-space: nowrap; }
.comparison-table tbody th { font-weight: 600; color: #0f172a; white-space: nowrap; }
.comparison-table tbody tr:last-child td, .comparison-table tbody tr:last-child th { border-bottom: none; }
.comparison-table td { color: #334155; line-height: 1.6; }

/* Preise-Seite: Persona- und Laufzeit-Umschalter */
.persona-switch { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.persona-btn {
  border: 1px solid #cbd5e1;
  background: #fff;
  color: #334155;
  padding: 0.65rem 1.1rem;
  border-radius: 9999px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease, background-color 0.15s ease;
}
.persona-btn:hover { border-color: #9A0056; color: #9A0056; }
.persona-btn:focus-visible { outline: 2px solid #9A0056; outline-offset: 2px; }
.persona-btn[aria-selected="true"] { background: #9A0056; border-color: #9A0056; color: #fff; }

.billing-switch { display: inline-flex; gap: 0.25rem; padding: 0.25rem; background: #f1f5f9; border-radius: 9999px; }
.billing-btn { border: none; background: transparent; color: #334155; padding: 0.5rem 1rem; border-radius: 9999px; font-size: 0.875rem; font-weight: 600; cursor: pointer; }
.billing-btn:focus-visible { outline: 2px solid #9A0056; outline-offset: 2px; }
.billing-btn[aria-pressed="true"] { background: #fff; color: #9A0056; box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.08); }
.billing-badge { margin-left: 0.4rem; font-size: 0.7rem; font-weight: 700; color: #0F6E56; background: #E1F5EE; padding: 0.15rem 0.45rem; border-radius: 9999px; }

/* Preiskarten */
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 1.5rem; }
@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }

.pricing-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #e2e8f0;
  border-radius: 1.25rem;
  background: #fff;
  padding: 1.75rem;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  position: relative;
}
.pricing-card--featured { border-color: #9A0056; box-shadow: 0 10px 25px rgba(154, 0, 86, 0.12); }
.pricing-card-badge {
  position: absolute;
  top: -0.75rem;
  right: 1.5rem;
  background: #9A0056;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: 9999px;
}
.pricing-card-eyebrow { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.pricing-card-eyebrow--itms { color: #0F6E56; }
.pricing-card-eyebrow--compliance { color: #185FA5; }
.pricing-card-title { font-size: 1.25rem; font-weight: 700; color: #0f172a; margin-top: 0.35rem; }
.pricing-card-unit { font-size: 0.85rem; color: #64748b; margin-top: 0.15rem; }
.pricing-card-price { display: flex; align-items: baseline; gap: 0.35rem; margin-top: 1rem; flex-wrap: wrap; }
.pricing-card-price .amount { font-size: 1.875rem; font-weight: 800; color: #0f172a; }
.pricing-card-price .period { font-size: 0.85rem; color: #64748b; }
.pricing-card-note { margin-top: 0.35rem; font-size: 0.8rem; color: #0F6E56; font-weight: 600; }
.pricing-card-features { list-style: none; margin: 1.25rem 0 0; padding: 0; display: flex; flex-direction: column; gap: 0.55rem; font-size: 0.9rem; color: #334155; }
.pricing-card-features li { display: flex; gap: 0.5rem; align-items: flex-start; }
.pricing-card-features li::before { content: '\2713'; color: #0F6E56; font-weight: 700; flex-shrink: 0; }
.pricing-card--compliance .pricing-card-features li::before { color: #185FA5; }
.pricing-card-link {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid #e2e8f0;
  font-size: 0.85rem;
  font-weight: 600;
  color: #0F6E56;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.pricing-card-link:hover { text-decoration: underline; }
.pricing-card--compliance .pricing-card-link { color: #185FA5; }

.volume-discount { margin-top: 1.25rem; border-top: 1px dashed #e2e8f0; padding-top: 1rem; font-size: 0.85rem; color: #334155; }
.volume-discount-title { font-weight: 700; color: #0f172a; margin-bottom: 0.4rem; }
.volume-discount-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.25rem; }

.crm-inclusive-note {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #9A3412;
  background: #FAECE7;
  border: 1px solid #D85A30;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
}
.crm-inclusive-note::before { content: '\2713'; color: #D85A30; font-weight: 700; }
.crm-inclusive-note-link { color: #9A3412; text-decoration: underline; text-underline-offset: 2px; white-space: nowrap; }
.crm-inclusive-note-link:hover { color: #D85A30; }

/* Modell-Erklärung */
.model-explainer { margin-top: 2rem; border: 1px solid #e2e8f0; border-radius: 1rem; background: #f8fafc; padding: 1.5rem; }
.model-explainer-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 1.25rem; }
@media (min-width: 640px) { .model-explainer-grid { grid-template-columns: 1fr 1fr; } }
.model-explainer-item { display: flex; gap: 0.85rem; align-items: flex-start; }

/* CTA + Schritte */
.cta-section { margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }
.btn-secondary-outline {
  border-radius: 0.5rem;
  border: 1px solid #9A0056;
  padding: 0.6rem 0.9rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #9A0056;
  background: #fff;
  transition: background-color 0.15s ease;
  cursor: pointer;
}
.btn-secondary-outline:hover { background: #FAECE7; }
.btn-secondary-outline:focus-visible { outline: 2px solid #9A0056; outline-offset: 2px; }

.steps-list { margin-top: 1.75rem; display: grid; grid-template-columns: 1fr; gap: 1rem; list-style: none; padding: 0; counter-reset: steps; }
@media (min-width: 768px) { .steps-list { grid-template-columns: repeat(3, 1fr); } }
.steps-list li {
  counter-increment: steps;
  border: 1px solid #e2e8f0;
  border-radius: 0.85rem;
  background: #fff;
  padding: 1rem 1.1rem 1rem 2.75rem;
  font-size: 0.9rem;
  color: #334155;
  position: relative;
}
.steps-list li::before {
  content: counter(steps);
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 9999px;
  background: #9A0056;
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Anfrage-/Demo-Dialog */
.request-modal { display: none; position: fixed; inset: 0; z-index: 100; align-items: center; justify-content: center; padding: 1.5rem; }
.request-modal.is-open { display: flex; }
.request-modal-backdrop { position: absolute; inset: 0; background: rgba(15, 23, 42, 0.6); }
.request-modal-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 32rem;
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 1rem;
  padding: 1.75rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}
.request-modal-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  border: none;
  background: #f1f5f9;
  color: #334155;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}
.request-modal-close:hover { background: #e2e8f0; }
.request-modal-title { font-size: 1.25rem; font-weight: 700; color: #0f172a; padding-right: 2rem; }
.request-form { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 1rem; border: none; padding: 0; }
.form-field { display: flex; flex-direction: column; gap: 0.35rem; border: none; padding: 0; margin: 0; }
.form-field legend { font-size: 0.85rem; font-weight: 600; color: #334155; padding: 0; }
.form-field label { font-size: 0.85rem; font-weight: 600; color: #334155; }
.form-field input, .form-field select, .form-field textarea {
  border: 1px solid #cbd5e1;
  border-radius: 0.5rem;
  padding: 0.55rem 0.75rem;
  font-size: 0.9rem;
  font-family: inherit;
  color: #0f172a;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: 2px solid #9A0056;
  outline-offset: 1px;
  border-color: #9A0056;
}
.form-radio-group { display: flex; flex-wrap: wrap; gap: 1rem; }
.form-radio-group label { display: flex; align-items: center; gap: 0.4rem; font-size: 0.875rem; font-weight: 500; color: #334155; }
.form-actions { display: flex; gap: 0.75rem; margin-top: 0.25rem; flex-wrap: wrap; }
.form-confirmation { text-align: center; padding: 1.5rem 0; }
.form-confirmation svg { width: 3rem; height: 3rem; color: #0F6E56; margin: 0 auto 1rem; }

/* Footer */
.site-footer { border-color: #475569; background-color: #0f172a; color: #f8fafc; }
.site-footer-bottom { border-color: #334155; }
.footer-heading { color: #f8fafc; }
.footer-text { color: #f1f5f9; }
.footer-link { color: #ffffff; }
.footer-copy { color: #e2e8f0; }
