/* BASIC RESET */
* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	color: #1f2933;
	background: #ffffff;
	line-height: 1.55;
}

/* HEADER */
.site-header {
	width: 100%;
	background: #ffffff;
	border-bottom: 1px solid #e5e7eb;
}

.header-inner {
	max-width: 960px;
	margin: 0 auto;
	padding: 16px 20px;
	display: flex;
	align-items: center;
	gap: 16px;
}

.logo {
	width: 40px;
}

.claim-text {
	font-size: 1.1rem;
	font-weight: 500;
}

.claim-text strong {
	font-weight: 900;
	color: #f97316;
}

/* SECTIONS */
.section {
	max-width: 960px;
	margin: 80px auto;
	padding: 0 20px;
}

.section h1 {
	font-size: 2.3rem;
	font-weight: 900;
	margin-bottom: 20px;
}

.section h2 {
	font-size: 1.9rem;
	font-weight: 800;
	margin-bottom: 0px;
}

/* FOX ICON */
.fox-icon {
	width: 18px;
	height: 18px;
	vertical-align: middle;
	margin-right: 6px;
}

/* BULLETS */
.bullets {
	list-style: none;
	padding: 0;
	margin: 0;
}

.bullets li {
	margin-bottom: 12px;
	font-size: 1.05rem;
}

/* CTA */
.cta-primary,
.cta-secondary {
	padding: 16px 28px;
	border-radius: 16px;
	font-weight: 900;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: all 0.2s ease;
}

.cta-primary {
	background: #f97316;
	color: #ffffff;
}

.cta-primary:hover {
	background: #ea580c;
	transform: translateY(-1px);
}

.cta-secondary {
	border: 2px solid #f97316;
	color: #f97316;
}

.cta-secondary:hover {
	background: #fff7ed;
}

/* DEAL HIGHLIGHT */
.deal-highlight {
	background: linear-gradient(180deg, #fff7ed, #ffffff);
	border: 2px solid #fed7aa;
	border-radius: 24px;
	padding: 40px 32px;
	margin-top: 40px;
}

.deal-highlight h2 {
	margin-top: 0;
}

.deal-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

.deal-box {
	background: #ffffff;
	border-radius: 18px;
	padding: 28px;
	border: 1px solid #fde68a;
}

.badge {
	display: inline-flex;
	align-items: center;
	font-size: 0.8rem;
	font-weight: 800;
	color: #f97316;
	margin-bottom: 10px;
}

.deal-description {
	font-size: 1.05rem;
	color: #374151;
	margin-bottom: 16px;
}

.deal-trust {
	font-size: 0.85rem;
	color: #6b7280;
	margin-top: 10px;
}

/* TRUST */
.trust-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.trust-list li {
	margin-bottom: 10px;
}

/* CATEGORIES – Umsatz-Verteiler */
.categories-wrapper {
	background: #f9fafb;
	border: 1px solid #e5e7eb;
	border-radius: 24px;
	padding: 36px 32px;
}

.category-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 18px;
	margin-top: 24px;
}

.category-box {
	border: 2px solid #e5e7eb;
	border-radius: 16px;
	padding: 20px;
	text-align: center;
	font-weight: 900;
	color: #1f2933;
	text-decoration: none;
	transition: all 0.2s ease;
	background: #ffffff;
}

.category-box span {
	display: block;
	font-size: 0.85rem;
	font-weight: 500;
	color: #6b7280;
	margin-top: 6px;
}

.category-box:hover {
	border-color: #f97316;
	color: #f97316;
	background: #fff7ed;
	transform: translateY(-2px);
}

/* FAQ */
.faq-item {
	margin-bottom: 22px;
}

/* FOOTER */
.footer {
	text-align: center;
	padding: 60px 20px 40px;
	border-top: 1px solid #e5e7eb;
}

.footer-links a {
	margin: 0 10px;
	font-size: 0.9rem;
	color: #6b7280;
	text-decoration: none;
}

.footer-links a:hover {
	text-decoration: underline;
}

.fox-claim {
	font-weight: 600;
	margin-top: 24px;
}

.mt-50 {
	margin-top: 50px;
}

.mb-50 {
	margin-bottom: 50px;
}