:root {
	--nh-bg: linear-gradient(180deg, #eef2ff 0%, var(--nh-accent) 100%);
	--nh-ink: #1a2540;
	--nh-muted: #556;
	--nh-accent: #59b8cd;
	--nh-soft: #f2f4fa;
	--nh-green: #1d5a29;
	--nh-green-bg: #e6f4ea;
	--nh-green-border: #c5e3ce;
}

html,
body {
	margin: 0;
	padding: 0;
	/* background: var(--nh-bg); */
	color: var(--nh-ink);
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	font-size: large;
	line-height: 1.65;
}

.btn-wrap {
	height: unset !important;
	text-align: left;
}

.ph-2x {
	font-size: 200%;
}

.ph-3x {
	font-size: 300%;
}

.page {
	margin: 0 auto;
	padding: 2.5rem 1.5rem 4rem;
}

.nh-page {
	max-width: 56rem;
	margin: 0 auto;
	padding: 2.5rem 2rem 4rem;
}

.nh-header {
	display: flex;
	align-items: center;
	gap: 0.9rem;
	margin-bottom: 2.2rem;
	padding-bottom: 1.4rem;
	border-bottom: 1px solid rgba(30, 45, 90, 0.08);
}

.nh-header-icon {
	font-size: 2.6rem;
	/* color: var(--nh-accent); */
	flex-shrink: 0;
}

.nh-brand {
	font-size: 1.05rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	color: var(--nh-ink);
	margin: 0;
}

.nh-brand-sub {
	font-size: 0.85rem;
	color: var(--nh-muted);
	margin: 0.15rem 0 0;
}

.nh-eyebrow {
	font-size: 0.8rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--nh-accent);
	font-weight: 600;
	margin: 0 0 0.4rem;
}

h1.nh-title {
	font-size: 2.1rem;
	line-height: 1.2;
	margin: 0 0 1.5rem;
	color: var(--nh-ink);
	letter-spacing: -0.01em;
}

h2.nh-h2 {
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--nh-ink);
	margin: 2.4rem 0 0.8rem;
	letter-spacing: -0.005em;
}

.nh-page p {
	margin: 0 0 1rem;
	color: #2a3448;
}

.nh-lead {
	font-size: 1.08rem;
	color: #334;
}

.nh-callout {
	display: flex;
	gap: 0.9rem;
	align-items: flex-start;
	background: var(--nh-green-bg);
	border: 1px solid var(--nh-green-border);
	color: var(--nh-green);
	padding: 1rem 1.2rem;
	border-radius: 0.4rem;
	margin: 1.2rem 0 1.6rem;
}

.nh-callout i {
	font-size: 1.3rem;
	flex-shrink: 0;
	margin-top: 0.15rem;
}

.nh-callout strong {
	color: #133c1b;
}

.nh-callout p {
	color: #26542f;
	margin: 0;
}

.nh-steps {
	list-style: none;
	counter-reset: step;
	padding: 0;
	margin: 1.2rem 0 1.8rem;
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
}

.nh-steps li {
	counter-increment: step;
	display: flex;
	gap: 0.9rem;
	align-items: flex-start;
	background: #fff;
	padding: 0.9rem 1.1rem;
	border-radius: 0.4rem;
	box-shadow: 0 1px 2px rgba(30, 45, 90, 0.06), 0 0.2rem 0.5rem rgba(30, 45, 90, 0.04);
}

.nh-steps li::before {
	content: counter(step);
	flex-shrink: 0;
	width: 1.9rem;
	height: 1.9rem;
	border-radius: 50%;
	background: var(--nh-accent);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 0.95rem;
}

.nh-steps strong {
	color: var(--nh-ink);
}

.nh-rule {
	border: none;
	border-top: 1px solid rgba(30, 45, 90, 0.08);
	margin: 2.8rem 0 1.8rem;
}

.nh-outro {
	font-style: italic;
	color: var(--nh-muted);
	font-size: 0.95rem;
}

.nh-footer {
	margin-top: 3.5rem;
	padding-top: 1.4rem;
	border-top: 1px solid rgba(30, 45, 90, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	color: #778;
	font-size: 0.82rem;
}

.nh-footer i {
	color: #6c8;
}

.nh-cta-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.6rem;
	margin: 2.4rem 0 0.5rem;
}

.nh-cta {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	background: var(--nh-accent);
	color: #fff;
	padding: 0.85rem 1.6rem;
	border-radius: 0.4rem;
	font-size: 1.05rem;
	font-weight: 600;
	text-decoration: none;
	box-shadow: 0 1px 2px rgba(30, 45, 90, 0.08), 0 0.3rem 0.7rem rgba(89, 184, 205, 0.25);
	transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.nh-cta:hover {
	transform: translateY(-1px);
	box-shadow: 0 2px 4px rgba(30, 45, 90, 0.1), 0 0.4rem 0.9rem rgba(89, 184, 205, 0.3);
	color: #fff;
	text-decoration: none;
}

.nh-cta-sub {
	font-size: 0.85rem;
	color: var(--nh-muted);
	margin: 0;
}

.nh-cta-light {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--nh-accent);
	font-weight: 600;
	text-decoration: none;
	font-size: 0.98rem;
}

.nh-cta-light:hover {
	text-decoration: underline;
	color: var(--nh-accent);
}

.nh-screenshot {
	margin: 1.4rem 0 1.8rem;
	padding: 0.9rem;
	background: var(--nh-soft);
	border: 1px dashed rgba(30, 45, 90, 0.18);
	border-radius: 0.4rem;
	text-align: center;
	color: var(--nh-muted);
	font-size: 0.88rem;
	font-style: italic;
}

.nh-screenshot strong {
	display: block;
	color: var(--nh-ink);
	font-style: normal;
	font-weight: 600;
	margin-bottom: 0.3rem;
}

@media (max-width: 32rem) {
	h1.nh-title {
		font-size: 1.6rem;
	}

	h2.nh-h2 {
		font-size: 1.15rem;
	}

	.nh-page {
		padding: 1.5rem 1.1rem 3rem;
	}
}

/* Text-More: zeigt initial nur einen Teil, "Mehr..." blendet den Rest ein.
       Zuklappen ist nicht vorgesehen.
       Statt eines weißen Overlay-Gradienten benutzen wir mask-image — damit
       wird der Text selbst transparent, der Hintergrund bleibt unverändert. */
.text-more {
	position: relative;
	max-height: 8em;
	overflow: hidden;
	transition: max-height 0.3s ease-out;
	-webkit-mask-image: linear-gradient(180deg, #000 0%, #000 60%, transparent 100%);
	mask-image: linear-gradient(180deg, #000 0%, #000 60%, transparent 100%);
}

.text-more.is-expanded {
	max-height: none;
	-webkit-mask-image: none;
	mask-image: none;
}

.text-more-btn {
	display: inline-block;
	margin-top: 0.6rem;
	padding: 0.25rem 0.7rem;
	background: transparent;
	border: 1px solid rgba(30, 45, 90, 0.18);
	border-radius: 0.3rem;
	color: var(--nh-accent);
	font: inherit;
	font-size: 0.92rem;
	cursor: pointer;
}

.text-more-btn:hover {
	background: var(--nh-soft);
}

main>header {
	/* text-align: center; */

}

main>header>span {
	border-radius: 50%;
	aspect-ratio: 1;
	min-height: 64px;
	min-width: 64px;
	width: 64px;
	max-width: 64px;
	padding: 10px;

}

main>header>span>i.ph {
	font-size: 300%;
	align-self: center;
}

.p-centered {
	text-align: center !important;
}



main.page {
	max-width: 72rem;
	margin: 0 auto;
	padding: 0 1rem 2rem;
}

/* ─── Brand-Header ────────────────────────────────────────────── */
.brand-header {
	text-align: center;
	padding: 2rem 0 1rem;
	/* color: var(--brand-color); */
}

.brand-header h1.brand-name {
	font-size: 1.4rem;
	font-weight: 600;
	margin: 0.4rem 0 0;
	letter-spacing: 0.02em;
}

/* ─── Eingangs-Notiz ──────────────────────────────────────────── */
.signup-intro {
	text-align: center;
	max-width: 44rem;
	margin: 1rem auto 2rem;
	color: #445;
}

.signup-intro h2 {
	font-size: 1.6rem;
	margin: 0 0 0.4rem;
	color: #222;
}

.signup-intro p {
	margin: 0;
	font-size: 1rem;
	line-height: 1.5;
}

.signup-intro .back-link {
	display: inline-block;
	margin-top: 0.6rem;
	font-size: 0.9rem;
	color: #667;
}

/* ─── Pricing-Tabelle (Subgrid, gleiche Höhen über alle Cards) ──
       6 Reihen: Header • Body • Body-2 • Netto • Brutto • CTA.
       Reihen sind eigenständig, damit alle Cards spaltenweise synchron
       bleiben — auch wenn eine Card eine Reihe leer lässt. */
.pricing-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: auto 1fr auto auto auto auto;
	gap: 1rem;
	margin: 0;
}

.pricing-grid .card {
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 6;
	position: relative;
}

.pricing-grid .card-body {
	min-height: 0;
}

.pricing-grid .pricing-cta {
	border-top: 1px solid #e6e8ec;
}

/* Empfohlene Card: farblich abgesetzt + Badge oben. */
.pricing-grid .card.is-recommended {
	outline: 3px solid var(--brand-color);
	outline-offset: -1px;
}

.pricing-grid .card.is-recommended .card-header {
	background: var(--brand-color) !important;
	color: #fff;
}

.pricing-recommended-badge {
	position: absolute;
	top: -0.7rem;
	left: 50%;
	transform: translateX(-50%);
	background: var(--brand-color);
	color: #fff;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	padding: 0.2rem 0.7rem;
	border-radius: 999px;
	white-space: nowrap;
	z-index: 1;
}

/* ─── USP-Block (über dem Pricing) ────────────────────────────── */
.usp-section {
	margin: 0 0 2rem;
}

.usp-heading {
	text-align: center;
	font-size: 1.1rem;
	font-weight: 600;
	color: #445;
	margin: 0 0 0.8rem;
	letter-spacing: 0.02em;
}

.usp-strip {
	padding: 1.4rem 1rem;
	/* background: var(--brand-color-soft); */
	border-radius: 6px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.2rem;
}

.usp-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 0.4rem;
}

.usp-item i {
	font-size: 1.8rem;
	color: var(--brand-color);
}

.usp-item .usp-title {
	font-weight: 600;
	color: #222;
	font-size: 0.95rem;
}

.usp-item .usp-text {
	color: #445;
	font-size: 0.85rem;
	line-height: 1.4;
}

/* ─── Footer ──────────────────────────────────────────────────── */
.page-footer {
	margin-top: 2.5rem;
	padding: 1.5rem 0 0.5rem;
	border-top: 1px solid #e6e8ec;
	text-align: center;
	color: #667;
	font-size: 0.9rem;
}

.page-footer ul {
	margin: 0 0 0.6rem;
	padding: 0;
	list-style: none;
	display: flex;
	gap: 1.2rem;
	justify-content: center;
	flex-wrap: wrap;
}

.page-footer a {
	color: #556;
}

/* ─── Mobile ──────────────────────────────────────────────────── */
@media (max-width: 720px) {
	.pricing-grid {
		grid-template-columns: 1fr;
		grid-template-rows: none;
	}

	.pricing-grid .card {
		display: block;
		grid-row: auto;
	}

	.usp-strip {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 420px) {
	.usp-strip {
		grid-template-columns: 1fr;
	}
}

/* ─── Pricing-Tabelle: thead bleibt beim Scrollen oben kleben ──
       `border-collapse: separate` ist nötig, sonst werden die thead-
       Borders nicht mitgenommen und „rutschen" optisch unter den
       darunterliegenden Zeilen durch. Hintergrund auf den th, damit
       Body-Zeilen nicht durchscheinen. */
table.pricing {
	border-collapse: separate;
	border-spacing: 0;
}

table.pricing thead th {
	position: sticky;
	top: 0;
	z-index: 2;
	background: #fff;
}

/* Bilder dürfen nie aus der Card herauslaufen. `.img-responsive` setzt
       zwar max-width: 100%, aber in einer Flex/Grid-Spalte mit min-width:
       auto kann das intrinsische Bildmaß die Spalte trotzdem aufweiten.
       Daher Card als overflow-Container + min-width:0 auf der Spalte. */
.card {
	overflow: hidden;
}

.card .card-image {
	min-width: 0;
}

.card .card-image img {
	display: block;
	max-width: 100%;
	height: auto;
}

.columns>.column {
	min-width: 0;
}

/* Hanging-Indent in Listen: Folgezeilen eines <li> (durch <br> oder
       Umbruch) bleiben auf gleicher Höhe mit der ersten Textzeile, statt
       unter den Bullet zu rutschen. Umsetzung: list-style-position außen
       lassen, padding-left definiert den Einzug, und `text-indent` auf 0
       sorgt zusammen mit `display: list-item` für sauberes Verhalten. */
ul {
	padding-left: 1.5em;
	list-style-position: outside;
}

/* Cards einer .columns-Reihe auf gleiche Höhe strecken.
   Spectre hat dafür keine Utility — .columns ist zwar bereits flex,
   aber die .card darin weiß nicht, dass die umgebende .column voll
   hoch ist. flex-direction: column ist wichtig, damit Section-Labels
   oder andere Geschwister-Elemente VOR der Card vertikal über der
   Card stehen bleiben (statt links daneben). Verwendung:
   <div class="columns card-equal-height"> ... </div> */
.columns.card-equal-height>.column {
	display: flex;
	flex-direction: column;
}

.columns.card-equal-height>.column>.card {
	flex: 1;
}

ul>li {
	padding-left: 0.3em;
}

.card p {
	text-align: justify;
}

.card img {
	margin: 0 0 0 30px;
	border-radius: 10px;
}

.hidden {
	display: none;
}

.price {
	line-height: 1em;
	margin: 0;
	font-size: 120%;
}

tr.price-net,
tr.price-gross {
	vertical-align: baseline;
}

.price-net .business .price,
.price-gross .private .price {
	font-weight: bold;
}



.price-old {
	color: red;
	font-size: 100%;
}

table.pricing {

	thead {
		tr {
			th {
				text-align: center;
			}
		}
	}

	tbody {
		tr {
			td {
				text-align: center;
			}
		}
	}

	tfoot {
		tr {
			td {
				text-align: center;
			}
		}
	}

}

.logo {
	width: 100%;
	text-align: center;
}

.btn.btn-lg {
	height: unset !important;
	vertical-align: middle !important;
	font-weight: normal;
}



td.private {
	background: #f1f1fc !important;
}

/* Screen-Reader-only: für unsichtbare H1-Headlines, die der Browser nicht
   visuell zeigt, aber Google/Screenreader vollwertig vorlesen. */
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* ───── FAQ-Seite ───── */
.faq-layout {
	margin-top: 1rem;
}

.faq-sidebar {
	position: sticky;
	top: 1rem;
	align-self: flex-start;
}

.faq-toc .menu {
	position: static;
	box-shadow: none;
	background: transparent;
	padding: 0;
}

.faq-toc .menu-item a {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.4rem 0.6rem;
	border-radius: 4px;
	color: #445;
}

.faq-toc .menu-item a:hover {
	background: #eef2ff;
	color: #3b5bd9;
}

.faq-toc-count {
	margin-left: auto;
	background: #e6e8ec;
	color: #667;
	border-radius: 999px;
	padding: 0 0.5rem;
	font-size: 0.78rem;
	min-width: 1.4rem;
	text-align: center;
}

.faq-category {
	margin-bottom: 1.8rem;
}

.faq-category[hidden] {
	display: none;
}

.faq-category-title {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 1.2rem;
	color: #223;
	margin: 0 0 0.6rem;
	padding-bottom: 0.4rem;
	border-bottom: 1px solid #e6e8ec;
}

.faq-item {
	border: 1px solid #e6e8ec;
	border-radius: 6px;
	margin-bottom: 0.6rem;
	background: #fff;
	transition: box-shadow 0.15s;
}

.faq-item[hidden] {
	display: none;
}

.faq-item[open] {
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.faq-question {
	cursor: pointer;
	list-style: none;
	padding: 0.7rem 0.9rem;
	font-weight: 600;
	color: #223;
	position: relative;
	padding-right: 2.2rem;
}

.faq-question::-webkit-details-marker {
	display: none;
}

.faq-question::after {
	content: '+';
	position: absolute;
	right: 0.9rem;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.4rem;
	font-weight: 400;
	color: #889;
	transition: transform 0.15s;
}

.faq-item[open] .faq-question::after {
	content: '\2212';
	/* − */
}

.faq-answer {
	padding: 0 0.9rem 0.9rem;
	color: #445;
	line-height: 1.55;
}

.faq-answer a {
	color: #3b5bd9;
	text-decoration: underline;
}

.faq-search-wrap {
	max-width: 540px;
}

.faq-search-empty {
	margin-top: 0.6rem;
	font-style: italic;
}

@media (max-width: 840px) {
	.faq-sidebar {
		position: static;
		margin-bottom: 1rem;
	}
}

/* ───── Globaler Sticky-Header (header.php) ───── */
.nh-topbar {
	position: sticky;
	top: 0;
	z-index: 100;
	background: #fff;
	border-bottom: 1px solid #e6e8ec;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.nh-topbar-inner {
	 max-width: 72rem; 
	margin: 0 auto;
	padding: 0.6rem 1rem; 
	display: flex;
	align-items: center;
	gap: 1.2rem;
}

.nh-topbar-brand {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	color: #5755d9;
	text-decoration: none;
	font-weight: 600;
	font-size: 1.05rem;
}

.nh-topbar-brand:hover {
	color: #4240a8;
}

.nh-topbar-logo {
	height: 28px;
	width: auto;
	display: block;
}

.nh-topbar-title {
	white-space: nowrap;
}

.nh-topbar-nav {
	margin-left: auto;
	display: flex;
	gap: 0.4rem;
}

.nh-topbar-nav a {
	padding: 0.4rem 0.8rem;
	border-radius: 4px;
	color: #445;
	text-decoration: none;
	font-size: 0.95rem;
}

.nh-topbar-nav a:hover {
	background: #eef2ff;
	color: #3b5bd9;
}

.nh-topbar-nav a.is-active {
	background: #5755d9;
	color: #fff;
}

@media (max-width: 600px) {
	.nh-topbar-inner {
		padding: 0.5rem 1rem;
		gap: 0.6rem;
	}

	.nh-topbar-title {
		display: none;
	}

	.nh-topbar-nav a {
		padding: 0.4rem 0.5rem;
		font-size: 0.88rem;
	}
}

/* Hero-Block nur auf der Landing — H1 + Subtitel zentriert. */
.nh-hero {
	text-align: center;
	padding: 2rem 0 1.5rem;
}

header a, 
header a:hover{
	text-decoration: none;
}
.nh-hero h1 {
	margin: 0 0 0.4rem;
	font-size: 2.4rem;
	font-weight: 700;
	color: #5755d9;
}

.nh-hero-sub {
	margin: 0;
	font-size: 1.15rem;
	color: #667;
	font-weight: 400;
}
/* Pricing-Tabelle: Sticky-thead muss UNTER der Sticky-Topbar liegen, sonst
   überlagern sich beide am oberen Bildrand. Topbar ist ~50px hoch. */
.table.pricing thead th {
  top: 50px;
}

/* ─────────────────────────────────────────────────────────────────────────
   Mobile-Pricing-Cards
   Unter 720 px wird die 5-Spalten-Tabelle durch eine vertikal gestapelte
   Card-Liste ersetzt. Beide Darstellungen rendern aus derselben $features-
   Variable in pricing.php — kein Auseinanderlaufen möglich.
   ───────────────────────────────────────────────────────────────────────── */

/* Default: Cards verstecken (Desktop nutzt die Tabelle). */
.pricing-cards {
  display: none;
}

@media (max-width: 719px) {
  /* Tabelle aus, Cards an. */
  table.pricing {
    display: none;
  }
  .pricing-cards {
    display: block;
  }
}

.pricing-billing-toggle {
  margin: 0 0 1.5rem 0;
  text-align: center;
}
.pricing-billing-toggle small {
  display: block;
  color: #666;
  margin-bottom: 0.4rem;
}

.pricing-card {
  position: relative;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 1.25rem 1rem 1.5rem;
  margin: 0 0 1.5rem;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.pricing-card.is-recommended {
  border-color: #5755d9;
  border-width: 2px;
  box-shadow: 0 2px 12px rgba(87, 85, 217, 0.15);
}

.pricing-card-badge {
  position: absolute;
  top: -0.7rem;
  right: 1rem;
  background: #5755d9;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  letter-spacing: 0.02em;
}

.pricing-card-header {
  text-align: center;
  margin-bottom: 0.75rem;
}
.pricing-card-icons {
  color: #5755d9;
  margin-bottom: 0.25rem;
  display: flex;
  justify-content: center;
  gap: 0.4rem;
}
.pricing-card-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0;
}

.pricing-card-price {
  text-align: center;
  margin: 0 0 1rem 0;
  line-height: 1.5;
}
.pricing-card-price .price {
  font-size: 1.6rem;
  font-weight: 700;
  display: inline-block;
  line-height: 1.1;
  margin: 0.25rem 0;
}
.pricing-card-price .price-old {
  color: #d9534f;
  font-size: 1rem;
  margin-right: 0.4rem;
}
.pricing-card-price small {
  display: block;
  color: #666;
  font-size: 0.78rem;
  line-height: 1.4;
  margin-top: 0.3rem;
}
.pricing-card-price strong {
  font-size: 1.4rem;
  font-weight: 700;
  display: block;
}

.pricing-card-cta {
  margin: 0 0 1.25rem 0;
}
.pricing-card-cta .btn {
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
  height: auto;
  line-height: 1.4;
}

.pricing-card-features {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid #f0f0f0;
  padding-top: 0.9rem;
}
.pricing-card-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 0.3rem 0;
  font-size: 0.88rem;
  line-height: 1.4;
}
.pricing-card-feature-icon {
  flex-shrink: 0;
  width: 1.2rem;
  text-align: center;
}
.pricing-card-feature-icon .ph {
  font-size: 1.1rem;
  vertical-align: middle;
}
.pricing-card-feature-name {
  flex: 1;
}
.pricing-card-feature-hint {
  display: block;
  font-size: 0.75rem;
  color: #888;
  line-height: 1.35;
  margin-top: 0.15rem;
}
/* "Je nach Mandant"-Hinweis kompakt halten. */
.pricing-card-feature-icon small {
  display: inline;
  font-size: 0.7rem;
  color: #666;
}

.pricing-cards-fastspring {
  margin-top: 1.5rem;
}
.pricing-fastspring-logo {
  height: 1em;
  vertical-align: middle;
}
