/* ═══════════════════════════════════════════════════════════════
   NUTZUNGSBEDINGUNGEN PAGE STYLES (v1.0 - Enterprise Gold Standard)
   Identisches Design-System wie Datenschutz, Impressum, AGB
   ═══════════════════════════════════════════════════════════════ */

.nutzungsbedingungen-page {
    max-width: 1440px;
    margin: 0 auto;
    padding: var(--space-lg) var(--space-lg) var(--space-2xl);
}

/* Content Container */
.nutzungsbedingungen-content {
    line-height: 1.8;
    color: var(--gray-700);
    font-size: 1rem;
}

/* Modern Section Cards */
.nutzungsbedingungen-content section {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-bottom: var(--space-lg);
    box-shadow:
        0 4px 6px rgba(35, 54, 69, 0.07),
        0 1px 3px rgba(35, 54, 69, 0.05);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.nutzungsbedingungen-content section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.nutzungsbedingungen-content section:hover {
    box-shadow:
        0 8px 16px rgba(35, 54, 69, 0.1),
        0 4px 8px rgba(229, 183, 186, 0.15);
    border-color: var(--secondary);
    transform: translateY(-2px);
}

.nutzungsbedingungen-content section:hover::before { transform: scaleX(1); }

/* Section Headers mit Icons */
.nutzungsbedingungen-content h2 {
    font-family: var(--font-headline);
    font-size: clamp(1.5rem, 3vw, 1.75rem);
    font-weight: 700;
    color: var(--primary);
    margin-top: 0;
    margin-bottom: var(--space-lg);
    line-height: 1.3;
    letter-spacing: -0.01em;
    padding-bottom: var(--space-md);
    border-bottom: 2px solid var(--gray-100);
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.nutzungsbedingungen-content h2::before {
    content: '';
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    border-radius: var(--radius-full);
    position: absolute;
    left: calc(-1 * var(--space-xl));
    top: 0;
}

/* Icon Container */
.nutzungsbedingungen-content h2 .section-icon {
    width: 64px; height: 64px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary) 100%);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(229, 183, 186, 0.3);
    transition: all var(--transition-base);
    position: relative;
}

.nutzungsbedingungen-content h2 .section-icon::after {
    content: '';
    position: absolute; inset: -2px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: -1;
}

.nutzungsbedingungen-content section:hover h2 .section-icon::after { opacity: 0.2; }
.nutzungsbedingungen-content section:hover h2 .section-icon {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 6px 16px rgba(229, 183, 186, 0.4);
}

.nutzungsbedingungen-content h2 .section-icon i {
    font-size: 1.75rem;
    color: var(--white);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.nutzungsbedingungen-content h3 {
    font-family: var(--font-headline);
    font-size: clamp(1.2rem, 2.5vw, 1.375rem);
    font-weight: 600;
    color: var(--primary);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
    line-height: 1.4;
    display: flex; align-items: center; gap: var(--space-sm);
}

.nutzungsbedingungen-content h3::before {
    content: '';
    width: 8px; height: 8px;
    background: var(--secondary);
    border-radius: var(--radius-full);
    flex-shrink: 0;
}

/* Paragraphs */
.nutzungsbedingungen-content p { margin-bottom: var(--space-md); color: var(--gray-700); line-height: 1.8; }

/* Lists */
.nutzungsbedingungen-content ul,
.nutzungsbedingungen-content ol { margin-left: 0; margin-bottom: var(--space-lg); padding-left: 0; list-style: none; }

.nutzungsbedingungen-content li {
    margin-bottom: var(--space-sm); color: var(--gray-700); line-height: 1.8;
    padding-left: var(--space-lg); position: relative;
}

.nutzungsbedingungen-content ul li::before {
    content: '✓';
    position: absolute; left: 0; top: 0;
    width: 20px; height: 20px;
    background: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary) 100%);
    border-radius: var(--radius-full);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem; color: var(--primary); font-weight: 700; flex-shrink: 0;
}

.nutzungsbedingungen-content ol { counter-reset: section-counter; }
.nutzungsbedingungen-content ol li { counter-increment: section-counter; padding-left: var(--space-xl); }
.nutzungsbedingungen-content ol li::before {
    content: counter(section-counter);
    position: absolute; left: 0; top: 0;
    width: 24px; height: 24px;
    background: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary) 100%);
    border-radius: var(--radius-full);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.875rem; color: var(--primary); font-weight: 700;
    font-family: var(--font-headline);
}

/* Strong, Links */
.nutzungsbedingungen-content strong { color: var(--primary); font-weight: 600; }
.nutzungsbedingungen-content a {
    color: var(--primary); text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all var(--transition-fast); font-weight: 500;
}
.nutzungsbedingungen-content a:hover { color: var(--secondary-dark); border-bottom-color: var(--secondary); }

/* Info Box */
.nutzungsbedingungen-content .info-box {
    padding: var(--space-lg);
    background: linear-gradient(135deg, rgba(229,183,186,0.1) 0%, rgba(229,183,186,0.05) 100%);
    border-left: 4px solid var(--secondary);
    border-radius: var(--radius-md);
    margin: var(--space-lg) 0;
    box-shadow: 0 2px 8px rgba(229,183,186,0.1);
    position: relative;
}
.nutzungsbedingungen-content .info-box::before {
    content: 'ℹ';
    position: absolute; top: var(--space-lg); right: var(--space-lg);
    width: 32px; height: 32px;
    background: var(--secondary); border-radius: var(--radius-full);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.125rem; color: var(--white); font-weight: 700;
}
.nutzungsbedingungen-content .info-box strong { display: block; margin-bottom: var(--space-xs); font-size: 1.0625rem; }

/* Contact Box */
.nutzungsbedingungen-content .contact-box {
    background: var(--white);
    border: 2px solid var(--secondary-light);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin: var(--space-lg) 0;
    box-shadow: 0 4px 12px rgba(229,183,186,0.1);
}
.nutzungsbedingungen-content .contact-box strong { display: block; margin-bottom: var(--space-sm); color: var(--primary); font-size: 1.0625rem; }
.nutzungsbedingungen-content .contact-box p { margin-bottom: var(--space-xs); }

/* Footer */
.nutzungsbedingungen-content footer {
    margin-top: var(--space-2xl);
    text-align: center;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: 0 4px 6px rgba(35,54,69,0.07), 0 1px 3px rgba(35,54,69,0.05);
}
.nutzungsbedingungen-content footer p { margin-bottom: var(--space-sm); color: var(--gray-600); font-size: 0.9375rem; }
.nutzungsbedingungen-content footer p:last-child { margin-top: var(--space-md); color: var(--gray-500); font-size: 0.875rem; }
.nutzungsbedingungen-content footer a {
    color: var(--primary); margin: 0 var(--space-sm);
    text-decoration: none; font-weight: 500;
    padding: var(--space-xs) var(--space-sm); border-radius: var(--radius-sm);
}
.nutzungsbedingungen-content footer a:hover { color: var(--white); background: var(--secondary); border-bottom: none; }

/* Animations */
.nutzungsbedingungen-content section { animation: fadeInUp 0.6s ease-out both; }
.nutzungsbedingungen-content section:nth-child(1) { animation-delay: 0.1s; }
.nutzungsbedingungen-content section:nth-child(2) { animation-delay: 0.15s; }
.nutzungsbedingungen-content section:nth-child(3) { animation-delay: 0.2s; }
.nutzungsbedingungen-content section:nth-child(4) { animation-delay: 0.25s; }
.nutzungsbedingungen-content section:nth-child(5) { animation-delay: 0.3s; }
.nutzungsbedingungen-content section:nth-child(6) { animation-delay: 0.35s; }
.nutzungsbedingungen-content section:nth-child(7) { animation-delay: 0.4s; }
.nutzungsbedingungen-content section:nth-child(8) { animation-delay: 0.45s; }
.nutzungsbedingungen-content section:nth-child(9) { animation-delay: 0.5s; }
.nutzungsbedingungen-content section:nth-child(10) { animation-delay: 0.55s; }
.nutzungsbedingungen-content section:nth-child(11) { animation-delay: 0.6s; }
.nutzungsbedingungen-content section:nth-child(12) { animation-delay: 0.65s; }

/* Responsive */
@media (max-width: 1024px) { .nutzungsbedingungen-content section { padding: var(--space-lg); } }

@media (max-width: 768px) {
    .nutzungsbedingungen-content { font-size: 0.95rem; }
    .nutzungsbedingungen-content section { padding: var(--space-md); margin-bottom: var(--space-md); }
    .nutzungsbedingungen-content h2 { font-size: 1.5rem; padding-left: var(--space-md); }
    .nutzungsbedingungen-content h2::before { left: 0; }
    .nutzungsbedingungen-content h2 .section-icon { width: 48px; height: 48px; }
    .nutzungsbedingungen-content h2 .section-icon i { font-size: 1.25rem; }
    .nutzungsbedingungen-content h3 { font-size: 1.15rem; }
    .nutzungsbedingungen-content li { padding-left: var(--space-md); }
    .nutzungsbedingungen-content ul li::before,
    .nutzungsbedingungen-content ol li::before { width: 18px; height: 18px; font-size: 0.7rem; }
}

@media (prefers-reduced-motion: reduce) {
    .nutzungsbedingungen-content section { animation: none !important; }
    .nutzungsbedingungen-content section:hover { transform: none; }
    .nutzungsbedingungen-content section:hover h2 .section-icon { transform: none !important; }
}
