/*
Theme Name: KOMP
Theme URI: https://komp64.de
Author: KOMP Digitale Agentur
Description: Custom WordPress Theme für KOMP – Digitale Agentur aus Koblenz.
Version: 1.0.0
Text Domain: komp
*/

/* ============================================================
   CSS VARIABLEN & RESET
   ============================================================ */

:root {
	--orange:       #FF5C00;
	--orange-light: #FFF0E8;
	--orange-mid:   #FFD4BC;
	--black:        #0D0D0D;
	--grey-dark:    #3A3A3A;
	--grey-mid:     #888888;
	--grey-light:   #F5F4F2;
	--white:        #FFFFFF;
	--border:       #EBEBEB;
	--nav-h:        68px;
}

*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 15px;
	color: var(--black);
	background: var(--white);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s ease;
}

img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* Scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 2px; }

/* ============================================================
   GLOBAL HELPERS
   ============================================================ */

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

.accent { color: var(--orange); }

/* Section Label (Pill-Badge) */
.section-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--orange-light);
	border: 1px solid var(--orange-mid);
	color: var(--orange);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 6px 14px;
	border-radius: 100px;
	margin-bottom: 20px;
}
.section-label::before {
	content: '';
	display: inline-block;
	width: 6px;
	height: 6px;
	background: var(--orange);
	border-radius: 50%;
	flex-shrink: 0;
}

/* Section Label – Dark Variant */
.section-label--dark {
	background: rgba(255, 92, 0, 0.15);
	border-color: rgba(255, 92, 0, 0.3);
	color: var(--orange);
}

.section-sub {
	font-size: 16px;
	color: var(--grey-mid);
	max-width: 560px;
	line-height: 1.7;
	margin-top: 12px;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--orange);
	color: var(--white);
	border: none;
	border-radius: 100px;
	padding: 15px 28px;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	text-decoration: none;
	box-shadow: 0 4px 20px rgba(255, 92, 0, 0.3);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	line-height: 1;
}
.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 32px rgba(255, 92, 0, 0.45);
	color: var(--white);
}

.btn-secondary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: transparent;
	color: var(--black);
	border: 1.5px solid var(--border);
	border-radius: 100px;
	padding: 14px 28px;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.2s ease;
	line-height: 1;
}
.btn-secondary:hover {
	border-color: var(--orange);
	color: var(--orange);
}

/* ============================================================
   PAGE HERO (Unterseiten)
   ============================================================ */

.page-hero {
	position: relative;
	background: var(--grey-light);
	padding: 130px 48px 70px;
	border-bottom: 1px solid var(--border);
	overflow: hidden;
}

.page-hero-deco {
	position: absolute;
	top: -100px;
	right: -100px;
	width: 500px;
	height: 500px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 92, 0, 0.06), transparent 70%);
	pointer-events: none;
}

.page-hero-inner {
	max-width: 1200px;
	margin: 0 auto;
}

.page-hero-title {
	font-size: clamp(36px, 5vw, 60px);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.1;
	margin-bottom: 16px;
}

.page-hero-sub {
	font-size: 18px;
	color: var(--grey-mid);
	max-width: 560px;
	line-height: 1.65;
}

/* ============================================================
   NAVIGATION
   ============================================================ */

.komp-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-bottom: 1px solid var(--border);
	height: var(--nav-h);
}

.nav-inner {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 48px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}

/* Logo */
.nav-logo {
	display: inline-flex;
	align-items: flex-end;
	gap: 3px;
	font-size: 22px;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--black);
	text-decoration: none;
	flex-shrink: 0;
}

.logo-dot {
	display: inline-block;
	width: 7px;
	height: 7px;
	background: var(--orange);
	border-radius: 50%;
	margin-bottom: 8px;
	flex-shrink: 0;
}

.logo-dot--white {
	background: var(--white);
}

/* Nav Links */
.nav-links {
	display: flex;
	align-items: center;
	gap: 32px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-links a {
	font-size: 13px;
	font-weight: 600;
	color: var(--grey-mid);
	letter-spacing: 0.02em;
	text-decoration: none;
	transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
	color: var(--black);
}

/* Nav CTA */
.nav-cta {
	display: inline-flex;
	align-items: center;
	background: var(--orange);
	color: var(--white);
	border-radius: 100px;
	padding: 10px 20px;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
	transition: opacity 0.2s ease;
	flex-shrink: 0;
}
.nav-cta:hover { opacity: 0.85; color: var(--white); }

/* Burger */
.nav-burger {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
}
.nav-burger span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--black);
	border-radius: 2px;
	transition: all 0.25s ease;
}

/* Mobile Nav */
.nav-mobile {
	display: none;
	position: absolute;
	top: var(--nav-h);
	left: 0;
	right: 0;
	background: var(--white);
	border-bottom: 1px solid var(--border);
	padding: 16px 24px 24px;
	box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.nav-mobile.open { display: block; }
.nav-mobile ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.nav-mobile ul a {
	display: block;
	padding: 12px 0;
	font-size: 15px;
	font-weight: 600;
	color: var(--black);
	border-bottom: 1px solid var(--border);
}
.nav-mobile .mobile-cta {
	margin-top: 12px;
	display: inline-block;
	background: var(--orange);
	color: var(--white);
	padding: 12px 24px;
	border-radius: 100px;
	font-weight: 700;
	border-bottom: none;
}

/* Scrolled state */
.komp-nav.scrolled {
	box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

/* ============================================================
   FOOTER
   ============================================================ */

.komp-footer {
	background: var(--black);
}

.footer-top { padding: 72px 48px 56px; }

.footer-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 56px;
}

.footer-logo {
	display: inline-flex;
	align-items: flex-end;
	gap: 3px;
	font-size: 22px;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--white);
	margin-bottom: 16px;
}

.footer-desc {
	font-size: 13.5px;
	color: rgba(255,255,255,0.4);
	line-height: 1.7;
	margin-bottom: 20px;
	max-width: 280px;
}

.footer-contact-links {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.footer-contact-links a {
	font-size: 13px;
	color: rgba(255,255,255,0.4);
	text-decoration: none;
	transition: color 0.2s ease;
}
.footer-contact-links a:hover { color: var(--orange); }

.footer-col-title {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.25);
	margin-bottom: 16px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
	font-size: 13.5px;
	color: rgba(255,255,255,0.45);
	text-decoration: none;
	transition: color 0.2s ease;
}
.footer-col ul a:hover { color: var(--orange); }

/* Footer Bottom */
.footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 22px 48px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	font-size: 12px;
	color: rgba(255,255,255,0.22);
}
.footer-koblenz { color: var(--orange); }

/* ============================================================
   KOMP MAIN (padding für fixed Nav)
   ============================================================ */

.komp-main { padding-top: var(--nav-h); }

/* ============================================================
   HOMEPAGE – HERO
   ============================================================ */

.hero-wrap {
	position: relative;
	background: var(--white);
	padding: 140px 48px 80px;
	overflow: hidden;
}

.hero-deco {
	position: absolute;
	top: 0;
	right: 0;
	width: 600px;
	height: 600px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 92, 0, 0.06), transparent 70%);
	transform: translate(30%, -30%);
	pointer-events: none;
}

.hero-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

/* Hero Badge with pulse dot */
.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--orange-light);
	border: 1px solid var(--orange-mid);
	color: var(--orange);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 6px 14px 6px 10px;
	border-radius: 100px;
	margin-bottom: 24px;
}

.badge-dot {
	display: inline-block;
	width: 8px;
	height: 8px;
	background: var(--orange);
	border-radius: 50%;
	animation: pulse 2s ease-in-out infinite;
	flex-shrink: 0;
}

@keyframes pulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50%       { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
	font-size: clamp(40px, 5vw, 64px);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.1;
	margin: 0 0 20px;
	color: var(--black);
}

.hero-sub {
	font-size: 17px;
	color: var(--grey-dark);
	max-width: 460px;
	line-height: 1.75;
	margin-bottom: 36px;
}

.hero-ctas {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}

.ghost-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	font-weight: 600;
	color: var(--black);
	text-decoration: none;
	transition: color 0.2s ease;
}
.ghost-link:hover { color: var(--orange); }
.ghost-link:hover .arrow-btn {
	border-color: var(--orange);
	background: var(--orange-light);
	color: var(--orange);
}

.arrow-btn {
	width: 32px;
	height: 32px;
	border: 1.5px solid var(--border);
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	transition: all 0.2s ease;
}

/* Check-Card */
.hero-right { position: relative; }

.check-card {
	position: relative;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 24px;
	padding: 32px 32px 28px;
	box-shadow: 0 20px 60px rgba(0,0,0,0.08);
	overflow: visible;
}

.card-stripe {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	border-radius: 24px 24px 0 0;
	background: linear-gradient(90deg, var(--orange), #ff8a50);
}

/* Floating Badges */
.badge-float {
	position: absolute;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 100px;
	padding: 8px 14px;
	font-size: 12px;
	font-weight: 700;
	box-shadow: 0 4px 16px rgba(0,0,0,0.08);
	white-space: nowrap;
	z-index: 2;
}
.badge-float-tr {
	top: -14px;
	right: -14px;
	animation: float1 3s ease-in-out infinite;
}
.badge-float-bl {
	bottom: -14px;
	left: -14px;
	animation: float2 3s ease-in-out infinite;
}

@keyframes float1 {
	0%, 100% { transform: translateY(0); }
	50%       { transform: translateY(-6px); }
}
@keyframes float2 {
	0%, 100% { transform: translateY(0); }
	50%       { transform: translateY(6px); }
}

.card-label {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--grey-mid);
	margin: 12px 0 16px;
}

.url-row {
	background: var(--grey-light);
	border-radius: 12px;
	padding: 10px 14px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
}
.url-text { font-size: 13px; color: var(--grey-mid); }
.scan-btn {
	background: var(--orange);
	color: var(--white);
	border: none;
	border-radius: 100px;
	padding: 6px 14px;
	font-size: 11px;
	font-weight: 700;
	cursor: pointer;
	font-family: inherit;
}

.metrics {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 20px 0;
}

.metric-row {}
.metric-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 6px;
}
.metric-label { font-size: 12px; font-weight: 600; color: var(--black); }
.metric-score { font-size: 12px; font-weight: 700; }

.metric-bar {
	height: 5px;
	background: var(--grey-light);
	border-radius: 3px;
	overflow: hidden;
}
.metric-fill {
	height: 100%;
	border-radius: 3px;
	width: 0%;
	transition: width 1.2s ease;
}

.card-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	margin-top: 20px;
	padding-top: 16px;
	border-top: 1px solid var(--border);
}
.card-problems { font-size: 13px; font-weight: 600; color: var(--grey-dark); }
.fix-btn {
	background: var(--orange-light);
	color: var(--orange);
	border: none;
	border-radius: 100px;
	padding: 8px 16px;
	font-size: 12px;
	font-weight: 700;
	cursor: pointer;
	font-family: inherit;
	text-decoration: none;
	white-space: nowrap;
}
.fix-btn:hover { background: var(--orange); color: var(--white); }

/* ============================================================
   HOMEPAGE – STATS
   ============================================================ */

.stats-wrap {
	background: var(--grey-light);
	padding: 70px 48px;
}

.stats-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	text-align: center;
}

.stat-num {
	font-size: 52px;
	font-weight: 800;
	color: var(--orange);
	letter-spacing: -0.03em;
	line-height: 1;
	display: block;
}
.stat-label {
	font-size: 13px;
	font-weight: 600;
	color: var(--grey-mid);
	margin-top: 8px;
	display: block;
}

/* ============================================================
   HOMEPAGE – SERVICES
   ============================================================ */

.services-wrap {
	background: var(--white);
	padding: 90px 48px;
}

.services-inner {
	max-width: 1200px;
	margin: 0 auto;
}

.services-inner h2 {
	font-size: clamp(28px, 4vw, 44px);
	font-weight: 800;
	letter-spacing: -0.03em;
	margin-bottom: 12px;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 48px;
}

.service-card {
	background: var(--grey-light);
	border-radius: 20px;
	padding: 32px;
	border: 1px solid transparent;
	transition: all 0.25s ease;
	cursor: default;
}
.service-card:hover {
	background: var(--white);
	border-color: var(--border);
	transform: translateY(-4px);
	box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.service-icon {
	width: 52px;
	height: 52px;
	background: var(--white);
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	margin-bottom: 20px;
	transition: background 0.25s ease;
}
.service-card:hover .service-icon { background: var(--orange-light); }

.service-card h3 {
	font-size: 17px;
	font-weight: 700;
	margin-bottom: 8px;
}
.service-card p {
	font-size: 14px;
	color: var(--grey-mid);
	line-height: 1.65;
	margin-bottom: 20px;
}
.service-link {
	color: var(--orange);
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition: gap 0.2s ease;
}
.service-link:hover { gap: 10px; color: var(--orange); }

/* ============================================================
   HOMEPAGE – PROZESS (DARK)
   ============================================================ */

.process-wrap {
	background: var(--black);
	padding: 90px 48px;
}

.process-inner {
	max-width: 1200px;
	margin: 0 auto;
}

.process-inner h2 {
	font-size: clamp(28px, 4vw, 44px);
	font-weight: 800;
	letter-spacing: -0.03em;
	color: var(--white);
	margin-bottom: 12px;
}

.process-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 20px;
	margin-top: 56px;
	position: relative;
}

.process-grid::before {
	content: '';
	position: absolute;
	top: 27px;
	left: calc(100% / 12);
	right: calc(100% / 12);
	height: 1px;
	background: rgba(255, 255, 255, 0.08);
	pointer-events: none;
}

.process-step { text-align: center; }

.step-num {
	width: 54px;
	height: 54px;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	font-size: 13px;
	font-weight: 800;
	color: rgba(255,255,255,0.5);
	transition: all 0.25s ease;
	position: relative;
	z-index: 1;
	background: var(--black);
}
.process-step:hover .step-num {
	background: var(--orange);
	border-color: var(--orange);
	color: var(--white);
}

.process-step h4 {
	font-size: 14px;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 8px;
}
.process-step p {
	font-size: 12px;
	color: rgba(255,255,255,0.4);
	line-height: 1.6;
}

/* ============================================================
   HOMEPAGE – TESTIMONIALS
   ============================================================ */

.testi-wrap {
	background: var(--grey-light);
	padding: 90px 48px;
}

.testi-inner {
	max-width: 1200px;
	margin: 0 auto;
}

.testi-inner h2 {
	font-size: clamp(28px, 4vw, 44px);
	font-weight: 800;
	letter-spacing: -0.03em;
	margin-bottom: 12px;
}

.testi-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 48px;
}

.testi-card {
	background: var(--white);
	border-radius: 20px;
	padding: 32px;
	border: 1px solid var(--border);
	position: relative;
	overflow: hidden;
}

.testi-card::before {
	content: '"';
	position: absolute;
	top: -10px;
	right: 20px;
	font-size: 120px;
	color: var(--orange);
	opacity: 0.08;
	font-family: Georgia, serif;
	line-height: 1;
	pointer-events: none;
}

.testi-stars {
	color: var(--orange);
	font-size: 13px;
	letter-spacing: 2px;
	margin-bottom: 16px;
}

.testi-text {
	font-style: italic;
	font-size: 14.5px;
	color: var(--grey-dark);
	line-height: 1.75;
	margin-bottom: 24px;
}

.testi-author {
	display: flex;
	gap: 12px;
	align-items: center;
}

.testi-avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--orange);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-size: 13px;
	font-weight: 800;
	flex-shrink: 0;
}

.testi-name { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.testi-role { font-size: 12px; color: var(--grey-mid); }

/* ============================================================
   HOMEPAGE – CHECK FORMULAR
   ============================================================ */

.check-wrap {
	padding: 0 48px 90px;
}

.check-inner {
	max-width: 1200px;
	margin: 0 auto;
	background: var(--orange-light);
	border: 1px solid var(--orange-mid);
	border-radius: 28px;
	padding: 56px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
}

.check-left h2 {
	font-size: clamp(24px, 3vw, 36px);
	font-weight: 800;
	letter-spacing: -0.02em;
	margin-bottom: 12px;
}

.check-left > p {
	font-size: 15px;
	color: var(--grey-dark);
	line-height: 1.7;
}

.check-items {
	list-style: none;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 24px;
}

.check-items li {
	display: flex;
	gap: 12px;
	align-items: center;
}

.check-icon {
	width: 22px;
	height: 22px;
	background: var(--orange);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-size: 11px;
	font-weight: 700;
	flex-shrink: 0;
}

.check-items li span {
	font-size: 14px;
	font-weight: 500;
	color: var(--grey-dark);
}

.check-form-box {
	background: var(--white);
	border-radius: 20px;
	padding: 36px;
	box-shadow: 0 8px 40px rgba(255,92,0,0.12);
}

.check-form-box h3 {
	font-size: 20px;
	font-weight: 800;
	margin-bottom: 4px;
}

.form-sub {
	font-size: 13px;
	color: var(--grey-mid);
	margin-bottom: 20px;
}

.check-form {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

/* ============================================================
   FORMS (Global)
   ============================================================ */

.form-input,
.form-select,
.form-textarea,
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
	width: 100%;
	background: var(--grey-light);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 13px 16px;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 14px;
	color: var(--black);
	outline: none;
	transition: border-color 0.2s ease, background 0.2s ease;
	box-sizing: border-box;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
	border-color: var(--orange);
	background: var(--white);
}

.form-input::placeholder,
input::placeholder,
textarea::placeholder { color: var(--grey-mid); }

textarea { min-height: 110px; resize: vertical; line-height: 1.6; }
select { appearance: none; cursor: pointer; }

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

.form-check {
	display: flex;
	gap: 10px;
	align-items: flex-start;
}
.form-check input[type="checkbox"] {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	accent-color: var(--orange);
	margin-top: 2px;
	cursor: pointer;
}
.form-check label {
	font-size: 13px;
	color: var(--grey-mid);
	line-height: 1.5;
	cursor: pointer;
}
.form-check label a { color: var(--orange); text-decoration: underline; }

/* ============================================================
   FAQ PAGE
   ============================================================ */

.faq-wrap { padding: 80px 48px; }
.faq-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 260px 1fr;
	gap: 64px;
}

/* FAQ Category Nav */
.faq-nav { position: sticky; top: 90px; align-self: start; }

.faq-cat-btn {
	display: block;
	width: 100%;
	text-align: left;
	background: none;
	border: 1px solid var(--border);
	border-radius: 100px;
	padding: 10px 18px;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: var(--grey-mid);
	cursor: pointer;
	margin-bottom: 8px;
	transition: all 0.2s ease;
}
.faq-cat-btn:hover { background: var(--grey-light); color: var(--black); }
.faq-cat-btn.active {
	background: var(--orange-light);
	border-color: var(--orange-mid);
	color: var(--orange);
}

/* FAQ List */
.faq-item { border-bottom: 1px solid var(--border); }

.faq-q {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 22px 0;
	cursor: pointer;
	gap: 20px;
	user-select: none;
}

.faq-q-text {
	font-size: 17px;
	font-weight: 700;
	color: var(--black);
	line-height: 1.4;
}

.faq-icon {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 1.5px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: 300;
	color: var(--grey-mid);
	transition: all 0.25s ease;
	flex-shrink: 0;
}
.faq-item.open .faq-icon {
	background: var(--orange);
	border-color: var(--orange);
	color: var(--white);
	transform: rotate(45deg);
}

.faq-a {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease;
}
.faq-item.open .faq-a { max-height: 400px; }

.faq-a p {
	font-size: 15px;
	color: var(--grey-mid);
	line-height: 1.75;
	padding-bottom: 22px;
}

/* FAQ CTA Box */
.faq-cta-box {
	background: var(--grey-light);
	border-radius: 24px;
	padding: 52px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 32px;
	margin-top: 64px;
}
.faq-cta-box h3 {
	font-size: 24px;
	font-weight: 800;
	margin-bottom: 8px;
}
.faq-cta-box p { font-size: 15px; color: var(--grey-mid); }

/* ============================================================
   KONTAKT PAGE
   ============================================================ */

.contact-wrap { padding: 80px 48px; }
.contact-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 80px;
}

.contact-left h2 {
	font-size: 32px;
	font-weight: 800;
	letter-spacing: -0.02em;
	margin-bottom: 12px;
}
.contact-left > p {
	font-size: 15px;
	color: var(--grey-mid);
	line-height: 1.7;
}

.contact-details {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin: 32px 0;
}

.contact-detail {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.detail-icon {
	width: 48px;
	height: 48px;
	background: var(--orange-light);
	border: 1px solid var(--orange-mid);
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	flex-shrink: 0;
}

.detail-label {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--grey-mid);
	margin-bottom: 4px;
	display: block;
}
.detail-value {
	font-size: 15px;
	font-weight: 700;
	color: var(--black);
}

.map-box {
	background: var(--grey-light);
	border-radius: 20px;
	padding: 36px;
}
.map-box h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.map-box p { font-size: 13px; color: var(--grey-mid); }

.map-placeholder {
	height: 180px;
	background: var(--border);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 40px;
	margin-top: 16px;
}

/* Contact Form Box */
.contact-form-box {
	background: var(--grey-light);
	border-radius: 24px;
	padding: 44px;
}
.contact-form-box h2 { font-size: 24px; font-weight: 800; margin-bottom: 6px; }
.contact-form { display: flex; flex-direction: column; gap: 14px; margin-top: 20px; }

/* ============================================================
   LEISTUNGEN PAGE
   ============================================================ */

.leist-wrap { padding: 80px 48px; }
.leist-inner { max-width: 1200px; margin: 0 auto; }
.leist-inner h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 12px; }

.leist-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin-top: 48px;
}

.leist-card {
	background: var(--grey-light);
	border-radius: 20px;
	padding: 36px;
	border: 1px solid var(--border);
	transition: all 0.25s ease;
}
.leist-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

.leist-icon {
	width: 56px;
	height: 56px;
	background: var(--orange-light);
	border: 1px solid var(--orange-mid);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	margin-bottom: 20px;
}

.leist-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 12px; }
.leist-card > p { font-size: 14px; color: var(--grey-mid); line-height: 1.65; margin-bottom: 20px; }

.leist-features {
	list-style: none;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.leist-features li {
	font-size: 13.5px;
	color: var(--grey-dark);
	display: flex;
	gap: 8px;
	align-items: flex-start;
}
.feat-arrow { color: var(--orange); font-weight: 700; flex-shrink: 0; }

/* Pricing */
.pricing-wrap { background: var(--grey-light); padding: 80px 48px; }
.pricing-inner { max-width: 1200px; margin: 0 auto; }
.pricing-inner h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 12px; }

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 48px;
}

.price-card {
	background: var(--white);
	border-radius: 24px;
	padding: 36px;
	border: 1px solid var(--border);
	position: relative;
	transition: all 0.25s ease;
}
.price-card:hover { transform: translateY(-4px); }
.price-card.featured {
	border-color: var(--orange);
	box-shadow: 0 8px 40px rgba(255,92,0,0.15);
}

.price-badge-top {
	position: absolute;
	top: -13px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--orange);
	color: var(--white);
	border-radius: 100px;
	padding: 4px 16px;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.08em;
	white-space: nowrap;
}

.price-name {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--grey-mid);
	margin-bottom: 16px;
}

.price-amount {
	font-size: 36px;
	font-weight: 800;
	color: var(--black);
	margin-bottom: 4px;
	line-height: 1.1;
}
.price-sub { font-size: 12px; color: var(--grey-mid); }

.price-divider { border: none; border-top: 1px solid var(--border); margin: 24px 0; }

.price-features {
	list-style: none;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.price-features li {
	font-size: 13.5px;
	display: flex;
	gap: 10px;
	align-items: flex-start;
}
.price-features .included { color: var(--black); }
.price-features .excluded { color: #aaa; opacity: 0.7; text-decoration: line-through; }
.price-features .check { font-weight: 700; flex-shrink: 0; }
.price-features .included .check { color: #22c55e; }
.price-features .excluded .check { color: #aaa; }

.price-btn { margin-top: 28px; display: block; text-align: center; }

/* ============================================================
   ÜBER UNS PAGE
   ============================================================ */

.about-wrap { padding: 80px 48px; }
.about-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.about-img-wrap { position: relative; }
.about-img-placeholder {
	aspect-ratio: 4/5;
	background: linear-gradient(160deg, var(--orange-light), #f0ede8);
	border-radius: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 80px;
}

.about-badge {
	position: absolute;
	bottom: -20px;
	right: -20px;
	background: var(--orange);
	color: var(--white);
	border-radius: 20px;
	padding: 22px 26px;
	box-shadow: 0 12px 40px rgba(255,92,0,0.3);
	text-align: center;
}
.badge-num { font-size: 42px; font-weight: 800; line-height: 1; display: block; }
.badge-text { font-size: 12px; font-weight: 600; opacity: 0.9; display: block; margin-top: 4px; }

.about-content h2 {
	font-size: clamp(26px, 3.5vw, 36px);
	font-weight: 800;
	letter-spacing: -0.02em;
	margin-bottom: 20px;
	line-height: 1.2;
}
.about-content p { font-size: 15px; color: var(--grey-mid); line-height: 1.75; margin-bottom: 16px; }

/* Values */
.values-wrap { background: var(--grey-light); padding: 80px 48px; }
.values-inner { max-width: 1200px; margin: 0 auto; }
.values-inner h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 12px; }

.values-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 48px;
}

.value-card {
	background: var(--white);
	border-radius: 20px;
	padding: 32px;
	border: 1px solid var(--border);
	transition: all 0.25s ease;
}
.value-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.value-emoji { font-size: 36px; margin-bottom: 16px; display: block; }
.value-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.value-card p { font-size: 14px; color: var(--grey-mid); line-height: 1.65; }

/* Team */
.team-wrap { padding: 80px 48px; }
.team-inner { max-width: 1200px; margin: 0 auto; }
.team-inner h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 12px; }

.team-card {
	background: var(--grey-light);
	border-radius: 24px;
	padding: 48px;
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 48px;
	border: 1px solid var(--border);
	margin-top: 48px;
	align-items: start;
}

.team-left { text-align: center; }

.team-avatar {
	width: 160px;
	height: 160px;
	border-radius: 50%;
	background: var(--orange-light);
	border: 2px solid var(--orange-mid);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 64px;
	margin: 0 auto 20px;
}

.team-name { font-size: 28px; font-weight: 800; margin-bottom: 4px; }
.team-role {
	font-size: 13px;
	font-weight: 700;
	color: var(--orange);
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.team-right p { font-size: 15px; color: var(--grey-mid); line-height: 1.75; margin-bottom: 14px; }

.team-skills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 24px;
}
.skill-tag {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 100px;
	padding: 5px 14px;
	font-size: 12px;
	font-weight: 600;
	color: var(--black);
}

/* ============================================================
   PROJEKTE PAGE
   ============================================================ */

.port-wrap { padding: 80px 48px; }
.port-inner { max-width: 1200px; margin: 0 auto; }

.port-filters {
	display: flex;
	gap: 10px;
	margin-bottom: 40px;
	flex-wrap: wrap;
}

.port-filter-btn {
	background: none;
	border: 1.5px solid var(--border);
	border-radius: 100px;
	padding: 10px 20px;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: var(--grey-mid);
	cursor: pointer;
	transition: all 0.2s ease;
}
.port-filter-btn:hover,
.port-filter-btn.active {
	background: var(--orange);
	border-color: var(--orange);
	color: var(--white);
}

.port-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.port-card {
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid var(--border);
	transition: all 0.25s ease;
}
.port-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

.port-img {
	height: 240px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 64px;
}

.port-body { padding: 24px 28px 28px; background: var(--white); }

.port-tags {
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
	margin-bottom: 12px;
}
.port-tag {
	background: var(--orange-light);
	color: var(--orange);
	border-radius: 100px;
	padding: 4px 10px;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.05em;
}

.port-body h3 { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.port-body p { font-size: 13.5px; color: var(--grey-mid); line-height: 1.6; margin-bottom: 16px; }
.port-link { color: var(--orange); font-size: 13px; font-weight: 700; text-decoration: none; }
.port-link:hover { text-decoration: underline; color: var(--orange); }

/* Portfolio CTA */
.port-cta {
	background: var(--grey-light);
	padding: 72px 48px;
	border-top: 1px solid var(--border);
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 32px;
	margin-top: 0;
}
.port-cta-text h3 { font-size: 28px; font-weight: 800; margin-bottom: 8px; }
.port-cta-text p { font-size: 15px; color: var(--grey-mid); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
	/* Nav */
	.nav-inner { padding: 0 24px; }
	.nav-links { display: none; }
	.nav-burger { display: flex; }

	/* Hero */
	.hero-wrap { padding: 100px 24px 60px; }
	.hero-inner { grid-template-columns: 1fr; gap: 40px; }
	.hero-right { display: none; }

	/* Stats */
	.stats-wrap { padding: 50px 24px; }
	.stats-inner { grid-template-columns: repeat(2, 1fr); }

	/* Services */
	.services-wrap { padding: 60px 24px; }
	.services-grid { grid-template-columns: repeat(2, 1fr); }

	/* Process */
	.process-wrap { padding: 60px 24px; }
	.process-grid { grid-template-columns: repeat(3, 1fr); }
	.process-grid::before { display: none; }

	/* Testi */
	.testi-wrap { padding: 60px 24px; }
	.testi-grid { grid-template-columns: repeat(2, 1fr); }

	/* Check */
	.check-wrap { padding: 0 24px 60px; }
	.check-inner { grid-template-columns: 1fr; padding: 36px; gap: 36px; }

	/* Pages */
	.page-hero { padding: 100px 24px 50px; }
	.faq-wrap { padding: 50px 24px; }
	.faq-inner { grid-template-columns: 1fr; gap: 32px; }
	.faq-nav { position: static; display: flex; flex-wrap: wrap; gap: 8px; }
	.faq-cat-btn { width: auto; }
	.faq-cta-box { flex-direction: column; padding: 36px; }

	.contact-wrap { padding: 50px 24px; }
	.contact-inner { grid-template-columns: 1fr; gap: 40px; }

	.leist-wrap { padding: 50px 24px; }
	.leist-grid { grid-template-columns: 1fr; }

	.pricing-wrap { padding: 50px 24px; }
	.pricing-grid { grid-template-columns: repeat(2, 1fr); }

	.about-wrap { padding: 50px 24px; }
	.about-inner { grid-template-columns: 1fr; gap: 60px; }
	.about-badge { bottom: -10px; right: 10px; }

	.values-wrap { padding: 50px 24px; }
	.values-grid { grid-template-columns: repeat(2, 1fr); }

	.team-wrap { padding: 50px 24px; }
	.team-card { grid-template-columns: 1fr; gap: 32px; }
	.team-left { display: flex; flex-direction: column; align-items: center; }

	.port-wrap { padding: 50px 24px; }

	.port-cta { padding: 50px 24px; flex-direction: column; text-align: center; }

	/* Footer */
	.footer-top { padding: 50px 24px 40px; }
	.footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
	.footer-bottom-inner { padding: 20px 24px; flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 600px) {
	/* All grids 1-col */
	.stats-inner,
	.services-grid,
	.process-grid,
	.testi-grid,
	.values-grid,
	.pricing-grid,
	.port-grid { grid-template-columns: 1fr; }

	.form-row { grid-template-columns: 1fr; }

	.footer-inner { grid-template-columns: 1fr; }

	.hero-title { font-size: 36px; }
	.hero-ctas { flex-direction: column; align-items: flex-start; }

	.faq-cta-box { padding: 28px; }
}

/* ============================================================
   SR-ONLY (Accessibility)
   ============================================================ */
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0,0,0,0);
	white-space: nowrap;
	border: 0;
}

/* ============================================================
   PAGE HERO WRAP (Alias – verwendet in Unterseiten-Templates)
   ============================================================ */
.page-hero-wrap {
	position: relative;
	background: var(--grey-light);
	padding: 130px 48px 70px;
	border-bottom: 1px solid var(--border);
	overflow: hidden;
}
.page-hero-wrap::before {
	content: '';
	position: absolute;
	top: -100px;
	right: -100px;
	width: 500px;
	height: 500px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 92, 0, 0.06), transparent 70%);
	pointer-events: none;
}
.page-hero-wrap .page-hero-inner {
	max-width: 1200px;
	margin: 0 auto;
}

/* ============================================================
   FAQ PAGE – eigene Layout-Klassen
   ============================================================ */
.faq-page-wrap { padding: 80px 48px; }
.faq-page-inner { max-width: 1200px; margin: 0 auto; }

.faq-cats {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 48px;
}

/* faq-q als <button> */
.faq-q {
	width: 100%;
	background: none;
	border: none;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 16px;
	font-weight: 700;
	color: var(--black);
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 22px 0;
	cursor: pointer;
	gap: 20px;
	text-align: left;
	user-select: none;
}

.faq-cta-inner {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}
.faq-cta-icon { font-size: 36px; flex-shrink: 0; }
.faq-cta-inner h3 { font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.faq-cta-inner p { font-size: 14px; color: var(--grey-mid); margin-bottom: 16px; }

@media (max-width: 1024px) {
	.faq-page-wrap { padding: 50px 24px; }
	.faq-cta-inner { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   KONTAKT PAGE – neue Struktur
   ============================================================ */
.contact-form-col {}
.contact-info-col {}

.contact-form-title {
	font-size: 28px;
	font-weight: 800;
	letter-spacing: -0.02em;
	margin-bottom: 6px;
}
.contact-form-sub {
	font-size: 14px;
	color: var(--grey-mid);
	margin-bottom: 28px;
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label {
	font-size: 13px;
	font-weight: 600;
	color: var(--black);
}
.form-label span { color: var(--orange); }
.form-optional { color: var(--grey-mid); font-weight: 400; }

.form-check-group { margin-top: 4px; }
.form-check-label {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	font-size: 13px;
	color: var(--grey-mid);
	cursor: pointer;
	line-height: 1.5;
}
.form-check-label input[type="checkbox"] {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	accent-color: var(--orange);
	margin-top: 2px;
	cursor: pointer;
}
.form-check-label a { color: var(--orange); text-decoration: underline; }

.contact-submit { margin-top: 8px; }

/* Contact Info */
.contact-info-card {
	background: var(--grey-light);
	border-radius: 20px;
	padding: 32px;
	margin-bottom: 20px;
}
.contact-info-title {
	font-size: 18px;
	font-weight: 800;
	margin-bottom: 20px;
}
.contact-info-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.contact-info-list li {
	display: flex;
	gap: 14px;
	align-items: flex-start;
}
.contact-info-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.contact-info-label {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--grey-mid);
	margin-bottom: 3px;
}
.contact-info-value {
	font-size: 15px;
	font-weight: 700;
	color: var(--black);
	text-decoration: none;
}
a.contact-info-value:hover { color: var(--orange); }

/* Response Card */
.contact-response-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 20px;
	padding: 24px 28px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 20px;
}
.response-item { display: flex; gap: 14px; align-items: flex-start; }
.response-icon { font-size: 20px; flex-shrink: 0; }
.response-title { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.response-sub { font-size: 12px; color: var(--grey-mid); }

/* Contact Map */
.contact-map {
	background: var(--grey-light);
	border-radius: 20px;
	height: 180px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 8px;
}
.map-pin { font-size: 36px; }
.contact-map p { font-size: 15px; font-weight: 700; color: var(--black); }
.map-sub { font-size: 13px; color: var(--grey-mid); }

@media (max-width: 1024px) {
	.contact-wrap { padding: 50px 24px; }
	.contact-inner { gap: 40px; }
}

/* ============================================================
   LEISTUNGEN PAGE – Blöcke
   ============================================================ */
.leistungen-wrap { padding: 80px 48px; }
.leistungen-inner { max-width: 1200px; margin: 0 auto; }

.leistung-block {
	display: grid;
	grid-template-columns: 80px 1fr;
	gap: 40px;
	align-items: start;
	padding: 56px 0;
	border-bottom: 1px solid var(--border);
}
.leistung-block--alt { background: transparent; }
.leistung-block:first-of-type { padding-top: 0; }
.leistung-block:last-of-type { border-bottom: none; }

.leistung-icon-wrap {
	width: 64px;
	height: 64px;
	background: var(--orange-light);
	border: 1px solid var(--orange-mid);
	border-radius: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	flex-shrink: 0;
	margin-top: 8px;
}

.leistung-num {
	display: block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: var(--grey-mid);
	text-transform: uppercase;
	margin-bottom: 8px;
}
.leistung-title {
	font-size: clamp(26px, 3vw, 36px);
	font-weight: 800;
	letter-spacing: -0.02em;
	margin-bottom: 12px;
}
.leistung-lead {
	font-size: 17px;
	color: var(--grey-dark);
	line-height: 1.65;
	margin-bottom: 24px;
	max-width: 560px;
}
.leistung-list {
	list-style: none;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 28px;
}
.leistung-list li {
	font-size: 14px;
	color: var(--grey-dark);
	display: flex;
	gap: 10px;
	align-items: flex-start;
}
.leistung-list li::before {
	content: '→';
	color: var(--orange);
	font-weight: 700;
	flex-shrink: 0;
}
.leistung-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--orange);
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	transition: gap 0.2s ease;
}
.leistung-cta:hover { gap: 14px; color: var(--orange); }

@media (max-width: 1024px) {
	.leistungen-wrap { padding: 50px 24px; }
	.leistung-block { grid-template-columns: 1fr; gap: 20px; }
	.leistung-icon-wrap { margin-top: 0; }
}

/* Pricing Cards (Alias für .price-card) */
.pricing-card {
	background: var(--white);
	border-radius: 24px;
	padding: 36px;
	border: 1px solid var(--border);
	position: relative;
	transition: all 0.25s ease;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card--featured {
	border-color: var(--orange);
	box-shadow: 0 8px 40px rgba(255,92,0,0.15);
}
.pricing-badge {
	position: absolute;
	top: -13px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--orange);
	color: var(--white);
	border-radius: 100px;
	padding: 4px 16px;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.08em;
	white-space: nowrap;
}
.pricing-header { margin-bottom: 24px; }
.pricing-label {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--grey-mid);
	display: block;
	margin-bottom: 12px;
}
.pricing-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 8px; }
.pricing-price .price-amount {
	font-size: 36px;
	font-weight: 800;
	color: var(--black);
	line-height: 1;
}
.price-unit { font-size: 13px; color: var(--grey-mid); }
.pricing-desc { font-size: 13px; color: var(--grey-mid); }

.pricing-features {
	list-style: none;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 24px 0;
	border-top: 1px solid var(--border);
	padding-top: 24px;
}
.pricing-features li {
	font-size: 13.5px;
	display: flex;
	gap: 8px;
	align-items: center;
}
.feature-yes { color: var(--black); }
.feature-yes::before { content: '✓'; color: #22c55e; font-weight: 700; flex-shrink: 0; }
.feature-no { color: #aaa; text-decoration: line-through; }
.feature-no::before { content: '×'; color: #aaa; font-weight: 700; flex-shrink: 0; }
.pricing-cta {
	display: block;
	text-align: center;
	padding: 14px 24px;
	border: 1.5px solid var(--border);
	border-radius: 100px;
	font-size: 14px;
	font-weight: 700;
	color: var(--black);
	text-decoration: none;
	transition: all 0.2s ease;
}
.pricing-cta:hover { border-color: var(--orange); color: var(--orange); }
.pricing-cta--featured {
	background: var(--orange);
	border-color: var(--orange);
	color: var(--white);
	box-shadow: 0 4px 20px rgba(255,92,0,0.3);
}
.pricing-cta--featured:hover {
	opacity: 0.9;
	color: var(--white);
}
.pricing-note {
	text-align: center;
	font-size: 12px;
	color: var(--grey-mid);
	margin-top: 28px;
}

/* ============================================================
   ÜBER UNS PAGE
   ============================================================ */
.about-story-wrap { padding: 80px 48px; }
.about-story-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 80px;
	align-items: center;
}
.about-story-text h2 {
	font-size: clamp(26px, 3.5vw, 38px);
	font-weight: 800;
	letter-spacing: -0.02em;
	margin-bottom: 20px;
}
.about-story-text p {
	font-size: 15px;
	color: var(--grey-mid);
	line-height: 1.75;
	margin-bottom: 14px;
}
.about-story-text p strong { color: var(--black); font-weight: 700; }

.story-card {
	background: var(--grey-light);
	border-radius: 24px;
	padding: 40px;
	border: 1px solid var(--border);
	display: flex;
	flex-direction: column;
	gap: 32px;
}
.story-stat { text-align: center; }
.story-stat-num {
	display: block;
	font-size: 44px;
	font-weight: 800;
	color: var(--orange);
	letter-spacing: -0.03em;
	line-height: 1;
	margin-bottom: 6px;
}
.story-stat-label {
	font-size: 13px;
	color: var(--grey-mid);
	font-weight: 600;
}

/* Values (wrapper aliases) */
.about-values-wrap { background: var(--grey-light); padding: 80px 48px; }
.about-values-inner { max-width: 1200px; margin: 0 auto; }
.about-values-inner h2 {
	font-size: clamp(28px, 4vw, 44px);
	font-weight: 800;
	letter-spacing: -0.03em;
	margin-bottom: 12px;
}
.value-icon { font-size: 36px; margin-bottom: 16px; display: block; }

/* Team */
.about-team-wrap { padding: 80px 48px; }
.about-team-inner { max-width: 1200px; margin: 0 auto; }
.about-team-inner h2 {
	font-size: clamp(28px, 4vw, 44px);
	font-weight: 800;
	letter-spacing: -0.03em;
	margin-bottom: 12px;
}

.team-card-single {
	background: var(--grey-light);
	border-radius: 24px;
	padding: 48px;
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: 48px;
	border: 1px solid var(--border);
	margin-top: 48px;
	align-items: start;
}
.team-avatar {
	width: 160px;
	height: 160px;
	border-radius: 50%;
	background: var(--orange-light);
	border: 2px solid var(--orange-mid);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 12px;
	overflow: hidden;
}
.team-avatar-initials {
	font-size: 48px;
	font-weight: 800;
	color: var(--orange);
}
.team-info h3.team-name {
	font-size: 28px;
	font-weight: 800;
	margin-bottom: 4px;
}
.team-bio {
	font-size: 15px;
	color: var(--grey-mid);
	line-height: 1.75;
	margin-top: 16px;
	margin-bottom: 20px;
}
.team-cta { margin-top: 24px; }

/* About CTA */
.about-cta-wrap {
	background: var(--black);
	padding: 90px 48px;
}
.about-cta-inner {
	max-width: 700px;
	margin: 0 auto;
	text-align: center;
}
.about-cta-inner h2 {
	font-size: clamp(28px, 4vw, 44px);
	font-weight: 800;
	letter-spacing: -0.03em;
	color: var(--white);
	margin-bottom: 16px;
}
.about-cta-inner p {
	font-size: 17px;
	color: rgba(255,255,255,0.5);
	line-height: 1.7;
	margin-bottom: 36px;
}
.about-cta-btns {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}
.about-cta-btns .ghost-link { color: rgba(255,255,255,0.6); }
.about-cta-btns .ghost-link:hover { color: var(--white); }
.about-cta-btns .ghost-link .arrow-btn { border-color: rgba(255,255,255,0.2); }

@media (max-width: 1024px) {
	.about-story-wrap { padding: 50px 24px; }
	.about-story-inner { grid-template-columns: 1fr; gap: 40px; }
	.about-values-wrap { padding: 50px 24px; }
	.about-team-wrap { padding: 50px 24px; }
	.team-card-single { grid-template-columns: 1fr; gap: 24px; text-align: center; }
	.team-avatar { margin: 0 auto 12px; }
	.about-cta-wrap { padding: 60px 24px; }
}

/* ============================================================
   PROJEKTE PAGE
   ============================================================ */
.portfolio-wrap { padding: 80px 48px; }
.portfolio-inner { max-width: 1200px; margin: 0 auto; }

.port-filter {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 48px;
}

.port-card-img {
	position: relative;
	height: 240px;
	overflow: hidden;
	background: var(--grey-light);
}
.port-img-placeholder {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 56px;
}
.port-img-1 { background: linear-gradient(135deg, #FFF0E8, #FFD4BC); }
.port-img-2 { background: linear-gradient(135deg, #e8f0ff, #c4d4ff); }
.port-img-3 { background: linear-gradient(135deg, #e8ffef, #c4f0d4); }
.port-img-4 { background: linear-gradient(135deg, #f0e8ff, #d4c4f0); }

.port-overlay {
	position: absolute;
	inset: 0;
	background: rgba(13,13,13,0.75);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}
.port-card:hover .port-overlay { opacity: 1; }
.port-overlay-btn {
	background: var(--orange);
	color: var(--white);
	padding: 12px 24px;
	border-radius: 100px;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
}

.port-card-body { padding: 24px 28px 28px; background: var(--white); }
.port-card-tags {
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
	margin-bottom: 12px;
}
.port-card-title { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.port-card-desc { font-size: 13.5px; color: var(--grey-mid); line-height: 1.6; margin-bottom: 20px; }

.port-card-results {
	display: flex;
	gap: 20px;
	border-top: 1px solid var(--border);
	padding-top: 16px;
}
.port-result { flex: 1; text-align: center; }
.port-result-val {
	display: block;
	font-size: 20px;
	font-weight: 800;
	color: var(--orange);
	letter-spacing: -0.02em;
	line-height: 1;
	margin-bottom: 4px;
}
.port-result-label { font-size: 11px; color: var(--grey-mid); font-weight: 600; }

.port-cta {
	background: var(--grey-light);
	border-radius: 24px;
	padding: 56px;
	text-align: center;
	margin-top: 48px;
}
.port-cta h3 { font-size: 28px; font-weight: 800; margin-bottom: 8px; }
.port-cta p { font-size: 15px; color: var(--grey-mid); margin-bottom: 28px; }

@media (max-width: 1024px) {
	.portfolio-wrap { padding: 50px 24px; }
	.port-grid { grid-template-columns: 1fr; }
	.port-cta { padding: 40px 24px; }
}
@media (max-width: 600px) {
	.port-card-results { gap: 12px; }
}
