/* =========================================================
   CompleteOne Theme – main.css
   Author: CompleteOne
   Version: 1.0.0
   Aufbau:
   1.  Font-Faces (lokal aus /assets/fonts/)
   2.  Variablen
   3.  Reset & Base
   4.  Typografie
   5.  Container & Helpers
   6.  Buttons & Links
   7.  Header (Floating)
   8.  Mobile Navigation
   9.  Hero
   10. Mockup-Collage & Floating Cards
   11. Trust-Leiste
   12. Problem-Section
   13. Services-Grid
   14. Packages
   15. Process
   16. Projects
   17. Why
   18. Contact
   19. FAQ
   20. Final CTA
   21. Footer
   22. Pagination, 404, Single, Page, Archive
   23. Animations
   24. Reduced Motion / Accessibility
   25. Responsive Breakpoints
   ========================================================= */

/* 1. Font-Faces ------------------------------------------- */
@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/Montserrat-Regular.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/Montserrat-Bold.woff2') format('woff2');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

/* 2. Variablen -------------------------------------------- */
:root {
	--color-cyan: #00B8C9;
	--color-cyan-dark: #009BAB;
	--color-cyan-soft: #E2F4F7;
	--color-navy: #001834;
	--color-navy-soft: #0A2348;
	--color-white: #FFFFFF;
	--color-black: #000000;

	--color-bg: #F7FBFC;
	--color-bg-soft: #EEF9FB;
	--color-text: #001834;
	--color-muted: rgba(0, 24, 52, 0.68);
	--color-border: rgba(0, 24, 52, 0.10);

	--shadow-soft: 0 20px 60px rgba(0, 24, 52, 0.10);
	--shadow-card: 0 16px 40px rgba(0, 24, 52, 0.12);
	--shadow-mock: 0 30px 80px rgba(0, 24, 52, 0.22);
	--shadow-float: 0 18px 50px rgba(0, 24, 52, 0.16);

	--radius-xl: 28px;
	--radius-lg: 20px;
	--radius-md: 14px;
	--radius-sm: 10px;
	--radius-pill: 999px;

	--container: 1280px;
	--container-wide: 1440px;
	--container-narrow: 880px;

	--header-h: 88px;
	--ease: cubic-bezier(.22, .61, .36, 1);
}

/* 3. Reset & Base ----------------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}
html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--header-h) + 24px);
}
body {
	margin: 0;
	background: var(--color-bg);
	color: var(--color-text);
	font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
	font-weight: 400;
	font-size: 17px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
	-webkit-tap-highlight-color: rgba(0, 184, 201, 0.18);
}
p, a, span, li {
	overflow-wrap: break-word;
}
body.is-nav-open {
	overflow: hidden;
}
img, svg, video {
	max-width: 100%;
	height: auto;
	display: block;
}
a {
	color: inherit;
	text-decoration: none;
	transition: color .2s var(--ease), opacity .2s var(--ease);
}
button {
	font-family: inherit;
}
ul, ol {
	margin: 0;
	padding: 0;
	list-style: none;
}
hr {
	border: 0;
	height: 1px;
	background: var(--color-border);
	margin: 2rem 0;
}
::selection {
	background: var(--color-cyan);
	color: #fff;
}
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	word-wrap: normal !important;
}
.skip-link {
	background: var(--color-navy);
	color: var(--color-white);
	left: 12px;
	top: 12px;
	padding: 12px 18px;
	border-radius: var(--radius-md);
	position: absolute;
	transform: translateY(-200%);
	transition: transform .2s var(--ease);
	z-index: 9999;
}
.skip-link:focus {
	transform: translateY(0);
	outline: 2px solid var(--color-cyan);
}

/* 4. Typografie ------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
	font-family: 'Montserrat', Arial, sans-serif;
	font-weight: 700;
	color: var(--color-navy);
	margin: 0 0 .5em;
	letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.4rem, 5.6vw, 4.6rem); line-height: 1.05; }
h2 { font-size: clamp(2rem, 3.6vw, 3.2rem); line-height: 1.1; }
h3 { font-size: clamp(1.25rem, 1.6vw, 1.5rem); line-height: 1.25; }
h4 { font-size: 1.1rem; line-height: 1.3; }
p {
	margin: 0 0 1em;
}
strong { font-weight: 700; }

.co-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--color-cyan);
	font-family: 'Montserrat', Arial, sans-serif;
	font-weight: 700;
	font-size: .78rem;
	letter-spacing: .12em;
	text-transform: none;
	margin: 0 0 1.2rem;
}
.co-eyebrow__line {
	width: 28px;
	height: 2px;
	background: var(--color-cyan);
	border-radius: 2px;
	display: inline-block;
}
.co-eyebrow--dark { color: var(--color-cyan); }
.co-eyebrow--white { color: var(--color-white); }
.co-eyebrow__line--white { background: var(--color-white); }
.co-eyebrow--center {
	justify-content: center;
}

.co-section__head {
	max-width: 760px;
	margin-bottom: 3rem;
}
.co-section__head--center {
	margin-inline: auto;
	text-align: center;
}
.co-section__title {
	font-size: clamp(2rem, 3.4vw, 3rem);
	margin-bottom: .6rem;
}
.co-section__lead {
	font-size: 1.08rem;
	color: var(--color-muted);
	margin: 0;
}

/* 5. Container & Helpers ---------------------------------- */
.co-container {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 28px;
}
.co-container--wide {
	max-width: var(--container-wide);
}
.co-container--narrow {
	max-width: var(--container-narrow);
}
.co-section {
	padding: clamp(56px, 8vw, 120px) 0;
	position: relative;
}
.co-main {
	display: block;
	overflow: hidden;
}

/* 6. Buttons & Links -------------------------------------- */
.co-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 26px;
	border-radius: var(--radius-md);
	font-family: 'Montserrat', Arial, sans-serif;
	font-weight: 700;
	font-size: .96rem;
	line-height: 1.2;
	letter-spacing: .005em;
	cursor: pointer;
	border: 1.5px solid transparent;
	transition: transform .2s var(--ease), box-shadow .25s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
	white-space: normal;
	text-align: center;
	max-width: 100%;
}
.co-btn .co-icon svg {
	width: 18px;
	height: 18px;
}
.co-btn:focus-visible {
	outline: 3px solid rgba(0, 184, 201, 0.45);
	outline-offset: 3px;
}
.co-btn--primary {
	background: var(--color-cyan);
	color: var(--color-white);
	box-shadow: 0 10px 24px rgba(0, 184, 201, 0.32);
}
.co-btn--primary:hover {
	background: var(--color-cyan-dark);
	transform: translateY(-2px);
	box-shadow: 0 16px 30px rgba(0, 184, 201, 0.40);
}
.co-btn--ghost {
	background: transparent;
	color: var(--color-navy);
	border-color: var(--color-navy);
}
.co-btn--ghost:hover {
	background: var(--color-white);
	border-color: var(--color-cyan);
	color: var(--color-navy);
	transform: translateY(-2px);
	box-shadow: 0 12px 26px rgba(0, 24, 52, 0.12);
}
.co-btn--white {
	background: var(--color-white);
	color: var(--color-navy);
}
.co-btn--white:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 30px rgba(0, 0, 0, 0.20);
}
.co-btn--outline-white {
	background: transparent;
	color: var(--color-white);
	border-color: rgba(255, 255, 255, 0.55);
}
.co-btn--outline-white:hover {
	background: rgba(255, 255, 255, 0.10);
	border-color: var(--color-white);
}
.co-btn--lg {
	padding: 16px 30px;
	font-size: 1rem;
}
.co-btn--block {
	width: 100%;
}
.co-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--color-navy);
	font-weight: 700;
	font-size: .95rem;
	border-bottom: 2px solid transparent;
	padding-bottom: 2px;
	transition: color .2s var(--ease), border-color .2s var(--ease), gap .2s var(--ease);
}
.co-link:hover {
	color: var(--color-cyan);
	border-color: var(--color-cyan);
	gap: 12px;
}
.co-link--arrow .co-icon svg { width: 18px; height: 18px; }

/* 7. Header (Floating) ------------------------------------ */
.co-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 80;
	padding: 22px 28px 0;
	transition: padding .25s var(--ease);
}
.co-header__inner {
	max-width: var(--container-wide);
	margin: 0 auto;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(0, 24, 52, 0.08);
	border-radius: 22px;
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	box-shadow: 0 16px 40px rgba(0, 24, 52, 0.06);
	padding: 14px 20px;
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 24px;
	align-items: center;
	transition: box-shadow .25s var(--ease), background .25s var(--ease), padding .25s var(--ease);
}
.co-header.is-scrolled {
	padding-top: 14px;
}
.co-header.is-scrolled .co-header__inner {
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 18px 50px rgba(0, 24, 52, 0.12);
	padding: 10px 18px;
}
.co-header__logo {
	display: flex;
	align-items: center;
	min-height: 56px;
}
.co-header__logo .custom-logo,
.co-header__logo .co-logo img {
	max-height: 56px;
	width: auto;
	height: auto;
	display: block;
}
.co-header__logo .co-logo {
	display: block;
	max-height: 56px;
}
.co-header__logo .co-logo svg {
	height: 56px;
	width: auto;
	display: block;
}
.co-header__nav {
	justify-self: center;
}
.co-menu {
	display: flex;
	align-items: center;
	gap: 32px;
	margin: 0;
	padding: 0;
}
.co-menu a,
.co-menu li > a {
	font-family: 'Montserrat', Arial, sans-serif;
	font-weight: 700;
	font-size: .98rem;
	color: var(--color-navy);
	padding: 8px 0;
	position: relative;
}
.co-menu a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 100%;
	height: 2px;
	background: var(--color-cyan);
	border-radius: 2px;
	transition: right .25s var(--ease);
}
.co-menu a:hover,
.co-menu a:focus-visible {
	color: var(--color-cyan);
}
.co-menu a:hover::after,
.co-menu a:focus-visible::after {
	right: 0;
}
.co-header__actions {
	display: flex;
	align-items: center;
	gap: 18px;
}
.co-header__phone {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--color-navy);
	font-weight: 700;
	font-size: .95rem;
}
.co-header__phone:hover { color: var(--color-cyan); }
.co-header__phone .co-icon svg { width: 18px; height: 18px; color: var(--color-cyan); }
.co-header__cta {
	min-height: 46px;
}

/* Burger */
.co-burger {
	display: none;
	width: 44px;
	height: 44px;
	border: 1px solid var(--color-border);
	background: var(--color-white);
	border-radius: 12px;
	position: relative;
	cursor: pointer;
	padding: 0;
	transition: border-color .2s var(--ease);
}
.co-burger__bar {
	position: absolute;
	left: 11px;
	right: 11px;
	height: 2px;
	background: var(--color-navy);
	border-radius: 2px;
	transition: transform .25s var(--ease), opacity .2s var(--ease), top .25s var(--ease);
}
.co-burger__bar:nth-child(1) { top: 14px; }
.co-burger__bar:nth-child(2) { top: 21px; }
.co-burger__bar:nth-child(3) { top: 28px; }
.co-burger[aria-expanded="true"] .co-burger__bar:nth-child(1) {
	top: 21px;
	transform: rotate(45deg);
}
.co-burger[aria-expanded="true"] .co-burger__bar:nth-child(2) {
	opacity: 0;
}
.co-burger[aria-expanded="true"] .co-burger__bar:nth-child(3) {
	top: 21px;
	transform: rotate(-45deg);
}

/* 8. Mobile Navigation ------------------------------------ */
.co-mobile {
	position: fixed;
	inset: 0;
	background: rgba(247, 251, 252, 0.98);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	padding: calc(var(--header-h) + 32px) 28px 80px;
	overflow-y: auto;
	transform: translateY(-12px);
	opacity: 0;
	-webkit-overflow-scrolling: touch;
	pointer-events: none;
	transition: opacity .3s var(--ease), transform .3s var(--ease);
	z-index: 70;
}
.co-mobile:not([hidden]) {
	transform: translateY(0);
	opacity: 1;
	pointer-events: auto;
}
.co-mobile__menu {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 0 0 30px;
}
.co-mobile__menu a {
	display: block;
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--color-navy);
	padding: 16px 0;
	border-bottom: 1px solid var(--color-border);
}
.co-mobile__menu a:hover {
	color: var(--color-cyan);
}
.co-mobile__actions {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.co-mobile__phone {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--color-navy);
	font-weight: 700;
	font-size: 1.05rem;
	padding: 12px 0;
	justify-content: center;
}
.co-mobile__phone .co-icon svg { color: var(--color-cyan); }

/* 9. Hero ------------------------------------------------- */
.co-hero {
	position: relative;
	padding: calc(var(--header-h) + 80px) 0 100px;
	background:
		radial-gradient(1100px 600px at 90% 10%, rgba(0, 184, 201, 0.18), transparent 60%),
		radial-gradient(800px 500px at 10% 70%, rgba(0, 184, 201, 0.10), transparent 65%),
		linear-gradient(180deg, #F7FBFC 0%, #EEF9FB 100%);
	overflow: hidden;
	min-height: 780px;
}
.co-hero__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
}
.co-hero__shape {
	position: absolute;
	font-family: 'Montserrat', Arial, sans-serif;
	font-weight: 700;
	font-size: clamp(240px, 50vw, 700px);
	line-height: 0.8;
	color: rgba(0, 184, 201, 0.05);
	user-select: none;
	pointer-events: none;
}
.co-hero__shape--c {
	top: 6%;
	right: 38%;
	color: rgba(0, 24, 52, 0.045);
}
.co-hero__shape--c::after { content: 'C'; }
.co-hero__shape--1 {
	top: 4%;
	right: -2%;
	color: rgba(0, 184, 201, 0.18);
}
.co-hero__shape--1::after { content: '1'; }
.co-hero__dot {
	position: absolute;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--color-cyan);
	opacity: .5;
}
.co-hero__dot--a { left: 8%; top: 22%; }
.co-hero__dot--b { left: 45%; top: 80%; width: 4px; height: 4px; opacity: .35; }
.co-hero__ring {
	position: absolute;
	width: 760px;
	height: 760px;
	max-width: 80vw;
	max-height: 80vw;
	right: -100px;
	top: 50%;
	transform: translateY(-50%);
}
.co-hero__container {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
	gap: 60px;
	align-items: center;
	z-index: 1;
	max-width: var(--container-wide);
}
.co-hero__copy {
	max-width: 640px;
}
.co-hero__headline {
	font-size: clamp(2.6rem, 5.4vw, 4.6rem);
	line-height: 1.05;
	margin: 0 0 24px;
}
.co-hero__headline-navy {
	display: block;
	color: var(--color-navy);
}
.co-hero__headline-cyan {
	display: block;
	color: var(--color-cyan);
}
.co-hero__headline-suffix {
	display: block;
	margin-top: 10px;
	font-size: 0.42em;   /* deutlich kleiner als die Headline */
	font-weight: 600;
	letter-spacing: 0.01em;
	color: var(--color-muted);
	line-height: 1.3;
}
.co-hero__sub {
	font-size: 1.1rem;
	color: var(--color-muted);
	max-width: 580px;
	margin: 0 0 36px;
	line-height: 1.65;
}
.co-hero__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-bottom: 0;
}
.co-hero__trust {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 8px;
	align-items: start;
}
.co-hero__trust li {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: .88rem;
	font-weight: 700;
	color: var(--color-navy);
	line-height: 1.35;
	padding-right: 12px;
	border-right: 1px solid var(--color-border);
	min-height: 56px;
}
.co-hero__trust li > span:last-child {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.co-hero__trust li:last-child {
	border-right: 0;
}
.co-hero__trust-icon {
	display: inline-flex;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--color-white);
	box-shadow: 0 8px 20px rgba(0, 24, 52, 0.08);
	align-items: center;
	justify-content: center;
	color: var(--color-cyan);
	flex-shrink: 0;
}
.co-hero__trust-icon svg { width: 18px; height: 18px; }

/* 10. Mockup-Collage & Floating Cards --------------------- */
.co-hero__visual {
	position: relative;
	height: 640px;
	min-width: 0;
}

.co-mock {
	position: absolute;
	background: var(--color-white);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-mock);
	overflow: hidden;
	border: 1px solid rgba(0, 24, 52, 0.08);
}
.co-mock__bar {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 10px 16px;
	background: rgba(247, 251, 252, 0.95);
	border-bottom: 1px solid var(--color-border);
}
.co-mock__bar span {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: rgba(0, 24, 52, 0.15);
}
.co-mock__bar span:nth-child(1) { background: #FF6058; }
.co-mock__bar span:nth-child(2) { background: #FEBC2E; }
.co-mock__bar span:nth-child(3) { background: #29C543; }
.co-mock__bar em {
	margin-left: auto;
	font-style: normal;
	font-size: .65rem;
	color: var(--color-muted);
	font-weight: 700;
}
.co-mock__screen {
	min-height: 240px;
	position: relative;
}
.co-mock__nav {
	display: flex;
	align-items: center;
	padding: 14px 18px;
	color: var(--color-white);
	font-size: .55rem;
	font-weight: 700;
	letter-spacing: .1em;
	gap: 12px;
}
.co-mock__nav--small { font-size: .5rem; }
.co-mock__nav--light { color: var(--color-navy); }
.co-mock__brand {
	font-size: .75rem;
	font-weight: 700;
}
.co-mock__links { flex: 1; opacity: .8; font-size: .55rem; }
.co-mock__btn {
	background: var(--color-cyan);
	color: var(--color-white);
	padding: 6px 10px;
	border-radius: 6px;
	font-size: .55rem;
}
.co-mock__body {
	padding: 24px 28px 34px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 200px;
}
.co-mock__eyebrow {
	color: var(--color-cyan);
	font-size: .55rem;
	font-weight: 700;
	letter-spacing: .15em;
	margin: 0 0 8px;
}
.co-mock__body h3 {
	color: inherit;
	font-size: 1.5rem;
	line-height: 1;
	margin: 0 0 6px;
	letter-spacing: -0.02em;
}
.co-mock__sub {
	color: var(--color-cyan);
	font-size: .85rem;
	letter-spacing: .12em;
	font-weight: 700;
	margin: 0 0 16px;
}
.co-mock__sub-dark {
	color: var(--color-muted);
	font-size: .55rem;
	letter-spacing: .12em;
	font-weight: 700;
	margin: 6px 0 14px;
}
.co-mock__cta {
	display: inline-block;
	background: var(--color-white);
	color: var(--color-navy);
	font-size: .55rem;
	padding: 7px 12px;
	border-radius: 6px;
	letter-spacing: .12em;
	font-weight: 700;
	align-self: flex-start;
}
.co-mock__cta--dark {
	background: var(--color-navy);
	color: var(--color-white);
}

/* STABO Mockup (dark, boxing) */
.co-mock--stabo {
	top: 0;
	right: 0;
	width: 460px;
	transform: rotate(2deg);
	z-index: 3;
}
.co-mock__screen--dark {
	background:
		radial-gradient(circle at 70% 30%, rgba(0, 184, 201, 0.20) 0%, transparent 60%),
		linear-gradient(135deg, #0A1828 0%, #03101F 100%);
	color: var(--color-white);
}
.co-mock__screen--dark .co-mock__nav { background: rgba(255, 255, 255, 0.04); border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.co-mock__body--stabo h3 { color: var(--color-white); font-size: 2rem; }

/* Vereinsheim Mockup */
.co-mock--vereinsheim {
	top: 220px;
	left: -10px;
	width: 380px;
	transform: rotate(-3deg);
	z-index: 2;
}
.co-mock__screen--warm {
	background:
		radial-gradient(circle at 30% 30%, rgba(140, 110, 70, 0.30) 0%, transparent 60%),
		linear-gradient(135deg, #14202E 0%, #0A1620 100%);
	color: var(--color-white);
}
.co-mock__screen--warm .co-mock__nav { background: rgba(255, 255, 255, 0.04); border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.co-mock__body--vereinsheim h3 { color: var(--color-white); font-size: 1.6rem; }
.co-mock__body--vereinsheim .co-mock__sub { color: #F7C77A; }

/* Nico Lahr Mockup (light) */
.co-mock--nicolahr {
	bottom: 0;
	right: 30px;
	width: 420px;
	transform: rotate(1deg);
	z-index: 4;
}
.co-mock__screen--light {
	background: linear-gradient(135deg, #FFFFFF 0%, #F2F8FA 100%);
	color: var(--color-navy);
}
.co-mock__screen--light .co-mock__nav { background: rgba(0, 24, 52, 0.02); border-bottom: 1px solid var(--color-border); }
.co-mock__body--nicolahr {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 16px;
}
.co-mock__body--nicolahr h3 { color: var(--color-navy); font-size: 1.3rem; }
.co-mock__mic {
	width: 60px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Floating Cards */
.co-float {
	position: absolute;
	background: var(--color-white);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-float);
	padding: 18px 22px;
	z-index: 5;
	border: 1px solid var(--color-border);
}
.co-float--kpi {
	top: 30px;
	left: 30px;
	width: 200px;
	transform: rotate(-2deg);
}
.co-float__label {
	font-size: .72rem;
	font-weight: 700;
	color: var(--color-muted);
	margin: 0 0 6px;
}
.co-float__value {
	font-size: 1.7rem;
	font-weight: 700;
	color: var(--color-cyan);
	letter-spacing: -0.02em;
	margin: 0 0 4px;
	line-height: 1;
}
.co-float__hint {
	font-size: .65rem;
	color: var(--color-muted);
	margin: 0 0 8px;
}
.co-float__chart {
	width: 100%;
	height: 36px;
}

.co-float--sat {
	right: -30px;
	top: 50%;
	width: 170px;
	transform: translateY(-50%) rotate(3deg);
	text-align: center;
	padding: 22px 18px;
}
.co-float__ring {
	position: relative;
	width: 70px;
	height: 70px;
	margin: 0 auto 8px;
}
.co-float__ring svg { width: 100%; height: 100%; }
.co-float__ring-text {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1.05rem;
	color: var(--color-navy);
}
.co-float--sat .co-float__label { margin: 0 0 4px; color: var(--color-navy); }
.co-float__stars {
	display: flex;
	gap: 2px;
	justify-content: center;
	color: var(--color-cyan);
}
.co-float__stars svg { width: 14px; height: 14px; }

.co-float--social {
	bottom: -30px;
	left: 20px;
	display: flex;
	align-items: center;
	gap: 14px;
	transform: rotate(-1.5deg);
	padding: 14px 18px;
	z-index: 6;
}
.co-float__google {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--color-white);
	box-shadow: 0 8px 16px rgba(0, 24, 52, 0.10);
	flex-shrink: 0;
}
.co-float__google svg {
	width: 26px;
	height: 26px;
	display: block;
}
.co-float__social-text {
	font-size: .82rem;
	color: var(--color-navy);
	margin: 0;
	line-height: 1.35;
}
.co-float__social-text strong {
	display: block;
	font-size: 1rem;
	color: var(--color-navy);
	letter-spacing: .02em;
}
.co-float__social-text strong span {
	color: #FBBC04;
	letter-spacing: .04em;
	margin-left: 2px;
}

/* 11. Trust-Leiste --------------------------------------- */
.co-trust {
	padding: 40px 0 56px;
}
.co-trust__intro {
	text-align: center;
	color: var(--color-muted);
	font-weight: 700;
	font-size: .92rem;
	margin: 0 0 24px;
}
.co-trust__list {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 16px;
	align-items: stretch;
}
.co-trust__item {
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	padding: 18px 20px;
	transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
	text-align: center;
}
.co-trust__item:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-soft);
	border-color: rgba(0, 184, 201, 0.40);
}
.co-trust__name {
	display: block;
	font-weight: 700;
	color: var(--color-navy);
	font-size: .95rem;
	margin-bottom: 4px;
}
.co-trust__meta {
	display: block;
	font-size: .72rem;
	color: var(--color-muted);
	font-weight: 700;
	letter-spacing: .03em;
}

/* 12. Problem Section ------------------------------------ */
.co-problem__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
	gap: 60px;
	align-items: center;
}
.co-problem__cards {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.co-card {
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	padding: 26px 28px;
	transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
	position: relative;
	overflow: hidden;
}
.co-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-card);
	border-color: rgba(0, 184, 201, 0.35);
}
.co-card__title {
	font-size: 1.1rem;
	margin: 0 0 8px;
	color: var(--color-navy);
}
.co-card__text {
	color: var(--color-muted);
	font-size: .98rem;
	margin: 0;
	line-height: 1.6;
}
.co-card__icon {
	display: inline-flex;
	width: 48px;
	height: 48px;
	border-radius: 14px;
	background: var(--color-cyan-soft);
	color: var(--color-cyan);
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}
.co-card__icon svg { width: 22px; height: 22px; }
.co-card--question {
	display: flex;
	flex-direction: column;
}

/* 13. Services-Grid -------------------------------------- */
.co-services__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
}
.co-card--service {
	padding: 36px 36px 32px;
	display: flex;
	flex-direction: column;
}
.co-card__head {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 14px;
}
.co-card__icon--xl {
	width: 56px;
	height: 56px;
	border-radius: 16px;
	margin: 0;
	background: linear-gradient(135deg, rgba(0, 184, 201, 0.15) 0%, rgba(0, 184, 201, 0.05) 100%);
}
.co-card__icon--xl svg { width: 26px; height: 26px; }
.co-card--service .co-card__title { font-size: 1.4rem; margin: 0; }
.co-card__list {
	margin: 16px 0 24px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.co-card__list li {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	font-size: .95rem;
	color: var(--color-navy);
	line-height: 1.5;
}
.co-icon--check {
	color: var(--color-cyan);
	flex-shrink: 0;
	margin-top: 4px;
}
.co-icon--check svg { width: 16px; height: 16px; }
.co-card--service .co-link {
	margin-top: auto;
}

/* 14. Packages ------------------------------------------- */
.co-packages__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	align-items: stretch;
}
.co-card--package {
	padding: 30px 26px;
	display: flex;
	flex-direction: column;
	position: relative;
}
.co-card--highlight {
	background: linear-gradient(180deg, rgba(0, 184, 201, 0.10) 0%, var(--color-white) 70%);
	border-color: rgba(0, 184, 201, 0.45);
	box-shadow: 0 28px 60px rgba(0, 184, 201, 0.18);
	transform: translateY(-6px);
}
.co-card--highlight:hover {
	transform: translateY(-10px);
}
.co-card__badge {
	position: absolute;
	top: 18px;
	right: 18px;
	background: var(--color-cyan);
	color: var(--color-white);
	font-size: .7rem;
	font-weight: 700;
	letter-spacing: .08em;
	padding: 5px 10px;
	border-radius: var(--radius-pill);
	text-transform: none;
}
.co-card--package .co-card__title { font-size: 1.2rem; margin: 0 0 4px; }
.co-card__price {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--color-cyan);
	margin: 0 0 12px;
	letter-spacing: -0.01em;
}
.co-card--package .co-card__text {
	font-size: .92rem;
	margin: 0 0 16px;
}
.co-card--package .co-card__list {
	margin: 0 0 22px;
	font-size: .9rem;
}
.co-card--package .co-card__list li {
	font-size: .9rem;
}
.co-card--package .co-btn {
	margin-top: auto;
}
.co-packages__note {
	text-align: center;
	color: var(--color-muted);
	font-size: .9rem;
	margin: 30px 0 0;
}

/* 15. Process -------------------------------------------- */
.co-process__steps {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	position: relative;
	counter-reset: step;
}
.co-process__steps::before {
	content: '';
	position: absolute;
	top: 60px;
	left: 5%;
	right: 5%;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--color-cyan), transparent);
	opacity: .4;
	z-index: 0;
}
.co-card--step {
	padding: 32px 26px;
	text-align: left;
	position: relative;
	z-index: 1;
}
.co-card__num {
	display: inline-flex;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--color-white);
	color: var(--color-cyan);
	font-size: 1.15rem;
	font-weight: 700;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
	border: 2px solid var(--color-cyan);
	box-shadow: 0 12px 30px rgba(0, 184, 201, 0.20);
}
.co-card--step .co-card__title { font-size: 1.15rem; }

/* 16. Projects ------------------------------------------- */
.co-projects__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}
.co-card--project {
	padding: 0;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}
.co-project__media {
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: linear-gradient(135deg, #0A1828, #03101F);
	display: flex;
	align-items: center;
	justify-content: center;
}
.co-project__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s var(--ease);
}
.co-card--project:hover .co-project__media img {
	transform: scale(1.04);
}
.co-project__media--vereinsheim {
	background: linear-gradient(135deg, #14202E, #0A1620);
}
.co-project__media--nicolahr {
	background: linear-gradient(135deg, #F0F6F8, #E2EEF1);
}
.co-project__body {
	padding: 26px 28px 30px;
	display: flex;
	flex-direction: column;
	flex: 1;
}
.co-project__meta {
	font-size: .72rem;
	font-weight: 700;
	color: var(--color-cyan);
	letter-spacing: .1em;
	margin: 0 0 6px;
}
.co-project__facts {
	margin: 14px 0 22px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.co-project__facts > div {
	border-left: 2px solid var(--color-cyan-soft);
	padding-left: 14px;
}
.co-project__facts dt {
	font-size: .72rem;
	font-weight: 700;
	color: var(--color-cyan);
	letter-spacing: .08em;
	margin: 0 0 2px;
}
.co-project__facts dd {
	font-size: .93rem;
	color: var(--color-muted);
	line-height: 1.55;
	margin: 0;
}
.co-card--project .co-link {
	margin-top: auto;
}

/* 17. Why ------------------------------------------------ */
.co-why__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}
.co-card--benefit {
	padding: 30px 28px;
}

/* 18. Contact -------------------------------------------- */
.co-contact__card {
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-card);
	padding: 50px;
	display: grid;
	grid-template-columns: 220px minmax(0, 1fr);
	gap: 50px;
	align-items: center;
	position: relative;
	overflow: hidden;
}
.co-contact__card::before {
	content: '';
	position: absolute;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(0, 184, 201, 0.18) 0%, transparent 70%);
	right: -100px;
	top: -100px;
	pointer-events: none;
}
.co-contact__portrait {
	width: 220px;
	height: 260px;
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: linear-gradient(135deg, var(--color-cyan-soft), var(--color-bg-soft));
	position: relative;
	z-index: 1;
	box-shadow: var(--shadow-soft);
}
.co-contact__portrait img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}
.co-contact__body {
	position: relative;
	z-index: 1;
}
.co-contact__name {
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--color-navy);
	margin: 0 0 4px;
	letter-spacing: -0.01em;
}
.co-contact__role {
	font-size: .92rem;
	color: var(--color-cyan);
	font-weight: 700;
	margin: 0 0 18px;
	letter-spacing: .03em;
}
.co-contact__role span { margin: 0 8px; opacity: .5; }
.co-contact__text {
	color: var(--color-muted);
	font-size: 1rem;
	margin: 0 0 22px;
	line-height: 1.65;
}
.co-contact__list {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 22px;
	margin-bottom: 24px;
}
.co-contact__list a,
.co-contact__list > li > span {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--color-navy);
	font-weight: 700;
	font-size: .95rem;
}
.co-contact__list a:hover { color: var(--color-cyan); }
.co-contact__list .co-icon svg { color: var(--color-cyan); width: 18px; height: 18px; }
.co-contact__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

/* 18b. Testimonials -------------------------------------- */
.co-testimonials__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}
.co-testimonial {
	padding: 28px 28px 30px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.co-testimonial__head {
	display: flex;
	align-items: center;
	gap: 14px;
}
.co-testimonial__avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--color-white);
	font-weight: 700;
	font-size: 1.1rem;
	letter-spacing: .02em;
	flex-shrink: 0;
}
.co-testimonial__meta {
	flex: 1;
	min-width: 0;
}
.co-testimonial__name {
	font-weight: 700;
	color: var(--color-navy);
	font-size: 1rem;
	margin: 0 0 2px;
	line-height: 1.2;
}
.co-testimonial__role {
	font-size: .82rem;
	color: var(--color-muted);
	margin: 0;
	line-height: 1.3;
}
.co-testimonial__source {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--color-bg-soft);
	flex-shrink: 0;
}
.co-testimonial__stars {
	display: flex;
	gap: 2px;
	color: #FBBC04;
}
.co-testimonial__stars svg { width: 18px; height: 18px; }
.co-testimonial__text {
	margin: 0;
	color: var(--color-text);
	font-size: .98rem;
	line-height: 1.65;
	flex: 1;
}
.co-testimonial__text p {
	margin: 0;
	position: relative;
	padding-left: 18px;
}
.co-testimonial__text p::before {
	content: '“';
	position: absolute;
	left: -2px;
	top: -10px;
	font-size: 2.4rem;
	font-weight: 700;
	color: var(--color-cyan);
	line-height: 1;
	font-family: Georgia, serif;
}
.co-testimonials__more {
	text-align: center;
	margin: 30px 0 0;
}

/* 18c. Contact Form 7 ------------------------------------ */
.co-contact-form {
	padding-block: clamp(36px, 6vw, 64px);
}
.co-contact-form .co-section__head {
	margin-bottom: 24px;
}
.co-contact-form__box {
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-card);
	padding: clamp(18px, 2.5vw, 28px);
}
.co-admin-notice {
	background: linear-gradient(135deg, rgba(255, 188, 64, 0.12), rgba(255, 188, 64, 0.04));
	border: 1.5px dashed rgba(255, 153, 0, 0.55);
	border-radius: var(--radius-md);
	padding: 18px 22px;
	color: var(--color-navy);
	font-size: .96rem;
	line-height: 1.55;
}
.co-admin-notice p { margin: 0; }
.co-admin-notice strong { color: #B45309; margin-right: 4px; }
.co-admin-notice a { color: var(--color-cyan); border-bottom: 1px solid currentColor; }
.co-contact-form .wpcf7 form {
	display: grid;
	gap: 10px;
}
.co-contact-form .wpcf7 form p,
.co-contact-form .wpcf7-form p,
.co-contact-form form p {
	margin: 0;
	padding: 0;
}
.co-contact-form .wpcf7 form br,
.co-contact-form .wpcf7-form br {
	display: none;
}
.co-contact-form .wpcf7-form-control-wrap {
	display: block;
	margin-top: 2px;
}
.co-contact-form label {
	display: block;
	font-weight: 700;
	color: var(--color-navy);
	font-size: .82rem;
	letter-spacing: .01em;
	line-height: 1.2;
	margin: 0;
}
.co-contact-form .wpcf7 .co-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin: 0;
}
.co-contact-form input[type="text"],
.co-contact-form input[type="email"],
.co-contact-form input[type="tel"],
.co-contact-form input[type="url"],
.co-contact-form select,
.co-contact-form textarea {
	width: 100%;
	font-family: inherit;
	font-size: .92rem;
	color: var(--color-navy);
	background: var(--color-bg);
	border: 1.5px solid var(--color-border);
	border-radius: var(--radius-md);
	padding: 8px 12px;
	line-height: 1.3;
	transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}
.co-contact-form select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8' fill='none'><path d='M1 1l6 6 6-6' stroke='%23001834' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>");
	background-repeat: no-repeat;
	background-position: right 16px center;
	background-size: 12px 7px;
	padding-right: 40px;
	cursor: pointer;
}
.co-contact-form select:focus {
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8' fill='none'><path d='M1 1l6 6 6-6' stroke='%2300B8C9' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}
.co-contact-form select option {
	font-family: inherit;
	color: var(--color-navy);
	padding: 8px;
}
.co-contact-form textarea {
	min-height: 90px;
	resize: vertical;
}
.co-contact-form input:focus,
.co-contact-form select:focus,
.co-contact-form textarea:focus {
	border-color: var(--color-cyan);
	background: var(--color-white);
	outline: none;
	box-shadow: 0 0 0 3px rgba(0, 184, 201, 0.18);
}
.co-contact-form input[type="submit"],
.co-contact-form .wpcf7-submit {
	background: var(--color-cyan);
	color: var(--color-white);
	border: 0;
	padding: 10px 22px;
	border-radius: var(--radius-md);
	font-family: inherit;
	font-weight: 700;
	font-size: .92rem;
	cursor: pointer;
	box-shadow: 0 6px 16px rgba(0, 184, 201, 0.28);
	transition: transform .2s var(--ease), box-shadow .25s var(--ease), background .2s var(--ease);
	justify-self: start;
	min-height: 40px;
	margin-top: 2px;
}
.co-contact-form input[type="submit"]:hover,
.co-contact-form .wpcf7-submit:hover {
	background: var(--color-cyan-dark);
	transform: translateY(-2px);
	box-shadow: 0 14px 26px rgba(0, 184, 201, 0.38);
}
.co-contact-form .wpcf7-acceptance .wpcf7-list-item {
	margin: 0;
	display: flex;
	align-items: flex-start;
	gap: 10px;
}
.co-contact-form .wpcf7-acceptance label {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	font-weight: 400;
	font-size: .82rem;
	color: var(--color-muted);
	line-height: 1.4;
	cursor: pointer;
}
.co-contact-form .wpcf7-acceptance input[type="checkbox"] {
	margin-top: 2px;
	width: 16px;
	height: 16px;
	accent-color: var(--color-cyan);
	flex-shrink: 0;
}
.co-contact-form .wpcf7-not-valid-tip {
	color: #C62828;
	font-size: .8rem;
	margin-top: 4px;
	display: block;
}
.co-contact-form .wpcf7-response-output {
	margin: 14px 0 0;
	padding: 12px 16px;
	border-radius: var(--radius-md);
	border: 1.5px solid var(--color-border);
	font-size: .9rem;
	background: var(--color-bg-soft);
}
.co-contact-form .wpcf7 form.sent .wpcf7-response-output {
	border-color: rgba(41, 197, 67, 0.4);
	background: rgba(41, 197, 67, 0.06);
	color: #1B7A2F;
}
.co-contact-form .wpcf7 form.invalid .wpcf7-response-output,
.co-contact-form .wpcf7 form.failed .wpcf7-response-output {
	border-color: rgba(198, 40, 40, 0.4);
	background: rgba(198, 40, 40, 0.06);
	color: #B22222;
}

@media (max-width: 640px) {
	.co-contact-form .wpcf7 .co-form-grid {
		grid-template-columns: 1fr;
	}
	.co-contact-form input[type="submit"],
	.co-contact-form .wpcf7-submit {
		width: 100%;
	}
}

/* 19. FAQ ------------------------------------------------ */
.co-faq__container {
	max-width: 880px;
}
.co-faq__list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.co-faq__item {
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.co-faq__item:has(.co-faq__trigger[aria-expanded="true"]) {
	border-color: rgba(0, 184, 201, 0.45);
	box-shadow: var(--shadow-soft);
}
.co-faq__trigger {
	width: 100%;
	background: transparent;
	border: 0;
	padding: 24px 28px;
	display: flex;
	align-items: center;
	gap: 16px;
	cursor: pointer;
	text-align: left;
	color: var(--color-navy);
	transition: background .2s var(--ease);
}
.co-faq__trigger:hover { background: rgba(0, 184, 201, 0.04); }
.co-faq__trigger:focus-visible {
	outline: 3px solid rgba(0, 184, 201, 0.4);
	outline-offset: -3px;
}
.co-faq__q {
	flex: 1;
	font-weight: 700;
	font-size: 1.05rem;
	line-height: 1.4;
}
.co-faq__icon {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--color-cyan-soft);
	color: var(--color-cyan);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform .3s var(--ease), background .25s var(--ease), color .25s var(--ease);
	flex-shrink: 0;
}
.co-faq__icon svg { width: 16px; height: 16px; }
.co-faq__trigger[aria-expanded="true"] .co-faq__icon {
	transform: rotate(45deg);
	background: var(--color-cyan);
	color: var(--color-white);
}
.co-faq__panel {
	padding: 0 28px 28px;
	color: var(--color-muted);
	line-height: 1.7;
	font-size: 1rem;
}
.co-faq__panel p { margin: 0; }
.co-faq__panel[hidden] { display: none; }

/* 20. Final CTA (helle Variante – kein Navy-Hintergrund) - */
.co-cta {
	padding-bottom: clamp(40px, 6vw, 90px);
}
.co-cta__card {
	background: var(--color-white);
	border-radius: var(--radius-xl);
	padding: clamp(40px, 5vw, 70px);
	color: var(--color-navy);
	text-align: center;
	position: relative;
	overflow: hidden;
	border: 1px solid var(--color-border);
	box-shadow: var(--shadow-card);
}
.co-cta__card--light {
	background: linear-gradient(180deg, var(--color-white) 0%, var(--color-bg-soft) 100%);
}
.co-cta__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	overflow: hidden;
}
.co-cta__shape {
	position: absolute;
	font-family: 'Montserrat', Arial, sans-serif;
	font-weight: 700;
	font-size: clamp(180px, 30vw, 380px);
	line-height: .8;
	user-select: none;
	color: rgba(0, 184, 201, 0.10);
	pointer-events: none;
}
.co-cta__shape--c { left: -50px; top: -80px; color: rgba(0, 24, 52, 0.04); }
.co-cta__shape--c::after { content: 'C'; }
.co-cta__shape--1 { right: -30px; bottom: -120px; color: rgba(0, 184, 201, 0.10); }
.co-cta__shape--1::after { content: '1'; }
.co-cta__body { position: relative; z-index: 1; }
.co-cta__title {
	font-size: clamp(1.8rem, 3.4vw, 2.8rem);
	margin: 0 0 18px;
	max-width: 780px;
	margin-inline: auto;
	line-height: 1.15;
}
.co-cta__title-navy {
	display: block;
	color: var(--color-navy);
}
.co-cta__title-cyan {
	display: block;
	color: var(--color-cyan);
}
.co-cta__sub {
	color: var(--color-muted);
	font-size: 1.05rem;
	max-width: 640px;
	margin: 0 auto 32px;
	line-height: 1.6;
}
.co-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	justify-content: center;
}

/* 21. Footer (helle Variante) ---------------------------- */
.co-footer {
	background: var(--color-bg);
	color: var(--color-navy);
	position: relative;
	overflow: hidden;
	padding: 80px 0 0;
	border-top: 1px solid var(--color-border);
}
.co-footer--light {
	background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-soft) 100%);
}
.co-footer__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
}
.co-footer__shape {
	position: absolute;
	font-family: 'Montserrat', Arial, sans-serif;
	font-weight: 700;
	font-size: clamp(220px, 40vw, 540px);
	line-height: .8;
	color: rgba(0, 24, 52, 0.04);
	user-select: none;
	pointer-events: none;
}
.co-footer__shape--c { left: -50px; top: -120px; }
.co-footer__shape--c::after { content: 'C'; }
.co-footer__shape--1 {
	right: -40px;
	bottom: -160px;
	color: rgba(0, 184, 201, 0.10);
}
.co-footer__shape--1::after { content: '1'; }
.co-footer__inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 28px;
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 48px;
	position: relative;
	z-index: 1;
}
.co-footer__brand {
	max-width: 360px;
}
.co-footer__logo {
	display: inline-flex;
	margin-bottom: 22px;
}
.co-footer__logo svg,
.co-footer__logo .custom-logo,
.co-footer__logo img {
	max-height: 56px;
	width: auto;
	height: auto;
	display: block;
}
.co-footer__claim {
	color: var(--color-muted);
	font-size: .98rem;
	line-height: 1.6;
	margin: 0 0 22px;
}
.co-footer__contact {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.co-footer__contact a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--color-navy);
	font-weight: 700;
	font-size: .92rem;
}
.co-footer__contact a:hover { color: var(--color-cyan); }
.co-footer__contact .co-icon svg { color: var(--color-cyan); width: 18px; height: 18px; }

.co-footer__social {
	display: flex;
	gap: 10px;
	margin: 22px 0 0;
	padding: 0;
	list-style: none;
}
.co-footer__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	color: var(--color-navy);
	transition: transform .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease), background .2s var(--ease);
}
.co-footer__social a:hover {
	transform: translateY(-2px);
	color: var(--color-cyan);
	border-color: rgba(0, 184, 201, 0.45);
	background: var(--color-cyan-soft);
}
.co-footer__social svg { width: 20px; height: 20px; }
.co-footer__col h4 {
	color: var(--color-navy);
	font-size: .82rem;
	letter-spacing: .12em;
	margin: 0 0 18px;
}
.co-footer__col ul {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.co-footer__col a,
.co-footer__menu a {
	color: var(--color-muted);
	font-size: .95rem;
	font-weight: 400;
}
.co-footer__col a:hover,
.co-footer__menu a:hover {
	color: var(--color-cyan);
}
.co-footer__base {
	position: relative;
	z-index: 1;
	max-width: var(--container);
	margin: 60px auto 0;
	padding: 22px 28px;
	border-top: 1px solid var(--color-border);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 12px;
	font-size: .85rem;
	color: var(--color-muted);
}
.co-footer__base p { margin: 0; }
.co-footer__tag { color: var(--color-cyan); font-weight: 700; }

/* 21b. WhatsApp Floating Action Button (Desktop) --------- */
.co-whatsapp-fab {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 60;
	display: inline-flex;
	align-items: center;
	gap: 0;
	background: #25D366;
	color: var(--color-white);
	border-radius: var(--radius-pill);
	padding: 0;
	box-shadow: 0 14px 30px rgba(37, 211, 102, 0.45), 0 6px 16px rgba(0, 24, 52, 0.16);
	transition: transform .25s var(--ease), box-shadow .25s var(--ease), gap .25s var(--ease), padding .25s var(--ease);
	overflow: hidden;
	font-family: 'Montserrat', Arial, sans-serif;
	font-weight: 700;
}
.co-whatsapp-fab__bubble {
	width: 60px;
	height: 60px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.co-whatsapp-fab__bubble svg {
	width: 30px;
	height: 30px;
	display: block;
}
.co-whatsapp-fab__label {
	font-size: .95rem;
	letter-spacing: .01em;
	white-space: nowrap;
	max-width: 0;
	opacity: 0;
	overflow: hidden;
	transition: max-width .35s var(--ease), opacity .25s var(--ease), padding-right .35s var(--ease);
	padding-right: 0;
}
.co-whatsapp-fab:hover,
.co-whatsapp-fab:focus-visible {
	transform: translateY(-3px);
	box-shadow: 0 18px 36px rgba(37, 211, 102, 0.55), 0 8px 18px rgba(0, 24, 52, 0.22);
	outline: none;
}
.co-whatsapp-fab:hover .co-whatsapp-fab__label,
.co-whatsapp-fab:focus-visible .co-whatsapp-fab__label {
	max-width: 200px;
	opacity: 1;
	padding-right: 22px;
}
.co-whatsapp-fab::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: var(--radius-pill);
	box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
	animation: co-fab-pulse 2.4s var(--ease) infinite;
	pointer-events: none;
}
@keyframes co-fab-pulse {
	0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45); }
	60%, 100% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
}

/* Mobile: Native WhatsApp-Verlinkung reicht – kein Floating Button */
@media (max-width: 1024px) {
	.co-whatsapp-fab { display: none; }
}
@media (prefers-reduced-motion: reduce) {
	.co-whatsapp-fab::before { animation: none; }
}

/* 22. Pagination, 404, Single, Page, Archive ------------- */
.co-page,
.co-single,
.co-archive,
.co-404 {
	padding-top: calc(var(--header-h) + 80px);
}
.co-page__head,
.co-single__head {
	margin-bottom: 2rem;
}
.co-page__title,
.co-single__title {
	font-size: clamp(2rem, 3.8vw, 3rem);
}
.co-prose {
	font-size: 1.05rem;
	line-height: 1.75;
	color: var(--color-text);
}
.co-prose img,
.co-prose figure {
	border-radius: var(--radius-md);
	margin: 1.5rem 0;
}
.co-prose blockquote {
	border-left: 4px solid var(--color-cyan);
	padding: 1rem 1.4rem;
	background: var(--color-bg-soft);
	border-radius: var(--radius-md);
	margin: 1.5rem 0;
	font-style: italic;
}
.co-prose a {
	color: var(--color-cyan);
	border-bottom: 1px solid currentColor;
}
.co-prose a:hover {
	color: var(--color-navy);
}
.co-single__media img {
	width: 100%;
	border-radius: var(--radius-lg);
}
.co-single__meta {
	color: var(--color-muted);
	font-size: .92rem;
}
.co-posts {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
}
.co-card--post {
	padding: 0;
	overflow: hidden;
}
.co-card__media img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}
.co-card__body {
	padding: 26px 28px 30px;
}
.co-pagination {
	margin-top: 40px;
}
.co-pagination .nav-links,
.co-pagination .page-numbers {
	display: flex;
	gap: 6px;
	justify-content: center;
	flex-wrap: wrap;
}
.co-pagination a,
.co-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	border-radius: 10px;
	border: 1px solid var(--color-border);
	font-weight: 700;
	color: var(--color-navy);
	padding: 0 14px;
}
.co-pagination .current {
	background: var(--color-cyan);
	color: var(--color-white);
	border-color: var(--color-cyan);
}
.co-404__inner { text-align: center; }
.co-404__visual {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	margin-bottom: 14px;
}
.co-404__digit {
	font-family: 'Montserrat', Arial, sans-serif;
	font-weight: 700;
	font-size: clamp(80px, 14vw, 160px);
	line-height: 1;
	color: var(--color-navy);
	letter-spacing: -0.04em;
}
.co-404__digit--0 {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--color-cyan);
}
.co-404__digit--0 svg {
	width: clamp(90px, 15vw, 170px);
	height: clamp(90px, 15vw, 170px);
	animation: co-404-spin 9s linear infinite;
}
@keyframes co-404-spin {
	to { transform: rotate(360deg); }
}
.co-404__title {
	margin-top: 1rem;
	font-size: clamp(2rem, 4vw, 3rem);
}
.co-404__lead {
	color: var(--color-muted);
	max-width: 540px;
	margin: 0 auto 28px;
	font-size: 1.05rem;
}
.co-404__search {
	display: flex;
	gap: 8px;
	max-width: 520px;
	margin: 0 auto 30px;
	background: var(--color-white);
	border: 1.5px solid var(--color-border);
	border-radius: var(--radius-md);
	padding: 6px;
	box-shadow: var(--shadow-soft);
	align-items: center;
	transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.co-404__search:focus-within {
	border-color: var(--color-cyan);
	box-shadow: 0 0 0 3px rgba(0, 184, 201, 0.18);
}
.co-404__search-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--color-cyan);
	padding: 0 6px 0 12px;
}
.co-404__search-icon svg { width: 20px; height: 20px; }
.co-404__search input[type="search"] {
	flex: 1;
	border: 0;
	background: transparent;
	font-family: inherit;
	font-size: 1rem;
	color: var(--color-navy);
	padding: 10px 4px;
	outline: none;
	min-width: 0;
}
.co-404__search .co-btn {
	flex-shrink: 0;
	padding: 12px 20px;
}
.co-404__actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	justify-content: center;
}
.co-404__links {
	margin-top: clamp(48px, 7vw, 80px);
	text-align: left;
}
.co-404__links-title {
	font-size: 1.2rem;
	text-align: center;
	margin: 0 0 24px;
	color: var(--color-navy);
}
.co-404__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}
.co-card--quick {
	display: flex;
	flex-direction: column;
	padding: 24px;
	color: var(--color-navy);
	gap: 6px;
}
.co-card--quick .co-card__title { font-size: 1.05rem; margin: 4px 0 6px; }
.co-card--quick .co-link { margin-top: 12px; }

@media (max-width: 1024px) {
	.co-404__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
	.co-404__search { flex-wrap: wrap; gap: 6px; padding: 8px; }
	.co-404__search input[type="search"] { min-width: 120px; }
	.co-404__search .co-btn { width: 100%; min-height: 44px; }
	.co-404__grid { grid-template-columns: 1fr; }
}

/* 23. Animations ----------------------------------------- */
[data-co-reveal] {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity .8s var(--ease), transform .8s var(--ease);
}
[data-co-reveal].is-revealed {
	opacity: 1;
	transform: translateY(0);
}
@keyframes co-float-a {
	0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
	50% { transform: translateY(-10px) rotate(var(--rot, 0deg)); }
}
@keyframes co-float-b {
	0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
	50% { transform: translateY(8px) rotate(var(--rot, 0deg)); }
}
.co-float--kpi { animation: co-float-a 6s var(--ease) infinite; --rot: -2deg; }
.co-float--sat { animation: co-float-b 7s var(--ease) infinite; --rot: 3deg; transform-origin: center; }
.co-float--social { animation: co-float-a 8s var(--ease) infinite; --rot: -1.5deg; }
.co-mock--stabo { animation: co-float-b 9s var(--ease) infinite; --rot: 2deg; }
.co-mock--vereinsheim { animation: co-float-a 11s var(--ease) infinite; --rot: -3deg; }
.co-mock--nicolahr { animation: co-float-b 10s var(--ease) infinite; --rot: 1deg; }

/* Sat-Karte mit translateY + rotate kombinieren */
.co-float--sat {
	transform: translateY(-50%) rotate(3deg);
}
@keyframes co-float-sat {
	0%, 100% { transform: translateY(calc(-50% - 0px)) rotate(3deg); }
	50% { transform: translateY(calc(-50% - 10px)) rotate(3deg); }
}
.co-float--sat { animation: co-float-sat 7s var(--ease) infinite; }

/* 24. Reduced Motion ------------------------------------- */
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after {
		animation-duration: .001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .001ms !important;
	}
	[data-co-reveal] { opacity: 1; transform: none; }
}

/* 25. Responsive Breakpoints ----------------------------- */

/* Large Desktop (≤ 1440px) -------------------------------- */
@media (max-width: 1440px) {
	.co-header__inner { padding: 12px 18px; }
	.co-hero__ring { width: 620px; height: 620px; right: -80px; }
	.co-hero__shape { font-size: 560px; }
}

/* Medium Desktop / Laptop (≤ 1180px) ---------------------- */
@media (max-width: 1180px) {
	.co-menu { gap: 22px; }
	.co-header__inner { gap: 16px; padding: 12px 16px; }
	.co-header__phone span { display: none; }
	.co-header__phone { padding: 8px; border-radius: 10px; background: var(--color-cyan-soft); }
	.co-hero__container { gap: 36px; }
	.co-hero__visual { height: 600px; }
	.co-mock--stabo { width: 400px; }
	.co-mock--vereinsheim { width: 320px; left: -20px; }
	.co-mock--nicolahr { width: 360px; right: 10px; }
	.co-float--kpi { width: 180px; }
	.co-float--sat { right: -10px; width: 150px; }
	.co-float--social { padding: 12px 14px; }
	.co-hero__shape { font-size: 460px; }
	.co-hero__ring { width: 540px; height: 540px; }
}

/* Tablet Landscape (≤ 1024px) ----------------------------- */
@media (max-width: 1024px) {
	:root {
		--header-h: 76px;
	}

	.co-header { padding: 16px 16px 0; }
	.co-header__nav,
	.co-header__phone {
		display: none;
	}
	.co-header__cta {
		display: none;
	}
	.co-burger { display: inline-flex; align-items: center; justify-content: center; }
	.co-header__actions { gap: 8px; }
	.co-header__logo .co-logo svg,
	.co-header__logo .co-logo img,
	.co-header__logo .custom-logo { max-height: 48px; }

	.co-section { padding: clamp(48px, 7vw, 88px) 0; }

	/* Hero: stack auf tablet, visual als grid */
	.co-hero {
		padding-top: calc(var(--header-h) + 48px);
		padding-bottom: 64px;
		min-height: 0;
	}
	.co-hero__container {
		grid-template-columns: 1fr;
		gap: 48px;
	}
	.co-hero__copy { max-width: 100%; }
	.co-hero__visual {
		height: auto;
		max-width: 640px;
		margin: 0 auto;
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 18px;
		align-items: stretch;
	}
	/* Mockups und Floats neu positionieren statt absolut */
	.co-mock,
	.co-float {
		position: relative;
		inset: auto;
		transform: none !important;
		animation: none !important;
		width: 100%;
		max-width: 100%;
	}
	.co-mock--stabo { grid-column: 1 / -1; }
	.co-mock--vereinsheim { grid-column: 1 / 2; }
	.co-mock--nicolahr { grid-column: 2 / 3; }
	.co-float--kpi { grid-column: 1 / 2; }
	.co-float--sat {
		grid-column: 2 / 3;
		display: flex;
		flex-direction: row;
		align-items: center;
		gap: 14px;
		text-align: left;
		padding: 16px 18px;
	}
	.co-float--sat .co-float__ring { margin: 0; flex-shrink: 0; width: 60px; height: 60px; }
	.co-float--social { grid-column: 1 / -1; padding: 14px 18px; }

	/* Hero Hintergrund kompakter */
	.co-hero__shape { font-size: 340px; }
	.co-hero__shape--c { top: 4%; right: 50%; }
	.co-hero__shape--1 { top: 2%; right: -4%; }
	.co-hero__ring {
		width: 440px;
		height: 440px;
		right: -120px;
		top: 30%;
	}

	.co-hero__trust {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 10px;
	}
	.co-hero__trust li {
		font-size: .82rem;
		padding-right: 8px;
	}

	.co-services__grid,
	.co-projects__grid,
	.co-why__grid,
	.co-testimonials__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 18px;
	}
	.co-packages__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 16px;
	}
	.co-card--highlight { transform: none; }
	.co-card--highlight:hover { transform: translateY(-4px); }

	.co-process__steps {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 20px;
	}
	.co-process__steps::before { display: none; }

	.co-problem__grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	.co-trust__list {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
	/* Statt items zu verstecken – flexibler Wrap mit anpassbarer Reihe */
	.co-trust__item:nth-child(n+4) {
		grid-column: span 1;
	}

	.co-contact__card {
		grid-template-columns: 180px minmax(0, 1fr);
		gap: 30px;
		padding: 36px;
	}
	.co-contact__portrait {
		width: 180px;
		height: 220px;
	}

	.co-footer__inner {
		grid-template-columns: 1fr 1fr;
		gap: 36px;
	}
	.co-footer__brand { grid-column: 1 / -1; max-width: 100%; }

	.co-posts { grid-template-columns: 1fr; }
}

/* Tablet Portrait / Large Phone (≤ 900px) ----------------- */
@media (max-width: 900px) {
	.co-hero__visual {
		max-width: 560px;
	}
	.co-hero__trust {
		grid-template-columns: 1fr;
	}
	.co-hero__trust li {
		border-right: 0;
		padding-right: 0;
	}
	.co-contact__card {
		grid-template-columns: 1fr;
		gap: 24px;
		padding: 32px 28px;
		text-align: left;
	}
	.co-contact__portrait {
		width: 160px;
		height: 200px;
		margin: 0 auto;
	}
}

/* Mobile (≤ 768px) ---------------------------------------- */
@media (max-width: 768px) {
	body { font-size: 16px; }

	.co-header { padding: 12px 12px 0; }
	.co-header__inner {
		padding: 10px 14px;
		border-radius: 16px;
		gap: 10px;
	}
	.co-header.is-scrolled .co-header__inner {
		padding: 8px 12px;
	}
	.co-header__logo .co-logo svg,
	.co-header__logo .co-logo img,
	.co-header__logo .custom-logo { max-height: 40px; }

	.co-section { padding: 56px 0; }
	.co-container { padding: 0 18px; }

	/* Typografie etwas kleiner */
	.co-section__title { font-size: clamp(1.7rem, 6vw, 2.2rem); }
	.co-section__lead { font-size: 1rem; }
	.co-section__head { margin-bottom: 1.75rem; }
	.co-eyebrow { font-size: .72rem; }

	.co-hero {
		padding-top: calc(var(--header-h) + 28px);
		padding-bottom: 48px;
	}
	.co-hero__container { gap: 36px; }
	.co-hero__headline { font-size: clamp(2.1rem, 8vw, 3rem); margin-bottom: 18px; }
	.co-hero__sub { font-size: 1rem; margin-bottom: 28px; }
	.co-hero__cta {
		flex-direction: column;
		gap: 10px;
		margin-bottom: 32px;
	}
	.co-hero__cta .co-btn { width: 100%; }
	.co-hero__visual {
		max-width: 480px;
		grid-template-columns: 1fr;
		gap: 14px;
	}
	.co-mock--stabo,
	.co-mock--vereinsheim,
	.co-mock--nicolahr,
	.co-float--kpi,
	.co-float--sat,
	.co-float--social {
		grid-column: 1 / -1;
	}
	.co-mock__bar em { display: none; }
	.co-float--sat {
		justify-content: flex-start;
	}

	/* Hero Decor zähmen */
	.co-hero__shape--c { display: none; }
	.co-hero__shape--1 {
		font-size: 240px;
		right: -8%;
		top: -2%;
	}
	.co-hero__ring {
		width: 320px;
		height: 320px;
		right: -160px;
		top: 60%;
	}
	.co-hero__dot--a { left: 4%; top: 14%; }

	.co-trust { padding: 30px 0 48px; }
	.co-trust__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.co-trust__list--logos {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.co-trust__list--logos .co-trust__item:nth-child(n+5) { display: none; }
	.co-trust__item { padding: 16px 14px; }
	.co-trust__list--logos .co-trust__item { min-height: 120px; }

	.co-services__grid,
	.co-packages__grid,
	.co-projects__grid,
	.co-why__grid,
	.co-process__steps,
	.co-testimonials__grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	.co-testimonial { padding: 24px 22px; }
	.co-card--service,
	.co-card--package,
	.co-card--benefit,
	.co-card--step {
		padding: 26px 22px;
	}
	.co-card--service .co-card__title { font-size: 1.25rem; }
	.co-card__head { gap: 14px; }
	.co-card__icon--xl { width: 52px; height: 52px; }
	.co-card__icon--xl svg { width: 24px; height: 24px; }

	/* Projects: media etwas kleiner */
	.co-project__body { padding: 22px 22px 24px; }

	.co-contact__card {
		padding: 28px 22px;
		gap: 20px;
		border-radius: var(--radius-lg);
	}
	.co-contact__name { font-size: 1.4rem; }
	.co-contact__actions {
		flex-direction: column;
		gap: 10px;
	}
	.co-contact__actions .co-btn { width: 100%; }
	.co-contact__list {
		flex-direction: column;
		gap: 10px;
		margin-bottom: 20px;
	}

	.co-cta__card { padding: 36px 22px; }
	.co-cta__actions {
		flex-direction: column;
		gap: 10px;
	}
	.co-cta__actions .co-btn { width: 100%; }
	.co-cta__shape { font-size: 240px; }

	.co-faq__trigger { padding: 18px 20px; }
	.co-faq__q { font-size: 1rem; }
	.co-faq__panel { padding: 0 20px 22px; font-size: .96rem; }

	.co-footer { padding-top: 48px; }
	.co-footer__inner {
		grid-template-columns: 1fr;
		gap: 32px;
		padding: 0 18px;
	}
	.co-footer__brand { grid-column: auto; }
	.co-footer__base {
		flex-direction: column;
		align-items: flex-start;
		padding: 22px 18px;
		margin-top: 40px;
		gap: 8px;
	}
	.co-footer__shape { font-size: 360px; }

	/* Buttons: bessere Touch-Targets */
	.co-btn {
		min-height: 48px;
		padding: 13px 22px;
	}
	.co-btn--lg {
		min-height: 52px;
		padding: 15px 26px;
	}
}

/* Small Phone (≤ 640px) ----------------------------------- */
@media (max-width: 640px) {
	.co-hero__trust {
		grid-template-columns: 1fr;
		gap: 8px;
	}
	.co-hero__trust li { font-size: .9rem; }
	.co-hero__trust-icon { width: 36px; height: 36px; }
	.co-hero__trust-icon svg { width: 16px; height: 16px; }

	/* Pagination kompakter */
	.co-pagination a,
	.co-pagination span {
		min-width: 38px;
		height: 38px;
		padding: 0 10px;
		font-size: .92rem;
	}
}

/* Very Small Phone (≤ 480px) ------------------------------ */
@media (max-width: 480px) {
	.co-container { padding: 0 16px; }
	h1, .co-hero__headline { font-size: clamp(1.9rem, 9vw, 2.5rem); }
	.co-section__title { font-size: clamp(1.55rem, 7.5vw, 2rem); }

	.co-trust__list,
	.co-trust__list--logos {
		grid-template-columns: 1fr;
	}
	.co-trust__list--logos .co-trust__item:nth-child(n+4) { display: none; }
	.co-card__title { font-size: 1.05rem; }

	.co-card__num { width: 48px; height: 48px; font-size: 1rem; }

	/* Mobile-Menü Padding etwas kleiner */
	.co-mobile { padding: calc(var(--header-h) + 24px) 18px 80px; }
	.co-mobile__menu a { font-size: 1.2rem; padding: 14px 0; }

	.co-card--service,
	.co-card--package,
	.co-card--benefit,
	.co-card--step,
	.co-card--question {
		padding: 22px 18px;
	}
	.co-faq__trigger { padding: 16px 18px; gap: 12px; }
	.co-faq__icon { width: 32px; height: 32px; }
	.co-faq__panel { padding: 0 18px 18px; }

	.co-contact__card { padding: 24px 18px; }
	.co-cta__card { padding: 30px 18px; }

	.co-project__body { padding: 20px 18px 22px; }
	.co-card--package { padding: 24px 20px; }

	/* Floats etwas weniger Padding */
	.co-float { padding: 14px 16px; }
	.co-float--kpi { padding: 16px 18px; }
	.co-mock__body { padding: 18px 20px 22px; }
}

/* Tiny Phone (≤ 380px) ------------------------------------ */
@media (max-width: 380px) {
	.co-container { padding: 0 14px; }
	.co-header { padding: 10px 10px 0; }
	.co-header__inner { padding: 8px 12px; gap: 8px; }
	.co-header__logo .co-logo svg,
	.co-header__logo .co-logo img,
	.co-header__logo .custom-logo { max-height: 36px; }
	.co-burger { width: 40px; height: 40px; }
	.co-burger__bar { left: 10px; right: 10px; }

	h1, .co-hero__headline { font-size: clamp(1.7rem, 9vw, 2.2rem); }
	.co-hero { padding-top: calc(var(--header-h) + 20px); padding-bottom: 40px; }

	.co-section__title { font-size: clamp(1.4rem, 7.5vw, 1.8rem); }
	.co-eyebrow { font-size: .7rem; gap: 8px; }
	.co-eyebrow__line { width: 22px; }

	.co-btn { padding: 12px 18px; font-size: .92rem; }
	.co-btn--lg { padding: 14px 22px; font-size: .96rem; }

	.co-footer__base p { font-size: .8rem; }
}

/* =========================================================
   26. Multi-Page Templates (v1.1.0)
   ========================================================= */

/* Submenü Desktop (Dropdown) ----------------------------- */
.co-menu li {
	position: relative;
}
.co-menu .menu-item-has-children > a {
	padding-right: 16px;
	position: relative;
}
.co-menu .menu-item-has-children > a::before {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	width: 8px;
	height: 8px;
	border-right: 1.6px solid currentColor;
	border-bottom: 1.6px solid currentColor;
	transform: translateY(-70%) rotate(45deg);
	opacity: .55;
}
.co-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: -16px;
	min-width: 220px;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-card);
	padding: 10px;
	display: flex;
	flex-direction: column;
	gap: 2px;
	margin: 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity .2s var(--ease), transform .2s var(--ease), visibility 0s linear .25s;
	z-index: 20;
}
.co-menu .sub-menu li { display: block; }
.co-menu .sub-menu a {
	display: block;
	padding: 10px 14px;
	border-radius: 8px;
	font-size: .92rem;
	font-weight: 700;
	color: var(--color-navy);
}
.co-menu .sub-menu a::after { display: none; }
.co-menu .sub-menu a:hover {
	background: var(--color-cyan-soft);
	color: var(--color-cyan);
}
.co-menu .menu-item-has-children:hover > .sub-menu,
.co-menu .menu-item-has-children:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	transition-delay: 0s;
}
.co-sub-toggle {
	display: none;
}

/* Submenü Mobile ----------------------------------------- */
.co-mobile__menu .menu-item-has-children > a {
	margin-bottom: 4px;
}
.co-mobile__menu .sub-menu {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin: 0 0 12px;
	padding: 6px 0 14px 16px;
	border-left: 2px solid var(--color-cyan-soft);
}
.co-mobile__menu .sub-menu a {
	display: block;
	font-size: 1.05rem;
	font-weight: 400;
	padding: 8px 0;
	border-bottom: 0;
	color: var(--color-muted);
}
.co-mobile__menu .sub-menu a:hover {
	color: var(--color-cyan);
}

/* Page Hero (innere Seiten) ------------------------------ */
.co-page-hero {
	position: relative;
	padding: calc(var(--header-h) + 90px) 0 70px;
	background:
		radial-gradient(900px 500px at 80% 10%, rgba(0, 184, 201, 0.15), transparent 60%),
		linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-soft) 100%);
	overflow: hidden;
}
.co-page-hero__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
}
.co-page-hero__bg .co-hero__shape--1 {
	right: -2%;
	top: -10%;
	font-size: clamp(200px, 40vw, 520px);
	color: rgba(0, 184, 201, 0.16);
}
.co-page-hero__bg .co-hero__dot--a {
	left: 8%;
	top: 60%;
}
.co-page-hero__inner {
	position: relative;
	z-index: 1;
	max-width: 880px;
}
.co-page-hero__title {
	font-size: clamp(2rem, 4.4vw, 3.6rem);
	line-height: 1.08;
	margin: 0 0 18px;
}
.co-page-hero__navy {
	display: block;
	color: var(--color-navy);
}
.co-page-hero__cyan {
	display: block;
	color: var(--color-cyan);
}
.co-page-hero__lead {
	font-size: 1.1rem;
	color: var(--color-muted);
	max-width: 720px;
	line-height: 1.65;
	margin: 0 0 28px;
}
.co-page-hero__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

/* Service-Detail Layout ---------------------------------- */
.co-detail__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
	gap: 50px;
	align-items: start;
}
.co-detail__main .co-section__title {
	margin-bottom: 14px;
}
.co-detail__main .co-section__lead {
	margin-bottom: 30px;
}
.co-detail__features {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 22px;
}
.co-detail__feature {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}
.co-detail__feature .co-card__icon {
	flex-shrink: 0;
	margin: 0;
	width: 44px;
	height: 44px;
	border-radius: 12px;
}
.co-detail__feature .co-card__icon svg { width: 20px; height: 20px; }
.co-detail__feature h3 {
	font-size: 1.05rem;
	margin: 0 0 6px;
	color: var(--color-navy);
}
.co-detail__feature p {
	color: var(--color-muted);
	font-size: .92rem;
	margin: 0;
	line-height: 1.55;
}
.co-detail__aside {
	position: sticky;
	top: calc(var(--header-h) + 32px);
	padding: 30px;
}
.co-detail__aside .co-card__title {
	font-size: 1.2rem;
	margin: 0 0 18px;
}
.co-detail__aside .co-card__list {
	margin: 0 0 22px;
}
.co-detail__aside .co-btn {
	margin-top: 4px;
}

/* Legal-Seiten ------------------------------------------- */
.co-legal {
	padding-top: 60px;
}
.co-legal__notice {
	background: var(--color-cyan-soft);
	border: 1px solid rgba(0, 184, 201, 0.35);
	border-radius: var(--radius-md);
	padding: 18px 22px;
	color: var(--color-navy);
	font-size: .95rem;
	line-height: 1.55;
	margin-bottom: 36px;
}
.co-legal__notice strong {
	color: var(--color-cyan);
	display: inline-block;
	margin-right: 6px;
}
.co-legal .co-prose h2 {
	margin-top: 2.4rem;
	font-size: 1.5rem;
}
.co-legal .co-prose h3 {
	margin-top: 1.8rem;
	font-size: 1.15rem;
}

/* Three-Step Process Variant ----------------------------- */
.co-process__steps--three {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Startseiten-Teaser zur Referenzen-Seite ---------------- */
.co-projects-more {
	padding: 20px 0 60px;
}
.co-projects-more__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	padding: 22px 28px;
	box-shadow: var(--shadow-soft);
}
.co-projects-more__text {
	font-weight: 700;
	color: var(--color-navy);
	font-size: 1.02rem;
	margin: 0;
}

/* Bereits genutzte page.php / single.php Templates ------- */
.co-page,
.co-single,
.co-archive,
.co-404 {
	padding-top: calc(var(--header-h) + 70px);
}

/* Responsive Multi-Page ---------------------------------- */
@media (max-width: 1024px) {
	.co-detail__grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	.co-detail__features {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.co-detail__aside {
		position: relative;
		top: 0;
		padding: 28px;
	}
	.co-process__steps--three {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	/* Submenü desktop dropdown deaktivieren (Mobile-Nav übernimmt) */
	.co-menu .sub-menu { display: none; }

	.co-page-hero {
		padding-top: calc(var(--header-h) + 60px);
		padding-bottom: 60px;
	}
	.co-page-hero__bg .co-hero__shape--1 { font-size: 380px; }
}

@media (max-width: 768px) {
	.co-page-hero {
		padding-top: calc(var(--header-h) + 32px);
		padding-bottom: 48px;
	}
	.co-page-hero__title { font-size: clamp(1.9rem, 8vw, 2.6rem); }
	.co-page-hero__lead { font-size: 1rem; }
	.co-page-hero__cta {
		flex-direction: column;
		gap: 10px;
	}
	.co-page-hero__cta .co-btn { width: 100%; }
	.co-page-hero__bg .co-hero__shape--1 { font-size: 240px; right: -10%; }

	.co-detail__features {
		grid-template-columns: 1fr;
	}
	.co-detail__feature { gap: 14px; }
	.co-detail__aside { padding: 24px 22px; }
	.co-process__steps--three {
		grid-template-columns: 1fr;
	}
	.co-projects-more__inner {
		flex-direction: column;
		align-items: stretch;
		text-align: center;
		padding: 20px 22px;
	}
	.co-projects-more__text { font-size: .98rem; }

	.co-legal__notice { padding: 16px 18px; font-size: .92rem; }
	.co-legal .co-prose h2 { font-size: 1.3rem; }
	.co-legal .co-prose h3 { font-size: 1.05rem; }
}

@media (max-width: 480px) {
	.co-page-hero {
		padding-top: calc(var(--header-h) + 24px);
		padding-bottom: 40px;
	}
	.co-detail__feature .co-card__icon { width: 40px; height: 40px; }
}

/* =========================================================
   27. Echte Bilder (v1.2.0)
   ========================================================= */

/* Bild-basierte Mockups im Hero ---------------------------- */
.co-mock__shot {
	display: block;
	width: 100%;
	background: var(--color-navy);
	line-height: 0;
}
.co-mock__shot img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
	object-position: top center;
}
.co-mock--stabo .co-mock__shot,
.co-mock--vereinsheim .co-mock__shot,
.co-mock--nicolahr .co-mock__shot {
	max-height: 280px;
	overflow: hidden;
}
.co-mock--nicolahr .co-mock__shot {
	background: var(--color-white);
}

/* Browser-Bar für Projekt-Cards ---------------------------- */
.co-project__media {
	position: relative;
}
.co-project__browser {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 28px;
	background: rgba(247, 251, 252, 0.95);
	border-bottom: 1px solid var(--color-border);
	display: flex;
	align-items: center;
	padding: 0 14px;
	gap: 6px;
	z-index: 2;
}
.co-project__browser span {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(0, 24, 52, 0.15);
}
.co-project__browser span:nth-child(1) { background: #FF6058; }
.co-project__browser span:nth-child(2) { background: #FEBC2E; }
.co-project__browser span:nth-child(3) { background: #29C543; }
.co-project__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	display: block;
	transition: transform .5s var(--ease);
}
/* Spezifizität: Projekt-Bilder ohne Hintergrund-Verläufe der ersten Variante */
.co-card--project .co-project__media {
	background: var(--color-bg-soft);
	overflow: hidden;
	aspect-ratio: 4 / 3;
}

/* Trust-Leiste mit echten Brand-Logos --------------------- */
.co-trust__list--logos {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}
.co-trust__list--logos .co-trust__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 22px 18px;
	min-height: 140px;
}
.co-trust__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-height: 60px;
	overflow: hidden;
}
.co-trust__logo img {
	max-height: 56px;
	max-width: 80%;
	width: auto;
	height: auto;
	display: block;
	object-fit: contain;
	filter: none;
	opacity: 1;
	transition: transform .25s var(--ease);
}
.co-trust__item:hover .co-trust__logo img {
	transform: scale(1.04);
}
.co-trust__item--more {
	background: linear-gradient(135deg, rgba(0, 184, 201, 0.10) 0%, var(--color-white) 100%);
	border-color: rgba(0, 184, 201, 0.30);
	padding: 0;
}
.co-trust__item--more:hover {
	border-color: rgba(0, 184, 201, 0.55);
	background: linear-gradient(135deg, rgba(0, 184, 201, 0.18) 0%, var(--color-white) 100%);
}
.co-trust__cta {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	height: 100%;
	padding: 22px 18px;
	color: var(--color-navy);
	text-align: center;
}
.co-trust__plus {
	font-size: 2rem;
	font-weight: 700;
	color: var(--color-cyan);
	line-height: 1;
	width: 44px;
	height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--color-white);
	box-shadow: 0 8px 18px rgba(0, 184, 201, 0.20);
	transition: transform .25s var(--ease);
}
.co-trust__item--more:hover .co-trust__plus {
	transform: scale(1.08) rotate(90deg);
}
.co-trust__cta-text {
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.co-trust__cta-text strong {
	font-size: .95rem;
	font-weight: 700;
	color: var(--color-navy);
}

/* Mockups: keine max-height auf Tablet/Mobile (sonst Cropping) */
@media (max-width: 1024px) {
	.co-mock--stabo .co-mock__shot,
	.co-mock--vereinsheim .co-mock__shot,
	.co-mock--nicolahr .co-mock__shot {
		max-height: none;
	}
	.co-trust__list--logos {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

/* Editor Adjustments ------------------------------------- */
.wp-block-image img { border-radius: var(--radius-md); }
.alignwide { max-width: var(--container); }
.alignfull { width: 100vw; max-width: 100vw; margin-left: 50%; transform: translateX(-50%); }

/* =========================================================
   27b. Founder / Nico Vorstellung
   ========================================================= */
.co-founder { background: linear-gradient(180deg, #fff 0%, var(--color-soft, #F4FAFB) 100%); }
.co-founder__grid {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: 60px;
	align-items: center;
}
.co-founder__media { position: relative; }
.co-founder__portrait {
	position: relative;
	border-radius: var(--radius-lg, 20px);
	overflow: hidden;
	box-shadow: 0 30px 60px -20px rgba(0, 24, 52, .25);
	aspect-ratio: 4 / 5;
	background: var(--color-navy);
}
.co-founder__portrait img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.co-founder__badge {
	position: absolute;
	left: -14px;
	bottom: 24px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 16px;
	background: #fff;
	border-radius: 999px;
	box-shadow: 0 12px 30px rgba(0, 24, 52, .15);
	font-size: .8rem;
	font-weight: 800;
	color: var(--color-navy);
}
.co-founder__badge-dot {
	width: 9px; height: 9px; border-radius: 50%;
	background: var(--color-cyan);
	box-shadow: 0 0 0 4px rgba(0, 184, 201, .2);
}

.co-founder__lead {
	font-size: 1.1rem;
	color: var(--color-navy);
	font-weight: 500;
	margin: 14px 0 16px;
	line-height: 1.45;
}
.co-founder__text {
	color: var(--color-muted);
	line-height: 1.65;
	margin: 0 0 14px;
}

.co-founder__skills {
	list-style: none;
	margin: 22px 0 26px;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px 22px;
}
.co-founder__skill {
	display: flex;
	gap: 12px;
	align-items: flex-start;
}
.co-founder__skill-icon {
	display: inline-flex;
	width: 38px; height: 38px;
	flex-shrink: 0;
	border-radius: 10px;
	background: rgba(0, 184, 201, .12);
	color: var(--color-cyan);
	align-items: center;
	justify-content: center;
}
.co-founder__skill-icon svg { width: 18px; height: 18px; }
.co-founder__skill-body { display: flex; flex-direction: column; line-height: 1.35; }
.co-founder__skill-body strong { color: var(--color-navy); font-weight: 800; font-size: .95rem; }
.co-founder__skill-body span { color: var(--color-muted); font-size: .82rem; }

.co-founder__actions { display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 880px) {
	.co-founder__grid { grid-template-columns: 1fr; gap: 32px; }
	.co-founder__portrait { max-width: 360px; margin: 0 auto; }
	.co-founder__badge { left: 0; }
}
@media (max-width: 540px) {
	.co-founder__skills { grid-template-columns: 1fr; }
}

/* =========================================================
   28. Hero-Erweiterung: WhatsApp-Pill + Preis-Hinweis
   ========================================================= */
.co-btn--whatsapp {
	background: #25D366;
	color: #fff;
	border: 1px solid #25D366;
	box-shadow: 0 8px 22px rgba(37, 211, 102, .25);
}
.co-btn--whatsapp:hover,
.co-btn--whatsapp:focus-visible {
	background: #1ebe5d;
	border-color: #1ebe5d;
	color: #fff;
	transform: translateY(-1px);
}
.co-btn--whatsapp .co-icon svg { fill: #fff; }

.co-hero__price {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 24px 0 28px;
	padding: 10px 16px;
	background: rgba(255, 255, 255, .7);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	border: 1px solid rgba(0, 184, 201, .25);
	border-radius: 999px;
	font-size: .88rem;
	font-weight: 600;
	color: var(--color-navy);
}
.co-hero__price-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--color-cyan);
	box-shadow: 0 0 0 4px rgba(0, 184, 201, .18);
	flex-shrink: 0;
}
.co-hero__price-link {
	color: var(--color-cyan);
	font-weight: 700;
	text-decoration: none;
	margin-left: 6px;
	white-space: nowrap;
}
.co-hero__price-link:hover { text-decoration: underline; }

/* =========================================================
   29. Vorher / Nachher Slider
   ========================================================= */
.co-ba { background: linear-gradient(180deg, var(--color-soft, #F4FAFB) 0%, #fff 100%); }
.co-ba__wrap { max-width: 980px; margin: 0 auto; }

.co-ba__compare {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: var(--radius-lg, 20px);
	overflow: hidden;
	box-shadow: 0 30px 60px -20px rgba(0, 24, 52, .25);
	background: #001834;
	user-select: none;
	touch-action: pan-y;
	isolation: isolate;
}
.co-ba__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	pointer-events: none;
}
.co-ba__clip {
	position: absolute;
	inset: 0;
	width: 50%;
	overflow: hidden;
	background: #0A1828;
	z-index: 2;
}
.co-ba__clip .co-ba__img--before {
	width: calc(100% * (100 / 50));
	max-width: none;
}
/* placeholder when before-image is missing */
.co-ba__placeholder {
	position: absolute;
	inset: 0;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
	text-align: center;
	font-size: .95rem;
	font-weight: 700;
	color: rgba(255, 255, 255, .85);
	background:
		repeating-linear-gradient(45deg, rgba(255,255,255,.04) 0 12px, rgba(255,255,255,.08) 12px 24px),
		linear-gradient(135deg, #0A1828 0%, #14202E 100%);
	letter-spacing: .02em;
}
.co-ba__clip--placeholder .co-ba__placeholder { display: flex; }

.co-ba__label {
	position: absolute;
	top: 14px;
	z-index: 4;
	padding: 6px 12px;
	border-radius: 999px;
	font-size: .72rem;
	font-weight: 800;
	letter-spacing: .05em;
	text-transform: uppercase;
	background: rgba(0, 24, 52, .8);
	color: #fff;
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}
.co-ba__label--before { left: 14px; }
.co-ba__label--after  { right: 14px; background: rgba(0, 184, 201, .92); }

.co-ba__handle {
	position: absolute;
	top: 0;
	left: 50%;
	height: 100%;
	width: 44px;
	transform: translateX(-50%);
	background: transparent;
	border: 0;
	cursor: ew-resize;
	z-index: 5;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.co-ba__handle-bar {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 3px;
	transform: translateX(-50%);
	background: #fff;
	box-shadow: 0 0 0 1px rgba(0, 24, 52, .12), 0 0 22px rgba(0, 184, 201, .35);
}
.co-ba__handle-knob {
	position: relative;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #fff;
	color: var(--color-cyan);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 24px rgba(0, 24, 52, .25), 0 0 0 4px rgba(255, 255, 255, .25);
	transition: transform .15s ease;
}
.co-ba__handle:hover .co-ba__handle-knob,
.co-ba__handle:focus-visible .co-ba__handle-knob { transform: scale(1.08); }

.co-ba__range {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	z-index: 6;
	cursor: ew-resize;
	margin: 0;
}

.co-ba__tabs {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	margin-top: 18px;
}
.co-ba__tab {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: 12px 14px;
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md, 14px);
	cursor: pointer;
	text-align: left;
	transition: all .15s ease;
}
.co-ba__tab:hover { border-color: rgba(0, 184, 201, .5); }
.co-ba__tab.is-active {
	border-color: var(--color-cyan);
	box-shadow: 0 0 0 3px rgba(0, 184, 201, .15);
}
.co-ba__tab-name { font-weight: 800; color: var(--color-navy); font-size: .9rem; }
.co-ba__tab-meta { font-size: .75rem; color: var(--color-muted); }

@media (max-width: 640px) {
	.co-ba__tabs { grid-template-columns: 1fr; }
	.co-ba__compare { aspect-ratio: 4 / 3; border-radius: var(--radius-md, 14px); }
	.co-ba__label { font-size: .65rem; padding: 5px 10px; }
}

/* =========================================================
   30. Sticky Mobile CTA Bar (≤ 640px)
   ========================================================= */
.co-mobile-cta { display: none; }
@media (max-width: 640px) {
	.co-mobile-cta {
		display: grid;
		grid-template-columns: 1fr 1fr 1.4fr;
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		z-index: 90;
		padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
		gap: 6px;
		background: rgba(255, 255, 255, .96);
		backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);
		border-top: 1px solid var(--color-border);
		box-shadow: 0 -8px 24px rgba(0, 24, 52, .08);
	}
	.co-mobile-cta__item {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 2px;
		padding: 8px 6px;
		border-radius: 12px;
		font-size: .72rem;
		font-weight: 700;
		text-decoration: none;
		color: var(--color-navy);
		background: #fff;
		border: 1px solid var(--color-border);
		min-height: 52px;
		line-height: 1.1;
	}
	.co-mobile-cta__item .co-icon svg { width: 18px; height: 18px; }
	.co-mobile-cta__item--call   { color: var(--color-navy); }
	.co-mobile-cta__item--wa     { color: #fff; background: #25D366; border-color: #25D366; }
	.co-mobile-cta__item--wa .co-icon svg { fill: #fff; }
	.co-mobile-cta__item--primary {
		color: #fff;
		background: var(--color-cyan);
		border-color: var(--color-cyan);
	}
	.co-mobile-cta__item--primary .co-icon svg { stroke: #fff; }

	/* Body-Bottom-Padding, damit Sticky-Bar nichts überdeckt */
	body { padding-bottom: 76px; }

	/* WhatsApp FAB ausblenden, da in Bar enthalten */
	.co-whatsapp-fab { display: none; }
}

/* =========================================================
   30b. Hinweis-Modal "Website in Bearbeitung"
   ========================================================= */
.co-notice[hidden] { display: none; }
.co-notice {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	animation: co-notice-fade .25s ease-out;
}
.co-notice__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 24, 52, .55);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}
.co-notice__card {
	position: relative;
	width: 100%;
	max-width: 460px;
	padding: 36px 32px 32px;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 30px 80px -20px rgba(0, 24, 52, .35);
	text-align: center;
	animation: co-notice-pop .3s cubic-bezier(.4, 1.6, .5, 1);
}
.co-notice__close {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 36px;
	height: 36px;
	border: 0;
	background: transparent;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--color-muted);
	cursor: pointer;
	transition: background .15s ease, color .15s ease;
}
.co-notice__close:hover,
.co-notice__close:focus-visible {
	background: var(--color-soft, #F4FAFB);
	color: var(--color-navy);
}
.co-notice__icon {
	display: inline-flex;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: rgba(0, 184, 201, .12);
	color: var(--color-cyan);
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
}
.co-notice__title {
	margin: 0 0 10px;
	font-size: 1.35rem;
	font-weight: 800;
	color: var(--color-navy);
	line-height: 1.25;
}
.co-notice__text {
	margin: 0 0 22px;
	color: var(--color-muted);
	font-size: .97rem;
	line-height: 1.55;
}
.co-notice__action {
	min-width: 160px;
	justify-content: center;
}

@keyframes co-notice-fade {
	from { opacity: 0; }
	to   { opacity: 1; }
}
@keyframes co-notice-pop {
	from { opacity: 0; transform: scale(.92) translateY(8px); }
	to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* Klein: knappere Card */
@media (max-width: 480px) {
	.co-notice__card { padding: 30px 22px 24px; border-radius: 16px; }
	.co-notice__title { font-size: 1.15rem; }
	.co-notice__text  { font-size: .92rem; }
}

/* Reduced Motion: keine Animationen */
@media (prefers-reduced-motion: reduce) {
	.co-notice,
	.co-notice__card { animation: none; }
}

/* Scroll-Lock waehrend Modal offen */
body.is-notice-open { overflow: hidden; }

/* =========================================================
   31. 360-px Feinschliff (Tiny Phones)
   ========================================================= */
@media (max-width: 380px) {
	.co-hero__headline { font-size: clamp(2rem, 11vw, 2.6rem); }
	.co-hero__sub { font-size: .95rem; }
	.co-hero__cta { flex-direction: column; align-items: stretch; gap: 8px; }
	.co-hero__cta .co-btn { width: 100%; justify-content: center; }
	.co-hero__price {
		font-size: .78rem;
		padding: 8px 12px;
		flex-wrap: wrap;
	}
	.co-hero__price-link { margin-left: 0; }

	/* KPI-Card auf engste Screens etwas kleiner */
	.co-float--kpi { width: 162px; padding: 14px 16px; }
	.co-float__value { font-size: 1.4rem; }
	.co-float__hint  { font-size: .6rem; }

	/* Section-Heads kompakter */
	.co-section__title { font-size: clamp(1.4rem, 7vw, 1.85rem); }
	.co-section__lead { font-size: .92rem; }

	/* Mobile CTA: enger packen */
	.co-mobile-cta { grid-template-columns: 1fr 1fr 1.3fr; padding: 6px; gap: 5px; }
	.co-mobile-cta__item { padding: 6px 4px; font-size: .68rem; min-height: 48px; }
}
