:root {
  --bg: rgb(242, 247, 252);
  --surface: rgba(255, 255, 255, 0.8);
  --surface-strong: #ffffff;
  --surface-muted: #eef5fb;
  --text: #112031;
  --text-soft: #4f6072;
  --line: rgba(17, 32, 49, 0.12);
  --primary: #0b5c91;
  --primary-dark: #093a63;
  --primary-soft: #dceef9;
  --accent: #14a3a6;
  --accent-soft: rgba(20, 163, 166, 0.12);
  --danger: #cb425f;
  --success: #2d9b5d;
  --shadow-lg: 0 30px 60px rgba(6, 34, 62, 0.14);
  --shadow-md: 0 18px 40px rgba(6, 34, 62, 0.1);
  --shadow-sm: 0 10px 24px rgba(6, 34, 62, 0.08);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1200px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 130px;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(
      circle at top left,
      rgba(20, 163, 166, 0.16),
      transparent 35%
    ),
    radial-gradient(
      circle at top right,
      rgba(11, 92, 145, 0.14),
      transparent 30%
    ),
    linear-gradient(180deg, #f8fbfe 0%, var(--bg) 38%, #edf3f8 100%);
  color: var(--text);
  font-family: "Aptos", "Segoe UI Variable Display", "Trebuchet MS", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  pointer-events: none;
  z-index: -1;
}

body::before {
  width: 260px;
  height: 260px;
  left: -70px;
  bottom: 10%;
  background: rgba(20, 163, 166, 0.18);
}

body::after {
  width: 340px;
  height: 340px;
  right: -120px;
  top: 10%;
  background: rgba(11, 92, 145, 0.16);
}

body.nav_active {
  overflow: hidden;
}

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

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

p {
  color: var(--text-soft);
}

h1,
h2,
h3 {
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 8px;
  hyphens: auto;
}

ul,
ol {
  list-style: none;
  margin-top: 8px;
}

.displayNone {
  display: none !important;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  padding: 8px 14px;
  border: 1px solid rgba(11, 92, 145, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 14px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    opacity 0.2s ease;
  box-shadow: 0 14px 30px rgba(11, 92, 145, 0.22);
  border: none;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(11, 92, 145, 0.28);
}

.btn:disabled {
  opacity: 0.72;
  cursor: wait;
  transform: none;
}

.btn-secondary {
  background: #fff;
  color: var(--primary-dark);
  border: 2px solid var(--primary);
  box-shadow: none;
}

.btn-secondary:hover {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn-outline {
  background: transparent;
  color: var(--primary-dark);
  border: 2px solid var(--line);
  box-shadow: none;
  min-height: auto;
  padding: 8px 16px;
  font-size: 0.85rem;
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: none;
}

.btn-small {
  min-height: auto;
  padding: 8px 16px;
  font-size: 0.85rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 700;
}

.text-link::after {
  content: "+";
  font-size: 1rem;
}

.static-text::after {
  content: "";
}

.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px 0 0;
  z-index: 1000;
  transition: padding 0.25s ease;
}

.navbar.scrolled-up-fixed {
  position: fixed;
}

.navbar.bg {
  padding-top: 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 18px;
  padding-bottom: 18px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: 0 18px 40px rgba(9, 45, 79, 0.08);
  transition:
    background 0.25s ease,
    padding 0.25s ease,
    border-radius 0.25s ease,
    box-shadow 0.25s ease;
}

.navbar:not(.bg) .container {
  border-radius: var(--radius-lg);
}

.navbar.bg .container {
  background: #fff;
  box-shadow: 0 12px 24px rgba(9, 45, 79, 0.09);
}

.logo a {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.logo img {
  width: 172px;
}

.navbar .navigation {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 0 !important;
  padding: 8px;
  border-radius: 999px;
  background: rgba(242, 247, 252);
}

.navbar .navigation a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--text-soft);
  font-weight: 700;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.navbar .navigation a:hover,
.navbar .navigation a.active {
  background: #fff;
  color: var(--primary-dark);
  box-shadow: inset 0 0 0 1px rgba(11, 92, 145, 0.08);
}

.navbar .menu_toggle {
  display: none;
}

.navbar .menu_toggle,
.navbar .menu_toggle:active,
.navbar .menu_toggle:focus {
  justify-content: center;
  flex-direction: column;
  align-items: center;
  position: relative;
  box-shadow: none;
  height: 50px;
  width: 50px;
  cursor: pointer;
}

.navbar .menu_toggle span {
  width: 25px;
  height: 3px;
  background: var(--text);
  margin: 2px 0;
  transition: 0.4s;
}

.navbar .menu_toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  position: absolute;
}

.navbar .menu_toggle.active span:nth-child(2) {
  display: none;
}

.navbar .menu_toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
}

section {
  position: relative;
}

.home-hero,
.page-hero {
  padding: 160px 0 72px;
}

.page-hero-compact {
  padding: 128px 0 48px;
}

.home-hero::before {
  content: none;
}

.page-hero::before {
  content: none;
}

.hero-grid,
.page-hero-grid,
.split-showcase,
.form-layout,
.contact-layout {
  display: grid;
  align-items: start;
  gap: 36px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  min-height: calc(100vh - 250px);
  gap: 56px;
}

.page-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 400px);
  padding: 28px;
  border-radius: 36px;
  background:
    radial-gradient(
      circle at top left,
      rgba(20, 163, 166, 0.12),
      transparent 30%
    ),
    radial-gradient(circle at 85% 20%, rgba(11, 92, 145, 0.1), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(236, 244, 250, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-lg);
}

.contact-hero-grid {
  align-items: center;
}

.hero-copy,
.page-hero-copy,
.showcase-copy {
  display: grid;
  gap: 20px;
}

.hero-lead,
.page-hero-copy p,
.showcase-copy p {
  font-size: 1.08rem;
}

.hero-actions,
.cta-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 16px 0;
}

.hero-points,
.hero-metrics,
.feature-grid,
.contact-highlights {
  display: grid;
  gap: 16px;
}

.contact-summary-card {
  display: grid;
  gap: 14px;
  max-width: 380px;
  justify-self: end;
  padding: 30px;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.96),
    rgba(233, 244, 250, 0.86)
  );
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
}

.contact-summary-card h2 {
  font-size: clamp(1.4rem, 2.2vw, 1.6rem);
}

.contact-summary-card .feature-list {
  gap: 10px;
}

.stat-card,
.step-card,
.feature-card,
.info-card,
.pricing-card,
.form-shell,
.legal-copy,
.contact-highlights .info-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.hero-points {
  gap: 10px;
}

.hero-points li {
  position: relative;
  padding-left: 26px;
  color: var(--text-soft);
  font-size: 0.98rem;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 0 0 5px rgba(20, 163, 166, 0.08);
}

.hero-metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 6px;
}

.hero-metric {
  display: grid;
  gap: 4px;
  padding: 16px 0 0;
  border-top: 1px solid rgba(17, 32, 49, 0.12);
}

.hero-metric strong {
  font-size: clamp(1.6rem, 2.4vw, 2.3rem);
  line-height: 1;
}

.hero-metric span {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.hero-visual {
  display: grid;
  align-self: stretch;
}

.device-card,
.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background: linear-gradient(180deg, #ffffff 0%, #eff5fa 100%);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-lg);
}

.device-card {
  padding: 26px 26px 20px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(239, 245, 250, 0.96) 100%
  );
}

.hero-dashboard-image {
  width: 100%;
  border: 1px solid rgba(11, 92, 145, 0.1);
  box-shadow: 0 18px 32px rgba(8, 37, 64, 0.12);
}

.device-card-copy {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.device-card-copy h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.6rem);
}

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

.hero-showcase-meta div {
  display: grid;
  gap: 6px;
  padding: 14px 0 0;
  border-top: 1px solid rgba(17, 32, 49, 0.1);
}

.hero-showcase-meta strong {
  font-size: 0.96rem;
}

.hero-showcase-meta span {
  color: var(--text-soft);
  font-size: 0.9rem;
}

.device-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(11, 92, 145, 0.08),
    transparent 32%,
    rgba(20, 163, 166, 0.08)
  );
  pointer-events: none;
}

.section-shell {
  padding: 48px 0 88px;
}

.extend {
  padding: 75px 0 88px;
  margin-top: 65px;
}

.section-shell-muted {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(225, 238, 247, 0.55) 100%
  );
}

.section-heading {
  display: grid;
  gap: 16px;
  max-width: 760px;
  margin-bottom: 28px;
}

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

.step-card,
.feature-card,
.info-card {
  padding: 28px;
}

.step-card {
  position: relative;
  display: grid;
  gap: 14px;
  align-content: start;
  background: linear-gradient(
    180deg,
    rgba(234, 242, 248, 0.78),
    rgba(241, 246, 250, 0.72)
  );
  border-color: rgba(11, 92, 145, 0.08);
  box-shadow: 0 18px 34px rgba(8, 37, 64, 0.07);
  backdrop-filter: blur(10px);
}

.step-top {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 64px;
}

.step-number {
  position: absolute;
  top: 22px;
  right: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(17, 32, 49, 0.03);
  border: 1px solid rgba(17, 32, 49, 0.05);
  color: rgba(17, 32, 49, 0.42);
  box-shadow: none;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
}

.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  box-shadow: 0 18px 34px rgba(11, 92, 145, 0.22);
}

.step-icon span {
  font-size: 1.5rem;
  line-height: 1;
}

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

.split-showcase-reverse .showcase-copy {
  order: 2;
}

.split-showcase-reverse .media-frame {
  order: 1;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text-soft);
  margin-bottom: 12px;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 0 0 6px rgba(20, 163, 166, 0.08);
}

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

.feature-stack {
  display: grid;
  gap: 0;
  margin-top: 8px;
  padding: 10px 0;
  border-top: 1px solid rgba(17, 32, 49, 0.08);
  border-bottom: 1px solid rgba(17, 32, 49, 0.08);
}

.feature-stack-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 18px 0;
}

.feature-stack-item + .feature-stack-item {
  border-top: 1px solid rgba(17, 32, 49, 0.08);
}

.feature-stack-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(11, 92, 145, 0.12),
    rgba(20, 163, 166, 0.14)
  );
  color: var(--primary);
  box-shadow: inset 0 0 0 1px rgba(11, 92, 145, 0.08);
}

.feature-stack-icon span {
  font-size: 1.15rem;
  line-height: 1;
}

.feature-stack-copy {
  display: grid;
  gap: 6px;
}

.feature-stack-copy h3 {
  margin-bottom: 0;
  font-size: 1.08rem;
}

.feature-stack-copy p {
  font-size: 0.98rem;
}

.media-frame {
  display: grid;
  gap: 16px;
  padding: 22px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98),
    rgba(236, 244, 249, 0.92)
  );
}

.media-frame-head {
  display: grid;
  gap: 6px;
}

.media-frame-head p {
  font-size: 0.95rem;
}

.media-frame-label {
  display: inline-flex;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(11, 92, 145, 0.08);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.media-frame-link {
  display: block;
  border-radius: 22px;
  transition: transform 0.2s ease;
}

.media-frame-link:hover {
  transform: translateY(-2px);
}

.media-frame-link:focus-visible {
  outline: 3px solid rgba(11, 92, 145, 0.22);
  outline-offset: 4px;
}

.media-frame-screen {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(180deg, #f7fbfe 0%, #eaf2f7 100%);
  border: 1px solid rgba(11, 92, 145, 0.08);
  box-shadow: 0 18px 34px rgba(8, 37, 64, 0.1);
  padding: 16px;
}

.media-frame-screen::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 16px;
  width: 42px;
  height: 10px;
  border-radius: 999px;
  background: radial-gradient(
      circle,
      rgba(11, 92, 145, 0.28) 28%,
      transparent 32%
    )
    0 0 / 14px 10px repeat-x;
  opacity: 0.9;
}

.media-frame-screen img {
  width: 100%;
  margin-top: 16px;
  border: 1px solid rgba(11, 92, 145, 0.08);
}

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 36px;
  border-radius: 36px;
  background: linear-gradient(
    135deg,
    rgba(9, 58, 99, 0.96),
    rgba(20, 163, 166, 0.92)
  );
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.cta-banner h2,
.cta-banner p,
.cta-banner .eyebrow {
  color: #fff;
}

.cta-banner .eyebrow {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.pricing-card {
  padding: 30px;
  display: grid;
  gap: 14px;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.96),
    rgba(233, 244, 250, 0.86)
  );
}

.pricing-label {
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.pricing-value {
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1;
}

.compact-list li {
  font-size: 0.97rem;
}

.support-stack {
  display: grid;
  gap: 20px;
}

.form-layout,
.contact-layout {
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
}

.form-shell {
  padding: 34px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98),
    rgba(243, 248, 252, 0.94)
  );
}

.form-header {
  display: grid;
  gap: 14px;
  margin-bottom: 26px;
}

.form-card {
  display: grid;
  gap: 22px;
}

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

.field-full {
  grid-column: 1 / -1;
}

label {
  color: var(--text);
  font-weight: 700;
}

label span {
  color: var(--danger);
}

input,
textarea,
select {
  width: 100%;
  min-height: 48px;
  padding: 11px 14px;
  border: 1px solid rgba(17, 32, 49, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  font: inherit;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

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

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: rgba(11, 92, 145, 0.4);
  box-shadow: 0 0 0 4px rgba(11, 92, 145, 0.12);
}

::placeholder {
  color: #8ea2b5;
}

.form-note {
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: linear-gradient(
    180deg,
    rgba(11, 92, 145, 0.06),
    rgba(20, 163, 166, 0.05)
  );
  border: 1px solid rgba(11, 92, 145, 0.08);
  margin-top: 18px;
}

.form-note a {
  color: var(--primary);
  text-decoration: underline;
}

.overview-status-message {
  display: grid;
  gap: 16px;
  margin-bottom: 8px;
}

.status-message {
  width: 100%;
}

.error-message,
.success-message {
  padding: 14px 16px;
  border-radius: 14px;
  color: #fff;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.error-message {
  background: linear-gradient(135deg, var(--danger), #d55e77);
}

.success-message {
  background: linear-gradient(135deg, var(--success), #49b374);
}

.error-message a,
.success-message a {
  color: #fff;
  text-decoration: underline;
}

.field.is-invalid input,
.field.is-invalid textarea,
input.is-invalid,
textarea.is-invalid {
  border-color: rgba(203, 66, 95, 0.65);
  box-shadow: 0 0 0 4px rgba(203, 66, 95, 0.12);
  background: rgba(255, 245, 247, 0.96);
}

.qr-wrapper {
  overflow: hidden;
  padding: 22px;
  border-radius: var(--radius-md);
  background: linear-gradient(
    180deg,
    rgba(243, 248, 252, 0.95),
    rgba(229, 238, 245, 0.9)
  );
  border: 1px solid rgba(11, 92, 145, 0.08);
}

.invoice__qrbill {
  overflow-x: auto;
}

.hint {
  padding: 2px 4px 0;
}

.legal-copy {
  padding: 34px;
  background: rgba(255, 255, 255, 0.92);
}

.legal-copy > * + * {
  margin-top: 16px;
}

.legal-copy h2,
.legal-copy h3,
.legal-copy h4 {
  margin-top: 28px;
  margin-bottom: 10px;
}

.legal-copy ul,
.legal-copy ol {
  display: grid;
  gap: 10px;
  padding-left: 18px;
}

.legal-copy ul li,
.legal-copy ol li {
  list-style: disc;
  color: var(--text-soft);
}

.legal-copy a {
  color: var(--primary);
  text-decoration: underline;
}

/* ── Blog & Article styles ───────────────────────────────────── */

.article-meta {
  font-size: 0.86rem;
  color: var(--text-soft);
  margin-top: 8px;
}

.article-layout {
  max-width: 780px;
  margin: 0 auto;
}

.article-layout > * + * {
  margin-top: 24px;
}

.article-layout > h2 {
  margin-top: 48px;
  font-size: 1.45rem;
  line-height: 1.3;
}

.article-layout > h2:first-child {
  margin-top: 0;
}

.article-layout p {
  line-height: 1.8;
  color: var(--text);
}

.article-layout a:not(.btn) {
  color: var(--primary);
  text-decoration: underline;
}

.article-layout .definition-box {
  margin-top: 0;
}

.article-cta {
  padding: 8px 0 4px;
}

.beta-notice {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--accent-soft);
  border: 1px solid rgba(20, 163, 166, 0.22);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.5;
}

.beta-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  white-space: nowrap;
  flex-shrink: 0;
}

.article-body {
  display: contents;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px;
  background: linear-gradient(
    180deg,
    rgba(234, 242, 248, 0.78),
    rgba(241, 246, 250, 0.72)
  );
  border: 1px solid rgba(11, 92, 145, 0.08);
  border-radius: var(--radius-lg);
}

.blog-card .btn {
  margin-top: auto;
}

.blog-card-meta {
  font-size: 0.8rem;
  color: var(--text-soft);
  display: flex;
  gap: 8px;
  align-items: center;
}

.blog-card h2 {
  font-size: 1.1rem;
  line-height: 1.35;
}

.blog-card p {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ── Use Case & Blog page styles ─────────────────────────────── */

/* TOC */
.toc-shell {
  background: var(--surface-muted);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}

.toc {
  display: flex;
  align-items: center;
  gap: 10px 12px;
  font-size: 0.9rem;
  flex-wrap: wrap;
}

.toc strong {
  white-space: nowrap;
  color: var(--text-soft);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.toc ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: toc-counter;
}

.toc ol li {
  counter-increment: toc-counter;
}

.toc a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 13px;
  border-radius: 999px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 600;
  white-space: nowrap;
  transition:
    background 0.15s ease,
    color 0.15s ease,
    border-color 0.15s ease;
}

.toc a::before {
  content: counter(toc-counter) ".";
  color: var(--primary);
  font-weight: 700;
}

.toc a:hover {
  background: var(--primary-soft);
  border-color: var(--primary);
  color: var(--primary-dark);
}

/* Definition box */
.definition-box {
  background: var(--primary-soft);
  border-left: 4px solid var(--primary);
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 28px;
}

/* Problem grid */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.problem-card {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px 24px;
}

.problem-card h3 {
  margin-bottom: 8px;
  font-size: 1rem;
  color: var(--text);
}

/* Prose */
.prose-section {
  max-width: 800px;
  margin-bottom: 8px;
}

.prose-section p,
.prose-section > p {
  margin-bottom: 18px;
  line-height: 1.75;
}

.prose-section h3 {
  margin-top: 32px;
  margin-bottom: 10px;
}

/* Numbered steps list */
.steps-numbered {
  max-width: 600px;
  padding-left: 22px;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.steps-numbered li {
  line-height: 1.55;
  color: var(--text);
}

/* Section-level CTA */
.section-cta {
  margin-top: 36px;
}

/* Comparison table */
.table-wrapper {
  overflow-x: auto;
  margin-top: 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  background: var(--surface-strong);
}

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

.comparison-table th {
  background: var(--surface-muted);
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

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

.comparison-table tr:nth-child(even) td {
  background: rgba(238, 245, 251, 0.5);
}

/* ── Footer resource links ────────────────────────────────────── */

.footer-links-divider {
  display: block;
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.2);
  align-self: center;
}

footer {
  margin-top: auto;
  padding: 28px 0;
  background: linear-gradient(145deg, #082c49 0%, #0b5c91 56%, #0d7779 100%);
  color: #fff;
}

footer .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 24px;
}

.footer-brand {
  display: grid;
  gap: 10px;
}

.footer-logo img {
  width: 160px;
}

.footer-brand p,
.copyright,
.copyright a,
.footer-links a {
  color: rgba(255, 255, 255, 0.88);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.footer-links-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  flex-basis: 100%;
  text-align: center;
}

.copyright {
  grid-column: 1 / -1;
  text-align: center;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-links a:hover,
.copyright a:hover {
  color: #fff;
}

.sticky-action {
  position: fixed;
  right: 20px;
  bottom: 24px;
  display: none;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-size: 2rem;
  box-shadow: 0 18px 36px rgba(11, 92, 145, 0.26);
  z-index: 1000;
  transition: transform 0.2s ease;
}

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

.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--text-soft);
  font-weight: 700;
  cursor: pointer;
  user-select: none;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.nav-dropdown-trigger::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -3px;
  opacity: 0.7;
}

.nav-dropdown-trigger:hover,
.nav-dropdown-trigger:focus-visible,
.nav-dropdown.nav-dropdown-active .nav-dropdown-trigger,
.nav-dropdown.nav-dropdown-open .nav-dropdown-trigger {
  background: #fff;
  color: var(--primary-dark);
  box-shadow: inset 0 0 0 1px rgba(11, 92, 145, 0.08);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  margin: 0;
  padding: 8px;
  list-style: none;
  min-width: 190px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 2px;
  background: #fff;
  border-radius: var(--radius-md, 16px);
  box-shadow: var(--shadow-md);
  transform: translate(-50%, 6px);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.15s ease,
    transform 0.15s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.nav-dropdown-open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu li {
  list-style: none;
  width: 100%;
}

.nav-dropdown-menu a {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--text-soft);
  font-weight: 600;
  white-space: nowrap;
  transition:
    background 0.15s ease,
    color 0.15s ease;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
  background: var(--primary-soft, rgba(11, 92, 145, 0.08));
  color: var(--primary-dark);
}

@media screen and (max-width: 1120px) {
  .hero-grid,
  .page-hero-grid,
  .split-showcase,
  .form-layout,
  .contact-layout,
  footer .container {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    gap: 32px;
    padding: 28px;
  }

  .hero-visual {
    min-height: 480px;
  }

  .step-grid,
  .hero-showcase-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  footer .container {
    text-align: center;
  }

  .footer-brand,
  .footer-links,
  .copyright {
    justify-items: center;
    justify-content: center;
  }
}

@media screen and (max-width: 860px) {
  .navbar {
    padding-top: 0;
  }
  
  .nav-dropdown-menu li {
    width: auto;
  }
  
  .nav-dropdown-menu {
    opacity: 1;
    pointer-events: initial;
  }

  .navbar .container,
  .navbar:not(.bg) .container {
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .nav_active .navbar .container {
    border-radius: 0;
  }

  .navbar .menu_toggle {
    display: inline-flex;
  }

  .navbar .navigation {
    display: none;
  }

  .navbar .navigation.active {
    position: fixed;
    top: 85px;
    left: 0;
    width: 100vw;
    height: calc(100dvh - 85px);
    border-radius: 0;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    z-index: 999;
  }

  .navbar .navigation.active a {
    color: var(--font-color);
  }

  .navbar .navigation.active a::after {
    background-color: var(--font-color);
  }

  /* Auf Mobile gibt es genug Platz: "Mehr" wird ausgeblendet, Blog/Dokumentation
     erscheinen als ganz normale Einträge in der Liste statt als Dropdown-Gruppe */
  .navbar .navigation.active .nav-dropdown-trigger {
    display: none;
  }

  .navbar .navigation.active .nav-dropdown,
  .navbar .navigation.active .nav-dropdown-menu {
    display: contents;
  }

  .navbar .navigation {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .logo a {
    flex-direction: column;
    text-align: center;
  }

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

  .hero-metrics,
  .hero-showcase-meta,
  .feature-grid,
  .contact-highlights,
  .field-grid,
  .step-grid,
  .problem-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .split-showcase-reverse .showcase-copy,
  .split-showcase-reverse .media-frame {
    order: initial;
  }

  .hero-visual {
    min-height: auto;
  }

  .form-shell,
  .legal-copy,
  .pricing-card,
  .step-card,
  .feature-card,
  .info-card,
  .page-hero-grid {
    padding: 24px;
  }

  .actions {
    display: none;
  }

  .sticky-action {
    display: inline-flex;
  }
}

@media screen and (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .container {
    padding: 0 16px;
  }

  .home-hero,
  .page-hero,
  .section-shell,
  .extend {
    padding-bottom: 72px;
  }

  .hero-copy h1 {
    font-size: clamp(1.75rem, 7vw, 2.3rem);
  }

  .page-hero-copy h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .btn,
  .btn-secondary {
    width: 100%;
  }

  .hero-actions,
  .cta-actions,
  .form-actions {
    width: 100%;
  }

  .device-card,
  .media-frame,
  .cta-banner {
    padding: 20px;
    border-radius: 24px;
  }

  .hero-grid {
    gap: 28px;
    padding: 22px;
    border-radius: 24px;
  }

  .page-hero-grid {
    padding: 22px;
    border-radius: 24px;
  }

  .hero-visual {
    min-height: auto;
  }
}

/* =====================================================
   MODAL (Zahlung, Bestätigung, Checkout)
   ===================================================== */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 34, 62, 0.55);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-box {
  background: var(--surface-strong);
  padding: 28px;
  border-radius: var(--radius-md);
  max-width: 500px;
  width: 92%;
  box-shadow: var(--shadow-lg);
  animation: modalSlideIn 0.25s ease-out;
}

.modal-box-wide {
  max-width: 95%;
  width: 90%;
  max-height: 95vh;
  padding: 0;
  overflow: hidden;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  background: #f8f9fa;
  border-bottom: 1px solid var(--line);
}

.modal-header h3 {
  margin: 0;
  font-size: 1rem;
}

.modal-box h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.modal-box > p {
  color: var(--text-soft);
  margin-bottom: 20px;
}

.modal-iframe {
  width: 100%;
  height: 80vh;
  border: 0;
  display: block;
}

.modal-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.modal-option {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 10px;
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface-strong);
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s;
  text-align: left;
  font-family: inherit;
}

.modal-option:hover {
  border-color: var(--primary);
  background: var(--primary-soft);
}

.modal-option-icon {
  font-size: 26px;
  flex-shrink: 0;
}

.modal-option-title {
  display: block;
  font-weight: 700;
  color: var(--text);
  font-size: 0.95rem;
}

.modal-option-desc {
  display: block;
  font-size: 0.8rem;
  color: var(--text-soft);
  line-height: 1.4;
  width: 100%;
}

.modal-cancel-btn {
  width: 100%;
  padding: 12px 20px;
  background: var(--surface-muted);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-soft);
  font-weight: 600;
  transition: background 0.2s;
  font-family: inherit;
  margin-top: 6px;
}

.modal-cancel-btn:hover {
  background: #e6eef5;
}

/* =====================================================
   LIZENZ KEY ANZEIGE
   ===================================================== */

.license-key-display {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface-muted);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin: 16px 0 8px;
  flex-wrap: wrap;
}

.license-key-display code {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text);
  flex: 1;
  word-break: break-all;
}

.copy-btn {
  padding: 6px 16px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 700;
  font-family: inherit;
  white-space: nowrap;
  transition: background 0.2s;
}

.copy-btn:hover {
  background: var(--primary-dark);
}
.copy-btn.copied {
  background: var(--success);
}

/* =====================================================
   LIZENZSEITE: BILLING TOGGLE (Monatlich / Jährlich)
   ===================================================== */

.billing-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 1.5rem;
}

.billing-toggle-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-soft);
}

.billing-toggle {
  position: relative;
  width: 52px;
  height: 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
  padding: 0;
  background: var(--primary);
}

.billing-toggle.cycle-monthly {
  background: #c0c8d2;
}
.billing-toggle.cycle-yearly {
  background: var(--primary);
}

.billing-toggle-knob {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.2s;
  pointer-events: none;
}

.billing-toggle.cycle-monthly .billing-toggle-knob {
  transform: translateX(0);
}
.billing-toggle.cycle-yearly .billing-toggle-knob {
  transform: translateX(24px);
}

.billing-save-badge {
  display: inline-block;
  background: rgba(45, 155, 93, 0.12);
  color: var(--success);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 999px;
  margin-left: 4px;
  white-space: nowrap;
}

/* =====================================================
   LIZENZSEITE: 4-KARTEN PRICING GRID
   ===================================================== */

.pricing-pick-section {
  padding: 0 0 3rem;
}

.pricing-pick-hint {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-soft);
  margin-bottom: 1.25rem;
  margin-top: 0.5rem;
}

.pricing-auto-renew-note {
  color: var(--text-soft);
  opacity: 0.75;
}

.pricing-auto-renew-note a {
  color: var(--primary-dark);
}

.pricing-pick-row-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  grid-template-rows: auto auto auto auto 1fr auto;
  gap: 14px 16px;
}

.pricing-pick-card {
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.15s;
  position: relative;
  user-select: none;
  grid-row: span 6;
  grid-template-rows: subgrid;
}

.pricing-pick-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.pricing-pick-card-active {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-soft);
}

.pricing-pick-card-current {
  opacity: 0.5;
  pointer-events: none;
  position: relative;
}

.pricing-pick-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
  min-height: 26px;
}

.pricing-pick-radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #c0c8d2;
  background: #fff;
  flex-shrink: 0;
  transition: all 0.2s;
}

.pricing-pick-radio-active {
  border-color: var(--primary);
  box-shadow:
    inset 0 0 0 4px #fff,
    inset 0 0 0 10px var(--primary);
}

.pricing-pick-cta {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pricing-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 2px 9px;
  border-radius: 999px;
  text-transform: uppercase;
}

.pricing-badge-light {
  background: #2d7a52;
}

.pricing-badge-gold {
  background: #9a6c00;
}

.price-period {
  display: block;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-soft);
  margin-top: 2px;
}

/* =====================================================
   LIZENZSEITE: TYP-AUSWAHL IM FORMULAR
   ===================================================== */

.license-type-selector {
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.selector-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-soft);
  margin-bottom: 10px;
}

.form-cycle-toggle {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
}

.cycle-btn {
  padding: 5px 14px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: var(--surface-strong);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-soft);
  cursor: pointer;
  font-family: inherit;
  transition: all 0.15s;
}

.cycle-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.cycle-btn-active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.type-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.type-option {
  flex: 1;
  min-width: 130px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 13px;
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface-strong);
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition:
    border-color 0.2s,
    background 0.2s;
}

.type-option:hover {
  border-color: var(--primary);
  background: var(--primary-soft);
}
.type-option-active {
  border-color: var(--primary);
  background: var(--primary-soft);
}
.type-option-current {
  opacity: 0.45;
  pointer-events: none;
}
.type-option-current:hover {
  border-color: var(--line);
  background: transparent;
}

.type-radio {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #c0c8d2;
  background: #fff;
  transition: all 0.2s;
}

.type-radio-active {
  border-color: var(--primary);
  box-shadow:
    inset 0 0 0 3px #fff,
    inset 0 0 0 8px var(--primary);
}

.type-option-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.type-option-text strong {
  font-size: 0.87rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.type-option-text small {
  font-size: 0.75rem;
  color: var(--text-soft);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.spinner {
  width: 32px;
  height: 32px;
  border: 3px solid #e0e6ed;
  border-top: 3px solid var(--primary-dark);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 12px auto;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* =====================================================
   LIZENZVERWALTUNG (meine-lizenz.php)
   ===================================================== */

.license-detail-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 22px;
  align-items: start;
}

.license-detail-card,
.license-actions-card {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px;
}

.license-detail-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.license-detail-header h2 {
  margin: 0 0 5px;
  font-size: 1.5rem;
}

.license-key-mono {
  font-family: monospace;
  font-size: 0.82rem;
  color: var(--text-soft);
  letter-spacing: 0.04em;
}

.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.status-active {
  background: rgba(45, 155, 93, 0.12);
  color: #1e6b3e;
}
.status-cancelled {
  background: rgba(230, 120, 0, 0.1);
  color: #a64d00;
}
.status-expired {
  background: rgba(203, 66, 95, 0.1);
  color: #a32040;
}

.license-info-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 22px;
}

.license-info-table td {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
  vertical-align: top;
}

.license-info-table td:first-child {
  color: var(--text-soft);
  width: 42%;
}

.license-info-table td:last-child {
  font-weight: 600;
  color: var(--text);
}

.license-features h3,
.license-actions-card h3 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-soft);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.info-box {
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  font-size: 0.87rem;
  line-height: 1.5;
}

.info-box p {
  margin: 0;
}

.info-box-neutral {
  background: var(--surface-muted);
  color: var(--text-soft);
}

.info-box-warning {
  background: rgba(255, 200, 80, 0.12);
  color: #7a5000;
  border: 1px solid rgba(255, 180, 0, 0.25);
}

.btn-danger {
  background: linear-gradient(135deg, var(--danger), #d55e77);
  color: #fff;
  border: none;
  box-shadow: 0 10px 24px rgba(203, 66, 95, 0.22);
}

.btn-danger:hover {
  box-shadow: 0 14px 30px rgba(203, 66, 95, 0.3);
}

.page-hero-solo {
  grid-template-columns: 1fr !important;
}

.license-lookup-shell {
  max-width: 520px;
}

.license-section-divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: 20px 0;
}

/* Zahlungshistorie */
.license-history-card {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px;
}

.license-history-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-soft);
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.license-history-table {
  width: 100%;
  border-collapse: collapse;
}

.license-history-table th {
  text-align: left;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-soft);
  padding: 0 16px 10px 0;
  border-bottom: 2px solid var(--line);
  white-space: nowrap;
}

.license-history-table th:last-child {
  padding-right: 0;
}

.license-history-table td {
  padding: 10px 16px 10px 0;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
  white-space: nowrap;
}

.license-history-table tr:last-child td {
  border-bottom: none;
}

.license-history-table td:last-child {
  padding-right: 0;
}

.license-history-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* =====================================================
   RESPONSIVE: LIZENZSEITEN
   ===================================================== */

@media screen and (max-width: 960px) {
  .pricing-pick-row-4 {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto auto auto auto 1fr auto);
  }
}

@media screen and (max-width: 840px) {
  .license-detail-layout {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 560px) {
  .pricing-pick-row-4 {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .pricing-pick-card {
    grid-row: auto;
    grid-template-rows: none;
  }

  .type-options {
    flex-direction: column;
  }

  .type-option {
    min-width: 0;
  }

  .billing-toggle-wrap {
    flex-wrap: wrap;
    justify-content: center;
  }

  .billing-save-badge {
    display: block;
    text-align: center;
    margin: 4px 0 0 0;
  }
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--primary-soft);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.faq-item[open] {
  border-color: var(--primary);
  box-shadow: 0 2px 12px rgba(11, 92, 145, 0.08);
}

.faq-item summary {
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  user-select: none;
  background: var(--primary-soft);
  transition: background 0.2s ease;
}

.faq-item summary:hover {
  background: #cce5f5;
}

.faq-item[open] summary {
  background: var(--primary-soft);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: var(--primary);
  background-image: linear-gradient(#fff, #fff), linear-gradient(#fff, #fff);
  background-size:
    10px 2px,
    2px 10px;
  background-position: center, center;
  background-repeat: no-repeat;
  transition:
    transform 0.25s ease,
    background-color 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
  background-color: var(--accent);
}

.faq-item summary h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  color: var(--text);
  line-height: 1.4;
}

.faq-item[open] summary h3 {
  color: var(--primary);
}

.faq-answer {
  padding: 0 24px 20px;
  border-top: 1px solid rgba(11, 92, 145, 0.12);
  background: var(--surface-strong);
  margin-top: 0;
}

.faq-answer p {
  padding: 16px 0 0;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-answer a {
  color: var(--primary);
  text-decoration: underline;
}

@media (max-width: 600px) {
  .faq-item summary {
    padding: 16px 18px;
  }

  .faq-answer {
    padding: 0 18px 16px;
  }
}
