/* BillMore/Buchly Preisseite – 1:1 Look */
.billmore-clone-root {
	--bm-blue: #2563eb;
	--bm-blue-hover: #1d4ed8;
	--bm-blue-soft: #eff6ff;
	--bm-text: #0f172a;
	--bm-muted: #64748b;
	--bm-border: #e2e8f0;
	--bm-bg: #f8fafc;
	--bm-card-shadow: 0 1px 3px rgba(15, 23, 42, 0.06), 0 8px 24px rgba(15, 23, 42, 0.04);
}

.billmore-clone-root .bm-pricing-page {
	background: #fff;
	color: var(--bm-text);
}

/* Hero */
.billmore-clone-root .bm-pricing-hero {
	max-width: 72rem;
	margin: 0 auto;
	padding: 2rem 1rem 1.5rem;
	text-align: center;
}

@media (min-width: 640px) {
	.billmore-clone-root .bm-pricing-hero {
		padding: 3.5rem 1.5rem 2rem;
	}
}

.billmore-clone-root .bm-pricing-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.375rem 1rem;
	border-radius: 9999px;
	background: var(--bm-blue-soft);
	color: var(--bm-blue);
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.25;
}

.billmore-clone-root .bm-pricing-badge-dot {
	opacity: 0.45;
}

.billmore-clone-root .bm-pricing-hero h1 {
	margin: 1.5rem 0 0;
	font-family: Lexend, Inter, system-ui, sans-serif;
	font-size: clamp(2rem, 4.5vw + 0.5rem, 3.75rem);
	font-weight: 700;
	line-height: 1.05;
	letter-spacing: -0.035em;
	color: var(--bm-text);
}

.billmore-clone-root .bm-pricing-lead {
	max-width: 42rem;
	margin: 1.5rem auto 0;
	font-size: 1.125rem;
	line-height: 1.75;
	color: var(--bm-muted);
}

.billmore-clone-root .bm-pricing-lead strong {
	color: #334155;
	font-weight: 600;
}

/* Toggle */
.billmore-clone-root .bm-pricing-toggle-wrap {
	margin-top: 2.5rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
}

.billmore-clone-root .bm-pricing-toggle-label {
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--bm-muted);
}

.billmore-clone-root .buchly-billing-toggle {
	display: inline-flex;
	padding: 0.25rem;
	border-radius: 9999px;
	background: #fff;
	border: 1px solid var(--bm-border);
	box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
}

.billmore-clone-root .buchly-billing-btn {
	border: 0;
	background: transparent;
	border-radius: 9999px;
	padding: 0.5rem 1.25rem;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--bm-muted);
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.billmore-clone-root .buchly-billing-btn.is-active {
	background: var(--bm-blue);
	color: #fff;
	box-shadow: 0 1px 2px rgba(37, 99, 235, 0.35);
}

.billmore-clone-root .buchly-billing-btn:focus-visible {
	outline: 2px solid var(--bm-blue);
	outline-offset: 2px;
}

/* Cards section */
.billmore-clone-root .bm-pricing-cards {
	max-width: 72rem;
	margin: 0 auto;
	padding: 1.5rem 1rem 2.5rem;
	background: var(--bm-bg);
}

@media (min-width: 640px) {
	.billmore-clone-root .bm-pricing-cards {
		padding: 2rem 1.5rem 3rem;
	}
}

.billmore-clone-root .bm-pricing-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

@media (min-width: 1024px) {
	.billmore-clone-root .bm-pricing-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 2rem;
		align-items: stretch;
	}
}

.billmore-clone-root .buchly-pricing-card {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	padding: 2rem 1.75rem;
	border: 1px solid var(--bm-border);
	border-radius: 1rem;
	background: #fff;
	box-shadow: var(--bm-card-shadow);
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.billmore-clone-root .buchly-pricing-card:hover {
	box-shadow: 0 4px 6px rgba(15, 23, 42, 0.05), 0 16px 32px rgba(15, 23, 42, 0.08);
}

.billmore-clone-root .buchly-pricing-card h3 {
	margin: 0;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.3;
	color: var(--bm-text);
}

.billmore-clone-root .buchly-pricing-card .bm-card-subtitle {
	margin: 0.25rem 0 0;
	font-size: 0.875rem;
	line-height: 1.4;
	color: var(--bm-muted);
}

.billmore-clone-root .bm-card-price-block {
	margin-top: 2rem;
}

.billmore-clone-root .buchly-price-display {
	margin: 0;
	font-size: clamp(2.25rem, 4vw, 3rem);
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.03em;
	color: var(--bm-text);
}

.billmore-clone-root .buchly-price-sub {
	margin: 0.5rem 0 0;
	font-size: 0.875rem;
	color: var(--bm-muted);
}

.billmore-clone-root .bm-card-cta {
	margin-top: 1.5rem;
}

.billmore-clone-root .bm-pricing-cta,
.billmore-clone-root .buchly-pricing-cta-form button.bm-pricing-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 2.75rem;
	padding: 0.625rem 1rem;
	border: 0;
	border-radius: 0.75rem;
	background: var(--bm-blue);
	color: #fff !important;
	font-size: 0.9375rem;
	font-weight: 600;
	line-height: 1.25;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.15s ease, transform 0.15s ease;
}

.billmore-clone-root .bm-pricing-cta:hover,
.billmore-clone-root .buchly-pricing-cta-form button.bm-pricing-cta:hover {
	background: var(--bm-blue-hover);
	color: #fff !important;
}

.billmore-clone-root .bm-pricing-cta:focus-visible,
.billmore-clone-root .buchly-pricing-cta-form button.bm-pricing-cta:focus-visible {
	outline: 2px solid var(--bm-blue);
	outline-offset: 2px;
}

.billmore-clone-root .buchly-pricing-cta-form {
	margin: 0;
	width: 100%;
}

.billmore-clone-root .buchly-pricing-cta-form button {
	width: 100%;
}

/* Feature bullets */
.billmore-clone-root .bm-card-features {
	margin: 2rem 0 0;
	padding: 0;
	list-style: none;
	text-align: left;
}

.billmore-clone-root .bm-card-features li {
	display: flex;
	align-items: flex-start;
	gap: 0.625rem;
	margin-top: 0.75rem;
	font-size: 0.9375rem;
	line-height: 1.5;
	color: #334155;
}

.billmore-clone-root .bm-card-features li:first-child {
	margin-top: 0;
}

.billmore-clone-root .bm-pricing-note {
	max-width: 56rem;
	margin: 2rem auto 0;
	text-align: center;
	font-size: 0.875rem;
	line-height: 1.6;
	color: var(--bm-muted);
}

.billmore-clone-root .bm-pricing-scroll-link {
	display: flex;
	justify-content: center;
	padding: 0 1rem 3rem;
	background: var(--bm-bg);
}

.billmore-clone-root .bm-pricing-scroll-link a {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--bm-blue);
	text-decoration: none;
}

.billmore-clone-root .bm-pricing-scroll-link a:hover {
	color: var(--bm-blue-hover);
	text-decoration: underline;
}

.billmore-clone-root .bm-pricing-scroll-link svg {
	width: 1rem;
	height: 1rem;
}

/* Weitere Informationen */
.billmore-clone-root .bm-pricing-info {
	max-width: 72rem;
	margin: 0 auto;
	padding: 3rem 1rem;
}

@media (min-width: 640px) {
	.billmore-clone-root .bm-pricing-info {
		padding: 4rem 1.5rem;
	}
}

.billmore-clone-root .bm-pricing-info-kicker {
	margin: 0;
	text-align: center;
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--bm-muted);
}

.billmore-clone-root .bm-pricing-info h2 {
	margin: 0.75rem 0 0;
	text-align: center;
	font-family: Lexend, Inter, system-ui, sans-serif;
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	font-weight: 700;
	color: var(--bm-text);
}

.billmore-clone-root .bm-pricing-info-lead {
	max-width: 48rem;
	margin: 1rem auto 0;
	text-align: center;
	font-size: 0.9375rem;
	line-height: 1.65;
	color: var(--bm-muted);
}

.billmore-clone-root .bm-pricing-info-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	margin-top: 2rem;
}

@media (min-width: 768px) {
	.billmore-clone-root .bm-pricing-info-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.billmore-clone-root .bm-pricing-info-card {
	padding: 1.5rem;
	border: 1px solid var(--bm-border);
	border-radius: 1rem;
	background: #fff;
	box-shadow: var(--bm-card-shadow);
}

.billmore-clone-root .bm-pricing-info-card h3 {
	margin: 0;
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--bm-text);
}

.billmore-clone-root .bm-pricing-info-card p {
	margin: 0.5rem 0 0;
	font-size: 0.875rem;
	line-height: 1.65;
	color: var(--bm-muted);
}

.billmore-clone-root .bm-pricing-info-card a {
	display: inline-flex;
	margin-top: 1rem;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--bm-blue);
	text-decoration: none;
}

.billmore-clone-root .bm-pricing-info-card a:hover {
	color: var(--bm-blue-hover);
	text-decoration: underline;
}

/* Trial CTA – nutzt .bm-trial-banner (trial-banner.css), volle Breite */
.billmore-clone-root .bm-pricing-trial {
	max-width: none;
	margin: 0;
	padding: 0;
}

.billmore-clone-root .bm-pricing-trial .bm-trial-banner {
	margin-top: 1rem;
}

@media (min-width: 640px) {
	.billmore-clone-root .bm-pricing-trial .bm-trial-banner {
		margin-top: 1.5rem;
	}
}

/* Explizit: keine dunklen Textfarben aus alten Pricing-Styles */
.billmore-clone-root .bm-pricing-trial .bm-trial-banner h2 {
	color: #fff;
}

.billmore-clone-root .bm-pricing-trial .bm-trial-banner__lead,
.billmore-clone-root .bm-pricing-trial .bm-trial-banner__kicker {
	color: rgba(255, 255, 255, 0.92);
}

.billmore-clone-root .bm-pricing-trial .bm-trial-banner__kicker {
	color: rgba(255, 255, 255, 0.82);
}

/* Detail overview */
.billmore-clone-root .bm-pricing-details {
	max-width: 72rem;
	margin: 0 auto;
	padding: 0 1rem 4rem;
	background: var(--bm-bg);
}

.billmore-clone-root .bm-pricing-details > h2 {
	margin: 0;
	padding-top: 3rem;
	text-align: center;
	font-family: Lexend, Inter, system-ui, sans-serif;
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	font-weight: 700;
	color: var(--bm-text);
}

.billmore-clone-root .bm-pricing-details-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	margin-top: 2rem;
}

@media (min-width: 1024px) {
	.billmore-clone-root .bm-pricing-details-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		align-items: start;
	}
}

.billmore-clone-root .bm-pricing-detail-card {
	padding: 1.75rem;
	border: 1px solid var(--bm-border);
	border-radius: 1rem;
	background: #fff;
	box-shadow: var(--bm-card-shadow);
}

.billmore-clone-root .bm-pricing-detail-card h3 {
	margin: 0;
	font-size: 1.125rem;
	font-weight: 700;
}

.billmore-clone-root .bm-pricing-detail-price {
	margin: 1rem 0 0;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.2;
}

.billmore-clone-root .bm-pricing-detail-price small {
	display: block;
	margin-top: 0.25rem;
	font-size: 0.8125rem;
	font-weight: 400;
	color: var(--bm-muted);
}

.billmore-clone-root .bm-pricing-detail-card .bm-card-cta {
	margin-top: 1.25rem;
}

.billmore-clone-root .bm-detail-groups {
	margin-top: 1.5rem;
}

.billmore-clone-root .bm-detail-group {
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid #f1f5f9;
}

.billmore-clone-root .bm-detail-group:first-child {
	margin-top: 0;
	padding-top: 0;
	border-top: 0;
}

.billmore-clone-root .bm-detail-group ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.billmore-clone-root .bm-detail-group li {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	margin-top: 0.5rem;
	font-size: 0.8125rem;
	line-height: 1.45;
	color: #475569;
}

.billmore-clone-root .bm-detail-group li:first-child {
	margin-top: 0;
}

/* Comparison table */
.billmore-clone-root #buchly-plan-compare {
	max-width: 72rem;
	margin: 0 auto;
	padding: 0 1rem 6rem;
	scroll-margin-top: 6rem;
	background: var(--bm-bg);
}

.billmore-clone-root #buchly-plan-compare > h2 {
	margin: 0;
	padding-top: 1rem;
	text-align: center;
	font-family: Lexend, Inter, system-ui, sans-serif;
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	font-weight: 700;
	color: var(--bm-text);
}

.billmore-clone-root .bm-compare-wrap {
	margin-top: 2rem;
	overflow-x: auto;
	border: 1px solid var(--bm-border);
	border-radius: 1rem;
	background: #fff;
	box-shadow: var(--bm-card-shadow);
}

.billmore-clone-root #buchly-plan-compare table {
	width: 100%;
	min-width: 960px;
	border-collapse: separate;
	border-spacing: 0;
	text-align: left;
	font-size: 0.875rem;
}

.billmore-clone-root #buchly-plan-compare thead th {
	position: sticky;
	top: 0;
	z-index: 2;
	padding: 1rem;
	background: #f8fafc;
	vertical-align: bottom;
}

.billmore-clone-root #buchly-plan-compare thead th:first-child {
	width: 40%;
	font-weight: 700;
	color: var(--bm-text);
}

.billmore-clone-root #buchly-plan-compare .bm-compare-plan-title {
	display: block;
	font-weight: 700;
	color: var(--bm-text);
}

.billmore-clone-root #buchly-plan-compare .bm-compare-plan-sub {
	display: block;
	margin-top: 0.25rem;
	font-size: 0.75rem;
	font-weight: 400;
	color: var(--bm-muted);
}

.billmore-clone-root #buchly-plan-compare tbody th {
	padding: 0.75rem 1rem;
	font-weight: 400;
	color: #334155;
	vertical-align: middle;
}

.billmore-clone-root #buchly-plan-compare td {
	padding: 0.75rem 1rem;
	text-align: center;
	vertical-align: middle;
}

.billmore-clone-root #buchly-plan-compare tr.bm-compare-section th {
	padding: 0.75rem 1rem;
	background: #f1f5f9;
	font-size: 0.875rem;
	font-weight: 700;
	color: #1e293b;
}

.billmore-clone-root #buchly-plan-compare tr.bm-compare-feature {
	border-top: 1px solid #f1f5f9;
}

.billmore-clone-root #buchly-plan-compare tr.bm-compare-price-row td {
	padding: 1rem;
	vertical-align: top;
}

.billmore-clone-root #buchly-plan-compare .bm-compare-price {
	display: block;
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--bm-text);
}

.billmore-clone-root #buchly-plan-compare .bm-compare-price-sub {
	display: block;
	margin-top: 0.25rem;
	font-size: 0.75rem;
	color: var(--bm-muted);
}

.billmore-clone-root #buchly-plan-compare .bm-compare-price-cta {
	margin-top: 0.75rem;
}

.billmore-clone-root #buchly-plan-compare .bm-compare-price-cta .bm-pricing-cta,
.billmore-clone-root #buchly-plan-compare .bm-compare-price-cta .buchly-pricing-cta-form button {
	min-height: 2.5rem;
	font-size: 0.8125rem;
	padding-left: 0.75rem;
	padding-right: 0.75rem;
}

.billmore-clone-root .buchly-pricing-check {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 20px;
	min-height: 20px;
}

.billmore-clone-root .buchly-pricing-check svg {
	display: block;
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

.billmore-clone-root .buchly-pricing-dash {
	display: inline-block;
	font-size: 1.125rem;
	line-height: 1;
	color: #cbd5e1;
}

.billmore-clone-root .bm-pricing-logged-note {
	margin-top: 1.5rem;
	text-align: center;
	font-size: 0.875rem;
	color: var(--bm-muted);
}

/* Legacy AC pricing ausblenden */
.billmore-clone-root .acri-pricing-hero,
.billmore-clone-root .acri-plan-grid-new,
.billmore-clone-root .acri-plan-compare,
.billmore-clone-root .acri-plan-toolbar {
	display: none !important;
}

/* Orange BillMore-Klassen auf der Preisseite neutralisieren */
.billmore-clone-root .bm-pricing-page .bg-billmore,
.billmore-clone-root .bm-pricing-page .text-billmore,
.billmore-clone-root .bm-pricing-page .hover\:bg-billmore-light,
.billmore-clone-root .bm-pricing-page .hover\:text-orange-600 {
	background: var(--bm-blue) !important;
	color: #fff !important;
}
