:root {
	--font-inter: "Inter", ui-sans-serif, system-ui, sans-serif;
	--font-lexend: "Lexend", ui-sans-serif, system-ui, sans-serif;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-inter);
}

.font-display {
	font-family: var(--font-lexend);
}

/* WordPress admin bar offset */
.admin-bar header {
	margin-top: 32px;
}

@media screen and (max-width: 782px) {
	.admin-bar header {
		margin-top: 46px;
	}
}

/* Dropdown navigation – Hover statt Klick, ohne dauerhafte Unterstriche */
.buchly-nav-drop {
	position: relative;
}

.buchly-nav-panel {
	position: absolute;
	left: 0;
	top: calc(100% - 2px);
	z-index: 60;
	display: none;
	min-width: 220px;
	padding: 0.5rem;
	border-radius: 0.75rem;
	background: #fff;
	box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
	ring: none;
	border: 1px solid rgba(15, 23, 42, 0.08);
}

.buchly-nav-panel--wide {
	width: 420px;
	padding: 0.75rem 1.25rem 0.5rem;
}

.buchly-nav-drop::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	height: 12px;
}

.buchly-nav-drop:hover .buchly-nav-panel,
.buchly-nav-drop:focus-within .buchly-nav-panel {
	display: block;
}

.buchly-nav-drop:hover .buchly-nav-chevron,
.buchly-nav-drop:focus-within .buchly-nav-chevron {
	transform: rotate(180deg);
}

.buchly-nav-chevron {
	transition: transform 0.15s ease;
}

.buchly-nav-item {
	display: block;
	padding: 0.4rem 0;
	color: #334155;
	text-decoration: none !important;
	background-image: none !important;
	border-bottom: none !important;
}

.buchly-nav-item:hover {
	color: rgb(var(--buchly-orange));
}

.group:hover > .hidden,
.group:focus-within > .hidden {
	display: block;
}

/* Mobile menu */
.billmore-mobile-menu.hidden {
	display: none !important;
}

.billmore-mobile-menu.is-open {
	display: block !important;
}

html.menu-open,
body.menu-open {
	overflow: hidden !important;
}

body.menu-open {
	position: fixed;
	width: 100%;
	left: 0;
	right: 0;
}

.billmore-mobile-menu-toggle {
	position: relative;
	z-index: 10001;
	min-width: 2.75rem;
	min-height: 2.75rem;
	touch-action: manipulation;
	-webkit-tap-highlight-color: transparent;
	cursor: pointer;
}

.billmore-mobile-menu {
	z-index: 10000;
}

.billmore-mobile-menu.is-open {
	display: block !important;
}

.billmore-mobile-menu-backdrop {
	z-index: 10000;
	touch-action: none;
}

.billmore-mobile-panel {
	z-index: 10001;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	max-width: 100%;
	height: 100%;
	max-height: 100dvh;
	overflow-x: hidden;
	overflow-y: auto;
	overscroll-behavior: contain;
	-webkit-overflow-scrolling: touch;
	touch-action: pan-y;
	padding-top: max(0.75rem, env(safe-area-inset-top));
	padding-bottom: max(2.5rem, env(safe-area-inset-bottom));
	transform: translateX(100%);
	transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
	box-shadow: -12px 0 40px rgba(15, 23, 42, 0.14);
}

.billmore-mobile-menu.is-open .billmore-mobile-panel {
	transform: translateX(0);
}

.buchly-mobile-panel-accent {
	height: 3px;
	margin: 0 0 0.75rem;
	border-radius: 999px;
	background: linear-gradient(90deg, #fb923c, #f97316 45%, #ea580c);
}

.buchly-mobile-nav-link {
	display: flex;
	align-items: center;
	min-height: 2.85rem;
	padding: 0.55rem 0.75rem;
	border-radius: 0.65rem;
	color: #1e293b;
	text-decoration: none;
	border-bottom: 1px solid #f1f5f9;
}

.buchly-mobile-nav-link:hover,
.buchly-mobile-nav-link:focus-visible {
	background: #fff7ed;
	color: #c2410c;
}

.buchly-mobile-nav-cta {
	text-decoration: none !important;
}

@media (min-width: 480px) {
	.billmore-mobile-panel {
		width: min(100%, 22rem);
		max-width: 22rem;
	}
}

.billmore-mobile-panel nav {
	padding-bottom: 1rem;
}

.buchly-mobile-nav-group {
	margin: 0.15rem 0;
}

.buchly-mobile-nav-group > summary {
	list-style: none;
	cursor: pointer;
	border-radius: 0.65rem;
	padding: 0.55rem 0.75rem;
	font-size: 1rem;
	font-weight: 600;
	color: #1e293b;
	border-bottom: 1px solid #f1f5f9;
	min-height: 2.85rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.buchly-mobile-nav-group > summary::-webkit-details-marker {
	display: none;
}

.buchly-mobile-nav-group > summary::after {
	content: "▾";
	float: right;
	color: #94a3b8;
	transition: transform 0.15s ease;
}

.buchly-mobile-nav-group[open] > summary::after {
	transform: rotate(180deg);
}

.buchly-mobile-nav-group > summary:hover {
	background: #f8fafc;
}

.buchly-mobile-nav-sub {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	margin: 0.15rem 0 0.5rem;
	padding-left: 0.75rem;
	border-left: 2px solid #e2e8f0;
}

@media (max-width: 1023px) {
	html,
	body {
		overflow-x: hidden;
		overflow-y: auto;
		max-width: 100%;
		-webkit-overflow-scrolling: touch;
	}

	body.billmore-fullpage {
		overflow-x: hidden;
		overflow-y: auto;
		min-height: 100%;
	}

	.billmore-clone-root {
		overflow-x: hidden;
		overflow-y: visible;
		max-width: 100%;
	}

	.billmore-clone-root header {
		position: sticky;
		top: 0;
		z-index: 100;
		background: rgba(255, 255, 255, 0.96);
		backdrop-filter: blur(10px);
		padding-top: 0.75rem !important;
		padding-bottom: 0.75rem !important;
		border-bottom: 1px solid rgba(226, 232, 240, 0.9);
		box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04);
	}

	.billmore-clone-root main {
		overflow-x: hidden;
		overflow-y: visible;
	}

	.billmore-mobile-panel a,
	.billmore-mobile-menu-close {
		min-height: 2.75rem;
		touch-action: manipulation;
	}
}

/* WordPress default link underline reset inside theme */
main a,
footer a,
header a {
	text-decoration: inherit;
}

/* Ensure images scale correctly */
img {
	max-width: 100%;
	height: auto;
}


.billmore-clone-root {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  font-family: var(--font-inter);
  color: #0f172a;
  background: #fff;
}

.billmore-clone-root *,
.billmore-clone-root *::before,
.billmore-clone-root *::after {
  box-sizing: border-box;
}

/* Theme-Header/Footer ausblenden wenn BillMore-Seite */
body.billmore-fullpage .wp-site-blocks > header,
body.billmore-fullpage .wp-site-blocks > footer,
body.billmore-fullpage .wp-block-template-part,
body.billmore-fullpage .site-header,
body.billmore-fullpage .site-footer,
body.billmore-fullpage #header,
body.billmore-fullpage #footer,
body.billmore-fullpage .entry-header,
body.billmore-fullpage .wp-block-post-title {
  display: none !important;
}

body.billmore-fullpage .entry-content,
body.billmore-fullpage .wp-block-post-content,
body.billmore-fullpage main.wp-block-group {
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
}

/* Buchly – Orange statt BillMore-Blau */
.billmore-clone-root {
	--buchly-orange: 249 115 22;
	--buchly-orange-light: 251 146 60;
	--buchly-orange-dark: 194 65 12;
}

.billmore-clone-root .border-billmore,
.billmore-clone-root .border-billmore\/20,
.billmore-clone-root .border-billmore\/30,
.billmore-clone-root .border-billmore\/40 {
	border-color: rgb(var(--buchly-orange) / var(--tw-border-opacity, 1)) !important;
}

.billmore-clone-root .bg-billmore,
.billmore-clone-root .active\:bg-billmore:active {
	background-color: rgb(var(--buchly-orange) / var(--tw-bg-opacity, 1)) !important;
}

.billmore-clone-root .bg-billmore-light,
.billmore-clone-root .hover\:bg-billmore-light:hover {
	background-color: rgb(var(--buchly-orange-light) / var(--tw-bg-opacity, 1)) !important;
}

.billmore-clone-root .bg-billmore\/5 { background-color: rgb(var(--buchly-orange) / 0.05) !important; }
.billmore-clone-root .bg-billmore\/10 { background-color: rgb(var(--buchly-orange) / 0.1) !important; }
.billmore-clone-root .bg-billmore\/15 { background-color: rgb(var(--buchly-orange) / 0.15) !important; }
.billmore-clone-root .bg-billmore\/30 { background-color: rgb(var(--buchly-orange) / 0.3) !important; }

.billmore-clone-root .from-billmore {
	--tw-gradient-from: #f97316 var(--tw-gradient-from-position) !important;
	--tw-gradient-to: rgb(249 115 22 / 0) var(--tw-gradient-to-position) !important;
}

.billmore-clone-root .from-billmore-light {
	--tw-gradient-from: #fb923c var(--tw-gradient-from-position) !important;
	--tw-gradient-to: rgb(251 146 60 / 0) var(--tw-gradient-to-position) !important;
}

.billmore-clone-root .to-billmore {
	--tw-gradient-to: #f97316 var(--tw-gradient-to-position) !important;
}

.billmore-clone-root .to-billmore-darker {
	--tw-gradient-to: #c2410c var(--tw-gradient-to-position) !important;
}

.billmore-clone-root .fill-billmore\/40 {
	fill: rgb(var(--buchly-orange) / 0.4) !important;
}

.billmore-clone-root .text-billmore,
.billmore-clone-root .text-billmore-light {
	color: rgb(var(--buchly-orange) / var(--tw-text-opacity, 1)) !important;
}

.billmore-clone-root .ring-billmore,
.billmore-clone-root .ring-billmore\/20 {
	--tw-ring-color: rgb(var(--buchly-orange) / var(--tw-ring-opacity, 1)) !important;
}

.billmore-clone-root footer.bg-billmore {
	background-color: #f97316 !important;
}

/* Footer: eleganter Dunkel-Türkis-Verlauf (nicht Orange) */
.billmore-clone-root footer.buchly-footer {
	background: linear-gradient(135deg, #0f172a 0%, #134e4a 45%, #115e59 100%) !important;
	color: #fff;
}

.billmore-clone-root footer.buchly-footer a,
.billmore-clone-root footer.buchly-footer p,
.billmore-clone-root footer.buchly-footer span {
	color: inherit;
}

/* Screenshot: Buchly-Logo dezent über altem BillMore-Branding in der Sidebar */
.buchly-screenshot {
	border-radius: inherit;
}

.buchly-screenshot-badge {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 14.8%;
	min-width: 92px;
	max-width: 156px;
	height: clamp(34px, 6.4%, 52px);
	padding: 0.35rem 0.55rem 0.35rem 0.65rem;
	background: #f8fafc;
	border-right: 1px solid #e2e8f0;
	border-bottom: 1px solid #e2e8f0;
	border-radius: 0 0 10px 0;
	box-shadow: none;
	pointer-events: none;
}

.buchly-screenshot-badge img {
	display: block;
	width: 100%;
	height: auto;
	max-height: 24px;
	object-fit: contain;
	object-position: left center;
}

.buchly-screenshot > img {
	display: block;
	width: 100%;
}

/* Abgerundete Feature-Screenshots: Badge an Ecken anpassen */
.buchly-screenshot:has(> img.rounded-xl) .buchly-screenshot-badge,
.buchly-screenshot:has(> img[class*="rounded"]) .buchly-screenshot-badge {
	border-top-left-radius: 0.75rem;
}

.billmore-clone-root .text-blue-100,
.billmore-clone-root .text-blue-200 {
	color: rgb(255 237 213) !important;
}

.billmore-clone-root .hover\:bg-blue-50:hover {
	background-color: rgb(255 247 237) !important;
}

/* BillMore-typische große, kräftige Typografie */
.billmore-clone-root .font-display {
	font-family: var(--font-lexend), "Lexend", ui-sans-serif, system-ui, sans-serif !important;
}

.billmore-clone-root .buchly-hero {
	padding-top: clamp(2rem, 4vw, 6rem) !important;
}

.billmore-clone-root .buchly-hero h1 {
	max-width: 56rem !important;
	font-weight: 700 !important;
	letter-spacing: -0.035em !important;
	line-height: 1.02 !important;
	font-size: clamp(2.5rem, 6vw + 0.25rem, 5rem) !important;
}

.billmore-clone-root .buchly-hero h1 .text-billmore,
.billmore-clone-root .buchly-hero h1 span.text-billmore {
	font-weight: 700 !important;
}

.billmore-clone-root .buchly-hero-scribble {
	pointer-events: none;
	transform-origin: left center;
	will-change: clip-path, transform, opacity;
	animation:
		buchly-hero-scribble-draw 1.15s cubic-bezier(0.55, 0, 0.25, 1) 0.25s both,
		buchly-hero-scribble-float 5s ease-in-out 1.45s infinite;
}

@keyframes buchly-hero-scribble-draw {
	from {
		clip-path: inset(0 100% 0 0);
		opacity: 0;
		transform: scale(0.98);
	}

	to {
		clip-path: inset(0 0 0 0);
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes buchly-hero-scribble-float {
	0%,
	100% {
		transform: translateY(0) rotate(0deg);
	}

	50% {
		transform: translateY(-0.08em) rotate(-0.6deg);
	}
}

@media (prefers-reduced-motion: reduce) {
	.billmore-mobile-panel {
		transition: none;
		transform: translateX(0);
	}

	.billmore-clone-root .buchly-hero-scribble {
		animation: none;
		clip-path: none;
		opacity: 1;
		transform: none;
		will-change: auto;
	}
}

.billmore-clone-root .buchly-hero-sub {
	font-size: clamp(1.125rem, 1.4vw + 0.65rem, 1.375rem) !important;
	line-height: 1.65 !important;
	font-weight: 500 !important;
	color: #334155 !important;
	max-width: 44rem !important;
}

.buchly-footer-logo {
	width: 168px;
	max-width: 70%;
	height: auto;
	overflow: visible;
}

.buchly-logo-bar {
	transform-box: fill-box;
	transform-origin: center bottom;
	animation: buchly-logo-bar-in 0.55s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.buchly-logo-bar--1 { animation-delay: 0.05s; }
.buchly-logo-bar--2 { animation-delay: 0.16s; }
.buchly-logo-bar--3 { animation-delay: 0.27s; }
.buchly-logo-bar--4 { animation-delay: 0.38s; }

.buchly-logo-word {
	animation: buchly-logo-word-in 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) 0.48s both;
}

@keyframes buchly-logo-blink {
	0%,
	100% {
		opacity: 1;
	}
	10% {
		opacity: 0;
	}
	20% {
		opacity: 1;
	}
	30% {
		opacity: 0;
	}
	40% {
		opacity: 1;
	}
	50% {
		opacity: 0;
	}
	60% {
		opacity: 1;
	}
}

.buchly-logo-animated,
.buchly-logo-animated img,
.buchly-logo-animated svg {
	animation: buchly-logo-blink 2.4s ease-in-out 1 forwards;
}

@keyframes buchly-logo-bar-in {
	from {
		opacity: 0;
		transform: translateY(8px) scaleY(0.28);
	}
	to {
		opacity: 1;
		transform: translateY(0) scaleY(1);
	}
}

@keyframes buchly-logo-word-in {
	from {
		opacity: 0;
		transform: translateX(-10px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.buchly-logo-bar,
	.buchly-logo-word,
	.buchly-logo-animated,
	.buchly-logo-animated img,
	.buchly-logo-animated svg {
		animation: none !important;
	}
}

.billmore-clone-root header nav .hidden.lg\:flex a,
.billmore-clone-root header nav .hidden.lg\:flex button {
	font-size: 1.0625rem !important;
	font-weight: 600 !important;
}

.billmore-clone-root header .bg-billmore {
	font-weight: 700 !important;
	font-size: 1rem !important;
	padding: 0.65rem 1.35rem !important;
}

.billmore-clone-root h2.font-bold,
.billmore-clone-root h2.text-3xl.font-bold,
.billmore-clone-root h2.sm\:text-4xl.font-bold,
.billmore-clone-root h2.md\:text-5xl.font-bold {
	font-size: clamp(1.875rem, 3.2vw + 0.75rem, 3.25rem) !important;
	font-weight: 700 !important;
	letter-spacing: -0.03em !important;
	line-height: 1.08 !important;
}

.billmore-clone-root h3.font-display {
	font-weight: 700 !important;
}

.billmore-clone-root .text-lg.font-semibold,
.billmore-clone-root .text-lg.leading-7.font-semibold {
	font-weight: 700 !important;
}

.billmore-clone-root .buchly-feature-hero h1,
.billmore-clone-root .buchly-pricing-hero h1,
.billmore-clone-root .bm-pricing-hero h1,
.billmore-clone-root .buchly-faq-hero h1 {
	font-weight: 700 !important;
	letter-spacing: -0.035em !important;
	line-height: 1.05 !important;
	font-size: clamp(2.25rem, 5vw + 0.5rem, 4.5rem) !important;
}

.billmore-clone-root h2.font-display,
.billmore-clone-root h3.font-display {
	font-weight: 600 !important;
}

.billmore-clone-root .text-3xl.font-bold,
.billmore-clone-root .sm\:text-4xl.font-bold,
.billmore-clone-root .md\:text-5xl.font-bold {
	font-weight: 700 !important;
	letter-spacing: -0.02em !important;
}

/* Footer-Welle: schwimmende Fische nur im blauen Wasserstreifen */
.billmore-clone-root .footer-wave {
	padding-bottom: 10rem !important;
	background: transparent !important;
	overflow: hidden;
}

.footer-wave {
	position: relative;
}

.footer-wave > svg {
	z-index: 1;
}

.footer-wave > .mx-auto,
.footer-wave > div:not(.footer-wave-fish) {
	position: relative;
	z-index: 3;
}

.footer-wave-fish {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 7.25rem;
	z-index: 2;
	pointer-events: none;
	overflow: hidden;
	-webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.35) 18%, #000 34%, #000 100%);
	mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.35) 18%, #000 34%, #000 100%);
}

/* main2.css stylt .footer-wave svg wie die Welle – Fische davon ausnehmen */
.footer-wave .footer-wave-fish svg.footer-fish {
	position: absolute !important;
	left: 0 !important;
	bottom: auto !important;
	width: auto !important;
	height: 1.65rem !important;
	max-width: none !important;
	transform-origin: 50% 50%;
	filter: drop-shadow(0 1px 3px rgba(8, 47, 73, 0.28)) !important;
	animation: footer-fish-swim 22s ease-in-out infinite !important;
}

.footer-wave .footer-wave-fish svg.footer-fish--left {
	animation-name: footer-fish-swim-left !important;
}

.footer-wave .footer-wave-fish svg.footer-fish--1 {
	bottom: 52% !important;
	height: 2rem !important;
	animation-duration: 26s !important;
	animation-delay: -4s !important;
}

.footer-wave .footer-wave-fish svg.footer-fish--2 {
	bottom: 28% !important;
	height: 1.55rem !important;
	opacity: 0.88;
	animation-duration: 21s !important;
	animation-delay: -11s !important;
}

.footer-wave .footer-wave-fish svg.footer-fish--3 {
	bottom: 10% !important;
	height: 1.35rem !important;
	animation-duration: 17s !important;
	animation-delay: -2s !important;
}

.footer-wave .footer-wave-fish svg.footer-fish--4 {
	bottom: 38% !important;
	height: 2.2rem !important;
	opacity: 0.92;
	animation-duration: 30s !important;
	animation-delay: -18s !important;
}

.footer-wave .footer-wave-fish svg.footer-fish--5 {
	bottom: 4% !important;
	height: 1.15rem !important;
	opacity: 0.82;
	animation-duration: 14s !important;
	animation-delay: -7s !important;
}

.footer-fish {
	position: absolute;
	left: 0;
	height: 1.65rem;
	width: auto;
	opacity: 0.92;
	filter: drop-shadow(0 1px 3px rgba(8, 47, 73, 0.28));
	transform-origin: 50% 50%;
	will-change: transform;
}

.footer-fish .fish-swimmer {
	transform-box: fill-box;
	transform-origin: 58% 50%;
	animation: footer-fish-body-sway 1.55s ease-in-out infinite;
}

.footer-fish .fish-tail {
	transform-box: fill-box;
	transform-origin: 0% 50%;
	animation: footer-fish-tail 0.38s ease-in-out infinite alternate;
}

.footer-fish .fish-pectoral {
	transform-box: fill-box;
	transform-origin: 100% 50%;
	animation: footer-fish-pectoral 0.62s ease-in-out infinite alternate;
}

.footer-fish .fish-dorsal {
	transform-box: fill-box;
	transform-origin: 50% 100%;
	animation: footer-fish-dorsal 0.95s ease-in-out infinite alternate;
}

.footer-fish .fish-ventral {
	transform-box: fill-box;
	transform-origin: 50% 0%;
	animation: footer-fish-ventral 1.05s ease-in-out infinite alternate;
}

.footer-fish--1 {
	bottom: 52%;
	height: 2rem;
	animation: footer-fish-swim 26s ease-in-out infinite;
	animation-delay: -4s;
}

.footer-fish--2 {
	bottom: 28%;
	height: 1.55rem;
	opacity: 0.88;
	animation: footer-fish-swim-left 21s ease-in-out infinite;
	animation-delay: -11s;
}

.footer-fish--3 {
	bottom: 10%;
	height: 1.35rem;
	animation: footer-fish-swim 17s ease-in-out infinite;
	animation-delay: -2s;
}

.footer-fish--4 {
	bottom: 38%;
	height: 2.2rem;
	opacity: 0.92;
	animation: footer-fish-swim-left 30s ease-in-out infinite;
	animation-delay: -18s;
}

.footer-fish--5 {
	bottom: 4%;
	height: 1.15rem;
	opacity: 0.82;
	animation: footer-fish-swim 14s ease-in-out infinite;
	animation-delay: -7s;
}

/* Schwimmen entlang der Welle: horizontal + vertikal + leichte Neigung */
@keyframes footer-fish-swim {
	0% {
		transform: translate3d(-12vw, 6px, 0) rotate(7deg);
	}
	12.5% {
		transform: translate3d(8vw, -10px, 0) rotate(-3deg);
	}
	25% {
		transform: translate3d(22vw, -4px, 0) rotate(5deg);
	}
	37.5% {
		transform: translate3d(36vw, 9px, 0) rotate(-6deg);
	}
	50% {
		transform: translate3d(52vw, 2px, 0) rotate(4deg);
	}
	62.5% {
		transform: translate3d(66vw, -11px, 0) rotate(-5deg);
	}
	75% {
		transform: translate3d(80vw, 7px, 0) rotate(6deg);
	}
	87.5% {
		transform: translate3d(94vw, -3px, 0) rotate(-2deg);
	}
	100% {
		transform: translate3d(112vw, 5px, 0) rotate(3deg);
	}
}

@keyframes footer-fish-swim-left {
	0% {
		transform: translate3d(112vw, 4px, 0) scaleX(-1) rotate(6deg);
	}
	12.5% {
		transform: translate3d(94vw, -9px, 0) scaleX(-1) rotate(-4deg);
	}
	25% {
		transform: translate3d(80vw, 5px, 0) scaleX(-1) rotate(5deg);
	}
	37.5% {
		transform: translate3d(66vw, -10px, 0) scaleX(-1) rotate(-6deg);
	}
	50% {
		transform: translate3d(52vw, 3px, 0) scaleX(-1) rotate(4deg);
	}
	62.5% {
		transform: translate3d(36vw, 8px, 0) scaleX(-1) rotate(-5deg);
	}
	75% {
		transform: translate3d(22vw, -6px, 0) scaleX(-1) rotate(3deg);
	}
	87.5% {
		transform: translate3d(8vw, 4px, 0) scaleX(-1) rotate(-2deg);
	}
	100% {
		transform: translate3d(-12vw, -2px, 0) scaleX(-1) rotate(5deg);
	}
}

@keyframes footer-fish-body-sway {
	0%,
	100% {
		transform: rotate(-5deg) translateY(0);
	}
	50% {
		transform: rotate(5deg) translateY(-1px);
	}
}

@keyframes footer-fish-tail {
	from {
		transform: rotate(-18deg);
	}
	to {
		transform: rotate(18deg);
	}
}

@keyframes footer-fish-pectoral {
	from {
		transform: rotate(12deg);
	}
	to {
		transform: rotate(-14deg);
	}
}

@keyframes footer-fish-dorsal {
	from {
		transform: rotate(-6deg) scaleY(1);
	}
	to {
		transform: rotate(5deg) scaleY(1.08);
	}
}

@keyframes footer-fish-ventral {
	from {
		transform: rotate(5deg) scaleY(1);
	}
	to {
		transform: rotate(-6deg) scaleY(1.06);
	}
}

@media (max-width: 640px) {
	.billmore-clone-root .buchly-hero {
		padding-top: 0.5rem !important;
		padding-bottom: max(2rem, env(safe-area-inset-bottom)) !important;
		text-align: left;
		background:
			radial-gradient(120% 80% at 50% -10%, rgba(249, 115, 22, 0.08), transparent 55%),
			linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
		border-bottom: 1px solid #e2e8f0;
	}

	.billmore-clone-root .buchly-hero h1 {
		font-size: clamp(1.72rem, 7.2vw, 2.15rem) !important;
		line-height: 1.16 !important;
		letter-spacing: -0.03em !important;
		max-width: none !important;
		text-align: left;
	}

	.billmore-clone-root .buchly-hero h1 .whitespace-nowrap {
		white-space: normal !important;
		display: inline;
	}

	.billmore-clone-root .buchly-hero-scribble {
		display: none !important;
	}

	.billmore-clone-root .buchly-hero h1 .text-billmore > span.relative {
		text-decoration: underline;
		text-decoration-color: rgba(249, 115, 22, 0.45);
		text-decoration-thickness: 0.14em;
		text-underline-offset: 0.12em;
	}

	.billmore-clone-root .buchly-hero-sub {
		font-size: 0.98rem !important;
		line-height: 1.58 !important;
		margin-top: 0.85rem !important;
		text-align: left;
		color: #475569 !important;
	}

	.billmore-clone-root .buchly-hero .mt-10.flex {
		flex-direction: column;
		align-items: stretch;
		gap: 0.65rem;
		margin-top: 1.35rem !important;
	}

	.billmore-clone-root .buchly-hero .mt-10.flex > a {
		display: flex;
		justify-content: center;
		width: 100%;
	}

	.billmore-clone-root .buchly-hero .mt-10.flex > a img {
		width: auto;
		height: 3.25rem !important;
	}

	.billmore-clone-root .buchly-hero .mt-10.flex > a.bg-neutral-50 {
		width: 100%;
		min-height: 3.25rem !important;
		max-height: none;
		padding: 0.65rem 0.9rem;
		border-radius: 0.9rem;
		background: #fff !important;
		box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
	}

	.billmore-clone-root .buchly-hero .mt-10.flex > a.bg-neutral-50 p.text-xl {
		font-size: 1.05rem !important;
		line-height: 1.2;
	}

	.billmore-clone-root .buchly-hero .mt-10.flex + .flex.items-center {
		justify-content: flex-start;
		flex-wrap: wrap;
		gap: 0.35rem 0.5rem;
		margin-top: 1.25rem !important;
	}

	.billmore-clone-root .buchly-hero .mt-10.flex + .flex.items-center .text-base,
	.billmore-clone-root .buchly-hero .mt-10.flex + .flex.items-center .text-lg {
		font-size: 0.92rem !important;
	}

	.billmore-clone-root .buchly-hero .mt-8.sm\:hidden {
		margin-top: 1rem !important;
		padding-bottom: env(safe-area-inset-bottom);
	}

	.billmore-clone-root .buchly-hero .mt-8.sm\:hidden a {
		min-height: 3rem;
		font-size: 0.95rem !important;
	}

	.billmore-clone-root main > section,
	.billmore-clone-root main > div:not(.buchly-hero) {
		padding-left: 1rem;
		padding-right: 1rem;
	}

	.billmore-clone-root .mx-auto.max-w-7xl.px-6,
	.billmore-clone-root .mx-auto.max-w-7xl.px-4 {
		padding-left: 1rem !important;
		padding-right: 1rem !important;
	}

	.billmore-clone-root .pb-24,
	.billmore-clone-root .sm\:pb-32,
	.billmore-clone-root .lg\:pb-32 {
		padding-bottom: 3.5rem !important;
	}

	.billmore-clone-root .pt-12 {
		padding-top: 1.5rem !important;
	}

	.billmore-clone-root .mt-16,
	.billmore-clone-root .md\:mt-20 {
		margin-top: 2.5rem !important;
	}

	.billmore-clone-root .text-lg.leading-8,
	.billmore-clone-root .text-xl.leading-8,
	.billmore-clone-root p.text-lg {
		font-size: 1rem !important;
		line-height: 1.6 !important;
	}

	.billmore-clone-root .bg-slate-100.rounded-none,
	.billmore-clone-root .bg-slate-100.rounded-none.lg\:rounded-3xl {
		padding: 1.15rem !important;
		border-radius: 1rem !important;
		margin-left: 0.25rem;
		margin-right: 0.25rem;
	}

	.billmore-clone-root .rounded-4xl {
		padding-left: 0 !important;
		padding-right: 0 !important;
	}

	.billmore-clone-root .w-\[28rem\] {
		width: 100% !important;
		max-width: 18rem;
		margin-inline: auto;
	}

	.billmore-clone-root .buchly-feature-hero h1,
	.billmore-clone-root .buchly-pricing-hero h1,
	.billmore-clone-root .buchly-faq-hero h1 {
		font-size: clamp(1.85rem, 8vw, 2.4rem) !important;
		line-height: 1.15 !important;
	}

	.billmore-clone-root h2.font-bold,
	.billmore-clone-root h2.text-3xl.font-bold,
	.billmore-clone-root h2.sm\:text-4xl.font-bold,
	.billmore-clone-root h2.md\:text-5xl.font-bold {
		font-size: clamp(1.45rem, 6.5vw, 1.9rem) !important;
		line-height: 1.2 !important;
	}

	.billmore-clone-root .buchly-site-logo {
		width: 148px;
		max-width: 46vw;
	}

	.billmore-clone-root .buchly-site-header nav {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 0.75rem;
	}

	.billmore-clone-root .buchly-site-header nav > .flex.shrink-0 {
		margin-left: auto;
		flex-shrink: 0;
	}

	.billmore-clone-root img,
	.billmore-clone-root svg,
	.billmore-clone-root table {
		max-width: 100%;
	}

	.billmore-clone-root .overflow-hidden {
		overflow-x: hidden;
	}

	.billmore-clone-root .rounded-none.lg\:rounded-3xl,
	.billmore-clone-root .bg-slate-100.rounded-none {
		margin-left: 0;
		margin-right: 0;
		border-radius: 0;
	}

	.footer-wave {
		padding-bottom: 7rem !important;
	}

	.footer-wave svg {
		bottom: -4rem;
		transform: translate(-50%) scaleX(-1.15) rotate(-8deg);
	}

	.footer-wave-fish {
		height: 5.25rem;
		-webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.45) 22%, #000 40%, #000 100%);
		mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.45) 22%, #000 40%, #000 100%);
	}

	.footer-fish {
		height: 1.25rem;
	}

	.footer-fish--1 {
		height: 1.5rem;
	}

	.footer-fish--4 {
		height: 1.55rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.buchly-footer-promo__orb,
	.buchly-footer-promo__marquee-track,
	.buchly-footer-promo__title-shine,
	.buchly-footer-promo__pulse,
	.buchly-footer-promo__btn--primary,
	.buchly-footer-promo__device,
	.buchly-footer-promo__float,
	.buchly-footer-promo__invoice-line {
		animation: none !important;
	}
}

@media (prefers-reduced-motion: reduce) {
	.footer-fish {
		animation: none !important;
		opacity: 0.45;
	}

	.footer-fish .fish-tail,
	.footer-fish .fish-pectoral,
	.footer-fish .fish-dorsal,
	.footer-fish .fish-ventral,
	.footer-fish .fish-swimmer {
		animation: none !important;
	}

	.footer-fish--1 {
		left: 12%;
		bottom: 48%;
	}

	.footer-fish--2 {
		left: 68%;
		bottom: 24%;
		transform: scaleX(-1);
	}

	.footer-fish--3 {
		left: 38%;
		bottom: 8%;
	}

	.footer-fish--4 {
		left: 78%;
		bottom: 34%;
		transform: scaleX(-1);
	}

	.footer-fish--5 {
		left: 22%;
		bottom: 2%;
	}
}

.billmore-brand-logo,
.buchly-brand-logo,
.acri-logo-img {
	display: block;
	height: auto;
	max-width: 100%;
	object-fit: contain;
}

.billmore-brand-logo--white,
.buchly-brand-logo--white {
	filter: brightness(0) invert(1);
}

.buchly-footer-logo.buchly-brand-logo,
.buchly-footer-logo.billmore-brand-logo {
	max-width: 168px;
}

/* Footer-Werbeblock (ersetzt weissen Leerraum unter der Welle) */
.buchly-footer-promo {
	position: relative;
	overflow: hidden;
	background: #050816;
	color: #fff;
	padding: 2.5rem 1rem 2.75rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.buchly-footer-promo__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.buchly-footer-promo__orb {
	position: absolute;
	border-radius: 999px;
	filter: blur(48px);
	opacity: 0.55;
	animation: buchly-promo-orb 12s ease-in-out infinite;
}

.buchly-footer-promo__orb--1 {
	width: 280px;
	height: 280px;
	left: -40px;
	top: -80px;
	background: #f97316;
}

.buchly-footer-promo__orb--2 {
	width: 320px;
	height: 320px;
	right: 8%;
	top: -120px;
	background: #14b8a6;
	animation-delay: -4s;
}

.buchly-footer-promo__orb--3 {
	width: 220px;
	height: 220px;
	left: 42%;
	bottom: -120px;
	background: #6366f1;
	animation-delay: -7s;
}

.buchly-footer-promo__grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
	background-size: 32px 32px;
	mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}

.buchly-footer-promo__marquee {
	position: relative;
	z-index: 1;
	overflow: hidden;
	margin-bottom: 1.5rem;
	border-block: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(255, 255, 255, 0.03);
}

.buchly-footer-promo__marquee-track {
	display: flex;
	gap: 2.5rem;
	width: max-content;
	padding: 0.65rem 0;
	animation: buchly-promo-marquee 28s linear infinite;
}

.buchly-footer-promo__marquee-track span {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.72);
	white-space: nowrap;
}

.buchly-footer-promo__inner {
	position: relative;
	z-index: 2;
	max-width: 72rem;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	align-items: center;
}

.buchly-footer-promo__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	margin: 0 0 0.85rem;
	padding: 0.35rem 0.8rem;
	border-radius: 999px;
	background: rgba(249, 115, 22, 0.14);
	border: 1px solid rgba(249, 115, 22, 0.35);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #ffedd5;
}

.buchly-footer-promo__pulse {
	width: 0.55rem;
	height: 0.55rem;
	border-radius: 999px;
	background: #fb923c;
	box-shadow: 0 0 0 0 rgba(251, 146, 60, 0.8);
	animation: buchly-promo-pulse 1.8s ease-out infinite;
}

.buchly-footer-promo__title {
	margin: 0;
	display: grid;
	gap: 0.35rem;
}

.buchly-footer-promo__title-shine {
	font-size: clamp(2rem, 5vw, 3.4rem);
	line-height: 1.02;
	font-weight: 800;
	letter-spacing: -0.04em;
	background: linear-gradient(120deg, #fff 0%, #fed7aa 35%, #fff 50%, #bae6fd 70%, #fff 100%);
	background-size: 220% auto;
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	animation: buchly-promo-shine 4.5s linear infinite;
}

.buchly-footer-promo__title-sub {
	font-size: clamp(1.05rem, 2.2vw, 1.35rem);
	font-weight: 600;
	color: rgba(255, 255, 255, 0.82);
}

.buchly-footer-promo__lead {
	margin: 1rem 0 0;
	max-width: 38rem;
	font-size: 1rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.72);
}

.buchly-footer-promo__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.35rem;
}

.buchly-footer-promo__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 3rem;
	padding: 0.75rem 1.25rem;
	border-radius: 999px;
	font-size: 0.95rem;
	font-weight: 700;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.buchly-footer-promo__btn--primary {
	color: #111827;
	background: linear-gradient(135deg, #fdba74 0%, #f97316 55%, #ea580c 100%);
	box-shadow: 0 12px 30px rgba(249, 115, 22, 0.35);
	animation: buchly-promo-cta 2.4s ease-in-out infinite;
}

.buchly-footer-promo__btn--primary:hover {
	transform: translateY(-2px) scale(1.02);
}

.buchly-footer-promo__btn--ghost {
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.22);
	background: rgba(255, 255, 255, 0.06);
}

.buchly-footer-promo__btn--ghost:hover {
	background: rgba(255, 255, 255, 0.12);
}

.buchly-footer-promo__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	margin-top: 1rem;
}

.buchly-footer-promo__chip {
	display: inline-flex;
	align-items: center;
	padding: 0.45rem 0.85rem;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: rgba(15, 23, 42, 0.35);
	color: rgba(255, 255, 255, 0.86);
	font-size: 0.82rem;
	font-weight: 600;
	text-decoration: none;
}

.buchly-footer-promo__chip:hover {
	border-color: rgba(255, 255, 255, 0.28);
	background: rgba(15, 23, 42, 0.55);
}

.buchly-footer-promo__visual {
	display: flex;
	justify-content: center;
}

.buchly-footer-promo__device {
	position: relative;
	width: min(100%, 320px);
	padding: 1rem;
	border-radius: 1.5rem;
	background: linear-gradient(160deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04));
	border: 1px solid rgba(255, 255, 255, 0.16);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
	backdrop-filter: blur(10px);
	animation: buchly-promo-float 5.5s ease-in-out infinite;
}

.buchly-footer-promo__device-top {
	display: flex;
	gap: 0.35rem;
	margin-bottom: 0.85rem;
}

.buchly-footer-promo__device-top span {
	width: 0.55rem;
	height: 0.55rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.35);
}

.buchly-footer-promo__invoice {
	padding: 1rem;
	border-radius: 1rem;
	background: rgba(255, 255, 255, 0.94);
	color: #0f172a;
}

.buchly-footer-promo__invoice-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	margin-bottom: 0.85rem;
	font-size: 0.82rem;
}

.buchly-footer-promo__invoice-head em {
	font-style: normal;
	padding: 0.15rem 0.5rem;
	border-radius: 999px;
	background: #dcfce7;
	color: #166534;
	font-weight: 700;
}

.buchly-footer-promo__invoice-line {
	height: 0.55rem;
	border-radius: 999px;
	background: #e2e8f0;
	margin-bottom: 0.55rem;
}

.buchly-footer-promo__invoice-line--1 { width: 88%; animation: buchly-promo-line 2.8s ease-in-out infinite; }
.buchly-footer-promo__invoice-line--2 { width: 72%; animation: buchly-promo-line 2.8s ease-in-out infinite 0.2s; }
.buchly-footer-promo__invoice-line--3 { width: 56%; animation: buchly-promo-line 2.8s ease-in-out infinite 0.4s; }

.buchly-footer-promo__invoice-total {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 0.85rem;
	padding-top: 0.75rem;
	border-top: 1px solid #e2e8f0;
	font-size: 0.88rem;
}

.buchly-footer-promo__float {
	position: absolute;
	padding: 0.45rem 0.65rem;
	border-radius: 0.75rem;
	font-size: 0.72rem;
	font-weight: 800;
	color: #fff;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.buchly-footer-promo__float--qr {
	top: 12%;
	right: -8%;
	background: #0284c7;
	animation: buchly-promo-badge 4.2s ease-in-out infinite;
}

.buchly-footer-promo__float--mail {
	left: -10%;
	bottom: 28%;
	background: #ea580c;
	animation: buchly-promo-badge 4.8s ease-in-out infinite 0.6s;
}

.buchly-footer-promo__float--pdf {
	right: 4%;
	bottom: -6%;
	background: #059669;
	animation: buchly-promo-badge 5.1s ease-in-out infinite 1.1s;
}

@keyframes buchly-promo-orb {
	0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
	50% { transform: translate3d(18px, 12px, 0) scale(1.08); }
}

@keyframes buchly-promo-marquee {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

@keyframes buchly-promo-shine {
	from { background-position: 0% center; }
	to { background-position: 220% center; }
}

@keyframes buchly-promo-pulse {
	0% { box-shadow: 0 0 0 0 rgba(251, 146, 60, 0.75); }
	70% { box-shadow: 0 0 0 12px rgba(251, 146, 60, 0); }
	100% { box-shadow: 0 0 0 0 rgba(251, 146, 60, 0); }
}

@keyframes buchly-promo-cta {
	0%, 100% { box-shadow: 0 12px 30px rgba(249, 115, 22, 0.35); }
	50% { box-shadow: 0 16px 38px rgba(249, 115, 22, 0.55); }
}

@keyframes buchly-promo-float {
	0%, 100% { transform: translateY(0) rotate(-1deg); }
	50% { transform: translateY(-10px) rotate(1deg); }
}

@keyframes buchly-promo-line {
	0%, 100% { opacity: 0.55; }
	50% { opacity: 1; }
}

@keyframes buchly-promo-badge {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-8px); }
}

@media (min-width: 900px) {
	.buchly-footer-promo__inner {
		grid-template-columns: 1.05fr 0.95fr;
		gap: 2.5rem;
	}

	.buchly-footer-promo__visual {
		justify-content: flex-end;
	}
}

@media (max-width: 639px) {
	.buchly-footer-promo {
		padding-top: 2rem;
	}

	.buchly-footer-promo__device {
		width: 100%;
	}
}

/* BillMore-blauer Trust-Streifen ganz unten */
.billmore-clone-root .buchly-footer-trust,
.billmore-fullpage .buchly-footer-trust {
	position: relative;
	overflow: hidden;
	background: #0880e5;
	color: rgba(255, 255, 255, 0.88);
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.buchly-footer-trust__shine {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		115deg,
		transparent 0%,
		rgba(255, 255, 255, 0.08) 45%,
		transparent 70%
	);
	animation: buchly-trust-shine 8s ease-in-out infinite;
	pointer-events: none;
}

.buchly-footer-trust__inner {
	position: relative;
	z-index: 1;
	max-width: 72rem;
	margin: 0 auto;
	padding: 0.95rem 1rem 1rem;
	text-align: center;
}

.buchly-footer-trust__main {
	margin: 0;
	font-size: 0.9375rem;
	font-weight: 500;
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.92);
	letter-spacing: 0.01em;
}

.buchly-footer-trust__heart {
	display: inline-block;
	margin: 0 0.1rem;
	color: #fecaca;
	animation: buchly-trust-heart 1.6s ease-in-out infinite;
	transform-origin: center;
}

.buchly-footer-trust__badges {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.5rem 0.75rem;
	margin: 0.65rem 0 0;
	padding: 0;
	list-style: none;
}

.buchly-footer-trust__badges li {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.25rem 0.65rem;
	border-radius: 9999px;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.16);
	font-size: 0.75rem;
	font-weight: 600;
	line-height: 1.2;
	color: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(4px);
}

.buchly-footer-trust__badge-icon {
	font-size: 0.85em;
	line-height: 1;
}

.buchly-footer-trust__meta {
	margin: 0.55rem 0 0;
	font-size: 0.6875rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.55);
}

@keyframes buchly-trust-heart {
	0%, 100% { transform: scale(1); }
	35% { transform: scale(1.18); }
	70% { transform: scale(1); }
}

@keyframes buchly-trust-shine {
	0%, 100% { transform: translateX(-120%); opacity: 0; }
	20% { opacity: 1; }
	50% { transform: translateX(120%); opacity: 0.8; }
	80% { opacity: 0; }
}

@media (min-width: 768px) {
	.buchly-footer-trust__inner {
		padding: 1rem 1.5rem 1.05rem;
	}

	.buchly-footer-trust__main {
		font-size: 1rem;
	}
}
