:root {
  --navy: #081f49;
  --navy-2: #17365f;
  --blue: #0d5bd7;
  --teal: #00918a;
  --teal-2: #27c6b7;
  --ink: #1d2b45;
  --muted: #5d6f8f;
  --line: #dce8f3;
  --surface: #ffffff;
  --surface-soft: #f7fbff;
  --surface-teal: #effcfa;
  --shadow: 0 20px 60px rgba(8, 31, 73, .08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: 1400px;
}
html { 
  scroll-behavior: smooth; 
}
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 80% 18%, rgba(39,198,183,.10), transparent 28rem),
    linear-gradient(180deg, #fff 0%, #f9fcff 100%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; margin-top: 20px; }

.site-header {
  height: auto;
  min-height: 108px;
  padding: 6px max(28px, calc((100vw - var(--container))/2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.brand { line-height: 0; }
.brand img { height: 100px; width: auto; max-height: 100px; object-fit: contain; }
.site-nav { display: flex; align-items: center; gap: 34px; font-weight: 700; font-size: 20px; color: var(--navy); }
.site-nav a { padding: 12px 0; border-bottom: 2px solid transparent; }
.site-nav a.is-active { color: var(--blue); border-bottom-color: var(--blue); }
/*.site-nav .nav-demo {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 20px;
  background: #fff;
  box-shadow: 0 5px 16px rgba(8,31,73,.04);
}*/
.nav-toggle { display: none; }
.mobile-tools { display: none; }

.site-nav .nav-service {
  border: 1px solid #b7e7e4;
  border-radius: 999px;
  padding: 10px 18px;
  background: linear-gradient(135deg, rgba(13,91,215,.10), rgba(39,198,183,.16));
  color: var(--teal);
}
.site-nav .nav-service.is-active { color: var(--blue); border-color: var(--blue); }

.nav-dropdown { position: relative; }
.nav-dropdown-trigger { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; }
.nav-dropdown-trigger .caret { font-size: 12px; transition: transform .15s ease; }
.nav-dropdown:hover .nav-dropdown-trigger .caret,
.nav-dropdown:focus-within .nav-dropdown-trigger .caret { transform: rotate(180deg); }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  padding: 8px 10px 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  flex-direction: column;
  gap: 2px;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu { display: flex; }
.nav-dropdown-menu a {
  padding: 10px 12px;
  border-radius: 9px;
  border-bottom: 0;
  font-weight: 700;
  color: var(--navy-2);
}
.nav-dropdown-menu a:hover { background: var(--surface-soft); color: var(--blue); }
.nav-dropdown-menu a.is-active { background: var(--surface-teal); color: var(--teal); }

/* --- separator in dropdown --- */
.dropdown-sep-item {
  border: none;
  border-top: 1px solid var(--line);
  margin: 6px 16px 4px;
}

/* --- tables: light gray border for readability --- */
table {
  border-collapse: collapse;
  border: 1px solid var(--line);
  width: 100%;
}
th, td {
  border: 1px solid var(--line);
  padding: 8px 12px;
  text-align: left;
}
th {
  background: var(--surface-soft);
  font-weight: 700;
}

.hero { padding: 76px 0 82px; border-bottom: 1px solid var(--line); }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 80px; align-items: center; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.80);
  color: var(--teal);
  font-weight: 800;
  letter-spacing: .01em;
  font-size: 14px;
}
.badge::before {
  content: "";
  width: 18px; height: 18px;
  background: url("/icons/local_shield.svg") center / contain no-repeat;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin: 28px 0 18px;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.045em;
  color: var(--navy);
}

h2 { font-size: 20px; }
h3 { font-size: 18px; }

.hero-copy p, .page-hero p {
  max-width: 610px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}
.hero-actions { display: flex; gap: 18px; margin-top: 30px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 13px;
  min-height: 52px;
  padding: 0 26px;
  font-weight: 800;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: #fff;
  box-shadow: 0 14px 32px rgba(13,91,215,.20);
}
.btn-secondary {
  background: #fff;
  color: var(--navy);
  border: 1px solid var(--line);
}
.ai-card {
  background: rgba(255,255,255,.86);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 34px;
  max-width: 360px;
  margin-left: auto;
}
.ai-card-icon { width: 56px; height: 56px; padding: 12px; border-radius: 50%; background: var(--surface-teal); margin-bottom: 26px; }
.ai-card h2 { color: var(--navy); font-size: 24px; letter-spacing: -.03em; }
.ai-card p { color: var(--muted); line-height: 1.65; margin: 0; }

.index-section { padding: 54px 0 64px; border-bottom: 1px solid var(--line); }
.index-section h2, .features-home h2 {
  text-align: center;
  color: var(--navy);
  font-size: 30px;
  letter-spacing: -.035em;
}
.index-graphic {
  margin: 26px auto 0;
  max-width: 1100px;
}
.index-graphic img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(8,31,73,.08);
}

.features-home { padding: 46px 0 28px; }
.feature-grid { display: grid; gap: 24px; }
.feature-grid.compact { grid-template-columns: repeat(4, 1fr); }
.feature-grid.detail { grid-template-columns: repeat(3, 1fr); }
.feature-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 10px 34px rgba(8,31,73,.04);
}
.feature-card .icon {
  width: 40px;
  height: 40px;
  padding: 12px;
  border-radius: 50%;
  background: #eef6ff;
  margin-bottom: 28px;
  object-fit: contain;
}
.feature-card h3, .feature-card h2 {
  color: var(--navy);
  font-size: 20px;
  letter-spacing: -.02em;
  margin-bottom: 12px;
}
.feature-card p { color: var(--muted); line-height: 1.55; margin: 0; }
.section-link { text-align: center; margin: 30px 0 0; font-weight: 800; color: var(--blue); }

.benefits { padding: 22px 0; }
.benefit-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.86);
}
.feature-grid.four-col {
  grid-template-columns: repeat(4, 1fr);
  border-radius: 0;
}
.benefit-strip {
  border-radius: 20px;
}
.benefit-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  align-items: center;
  padding: 24px;
}
.benefit-item + .benefit-item { border-left: 1px solid var(--line); }
.benefit-item .icon { width: 36px; height: 36px; object-fit: contain; }
.benefit-item h3 { color: var(--navy); font-size: 16px; margin-bottom: 4px; }
.benefit-item p { color: var(--muted); font-size: 14px; line-height: 1.35; margin: 0; }

.cta { padding: 26px 0 52px; }
.cta-card {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 30px;
  align-items: center;
  border: 1px solid #b7e7e4;
  border-radius: 24px;
  padding: 30px 36px;
  background:
    radial-gradient(circle at 100% 50%, rgba(39,198,183,.18), transparent 18rem),
    linear-gradient(135deg, #f9fcff, #effcfa);
}
.cta-card > img { width: 92px; margin: auto; }
.cta-card h2 { color: var(--navy); font-size: 27px; letter-spacing: -.03em; margin-bottom: 8px; }
.cta-card p { color: var(--muted); margin: 10; }

.page-hero { padding: 74px 0 50px; }
.feature-hero-grid { align-items: center; }
.mini-index {
  display: grid;
  grid-template-columns: 150px 150px 150px;
  gap: 26px;
  align-items: center;
  justify-content: end;
}
.mini-index img {
  width: 132px;
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 20px;
  background: #fff;
  box-shadow: var(--shadow);
}
.mini-left, .mini-right { display: grid; gap: 14px; }
.mini-index span {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 11px 14px;
  font-weight: 800;
  color: var(--navy);
  box-shadow: 0 8px 24px rgba(8,31,73,.04);
}
.feature-details { padding: 22px 0 28px; }
.detail-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}
.detail-card .detail-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.detail-card .icon {
  flex-shrink: 0;
}
.detail-card .detail-card-link-inline {
  font-weight: 800;
  color: var(--blue);
  text-decoration: none;
  white-space: nowrap;
  font-size: 14px;
}
.detail-card .detail-card-link-inline:hover {
  text-decoration: underline;
}
.detail-card li {
  color: var(--muted);
  margin: 10px 0;
  padding-left: 24px;
  position: relative;
  line-height: 1.45;
}
.detail-card li::before {
  content: "✓";
  color: var(--blue);
  position: absolute;
  left: 0;
  font-weight: 900;
}
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips span {
  background: #f2f7fd;
  color: var(--navy-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 14px;
  font-weight: 700;
}
.flow { padding: 22px 0; }
.flow h2 { text-align: center; color: var(--navy); font-size: 21px; }
.flow-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 20px;
  padding: 18px;
}
.flow-strip.four-col-flow {
  grid-template-columns: repeat(2, 1fr);
  max-width: min(640px, 100%);
  margin-inline: auto;
}
.flow-strip article {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 64px;
}
.flow-strip .icon { width: 36px; height: 36px; }
.flow-strip span { color: var(--navy); font-weight: 700; font-size: 14px; }

.flow-group { margin-bottom: 32px; }
.flow-group:last-child { margin-bottom: 0; }
.flow-group h3 {
  color: var(--navy);
  font-size: 18px;
  margin-bottom: 14px;
}

.info-bars { padding: 20px 0; }
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.info-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  padding: 24px;
}
.info-card .icon { width: 40px; height: 40px; padding: 12px; border-radius: 50%; background: #eef6ff; object-fit: contain; }
.info-card h2 { color: var(--navy); font-size: 19px; margin-bottom: 8px; }
.info-card p { color: var(--muted); line-height: 1.5; }

.placeholder { padding: 96px 0; }
.placeholder-card {
  max-width: 780px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 56px;
}
.placeholder-card h1 { font-size: 52px; }
.prose { margin: 26px 0; color: var(--muted); line-height: 1.7; }

.site-footer {
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 40px max(28px, calc((100vw - var(--container))/2)) 22px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 54px;
}
.footer-brand img { width: 180px; }
.footer-brand p { color: var(--muted); max-width: 330px; line-height: 1.55; }
.site-footer h3 {
  color: var(--navy);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.site-footer a {
  display: block;
  color: var(--muted);
  margin: 10px 0;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  margin-top: 28px;
  padding-top: 18px;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

@media (max-width: 920px) {

  .site-header { height: auto; padding: 18px 24px; align-items: center; }
  .nav-toggle { display: grid !important; gap: 4px; border: 0; background: transparent; padding: 12px; cursor: pointer; -webkit-tap-highlight-color: transparent; z-index: 10; pointer-events: auto; min-width: 48px; min-height: 48px; place-content: center; }
  .nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); }
  .site-nav { display: none; position: absolute; top: 100%; left: 24px; right: 24px; flex-direction: column; align-items: flex-start; padding: 22px; background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); z-index: 10; font-size: 18px; }
  .site-nav.is-open { display: flex; }
  .nav-dropdown { width: 100%; }
  .nav-dropdown-menu { display: flex; position: static; box-shadow: none; border: 0; padding: 4px 0 4px 14px; min-width: 0; }
  .nav-dropdown-trigger .caret { display: none; }
  h2, h3 { font-size: 16px !important; }
  body { font-size: 12px; }
  .lang-switcher { display: none !important; }

  /* Mobile tools (Lang-Switch + Kontrast, links vom Burger) — nur ≤ 920px */
  .mobile-tools {
    display: flex !important;
    gap: 4px;
    padding-left: 6px;
  }

  /* DE | EN nebeneinander, Kontrast drunter */
  .tools-grid-lang {
    display: inline-flex !important;
    gap: 3px;
    margin-right: 18px;
  }
  .mobile-tools .lang-toggle {
    padding: 0 !important;
    font-size: 14px;
    line-height: 1;
    font-weight: 600;
  }
  .mobile-tools button.contrast-toggle {
    border: 2px solid var(--line);
    background: transparent;
    padding: 4px 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    line-height: 1;
    font-family: inherit;
    transition: none;
    color: var(--ink);
  }

  .hero-grid, .feature-hero-grid, .info-grid { grid-template-columns: 1fr; }
  .ai-card { margin: 0; max-width: none; }
  .feature-grid.compact, .feature-grid.detail, .benefit-strip, .flow-strip { grid-template-columns: 1fr; }
  .benefit-item + .benefit-item { border-left: 0; border-top: 1px solid var(--line); }
  .index-graphic { grid-template-columns: 1fr; gap: 18px; justify-items: center; }
  .index-left, .index-right { justify-items: stretch; width: min(360px, 100%); }
  .mini-index { grid-template-columns: 1fr; justify-content: start; }
  .cta-card { grid-template-columns: 1fr; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* Support page – full-width hero (no aside) */

.support-page .product-hero {
  background: linear-gradient(180deg, rgba(39,198,183,.06), rgba(255,255,255,.88));
}

.support-hero-content {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.support-hero-content > .badge { 
  align-self: flex-start;
}

/* ═══════════ Support page – tier sections ═══════════ */
.product-hero {
  padding: 82px 0 76px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 75% 25%, rgba(39,198,183,.12), transparent 26rem),
    linear-gradient(180deg, rgba(255,255,255,.78), rgba(247,251,255,.92));
}

.product-hero-grid {
  display: grid;
  grid-template-columns: 1fr .88fr;
  gap: 72px;
  align-items: center;
}

.product-hero-copy h1 {
  margin: 28px 0 20px;
  max-width: 720px;
}

.product-hero-copy p {
  max-width: 640px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.65;
}

.product-signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.product-signal-row span {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.86);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--navy-2);
  font-size: 13px;
  font-weight: 800;
}

.product-preview {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.product-preview-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
}

.product-preview-head strong {
  margin-left: 12px;
}

.window-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cfe0f2;
}

.product-preview-body {
  padding: 18px;
  display: grid;
  gap: 12px;
}

.mock-message {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 18px;
  padding: 18px;
}

.mock-message strong {
  color: var(--teal);
  font-size: 13px;
}

.mock-message h3 {
  margin: 6px 0 6px;
  color: var(--navy);
  font-size: 17px;
}

.mock-message p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.mock-message > span {
  color: var(--blue);
  font-weight: 900;
}

.product-preview-ai {
  display: flex;
  gap: 16px;
  align-items: center;
  margin: 0 24px 24px;
  padding: 18px 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, #f4fbff, #effcfa);
  border: 1px solid #c8ebe8;
}

.product-ai-icon {
  width: 54px;
  height: 54px;
  padding: 12px;
  border-radius: 50%;
}

.product-preview-ai h3 {
  color: var(--navy);
  font-size: 17px;
}

.product-preview-ai p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.product-features {
  padding: 68px 0 42px;
}

.section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 34px;
}

.section-heading h2 {
  color: var(--navy);
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -.04em;
  margin-bottom: 14px;
}

.section-heading p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.product-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.product-feature-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  padding: 28px;
  min-height: 240px;
  box-shadow: 0 10px 34px rgba(8,31,73,.04);
}

.product-feature-card .icon {
  width: 40px;
  height: 40px;
  padding: 12px;
  border-radius: 50%;
  background: #eef6ff;
  margin-bottom: 28px;
  object-fit: contain;
}

.product-feature-card.feature-card-link {
  position: relative;
}

.product-feature-card.feature-card-link .detail-card-link-inline {
  position: absolute;
  top: 20px;
  right: 24px;
  font-weight: 800;
  color: var(--blue);
  text-decoration: none;
  white-space: nowrap;
  font-size: 14px;
}

.product-feature-card.feature-card-link .detail-card-link-inline:hover {
  text-decoration: underline;
}

.product-feature-card.feature-card-link .icon {
  width: 40px;
  height: 40px;
  padding: 12px;
  border-radius: 50%;
  background: #eef6ff;
  margin-bottom: 28px;
  object-fit: contain;
}

.product-feature-card.feature-card-link h3 {
  color: var(--navy);
  font-size: 20px;
  margin-bottom: 10px;
}

.product-feature-card.feature-card-link p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.product-flow {
  padding: 40px 0;
}

.product-flow h2 {
  text-align: center;
  color: var(--navy);
  font-size: 32px;
  letter-spacing: -.035em;
}

.product-flow-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 26px;
}

.product-flow-grid article {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  padding: 28px;
}

.product-flow-grid strong {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #eef6ff;
  color: var(--blue);
  display: grid;
  place-items: center;
}

.product-flow-grid .icon {
  width: 56px;
  height: 56px;
  padding: 12px;
  border-radius: 50%;
  background: var(--surface-teal);
  margin-bottom: 26px;
}

.product-flow-grid h3 {
  color: var(--navy);
  font-size: 20px;
}

.product-flow-grid p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.compare-section { padding: 40px 0; }
.compare-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 34px rgba(8,31,73,.04);
}
.compare-table { width: 100%; border-collapse: collapse; min-width: 640px; }
.compare-table th, .compare-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.compare-table thead th {
  color: var(--navy);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .05em;
  background: var(--surface-soft);
}
.compare-table tbody th {
  color: var(--navy);
  font-weight: 800;
  white-space: nowrap;
}
.compare-table td { color: var(--muted); }
.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-table thead th:nth-last-child(2),
.compare-table thead th:last-child {
  color: var(--teal);
}
.compare-note { margin: 16px 0 0; color: var(--muted); font-size: 14px; text-align: center; }

.product-integrations {
  padding: 24px 0 32px;
}

.legal-banner {
  display: flex;
  gap: 16px;
  align-items: start;
  border: 1px solid #f5d99a;
  border-radius: 22px;
  background: #fef9ee;
  padding: 24px 28px;
}

/* Feature-Seiten: legal zwischen Feature-Cards und CTA */
.alcilla-feature-page .product-legal {
  margin-block: 60px 0;
}

/* Recorder: größerer Abstand Legal → feature-cards/narrative */
.alcilla-feature-page.feature-page--recorder .feature-details {
  padding-top: 120px;
}

.legal-banner .icon {
  flex-shrink: 0;
  color: #b8860b;
  height: 24px;
  width: auto;
}

.legal-banner h2 {
  margin: 0 0 6px;
  font-size: 17px;
  color: #8b6914;
}

.legal-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.65;
}

.integration-card {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  align-items: center;
  border: 1px solid #b7e7e4;
  border-radius: 26px;
  padding: 34px 40px;
  background:
    radial-gradient(circle at 100% 20%, rgba(39,198,183,.16), transparent 22rem),
    linear-gradient(135deg, #fbfdff, #effcfa);
}

.integration-card h2 {
  color: var(--navy);
  font-size: 32px;
  letter-spacing: -.035em;
  margin-bottom: 10px;
}

.integration-card p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.integration-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--teal);
  font-weight: 700;
}

.integration-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.integration-pills span {
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--navy);
  font-weight: 800;
}

@media (max-width: 920px) {
  .product-hero-grid,
  .product-feature-grid,
  .product-flow-grid,
  .integration-card {
    grid-template-columns: 1fr;
  }

  .integration-pills {
    justify-content: flex-start;
  }

  .feature-showcase__row {
    grid-template-columns: 1fr;
  }
  .feature-showcase__row--reverse .feature-showcase__copy,
  .feature-showcase__row--reverse .feature-showcase__media {
    order: 0;
  }
}

/* Feature-Showcase mit alternierenden Screenshot-Reihen */
.feature-showcase {
  padding: 100px 0;
}

.feature-showcase__list {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.feature-showcase__row {
  display: flex;
  gap: 36px;
  align-items: center;
}

/* Default: copy(1/3) | media(2/3) */
.feature-showcase__row .feature-showcase__copy { flex-basis: 33.333%; }
.feature-showcase__row .feature-showcase__media  { flex-basis: 66.666%; }

/* Umgekehrt: media(2/3) | copy(1/3) */
.feature-showcase__row--reverse .feature-showcase__copy { order: 2; flex-basis: 33.333%; }
.feature-showcase__row--reverse .feature-showcase__media  { order: 1; flex-basis: 66.666%; }

/* Nummer ausblenden, wenn der Schritt ein Screenshot-Bild hat */
.workflow-step:has(.screenshot-frame) .workflow-step__number { display: none; }

.feature-showcase__copy h2 {
  color: var(--navy);
  font-size: 26px;
  letter-spacing: -.03em;
  margin: 0 0 10px;
}

.feature-showcase__copy p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 12px;
}

.text-link {
  font-weight: 800;
  color: var(--blue);
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.feature-showcase__media {
  margin: 0;
}

.screenshot-frame,
.screenshot-placeholder {
  border-radius: 16px;
  overflow: hidden;
  width: auto;
  max-height: 600px;
  display: grid;
  place-items: center;
}

.screenshot-frame img {
  display: block;
  width: auto;
  height: auto;
  max-height: 600px;
}

.screenshot-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 64px 24px;
  text-align: center;
}

.screenshot-placeholder span {
  color: var(--muted);
  font-size: 13px;
}

.screenshot-placeholder strong {
  color: var(--navy);
  font-size: 15px;
}

.feature-showcase__media figcaption {
  padding: 8px 0 0;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}

/* Workflow Timeline mit Screenshots */
.product-workflow {
  padding: 68px 0;
}

.product-workflow .section-heading h2 {
  margin-bottom: 42px;
}

/* Vertikale Schrittliste */
.product-workflow ol {
  list-style: none;
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* Pfeil-Element zwischen Schritten */
.product-workflow ol > span.workflow-arrow {
  align-self: center;
}

/* Jeder li + nachfolgender Pfeil = eine Gruppe */
.product-workflow ol > .workflow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

/* Pfeil zwischen Schritten — größerer Abstand */
.product-workflow ol > .workflow-arrow {
  margin: 12px auto;
}
.workflow-step__number {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--bg-accent);
  color: var(--blue);
  font-size: 18px;
  font-weight: 900;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}

/* Titel */
.workflow-step h3 {
  color: var(--navy);
  font-size: 22px;
  letter-spacing: -.025em;
  margin: 0 0 18px;
}

/* Screenshot */
.workflow-step figure {
  margin: 0;
  width: 150%;
}

/* Fließtext */
.workflow-step__text {
  color: var(--muted);
  line-height: 1.6;
  max-width: 640px;
  margin: 20px auto 0;
  text-align: center;
}

/* Pfeil zwischen Schritten */
.workflow-arrow {
  display: inline-block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-accent);
  color: var(--blue);
  font-size: 18px;
  line-height: 32px;
  text-align: center;
  margin: 24px auto;
}

@media (max-width: 680px) {
  .workflow-step h3 {
    font-size: 19px;
  }

  .workflow-arrow {
    font-size: 15px;
  }
}

/* ============================================
   PRICING PAGE – Zielbild "Preise"
   ============================================ */

html.pricing-document .site-header,
html.pricing-document .site-footer {
  display: none;
}

html.pricing-document body {
  background: #f4f8fc;
}

html.pricing-document main {
  display: block;
}

.pricing-page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: #071f4a;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96) 0, rgba(247,251,255,.92) 26%, rgba(242,248,253,.98) 100%),
    radial-gradient(circle at 14% 24%, rgba(55,158,223,.13), transparent 26rem);
  isolation: isolate;
}

.pricing-page::before,
.pricing-page::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  pointer-events: none;
  z-index: -1;
}

.pricing-page::before {
  top: 190px;
  height: 160px;
  opacity: .55;
  background:
    repeating-linear-gradient(180deg, rgba(150,188,220,.10) 0 1px, transparent 1px 22px),
    linear-gradient(180deg, rgba(255,255,255,0), rgba(220,236,249,.25), rgba(255,255,255,0));
  filter: blur(.2px);
}

.pricing-page::after {
  bottom: -80px;
  height: 300px;
  background: radial-gradient(ellipse at 50% 100%, rgba(88,155,211,.14), transparent 66%);
}

.pricing-svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.pricing-background-mountains {
  position: absolute;
  z-index: -1;
  top: 46px;
  right: -54px;
  width: min(54vw, 790px);
  height: auto;
  opacity: .64;
  filter: saturate(.88);
}

.pricing-shell {
  position: relative;
  z-index: 1;
  width: min(1360px, calc(100% - 48px));
  margin: 0 auto;
  padding: 10px 0 8px;
}

.pricing-brand {
  position: absolute;
  z-index: 3;
  top: 18px;
  left: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #071f4a;
}

.pricing-brand__mark {
  width: 61px;
  height: auto;
  flex: none;
}

.pricing-brand__copy {
  display: grid;
  line-height: 1;
}

.pricing-brand__copy strong {
  font-size: 35px;
  letter-spacing: -.035em;
  font-weight: 800;
}

.pricing-brand__copy small {
  margin-top: 5px;
  font-size: 14px;
  font-weight: 700;
  color: #263b61;
}

.pricing-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-align: center;
}

.pricing-intro h1 {
  margin: 0;
  color: #071f4a;
  font-size: clamp(48px, 5.2vw, 68px);
  line-height: 1;
  letter-spacing: -.055em;
  font-weight: 800;
}

.pricing-intro > p {
  margin: 2px 0 15px;
  color: #5a6f91;
  font-size: clamp(16px, 1.55vw, 20px);
  line-height: 1.45;
}

.pricing-controls {
  display: grid;
  grid-template-columns: repeat(2, 260px);
  justify-content: center;
  gap: 64px;
  margin: 0 auto;
}

.pricing-control-group {
  text-align: left;
  transition: opacity .18s ease;
}

.pricing-control-group.is-disabled {
  opacity: .48;
}

.pricing-control-label {
  display: block;
  margin: 0 0 5px auto;
  color: #061d47;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 800;
  text-align: center;
}

.pricing-segmented {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 3px;
  border: 1px solid rgba(139,169,198,.38);
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 3px 8px rgba(7,31,74,.16);
  max-width: min(428px, 100%);
  margin-inline: auto;
}

.pricing-segmented button {
  min-height: 34px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #415475;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: color .16s ease, background .16s ease, box-shadow .16s ease, transform .16s ease;
}

.pricing-segmented button:hover:not(:disabled) {
  color: #071f4a;
}

.pricing-segmented button.is-active {
  color: #fff;
  background: linear-gradient(180deg, #10a8c4, #0088bd);
  box-shadow: 0 5px 11px rgba(0,133,183,.28);
}

.pricing-segmented button:focus-visible,
.pricing-card__cta:focus-visible,
.pricing-brand:focus-visible {
  outline: 3px solid rgba(13,91,215,.28);
  outline-offset: 3px;
}

.pricing-info {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 18px;
  width: min(640px, 100%);
  min-height: 64px;
  margin: 24px auto 14px;
  padding: 10px 22px;
  border: 1px solid #a9caea;
  border-radius: 12px;
  background: rgba(255,255,255,.47);
  text-align: left;
}

.pricing-info__icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: #096ac4;
  box-shadow: 0 5px 13px rgba(9,106,196,.23);
  font-family: Georgia, serif;
  font-size: 23px;
  font-weight: 700;
}

.pricing-info p {
  display: grid;
  gap: 3px;
  margin: 0;
  color: #263b61;
  font-size: 13px;
  line-height: 1.25;
}

.pricing-info strong {
  color: #071f4a;
}

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

.pricing-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 688px;
  flex-direction: column;
  padding: 16px 20px 14px;
  overflow: hidden;
  border: 1px solid rgba(210,226,239,.72);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.86)),
    radial-gradient(circle at 15% 4%, rgba(72,164,223,.08), transparent 17rem);
  box-shadow:
    0 18px 32px rgba(22,66,105,.09),
    0 3px 8px rgba(22,66,105,.04);
  backdrop-filter: blur(8px);
}

.pricing-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 48px;
  margin-bottom: 9px;
}

.pricing-card__header h2 {
  margin: 0;
  color: #061d47;
  font-size: clamp(21px, 1.65vw, 25px);
  line-height: 1.1;
  letter-spacing: -.035em;
}

.pricing-card__icon,
.pricing-line__icon {
  display: grid;
  place-items: center;
  flex: none;
  border-radius: 50%;
}

.pricing-card__icon {
  width: 47px;
  height: 47px;
}

.pricing-card__icon svg,
.pricing-card__icon img {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  object-fit: contain;
  object-position: center;
}

.pricing-card__icon--blue {
  color: #0870d1;
  background: #dceeff;
}

.pricing-card__icon--teal {
  color: #049aac;
  background: #d5f4f3;
}

.pricing-card__icon--purple {
  color: #6540df;
  background: #ece6ff;
}

.pricing-card__body {
  display: flex;
  flex: 1;
  min-height: 0;
  flex-direction: column;
}

.pricing-card__section {
  min-width: 0;
}

.pricing-card__section--spaced {
  margin-top: 82px;
}

.pricing-card__section h3 {
  margin: 0 0 2px;
  color: #0068b8;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 800;
}

.pricing-card--sme .pricing-card__section h3 {
  color: #078b8e;
}

.pricing-lines {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pricing-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 3px 0;
  border-top: 1px solid rgba(187,207,224,.66);
}

.pricing-line__main {
  display: grid;
  grid-template-columns: 35px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.pricing-line__icon {
  width: 34px;
  height: 34px;
}

.pricing-line__icon svg,
.pricing-line__icon img {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  object-fit: contain;
  object-position: center;
}

.pricing-line__icon--blue {
  color: #0870d1;
  background: #d9ecff;
}

.pricing-line__icon--teal {
  color: #078c96;
  background: #d6f2f0;
}

.pricing-line__icon--purple {
  color: #6245dd;
  background: #e9e4ff;
}

.pricing-line__copy {
  display: grid;
  min-width: 0;
}

.pricing-line__copy strong {
  overflow: hidden;
  color: #071f4a;
  font-size: 13px;
  line-height: 1.18;
  font-weight: 800;
  text-overflow: ellipsis;
}

.pricing-line__copy small {
  display: block;
  overflow: hidden;
  color: #2f4569;
  font-size: 10.7px;
  line-height: 1.15;
  font-weight: 500;
  text-overflow: ellipsis;
}

.pricing-line__price {
  justify-self: end;
  white-space: nowrap;
  color: #071f4a;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.pricing-line__price.is-request {
  color: #7051c9;
  font-size: 12px;
}

.pricing-line__price.is-subscription-only-label {
  color: #7051c9;
  font-size: 12px;
  font-weight: 600;
}

/* === Pricing line graying when lifetime is selected but item is subscription-only === */
.pricing-line.is-incompatible .pricing-line__icon {
  opacity: .45;
}

.pricing-line.is-incompatible .pricing-line__price {
  color: #7051c9;
  filter: saturate(0);
}

.pricing-line.is-incompatible .pricing-line__copy {
  opacity: .6;
  filter: grayscale(100%);
}

/* revert section-title graying — not wanted */
.pricing-card__section.is-incompatible-section h3 {
  color: #0068b8;
  filter: none;
  opacity: 1;
}
.pricing-card__footer {
  margin-top: auto;
  padding: 12px 0 0;
}

.pricing-card__cta {
  display: flex;
  min-height: 47px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 9px 19px rgba(27,91,174,.18);
  transition: transform .16s ease, box-shadow .16s ease;
}

.pricing-card__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(27,91,174,.24);
}

.pricing-card__cta--blue {
  background: linear-gradient(180deg, #3997ef, #0868d4);
}

.pricing-card__cta--teal {
  background: linear-gradient(180deg, #21bbb8, #078f96);
}

.pricing-card__availability {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 8px;
  color: #607493;
  font-size: 12px;
  line-height: 1;
}

.pricing-card__availability svg,
.pricing-card__availability img {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: #0870d1;
  object-fit: contain;
  object-position: center;
}

.pricing-card--enterprise {
  padding-inline: 28px;
}

.pricing-enterprise {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  padding-top: 32px;
  text-align: center;
}

.pricing-enterprise__pill {
  display: inline-flex;
  min-width: 164px;
  min-height: 33px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid #d9cfff;
  border-radius: 999px;
  color: #6540c4;
  background: #f6f2ff;
  font-size: 13px;
  font-weight: 700;
}

.pricing-enterprise__mountain {
  width: 250px;
  max-width: 86%;
  margin: 27px 0 10px;
  color: #7655e6;
}

.pricing-enterprise h3 {
  max-width: 350px;
  margin: 0;
  color: #071f4a;
  font-size: clamp(23px, 2vw, 29px);
  line-height: 1.12;
  letter-spacing: -.035em;
}

.pricing-enterprise > p {
  max-width: 350px;
  margin: 14px 0 26px;
  color: #5b6f91;
  font-size: 14px;
  line-height: 1.48;
}

.pricing-card__cta--enterprise {
  width: 100%;
  min-height: 51px;
  margin-top: 0;
  background: linear-gradient(180deg, #8258e8, #4a23c4);
  box-shadow: 0 12px 24px rgba(90,52,205,.24);
}

.pricing-enterprise__benefits {
  display: grid;
  width: 100%;
  gap: 15px;
  margin: 27px 0 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.pricing-enterprise__benefits li {
  display: grid;
  grid-template-columns: 31px 1fr;
  align-items: center;
  gap: 10px;
  color: #5a6e8f;
  font-size: 13px;
  line-height: 1.25;
}

.pricing-enterprise__benefits li > span {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  color: #714be0;
}

.pricing-enterprise__benefits svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pricing-card--enterprise.is-incompatible {
  opacity: .73;
}

.pricing-tax-note {
  margin: 12px 0 0;
  color: #536989;
  font-size: 12px;
  line-height: 1.35;
  text-align: center;
}

/* ── Pricing Choose Section ─────────────────────────────── */

.pricing-choose {
  margin: 40px auto 0;
  max-width: 980px;
  text-align: center;
}

.pricing-choose > h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #1d3557;
}

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

.pricing-choose-card {
  background: #ffffff;
  border: 1px solid #d7eaff;
  border-radius: 14px;
  padding: 28px 24px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow .2s ease, border-color .2s ease;
}

.pricing-choose-card:hover {
  box-shadow: 0 4px 16px rgba(29,53,87,.08);
  border-color: #b8d0ea;
}

.pricing-choose-card__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  color: #1d3557;
  margin-bottom: 16px;
  transition: stroke .2s ease;
}

.pricing-choose-card:hover .pricing-choose-card__icon {
  color: #457b9d;
}

.pricing-choose-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 10px;
  color: #1d3557;
}

.pricing-choose-card p {
  font-size: 14px;
  line-height: 1.55;
  color: #3d5a80;
  max-width: 280px;
  margin: 0 auto;
}

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

  .pricing-choose-card {
    flex-direction: row;
    text-align: left;
    padding-left: 32px;
  }

  .pricing-choose-card__icon {
    width: 40px;
    height: 40px;
    margin-right: 16px;
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .pricing-choose-card h3 {
    margin-bottom: 4px;
  }

  .pricing-choose-card p {
    margin-bottom: 0;
  }
}


/* ═══════════════ FAQ (generic accordion) ═══════════════ */

.faq {
  max-width: 1360px;
  margin: 52px auto 0;
}

.faq > h2 {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #071f4a;
  margin-bottom: 30px;
}

/* Karten-Liste mit Umrandung */
.faq__list {
  display: grid;
  gap: 5px;
  border: 1px solid #d2e4f4;
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 12px 36px rgba(22,66,105,.07),
    0 2px 6px rgba(22,66,105,.04);
}

/* ── Jedes FAQ Item ─────────────────────────── */

.faq__item {
  background: #fff;
  border-bottom: 1px solid #e3eff7;
}

.faq__item:last-of-type {
  border-bottom: none;
}


.faq__question button {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 28px;
  border: none;
  background: transparent;
  color: #071f4a;
  font-size: 15.5px;
  line-height: 1.45;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background .14s ease, color .14s ease;
}

.faq__question button:hover {
  background: transparent;
  color: inherit;
}

.faq__question button:hover .faq__chevron {
  color: #3a6a9f;
}

/* Chevron rechts – dreht sich bei Öffnung */
.faq__chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-left: auto;
  color: #5a8abf;
  transition: transform .18s ease, color .14s ease;
}

.faq__question button[aria-expanded="true"] .faq__chevron {
  transform: rotate(180deg);
  color: #27c6b7;
}

/* ── Antwort-Text ─────────────────── */

.faq__answer {
  padding: 22px 28px 22px;
  color: #4d6080;
  font-size: 14.5px;
  line-height: 1.65;
}

@media (max-width: 760px) {
  .pricing-choose > h2 {
    font-size: 22px;
  }

  .pricing-choose-card:hover {
    box-shadow: none;
    border-color: #b8d0ea;
  }
}


@media (max-width: 760px) {
  .faq {
    margin-top: 32px;
    padding-inline: 4px;
  }

  .faq > h2 {
    font-size: 22px;
  }

  .faq__question button {
    font-size: 15px;
    padding: 16px 0;
  }
}

@media (max-width: 1120px) {
  .pricing-brand {
    position: static;
    width: max-content;
    margin: 14px auto 2px;
  }

  .pricing-background-mountains {
    top: 88px;
    width: 68vw;
  }

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

  .pricing-card--enterprise {
    grid-column: 1 / -1;
    min-height: 600px;
  }

  .pricing-enterprise {
    max-width: 620px;
    width: 100%;
    margin-inline: auto;
  }
}

@media (max-width: 760px) {
  .pricing-shell {
    width: min(100% - 28px, 520px);
    padding-top: 8px;
  }

  .pricing-brand__copy strong {
    font-size: 30px;
  }

  .pricing-brand__copy small {
    font-size: 12px;
  }

  .pricing-intro h1 {
    font-size: 46px;
  }

  .pricing-intro > p {
    margin-bottom: 18px;
    font-size: 16px;
  }

  .pricing-controls {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 360px;
  }

  .pricing-info {
    grid-template-columns: 34px 1fr;
    gap: 12px;
    padding-inline: 14px;
  }

  .pricing-info p {
    font-size: 11.5px;
  }

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

  .pricing-card,
  .pricing-card--enterprise {
    min-height: 0;
    grid-column: auto;
  }

  .pricing-card__section--spaced {
    margin-top: 28px;
  }

  .pricing-card__footer {
    padding-top: 24px;
  }

  .pricing-enterprise {
    padding-top: 18px;
  }

  .pricing-background-mountains {
    display: none;
  }
}

@media (max-width: 420px) {
  .pricing-page {
    overflow: clip;
  }

  .pricing-brand__mark {
    width: 52px;
  }

  .pricing-intro h1 {
    font-size: 40px;
  }

  .pricing-card {
    padding-inline: 15px;
    border-radius: 20px;
  }

  .pricing-line {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 6px;
  }

  .pricing-line__main {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 8px;
  }

  .pricing-line__icon {
    width: 33px;
    height: 33px;
  }

  .pricing-line__copy strong {
    font-size: 12.5px;
  }

  .pricing-line__copy small {
    font-size: 10.5px;
  }

  .pricing-line__price {
    font-size: 12.5px;
  }
}

/* ============================================
   PRICING PAGE V2 – KMU Rechnerlayout
   ============================================ */

.pricing-page {
  overflow: visible;
  background:
    radial-gradient(circle at 82% 18%, rgba(39,198,183,.10), transparent 32rem),
    linear-gradient(180deg, #fff 0%, #f8fbff 52%, #f4f8fc 100%);
}

.pricing-shell {
  width: min(1440px, calc(100% - 56px));
  margin: 0 auto;
  padding: 34px 0 56px;
}

.pricing-intro {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-bottom: 28px;
  text-align: center;
}

.pricing-intro h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(40px, 4.8vw, 56px);
  line-height: 1.02;
  letter-spacing: -.055em;
  font-weight: 850;
}

.pricing-intro > p {
  margin: -6px 0 2px;
  color: var(--muted);
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.5;
}

.pricing-audience,
.pricing-mode {
  display: inline-grid;
  align-items: center;
  padding: 4px;
  border: 1px solid rgba(139,169,198,.40);
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 12px 30px rgba(8,31,73,.08), 0 2px 7px rgba(8,31,73,.08);
}

.pricing-audience {
  grid-template-columns: repeat(2, minmax(150px, 1fr));
}

.pricing-mode {
  grid-template-columns: repeat(3, minmax(138px, 1fr));
  max-width: min(560px, 100%);
}

.pricing-audience button,
.pricing-mode button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #415475;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: color .16s ease, background .16s ease, box-shadow .16s ease, transform .16s ease;
}

.pricing-audience button:hover,
.pricing-mode button:hover {
  color: var(--navy);
}

.pricing-audience button.is-active,
.pricing-mode button.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  box-shadow: 0 8px 18px rgba(13,91,215,.20);
}

/* Enterprise CTA – prominent unter den Audience-Tabs */
.pricing-audience__enterprise {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: #fff !important;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none !important;
  box-shadow: 0 4px 20px rgba(13,91,215,.3);
  transition: transform .16s ease, box-shadow .16s ease;
}

.pricing-audience__enterprise .headline {
  display: block;
  font-size: 0.95rem;
}

.pricing-audience__enterprise .sub {
  display: block;
  opacity: 0.88;
  font-size: 0.82rem;
}

.pricing-audience__enterprise:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(13,91,215,.42);
}

/* high-contrast: CTA-enterprise sichtbar */
[data-theme="high-contrast"] .cta-enterprise {
  filter: saturate(2.5);
}

.pricing-audience svg,
.pricing-audience img {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
}

.pricing-discount {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  padding: 0 7px;
  border-radius: 999px;
  background: #e7fbf8;
  color: #008f95;
  font-size: 12px;
  font-weight: 850;
}

.pricing-mode button.is-active .pricing-discount {
  color: #006b70;
  background: rgba(255,255,255,.84);
}

.pricing-tax-note {
  max-width: 740px;
  margin: 0;
  color: #6a7b96;
  font-size: 12.5px;
  line-height: 1.45;
}

.pricing-panel {
  display: none;
}

.pricing-panel.is-active {
  display: block;
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 32px;
  align-items: start;
}

.pricing-main {
  min-width: 0;
}

.pricing-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.pricing-enterprise-strip {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  width: 96%;
  margin: 0 0 24px;
  padding: 18px 20px;
  border: 1px solid rgba(0,143,149,.34);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(239,252,250,.96), rgba(255,255,255,.94));
  box-shadow: 0 12px 30px rgba(8,31,73,.055);
}

.pricing-enterprise-strip__icon {
  width: 52px;
  height: 52px;
}

.pricing-enterprise-strip__copy {
  display: flex;
  min-width: 0;
  align-items: baseline;
  gap: .35rem;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.45;
}

.pricing-enterprise-strip__copy strong {
  color: var(--navy);
  font-weight: 900;
  white-space: nowrap;
}

.pricing-enterprise-strip__copy span {
  color: var(--navy-2);
}

.pricing-enterprise-strip__cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid rgba(0,143,149,.72);
  border-radius: 10px;
  background: rgba(255,255,255,.92);
  color: #008f95;
  font-size: 16px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.pricing-enterprise-strip__cta:hover {
  transform: translateY(-1px);
  background: #fff;
  box-shadow: 0 10px 24px rgba(0,143,149,.14);
}

.pricing-plan,
.pricing-option,
.pricing-calculator,
.pricing-enterprise-card,
.pricing-compare {
  border: 1px solid rgba(210,226,239,.88);
  border-radius: 22px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 42px rgba(8,31,73,.07), 0 3px 10px rgba(8,31,73,.04);
}

.pricing-plan {
  position: relative;
  display: flex;
  min-height: 318px;
  flex-direction: column;
  padding: 34px 30px 28px;
  overflow: visible;
}

.pricing-plan--recommended {
  border-color: rgba(0,143,149,.72);
  box-shadow: 0 22px 52px rgba(0,143,149,.10), 0 3px 10px rgba(8,31,73,.04);
}

.pricing-recommendation {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(180deg, #17b7bd, #008f95);
  font-size: 12px;
  font-weight: 850;
  box-shadow: 0 8px 18px rgba(0,143,149,.20);
}

.pricing-plan__header {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin-bottom: 24px;
}

.pricing-plan__header h2 {
  margin: 0 0 7px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -.025em;
}

.pricing-plan__header p {
  margin: 0;
  color: #3e516f;
  font-size: 13px;
  line-height: 1.45;
}

.pricing-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  flex: none;
  border-radius: 50%;
}

.pricing-icon svg,
.pricing-icon img,
.pricing-option__icon svg,
.pricing-option__icon img {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  object-fit: contain;
}

.pricing-icon--blue { color: #0870d1; background: #dceeff; }
.pricing-icon--teal { color: #049aac; background: #d5f4f3; }
.pricing-icon--purple { color: var(--blue); background: #eff4ff; }

.pricing-plan__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 21px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(187,207,224,.72);
}

.pricing-plan__price strong {
  color: var(--navy);
  font-size: 31px;
  line-height: 1;
  letter-spacing: -.025em;
}

.pricing-plan__price span,
.pricing-option > span[data-display-price-suffix] {
  color: #607493;
  font-size: 12px;
  font-weight: 750;
}

.pricing-checklist {
  display: grid;
  gap: 10px;
  margin: 0 0 26px;
  padding: 0;
  color: #243c62;
  font-size: 13px;
  line-height: 1.35;
  list-style: none;
}

.pricing-checklist li {
  position: relative;
  padding-left: 25px;
}

.pricing-checklist li::before {
  content: "✓";
  position: absolute;
  top: -1px;
  left: 0;
  display: grid;
  width: 16px;
  height: 16px;
  place-items: center;
  border: 1px solid #20bab3;
  border-radius: 50%;
  color: #00918a;
  font-size: 10px;
  font-weight: 900;
}

.pricing-select,
.pricing-start {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid #0d5bd7;
  border-radius: 10px;
  background: transparent;
  color: #0d5bd7;
  font: inherit;
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, color .16s ease;
}

.pricing-select {
  width: 100%;
  margin-top: auto;
}

.pricing-select:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(13,91,215,.12);
}

.pricing-plan--recommended .pricing-select,
.pricing-start {
  border-color: transparent;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  box-shadow: 0 13px 26px rgba(13,91,215,.20);
}

[data-add-to-calculator].is-selected {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(180deg, #19b8bd, #008f95);
}

[data-add-to-calculator]:disabled {
  cursor: not-allowed;
  opacity: .48;
  filter: grayscale(.4);
}

.pricing-options {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(210,226,239,.88);
  border-radius: 18px;
  background: rgba(255,255,255,.74);
}

.pricing-section-head {
  margin-bottom: 12px;
}

.pricing-section-head h2 {
  margin: 0 0 3px;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.2;
}

.pricing-section-head p {
  margin: 0;
  color: #536989;
  font-size: 12.5px;
  line-height: 1.45;
}

.pricing-option-grid {
  display: grid;
  gap: 12px;
}

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

.pricing-option-grid--support {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-option {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 32px;
  grid-template-areas:
    "icon title plus"
    "icon text plus"
    "price suffix plus";
  gap: 2px 10px;
  min-height: 102px;
  padding: 17px 14px 14px;
  box-shadow: 0 10px 22px rgba(8,31,73,.05);
}

.pricing-option--supported {
  border-color: rgba(0,143,149,.72);
  box-shadow: 0 22px 52px rgba(0,143,149,.10), 0 3px 10px rgba(8,31,73,.04);
}

.pricing-option--supported .pricing-plus {
  border-color: transparent;
  color: #fff;
  background: linear-gradient(180deg, #19b8bd, #008f95);
  box-shadow: 0 13px 26px rgba(0,143,149,.22);
}

.pricing-option--supported .pricing-plus:hover {
  box-shadow: 0 12px 24px rgba(0,143,149,.22);
}

/* recommended badge on grid-based option cards */
.pricing-option--recommended .pricing-recommendation {
  position: absolute;
  top: -13px;
  left: calc((44px + 5px) / 2 + 50%);
  right: 46px;
}

.pricing-option__icon {
  grid-area: icon;
  align-self: start;
  width: 40px;
  height: 40px;
}

.pricing-option h3 {
  grid-area: title;
  margin: 0;
  color: var(--navy);
  font-size: 13px;
  line-height: 1.2;
}

.pricing-option p {
  grid-area: text;
  min-height: 29px;
  margin: 2px 0 5px;
  color: #3e516f;
  font-size: 11px;
  line-height: 1.25;
}

.pricing-option > strong[data-display-price] {
  grid-area: price;
  align-self: end;
  color: var(--navy);
  font-size: 13px;
  line-height: 1.1;
}

.pricing-option > span[data-display-price-suffix] {
  grid-area: suffix;
  align-self: end;
}

.pricing-plus {
  grid-area: plus;
  align-self: end;
  justify-self: end;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid #0d5bd7;
  border-radius: 50%;
  background: #fff;
  color: #0d5bd7;
  font: inherit;
  font-size: 18px;
  line-height: 1;
  font-weight: 750;
  cursor: pointer;
}

.pricing-plus.is-selected {
  border-color: #00918a;
  color: #fff;
  background: #00918a;
}

.pricing-sidebar {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 18px;
}

.pricing-calculator {
  padding: 24px 22px 22px;
}

.pricing-calculator header {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 22px;
}

.pricing-calculator header h2 {
  margin: 0;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.15;
}

.pricing-calculator__items {
  display: grid;
  gap: 14px;
}

.pricing-calculator__empty {
  margin: 0 0 18px;
  padding: 14px;
  border: 1px dashed #bdd4eb;
  border-radius: 12px;
  color: #607493;
  background: #f7fbff;
  font-size: 13px;
  line-height: 1.4;
}

.pricing-calc-group {
  display: grid;
  gap: 8px;
}

.pricing-calc-group h3 {
  margin: 0;
  color: #214162;
  font-size: 12px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.pricing-calc-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  padding: 10px 0;
  border-top: 1px solid #e5eef7;
}

.pricing-calc-row:first-of-type {
  border-top: 0;
}

.pricing-calc-row__title {
  min-width: 0;
}

.pricing-calc-row__title strong {
  display: block;
  overflow: hidden;
  color: var(--navy);
  font-size: 12.5px;
  line-height: 1.22;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pricing-calc-row__title small {
  display: block;
  margin-top: 3px;
  color: #607493;
  font-size: 11px;
  line-height: 1.25;
}

.pricing-calc-row__side {
  display: grid;
  justify-items: end;
  gap: 6px;
}

.pricing-qty {
  display: inline-grid;
  grid-template-columns: 26px 42px 26px;
  overflow: hidden;
  border: 1px solid #d6e4f1;
  border-radius: 9px;
  background: #fff;
}

.pricing-qty button,
.pricing-remove {
  border: 0;
  background: transparent;
  color: #0d5bd7;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.pricing-qty input {
  width: 42px;
  min-height: 28px;
  border: 0;
  border-inline: 1px solid #d6e4f1;
  color: var(--navy);
  font: inherit;
  font-size: 12px;
  font-weight: 850;
  text-align: center;
}

.pricing-remove {
  color: #7487a5;
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pricing-calc-row__price {
  color: var(--navy);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 850;
  font-variant-numeric: tabular-nums;
}

.pricing-calculator__total {
  display: grid;
  justify-items: center;
  gap: 4px;
  margin-top: 18px;
  padding-top: 20px;
  border-top: 1px solid #dbe8f4;
  text-align: center;
}

.pricing-calculator__total span {
  color: var(--navy);
  font-size: 13px;
  font-weight: 850;
}

.pricing-calculator__total strong {
  color: var(--navy);
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -.035em;
}

.pricing-calculator__total small,
.pricing-calculator__note {
  color: #607493;
  font-size: 11px;
  line-height: 1.35;
}

.pricing-start {
  width: 100%;
  margin-top: 18px;
}

.pricing-calculator__note {
  margin: 16px 0 0;
}

.pricing-enterprise-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 12px;
  padding: 1.25rem 1.5rem;
  margin-top: 1.5rem;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(13,91,215,.2);
  color: #fff;
}

.pricing-enterprise-card .pricing-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 4px;
}

.pricing-enterprise-card strong {
  display: block;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
}

.pricing-enterprise-card p {
  margin: 4px 0 0;
  color: rgba(255,255,255,0.92);
  font-size: 0.88rem;
  line-height: 1.45;
}

.pricing-enterprise-card__cta {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.6rem 1.35rem;
  margin-top: 4px;
  background: #fff;
  color: var(--blue);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 650;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(13,91,215,.2);
  transition: transform .2s ease, box-shadow .2s ease;
  width: fit-content;
}

.pricing-enterprise-card__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(13,91,215,.35);
}

/* high-contrast: enterprise card – purple background stays visible */
[data-theme="high-contrast"] .pricing-enterprise-card {
  filter: saturate(2);
}

.pricing-enterprise-promo {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: 720px;
  margin: 3.5rem auto 0;
  padding: 1.8rem 2rem;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border-radius: 1rem;
  box-shadow: 0 8px 30px rgba(13,91,215,.2);
  color: #fff;
}

.pricing-enterprise-promo .pricing-icon {
  flex-shrink: 0;
}

.pricing-enterprise-promo strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}

.pricing-enterprise-promo p {
  margin: 0;
  opacity: 0.92;
  font-size: 0.95rem;
  line-height: 1.4;
  color: #fff;
}

.pricing-enterprise-promo__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: auto;
  padding: 0.6rem 1.4rem;
  background: #fff;
  color: var(--blue);
  border-radius: 999px;
  font-weight: 650;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(13,91,215,.18);
  transition: transform .2s ease;
}

.pricing-enterprise-promo__cta:hover {
  transform: scale(1.04);
}

/* high-contrast: enterprise promo – purple background stays visible */
[data-theme="high-contrast"] .pricing-enterprise-promo {
  filter: saturate(2);
}

.pricing-compare {
  margin-top: 22px;
  padding: 18px;
  box-shadow: 0 14px 36px rgba(8,31,73,.05);
}

.pricing-section-head--compare {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
}

.pricing-section-head--compare button {
  border: 0;
  background: transparent;
  color: #38567b;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.pricing-table-wrap {
  overflow-x: auto;
  border: 1px solid #dce8f3;
  border-radius: 14px;
  background: #fff;
}

.pricing-table {
  min-width: 720px;
  border: 0;
  border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
  border: 1px solid #e0ebf5;
  padding: 11px 16px;
  text-align: center;
  color: var(--navy);
  font-size: 13px;
}

.pricing-table th:first-child,
.pricing-table td:first-child {
  width: 28%;
  text-align: left;
}

.pricing-table th {
  background: #f7fbff;
  font-weight: 850;
}

.pricing-table th:nth-child(3) {
  background: #effcfa;
  color: #008f95;
}

.pricing-table th small {
  color: #607493;
  font-size: 11px;
}

.pricing-table tbody td:not(:first-child) {
  color: #00918a;
  font-weight: 900;
}

.pricing-table-group td {
  background: #eef6ff;
  font-weight: 850;
}

.pricing-table tbody tr.is-extra {
  display: none;
}

.pricing-compare.is-expanded tbody tr.is-extra {
  display: table-row;
}

.pricing-request-summary {
  margin: 0 0 18px;
  padding: 16px;
  border: 1px solid #b7e7e4;
  border-radius: 14px;
  background: #effcfa;
  color: var(--navy);
}

.pricing-request-summary strong {
  display: block;
  margin-bottom: 8px;
}

.pricing-request-summary pre {
  margin: 0;
  white-space: pre-wrap;
  color: #26405f;
  font: inherit;
  font-size: 13px;
  line-height: 1.45;
}

@media (max-width: 1240px) {
  .pricing-layout {
    grid-template-columns: 1fr;
  }

  .pricing-sidebar {
    position: static;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    align-items: start;
  }
}

@media (max-width: 980px) {
  .pricing-enterprise-strip {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .pricing-enterprise-strip__cta {
    grid-column: 1 / -1;
    width: 100%;
  }

  .pricing-plan-grid,
  .pricing-option-grid--addons,
  .pricing-option-grid--support,
  .pricing-sidebar {
    grid-template-columns: 1fr;
  }

  .pricing-plan {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .pricing-shell {
    width: min(100% - 28px, 520px);
    padding-top: 22px;
  }

  .pricing-audience,
  .pricing-mode {
    width: 100%;
  }

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

  .pricing-mode {
    grid-template-columns: 1fr;
    border-radius: 18px;
  }

  .pricing-mode button {
    border-radius: 14px;
  }

  .pricing-plan {
    padding: 28px 22px 24px;
  }

  .pricing-option {
    grid-template-columns: 40px minmax(0, 1fr) 30px;
  }
}

/* ── Global typography  ───────────── */
body {
  font-size: 16px;
}

p,
li,
td,
th,
label,
input,
textarea,
select,
button {
  font-size: max(16px, 1em);
}

small {
  font-size: max(14px, .875em);
}

.pricing-audience button,
.pricing-mode button,
.pricing-select,
.pricing-start,
.pricing-enterprise-card__cta,
.pricing-plus,
.pricing-remove {
  font-size: 16px;
}

.pricing-tax-note,
.pricing-plan__header p,
.pricing-section-head p,
.pricing-option p,
.pricing-calculator__empty,
.pricing-calc-row__title small,
.pricing-calculator__total small,
.pricing-calculator__note,
.pricing-table th small,
.pricing-request-summary pre {
  font-size: 14px;
}

.pricing-enterprise-card p {
  font-size: 0.875rem;
}

.pricing-option h3,
.pricing-calc-row__title strong,
.pricing-calc-row__price,
.pricing-calculator__total span,
.pricing-table th,
.pricing-table td {
  font-size: 18px;
}

.pricing-plan {
  min-height: 362px;
  padding: 42px 36px 34px;
}

.pricing-plan__header {
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 22px;
  margin-bottom: 30px;
}

.pricing-plan__price {
  margin-bottom: 28px;
  padding-bottom: 22px;
}

.pricing-checklist {
  gap: 12px;
  font-size: 16px;
}

.pricing-option {
  grid-template-columns: 46px minmax(0, 1fr) 34px;
  grid-template-areas:
    "icon title plus"
    "icon text plus"
    "icon price plus"
    "icon suffix plus";
  gap: 5px 13px;
  min-height: 132px;
  padding: 20px 18px 18px;
}

.pricing-option > strong[data-display-price] {
  grid-area: price;
  white-space: nowrap;
  font-size: 16px;
}

.pricing-option > span[data-display-price-suffix] {
  grid-area: suffix;
  align-self: start;
  justify-self: start;
  font-size: 14px;
  line-height: 1.25;
  white-space: normal;
}

.pricing-feature-link {
  color: #0d5bd7;
  font-weight: 850;
  text-decoration: none;
}

.pricing-feature-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pricing-table tbody tr.is-extra {
  display: table-row;
}

@media (max-width: 640px) {
  .pricing-plan {
    padding: 34px 26px 28px;
  }

  .pricing-option {
    grid-template-columns: 42px minmax(0, 1fr) 32px;
  }
}

/* ═══════════════════════════════════════
   Support page – tier sections
   ═══════════════════════════════════════ */

.support-tier {
  padding: 56px 0;
}

.support-tier + .support-tier {
  border-top: 1px solid var(--line);
}

.support-tier-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: start;
}

.support-tier__icon-wrapper {
  flex-shrink: 0;
}

.support-tier__icon-wrapper img.icon {
  width: 64px;
  height: 64px;
  padding: 14px;
  border-radius: 50%;
  background: var(--surface-teal);
}

.support-tier__copy h2 {
  color: var(--navy);
  font-size: 34px;
  letter-spacing: -.035em;
  margin-bottom: 14px;
}

.support-tier__copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  max-width: 64rem;
}

.support-list {
  margin: 12px 0 -8px;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  max-width: 64rem;
}

.support-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.55;
}

.support-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal);
  font-weight: 900;
  font-size: 14px;
}

.support-description {
  margin-top: 22px;
  max-width: 64rem;
}

@media (max-width: 920px) {
  .support-tier-content,
  .product-hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .support-list {
    max-width: 100%;
  }
}
/** Sprach-Umschalter (DE / EN) — kleines Komma, aktiver Text unterstrichen. */

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-left: 6px;
}

/* Basis-Reset für alle Toggle-Links (global Nav-Stile zurücksetzen) */
.lang-toggle {
  padding: 0 !important;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  text-decoration: none;
  border: none !important;
  background: transparent !important;
  border-radius: 0 !important;
}

/* Inaktiver Toggle */
.lang-toggle:not(.is-active) {
  color: var(--ink);
}

/* Hover auf inaktivem Toggle */
.lang-toggle:not(.is-active):hover {
  color: var(--blue);
  text-decoration: underline;
  border: none !important;
}

/* Aktiver Sprachbutton: unterstrichen, immer blau wie Nav-Aktiv */
.lang-toggle.is-active {
  text-decoration: underline;
  text-decoration-color: var(--blue) !important;
  text-underline-offset: 3px;
  border: none !important;
}

.lang-toggle.is-active:hover {
  text-decoration: underline;
}

@media (max-width: 920px) {
  .lang-switcher {
    display: none;
  }
}
/* ═══════════════════════════════════════
   HIGH-CONTRAST THEME (Neon-Türkis)
   Aktiviert per: <html data-theme="high-contrast">
   ═══════════════════════════════════════ */

[data-theme="high-contrast"] {
  --hc-black: #000;
  --hc-white: #fff;
  --hc-turquoise: #00F5D4;
}

/* ── Root / Global ──────────────────────── */

[data-theme="high-contrast"] body,
[data-theme="high-contrast"] * {
  color: var(--hc-black) !important;
}

[data-theme="high-contrast"] body {
  background: var(--hc-white) !important;
  background-image: none !important;
}

/* Links — schwarz mit türkisem Unterstrich */
[data-theme="high-contrast"] a {
  color: var(--hc-black) !important;
  text-decoration: underline;
  text-decoration-color: var(--hc-turquoise);
  text-underline-offset: 3px;
}

[data-theme="high-contrast"] a:hover {
  background: var(--hc-turquoise);
  color: var(--hc-black) !important;
}

/* ── Header / Navigation ───────────────── */

[data-theme="high-contrast"] .site-header {
  background: var(--hc-white) !important;
  backdrop-filter: none !important;
  border-bottom: 3px solid var(--hc-black) !important;
}

/* Logo im HC-Modu unverändert (kein invert-Filter mehr) */

[data-theme="high-contrast"] .site-nav,
[data-theme="high-contrast"] .site-nav a {
  color: var(--hc-black) !important;
}

/* Menu-Trenner unsichtbar machen (--- in Hugo-Konfig erzeugt <span class="menu-separator"> */
[data-theme="high-contrast"] .menu-separator {
  display: none !important;
}

/* Nav-Bereich — kein unsichtbarer ::before-Spacer */
[data-theme="high-contrast"] .site-nav::before {
  content: none !important;
  display: none !important;
}

/* Nav-Tags **ohne** Unterstreichung (override globaler underline!). Nur active mit Double-Line */
[data-theme="high-contrast"] .site-nav a {
  text-decoration: none !important;
  border-bottom-color: transparent !important;
}

/* Aktiver Nav-Link — Double underline (overline + underline = türkis) */
[data-theme="high-contrast"] .site-nav a.is-active {
  text-decoration: underline overline !important;
  text-decoration-color: var(--hc-turquoise) !important;
  text-decoration-thickness: 2.5px !important;
  text-underline-offset: 5px !important;
}

/* Dropdown-Menü — Toggle nur auf Desktop ausblenden (mobil >= 920px) */
@media (min-width: 921px) {
  [data-theme="high-contrast"] .nav-toggle {
    display: none !important;
  }
}

[data-theme="high-contrast"] .nav-dropdown-menu {
  background: var(--hc-white) !important;
  border: none !important;
  box-shadow: none !important;
}

/* dropdown — wenn aufgeklappt → türkis Rahmen */
[data-theme="high-contrast"] .nav-dropdown:hover .nav-dropdown-menu,
[data-theme="high-contrast"] .nav-dropdown:focus-within .nav-dropdown-menu {
  border: 3px solid var(--hc-turquoise) !important;
}

[data-theme="high-contrast"] .nav-dropdown-menu a {
  color: var(--hc-black) !important;
}

[data-theme="high-contrast"] .dropdown-sep-item {
  border-top-color: var(--hc-black) !important;
}

/* Aktive Dropdown-Items */
[data-theme="high-contrast"] .nav-dropdown-menu a.is-active {
  background: var(--hc-turquoise);
  color: var(--hc-black) !important;
}

/* Nav-SERVICE Badge */
[data-theme="high-contrast"] .site-nav .nav-service {
  border-color: var(--hc-black) !important;
  background: var(--hc-black) !important;
  color: var(--hc-white) !important;
}

[data-theme="high-contrast"] .site-nav .nav-service.is-active {
  border-color: var(--hc-turquoise) !important;
  color: var(--hc-black) !important;
}

/* ── Buttons / Primary ─────────────────── */

[data-theme="high-contrast"] .btn,
[data-theme="high-contrast"] button,
[data-theme="high-contrast"] a.btn,
[data-theme="high-contrast"] a.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--hc-black) !important;
  background: var(--hc-turquoise);
  border: 3px solid var(--hc-black) !important;
  border-radius: 0 !important;
  box-shadow: 4px 4px 0 var(--hc-black) !important;
  font-weight: 800;
  transition: none !important;
}

[data-theme="high-contrast"] .btn:hover,
[data-theme="high-contrast"] button:hover {
  color: var(--hc-white) !important;
  background: var(--hc-black) !important;
  border-color: var(--hc-black) !important;
  box-shadow: 4px 4px 0 var(--hc-turquoise) !important;
}

[data-theme="high-contrast"] .btn:active,
[data-theme="high-contrast"] button:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--hc-black) !important;
}

/* Secondary Buttons */
[data-theme="high-contrast"] .btn-secondary {
  color: var(--hc-black) !important;
  background: var(--hc-white) !important;
  border-color: var(--hc-black) !important;
  box-shadow: 4px 4px 0 var(--hc-turquoise) !important;
}

[data-theme="high-contrast"] .btn-primary {
  background: var(--hc-turquoise) !important;
  color: var(--hc-black) !important;
  box-shadow: 4px 4px 0 var(--hc-black) !important;
  border-color: var(--hc-black) !important;
}

/* ── Badges / Pills ────────────────────── */

[data-theme="high-contrast"] .badge {
  background: var(--hc-turquoise) !important;
  border: 3px solid var(--hc-black) !important;
  color: var(--hc-black) !important;
  box-shadow: 2px 2px 0 var(--hc-black);
}

[data-theme="high-contrast"] .product-signal-row span,
[data-theme="high-contrast"] .chips span {
  background: var(--hc-white) !important;
  border: 3px solid var(--hc-black) !important;
  color: var(--hc-black) !important;
}

/* ── Karten / Oberflächen ──────────────── */

[data-theme="high-contrast"] .ai-card,
[data-theme="high-contrast"] .feature-card,
[data-theme="high-contrast"] .product-feature-card,
[data-theme="high-contrast"] .info-card,
[data-theme="high-contrast"] .placeholder-card {
  border: 3px solid var(--hc-black) !important;
  background: var(--hc-white) !important;
  box-shadow: 4px 4px 0 var(--hc-black) !important;
}

[data-theme="high-contrast"] .product-preview {
  border-color: var(--hc-black);
}

[data-theme="high-contrast"] .mock-message {
  border-color: var(--hc-black);
}

/* Icon-Hintergründe */
[data-theme="high-contrast"] .ai-card-icon,
[data-theme="high-contrast"] .feature-card .icon,
[data-theme="high-contrast"] .product-feature-card .icon,
[data-theme="high-contrast"] .product-flow-grid .icon,
[data-theme="high-contrast"] .info-card .icon {
  background: #ffffff;
}

/* Icon-SVGs in Icons umkehren für Weiss */
[data-theme="high-contrast"] .ai-card-icon svg,
[data-theme="high-contrast"] .feature-card .icon svg,
[data-theme="high-contrast"] .product-feature-card .icon svg {
  filter: invert(1);
}

/* ── Produkt-Vorschau / Mock ───────────── */

[data-theme="high-contrast"] .product-preview-head {
  border-bottom: 3px solid var(--hc-black) !important;
}

[data-theme="high-contrast"] .window-dot {
  background: var(--hc-black);
}

/* Produkt-Vorschau AI-Box — grünich-weiss → stattdessen komplett weiß */
[data-theme="high-contrast"] .product-preview-ai {
  border: 3px solid var(--hc-turquoise) !important;
  box-shadow: none !important;
  background: #fff !important;
  background-image: none !important;
}

/* Verschachtelte Elemente der AI-Box auch reinigen — Gradient entfernen */
[data-theme="high-contrast"] .product-preview-ai > div,
[data-theme="high-contrast"] .product-preview-ai [class*="__"],
[data-theme="high-contrast"] .product-preview-ai > *,
[data-theme="high-contrast"] .product-preview-ai [class^="mock-"] {
  background: #fff !important;
  border-color: transparent !important;
}

/* ── Tabellen ───────────────────────────── */

[data-theme="high-contrast"] table,
[data-theme="high-contrast"] th,
[data-theme="high-contrast"] td,
[data-theme="high-contrast"] .compare-table-wrap,
[data-theme="high-contrast"] .compare-table {
  border-color: var(--hc-black) !important;
}

[data-theme="high-contrast"] th,
[data-theme="high-contrast"] thead th,
[data-theme="high-contrast"] .compare-table thead th {
  background: var(--hc-turquoise) !important;
}

/* ── Section-Trenner & Underlines ──────── */

/* Abschnittstrenner — nur wo sinnvoll (Hauptsections) */
[data-theme="high-contrast"] .hero,
[data-theme="high-contrast"] .index-section,
[data-theme="high-contrast"] .product-hero {
  border-bottom-width: 3px !important;
}

[data-theme="high-contrast"] .section-heading::after {
  content: "";
  display: block;
  width: 5rem;
  height: 0.5rem;
  margin-top: 0.75rem;
  background: var(--hc-turquoise);
}

/* ── Headings ───────────────────────────── */

[data-theme="high-contrast"] h1,
[data-theme="high-contrast"] h2,
[data-theme="high-contrast"] h3,
[data-theme="high-contrast"] .section-heading h2 {
  color: var(--hc-black) !important;
}

/* ── Benefit-Streifen & Flow-Stripes ───── */

[data-theme="high-contrast"] .benefit-strip,
[data-theme="high-contrast"] .product-flow-grid article{
  border-color: var(--hc-black);
  background: var(--hc-white);
}

[data-theme="high-contrast"] .benefit-item + .benefit-item {
  border-left-color: var(--hc-black) !important;
}

[data-theme="high-contrast"] .flow-strip {
  border-color: var(--hc-black);
  background: var(--hc-white);
}

/* ── CTA / Banner ──────────────────────── */

[data-theme="high-contrast"] .cta-card,
[data-theme="high-contrast"] .integration-card {
  border-width: 3px;
  border-color: var(--hc-black) !important;
  background: var(--hc-white) !important;
}

/* ── Formulare (Demo / Preise / Kontakt) ─ */

[data-theme="high-contrast"] input,
[data-theme="high-contrast"] textarea,
[data-theme="high-contrast"] select {
  border: 3px solid var(--hc-black) !important;
  background: #fff !important;
  color: var(--hc-black) !important;
}

/* ── Platzhalter — schwarz + gut sichtbar ─ */

[data-theme="high-contrast"] ::placeholder,
[data-theme="high-contrast"] input::placeholder,
[data-theme="high-contrast"] textarea::placeholder {
  color: var(--hc-black) !important;
}

/* ── Legal Banner (speziell: kein Gelb!) ─ */

[data-theme="high-contrast"] .legal-banner {
  border: 3px solid var(--hc-black);
  background: var(--hc-turquoise);
  border-radius: 0;
}

[data-theme="high-contrast"] .legal-banner h2,
[data-theme="high-contrast"] .legal-banner p {
  color: var(--hc-black) !important;
}

[data-theme="high-contrast"] .legal-banner,
[data-theme="high-contrast"] .mini-index span {
  border: 3px solid var(--hc-black) !important;
  background: var(--hc-white) !important;
}

[data-theme="high-contrast"] .mini-index span {
  box-shadow: none !important;
  color: var(--hc-black) !important;
  font-weight: 800 !important;
}

/* ── Integration Pill Tags ─────────────── */

[data-theme="high-contrast"] .integration-pills span {
  border-width: 3px;
  border-color: var(--hc-black);
  background: var(--hc-white);
}

/* ── Footer ───────────────────────────────*/

[data-theme="high-contrast"] .site-footer {
  border-top: 4px solid var(--hc-black) !important;
  background: var(--hc-white) !important;
}

[data-theme="high-contrast"] .footer-bottom {
  border-top: 3px solid var(--hc-black);
  color: var(--hc-black) !important;
}

/* ── Screenshot Frames ─────────────────── */

[data-theme="high-contrast"] .screenshot-frame,
[data-theme="high-contrast"] .screenshot-placeholder {
  border-color: var(--hc-black);
  background: var(--hc-white);
}

/* ── Fokus-Zustände (Tastaturbedienung) ─ */

[data-theme="high-contrast"] *:focus {
  outline: none;
}

[data-theme="high-contrast"] *:focus-visible {
  outline: 3px solid var(--hc-turquoise);
  outline-offset: 3px;
  box-shadow: 0 0 0 2px var(--hc-black) !important;
}

/* ── Sprach-Toggle im HC-Modus ─────────── */

[data-theme="high-contrast"] .lang-toggle:not(.is-active) {
  color: var(--hc-black) !important;
  text-decoration: none !important;
}

/* Nur aktive Sprache unterstrichen (türkis) */
[data-theme="high-contrast"] .lang-toggle.is-active {
  text-decoration: underline !important;
  text-decoration-color: var(--hc-turquoise) !important;
  font-weight: 900;
}

/* ── Mini-Index Cards — blau/grau → schwarz Rahmen im HC ─ */

[data-theme="high-contrast"] .mini-index span,
[data-theme="high-contrast"] .mini-index img {
  border: 3px solid var(--hc-black) !important;
  background: #fff !important;
/* ── Mini-Index Cards — blau → schwarz Rahmen im HC ─ */

[data-theme="high-contrast"] .mini-index

}

/* ── Feature-Showcase Media ─────────────── */

/* ── Kontrast-Switch Button im Header ───── */

/* Immer sichtbar in beiden Modi */
.contrast-toggle {
  display: inline-flex;
  border: 2px solid var(--line);
  background: transparent;
  padding: 4px 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  line-height: 1;
  font-family: inherit;
  transition: none;
}

/* Standard-Modus: dezenter */
.contrast-toggle {
  color: var(--ink);
}

/* HC-Modus: auffällig */
[data-theme="high-contrast"] .contrast-toggle {
  color: var(--hc-black) !important;
  border-color: var(--hc-black);
  background: var(--hc-turquoise);
}

[data-theme="high-contrast"] .contrast-toggle:hover {
  background: var(--hc-black);
  color: var(--hc-white) !important;
  border-color: var(--hc-black);
}

/* ── Responsive: mobile ─────────────────── */

@media (max-width: 920px) {
  /* Toggle — exakt gleiche Grösse wie im Standardmodus, HC-Button + Browser-Deps neutralisieren */
  [data-theme="high-contrast"] .nav-toggle {
    display: grid !important;
    align-items: center;
    justify-content: center;
    width: auto !important;
    height: auto !important;
    min-width: 0 !important;
    min-height: 0 !important;
    max-width: none !important;
    max-height: none !important;
    padding: 6px !important;
    margin: 0 !important;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    font-size: inherit !important;
    font-weight: inherit !important;
    color: var(--hc-black) !important;
    line-height: normal !important;
    gap: 4px !important;
    cursor: pointer !important;
    -webkit-appearance: none !important;
       -moz-appearance: none !important;
            appearance: none !important;
    position: relative !important;
    overflow: visible !important;
    border-image: none !important;
  }
  [data-theme="high-contrast"] .nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--hc-black) !important;
  }

  [data-theme="high-contrast"] .site-nav.is-open {
    border-color: var(--hc-black);
    box-shadow: none;
    border-right: 3px solid var(--hc-black);
    border-bottom: 3px solid var(--hc-black);
  }
}

/* ═══════════════════════════════════════
   HIGH-CONTRAST — PREISE-SEITE (pricing)
   ═══════════════════════════════════════ */

/* ── Page background / Dekor entfernen ─── */

[data-theme="high-contrast"] .pricing-page {
  color: var(--hc-black) !important;
  background: var(--hc-white) !important;
  background-image: none !important;
}

[data-theme="high-contrast"] .pricing-page::before,
[data-theme="high-contrast"] .pricing-page::after {
  display: none !important;
}

[data-theme="high-contrast"] .pricing-background-mountains {
  display: none !important;
}

/* ── Cards / Oberflächen ──────────────── */

[data-theme="high-contrast"] .pricing-card {
  border: 3px solid var(--hc-black) !important;
  background: var(--hc-white) !important;
  background-image: none !important;
  box-shadow: 4px 4px 0 var(--hc-black) !important;
  border-radius: 0 !important;
}

/* Card Header */
[data-theme="high-contrast"] .pricing-card__header h2 {
  color: var(--hc-black) !important;
}

/* ── Icons: keine farbigen Hintergründe ── */

/* pricing-card icons (als <img> geladen über partial/icon.html) */
[data-theme="high-contrast"] .pricing-card__icon,
[data-theme="high-contrast"] .pricing-line__icon,
[data-theme="high-contrast"] .support-tier__icon-wrapper {
  background: var(--hc-white) !important;
}

[data-theme="high-contrast"] .pricing-card__icon img,
[data-theme="high-contrast"] .pricing-line__icon img,
[data-theme="high-contrast"] .support-tier__icon-wrapper img.icon {
  filter: grayscale(100%) contrast(1.2);
  mix-blend-mode: multiply;
}

/* Icon-SVGs in den Icons umkehren für Weiss */
[data-theme="high-contrast"] .pricing-card__icon svg,
[data-theme="high-contrast"] .pricing-line__icon svg {
  filter: invert(1);
}

/* ── section headings (Kategorie-Titel) ─*/

[data-theme="high-contrast"] .pricing-card__section h3 {
  color: var(--hc-black) !important;
  border-bottom: 2px solid var(--hc-turquoise) !important;
  padding-bottom: 4px !important;
}

/* ── pricing-row / Line items ─────────── */

[data-theme="high-contrast"] .pricing-line {
  color: var(--hc-black);
  border-top-color: var(--hc-black) !important;
}

[data-theme="high-contrast"] .pricing-line__copy strong {
  color: var(--hc-black) !important;
}

[data-theme="high-contrast"] .pricing-line__copy small {
  color: var(--hc-black) !important;
  opacity: .75;
}

/* price display */
[data-theme="high-contrast"] .pricing-line__price {
  color: var(--hc-black) !important;
}

[data-theme="high-contrast"] .pricing-line__price.is-request,
[data-theme="high-contrast"] .pricing-line__price.is-subscription-only-label {
  color: var(--hc-black) !important;
}

/* disabled line items (subscription-only) */
[data-theme="high-contrast"] .pricing-line.is-incompatible .pricing-line__copy {
  opacity: .45;
  filter: none;
}

[data-theme="high-contrast"] .pricing-line.is-incompatible .pricing-line__icon img {
  opacity: .35;
  mix-blend-mode: normal;
}

/* ── CTA buttons (primary vs secondary) ─ */

/* Individual & KMU: primary (turquoise filled) */
[data-theme="high-contrast"] .pricing-card__cta--blue,
[data-theme="high-contrast"] .pricing-card__cta--teal {
  background: var(--hc-turquoise) !important;
  color: var(--hc-black) !important;
  border: 3px solid var(--hc-black) !important;
  border-radius: 0 !important;
  box-shadow: 4px 4px 0 var(--hc-black) !important;
  font-weight: 800 !important;
}

[data-theme="high-contrast"] .pricing-card__cta--blue:hover,
[data-theme="high-contrast"] .pricing-card__cta--teal:hover {
  background: var(--hc-black) !important;
  color: var(--hc-turquoise) !important;
}

/* Enterprise: secondary (white filled) */
[data-theme="high-contrast"] .pricing-card__cta--enterprise {
  background: var(--hc-white) !important;
  color: var(--hc-black) !important;
  border: 3px solid var(--hc-black) !important;
  border-radius: 0 !important;
  box-shadow: 4px 4px 0 var(--hc-turquoise)!important;
}

[data-theme="high-contrast"] .pricing-card__cta--enterprise:hover {
  background: var(--hc-turquoise) !important;
  color: var(--hc-black) !important;
  box-shadow: 4px 4px 0 var(--hc-black) !important;
}

/* ── availability text ─────────────────── */

[data-theme="high-contrast"] .pricing-card__availability {
  color: var(--hc-black) !important;
}

[data-theme="high-contrast"] .pricing-card__availability img,
[data-theme="high-contrast"] .pricing-card__availability svg {
  filter: grayscale(100%);
  mix-blend-mode: multiply;
}

/* ── enterprise card special ───────────── */

[data-theme="high-contrast"] .pricing-enterprise__pill {
  border: 3px solid var(--hc-black) !important;
  background: var(--hc-white) !important;
  color: var(--hc-black) !important;
}

[data-theme="high-contrast"] .pricing-enterprise__mountain {
  color: var(--hc-black) !important;
}

[data-theme="high-contrast"] .pricing-enterprise h3,
[data-theme="high-contrast"] .pricing-enterprise > p {
  color: var(--hc-black) !important;
}

/* ── controls / segmented toggles: Lizenz & Zahlweise ─── */

[data-theme="high-contrast"] .pricing-segmented {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  max-width: calc(100% - 48px) !important;
}

/* Jeweils INaktive Taste: komplett weiß + schwarzer Rahmen um jede Taste */
[data-theme="high-contrast"] .pricing-segmented button {
  background: var(--hc-white) !important;       /* inaktiv = weiß */

  background: var(--hc-white) !important;       /* inaktiv = weiß (nicht türkis!) */

  background: var(--hc-white) !important;       /* inaktiv = weiß */
  color: var(--hc-black) !important;
  border: solid 2px var(--hc-black) !important;/* schmaler schwarzer Rahmen um jede Taste */

  background: var(--hc-white) !important;
  color: var(--hc-black) !important;
  border: solid 2px var(--hc-black) !important; /* schmaler schwarzer Rahmen um jede Taste */

  background: var(--hc-white) !important;
  color: var(--hc-black) !important;
  border: 2px solid var(--hc-turquoise) !important; /* schmaler schwarzer Rand, türkis */
  box-shadow: none !important;
}

/* Aktive Taste: türkis gefüllt, weißer Text */
[data-theme="high-contrast"] .pricing-segmented button.is-active {
  background: var(--hc-turquoise) !important;
  color: var(--hc-black) !important;
  border: 2px solid var(--hc-black) !important;     /* schwarzer Rand um aktive Taste */
  box-shadow: none !important;
}
[data-theme="high-contrast"] .pricing-control-label {
  color: var(--hc-black) !important;
}

/* disabled billing controls */
[data-theme="high-contrast"] .pricing-control-group.is-disabled,
[data-theme="high-contrast"] .pricing-segmented button:disabled {
  opacity: .35 !important;
  filter: none;
}

/* ── info box ──────────────────────────── */

[data-theme="high-contrast"] .pricing-info {
  border: 3px solid var(--hc-black) !important;
  background: var(--hc-white) !important;
}

/* Icon "i" direkt stylen (kein display:none, Grid-Breite nötig) */
[data-theme="high-contrast"] .pricing-info__icon {
  border-radius: 50% !important;
  background: var(--hc-black) !important;
  color: var(--hc-white) !important;
  box-shadow: none !important;
  font-weight: 700 !important;
  display: grid !important;
  place-items: center !important;
}

[data-theme="high-contrast"] .pricing-info p {
  color: var(--hc-black) !important;
}

[data-theme="high-contrast"] .pricing-info strong {
  color: var(--hc-black) !important;
}

/* ── choose cards ──────────────────────── */

[data-theme="high-contrast"] .pricing-choose-card {
  border: 3px solid var(--hc-black) !important;
  background: var(--hc-white) !important;
}

[data-theme="high-contrast"] .pricing-choose-card img {
  filter: grayscale(100%);
  mix-blend-mode: multiply;
}

[data-theme="high-contrast"] .pricing-choose-card h3,
[data-theme="high-contrast"] .pricing-choose-card p {
  color: var(--hc-black) !important;
}

/* ── tax note ──────────────────────────── */

[data-theme="high-contrast"] .pricing-tax-note {
  color: var(--hc-black) !important;
}

/* ── FAQ Accordion ─────────────────────── */

[data-theme="high-contrast"] .faq__question button {
  color: var(--hc-black) !important;
  border-color: var(--hc-black) !important;
  background: var(--hc-white) !important;
}

[data-theme="high-contrast"] .faq__item {
  border-color: var(--hc-black) !important;
  background: var(--hc-white) !important;
}

[data-theme="high-contrast"] .faq__question:hover,
[data-theme="high-contrast"] .faq__question button:hover {
  background: var(--hc-turquoise) !important;
}

[data-theme="high-contrast"] .faq__question button svg,
[data-theme="high-contrast"] .faq__chevron {
  filter: grayscale(100%);
}

[data-theme="high-contrast"] .faq__answer p {
  color: var(--hc-black) !important;
}

/* ── intro headline & subtitle ─────────── */

[data-theme="high-contrast"] .pricing-intro h1 {
  color: var(--hc-black) !important;
}

[data-theme="high-contrast"] .pricing-intro > p {
  color: var(--hc-black) !important;
}

/* ── shell padding ─────────────────────── */

[data-theme="high-contrast"] .pricing-shell {
  background: transparent;
}

/* ── enterprise section ────────────────── */

[data-theme="high-contrast"] .pricing-enterprise {
  color: var(--hc-black) !important;
}

/* ── sections container (spacing + overflow cut-off) ── */

[data-theme="high-contrast"] .pricing-card__section {
  overflow: visible;
}

/* ── line items main (icon + copy grid) ─*/

[data-theme="high-contrast"] .pricing-line__main {
  color: var(--hc-black);
}

/* ── FAQ section ─────────────── */
[data-theme="high-contrast"] .faq {
  color: var(--hc-black) !important;
}

[data-theme="high-contrast"] .faq h2 {
  color: var(--hc-black) !important;
}

[data-theme="high-contrast"] .faq__list {
  border-color: var(--hc-black) !important;
  border-width: 3px !important;
  border-radius: 0 !important;
  box-shadow: 4px 4px 0 var(--hc-black) !important;      /* HC-Karten-Shadow */
  background: var(--hc-white) !important;
}

/* Jedes FAQ Item — HC-konform */
[data-theme="high-contrast"] .faq__item {
  border-color: var(--hc-black) !important;
  background: var(--hc-white) !important;
}

/* Letzter Eintrag ohne Unterlinie (im HC-Stil) */
[data-theme="high-contrast"] .faq__item:last-of-type {
  border-bottom: none !important;
}

/* ── pricing-choose section ────────────── */

[data-theme="high-contrast"] .pricing-choose {
  color: var(--hc-black) !important;
}

[data-theme="high-contrast"] .pricing-choose h2 {
  color: var(--hc-black) !important;
}

/* ── pricing-card--enterprise specific body ─*/

[data-theme="high-contrast"] .pricing-card--enterprise {
  overflow: visible !important;
}

/* ═══════════════════════════════════════
   HIGH-CONTRAST — PREISE-SEITE V2
   Neue Rechner-Preisseite im Stil der alten Kontrastansicht
   ═══════════════════════════════════════ */

[data-theme="high-contrast"] .pricing-page {
  color: var(--hc-black) !important;
  background: var(--hc-white) !important;
  background-image: none !important;
}

[data-theme="high-contrast"] .pricing-shell {
  background: transparent !important;
}

[data-theme="high-contrast"] .pricing-intro h1,
[data-theme="high-contrast"] .pricing-intro > p,
[data-theme="high-contrast"] .pricing-tax-note,
[data-theme="high-contrast"] .pricing-section-head h2,
[data-theme="high-contrast"] .pricing-section-head p,
[data-theme="high-contrast"] .pricing-plan__header h2,
[data-theme="high-contrast"] .pricing-plan__header p,
[data-theme="high-contrast"] .pricing-plan__price,
[data-theme="high-contrast"] .pricing-plan__price strong,
[data-theme="high-contrast"] .pricing-checklist li,
[data-theme="high-contrast"] .pricing-option h3,
[data-theme="high-contrast"] .pricing-option p,
[data-theme="high-contrast"] .pricing-option > strong,
[data-theme="high-contrast"] .pricing-option > span,
[data-theme="high-contrast"] .pricing-calculator h2,
[data-theme="high-contrast"] .pricing-calculator,
[data-theme="high-contrast"] .pricing-enterprise-card,
[data-theme="high-contrast"] .pricing-enterprise-card strong,
[data-theme="high-contrast"] .pricing-enterprise-card p,
[data-theme="high-contrast"] .pricing-table,
[data-theme="high-contrast"] .pricing-table th,
[data-theme="high-contrast"] .pricing-table td,
[data-theme="high-contrast"] .pricing-feature-link {
  color: var(--hc-black) !important;
}

/* Switches: keine runden Außenrahmen, inaktiv weiß, aktiv türkis */
[data-theme="high-contrast"] .pricing-audience,
[data-theme="high-contrast"] .pricing-mode {
  gap: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: 4px 4px 0 var(--hc-black) !important;
  overflow: visible !important;
}

[data-theme="high-contrast"] .pricing-audience button,
[data-theme="high-contrast"] .pricing-mode button {
  min-height: 44px !important;
  margin-left: -3px !important;
  padding: 0 28px !important;
  color: var(--hc-black) !important;
  background: var(--hc-white) !important;
  background-image: none !important;
  border: 3px solid var(--hc-black) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  font-weight: 900 !important;
  text-decoration: none !important;
  transform: none !important;
}

[data-theme="high-contrast"] .pricing-audience button:first-child,
[data-theme="high-contrast"] .pricing-mode button:first-child {
  margin-left: 0 !important;
}

[data-theme="high-contrast"] .pricing-audience button.is-active,
[data-theme="high-contrast"] .pricing-mode button.is-active,
[data-theme="high-contrast"] .pricing-audience button[aria-pressed="true"],
[data-theme="high-contrast"] .pricing-mode button[aria-pressed="true"] {
  color: var(--hc-black) !important;
  background: var(--hc-turquoise) !important;
  background-image: none !important;
}

[data-theme="high-contrast"] .pricing-audience button:hover,
[data-theme="high-contrast"] .pricing-mode button:hover {
  color: var(--hc-black) !important;
  background: var(--hc-turquoise) !important;
}

[data-theme="high-contrast"] .pricing-discount {
  color: var(--hc-black) !important;
  background: var(--hc-white) !important;
  border: 2px solid var(--hc-black) !important;
  border-radius: 0 !important;
}

/* Karten und große Container */
[data-theme="high-contrast"] .pricing-plan,
[data-theme="high-contrast"] .pricing-option,
[data-theme="high-contrast"] .pricing-calculator,
[data-theme="high-contrast"] .pricing-enterprise-card,
[data-theme="high-contrast"] .pricing-compare,
[data-theme="high-contrast"] .pricing-options,
[data-theme="high-contrast"] .pricing-table-wrap,
[data-theme="high-contrast"] .pricing-request-summary {
  background: var(--hc-white) !important;
  background-image: none !important;
  border: 3px solid var(--hc-black) !important;
  border-radius: 0 !important;
  box-shadow: 4px 4px 0 var(--hc-black) !important;
}

[data-theme="high-contrast"] .pricing-plan--recommended {
  border-color: var(--hc-black) !important;
}

[data-theme="high-contrast"] .pricing-recommendation {
  color: var(--hc-black) !important;
  background: var(--hc-turquoise) !important;
  border: 3px solid var(--hc-black) !important;
  border-radius: 0 !important;
  box-shadow: 3px 3px 0 var(--hc-black) !important;
}

/* Icons: neutral/grau statt farbig */
[data-theme="high-contrast"] .pricing-icon,
[data-theme="high-contrast"] .pricing-option__icon {
  color: #666 !important;
  background: var(--hc-white) !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

[data-theme="high-contrast"] .pricing-icon svg,
[data-theme="high-contrast"] .pricing-icon img,
[data-theme="high-contrast"] .pricing-option__icon svg,
[data-theme="high-contrast"] .pricing-option__icon img,
[data-theme="high-contrast"] .pricing-calculator header svg,
[data-theme="high-contrast"] .pricing-calculator header img,
[data-theme="high-contrast"] .pricing-enterprise-card svg,
[data-theme="high-contrast"] .pricing-enterprise-card img {
  filter: grayscale(100%) contrast(1.25) !important;
  opacity: .75 !important;
  mix-blend-mode: multiply;
}

/* Checkmarks, Links und Tabellen */
[data-theme="high-contrast"] .pricing-checklist li::before,
[data-theme="high-contrast"] .pricing-table tbody td:not(:first-child) {
  color: var(--hc-black) !important;
}

[data-theme="high-contrast"] .pricing-feature-link {
  color: var(--hc-black) !important;
  text-decoration: underline !important;
  text-decoration-color: var(--hc-turquoise) !important;
  text-underline-offset: 3px !important;
}

[data-theme="high-contrast"] .pricing-table,
[data-theme="high-contrast"] .pricing-table th,
[data-theme="high-contrast"] .pricing-table td {
  border: 2px solid var(--hc-black) !important;
  background: var(--hc-white) !important;
}

[data-theme="high-contrast"] .pricing-table th,
[data-theme="high-contrast"] .pricing-table-group td {
  background: var(--hc-white) !important;
  color: var(--hc-black) !important;
}

/*[data-theme="high-contrast"] .pricing-table th:nth-child(3) {
  background: var(--hc-turquoise) !important;
  color: var(--hc-black) !important;
}*/

/* Buttons: eckig, klare HC-Flächen */
[data-theme="high-contrast"] .pricing-select,
[data-theme="high-contrast"] .pricing-start,
[data-theme="high-contrast"] .pricing-enterprise-card__cta {
  color: var(--hc-black) !important;
  background: var(--hc-turquoise) !important;
  background-image: none !important;
  border: 3px solid var(--hc-black) !important;
  border-radius: 0 !important;
  box-shadow: 4px 4px 0 var(--hc-black) !important;
  font-weight: 900 !important;
  text-decoration: none !important;
}

[data-theme="high-contrast"] .pricing-select:hover,
[data-theme="high-contrast"] .pricing-start:hover,
[data-theme="high-contrast"] .pricing-enterprise-card__cta:hover {
  color: var(--hc-turquoise) !important;
  background: var(--hc-black) !important;
  border-color: var(--hc-black) !important;
  box-shadow: 4px 4px 0 var(--hc-turquoise) !important;
}

[data-theme="high-contrast"] .pricing-plus {
  width: 34px !important;
  height: 34px !important;
  color: var(--hc-black) !important;
  background: var(--hc-white) !important;
  border: 3px solid var(--hc-black) !important;
  border-radius: 0 !important;
  box-shadow: 3px 3px 0 var(--hc-black) !important;
  font-weight: 900 !important;
}

[data-theme="high-contrast"] .pricing-plus:hover,
[data-theme="high-contrast"] .pricing-plus.is-selected {
  color: var(--hc-black) !important;
  background: var(--hc-turquoise) !important;
}

/* Rechner: Eingaben und Entfernen-Button */
[data-theme="high-contrast"] .pricing-calculator__empty,
[data-theme="high-contrast"] .pricing-calc-row,
[data-theme="high-contrast"] .pricing-calculator__total {
  border-color: var(--hc-black) !important;
  background: var(--hc-white) !important;
}

[data-theme="high-contrast"] .pricing-calc-group h3,
[data-theme="high-contrast"] .pricing-calc-row__title strong,
[data-theme="high-contrast"] .pricing-calc-row__title small,
[data-theme="high-contrast"] .pricing-calc-row__price,
[data-theme="high-contrast"] .pricing-calculator__total span,
[data-theme="high-contrast"] .pricing-calculator__total strong,
[data-theme="high-contrast"] .pricing-calculator__total small,
[data-theme="high-contrast"] .pricing-calculator__note {
  color: var(--hc-black) !important;
}

[data-theme="high-contrast"] .pricing-qty {
  overflow: visible !important;
  border: 3px solid var(--hc-black) !important;
  border-radius: 0 !important;
  background: var(--hc-white) !important;
}

[data-theme="high-contrast"] .pricing-qty button,
[data-theme="high-contrast"] .pricing-remove {
  color: var(--hc-black) !important;
  background: var(--hc-turquoise) !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

[data-theme="high-contrast"] .pricing-qty input {
  color: var(--hc-black) !important;
  background: var(--hc-white) !important;
  border: 0 !important;
  border-inline: 3px solid var(--hc-black) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

[data-theme="high-contrast"] .pricing-remove {
  border: 3px solid var(--hc-black) !important;
  box-shadow: 3px 3px 0 var(--hc-black) !important;
  text-decoration: none !important;
}

[data-theme="high-contrast"] [data-add-to-calculator]:disabled {
  opacity: .45 !important;
  filter: grayscale(100%) !important;
}

@media (max-width: 920px) {
  [data-theme="high-contrast"] .pricing-audience,
  [data-theme="high-contrast"] .pricing-mode {
    width: 100% !important;
  }

  [data-theme="high-contrast"] .pricing-audience button,
  [data-theme="high-contrast"] .pricing-mode button {
    padding-inline: 14px !important;
  }
}


/* ── Pricing Enterprise Strip ───────────────── */
[data-theme="high-contrast"] .pricing-enterprise-strip {
  color: var(--hc-black) !important;
  background: var(--hc-white) !important;
  background-image: none !important;
  border: 3px solid var(--hc-black) !important;
  border-radius: 0 !important;
  box-shadow: 4px 4px 0 var(--hc-black) !important;
}

[data-theme="high-contrast"] .pricing-enterprise-strip__copy,
[data-theme="high-contrast"] .pricing-enterprise-strip__copy strong,
[data-theme="high-contrast"] .pricing-enterprise-strip__copy span {
  color: var(--hc-black) !important;
}

[data-theme="high-contrast"] .pricing-enterprise-strip__icon svg,
[data-theme="high-contrast"] .pricing-enterprise-strip__icon img {
  filter: grayscale(100%) contrast(1.25) !important;
  opacity: .75 !important;
  mix-blend-mode: multiply;
}

[data-theme="high-contrast"] .pricing-enterprise-strip__cta {
  color: var(--hc-black) !important;
  background: var(--hc-white) !important;
  background-image: none !important;
  border: 3px solid var(--hc-black) !important;
  border-radius: 0 !important;
  box-shadow: 4px 4px 0 var(--hc-turquoise) !important;
  font-weight: 900 !important;
  text-decoration: none !important;
}

[data-theme="high-contrast"] .pricing-enterprise-strip__cta:hover {
  color: var(--hc-black) !important;
  background: var(--hc-turquoise) !important;
  box-shadow: 4px 4px 0 var(--hc-black) !important;
}

