/* Fördermittel-Scout — Global Styles */
:root {
	--primary: #1a5276;
	--primary-light: #2980b9;
	--primary-dark: #0e3a54;
	--accent: #27ae60;
	--accent-hover: #219a52;
	--text: #2c3e50;
	--text-light: #7f8c8d;
	--bg: #f8f9fa;
	--white: #ffffff;
	--border: #dee2e6;
	--shadow: 0 2px 8px rgba(0,0,0,0.08);
	--radius: 8px;
	--max-width: 1100px;
}

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

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	color: var(--text);
	background: var(--bg);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

a { color: var(--primary-light); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }

/* --- Header --- */
.header {
	background: var(--white);
	border-bottom: 1px solid var(--border);
	padding: 1rem 0;
}
.header .container { display: flex; justify-content: space-between; align-items: center; }
.header__logo { font-size: 1.4rem; font-weight: 700; color: var(--primary); }
.header__logo span { color: var(--accent); }
.header__nav a { margin-left: 1.5rem; color: var(--text); font-size: 0.95rem; }
.header__nav a:hover { color: var(--primary-light); text-decoration: none; }

/* --- Hero --- */
.hero {
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
	color: var(--white);
	padding: 4rem 0;
	text-align: center;
}
.hero h1 { font-size: 2.2rem; margin-bottom: 1rem; font-weight: 700; line-height: 1.2; }
.hero p { font-size: 1.15rem; opacity: 0.9; max-width: 600px; margin: 0 auto 2rem; }

/* --- Buttons --- */
.btn {
	display: inline-block;
	padding: 0.85rem 2rem;
	border-radius: var(--radius);
	font-size: 1.05rem;
	font-weight: 600;
	cursor: pointer;
	border: none;
	transition: background 0.2s, transform 0.1s;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn--primary { background: var(--accent); color: var(--white); }
.btn--primary:hover { background: var(--accent-hover); color: var(--white); }
.btn--outline { background: transparent; border: 2px solid var(--white); color: var(--white); }
.btn--outline:hover { background: rgba(255,255,255,0.1); }
.btn--large { padding: 1rem 2.5rem; font-size: 1.15rem; }
.btn--full { width: 100%; text-align: center; }

/* --- Cards --- */
.card {
	background: var(--white);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 1.5rem;
	border: 1px solid var(--border);
}

/* --- How It Works --- */
.how-it-works { padding: 3rem 0; }
.how-it-works h2 { text-align: center; margin-bottom: 2rem; font-size: 1.6rem; }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; }
.step { text-align: center; padding: 2rem 1.5rem; }
.step__number {
	display: inline-flex; align-items: center; justify-content: center;
	width: 48px; height: 48px; border-radius: 50%;
	background: var(--primary); color: var(--white);
	font-size: 1.2rem; font-weight: 700; margin-bottom: 1rem;
}
.step h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.step p { color: var(--text-light); font-size: 0.95rem; }

/* --- Trust --- */
.trust {
	background: var(--white);
	padding: 2rem 0;
	text-align: center;
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}
.trust__stats { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.trust__stat strong { display: block; font-size: 1.6rem; color: var(--primary); }
.trust__stat span { color: var(--text-light); font-size: 0.9rem; }

/* --- Footer --- */
.footer {
	background: var(--primary-dark);
	color: rgba(255,255,255,0.7);
	padding: 2rem 0;
	text-align: center;
	font-size: 0.9rem;
}
.footer a { color: rgba(255,255,255,0.9); }
.footer__links { margin-bottom: 0.5rem; }
.footer__links a { margin: 0 0.75rem; }

/* --- Badge --- */
.badge {
	display: inline-block;
	padding: 0.25rem 0.65rem;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
}
.badge--green { background: #d4edda; color: #155724; }
.badge--yellow { background: #fff3cd; color: #856404; }
.badge--blue { background: #d1ecf1; color: #0c5460; }
.badge--gray { background: #e9ecef; color: #495057; }

/* --- Disclaimer --- */
.disclaimer {
	background: #fff8e1;
	border: 1px solid #ffe082;
	border-radius: var(--radius);
	padding: 1rem 1.5rem;
	font-size: 0.85rem;
	color: #6d4c00;
	margin-top: 2rem;
}

/* --- Responsive --- */
@media (max-width: 768px) {
	.hero h1 { font-size: 1.6rem; }
	.hero p { font-size: 1rem; }
	.steps { grid-template-columns: 1fr; }
	.trust__stats { flex-direction: column; gap: 1.5rem; }
	.header__nav { display: none; }
}
