:root {
	--brand-primary: #005b96;
	--brand-accent: #00d4ff;
	--brand-dark: #0a2540;
	--text: #1f2937;
	--muted: #6b7280;
	--card-bg: rgba(255, 255, 255, 0.7);
	--border: rgba(255, 255, 255, 0.35);
}

body {
	font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	margin: 0;
	padding: 0;
	text-align: center;
	background-color: #ffffff;
	color: #333;
	background-image: url('bg.webp');
	background-size: cover;
	background-position: center;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	backdrop-filter: saturate(1.2) blur(10px);
	background: radial-gradient(1200px 300px at 50% -200px, rgba(0, 212, 255, 0.25), transparent 60%), rgba(255,255,255,0.7);
	border-bottom: 1px solid rgba(0,0,0,0.06);
}
.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 0;
}
.brand img {
	height: 60px;
	display: block;
}
.nav a {
	color: var(--brand-dark);
	text-decoration: none;
	margin-left: 18px;
	font-weight: 600;
	transition: color .2s ease;
}
.nav a:hover {
	color: var(--brand-primary);
}
.nav .nav-cta {
	padding: 10px 16px;
	border-radius: 10px;
	background: linear-gradient(135deg, var(--brand-primary), #0aa0ff);
	color: #fff;
	box-shadow: 0 8px 20px rgba(10, 160, 255, 0.25);
}
.phone-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: 700;
	color: var(--brand-dark);
}
.phone-link:hover {
	color: var(--brand-primary);
}
.header-cta {
	margin-left: 16px;
}

.hero {
	position: relative;
	padding: 120px 0 80px;
	color: var(--brand-dark);
	overflow: hidden;
}
.hero .hero-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
}
.orb {
	position: absolute;
	width: 380px;
	height: 380px;
	filter: blur(40px);
	border-radius: 50%;
	opacity: .55;
	mix-blend-mode: multiply;
	animation: float 18s ease-in-out infinite;
}
.orb-1 { left: 5%; top: -10%; background: #00d4ff; animation-delay: 0s; }
.orb-2 { right: -6%; top: -20%; background: #7c3aed; animation-delay: 2s; }
.orb-3 { left: 60%; top: 30%; background: #22d3ee; animation-delay: 1s; }
@keyframes float {
	0%, 100% { transform: translateY(0) translateX(0) scale(1); }
	50% { transform: translateY(30px) translateX(-10px) scale(1.05); }
}
.hero .hero-content {
	position: relative;
}
.headline {
	font-size: clamp(28px, 5vw, 56px);
	line-height: 1.1;
	margin: 0 0 16px 0;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--brand-dark);
}
.gradient-text {
	display: block;
	background: linear-gradient(90deg, var(--brand-primary), #0aa0ff 40%, #22d3ee 85%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.subhead {
	color: var(--muted);
	max-width: 820px;
	margin: 0 auto 28px;
	font-size: clamp(16px, 2.2vw, 20px);
}
.cta-group {
	display: inline-flex;
	gap: 14px;
}
.btn {
	display: inline-block;
	text-decoration: none;
	font-weight: 600;
	border-radius: 14px;
	padding: 14px 18px;
	transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn-primary {
	background: linear-gradient(135deg, var(--brand-primary), #0aa0ff);
	color: #fff;
	box-shadow: 0 10px 24px rgba(10, 160, 255, 0.25);
}
.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 32px rgba(10, 160, 255, 0.35);
}
.btn-ghost {
	background: rgba(255,255,255,0.7);
	color: var(--brand-primary);
	border: 1px solid rgba(0,0,0,0.06);
}
.btn-ghost:hover {
	background: rgba(255,255,255,0.9);
}

.trust .badges img {
	height: 60px;
}
.trust {
	padding: 20px 0 0;
}


.features {
	padding: 60px 0 10px;
}
.features .section-head h2 {
	font-size: clamp(22px, 3.2vw, 34px);
	margin: 0 0 6px 0;
}
.features .section-head p {
	color: var(--muted);
	margin: 0 0 22px 0;
}
.features .grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 16px;
}
@media (max-width: 1100px) {
	.features .grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
	.features .grid { grid-template-columns: repeat(1, 1fr); }
}
.card {
	text-align: left;
	padding: 20px;
	border-radius: 16px;
	background: var(--card-bg);
	border: 1px solid var(--border);
	backdrop-filter: blur(8px);
	box-shadow: 0 10px 30px rgba(2, 6, 23, 0.06);
	transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 40px rgba(2, 6, 23, 0.12);
}
.card .icon {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	display: grid;
	place-items: center;
	background: linear-gradient(135deg, #ecfeff, #dbeafe);
	border: 1px solid rgba(0,0,0,0.06);
	margin-bottom: 10px;
}
.card .icon svg {
	width: 22px;
	height: 22px;
	fill: var(--brand-primary);
}
.card h3 {
	margin: 6px 0 6px;
	font-size: 18px;
}
.card p {
	margin: 0;
	color: var(--muted);
	line-height: 1.5;
}

#intro-text h2 {
    color: #005b96; /* Dunkelblau, passend zum Header */
    margin-bottom: 15px;
}

#intro-text p {
    color: #333; /* Dunkelgrauer Text für Lesbarkeit */
    line-height: 1.6;
}


main {
    margin: 20px;
}

.cta-wide {
	padding: 60px 0;
	background:
		radial-gradient(800px 200px at 80% 0%, rgba(124, 58, 237, 0.12), transparent 60%),
		radial-gradient(800px 200px at 20% 0%, rgba(34, 211, 238, 0.12), transparent 60%),
		linear-gradient(180deg, rgba(255,255,255,0.6), rgba(255,255,255,0.6));
}
.cta-inner {
	padding: 26px;
	border-radius: 16px;
	background: var(--card-bg);
	border: 1px solid var(--border);
	backdrop-filter: blur(8px);
}
.cta-inner h3 {
	margin: 0 0 6px 0;
	font-size: clamp(20px, 3vw, 28px);
}
.cta-inner p {
	margin: 0 0 16px 0;
	color: var(--muted);
}

.reveal {
	opacity: 0;
	transform: translateY(14px);
	transition: opacity .5s ease, transform .5s ease;
}
.reveal.visible {
	opacity: 1;
	transform: translateY(0);
}

.site-footer {
	background: #0f172a;
	color: #94a3b8;
	padding: 40px 0;
	font-size: 14px;
	margin-top: 40px;
}
.site-footer a {
	color: #e2e8f0;
	text-decoration: none;
}
.site-footer a:hover {
	text-decoration: underline;
}
.flex-foot {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 30px;
}
.address-block {
	line-height: 1.8;
	font-style: normal;
}
.copyright {
	opacity: 0.6;
	margin-top: 20px;
}

/* --- Legacy elements kept for backward compatibility (unused in new layout) --- */

/* #cta (legacy) */

/* legacy */

/* legacy */

/* legacy */

/* legacy */



/* footer legacy replaced by .site-footer */

/* legacy */

/* legacy */
