.benchmark-section-light {
    background: linear-gradient(135deg, #f0e6d3 0%, #e8d5b5 100%);
    border-left: 4px solid var(--honey-gold);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 40px;
    margin: 0;
}
.benchmark-section-light h2 {
    font-size: 1.6rem;
    color: var(--earth-brown);
    margin-bottom: 12px;
}
.benchmark-intro--light {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 780px;
    margin-bottom: 28px;
    line-height: 1.7;
}
.benchmark-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}
.benchmark-tier-card-light {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-top: 3px solid var(--forest-green);
    border-radius: var(--radius-md);
    padding: 24px;
}
.benchmark-tier-card-light h3 {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--forest-green);
    margin-bottom: 16px;
}
.benchmark-list--light {
    list-style: none;
    padding: 0;
    margin: 0;
}
.benchmark-list--light li {
    border-bottom: 1px solid var(--border-light);
    font-size: 0.95rem;
    line-height: 1.5;
}
.benchmark-list--light li:last-child {
    border-bottom: none;
}
.benchmark-list--light a {
    color: var(--text-primary);
    text-decoration: none;
    display: block;
    padding: 10px 8px;
    border-radius: var(--radius-sm);
    transition: color 0.2s ease, background 0.2s ease;
}
.benchmark-list--light a:hover {
    color: var(--honey-gold);
    background: rgba(244, 180, 26, 0.06);
}
.benchmark-list--light a strong {
    color: var(--bee-black);
    font-weight: 700;
    transition: color 0.2s ease;
}
.benchmark-list--light a:hover strong {
    color: var(--honey-gold);
}
.benchmark-footer-note {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 4px;
    line-height: 1.6;
}
.benchmark-affiliate-link {
    color: var(--forest-green);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.benchmark-affiliate-link:hover {
    color: var(--forest-green-dark);
}
.benchmark-disclosure-note {
    display: inline;
    margin-left: 4px;
}
.benchmark-disclosure-note a {
    color: var(--text-secondary);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.ecosystem-section {
    background: linear-gradient(135deg, #f0e6d3 0%, #e8d5b5 100%);
    border-top: 3px solid var(--forest-green);
    padding: 48px var(--space-lg);
}
.ecosystem-section h3 {
    font-size: 1.3rem;
    color: var(--earth-brown);
    text-align: center;
    margin-bottom: 32px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}
.ecosystem-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}
.ecosystem-card {
    display: block;
    background: #ffffff;
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-md);
    padding: 28px;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.ecosystem-card:hover {
    transform: translateY(-5px);
    border-color: var(--honey-gold);
    box-shadow: var(--shadow-md);
}
.ecosystem-card h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    color: var(--bee-black);
    margin-bottom: 12px;
    font-weight: 700;
}
.ecosystem-card h4 i {
    color: var(--forest-green);
    font-size: 1.2rem;
    flex-shrink: 0;
}
.ecosystem-card .card-arrow {
    margin-left: auto;
    color: var(--honey-gold);
    font-size: 1rem;
    transition: transform 0.2s ease;
}
.ecosystem-card:hover .card-arrow {
    transform: translateX(4px);
}
.ecosystem-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
}
.faq-section.faq-section--flush {
    margin-top: 20px;
}
.technical-architecture .section-lead-narrow {
    max-width: 74ch;
    font-size: 1.05rem;
}
@media (max-width: 768px) {
    .benchmark-grid {
        grid-template-columns: 1fr;
    }
    .ecosystem-cards {
        grid-template-columns: 1fr;
    }
    .benchmark-section-light {
        padding: 28px 24px;
    }
    .ecosystem-section {
        padding: 32px var(--space-md);
    }
    .technical-architecture .section-lead-narrow {
        max-width: 100%;
        font-size: 0.95rem;
    }
}
