/* === Exoda Car Control – Website Styles === */

:root {
    --bg-primary: #0D0D0D;
    --bg-card: #1A1A1A;
    --bg-card-hover: #222222;
    --orange-500: #FF8C00;
    --orange-600: #FF7700;
    --orange-400: #FFAA00;
    --orange-gradient: linear-gradient(135deg, #FF8C00, #FF5500);
    --orange-glow: 0 0 30px rgba(255, 140, 0, 0.15);
    --text-primary: #F0F0F0;
    --text-secondary: #999999;
    --text-muted: #666666;
    --border-color: #2A2A2A;
    --radius: 16px;
    --radius-sm: 10px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

a {
    color: var(--orange-500);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--orange-400);
}

/* === Navigation === */

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(13, 13, 13, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.nav-brand img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color var(--transition);
}

.nav-links a:hover {
    color: var(--orange-500);
}

/* === Hero === */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero-logo {
    width: 140px;
    height: 140px;
    border-radius: 28px;
    box-shadow: var(--orange-glow);
    margin-bottom: 40px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    background: var(--orange-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero .subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero .badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 100px;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.wip-banner {
    margin-top: 24px;
    padding: 14px 28px;
    background: rgba(255, 140, 0, 0.1);
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: var(--radius-sm);
    color: var(--orange-400);
    font-size: 0.95rem;
    font-weight: 500;
}

/* === Section === */

.section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 100px 24px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 48px;
}

/* === Feature Cards === */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 32px;
    transition: background var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
    background: var(--bg-card-hover);
    box-shadow: var(--orange-glow);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* === Info Boxes === */

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 32px;
}

.info-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 24px;
    text-align: center;
}

.info-box .number {
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--orange-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-box .label {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-top: 4px;
}

/* === Datenschutz Page === */

.page-header {
    padding: 120px 24px 60px;
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.page-header h1 {
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    position: relative;
}

.page-header .stand {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 8px;
    position: relative;
}

.content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px 100px;
}

.content h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.content h2:first-child {
    border-top: none;
    margin-top: 0;
    padding-top: 0;
}

.content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--orange-500);
}

.content p {
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 16px;
}

.content ul li {
    color: var(--text-secondary);
    padding: 6px 0 6px 20px;
    position: relative;
}

.content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange-500);
}

.content strong {
    color: var(--text-primary);
    font-weight: 600;
}

.content code {
    background: var(--bg-card);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.9em;
    color: var(--orange-400);
}

.content table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 24px;
    font-size: 0.9rem;
}

.content th {
    text-align: left;
    padding: 12px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--orange-500);
    font-weight: 600;
}

.content td {
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.contact-block {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 24px;
    margin-top: 16px;
    line-height: 2;
    color: var(--text-secondary);
}

/* === Footer === */

footer {
    border-top: 1px solid var(--border-color);
    padding: 40px 24px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

footer .footer-links {
    margin-top: 12px;
    display: flex;
    justify-content: center;
    gap: 24px;
}

/* === Responsive === */

@media (max-width: 640px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero .subtitle {
        font-size: 1.05rem;
    }

    .hero-logo {
        width: 100px;
        height: 100px;
        border-radius: 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .section {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }
}