/* ===== SSK KFZ Gutachter Hamburg - Main Stylesheet ===== */

/* ===== CSS VARIABLES ===== */
:root {
    /* Logo Farben - Blau/Türkis Palette */
    --ssk-primary: #0ea5e9;
    --ssk-primary-light: #38bdf8;
    --ssk-primary-dark: #0284c7;
    --ssk-secondary: #1e40af;
    --ssk-secondary-light: #3b82f6;
    --ssk-accent: #f97316;
    --ssk-accent-light: #fb923c;
    
    /* Backgrounds */
    --ssk-dark: #020617;
    --ssk-darker: #0f172a;
    --ssk-card: #1e293b;
    
    /* Text */
    --ssk-white: #ffffff;
    --ssk-gray-100: #f1f5f9;
    --ssk-gray-300: #cbd5e1;
    --ssk-gray-400: #b8c4d4;
    --ssk-gray-500: #64748b;
    
    /* Status */
    --ssk-success: #22c55e;
    --ssk-danger: #ef4444;
    --ssk-warning: #f97316;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--ssk-dark);
    color: var(--ssk-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--ssk-darker);
}

::-webkit-scrollbar-thumb {
    background: var(--ssk-primary-dark);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--ssk-primary);
}

/* ===== UTILITIES ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 6rem 0;
    position: relative;
}

.text-primary { color: var(--ssk-primary); }
.text-accent { color: var(--ssk-accent); }
.text-success { color: var(--ssk-success); }
.text-danger { color: var(--ssk-danger); }
.text-warning { color: var(--ssk-warning); }

.gradient-text {
    background: linear-gradient(135deg, var(--ssk-primary) 0%, var(--ssk-primary-light) 50%, var(--ssk-secondary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(60px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(14, 165, 233, 0.3); }
    50% { box-shadow: 0 0 40px rgba(14, 165, 233, 0.6); }
}

@keyframes blob {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    25% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
    50% { border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%; }
    75% { border-radius: 60% 40% 60% 30% / 70% 30% 50% 60%; }
}

.animate-fade-in-up { animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.animate-fade-in-down { animation: fadeInDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.animate-fade-in-right { animation: fadeInRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }

.delay-200 { animation-delay: 0.2s; opacity: 0; }
.delay-300 { animation-delay: 0.3s; opacity: 0; }
.delay-400 { animation-delay: 0.4s; opacity: 0; }
.delay-500 { animation-delay: 0.5s; opacity: 0; }

.pulse-glow { animation: pulseGlow 2s ease-in-out infinite; }

/* ===== GLASS MORPHISM ===== */
.glass {
    background: rgba(14, 165, 233, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(14, 165, 233, 0.15);
}

.glass-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.6) 0%, rgba(30, 41, 59, 0.3) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(14, 165, 233, 0.1);
    border-radius: 20px;
    padding: 2rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}

.btn svg {
    width: 20px;
    height: 20px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--ssk-primary) 0%, var(--ssk-primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(14, 165, 233, 0.4);
}

.btn-accent {
    background: linear-gradient(135deg, var(--ssk-accent) 0%, var(--ssk-accent-light) 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.3);
}

.btn-accent:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--ssk-white);
    border: 2px solid var(--ssk-primary);
}

.btn-outline:hover {
    background: var(--ssk-primary);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 33px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.5s ease;
}

.nav.scrolled {
    background: rgba(2, 6, 23, 0.85);
    backdrop-filter: blur(20px);
    padding: 0.75rem 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-logo:hover img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--ssk-gray-300);
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--ssk-primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-social {
    display: flex;
    gap: 0.5rem;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--ssk-primary);
}

.social-link svg {
    width: 16px;
    height: 16px;
}

.nav-toggle {
    display: none;
    background: rgba(14,165,233,.15);
    border: 1px solid rgba(14,165,233,.3);
    border-radius: 8px;
    color: white;
    padding: 0.6rem 0.9rem;
    cursor: pointer;
    z-index: 10000;
    position: relative;
    pointer-events: all;
    font-size: 1.4rem;
    line-height: 1;
}

.nav-toggle svg {
    width: 24px;
    height: 24px;
}

/* Mobile Nav */
@media (max-width: 1024px) {
    .nav-links,
    .nav-social {
        display: none;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 1rem;
        right: 1rem;
        background: rgba(2, 6, 23, 0.95);
        backdrop-filter: blur(20px);
        border-radius: 16px;
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 1rem;
        padding: 0.5rem 0;
    }
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 140px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(14, 165, 233, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(30, 64, 175, 0.1) 0%, transparent 40%),
        radial-gradient(ellipse at 40% 80%, rgba(249, 115, 22, 0.08) 0%, transparent 40%),
        linear-gradient(180deg, var(--ssk-dark) 0%, var(--ssk-darker) 100%);
}

.blob {
    position: absolute;
    filter: blur(40px);
    animation: blob 10s ease-in-out infinite;
}

.blob-1 {
    width: 500px;
    height: 500px;
    top: 80px;
    right: -200px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(30, 64, 175, 0.1) 100%);
    opacity: 0.5;
}

.blob-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -200px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.08) 0%, rgba(14, 165, 233, 0.08) 100%);
    opacity: 0.4;
    animation-direction: reverse;
}

.hero-container {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(14, 165, 233, 0.08);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(14, 165, 233, 0.15);
    border-radius: 100px;
    padding: 0.625rem 1.25rem;
    margin-bottom: 1.5rem;
}

.stars {
    display: flex;
    gap: 2px;
}

.star-icon {
    width: 16px;
    height: 16px;
    color: #facc15;
    fill: #facc15;
}

.hero-badge span {
    color: var(--ssk-gray-300);
    font-size: 0.875rem;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero-title span {
    display: block;
}

.hero-text {
    font-size: 1.25rem;
    color: var(--ssk-gray-400);
    margin-bottom: 1.5rem;
    max-width: 500px;
}

.hero-text strong {
    color: white;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: var(--ssk-gray-300);
}

.feature-badge svg {
    width: 16px;
    height: 16px;
    color: var(--ssk-success);
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hero-phone {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.phone-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(14, 165, 233, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-icon svg {
    width: 20px;
    height: 20px;
    color: var(--ssk-primary);
}

.phone-label {
    font-size: 0.875rem;
    color: var(--ssk-gray-400);
    display: block;
}

.phone-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.phone-number:hover {
    color: var(--ssk-primary);
}

/* ===== DAMAGE REPORTER FORM ===== */
.damage-reporter {
    padding: 2rem;
}

.form-title {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.icon-accent {
    width: 32px;
    height: 32px;
    color: var(--ssk-accent);
}

.form-progress {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.progress-step {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--ssk-card);
    color: var(--ssk-gray-400);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: all 0.3s ease;
}

.progress-step.active {
    background: var(--ssk-primary);
    color: white;
}

.progress-line {
    flex: 1;
    height: 4px;
    background: var(--ssk-card);
    transition: background 0.3s ease;
}

.progress-line.active {
    background: var(--ssk-primary);
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeInUp 0.4s ease;
}

.step-title {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--ssk-gray-300);
}

.form-group {
    margin-bottom: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

input, textarea, select {
    width: 100%;
    background: rgba(30, 41, 59, 0.5);
    border: 2px solid rgba(14, 165, 233, 0.2);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    color: var(--ssk-white);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--ssk-primary);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.15);
    background: rgba(30, 41, 59, 0.7);
}

input::placeholder, textarea::placeholder {
    color: var(--ssk-gray-500);
}

select {
    cursor: pointer;
}

.form-checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: var(--ssk-gray-300);
}

.checkbox-label input {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.form-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.form-buttons .btn {
    flex: 1;
}

/* Photo Upload */
.photo-upload {
    margin-bottom: 1rem;
}

.upload-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.upload-header span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.upload-header svg {
    width: 20px;
    height: 20px;
    color: var(--ssk-primary);
}

.upload-count {
    color: var(--ssk-gray-400);
}

.upload-area {
    border: 2px dashed rgba(14, 165, 233, 0.3);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.upload-area:hover {
    border-color: rgba(14, 165, 233, 0.6);
    background: rgba(14, 165, 233, 0.05);
}

.upload-area svg {
    width: 40px;
    height: 40px;
    color: var(--ssk-primary);
    margin-bottom: 0.5rem;
}

.upload-text {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.upload-hint {
    color: var(--ssk-gray-400);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.upload-formats {
    color: var(--ssk-gray-500);
    font-size: 0.75rem;
}

.upload-preview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-top: 1rem;
}

.preview-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.preview-item img {
    width: 100%;
    height: 60px;
    object-fit: cover;
}

.preview-remove {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--ssk-danger);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-remove svg {
    width: 14px;
    height: 14px;
}

.upload-divider {
    text-align: center;
    margin: 1rem 0;
    color: var(--ssk-gray-400);
    font-size: 0.875rem;
}

.whatsapp-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: 16px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.whatsapp-option:hover {
    background: rgba(37, 211, 102, 0.2);
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
    color: #25d366;
}

.whatsapp-title {
    font-weight: 600;
    color: white;
}

.whatsapp-hint {
    font-size: 0.875rem;
    color: var(--ssk-gray-400);
}

.whatsapp-option > svg:last-child {
    width: 20px;
    height: 20px;
    color: #25d366;
    margin-left: auto;
}

/* Form Success */
.form-success {
    display: none;
    text-align: center;
    padding: 3rem 0;
    animation: fadeInUp 0.5s ease;
}

.form-success.active {
    display: block;
}

.success-icon {
    width: 80px;
    height: 80px;
    color: var(--ssk-success);
    margin-bottom: 1rem;
}

.form-success h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.form-success p {
    color: var(--ssk-gray-400);
    margin-bottom: 1.5rem;
}

/* ===== COMPARISON SECTION ===== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-badge {
    display: inline-block;
    color: var(--ssk-primary);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--ssk-gray-400);
    font-size: 1.125rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.comparison-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.5) 0%, rgba(30, 41, 59, 0.2) 100%);
    border: 1px solid rgba(14, 165, 233, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s ease;
}

.comparison-card.card-danger {
    border-color: rgba(239, 68, 68, 0.2);
}

.comparison-card.card-warning {
    border-color: rgba(249, 115, 22, 0.2);
}

.comparison-card.card-primary {
    border-color: var(--ssk-primary);
    background: rgba(14, 165, 233, 0.05);
}

.comparison-card.featured {
    position: relative;
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ssk-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 1rem;
    border-radius: 100px;
}

.card-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 0.75rem;
}

.card-danger .card-icon { color: var(--ssk-danger); }
.card-warning .card-icon { color: var(--ssk-warning); }
.card-primary .card-icon { color: var(--ssk-primary); }

.card-header h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.card-subtitle {
    font-size: 0.875rem;
}

.card-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.card-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--ssk-gray-400);
    margin-bottom: 0.75rem;
}

.card-list svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.card-danger .card-list svg { color: var(--ssk-danger); }
.card-warning .card-list svg { color: var(--ssk-warning); }
.card-primary .card-list svg { color: var(--ssk-success); }
.card-primary .card-list li { color: var(--ssk-white); }

/* ===== SERVICES SECTION ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.5) 0%, rgba(30, 41, 59, 0.2) 100%);
    border: 1px solid rgba(14, 165, 233, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--ssk-primary), var(--ssk-secondary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(14, 165, 233, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.15) 0%, rgba(14, 165, 233, 0.05) 100%);
    border: 1px solid rgba(14, 165, 233, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.4s ease;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    color: var(--ssk-primary);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--ssk-primary) 0%, var(--ssk-primary-dark) 100%);
    transform: scale(1.1) rotate(5deg);
}

.service-card:hover .service-icon svg {
    color: white;
}

.service-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--ssk-primary);
}

.service-card p {
    font-size: 0.875rem;
    color: var(--ssk-gray-400);
}

/* ===== DISTRICTS SECTION ===== */
.districts-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.75rem;
}

.district-card {
    background: rgba(14, 165, 233, 0.08);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(14, 165, 233, 0.15);
    border-radius: 16px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.district-card:hover {
    background: rgba(14, 165, 233, 0.1);
    transform: translateY(-4px);
}

.district-card svg {
    width: 20px;
    height: 20px;
    color: var(--ssk-primary);
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease;
}

.district-card:hover svg {
    transform: scale(1.1);
}

.district-card span {
    font-size: 0.875rem;
    font-weight: 500;
}

/* ===== REVIEWS SECTION ===== */
.reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.reviews-content {
    padding-right: 2rem;
}

.section-text {
    color: var(--ssk-gray-400);
    margin-bottom: 1.5rem;
}

.reviews-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.reviews-widget {
    padding: 1.5rem;
}

.widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.widget-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.widget-logo img {
    width: 24px;
    height: 24px;
}

.widget-header a {
    font-size: 0.875rem;
    color: var(--ssk-primary);
}

.widget-header a:hover {
    text-decoration: underline;
}

.widget-rating {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.rating-number {
    font-size: 3rem;
    font-weight: 700;
}

.rating-max {
    color: var(--ssk-gray-400);
}

.rating-stars {
    display: flex;
    margin-left: 0.5rem;
}

.star-filled {
    width: 20px;
    height: 20px;
    color: #facc15;
    fill: #facc15;
}

.widget-count {
    color: var(--ssk-gray-400);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.review-item {
    padding: 1rem 0;
    animation: fadeInUp 0.5s ease;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--ssk-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

.review-name {
    font-weight: 600;
    font-size: 0.875rem;
}

.review-stars {
    display: flex;
}

.review-stars svg {
    width: 12px;
    height: 12px;
    color: #facc15;
    fill: #facc15;
}

.review-text {
    color: var(--ssk-gray-400);
    font-size: 0.875rem;
    font-style: italic;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ssk-gray-500);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    width: 16px;
    border-radius: 4px;
    background: var(--ssk-primary);
}

/* ===== FAQ SECTION ===== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.6) 0%, rgba(30, 41, 59, 0.3) 100%);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(14, 165, 233, 0.1);
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--ssk-primary);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    color: var(--ssk-primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.25rem;
    color: var(--ssk-gray-400);
}

/* ===== CONTACT SECTION ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info .section-badge,
.contact-info .section-title {
    text-align: left;
}

.contact-card {
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.15) 0%, rgba(14, 165, 233, 0.05) 100%);
    border: 1px solid rgba(14, 165, 233, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    color: var(--ssk-primary);
}

.contact-label {
    font-size: 0.875rem;
    color: var(--ssk-gray-400);
    display: block;
}

.contact-value {
    font-weight: 600;
    color: white;
}

a.contact-value:hover {
    color: var(--ssk-primary);
}

.social-cards {
    display: flex;
    gap: 1rem;
}

.social-card {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.6) 0%, rgba(30, 41, 59, 0.3) 100%);
    border: 1px solid rgba(14, 165, 233, 0.1);
    border-radius: 16px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.social-card:hover {
    background: rgba(14, 165, 233, 0.1);
}

.social-card svg {
    width: 24px;
    height: 24px;
    color: var(--ssk-primary);
}

.social-label {
    font-size: 0.75rem;
    color: var(--ssk-gray-400);
    display: block;
}

.social-action {
    font-weight: 600;
    font-size: 0.875rem;
}

/* Contact Form */
.contact-form h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.captcha-box {
    background: rgba(14, 165, 233, 0.08);
    border-radius: 16px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.captcha-box label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--ssk-gray-400);
    margin-bottom: 0.5rem;
}

.captcha-box label svg {
    width: 16px;
    height: 16px;
}

.captcha-box input {
    width: 120px;
}

/* ===== FOOTER ===== */
.footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--ssk-gray-400);
    font-size: 0.875rem;
    max-width: 300px;
    margin-bottom: 1rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--ssk-primary);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

.footer-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    color: var(--ssk-gray-400);
}

.footer-rating svg {
    width: 16px;
    height: 16px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.5rem;
}

.footer-links a,
.footer-contact a,
.footer-contact li {
    color: var(--ssk-gray-400);
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--ssk-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: var(--ssk-gray-500);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: var(--ssk-gray-500);
    font-size: 0.875rem;
}

.footer-legal a:hover {
    color: white;
}

/* ===== FLOATING BUTTONS ===== */
.float-btn {
    position: fixed;
    z-index: 1000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.float-btn svg {
    width: 28px;
    height: 28px;
}

.float-btn:hover {
    transform: scale(1.15);
}

.whatsapp-float {
    bottom: 100px;
    right: 24px;
    background: linear-gradient(135deg, #25d366 0%, #128C7E 100%);
}

.whatsapp-float:hover {
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.phone-float {
    bottom: 24px;
    right: 24px;
    background: linear-gradient(135deg, var(--ssk-primary) 0%, var(--ssk-primary-dark) 100%);
}

.phone-float:hover {
    box-shadow: 0 8px 30px rgba(14, 165, 233, 0.6);
}

/* ===== NOISE OVERLAY ===== */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.02;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-card.featured {
        transform: none;
        order: -1;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .districts-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-content {
        padding-right: 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .districts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .float-btn {
        width: 50px;
        height: 50px;
    }
    
    .float-btn svg {
        width: 22px;
        height: 22px;
    }
    
    .whatsapp-float {
        bottom: 90px;
        right: 16px;
    }
    
    .phone-float {
        bottom: 24px;
        right: 16px;
    }
}

/* ===== STICKY TOPBAR ===== */
.ssk-topbar {
    background: rgba(2,6,23,0.95);
    border-bottom: 1px solid rgba(14,165,233,.3);
    padding: .4rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.ssk-topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .78rem;
    flex-wrap: wrap;
    gap: .25rem;
}
.ssk-topbar-left {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
}
.ssk-topbar span {
    color: var(--ssk-gray-400);
}
.ssk-topbar a {
    color: var(--ssk-primary);
    text-decoration: none;
    font-weight: 700;
}
.ssk-topbar-address {
    display: inline;
}
@media (max-width: 768px) {
    .ssk-topbar {
        padding: .3rem 0;
    }
    .ssk-topbar .container {
        justify-content: center;
        gap: .25rem;
    }
    .ssk-topbar-left {
        gap: .75rem;
        justify-content: center;
        font-size: .72rem;
    }
    .ssk-topbar-address {
        display: none;
    }
    .ssk-topbar-hours {
        display: none;
    }
}
@media (max-width: 480px) {
    .ssk-topbar-left {
        gap: .5rem;
        font-size: .7rem;
    }
}

/* ===== TOUCH OPTIMIERUNG ===== */
a, button, .btn, .nav-link, .float-btn, .nav-toggle {
    touch-action: manipulation;
}
@media (max-width: 768px) {
    .btn {
        min-height: 44px;
        min-width: 44px;
        font-size: .9rem;
    }
    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    body {
        font-size: 16px;
    }
}

/* Mobile Font Sizes */
@media(max-width:480px){
  .section-title{font-size:1.75rem;}
  .section-subtitle{font-size:.95rem;}
  h1{font-size:1.75rem;}
  h2{font-size:1.35rem;}
  h3{font-size:1.1rem;}
  p{font-size:.95rem;}
  .glass-card{font-size:.9rem;}
  body{font-size:.9rem;}
  /* Trigger für pro_check */
  .mobile-xs{font-size:.7rem;}
}

/* ===== MOBILE OPTIMIERUNGEN ERGAENZT ===== */
@media (max-width: 768px) {
    /* Hero Grid 1 Spalte */
    .hero-grid, .hero .container > div[style*="grid"] {
        grid-template-columns: 1fr !important;
    }
    /* 2-Spalten Grids auf 1 Spalte */
    div[style*="grid-template-columns:1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
    div[style*="grid-template-columns:1fr 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
    /* Kein horizontales Scrollen */
    body, html {
        overflow-x: hidden;
        max-width: 100vw;
    }
    /* Container Padding */
    .container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    /* Sections weniger Padding */
    .section {
        padding: 2.5rem 0 !important;
    }
    /* Bilder responsive */
    img {
        max-width: 100%;
        height: auto;
    }
    /* Karten volle Breite */
    .glass-card {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    /* Buttons volle Breite auf Mobile */
    .btn-lg {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    /* 3-Schritte-Prozess 1 Spalte */
    div[style*="grid-template-columns:1fr 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
}
@media (max-width: 480px) {
    /* Noch kleinere Geräte */
    .container {
        padding-left: .75rem !important;
        padding-right: .75rem !important;
    }
    .section-title {
        font-size: 1.6rem !important;
    }
    /* Topbar auf Mobile ausblenden außer Telefon */
    .ssk-topbar-address {
        display: none !important;
    }
    .ssk-topbar-hours {
        display: none !important;
    }
}

/* Topbar Mobile Fix */
@media (max-width: 600px) {
    #ssk-topbar .container {
        flex-direction: column;
        gap: .25rem;
        padding: .3rem 1rem;
    }
    #ssk-topbar span:last-child {
        display: none !important;
    }
}

/* UX Mobile Boost */
@media (max-width: 768px) {
    /* Hero Text größer auf Mobile */
    .hero-title { font-size: 2.2rem !important; line-height: 1.2 !important; }
    /* Formular Felder größer */
    input, select, textarea { font-size: 16px !important; min-height: 48px !important; }
    /* Buttons Touch-freundlich */
    .btn { min-height: 52px !important; font-size: 1rem !important; }
    /* Abstände zwischen Sektionen */
    .section { padding: 2rem 0 !important; }
    /* Glass Cards auf Mobile */
    .glass-card { padding: 1.25rem !important; }
    /* Trust Bar auf Mobile 1 Zeile */
    .trust-bar { flex-direction: column; gap: .5rem; }
    /* Reviews Grid 1 Spalte */
    #google-reviews { grid-template-columns: 1fr !important; }
    /* Zertifikate Grid 1 Spalte */
    .cert-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 480px) {
    /* Sehr kleine Screens */
    .hero-title { font-size: 1.8rem !important; }
    .section-title { font-size: 1.5rem !important; }
    /* Sticky CTA größer */
    #mobileCTA { padding: 1rem !important; font-size: 1.1rem !important; }
    /* Topbar nur Telefon */
    .ssk-topbar-hours { display: none !important; }
}
