.bewertungen-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-8) 0;
}

/* Hero section styling to match blog layout */
.hero-dark .container {
    max-width: 1200px;
    width: 100%;
}

.hero-dark h1 {
    font-size: var(--text-3xl);
    font-weight: var(--font-bold);
    line-height: var(--leading-tight);
    margin-bottom: var(--space-3);
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.025em;
}

.hero-dark .hero-content {
    max-width: 500px;
    margin: 0;
    text-align: left;
    padding-left: 40px;
}

.hero-dark .hero-content p {
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-4);
    font-weight: var(--font-normal);
}

.hero-dark .hero-subtitle {
    font-size: var(--text-base);
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: var(--space-2);
    font-weight: var(--font-normal);
}

.hero-dark .hero-description {
    margin-top: var(--space-4);
}

.hero-dark .hero-description p {
    margin-bottom: var(--space-4);
}

.hero-dark .hero-description strong {
    color: white;
}

.intro-section {
    text-align: center;
    margin-bottom: var(--space-8);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-top: var(--space-8);
}

.stats-section {
    margin-bottom: var(--space-12);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-6);
    margin-bottom: var(--space-8);
}

.stat-card {
    background: var(--color-primary-50);
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 2px solid var(--color-primary-100);
}

.stat-number {
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--color-primary-700);
    margin-bottom: var(--space-2);
}

.stat-label {
    font-size: var(--text-base);
    color: var(--color-neutral-600);
    font-weight: 500;
    word-wrap: break-word;
    hyphens: auto;
    line-height: 1.3;
}

.stat-source {
    font-size: var(--text-xs);
    color: var(--color-success-600);
    margin-top: var(--space-1);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-1);
}

.stat-source-link {
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer !important;
    border-radius: var(--radius-sm);
    padding: var(--space-1) var(--space-2);
    margin: -var(--space-1) -var(--space-2);
    border: 2px solid var(--color-success-300);
    background: linear-gradient(135deg, var(--color-success-50), var(--color-success-25));
    animation: pulse-link 2s infinite;
    font-weight: 600;
}

.stat-source-link:hover {
    color: var(--color-success-800);
    background: linear-gradient(135deg, var(--color-success-100), var(--color-success-50));
    transform: translateY(-2px) scale(1.05);
    border-color: var(--color-success-500);
    text-decoration: underline;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.stat-source-link:focus {
    outline: 3px solid var(--color-success-500);
    outline-offset: 3px;
}

.stat-source-link:active {
    transform: translateY(0) scale(1.02);
}



.reviews-section h2 {
    text-align: center;
    margin-bottom: var(--space-8);
    color: var(--color-primary-700);
    font-size: var(--text-3xl);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-6);
    margin-bottom: var(--space-12);
}

.review-card {
    background: white;
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--color-neutral-200);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
    word-wrap: break-word;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.review-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.15);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-4);
}

.review-rating {
    font-size: var(--text-lg);
    line-height: 1;
}

.verified-badge {
    background: var(--color-success-100);
    color: var(--color-success-700);
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius-md);
    font-size: var(--text-xs);
    font-weight: 600;
}

.verified-badge-link {
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer !important;
    display: inline-block;
    position: relative;
    border: 2px solid var(--color-success-400);
    background: linear-gradient(135deg, var(--color-success-100), var(--color-success-50));
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-weight: 600;
}

.verified-badge-link:hover {
    background: linear-gradient(135deg, var(--color-success-200), var(--color-success-100));
    color: var(--color-success-900);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    border-color: var(--color-success-600);
    text-decoration: underline;
}

.verified-badge-link:focus {
    outline: 3px solid var(--color-success-500);
    outline-offset: 3px;
}

.verified-badge-link:active {
    transform: translateY(0) scale(1.02);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Add a subtle pulse animation to make it more obvious */
@keyframes pulse-link {
    0% {
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 0 0 0 rgba(34, 197, 94, 0.4);
    }

    50% {
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 0 0 4px rgba(34, 197, 94, 0.2);
    }

    100% {
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

.verified-badge-link {
    animation: pulse-link 2s infinite;
}

.review-text {
    font-style: italic;
    margin-bottom: var(--space-4);
    line-height: 1.7;
    color: var(--color-neutral-700);
    font-size: var(--text-base);
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    flex: 1;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid var(--color-neutral-100);
    padding-top: var(--space-3);
    margin-top: auto;
}

.review-author {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    margin-right: var(--space-2);
}

.review-author strong {
    color: var(--color-primary-700);
    font-weight: 600;
}

.review-location {
    color: var(--color-neutral-500);
    font-size: var(--text-sm);
}

.review-date {
    color: var(--color-neutral-400);
    font-size: var(--text-sm);
}

/* Contact form styling is now handled by global common/css/contact-form.css */

@media (max-width: 768px) {
    .bewertungen-content {
        padding: var(--space-6) var(--space-2);
    }

    .hero-text h1 {
        font-size: var(--text-3xl);
    }

    .hero-subtitle {
        font-size: var(--text-base);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
    }

    .stat-label {
        font-size: var(--text-sm);
        line-height: 1.2;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

    .review-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-2);
    }

    /* Mobile layout for hero with form */
    .hero-dark h1 {
        font-size: var(--text-2xl);
    }

    .hero-dark .hero-content p {
        font-size: var(--text-sm);
    }

    .hero-dark .hero-subtitle {
        font-size: var(--text-sm);
    }

    .hero-dark .hero-content {
        padding-left: 20px !important;
        text-align: center;
    }

    /* Hero mobile layout - hero content only */
    .hero-dark .grid {
        grid-template-columns: 1fr !important;
        gap: var(--space-6);
        justify-items: center;
        text-align: center;
    }

    /* Mobile-optimized link styles for better touch interaction */
    .stat-source-link,
    .verified-badge-link {
        min-height: 44px;
        /* Apple's recommended touch target size */
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: var(--space-2) var(--space-3);
        margin: var(--space-1);
        touch-action: manipulation;
        /* Prevents zoom on double-tap */
        -webkit-touch-callout: none;
        /* Prevents callout menu on long press */
        -webkit-tap-highlight-color: rgba(34, 197, 94, 0.3);
        /* Custom tap highlight color */
        user-select: none;
        /* Prevents text selection on touch */
    }

    /* Remove hover effects on mobile since they don't make sense for touch */
    .stat-source-link:hover,
    .verified-badge-link:hover {
        transform: none;
        background: linear-gradient(135deg, var(--color-success-100), var(--color-success-50));
    }

    /* Enhanced active/touch feedback for mobile */
    .stat-source-link:active,
    .verified-badge-link:active {
        background: linear-gradient(135deg, var(--color-success-200), var(--color-success-100));
        transform: scale(0.98);
        transition: all 0.1s ease;
    }
}