  :root {
	--primary-blue: #1e3a5f;
	--primary-blue-light: #2c5282;
	--primary-orange: #e76828;
	--primary-orange-light: #ff8c42;
	--dark: #1a202c;
	--gray-dark: #4a5568;
	--gray: #718096;
	--gray-light: #a0aec0;
	--light: #f7fafc;
	--white: #ffffff;
	--shadow-sm: 0 4px 6px rgba(0,0,0,0.07);
	--shadow: 0 10px 30px rgba(0,0,0,0.1);
	--shadow-lg: 0 25px 50px rgba(0,0,0,0.15);
	--radius: 12px;
	--radius-lg: 20px;
}

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

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	color: var(--dark);
	line-height: 1.6;
	background: var(--light);
}

a { color: var(--primary-orange); text-decoration: none; transition: all 0.3s ease; }
a:hover { color: var(--primary-orange-light); }

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

/* ========== HEADER ========== */
.header {
	background: var(--white);
	padding: 16px 0;
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: var(--shadow-sm);
}

.header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	display: flex;
	align-items: center;
	font-size: 22px;
	font-weight: 700;
	color: var(--primary-blue);
}

.logo i { color: var(--primary-orange); margin-right: 10px; font-size: 24px; }
.logo span { color: var(--primary-orange); }

.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { color: var(--gray-dark); font-weight: 500; font-size: 15px; }
.nav-links a:hover { color: var(--primary-orange); }

.header-cta {
	display: flex;
	gap: 12px;
}

.btn {
	padding: 12px 24px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.3s ease;
	border: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.btn-outline {
	background: transparent;
	border: 2px solid var(--primary-blue);
	color: var(--primary-blue);
}

.btn-outline:hover {
	background: var(--primary-blue);
	color: var(--white);
}

.btn-primary {
	background: var(--primary-orange);
	color: var(--white);
}

.btn-primary:hover {
	background: var(--primary-orange-light);
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(231, 104, 40, 0.3);
}

/* ========== HERO ========== */
.hero {
	background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
	padding: 80px 0 120px;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -10%;
	width: 600px;
	height: 600px;
	background: var(--primary-orange);
	border-radius: 50%;
	opacity: 0.1;
}

.hero::after {
	content: '';
	position: absolute;
	bottom: -30%;
	left: -5%;
	width: 400px;
	height: 400px;
	background: var(--primary-orange-light);
	border-radius: 50%;
	opacity: 0.08;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	position: relative;
	z-index: 1;
}

.hero-content { max-width: 540px; }

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255,255,255,0.15);
	color: var(--white);
	padding: 8px 16px;
	border-radius: 50px;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 24px;
	backdrop-filter: blur(10px);
}

.hero-badge i { color: var(--primary-orange-light); }

.hero h1 {
	font-size: 52px;
	font-weight: 800;
	color: var(--white);
	line-height: 1.15;
	margin-bottom: 20px;
}

.hero h1 span { color: var(--primary-orange-light); }

.hero-text {
	font-size: 18px;
	color: rgba(255,255,255,0.85);
	margin-bottom: 32px;
	line-height: 1.7;
}

.hero-price-box {
	display: inline-flex;
	align-items: center;
	gap: 20px;
	background: rgba(255,255,255,0.1);
	backdrop-filter: blur(10px);
	padding: 20px 30px;
	border-radius: var(--radius);
	margin-bottom: 32px;
	border: 1px solid rgba(255,255,255,0.2);
}

.price-label { color: rgba(255,255,255,0.7); font-size: 14px; }
.price-amount { font-size: 42px; font-weight: 800; color: var(--primary-orange-light); }
.price-suffix { color: rgba(255,255,255,0.6); font-size: 14px; margin-left: 5px; }

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-hero {
	padding: 18px 36px;
	font-size: 16px;
	font-weight: 700;
	border-radius: 10px;
}

.btn-hero-primary {
	background: var(--primary-orange);
	color: var(--white);
	box-shadow: 0 10px 30px rgba(231, 104, 40, 0.4);
}

.btn-hero-primary:hover {
	background: var(--primary-orange-light);
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(231, 104, 40, 0.5);
}

.btn-hero-secondary {
	background: rgba(255,255,255,0.15);
	color: var(--white);
	border: 2px solid rgba(255,255,255,0.3);
	backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
	background: rgba(255,255,255,0.25);
	border-color: rgba(255,255,255,0.5);
}

.hero-image {
	position: relative;
}

.hero-image img {
	width: 100%;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
}

.hero-stats {
	position: absolute;
	bottom: -30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 20px;
	background: var(--white);
	padding: 20px 30px;
	border-radius: var(--radius);
	box-shadow: var(--shadow-lg);
}

.stat-item { text-align: center; padding: 0 20px; }
.stat-item:not(:last-child) { border-right: 1px solid #e2e8f0; }
.stat-number { font-size: 28px; font-weight: 800; color: var(--primary-blue); }
.stat-label { font-size: 12px; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; }

/* ========== QUICK ACTIONS ========== */
.quick-actions {
	margin-top: -40px;
	position: relative;
	z-index: 10;
	padding-bottom: 60px;
}

.quick-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.quick-card {
	background: var(--white);
	padding: 32px;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	transition: all 0.3s ease;
	border: 1px solid transparent;
}

.quick-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-lg);
	border-color: var(--primary-orange);
}

.quick-card-icon {
	width: 56px;
	height: 56px;
	background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.quick-card-icon i { font-size: 24px; color: var(--white); }

.quick-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.quick-card p { font-size: 14px; color: var(--gray); margin-bottom: 16px; }

.quick-card .input-row {
	display: flex;
	gap: 10px;
}

.quick-card input,
.quick-card select {
	flex: 1;
	padding: 14px 16px;
	border: 2px solid #e2e8f0;
	border-radius: 8px;
	font-size: 14px;
	transition: all 0.3s ease;
}

.quick-card input:focus,
.quick-card select:focus {
	outline: none;
	border-color: var(--primary-orange);
}

.quick-card .btn-go {
	padding: 14px 20px;
	background: var(--primary-orange);
	color: var(--white);
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.quick-card .btn-go:hover {
	background: var(--primary-orange-light);
}

.quick-card .card-link {
	font-weight: 600;
	font-size: 14px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.quick-card .card-link i { transition: transform 0.3s ease; }
.quick-card .card-link:hover i { transform: translateX(5px); }

/* ========== BENEFITS ========== */
.benefits {
	padding: 100px 0;
	background: var(--white);
}

.section-header {
	text-align: center;
	max-width: 600px;
	margin: 0 auto 60px;
}

.section-header h2 {
	font-size: 40px;
	font-weight: 800;
	color: var(--dark);
	margin-bottom: 16px;
}

.section-header h2 span { color: var(--primary-orange); }

.section-header p { font-size: 18px; color: var(--gray); }

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.benefit-card {
	text-align: center;
	padding: 48px 32px;
	border-radius: var(--radius-lg);
	background: var(--light);
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}

.benefit-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, var(--primary-orange), var(--primary-orange-light));
	transform: scaleX(0);
	transition: transform 0.4s ease;
}

.benefit-card:hover::before { transform: scaleX(1); }

.benefit-card:hover {
	background: var(--white);
	box-shadow: var(--shadow-lg);
	transform: translateY(-10px);
}

.benefit-icon {
	width: 90px;
	height: 90px;
	background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 24px;
	transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon {
	background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
	transform: scale(1.1);
}

.benefit-icon i { font-size: 36px; color: var(--white); }

.benefit-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 12px; color: var(--dark); }
.benefit-card p { font-size: 15px; color: var(--gray); line-height: 1.7; }

/* ========== SERVICES TEASER ========== */
.services-teaser {
	padding: 100px 0;
	background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.service-card {
	background: var(--white);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: all 0.3s ease;
	text-align: center;
}

.service-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-lg);
}

.service-card-image {
	height: 140px;
	background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
	display: flex;
	align-items: center;
	justify-content: center;
}

.service-card-image i { font-size: 48px; color: var(--white); opacity: 0.9; }

.service-card-body { padding: 24px; }
.service-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.service-card p { font-size: 13px; color: var(--gray); margin-bottom: 16px; }
.service-card .learn-more { font-size: 14px; font-weight: 600; }

/* ========== CONTENT SECTION ========== */
.content-section {
	padding: 80px 0;
	background: var(--white);
}

.content-grid {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 60px;
}

.content-main h2 {
	font-size: 32px;
	font-weight: 700;
	color: var(--dark);
	margin-bottom: 20px;
}

.content-main p {
	font-size: 16px;
	color: var(--gray-dark);
	margin-bottom: 20px;
	line-height: 1.8;
}

.content-main ul {
	list-style: none;
	margin: 30px 0;
}

.content-main ul li {
	padding: 12px 0;
	padding-left: 32px;
	position: relative;
	font-size: 15px;
	color: var(--gray-dark);
	border-bottom: 1px solid #e2e8f0;
}

.content-main ul li::before {
	content: '\f00c';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	position: absolute;
	left: 0;
	color: var(--primary-orange);
}

.content-sidebar {
	position: sticky;
	top: 100px;
}

.sidebar-box {
	background: var(--light);
	border-radius: var(--radius);
	padding: 32px;
	margin-bottom: 24px;
}

.sidebar-box h4 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 20px;
	color: var(--dark);
}

.sidebar-links { list-style: none; }

.sidebar-links li { margin-bottom: 12px; }

.sidebar-links a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 16px;
	background: var(--white);
	border-radius: 8px;
	color: var(--gray-dark);
	font-size: 14px;
	transition: all 0.3s ease;
}

.sidebar-links a:hover {
	background: var(--primary-orange);
	color: var(--white);
	transform: translateX(5px);
}

.sidebar-links a i { color: var(--primary-orange); transition: color 0.3s ease; }
.sidebar-links a:hover i { color: var(--white); }

/* ========== FOOTER ========== */
.footer {
	background: var(--primary-blue);
	color: var(--white);
	padding: 80px 0 30px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 40px;
	margin-bottom: 60px;
}

.footer-brand p {
	color: rgba(255,255,255,0.7);
	font-size: 14px;
	margin-top: 16px;
	line-height: 1.7;
}

.footer h5 {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 20px;
	color: var(--white);
}

.footer ul { list-style: none; }

.footer ul li { margin-bottom: 12px; }

.footer ul a {
	color: rgba(255,255,255,0.7);
	font-size: 14px;
	transition: all 0.3s ease;
}

.footer ul a:hover { color: var(--primary-orange-light); padding-left: 5px; }

.footer-contact li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 16px;
}

.footer-contact i { color: var(--primary-orange); margin-top: 3px; }

.footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.1);
	padding-top: 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer-bottom p { color: rgba(255,255,255,0.6); font-size: 13px; }

.footer-social { display: flex; gap: 12px; }

.footer-social a {
	width: 40px;
	height: 40px;
	background: rgba(255,255,255,0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	transition: all 0.3s ease;
}

.footer-social a:hover {
	background: var(--primary-orange);
	transform: translateY(-3px);
}

/* ========== FLOATING BUTTONS ========== */
.floating-buttons {
	position: fixed;
	bottom: 30px;
	right: 30px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	z-index: 1000;
}

.float-btn {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-size: 22px;
	box-shadow: var(--shadow);
	transition: all 0.3s ease;
}

.float-btn:hover {
	transform: scale(1.1);
	color: var(--white);
}

.float-btn-phone { background: var(--primary-blue); }
.float-btn-whatsapp { background: #25d366; }
.float-btn-email { background: var(--primary-orange); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
	.hero-grid { grid-template-columns: 1fr; text-align: center; }
	.hero-content { max-width: 100%; }
	.hero-image { display: none; }
	.hero h1 { font-size: 40px; }
	.quick-grid { grid-template-columns: 1fr; }
	.benefits-grid { grid-template-columns: repeat(2, 1fr); }
	.services-grid { grid-template-columns: repeat(2, 1fr); }
	.content-grid { grid-template-columns: 1fr; }
	.footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
	.nav-links { display: none; }
	.hero { padding: 60px 0 100px; }
	.hero h1 { font-size: 32px; }
	.hero-price-box { flex-direction: column; gap: 5px; padding: 16px 24px; }
	.price-amount { font-size: 32px; }
	.hero-buttons { flex-direction: column; }
	.benefits-grid { grid-template-columns: 1fr; }
	.services-grid { grid-template-columns: 1fr; }
	.footer-grid { grid-template-columns: 1fr; }
	.footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
}

/* ========== BREADCRUMB ========== */
.breadcrumb-nav {
	background: var(--white);
	border-bottom: 1px solid #e2e8f0;
	padding: 16px 0;
}

.breadcrumb-list {
	display: flex;
	align-items: center;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 14px;
}

.breadcrumb-list li {
	display: flex;
	align-items: center;
	gap: 8px;
}

.breadcrumb-list li:not(:last-child)::after {
	content: '\f054';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	font-size: 10px;
	color: var(--gray);
	margin-left: 8px;
}

.breadcrumb-list a {
	display: flex;
	align-items: center;
	gap: 6px;
	color: var(--gray-dark);
	font-weight: 500;
	transition: color 0.2s ease;
}

.breadcrumb-list a:hover {
	color: var(--primary-orange);
}

.breadcrumb-list a i {
	font-size: 12px;
}

.breadcrumb-list .current {
	color: var(--primary-orange);
	font-weight: 600;
}

/* ========== PRICE CARDS ========== */
.price-section {
	padding: 80px 0;
	background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

.price-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	max-width: 900px;
	margin: 0 auto;
}

.price-card {
	background: var(--white);
	border-radius: var(--radius-lg);
	padding: 40px 32px;
	text-align: center;
	box-shadow: var(--shadow);
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
	border: 2px solid transparent;
}

.price-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow-lg);
}

.price-card.featured {
	border-color: var(--primary-orange);
	transform: scale(1.02);
}

.price-card.featured:hover {
	transform: scale(1.02) translateY(-10px);
}

.price-badge {
	position: absolute;
	top: 20px;
	right: -35px;
	background: var(--primary-orange);
	color: var(--white);
	padding: 6px 40px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	transform: rotate(45deg);
}

.price-badge.addon {
	background: var(--primary-blue);
}

.price-card-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 24px;
}

.price-card.addon .price-card-icon {
	background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
}

.price-card-icon i {
	font-size: 32px;
	color: var(--white);
}

.price-card h3 {
	font-size: 22px;
	font-weight: 700;
	color: var(--dark);
	margin-bottom: 20px;
}

.price-amount {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 4px;
	margin-bottom: 24px;
}

.price-amount .currency {
	font-size: 24px;
	font-weight: 700;
	color: var(--primary-orange);
}

.price-amount .value {
	font-size: 56px;
	font-weight: 800;
	color: var(--primary-orange);
	line-height: 1;
}

.price-amount .suffix {
	font-size: 16px;
	color: var(--gray);
	margin-left: 4px;
}

.price-card.addon .price-amount .currency,
.price-card.addon .price-amount .value {
	color: var(--primary-blue);
}

.price-features {
	list-style: none;
	padding: 0;
	margin: 0 0 30px 0;
	text-align: left;
}

.price-features li {
	padding: 10px 0;
	border-bottom: 1px solid #e2e8f0;
	font-size: 14px;
	color: var(--gray-dark);
	display: flex;
	align-items: center;
	gap: 10px;
}

.price-features li:last-child {
	border-bottom: none;
}

.price-features li::before {
	content: '\f00c';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	color: #10b981;
	font-size: 12px;
}

.price-card .btn {
	width: 100%;
	padding: 16px 24px;
	font-size: 16px;
}

.price-note {
	text-align: center;
	font-size: 13px;
	color: var(--gray);
	margin-top: 30px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

/* ========== FAQ SECTION ========== */
.faq-section {
	padding: 80px 0;
	background: var(--white);
}

.faq-grid {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	background: var(--light);
	border-radius: var(--radius);
	margin-bottom: 16px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq-item:hover {
	box-shadow: var(--shadow-sm);
}

.faq-question {
	width: 100%;
	padding: 20px 24px;
	background: none;
	border: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	font-size: 16px;
	font-weight: 600;
	color: var(--dark);
	text-align: left;
}

.faq-question i {
	color: var(--primary-orange);
	transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
	transform: rotate(180deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
	max-height: 200px;
}

.faq-answer-content {
	padding: 0 24px 20px;
	font-size: 15px;
	color: var(--gray-dark);
	line-height: 1.7;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
	.price-grid {
		grid-template-columns: 1fr;
	}
	
	.price-card.featured {
		transform: none;
	}
	
	.price-amount .value {
		font-size: 42px;
	}
}

/* ========== PUNKT 2: Dokumentenhaftung Card mit blauem Rand ========== */
.price-card.addon {
	border: 3px solid var(--primary-blue);
}

/* ========== PUNKT 3: Hero Price Box - Orange Hintergrund, blaue Schrift, Zoom-Hover ========== */
/* ========== HERO PRICE TAG - Schräg am Bild ========== */
.hero-image {
	position: relative;
}

/* ========== HERO PRICE TAG - Schräg am Bild (schmaler) ========== */
.hero-price-box {
	position: absolute;
	top: -15px;
	right: -15px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: var(--primary-orange);
	padding: 14px 20px;
	border-radius: 10px;
	transform: rotate(12deg);
	box-shadow: 0 10px 30px rgba(231, 104, 40, 0.4);
	z-index: 10;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-price-box:hover {
	transform: rotate(12deg) scale(1.08);
	box-shadow: 0 15px 40px rgba(231, 104, 40, 0.5);
}

/* Stern-Badge oben rechts am Preisschild */
.hero-price-box::before {
	content: '★';
	position: absolute;
	top: -10px;
	right: -10px;
	width: 28px;
	height: 28px;
	background: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	color: var(--primary-orange);
	box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.hero-price-box .price-label {
	color: var(--primary-blue);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 2px;
}

.hero-price-box .price-amount {
	font-size: 28px;
	font-weight: 800;
	color: var(--primary-blue);
	line-height: 1;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
	.hero-price-box {
		top: -10px;
		right: -10px;
		padding: 16px 22px;
	}
	
	.hero-price-box .price-amount {
		font-size: 32px;
	}
}

@media (max-width: 768px) {
	/* Auf Mobile: Preisschild unter dem Hero-Content anzeigen */
	.hero-price-box {
		position: relative;
		top: auto;
		right: auto;
		transform: rotate(0deg);
		margin: 24px 0;
		display: inline-flex;
		flex-direction: row;
		gap: 12px;
	}
	
	.hero-price-box::before {
		display: none;
	}
}

/* ========== HOW IT WORKS SECTION ========== */
.how-it-works {
	padding: 100px 0;
	background: var(--white);
}

.steps-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 24px;
	margin-bottom: 50px;
	position: relative;
}

/* Verbindungslinie zwischen den Steps */
.steps-grid::before {
	content: '';
	position: absolute;
	top: 60px;
	left: 10%;
	right: 10%;
	height: 3px;
	background: linear-gradient(90deg, var(--primary-blue), var(--primary-orange));
	z-index: 0;
}

.step-card {
	background: var(--light);
	border-radius: var(--radius-lg);
	padding: 32px 24px;
	text-align: center;
	position: relative;
	z-index: 1;
	transition: all 0.4s ease;
}

.step-card:hover {
	background: var(--white);
	box-shadow: var(--shadow-lg);
	transform: translateY(-10px);
}

.step-number {
	position: absolute;
	top: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 36px;
	height: 36px;
	background: var(--primary-orange);
	color: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	font-weight: 800;
	box-shadow: 0 4px 15px rgba(231, 104, 40, 0.4);
}

.step-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 20px auto 20px;
	transition: all 0.4s ease;
}

.step-card:hover .step-icon {
	background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
	transform: scale(1.1);
}

.step-icon i {
	font-size: 32px;
	color: var(--white);
}

.step-card h3 {
	font-size: 16px;
	font-weight: 700;
	color: var(--dark);
	margin-bottom: 10px;
}

.step-card p {
	font-size: 13px;
	color: var(--gray);
	line-height: 1.6;
	margin: 0;
}

.steps-cta {
	text-align: center;
}

.btn-lg {
	padding: 18px 40px;
	font-size: 18px;
}

/* ========== RESPONSIVE FÜR HOW IT WORKS ========== */
@media (max-width: 1024px) {
	.steps-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	
	.steps-grid::before {
		display: none;
	}
}

@media (max-width: 768px) {
	.steps-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	
	.step-card {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
}

/* ========== PUNKT 2: Dokumentenhaftung Card mit blauem Rand ========== */
.price-card.addon {
	border: 3px solid var(--primary-blue);
}

/* ========== PUNKT 3: Hero Price Box - Orange Hintergrund, blaue Schrift, Zoom-Hover ========== */
.hero-price-box {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: var(--primary-orange);
	padding: 20px 30px;
	border-radius: var(--radius);
	margin-bottom: 32px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	cursor: default;
}

.hero-price-box:hover {
	transform: scale(1.05);
	box-shadow: 0 15px 40px rgba(231, 104, 40, 0.4);
}

.hero-price-box .price-label {
	color: var(--primary-blue);
	font-size: 16px;
	font-weight: 600;
}

.hero-price-box .price-amount {
	font-size: 42px;
	font-weight: 800;
	color: var(--primary-blue);
}