.features-detail { padding: var(--space-xl) 0; }

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid var(--border-light);
}
.feature-row:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.feature-row--reverse { direction: rtl; }
.feature-row--reverse > * { direction: ltr; }

.feature-text h2 {
    font-size: 1.75rem;
    margin-bottom: var(--space-sm);
}
.feature-text p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.feature-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, rgba(61,90,42,0.08), rgba(61,90,42,0.02));
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
}

@media (max-width: 768px) {
    .feature-row { grid-template-columns: 1fr; }
    .feature-row--reverse { direction: ltr; }
}
