.details-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.detail-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 8rem;
}

.detail-row:last-child {
    margin-bottom: 0;
}

.detail-row.reverse {
    flex-direction: row-reverse;
}

.detail-content {
    flex: 1;
}

.detail-visual {
    flex: 1;
    position: relative;
}

.detail-card-visual {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--accent-primary);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease;
}

.detail-row:hover .detail-card-visual {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--glass-highlight);
}

.detail-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: white;
}

.detail-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #e2e8f0;
}

.feature-list li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--accent-primary);
    border-radius: 50%;
    font-size: 0.8rem;
    color: white;
}

@media (max-width: 1024px) {

    .detail-row,
    .detail-row.reverse {
        flex-direction: column;
        gap: 2rem;
    }
}
