@import 'menu.css';	
@import 'hero.css';
@import 'services.css';
@import 'pillars.css';
@import 'claim.css';
@import 'testimonial.css';
@import 'objections.css';
@import 'cta.css';

:root {
	--color-bg: #ffffff;
	--color-text: #111111;
	--color-muted: #666666;
	--color-border: #e8e8e8;
	--color-link: #000;

	--font-serif: monospace, Courier New, serif;
	--font-sans: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

	--color-ci: #0f437b;
	--color-ci-compl: #7b470f;
	--color-ci-invert: #f1bb85;
	--color-ci-dark: #09325f;
	--color-ci-light: #15477e;
	--color-ci-lighter: #1f5699;

	--space-1: 0.25rem;
	--space-2: 0.5rem;
	--space-3: 0.75rem;
	--space-4: 1rem;
	--space-5: 1.5rem;
	--space-6: 2rem;
	--space-7: 2.5rem;
	--space-8: 3rem;
	--space-9: 4rem;

	--gutter: clamp(16px, 4vw, 40px);
	--section-padding: clamp(2.5rem, 8vw, 4rem);
	--box-padding-y: clamp(2.5rem, 5vw, 4rem);
	--box-padding-x: clamp(2rem, 6vw, 5rem);
	--site-max: 1200px;
	--content-max: 72ch;

	--radius-1: 6px;
	--radius-2: 10px;

	--shadow-1: 0 1px 2px rgba(0,0,0,0.06);
	--shadow-2: 0 8px 30px rgba(0,0,0,0.08);

	--fs-h1: clamp(2rem, 3vw, 3rem);
	--fs-h2: clamp(1.5rem, 2.2vw, 2.25rem);
	--fs-h3: clamp(1.25rem, 1.8vw, 1.75rem);
	--fs-h4: clamp(1.25rem, 1.8vw, 1.75rem);
	--fs-h5: clamp(1.125rem, 1.8vw, 1.75rem);
	--fs-h6: clamp(1rem, 1.8vw, 1.75rem);

	--text: #111;
	--muted: #666;
	--bg: #fff;
	--border: #e8e8e8;
  }
  



html {
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	margin: 0;
	font-family: var(--font-sans);
	color: var(--color-text);
	background: var(--color-bg);
	border-top: var(--space-1) solid var(--color-ci);
}

a {
	text-decoration: underline;
	color: var(--color-link);;
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.18em;
}
	

a:hover {
	text-decoration: none;
}

h1, h2, h3 {
	line-height: 1.15;
	margin: 0.5rem 0 1rem;
}

h1 { font-size: var(--fs-h1); font-weight: 700; }
h2 { font-size: var(--fs-h2); font-weight: 600; }
h3 { font-size: var(--fs-h3); font-weight: 600; }
h4 { font-size: var(--fs-h4); font-weight: 600; }
h5 { font-size: var(--fs-h5); font-weight: 400; }
h6 { font-size: var(--fs-h6); font-weight: 400; }

img,
video {
	max-width: 100%;
	height: auto;
	display: block;
}

video {
	aspect-ratio: 16 / 9;
}

button,
input,
select,
textarea {
	font: inherit;
	margin: 0;
}

button {
	border: 1px solid var(--color-border);
	border-radius: var(--radius-1);
	background: #fff;
	padding: 0.6rem 0.9rem;
	box-shadow: var(--shadow-1);
	cursor: pointer;
}

button:hover {
	box-shadow: var(--shadow-2);
}

section {
	padding-block: var(--space-6);
}

.container {
	width: 100%;
}

.container__inner {
	width: 96%;
	max-width: var(--site-max);
	margin-inline: auto;
	margin-left: auto;
	margin-right: auto;
}

.content,
.entry-content,
.prose {
	width: 100%;
	max-width: var(--content-max);
	margin-inline: auto;
	padding: var(--space-6) 0 var(--space-6);
}

.home .content {
	margin-inline: 0;
}

.content > * + *,
.entry-content > * + *,
.prose > * + * {
	margin-top: var(--space-4);
}

p {
	margin: 0;
}

small {
	color: var(--color-muted);
}

hr {
	border: 0;
	border-top: 1px solid var(--color-border);
	margin-block: calc(var(--space-4) * 1.5);
}

blockquote {
	border-left: 4px solid var(--color-border);
	padding-left: 1rem;
	color: var(--color-muted);
	margin: 0;
}

ul, ol {
	margin: 0;
	padding-left: 0;
}

ul { list-style: square; }
ol { list-style: decimal; }

ul li { list-style-type: square; }
ol li { list-style-type: decimal; }

ul li,
ol li {
	margin-left: 1.5em;
	padding-left: 0.5em;
	margin-top: 0.25rem;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

table,
.table {
	width: 100%;
	margin-bottom: 1.5rem;
	background-color: #fff;
	border-radius: 0.3rem;
	box-shadow: 0 1px 2px rgba(0,0,0,0.04);
	overflow: hidden;
}

th,
.table th {
	font-weight: 600;
	text-align: left;
	background: #f7f7f7;
	padding: 0.75em 1em;
	border-bottom: 1px solid #e5e5e5;
	color: #222;
}

td,
.table td {
	padding: 0.75em 1em;
	border-bottom: 1px solid #f1f1f1;
	color: #222;
	vertical-align: top;
}

tr:last-child td,
.table tr:last-child td {
	border-bottom: none;
}

.table {
	display: table;
	border-collapse: collapse;
	width: 100%;
}

.table-row { display: table-row; }

.table-cell {
	display: table-cell;
	padding: 0.75em 1em;
	border-bottom: 1px solid #f1f1f1;
	vertical-align: top;
}

.table-header {
	display: table-header-group;
	background: #f7f7f7;
	font-weight: 600;
}

.table-body {
	display: table-row-group;
}

.table th,
.table-header .table-cell {
	background: #f7f7f7;
	font-weight: 600;
	color: #222;
}

.table-striped tbody tr:nth-child(even),
.table-striped .table-row:nth-child(even) {
	background-color: #fafbfc;
}

.table-hover tbody tr:hover,
.table-hover .table-row:hover {
	background-color: #f0f2f7;
}

@media (max-width: 600px) {
	table,
	.table,
	thead,
	tbody,
	th,
	td,
	tr,
	.table-row,
	.table-cell {
		display: block;
		width: 100%;
	}
	th,
	td,
	.table-cell {
		padding: 0.75em 0.5em;
	}
	tr,
	.table-row {
		margin-bottom: 0.75em;
	}
	th,
	td,
	.table-cell {
		border-bottom: 1px solid #eee;
	}
}

header .container__inner {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: var(--space-4);
	padding-block: var(--space-4);
	flex-wrap: wrap;
	margin-left: auto;
	margin-right: auto;
	max-width: var(--site-max);
}

.header-phone {
	display: inline-flex;
	align-items: center;
	flex-direction: row-reverse;
	position: relative;
}

.header-phone__number {
	width: 0;
	opacity: 0;
	overflow: hidden;
	white-space: nowrap;
	pointer-events: none;
	padding: 0;
	height: 44px;
	line-height: 44px;
	font-size: 0.95rem;
	font-weight: 500;
	color: var(--color-text);
	text-decoration: none;
	transition: width 200ms ease, opacity 160ms ease, padding 200ms ease;
}

.header-phone:hover .header-phone__number,
.header-phone.is-open .header-phone__number {
	width: 110px;
	opacity: 1;
	pointer-events: auto;
	padding-left: 1rem;
}

.header-phone__btn {
	width: 44px;
	height: 44px;
	display: inline-grid;
	place-items: center;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-1);
	background: #fff;
	box-shadow: none;
	padding: 0;
	cursor: pointer;
}

.header-phone__icon {
	display: block;
}

.header-search {
	display: inline-flex;
	align-items: center;
	gap: var(--space-2);
	position: relative;
}

.header-search__input {
	width: 0;
	opacity: 0;
	pointer-events: none;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-1);
	height: 44px;
	padding: 0 0.75rem;
	transition: width 200ms ease, opacity 160ms ease;
}

.header-search.is-open .header-search__input {
	width: 220px;
	opacity: 1;
	pointer-events: auto;
}

.header-search__btn {
	width: 44px;
	height: 44px;
	display: inline-grid;
	place-items: center;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-1);
	background: #fff;
	box-shadow: none;
	padding: 0;
	cursor: pointer;
}

.header-search__icon {
	display: block;
}

/* Mobile Phone Bar - nur auf kleinen Geräten */
.mobile-phone-bar {
	display: none;
}

@media (max-width: 340px) {
	.mobile-phone-bar {
		display: flex;
		justify-content: center;
		align-items: center;
		background: var(--color-primary, #1a365d);
		padding: 0.35rem 1rem;
	}

	.mobile-phone-bar__link {
		display: inline-flex;
		align-items: center;
		gap: 0.4rem;
		color: #fff;
		text-decoration: none;
		font-size: 0.8rem;
		font-weight: 500;
		letter-spacing: 0.02em;
	}

	.mobile-phone-bar__icon {
		flex-shrink: 0;
	}
}

.logo-link {
	display: inline-block;
}
.logo-link img.logo {
	height: auto;
	max-width: 220px;
}

.header-nav {
	flex: 1;
	display: flex;
	justify-content: center;
}

@media (max-width: 768px) {
	.header-nav {
		display: none;
	}
}

.header-nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.header-nav ul li {
	font-weight: 600;
	list-style: none;
}


@media (max-width: 768px) {
	.header-search {
		display: none;
	}
	
	.nav-mobile-toggle {
		margin-left: auto;
	}
	
	.header-phone {
		width: auto;
		margin-left: 0;
		justify-content: flex-end;
	}

	.header-search.is-open {
		flex-basis: 100%;
		width: 100%;
	}

	.header-search.is-open .header-search__input {
		width: 100%;
	}

	/* Auf Mobile: Link über den ganzen Button legen */
	.header-phone__number {
		position: absolute;
		inset: 0;
		width: 100% !important;
		height: 100%;
		opacity: 0 !important;
		pointer-events: auto !important;
		z-index: 2;
	}

	.header-phone:hover .header-phone__number,
	.header-phone.is-open .header-phone__number {
		width: 100%;
		opacity: 0;
		padding-left: 0;
	}
}
@media (max-width: 340px) {
	.logo-link {
		max-width: 150px;
	}
	.logo-link img.logo {
		max-width: 100%;
	}
	.header-search, .header-phone {
		display: none;
	}
	.nav-mobile-toggle {
		margin-left: auto;
	}
}




/* FOOTER */
.site-footer {
	background: linear-gradient(135deg, var(--color-ci), var(--color-ci-dark));
	color: #fff;
	padding: calc(var(--space-6) * 1.5) 0 var(--space-6);
	border-top: 1px solid rgba(255,255,255,0.08);
}

.site-footer a {
	color: inherit;
	text-decoration: none;
}

.site-footer a:hover {
	text-decoration: underline;
}

.footer-grid {
	display: grid;
	gap: var(--space-6);
	margin-bottom: var(--space-6);
}

@media (min-width: 768px) {
	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.footer-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.footer-title {
	margin: 0 0 var(--space-3);
	font-size: 1rem;
	font-weight: 700;
}

.footer-text {
	color: rgba(255,255,255,0.68);
	margin-top: var(--space-3);
	max-width: 36ch;
}

.footer-text--small {
	font-size: 0.9rem;
}

.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links li + li {
	margin-top: var(--space-2);
}

.footer-social {
	display: flex;
	gap: var(--space-2);
	margin-top: var(--space-4);
}

.footer-social a {
	width: 36px;
	height: 36px;
	display: inline-grid;
	place-items: center;
	border-radius: 999px;
	background: rgba(255,255,255,0.08);
}

.footer-social a:hover {
	background: rgba(255,255,255,0.16);
	text-decoration: none;
}

.footer-newsletter {
	display: flex;
	gap: var(--space-2);
	margin-top: var(--space-3);
}

.footer-newsletter input {
	flex: 1 1 auto;
	height: 44px;
	padding: 0 0.75rem;
	border-radius: var(--radius-1);
	border: 1px solid rgba(255,255,255,0.12);
	background: rgba(255,255,255,0.06);
	color: #fff;
}

.footer-newsletter input::placeholder {
	color: rgba(255,255,255,0.55);
}

.footer-newsletter button {
	height: 44px;
	padding: 0 0.9rem;
	border-radius: var(--radius-1);
	border: 1px solid rgba(255,255,255,0.12);
	background: rgba(255,255,255,0.12);
	color: #fff;
	box-shadow: none;
}

.footer-bottom {
	padding-top: var(--space-4);
	border-top: 1px solid rgba(255,255,255,0.08);
	display: flex;
	flex-direction: column;
	gap: var(--space-3);
	color: rgba(255,255,255,0.55);
	font-size: 0.9rem;
}

@media (min-width: 768px) {
	.footer-bottom {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}
}

.footer-legal {
	display: flex;
	gap: var(--space-4);
	flex-wrap: wrap;
}


/* Circles Background */
.bg-circles {
	position: relative;
	background: #ffffff;
	overflow: hidden;
  }
  
  .bg-circles::before,
  .bg-circles::after {
	content: '';
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
  }
  
  /* Großer Kreis oben rechts */
  .bg-circles {
	position: relative;
	background: #ffffff;
	overflow: hidden;
  }
  
  .bg-circles::before,
  .bg-circles::after {
	content: '';
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
  }
  
  /* Großer Kreis oben rechts */
  .bg-circles::before {
	width: 400px;
	height: 400px;
	top: -120px;
	right: -80px;
	background: rgba(186, 220, 241, 0.25);
  }
  
  /* Mittlerer Kreis unten links */
  .bg-circles::after {
	width: 300px;
	height: 300px;
	bottom: -100px;
	left: -60px;
	background: rgba(200, 228, 246, 0.2);
  }
  
  .bg-circles .circle-1 {
	position: absolute;
	width: 200px;
	height: 200px;
	top: 40%;
	left: 20%;
	border-radius: 50%;
	background: rgba(173, 216, 240, 0.18);
	pointer-events: none;
  }
  
  .bg-circles .circle-2 {
	position: absolute;
	width: 150px;
	height: 150px;
	top: 20%;
	right: 25%;
	border-radius: 50%;
	background: rgba(190, 225, 245, 0.15);
	pointer-events: none;
  }
  
  .bg-circles .circle-3 {
	position: absolute;
	width: 250px;
	height: 250px;
	bottom: 15%;
	right: 10%;
	border-radius: 50%;
	background: rgba(180, 218, 242, 0.12);
	pointer-events: none;
  }
  .bg-circles .icon-fire {
	position: absolute;
	top: 10%;
	left: 20%;
	transform: rotate(20deg);
	z-index: 2;
  }
  .bg-circles .icon-cert {
	position: absolute;
	top: 30%;
	right: 20%;
	transform: rotate(-15deg);
	z-index: 2;
  }