* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --primary: #1a1a2e;
    --accent: #e63946;
    --accent-dark: #c1121f;
    --success: #2d6a4f;
    --gold: #d4a574;
    --bg: #ffffff;
    --bg-alt: #f5f5f7;
    --text: #1a1a2e;
    --text-light: #6b7280;
    --radius: 12px;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
}

body { font-family: 'Outfit', sans-serif; color: var(--text); line-height: 1.6; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* Header */
.header-top { background: var(--primary); color: #fff; padding: 0.5rem 0; font-size: 0.8rem; }
.header-top-content { display: flex; justify-content: center; gap: 2rem; }
.header-main { background: #fff; box-shadow: var(--shadow); position: sticky; top: 0; z-index: 100; }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 1rem 0; }
.logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; color: var(--text); }
.logo-icon { font-size: 2.2rem; }
.logo-text { display: flex; flex-direction: column; }
.logo-name { font-size: 1.3rem; font-weight: 800; line-height: 1.2; }
.logo-slogan { font-size: 0.7rem; color: var(--text-light); font-weight: 400; }
.nav-links { display: flex; gap: 1.5rem; }
.nav-links a { text-decoration: none; color: var(--text-light); font-weight: 500; transition: color 0.3s; position: relative; }
.nav-links a:hover { color: var(--accent); }
.mobile-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; }

/* Buttons */
.btn { display: inline-block; padding: 0.75rem 1.5rem; border-radius: 8px; text-decoration: none; font-weight: 600; transition: all 0.3s; font-size: 0.9rem; cursor: pointer; border: none; }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.8rem; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(230,57,70,0.3); }
.btn-secondary { background: #fff; color: var(--text); border: 2px solid var(--primary); }
.btn-secondary:hover { background: var(--primary); color: #fff; }
.btn-accent { background: var(--success); color: #fff; }
.btn-accent:hover { background: #1b4332; transform: translateY(-2px); }
.btn-outline { border: 2px solid var(--accent); color: var(--accent); background: transparent; }
.btn-outline:hover { background: var(--accent); color: #fff; }

/* Hero */
.hero { background: linear-gradient(160deg, #0f0f1a 0%, #1a1a2e 40%, #16213e 100%); color: #fff; padding: 8rem 0 6rem; }
.hero-content { max-width: 700px; }
.hero-badge { display: inline-block; background: rgba(230,57,70,0.15); color: var(--accent); padding: 0.5rem 1rem; border-radius: 50px; font-size: 0.85rem; font-weight: 600; margin-bottom: 1.5rem; border: 1px solid rgba(230,57,70,0.3); }
.hero h1 { font-size: 3.5rem; font-weight: 800; line-height: 1.1; margin-bottom: 1.5rem; }
.hero-subtitle { font-size: 1.2rem; opacity: 0.85; margin-bottom: 2.5rem; line-height: 1.7; }
.hero-buttons { display: flex; gap: 1rem; margin-bottom: 3rem; }
.hero-trust { display: flex; gap: 2rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); }
.trust-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; opacity: 0.8; }
.trust-icon { font-size: 1.2rem; }

/* Sections */
.section { padding: 6rem 0; }
.section-alt { background: var(--bg-alt); }
.section-title { font-size: 2.2rem; font-weight: 700; text-align: center; margin-bottom: 3rem; }
.section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2.5rem; }
.section-header h2 { font-size: 2rem; margin-bottom: 0; }

/* Page Header */
.page-header { background: var(--primary); color: #fff; padding: 4rem 0; text-align: center; }
.page-header h1 { font-size: 2.5rem; margin-bottom: 0.5rem; }
.page-header p { opacity: 0.8; font-size: 1.1rem; }
.page-header-accent { background: linear-gradient(135deg, var(--success) 0%, #1b4332 100%); }

/* Vehicle Grid */
.vehicle-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 1.5rem; }
.vehicle-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; padding: 1.5rem; transition: all 0.3s; border: 1px solid #eee; }
.vehicle-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.vehicle-card-top { display: flex; justify-content: space-between; margin-bottom: 1rem; }
.vehicle-status { background: var(--success); color: #fff; padding: 0.2rem 0.6rem; border-radius: 4px; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; }
.vehicle-kategorie { color: var(--text-light); font-size: 0.8rem; font-weight: 500; }
.vehicle-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.75rem; }
.vehicle-specs { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 0.75rem; font-size: 0.8rem; color: var(--text-light); }
.vehicle-details { color: var(--text-light); font-size: 0.85rem; margin-bottom: 1rem; }
.vehicle-card-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 1rem; border-top: 1px solid #eee; }
.vehicle-price { font-size: 1.4rem; font-weight: 800; color: var(--accent); }

/* Filter */
.vehicle-filter { display: flex; gap: 0.5rem; margin-bottom: 2rem; flex-wrap: wrap; }
.filter-btn { padding: 0.5rem 1.25rem; border: 2px solid #e5e7eb; border-radius: 50px; background: #fff; cursor: pointer; font-weight: 500; transition: all 0.3s; }
.filter-btn.active, .filter-btn:hover { border-color: var(--accent); background: var(--accent); color: #fff; }

/* Platform */
.platform-section { margin-top: 3rem; }
.platform-card { display: flex; align-items: center; justify-content: space-between; background: linear-gradient(135deg, #fff7ed, #fef3c7); border: 2px solid #f59e0b; border-radius: var(--radius); padding: 2rem; }
.platform-info h3 { margin-bottom: 0.25rem; }
.platform-info p { color: var(--text-light); }

/* CTA Section */
.section-cta { padding: 4rem 0; }
.cta-card { background: linear-gradient(135deg, var(--success), #1b4332); color: #fff; border-radius: 20px; padding: 4rem; display: flex; align-items: center; gap: 4rem; }
.cta-content { flex: 1; }
.cta-content h2 { font-size: 2rem; margin-bottom: 1rem; }
.cta-content p { opacity: 0.9; margin-bottom: 1.5rem; font-size: 1.1rem; }
.cta-list { list-style: none; }
.cta-list li { padding: 0.3rem 0; font-size: 1rem; }
.cta-action { text-align: center; }
.cta-note { margin-top: 0.75rem; opacity: 0.7; font-size: 0.85rem; }

/* Leistungen */
.leistungen-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.leistung-card { text-align: center; padding: 2.5rem 1.5rem; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); transition: transform 0.3s; }
.leistung-card:hover { transform: translateY(-4px); }
.leistung-icon { font-size: 2.5rem; display: block; margin-bottom: 1rem; }
.leistung-card h3 { margin-bottom: 0.5rem; }
.leistung-card p { color: var(--text-light); font-size: 0.9rem; }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.about-lead { font-size: 1.1rem; line-height: 1.8; margin-bottom: 2rem; }
.stats-row { display: flex; gap: 2rem; }
.stat { text-align: center; }
.stat-number { display: block; font-size: 2.5rem; font-weight: 800; color: var(--accent); }
.stat-label { font-size: 0.8rem; color: var(--text-light); }
.about-values { display: flex; flex-direction: column; gap: 1.5rem; }
.value-item { display: flex; gap: 1rem; align-items: start; }
.value-icon { font-size: 1.5rem; flex-shrink: 0; }
.value-item h4 { margin-bottom: 0.25rem; }
.value-item p { color: var(--text-light); font-size: 0.9rem; }

/* Process */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-bottom: 4rem; }
.process-step { text-align: center; padding: 2rem; }
.process-number { width: 50px; height: 50px; background: var(--accent); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; font-weight: 800; margin: 0 auto 1rem; }
.process-step h3 { margin-bottom: 0.5rem; }
.process-step p { color: var(--text-light); font-size: 0.9rem; }

/* Ankauf */
.ankauf-cta { margin-bottom: 4rem; }
.ankauf-cta-card { background: var(--bg-alt); border-radius: var(--radius); padding: 3rem; text-align: center; }
.ankauf-cta-card h2 { margin-bottom: 0.5rem; }
.ankauf-cta-card > p { color: var(--text-light); margin-bottom: 2rem; }
.ankauf-cta-buttons { display: flex; gap: 1rem; justify-content: center; margin-bottom: 2rem; }
.ankauf-checklist { text-align: left; max-width: 400px; margin: 0 auto; }
.ankauf-checklist h4 { margin-bottom: 0.5rem; }
.ankauf-checklist ul { list-style: none; }
.ankauf-checklist li { padding: 0.3rem 0; padding-left: 1.5rem; position: relative; }
.ankauf-checklist li::before { content: "ðŸ“"; position: absolute; left: 0; }

/* Vorteile */
.vorteile-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.vorteil-card { padding: 2rem; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); }
.vorteil-icon { font-size: 2rem; display: block; margin-bottom: 0.75rem; }
.vorteil-card h3 { margin-bottom: 0.5rem; }
.vorteil-card p { color: var(--text-light); font-size: 0.9rem; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-card { background: #fff; padding: 2.5rem; border-radius: var(--radius); box-shadow: var(--shadow); }
.contact-card h3 { margin-bottom: 1.5rem; }
.contact-card h4 { margin-top: 1.5rem; margin-bottom: 0.75rem; }
.contact-details p { margin-bottom: 0.5rem; }
.contact-details a { color: var(--accent); text-decoration: none; }
.hours-grid { display: grid; gap: 0.25rem; }
.hours-row { display: flex; justify-content: space-between; padding: 0.25rem 0; font-size: 0.9rem; }
.map-container { border-radius: var(--radius); overflow: hidden; min-height: 400px; }

/* Footer */
.footer { background: var(--primary); color: #fff; padding: 5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 3rem; }
.footer-brand h3 { margin-bottom: 0.5rem; font-size: 1.3rem; }
.footer h4 { margin-bottom: 1rem; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.5px; }
.footer p, .footer a { color: rgba(255,255,255,0.7); font-size: 0.9rem; text-decoration: none; display: block; margin-bottom: 0.4rem; }
.footer a:hover { color: #fff; }
.footer-platforms { margin-top: 1.5rem; }
.platform-badge { display: inline-block; background: rgba(255,255,255,0.1); padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.8rem; margin-top: 0.5rem; border: 1px solid rgba(255,255,255,0.2); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; text-align: center; }
.footer-legal { font-size: 0.75rem; margin-top: 0.5rem; }

/* Sticky CTA */
.cta-sticky { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 99; padding: 0.75rem; background: #fff; box-shadow: 0 -4px 20px rgba(0,0,0,0.1); gap: 0.5rem; }
.cta-sticky-btn { flex: 1; text-align: center; padding: 0.75rem; border-radius: 8px; text-decoration: none; font-weight: 600; font-size: 0.9rem; background: var(--accent); color: #fff; }
.cta-sell { background: var(--success); }

/* Responsive */
@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .mobile-toggle { display: block; }
    .hero { padding: 5rem 0 4rem; }
    .hero h1 { font-size: 2.2rem; }
    .hero-buttons { flex-direction: column; }
    .hero-trust { flex-direction: column; gap: 0.75rem; }
    .header-top-content { font-size: 0.7rem; gap: 1rem; }
    .cta-sticky { display: flex; }
    .cta-card { flex-direction: column; padding: 2.5rem; gap: 2rem; }
    .about-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .stats-row { justify-content: center; }
    .vehicle-grid { grid-template-columns: 1fr; }
    .platform-card { flex-direction: column; text-align: center; gap: 1rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .section-header { flex-direction: column; gap: 1rem; }
    .ankauf-cta-buttons { flex-direction: column; }
}
