:root {
    --black: #0a0a0a;
    --white: #ffffff;
    --red: #c41a1f;
    --red-glow: rgba(196, 26, 31, 0.15);
    --gray: #888888;
    --gray-light: #b0b0b0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.7;
    min-height: 100vh;
}

.legal-container { max-width: 720px; }

/* Nav, logo, nav-back styles inherited from base.css */

/* Subtle back button */
.nav-cta-muted {
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--gray);
}

.nav-cta-muted:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
    background: transparent;
}

.legal-main { padding: 120px 0 80px; }

.hero {
    text-align: center;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero p {
    color: var(--gray);
    margin-top: 12px;
    font-size: 0.9375rem;
}

.grid {
    display: grid;
    gap: 16px;
}
.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.card {
    background: linear-gradient(145deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
    padding: 28px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(196, 26, 31, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.card:hover {
    border-color: rgba(196, 26, 31, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 0 0 1px rgba(196, 26, 31, 0.1);
}
.card:hover::before { opacity: 1; }

.card-featured {
    background: linear-gradient(145deg, rgba(196, 26, 31, 0.08) 0%, rgba(255,255,255,0.02) 100%);
    border-color: rgba(196, 26, 31, 0.2);
}

.card-label {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--red);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.card-label::before {
    content: '';
    width: 8px; height: 8px;
    background: var(--red);
    border-radius: 2px;
    opacity: 0.8;
}

.card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.card p {
    color: var(--gray-light);
    font-size: 0.9375rem;
    margin-bottom: 6px;
    line-height: 1.75;
}
.card p:last-child { margin-bottom: 0; }
.card p strong { color: var(--white); font-weight: 600; }

a { color: var(--red); text-decoration: none; transition: all 0.3s ease; }
a:hover { color: var(--white); }

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    margin-top: 8px;
}
.link-arrow svg {
    width: 14px; height: 14px;
    transition: transform 0.3s ease;
}
.link-arrow:hover svg { transform: translateX(3px); }

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    margin: 32px 0;
}

/* Contact Card - Hauptkarte oben */
.contact-card {
    background: linear-gradient(145deg, rgba(196, 26, 31, 0.08) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(196, 26, 31, 0.2);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 32px;
}
.contact-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.contact-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(196, 26, 31, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-card-icon svg {
    width: 24px;
    height: 24px;
    color: var(--red);
}
.contact-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.3px;
    margin-bottom: 4px;
}
.contact-card-subtitle {
    font-size: 0.875rem;
    color: var(--gray);
}
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.contact-item label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray);
    margin-bottom: 6px;
}
.contact-item p {
    color: var(--white);
    font-size: 0.9375rem;
    line-height: 1.6;
}
.contact-item a {
    color: var(--white);
}
.contact-item a:hover {
    color: var(--red);
}

/* Legal Sections */
.legal-section {
    padding: 24px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.legal-section:last-of-type {
    border-bottom: none;
}
.legal-section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.legal-section-icon {
    width: 32px;
    height: 32px;
    background: rgba(196, 26, 31, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.legal-section-icon svg {
    width: 16px;
    height: 16px;
    color: var(--red);
}
.legal-section h2 {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.2px;
}
.legal-section p {
    color: var(--gray-light);
    font-size: 0.9375rem;
    line-height: 1.75;
}
.legal-section p + p {
    margin-top: 8px;
}

@media (max-width: 640px) {
    .contact-grid { grid-template-columns: 1fr; }
    .contact-card { padding: 24px; }
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 16px;
}
.right-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
    font-size: 0.875rem;
    color: var(--gray-light);
    transition: all 0.3s ease;
}
.right-item:hover {
    background: rgba(255,255,255,0.06);
    color: var(--white);
}
.right-item svg {
    width: 16px; height: 16px;
    color: var(--red);
    flex-shrink: 0;
}

.legal-basis {
    display: inline-block;
    background: rgba(196, 26, 31, 0.15);
    color: var(--red);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 8px;
}

/* Footer styles inherited from base.css */

@media (max-width: 640px) {
    .hero h1 { font-size: 2rem; }
    .grid-2 { grid-template-columns: 1fr; }
    .card { padding: 24px; }
    .rights-grid { grid-template-columns: 1fr; }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.card {
    animation: fadeUp 0.6s ease forwards;
    opacity: 0;
}
.card:nth-child(1) { animation-delay: 0.05s; }
.card:nth-child(2) { animation-delay: 0.1s; }
.card:nth-child(3) { animation-delay: 0.15s; }
.card:nth-child(4) { animation-delay: 0.2s; }
.card:nth-child(5) { animation-delay: 0.25s; }
.card:nth-child(6) { animation-delay: 0.3s; }

.legal-ref { color: var(--gray); }
