/*
Theme Name: FoodYcation Landingpage
Theme URI: https://egger-bot.de/foodswipe/
Author: Egger
Description: Marketing-Landingpage für die Restaurant-Swipe-App FoodYcation. Enthält Hero mit App-Vorschau, Funktionsübersicht, Filter- und Küchenliste, Reise-Anwendungsfall, Datenschutz-Abschnitt, FAQ und Call-to-Action. Schrift "Bricolage Grotesque" ist selbst gehostet (kein Google-Fonts-CDN, DSGVO-freundlich).
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: foodycation
Tags: landing-page, one-page, custom-logo, custom-menu, translation-ready
*/

/* ====================================================================== */
/* 1. Schrift (selbst gehostet)                                           */
/* ====================================================================== */
@font-face {
	font-family: 'Bricolage Grotesque';
	font-style: normal;
	font-weight: 200 800;
	font-display: swap;
	src: url('assets/fonts/bricolage-grotesque.woff2') format('woff2');
}

/* ====================================================================== */
/* 2. Variablen & Basis                                                   */
/* ====================================================================== */
:root {
	--brand: #ff5a5f;
	--brand-2: #ff385c;
	--brand-3: #ff9f1c;
	--grad: linear-gradient(135deg, #ff9f1c 0%, #ff385c 100%);
	--text: #16181d;
	--muted: #666e7a;
	--bg: #ffffff;
	--bg-alt: #f6f7f9;
	--dark: #0e0f13;
	--dark-2: #191c22;
	--border: #e6e8ec;
	--radius: 18px;
	--shadow-sm: 0 2px 10px rgba(20, 22, 28, .06);
	--shadow: 0 14px 40px rgba(20, 22, 28, .10);
	--shadow-lg: 0 30px 70px rgba(20, 22, 28, .18);
	--font-display: 'Bricolage Grotesque', -apple-system, "Segoe UI", Roboto, system-ui, sans-serif;
	--font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--header-h: 68px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 17px;
	line-height: 1.65;
	color: var(--text);
	background: var(--bg);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-2); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
	font-family: var(--font-display);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -.02em;
	margin: 0 0 .5em;
	color: var(--text);
}
h1 { font-size: clamp(2.3rem, 6vw, 4.1rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); }
h3 { font-size: 1.15rem; }
p { margin: 0 0 1em; }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden; clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}
.skip-link:focus {
	position: fixed; top: 10px; left: 10px; z-index: 999;
	width: auto; height: auto; clip: auto;
	background: #fff; padding: 12px 18px; border-radius: 10px;
	box-shadow: var(--shadow);
}

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 820px; }

/* ====================================================================== */
/* 3. Buttons                                                             */
/* ====================================================================== */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	font-family: var(--font-display);
	font-weight: 700; font-size: 1rem;
	padding: 14px 26px;
	border: none; border-radius: 100px;
	cursor: pointer;
	transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
	text-align: center;
	white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 8px 24px rgba(255, 56, 92, .32); }
.btn-primary:hover { box-shadow: 0 14px 34px rgba(255, 56, 92, .42); color: #fff; }
.btn-ghost { background: rgba(255, 255, 255, .08); color: #fff; border: 1.5px solid rgba(255, 255, 255, .28); }
.btn-ghost:hover { background: rgba(255, 255, 255, .16); color: #fff; }
.btn-light { background: #fff; color: var(--brand-2); box-shadow: 0 10px 30px rgba(0, 0, 0, .16); }
.btn-light:hover { color: var(--brand-2); }
.btn-sm { padding: 10px 18px; font-size: .92rem; }
.btn-lg { padding: 17px 34px; font-size: 1.06rem; }

/* ====================================================================== */
/* 4. Header                                                              */
/* ====================================================================== */
.site-header {
	position: fixed; top: 0; left: 0; right: 0; z-index: 100;
	background: rgba(14, 15, 19, .72);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	transition: background .25s ease, box-shadow .25s ease;
	border-bottom: 1px solid rgba(255, 255, 255, .07);
}
.site-header.scrolled { background: rgba(14, 15, 19, .94); box-shadow: 0 6px 24px rgba(0, 0, 0, .22); }
.header-inner { display: flex; align-items: center; gap: 18px; min-height: var(--header-h); }

.brand { display: flex; align-items: center; gap: 9px; flex-shrink: 0; }
.brand:hover { text-decoration: none; }
.brand-mark { width: 36px; height: auto; }
.brand-name {
	font-family: var(--font-display); font-weight: 800; font-size: 1.28rem;
	letter-spacing: -.03em; color: #fff;
}
.brand-accent { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

.nav { display: flex; gap: 26px; margin-left: auto; }
.nav a, .nav-menu a {
	color: rgba(255, 255, 255, .82); font-size: .95rem; font-weight: 500;
	transition: color .18s ease;
}
.nav a:hover, .nav-menu a:hover { color: #fff; text-decoration: none; }
.nav-menu { display: flex; gap: 26px; list-style: none; margin: 0; padding: 0; }
.nav-cta { margin-left: 4px; }

.burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; margin-left: auto; }
.burger span {
	display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px;
	transition: transform .25s ease, opacity .2s ease;
}
.burger span + span { margin-top: 5px; }
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
	display: none; flex-direction: column; gap: 4px;
	background: rgba(14, 15, 19, .98); padding: 12px 24px 24px;
	border-top: 1px solid rgba(255, 255, 255, .08);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: #fff; padding: 13px 0; font-weight: 600; border-bottom: 1px solid rgba(255, 255, 255, .07); }
.mobile-menu a:hover { text-decoration: none; }
.mobile-menu .btn { margin-top: 14px; border-bottom: none; }

/* ====================================================================== */
/* 5. Hero                                                                */
/* ====================================================================== */
.hero {
	position: relative;
	background: radial-gradient(1100px 620px at 15% -10%, #2a1e2c 0%, var(--dark) 55%);
	color: #fff;
	padding: calc(var(--header-h) + 70px) 0 90px;
	overflow: hidden;
}
.hero-glow {
	position: absolute; top: -160px; right: -140px;
	width: 620px; height: 620px; border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 90, 95, .32) 0%, rgba(255, 159, 28, .12) 45%, transparent 70%);
	filter: blur(20px); pointer-events: none;
}
.hero-inner {
	display: grid; grid-template-columns: 1.05fr .95fr;
	gap: 60px; align-items: center; position: relative; z-index: 1;
}
.eyebrow {
	font-family: var(--font-display); font-weight: 700;
	text-transform: uppercase; letter-spacing: .16em; font-size: .78rem;
	color: var(--brand-3); margin: 0 0 14px;
}
.hero h1 { color: #fff; margin-bottom: 20px; }
.grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .lead { font-size: 1.14rem; color: rgba(255, 255, 255, .8); max-width: 33em; margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-badges {
	display: flex; flex-wrap: wrap; gap: 10px 22px;
	list-style: none; margin: 0; padding: 0;
	font-size: .92rem; color: rgba(255, 255, 255, .68);
}

/* Phone-Mockup ---------------------------------------------------------- */
.hero-visual { position: relative; display: flex; justify-content: center; }
.phone {
	position: relative; width: 320px; max-width: 100%;
	background: #0b0c0f; border-radius: 46px; padding: 12px;
	box-shadow: var(--shadow-lg), 0 0 0 2px rgba(255, 255, 255, .08);
}
.phone-notch {
	position: absolute; top: 19px; left: 50%; transform: translateX(-50%);
	width: 86px; height: 20px; background: #0b0c0f; border-radius: 100px; z-index: 4;
}
.phone-screen {
	background: #f4f5f7; border-radius: 36px; overflow: hidden;
	display: flex; flex-direction: column; height: 620px;
	padding-top: 30px;                 /* Platz für die Notch (Status-Bereich) */
	background-image: linear-gradient(#fff 30px, transparent 30px);
}

.app-bar {
	display: flex; align-items: center; gap: 5px;
	background: #fff; padding: 9px 10px; border-bottom: 1px solid var(--border);
	font-size: .72rem;
}
.app-bar-spacer { flex: 1; }
.app-icon { font-size: .95rem; }
.app-pill {
	background: #e6f4ea; color: #137333; font-weight: 700;
	font-size: .62rem; padding: 3px 7px; border-radius: 100px; white-space: nowrap;
}

.mock-stack { position: relative; flex: 1; margin: 10px 12px 4px; }
.mock-card {
	position: absolute; inset: 0; background: #fff; border-radius: 18px;
	box-shadow: 0 8px 26px rgba(0, 0, 0, .13);
	display: flex; flex-direction: column; overflow: hidden;
}
.mock-card-back2 { transform: translateY(14px) scale(.9); opacity: .5; }
.mock-card-back1 { transform: translateY(7px) scale(.95); opacity: .75; }
.mock-card-front { transform: rotate(-2.5deg); animation: cardFloat 5s ease-in-out infinite; }
@keyframes cardFloat {
	0%, 100% { transform: rotate(-2.5deg) translateY(0); }
	50% { transform: rotate(-1.2deg) translateY(-7px); }
}
@media (prefers-reduced-motion: reduce) { .mock-card-front { animation: none; } }

.mock-photo {
	position: relative; flex: 1;
	background: linear-gradient(150deg, #f0a860, #e2613f 55%, #b8434f);
	display: flex; align-items: flex-end;
}
.mock-photo-inner {
	position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
	font-size: 3.6rem; opacity: .92;
}
.mock-photo::after {
	content: ''; position: absolute; inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .1) 48%, transparent 70%);
}
.mock-dots { position: absolute; top: 8px; left: 10px; right: 10px; display: flex; gap: 3px; z-index: 3; }
.mock-dots span { flex: 1; height: 2.5px; border-radius: 3px; background: rgba(255, 255, 255, .42); }
.mock-dots span.on { background: #fff; }
.mock-stamp {
	position: absolute; top: 26px; right: 12px; z-index: 3;
	border: 2.5px solid #22c55e; color: #22c55e;
	font-weight: 900; font-size: .68rem; text-transform: uppercase; letter-spacing: .05em;
	padding: 3px 9px; border-radius: 8px; transform: rotate(13deg);
	background: rgba(255, 255, 255, .1);
}
.mock-title { position: relative; z-index: 2; padding: 12px 13px; color: #fff; width: 100%; }
.mock-title strong { display: block; font-family: var(--font-display); font-size: 1.05rem; line-height: 1.2; }
.mock-meta {
	display: flex; flex-wrap: wrap; gap: 3px 9px;
	font-size: .64rem; font-weight: 600; margin-top: 3px;
}
.mock-meta em { font-style: normal; opacity: .7; }
.mock-meta .open { color: #7cfcb4; }

.mock-body { background: #fff; padding: 9px 12px 12px; }
.mock-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 6px; }
.mock-tag {
	font-size: .58rem; font-weight: 700; background: var(--bg-alt); color: var(--muted);
	padding: 3px 7px; border-radius: 100px;
}
.mock-tag.accent { background: rgba(255, 56, 92, .1); color: var(--brand-2); }
.mock-summary { font-size: .66rem; color: var(--muted); margin: 0; line-height: 1.4; }

.mock-controls { display: flex; align-items: center; justify-content: center; gap: 11px; padding: 8px 0 10px; }
.mock-btn {
	background: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center;
	box-shadow: 0 3px 12px rgba(0, 0, 0, .13); font-weight: 700;
}
.mock-btn.undo { width: 32px; height: 32px; font-size: .85rem; color: #f0a500; }
.mock-btn.nope { width: 43px; height: 43px; font-size: 1.15rem; color: #ef4444; }
.mock-btn.info { width: 32px; height: 32px; font-size: .8rem; color: #3b82f6; }
.mock-btn.like { width: 43px; height: 43px; font-size: 1.1rem; color: #22c55e; }

.mock-nav {
	display: flex; background: #fff; border-top: 1px solid var(--border);
	padding: 7px 0 9px;
}
.mock-nav span {
	flex: 1; display: flex; flex-direction: column; align-items: center; gap: 1px;
	font-size: .82rem; color: var(--muted);
}
.mock-nav em { font-style: normal; font-size: .52rem; font-weight: 600; }
.mock-nav .active { color: var(--brand); }

.swipe-hint {
	position: absolute; top: 42%;
	font-family: var(--font-display); font-weight: 800; font-size: .8rem;
	padding: 7px 13px; border-radius: 100px; white-space: nowrap;
	background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .18);
	color: rgba(255, 255, 255, .75); backdrop-filter: blur(6px);
}
.swipe-hint-left { left: -6px; }
.swipe-hint-right { right: -6px; color: #7cfcb4; border-color: rgba(124, 252, 180, .3); }

/* ====================================================================== */
/* 6. Sektionen allgemein                                                 */
/* ====================================================================== */
.section { padding: 88px 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--dark); color: #fff; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .section-sub, .section-dark p { color: rgba(255, 255, 255, .72); }

.section-head { max-width: 42em; margin: 0 auto 52px; text-align: center; }
.section-sub { font-size: 1.08rem; color: var(--muted); margin: 0; }

/* Reveal-Animation ------------------------------------------------------ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
	.reveal { opacity: 1; transform: none; transition: none; }
}

/* ====================================================================== */
/* 7. Schritte                                                            */
/* ====================================================================== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.step {
	position: relative; background: #fff; border: 1px solid var(--border);
	border-radius: var(--radius); padding: 34px 26px 28px;
	box-shadow: var(--shadow-sm);
}
.step-num {
	position: absolute; top: -16px; left: 26px;
	width: 36px; height: 36px; border-radius: 50%;
	background: var(--grad); color: #fff;
	font-family: var(--font-display); font-weight: 800; font-size: 1.05rem;
	display: flex; align-items: center; justify-content: center;
	box-shadow: 0 6px 16px rgba(255, 56, 92, .3);
}
.step-icon { font-size: 2rem; display: block; margin: 6px 0 12px; }
.step h3 { margin-bottom: .4em; }
.step p { color: var(--muted); margin: 0; font-size: .98rem; }

/* ====================================================================== */
/* 8. Info-Grid (Karten-Anatomie)                                         */
/* ====================================================================== */
.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px 34px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; }
.info-icon {
	flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px;
	background: #fff; border: 1px solid var(--border);
	display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
	box-shadow: var(--shadow-sm);
}
.info-item h3 { font-size: 1.05rem; margin-bottom: .25em; }
.info-item p { color: var(--muted); font-size: .96rem; margin: 0; }

/* ====================================================================== */
/* 9. Feature-Grid                                                        */
/* ====================================================================== */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(258px, 1fr)); gap: 22px; }
.feature-card {
	background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
	padding: 26px 24px; box-shadow: var(--shadow-sm);
	transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #d9dce2; }
.feature-icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 46px; height: 46px; border-radius: 13px;
	background: linear-gradient(135deg, rgba(255, 159, 28, .16), rgba(255, 56, 92, .14));
	font-size: 1.3rem; margin-bottom: 15px;
}
.feature-card h3 { margin-bottom: .35em; }
.feature-card p { color: var(--muted); font-size: .95rem; margin: 0; }

/* ====================================================================== */
/* 10. Split (Filter & Küchen)                                            */
/* ====================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: start; }
.split-title { font-size: 1.2rem; margin: 0 0 14px; }
.split-title + .check-list { margin-bottom: 30px; }
.split-text { color: var(--muted); margin-bottom: 18px; }

.check-list { list-style: none; margin: 0; padding: 0; }
.check-list li {
	position: relative; padding-left: 30px; margin-bottom: 10px;
	font-size: .98rem;
}
.check-list li::before {
	content: '✓'; position: absolute; left: 0; top: 0;
	width: 20px; height: 20px; border-radius: 50%;
	background: rgba(34, 197, 94, .14); color: #16a34a;
	font-size: .72rem; font-weight: 800;
	display: flex; align-items: center; justify-content: center;
}
.check-list-lg li { font-size: 1.04rem; margin-bottom: 13px; }

.chip-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
	background: #fff; border: 1px solid var(--border); border-radius: 100px;
	padding: 8px 15px; font-size: .89rem; font-weight: 600; color: var(--text);
	box-shadow: var(--shadow-sm);
	transition: border-color .18s ease, color .18s ease, transform .18s ease;
}
.chip:hover { border-color: var(--brand); color: var(--brand-2); transform: translateY(-2px); }

/* ====================================================================== */
/* 11. Reise-Sektion                                                      */
/* ====================================================================== */
.travel { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.travel-copy .lead { font-size: 1.1rem; color: var(--muted); }
.travel-copy .check-list { margin: 24px 0 30px; }

.travel-visual { display: flex; justify-content: center; }
.mini-card {
	width: 100%; max-width: 380px; background: #fff;
	border: 1px solid var(--border); border-radius: 22px; padding: 16px;
	box-shadow: var(--shadow);
}
.mini-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.mini-title { font-family: var(--font-display); font-weight: 800; font-size: 1.08rem; }
.mini-select {
	font-size: .75rem; font-weight: 600; color: var(--muted);
	background: var(--bg-alt); border-radius: 9px; padding: 6px 10px;
}
.mini-row {
	display: flex; align-items: center; gap: 12px;
	padding: 10px; border-radius: 14px; background: var(--bg-alt); margin-bottom: 9px;
}
.mini-thumb {
	width: 46px; height: 46px; border-radius: 11px; flex-shrink: 0;
	background: var(--grad); display: flex; align-items: center; justify-content: center;
	font-size: 1.4rem;
}
.mini-info { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.mini-info strong { font-size: .95rem; font-weight: 700; }
.mini-info em { font-style: normal; font-size: .78rem; color: var(--muted); }
.mini-badge {
	font-size: .58rem; font-weight: 800; color: #137333; background: #e6f4ea;
	border-radius: 6px; padding: 2px 6px; vertical-align: middle; margin-left: 4px;
}
.mini-act { color: #3b82f6; font-size: .95rem; }

/* ====================================================================== */
/* 12. Datenschutz                                                        */
/* ====================================================================== */
.privacy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.privacy-item {
	background: var(--dark-2); border: 1px solid rgba(255, 255, 255, .08);
	border-radius: var(--radius); padding: 26px 24px;
}
.privacy-icon { font-size: 1.6rem; display: block; margin-bottom: 12px; }
.privacy-item h3 { font-size: 1.06rem; margin-bottom: .35em; }
.privacy-item p { font-size: .95rem; margin: 0; }
.privacy-note {
	margin: 36px auto 0; max-width: 46em; text-align: center;
	font-size: .88rem; color: rgba(255, 255, 255, .5) !important;
}

/* ====================================================================== */
/* 13. FAQ                                                                */
/* ====================================================================== */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
	background: #fff; border: 1px solid var(--border); border-radius: 14px;
	padding: 0; overflow: hidden; box-shadow: var(--shadow-sm);
}
.faq-item summary {
	cursor: pointer; padding: 19px 52px 19px 22px; position: relative;
	font-family: var(--font-display); font-weight: 700; font-size: 1.03rem;
	list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
	content: '+'; position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
	font-size: 1.4rem; font-weight: 400; color: var(--brand-2); line-height: 1;
	transition: transform .22s ease;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p { margin: 0; padding: 0 22px 20px; color: var(--muted); font-size: .98rem; }

/* ====================================================================== */
/* 14. CTA                                                                */
/* ====================================================================== */
.cta-section { padding: 0 0 88px; }
.cta-box {
	background: var(--grad); border-radius: 30px;
	padding: 66px 40px; text-align: center; color: #fff;
	box-shadow: 0 26px 60px rgba(255, 56, 92, .3);
}
.cta-emoji { font-size: 3rem; display: block; margin-bottom: 12px; }
.cta-box h2 { color: #fff; max-width: 22em; margin: 0 auto .5em; }
.cta-box p { color: rgba(255, 255, 255, .92); max-width: 34em; margin: 0 auto 28px; font-size: 1.1rem; }
.cta-fine { font-size: .88rem !important; color: rgba(255, 255, 255, .78) !important; margin: 20px 0 0 !important; }

/* ====================================================================== */
/* 15. Footer                                                             */
/* ====================================================================== */
.site-footer { background: var(--dark); color: rgba(255, 255, 255, .68); padding: 62px 0 26px; }
.footer-inner {
	display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
	gap: 40px; padding-bottom: 40px;
	border-bottom: 1px solid rgba(255, 255, 255, .09);
}
.footer-brand .brand { margin-bottom: 12px; }
.footer-claim {
	font-family: var(--font-display); font-weight: 700; letter-spacing: .08em;
	text-transform: uppercase; font-size: .76rem; color: var(--brand-3); margin: 0 0 12px;
}
.footer-note { font-size: .88rem; color: rgba(255, 255, 255, .5); margin: 0; max-width: 30em; }
.footer-col { display: flex; flex-direction: column; gap: 9px; }
.footer-col h3 {
	color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .12em;
	margin: 0 0 6px;
}
.footer-col a, .footer-col li a { color: rgba(255, 255, 255, .68); font-size: .95rem; }
.footer-col a:hover { color: #fff; text-decoration: none; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.footer-cta-col p { font-size: .92rem; color: rgba(255, 255, 255, .55); margin: 0 0 14px; }
.footer-cta-col .btn { align-self: flex-start; }

.footer-bottom {
	display: flex; flex-wrap: wrap; gap: 8px 24px;
	justify-content: space-between; padding-top: 22px;
	font-size: .82rem; color: rgba(255, 255, 255, .42);
}
.footer-bottom p { margin: 0; }
.footer-legal { max-width: 40em; }

/* ====================================================================== */
/* 16. Inhaltsseiten (Datenschutz/Impressum)                              */
/* ====================================================================== */
.section .entry { padding-bottom: 30px; border-bottom: 1px solid var(--border); margin-bottom: 30px; }
.entry-title { font-size: 1.5rem; }
.prose h2 { font-size: 1.6rem; margin-top: 1.6em; }
.prose h3 { font-size: 1.2rem; margin-top: 1.4em; }
.prose ul, .prose ol { padding-left: 1.4em; }
.prose li { margin-bottom: .5em; }
.prose table { width: 100%; border-collapse: collapse; margin: 1.4em 0; }
.prose th, .prose td { border: 1px solid var(--border); padding: 10px 12px; text-align: left; }
.prose th { background: var(--bg-alt); }
.pagination { margin-top: 30px; }
.page-numbers { padding: 8px 13px; border: 1px solid var(--border); border-radius: 9px; margin-right: 6px; }

/* ====================================================================== */
/* 17. Responsive                                                         */
/* ====================================================================== */
@media (max-width: 1040px) {
	.hero-inner { grid-template-columns: 1fr; gap: 50px; }
	.hero-copy { text-align: center; }
	.hero .lead { margin-left: auto; margin-right: auto; }
	.hero-actions, .hero-badges { justify-content: center; }
	.travel { grid-template-columns: 1fr; gap: 40px; }
	.privacy-grid { grid-template-columns: repeat(2, 1fr); }
	.footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 880px) {
	.nav, .nav-cta { display: none; }
	.burger { display: block; }
	.steps { grid-template-columns: 1fr; gap: 34px; }
	.info-grid { grid-template-columns: 1fr; }
	.split { grid-template-columns: 1fr; gap: 34px; }
}

@media (max-width: 620px) {
	body { font-size: 16px; }
	.container { padding: 0 18px; }
	.section { padding: 62px 0; }
	.section-head { margin-bottom: 38px; }
	.hero { padding: calc(var(--header-h) + 44px) 0 66px; }
	.hero-badges { font-size: .84rem; gap: 8px 16px; }
	.btn { width: 100%; }
	.btn-sm, .chip, .footer-cta-col .btn { width: auto; }
	.hero-actions { flex-direction: column; }
	.privacy-grid { grid-template-columns: 1fr; }
	.footer-inner { grid-template-columns: 1fr; gap: 30px; }
	.cta-box { padding: 46px 22px; border-radius: 22px; }
	.swipe-hint { display: none; }
	.phone { width: 290px; }
	.phone-screen { height: 560px; }
}
