/* Review Page Styles - Version 2.3.1 - Fixed Title Formatting */

/* Section Title Formatting for Review Pages */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

/* Ensure header section titles stay large and centered - EXACT Rechtsanwälte spacing */
section.reviews .container-header .section-title,
section.reviews .reviews-header .section-title,
.container-header h2.section-title,
.reviews-header h2.section-title,
body .container-header .section-title,
body .reviews-header .section-title,
body section.reviews .container-header h2.section-title,
body section.reviews .reviews-header h2.section-title {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    text-align: center !important;
    margin-bottom: 1.5rem !important;
    color: var(--text-primary) !important;
    line-height: 1.2 !important;
}

/* LAYOUT STRUCTURE - FORCE CORRECT CLASS for Review Posts INCLUDING DRAFTS */
body.single-review section.reviews .container,
body.single-post-type-review section.reviews .container,
body[class*="review"] section.reviews .container,
body.singular section.reviews .container,
body.preview section.reviews .container {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 1rem !important;
}

@media (min-width: 769px) {
    body.single-review section.reviews .container,
    body.single-post-type-review section.reviews .container,
    body[class*="review"] section.reviews .container,
    body.singular section.reviews .container,
    body.preview section.reviews .container {
        flex-direction: row !important;
    }
    
    body.single-review .content-main,
    body.single-post-type-review .content-main,
    body[class*="review"] .content-main,
    body.singular .content-main,
    body.preview .content-main {
        flex: 2 !important;
        margin-right: 1rem !important;
    }
    
    body.single-review .sidebar,
    body.single-post-type-review .sidebar,
    body[class*="review"] .sidebar,
    body.singular .sidebar,
    body.preview .sidebar {
        flex: 1 !important;
        max-width: 350px !important;
    }
}

/* =========================
   KARTENLAYOUT MIT VISUELLER TIEFE
   ========================= */

/* Basis-Karten-Klasse - Mehr Tiefe */
.card {
    background: var(--surface-cards);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
    padding: 1.5rem 2rem 0.6rem 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.card:hover {
    /* Hover effects removed */
}

/* Featured Image Section */
.featured-image-section {
    margin: 2rem 0;
    width: 100%;
}

.featured-image {
    width: 100% !important;
    height: auto !important;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    display: block;
}

/* Karten-Titel - Konsistente Akzentfarbe */
.card h2, .card h3 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

/* Hierarchie-Ebenen - Visuelle Tiefe */
.card-primary {
    box-shadow: var(--shadow-medium);
    background: var(--surface-color);
}

.card-secondary {
    box-shadow: var(--shadow-soft);
    background: var(--surface-contrast);
}

.card-warning {
    background: var(--warning-box-bg);
    box-shadow: var(--shadow-soft);
}

.card-danger {
    background: var(--risk-box-bg);
    box-shadow: var(--shadow-soft);
}

/* Kontrasthintergründe für Hierarchie */
.card-contrast {
    background: var(--surface-contrast);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
}

/* Review Page Styles - Mit visueller Tiefe */


/* Breadcrumb - Light Mode - KEIN GAP zum Header - WICHTIG! */
body .breadcrumb {
    background: var(--surface-color) !important;
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0 !important;
    margin: 0 !important; /* Kein Margin zum Header */
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--primary-color); /* Helleres Blau */
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb a:hover {
    color: var(--primary-color);
    opacity: 0.9; /* Noch heller beim Hover */
    text-decoration: underline;
}

.breadcrumb .separator {
    color: var(--text-light);
}

.breadcrumb .current {
    color: var(--text-primary);
    font-weight: 600;
}

/* Main Content Layout - Gap zwischen Breadcrumb und Content - WICHTIG! */
body .main-content {
    padding: 2rem 0 !important;
    margin-top: 0 !important; /* Direkt nach Breadcrumb - Gap ist im Padding */
    margin-bottom: 0 !important;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
}

/* Review Article - Kein innerer Container, nur äußerer */
.review-article {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    border: none;
}

/* Review Header - Bis an äußeren Container-Rand */
.review-header {
    padding: 0;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
}

/* Warning Banner - Mildere Version */
.warning-banner {
    background: var(--warning-box-bg);
    border: 1px solid var(--warning-color);
    color: var(--warning-box-text);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-soft);
}

.warning-icon {
    font-size: 1.5rem;
    color: var(--warning-color);
    animation: none; /* Keine Animation - weniger aufdringlich */
}

.warning-text {
    color: var(--warning-box-text);
    font-weight: 600;
    font-size: 1rem;
}

.review-title {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
}

.review-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--surface-cards);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.meta-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.meta-value {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

.meta-value a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.meta-value a:hover {
    color: var(--text-primary);
    text-decoration: underline;
}

/* Risk Assessment Circle */
.risk-assessment {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem;
    background: var(--bg-color);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.risk-circle-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.risk-circle {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Circle background color matching the risk level */
.rating-box .risk-circle circle:first-child {
    stroke: rgba(255, 255, 255, 0.2);
}

.rating-box .risk-circle text {
    fill: white;
}

.risk-progress {
    transition: stroke-dashoffset 1.5s ease-in-out;
}

.risk-level {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    line-height: 1.2;
}

.risk-level.extreme {
    animation: pulse 1.5s infinite;
}

.risk-summary {
    flex: 1;
    color: var(--text-secondary);
    line-height: 1.6;
}

.risk-summary strong {
    color: var(--text-primary);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* Pulsing animation for extreme risk */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Risk Assessment - Clean Layout without Card */
.overall-rating {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
    margin-bottom: 2rem;
}

/* Red underline for WARNUNG text */
.rating-summary strong {
    text-decoration: underline;
    text-decoration-color: var(--danger-color);
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
}

/* Risk-level based styling - removed borders */
.overall-rating.extreme,
.overall-rating.high,
.overall-rating.medium,
.overall-rating.low,
.overall-rating.minimal {
    border: none;
}

.rating-box {
    text-align: center;
    min-width: 120px;
    padding: 1rem;
    border-radius: 8px;
}

/* Risk-based background colors for rating box */
.rating-box.extreme {
    background: linear-gradient(135deg, var(--danger-color), var(--danger-color));
    color: white;
}

.rating-box.high {
    background: linear-gradient(135deg, var(--danger-color), var(--danger-color));
    color: white;
}

.rating-box.medium {
    background: linear-gradient(135deg, var(--warning-color), var(--warning-color));
    color: white;
}

.rating-box.low {
    background: linear-gradient(135deg, var(--warning-color), var(--warning-color));
    color: var(--text-primary);
}

.rating-box.minimal {
    background: linear-gradient(135deg, var(--success-color), var(--success-color));
    color: white;
}

.rating-box.danger .rating-score {
    color: var(--danger-color);
}

.rating-box.safe .rating-score {
    color: var(--success-color);
}

.rating-score {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
}

.rating-stars {
    font-size: 1.75rem;
    margin: 0.5rem 0;
}

.rating-box.danger .rating-stars {
    color: var(--danger-color);
}

.rating-box.safe .rating-stars {
    color: var(--success-color);
}

.rating-label {
    font-size: 0.9rem;
    color: var(--text-primary); /* Dunkles Grau statt helles Grau */
    font-weight: 600;
}

.rating-summary {
    flex: 1;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-primary);
}

/* Pros and Cons Section - Einheitlich */
.pros-cons-section {
    margin: 2rem 0;
    padding: 1.5rem 2rem 0.6rem 2rem;
    background: var(--surface-cards);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
}

.pros-cons-section:hover {
    /* Hover animation removed */
}

.pros-cons-title {
    margin: 0 0 2rem 0;
    color: var(--text-primary);
    text-align: center;
    font-size: 1.5rem;
}

.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.pros-column, .cons-column {
    padding: 1rem;
    border-radius: var(--border-radius);
}

.pros-column {
    background: rgba(0, 124, 145, 0.08);
    border: 1px solid var(--primary-color);
    border-width: 1px 1px 1px 4px;
}

.cons-column {
    background: var(--risk-box-bg);
    border: 1px solid var(--danger-color);
    border-width: 1px 1px 1px 4px;
}

.column-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 1rem 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.column-title.positive {
    color: var(--primary-color);
}

.column-title.negative {
    color: var(--danger-color);
}

.facts-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Review Table of Contents - Einheitlich */
.review-toc {
    margin: 2rem 0;
    padding: 1.5rem 2rem 0.6rem 2rem;
    background: var(--surface-cards);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card);
}

.review-toc:hover {
    /* Hover animation removed */
}

.review-toc h2 {
    margin: 0 0 1.5rem 0;
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 600;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}

.toc-grid {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.toc-link {
    display: block;
    padding: 0.15rem 0;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s;
}

.toc-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.toc-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.toc-num {
    color: var(--primary-color);
    font-weight: 600;
    margin-right: 0.5rem;
}

/* Quick Facts - Weißer Hintergrund wie andere Cards */
.quick-facts {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--surface-color);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
}

.facts-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.facts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.facts-grid .fact-item.positive {
    grid-column: 1;
}

.facts-grid .fact-item.negative {
    grid-column: 2;
}

.fact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.4rem 0.6rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    line-height: 1.3;
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
}

.fact-item.positive {
    border-left: 3px solid var(--success-color);
}

.fact-item.negative {
    border-left: 3px solid var(--danger-color);
}

.fact-icon {
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

/* Fact icons have no background - just the symbols */

.column-title span {
    /* Icons in Titeln - kein Hintergrund */
    background: none !important;
    color: inherit;
}

.fact-text {
    font-weight: 500;
    color: var(--text-primary);
}

/* Short Intro Section */
.short-intro-section {
    margin-bottom: 2rem;
}

.short-intro-text {
    color: #000000 !important;
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 400;
}

.short-intro-text p {
    color: #000000 !important;
    margin-bottom: 1rem;
}

.short-intro-text * {
    color: #000000 !important;
}

.short-intro-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.short-intro-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Content Sections */
.content-section {
    margin-bottom: 3rem;
}

.article-content section {
    margin-bottom: 3rem;
}

/* Platform Grid - 3 Columns */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .platform-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.platform-column {
    /* No borders, no background - clean column layout */
}

/* Platform Lists */
.platform-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.platform-list li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-family: inherit;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Reputation Links - Simple List Style */
.reputation-list {
    list-style: none;
    margin: 1rem 0;
    padding: 0;
}

.reputation-list li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-family: inherit;
    font-size: 1.1rem;
    line-height: 1.6;
}

.reputation-list a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.reputation-list a:hover {
    color: var(--text-primary);
    text-decoration: none;
}

/* YouTube Poster Styling - Performance Optimized */
.youtube-poster {
    position: relative;
    margin: 2rem 0;
    background: var(--surface-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    cursor: pointer;
    transition: all 0.3s ease;
}

.youtube-poster:hover {
    /* Hover animation removed */
}

.youtube-thumbnail {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.youtube-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 48px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.youtube-poster:hover .youtube-play-button {
    /* Hover animation removed */
}

.youtube-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem 1rem 1rem;
    font-weight: 600;
    text-align: center;
}

/* YouTube Embed (when loaded) */
.youtube-embed {
    margin: 2rem 0;
    background: var(--surface-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.youtube-embed iframe {
    width: 100%;
    height: 315px;
    border: none;
    display: block;
}

@media (max-width: 768px) {
    .youtube-embed iframe {
        height: 200px;
    }
    
    .youtube-play-button {
        width: 54px;
        height: 38px;
    }
}

.youtube-link {
    padding: 1rem;
    margin: 0;
    text-align: center;
    background: var(--surface-cards);
    border-top: 1px solid var(--border-color);
}

.youtube-link a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.youtube-link a:hover {
    color: var(--text-primary);
    text-decoration: underline;
}


.reputation-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.reputation-text {
    color: #000000;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.25rem 0;
    display: inline-block;
}

/* Responsive Images in Content */
.content-section img,
.short-intro-text img,
.article-content img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    margin: 1rem 0;
    display: block;
}

/* WordPress Figure Override */
.content-section figure,
.short-intro-text figure,
.article-content figure,
.wp-caption {
    max-width: 100% !important;
    width: auto !important;
    margin: 1rem 0 !important;
}

.wp-caption img {
    width: 100% !important;
    max-width: 100% !important;
}

.wp-caption-text {
    color: var(--text-light);
    font-size: 0.9rem;
    text-align: center;
    padding: 0.5rem 0;
    font-style: italic;
}

/* Image wrapper to contain border-radius properly */
.content-section,
.short-intro-text,
.article-content {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Force all content to respect container bounds */
.review-article {
    overflow: hidden;
}

.content-wrapper {
    overflow: hidden;
}


/* Article Content - Visuelle Tiefe durch Kontrasthintergründe */
.article-content {
    padding: 0;
}

.article-content section {
    margin-bottom: 2rem;
    background: var(--surface-cards);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card);
    padding: 2rem 2.5rem 0.6rem 2.5rem;
    transition: all 0.3s ease;
}

.article-content section:hover {
    /* Hover animation removed */
}

.article-content h2 {
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #000000;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.article-content h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.article-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem 0;
    color: #000000;
    font-family: 'Inter', sans-serif;
}


.article-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1.25rem 0 0.75rem 0;
    color: #000000;
    font-family: 'Inter', sans-serif;
    padding-left: 1rem;
}

.article-content p {
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #000000;
    font-family: 'Inter', sans-serif;
}

/* Textgliederung - Info-Boxen und visuelle Marker */
.info-highlight {
    background: var(--surface-cards);
    border: 1px solid var(--border-color);
    padding: 1rem 1.5rem 0.4rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
}

.info-highlight:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    border-radius: 2px 0 0 2px;
    justify-content: center;
    font-size: 0.8rem;
}

.checklist {
    background: var(--surface-cards);
    padding: 1rem 1.5rem 0.4rem 1.5rem;
    border-radius: var(--border-radius);
    margin: 1.5rem 0;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
}

.checklist h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.checklist ul {
    list-style: none;
    padding: 0;
}

.checklist li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
    color: var(--text-secondary);
}

.checklist li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
}

/* Blockquotes */
.article-content blockquote {
    background: var(--surface-cards);
    border: 1px solid var(--border-color);
    padding: 1rem 2rem 0.4rem 2rem;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-primary);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
}

.article-content blockquote:before {
    content: '“';
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.3;
}

/* Wichtige Punkte hervorheben */
.key-point {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--cta-hover) 100%);
    color: white;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: var(--border-radius);
    font-weight: 600;
    box-shadow: var(--shadow-card);
}


.lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-primary);
    padding-left: 1.5rem;
    margin-bottom: 2rem;
    max-width: none;
}

.analysis-list {
    list-style: none;
    margin: 1.5rem 0;
}

.analysis-list li {
    padding: 1rem;
    margin-bottom: 1rem;
    background: var(--surface-cards);
    border-radius: var(--border-radius);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    font-family: 'Inter', sans-serif;
}

/* Info Boxes - Mildere Version */
.info-box {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    box-shadow: var(--shadow-soft);
}

.info-box.warning {
    background: var(--warning-box-bg);
    border: 1px solid var(--warning-color);
}

.info-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    color: var(--warning-color);
}

.info-content h4 {
    margin: 0 0 0.5rem 0;
    color: var(--warning-box-text);
    font-family: 'Inter', sans-serif;
}

.info-content p {
    margin: 0;
    font-weight: 500;
    color: var(--warning-box-text);
    font-family: 'Inter', sans-serif;
    max-width: none;
    color: var(--warning-color);
}

/* Screenshots */
.screenshot-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.screenshot-item {
    background: var(--surface-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-color);
}

.screenshot-placeholder {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, #374151 0%, #475569 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--text-light);
}

.screenshot-icon {
    font-size: 3rem;
}

.screenshot-text {
    font-weight: 600;
    text-align: center;
    padding: 0 1rem;
}

.screenshot-caption {
    padding: 1rem;
    background: var(--bg-color);
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

/* Statistics */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.stat-card {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.stat-card:hover {
    /* Hover animation removed */
}

.stat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: var(--bg-color);
    border-bottom: 1px solid var(--border-color);
}

.stat-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

.stat-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.stat-content {
    padding: 1.5rem;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.stat-label {
    font-weight: 500;
    color: var(--text-light);
}

.stat-value {
    font-weight: 600;
    color: var(--text-primary);
}

.stat-value.danger {
    color: var(--danger-color);
}

/* Customer Experiences */
.testimonial-grid {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.testimonial {
    padding: 1.5rem;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
}

.testimonial-content {
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-primary);
}

.testimonial-date {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

/* Alternatives */
.alternatives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.alternative-card {
    background: var(--surface-cards);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.alternative-card:hover {
    /* Hover animation removed */
}

.alt-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.alt-header h3 {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 600;
}

.alt-rating {
    color: var(--warning-color);
    font-size: 1.1rem;
}

.alt-pros h4 {
    margin: 0 0 0.75rem 0;
    color: var(--success-color);
    font-size: 1rem;
}

.alt-pros ul {
    list-style: none;
    margin: 0;
}

.alt-pros li {
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-secondary);
}

.alt-pros li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Conclusion */
.conclusion-box {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    margin: 2rem 0;
    box-shadow: var(--shadow-soft);
}

.conclusion-box.safe {
    /* Safe styling without border */
}

.conclusion-rating {
    text-align: center;
    min-width: 120px;
    flex-shrink: 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 8px;
}

.conclusion-rating.danger .conclusion-score {
    color: var(--danger-color);
}

.conclusion-rating.safe .conclusion-score {
    color: var(--success-color);
}

.conclusion-score {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
}

.conclusion-text {
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 600;
    margin-top: 0.5rem;
}

.conclusion-content {
    flex: 1;
}

.conclusion-content p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: none;
    color: var(--text-secondary);
}

.action-items {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--bg-color);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.action-items h3 {
    margin: 0 0 1rem 0;
    color: var(--text-primary);
}

.action-items ol {
    margin: 0;
    padding-left: 1.5rem;
}

.action-items li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Author Box */
.author-box {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    margin: 2rem;
    background: var(--bg-color);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.author-avatar {
    flex-shrink: 0;
}

.avatar-image {
    border-radius: 50%;
}

.author-info h3 {
    margin: 0 0 0.5rem 0;
    color: var(--text-primary);
}

.author-info p {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    line-height: 1.6;
    max-width: none;
    color: var(--text-secondary);
}

/* CTA Box - Weniger grell, besser eingebunden */
.cta-box {
    text-align: center;
    padding: 4rem 2rem;
    margin: 4rem 0;
    background: linear-gradient(135deg, var(--header-color) 0%, #243447 100%);
    color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-large);
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}


.cta-box:after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s;
}

.cta-box:hover:after {
    left: 100%;
}

.cta-box:hover {
    /* Hover animation removed */
}

.cta-box h3 {
    margin: 0 0 1rem 0;
    font-size: 1.75rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    color: white;
}

.cta-box p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: none;
    font-family: 'Inter', sans-serif;
    color: white;
}

.cta-button {
    background: var(--primary-color);
    color: white;
    border: 3px solid var(--primary-color);
    padding: 1.75rem 3.5rem;
    border-radius: var(--border-radius);
    font-size: 1.25rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-large);
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    min-width: 280px;
}


.cta-button:hover {
    background: var(--cta-hover);
    border-color: var(--cta-hover);
}

.cta-button:active {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Sticky CTA für Mobile */
@media (max-width: 768px) {
    .sticky-cta {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--header-color);
        padding: 1rem;
        z-index: 1000;
        box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
        border-top: 2px solid var(--primary-color);
    }
    
    .sticky-cta .cta-button {
        width: 100%;
        padding: 1.5rem;
        font-size: 1.1rem;
        min-width: auto;
    }
}

/* Sidebar - Normal und professionell */
/* SIDEBAR - DESKTOP ONLY */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: sticky;
    top: 0;
    align-self: flex-start;
}

/* MOBILE: SIDEBAR UND ALLE ELEMENTE KOMPLETT WEG */
@media (max-width: 768px) {
    .sidebar,
    .sidebar-widget,
    .quick-nav,
    .related-reviews,
    .search-widget,
    .widget-area,
    .widget {
        display: none !important;
        visibility: hidden !important;
        width: 0 !important;
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }
}

.sidebar-widget {
    background: var(--surface-cards);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.sidebar-widget h3 {
    margin: 0;
    padding: 1rem;
    background: var(--bg-color);
    border-bottom: 1px solid var(--border-color);
    font-size: 1.1rem;
    font-weight: 600;
    color: #000000;
}

/* Sidebar Search Widget - Professional Layout */
.search-widget {
    margin-bottom: 2rem;
}

.search-widget h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.search-widget .sidebar-search-form {
    padding: 0 1rem 1rem 1rem;
}

.search-input-group {
    display: flex;
    gap: 0.5rem;
    width: 100%;
}

.search-input-group input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: var(--surface-color);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: all 0.2s ease;
    width: 100%;
    min-width: 0;
}

.search-input-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 124, 145, 0.1);
}

.search-input-group input::placeholder {
    color: var(--text-secondary);
}

.search-input-group button {
    padding: 0.75rem 1.25rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    white-space: nowrap;
}

.search-input-group button:hover {
    background: var(--cta-hover);
}

.search-input-group button:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.5);
}

/* Quick Navigation */
.quick-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

.quick-nav li {
    border-bottom: 1px solid var(--border-color);
}

.quick-nav li:last-child {
    border-bottom: none;
}

/* MOBILE: ALLE SIDEBAR BORDERS KOMPLETT RAUS */
@media (max-width: 768px) {
    .quick-nav li,
    .quick-nav li:last-child,
    .quick-nav a,
    .related-item,
    .related-item:last-child {
        border: none !important;
        border-bottom: none !important;
        border-top: none !important;
    }
}

.quick-nav a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s;
    font-size: 0.95rem;
}

.quick-nav a:hover {
    background: var(--bg-color);
    color: var(--primary-color);
}

/* Related Reviews */
.related-reviews {
    padding: 1rem;
}

.related-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.related-rating {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.related-rating.danger {
   background: var(--danger-color);
}

.related-rating.safe {
   background: var(--success-color);
}

.related-content h4 {
   margin: 0 0 0.25rem 0;
   font-size: 1rem;
   color: var(--text-primary);
}

.related-content a {
    color: var(--text-primary);
    text-decoration: none;
}

.related-content a:hover {
    color: var(--primary-color);
}

.related-content p {
   margin: 0;
   font-size: 0.85rem;
   color: var(--text-light);
   line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .content-wrapper {
      grid-template-columns: 1fr;
      gap: 2rem;
  }
  
  .sidebar {
      order: -1;
  }
  
  .sidebar .sidebar-widget:not(:first-child) {
      display: none;
  }
  
  .sidebar .quick-nav {
      display: flex;
      flex-wrap: wrap;
      gap: 0;
  }
  
  .sidebar .quick-nav li {
      flex: 1;
      min-width: 200px;
      border-right: 1px solid var(--border-color);
      border-bottom: none;
  }
  
  .sidebar .quick-nav li:last-child {
      border-right: none;
  }
}

@media (max-width: 768px) {
  /* MOBILE: Einheitliche Sektions-Breiten und Abstände für ALLE Sektionen */
  .short-intro-section,
  .featured-image-section,
  .review-toc,
  .quick-facts,
  .article-content section,
  .overall-rating,
  .review-card,
  .page-card,
  .card,
  .testimonial-grid,
  .cta-box {
      margin-left: 0 !important;
      margin-right: 0 !important;
      padding-left: 1rem !important;
      padding-right: 1rem !important;
      width: 100% !important;
      box-sizing: border-box !important;
  }

  /* Featured Image speziell - kein extra Padding */
  .featured-image-section {
      padding-left: 0 !important;
      padding-right: 0 !important;
  }

  .review-title {
      font-size: 2rem;
  }
  
  .overall-rating {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
  }
  
  .risk-assessment {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
      padding: 1rem;
  }
  
  .risk-circle {
      width: 100px;
      height: 100px;
  }
  
  .risk-circle text {
      font-size: 16px;
  }
  
  .risk-level {
      font-size: 0.75rem;
  }
  
  .review-meta {
      flex-direction: column !important;
      gap: 1rem !important;
  }
  
  .meta-item {
      flex-direction: row !important;
      gap: 0.5rem !important;
      width: 100% !important;
  }
  
  .facts-grid {
      grid-template-columns: 1fr;
  }
  
  .pros-cons-grid {
      grid-template-columns: 1fr;
      gap: 1rem;
  }
  
  .stats-grid {
      grid-template-columns: 1fr;
  }
  
  .alternatives-grid {
      grid-template-columns: 1fr;
  }
  
  .conclusion-box {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
  }
  
  .author-box {
      flex-direction: column;
      text-align: center;
  }
  
  .screenshot-gallery {
      grid-template-columns: 1fr;
  }
  
  .sidebar .quick-nav {
      flex-direction: column;
  }
  
  .sidebar .quick-nav li {
      border-right: none;
      border-bottom: 1px solid var(--border-color);
  }
}

@media (max-width: 480px) {
  .main-content {
      padding: 1rem 0;
  }
  
  .review-article {
      margin: 0 -0.75rem;
      border-radius: 0;
  }
  
  .review-title {
      font-size: 1.75rem;
      line-height: 1.3;
  }
  
  .warning-banner {
      flex-direction: column;
      text-align: center;
      gap: 0.75rem;
  }
  
  .article-content {
      padding: 1rem;
      font-size: 16px;
      line-height: 1.6;
  }
  
  .article-content h2 {
      font-size: 1.5rem;
  }
  
  .article-content h3 {
      font-size: 1.25rem;
  }
  
  .article-content p {
      max-width: none;
  }
  
  .lead {
      font-size: 1.1rem;
      padding-left: 1rem;
  }
  
  .quick-facts,
  .table-of-contents,
  .author-box,
  .cta-box {
      margin: 1rem;
      padding: 1.5rem;
  }
  
  .rating-score {
      font-size: 2.5rem;
  }
  
  .conclusion-score {
      font-size: 2.5rem;
  }
}

/* Loading animations */
@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.review-article,
.sidebar-widget {
  animation: fadeInUp 0.6s ease forwards;
}

/* Hover effects */
.fact-item:hover,
.stat-card:hover,
.testimonial:hover,
.alternative-card:hover {
  /* Hover animations removed */
}

/* Focus states for accessibility */
a:focus,
button:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* ============================
   CUSTOM REVIEW COMMENT MODAL
   ============================ */

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    backdrop-filter: blur(4px);
}

/* Modal Container */
.modal-container {
    background: var(--surface-color);
    border-radius: var(--border-radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Modal Header */
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-color);
    background: var(--surface-cards);
}

.modal-header h2 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: var(--bg-color);
    color: var(--text-primary);
}

/* Modal Content */
.modal-content {
    padding: 2rem;
    overflow-y: auto;
    max-height: calc(90vh - 120px);
}

/* Success Message */
.comment-success-message {
    background: var(--surface-color);
    color: var(--text-primary);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
}

.comment-success-message h3 {
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
}

.comment-success-message p {
    margin: 0;
    opacity: 0.9;
}

/* Form Styling */
#review-comment-form {
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
}

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

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
}

.required-mark {
    color: #ef4444;
    font-weight: 700;
}

.optional {
    color: var(--text-secondary);
    font-weight: 400;
    font-size: 0.9rem;
}

/* Risk Rating Slider */
.risk-rating-group {
    background: var(--surface-cards);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.risk-slider-container {
    position: relative;
}

#risk-rating {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: linear-gradient(90deg, #22c55e 0%, #eab308 50%, #ef4444 100%);
    outline: none;
    -webkit-appearance: none;
    margin: 1rem 0;
}

#risk-rating::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    border: 3px solid var(--primary-color);
    box-shadow: var(--shadow-medium);
}

#risk-rating::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    border: 3px solid var(--primary-color);
    box-shadow: var(--shadow-medium);
}

.risk-display {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0.5rem 0;
}

.risk-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.risk-low {
    color: #16a34a;
    font-weight: 600;
}

.risk-high {
    color: #dc2626;
    font-weight: 600;
}

/* Form Inputs */
.form-input, .form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: inherit;
    background: var(--surface-color);
    color: var(--text-primary);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 124, 145, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Form Row (Name and Email side by side) */
.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-half {
    flex: 1;
    margin-bottom: 0;
}

/* Form Actions (Button Row) */
.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

/* Cancel Button */
.cancel-button {
    background: var(--surface-cards);
    color: var(--text-secondary);
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cancel-button:hover {
    background: var(--bg-color);
    color: var(--text-primary);
    border-color: var(--text-secondary);
}

/* Submit Button */
.submit-button {
    background: linear-gradient(135deg, var(--primary-color) 0%, #006b7a 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 140px;
}

.submit-button:hover {
    background: linear-gradient(135deg, #006b7a 0%, var(--primary-color) 100%);
}

.submit-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 124, 145, 0.3);
}

.submit-button:active {
    transform: translateY(0);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .modal-overlay {
        padding: 0.5rem;
        align-items: flex-start;
        padding-top: 2rem;
    }
    
    .modal-container {
        max-height: 95vh;
        margin: 0;
    }
    
    .modal-header {
        padding: 1rem 1.5rem;
    }
    
    .modal-header h2 {
        font-size: 1.25rem;
    }
    
    .modal-content {
        padding: 1.5rem;
        max-height: calc(95vh - 100px);
    }
    
    .risk-rating-group {
        padding: 1rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .form-half {
        margin-bottom: 1.5rem;
    }
    
    .form-actions {
        flex-direction: column-reverse;
        gap: 0.75rem;
    }
    
    .submit-button,
    .cancel-button {
        width: 100%;
    }
}

/* ============================
   CUSTOMER EXPERIENCES DISPLAY
   ============================ */

.customer-experiences-section {
    background: var(--bg-color);
    padding: 3rem 0;
    border-top: 1px solid var(--border-color);
}

.customer-experiences-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.customer-experiences-section h2 {
    color: var(--text-primary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.customer-experiences-section p {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin: 0;
}

.customer-experiences-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .customer-experiences-grid {
        grid-template-columns: 1fr;
    }
}

.customer-experience {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.customer-experience:hover {
    /* Hover animation removed */
}

.experience-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 1rem;
}

.risk-badge {
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
}

.risk-badge[data-risk="high-risk"] {
    background-color: var(--danger-color);
}

.risk-badge[data-risk="medium-risk"] {
    background-color: #ea580c;
    color: white;
}

.risk-badge[data-risk="low-risk"] {
    background-color: var(--success-color);
}

.experience-date {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.experience-title {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    padding: 0;
    line-height: 1.4;
}

.experience-content {
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.experience-author {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-style: italic;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

/* Risk-based styling */
.customer-experience.high-risk {
    border-left: 4px solid var(--danger-color);
}

.customer-experience.medium-risk {
    border-left: 4px solid var(--warning-color);
}

.customer-experience.low-risk {
    border-left: 4px solid var(--success-color);
}

/* Mobile specific adjustments */
@media (max-width: 767px) {
    .customer-experiences-section {
        padding: 2rem 0;
    }
    
    .customer-experiences-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .customer-experiences-grid {
        gap: 1rem;
    }
    
    .customer-experience {
        padding: 1rem;
    }
    
    .experience-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .risk-badge {
        align-self: flex-start;
    }
}