/* Reviews Section - Modern & Premium */
.reviews {
    background-color: #f8fafc;
    padding: 100px 0;
    font-family: 'Inter', sans-serif;
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.reviews-grid {
    column-count: 3;
    column-gap: 24px;
    margin-top: 60px;
}

/* Card Styling */
.review-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 24px;
    break-inside: avoid;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-color: #cbd5e1;
}

/* Header: Avatar + Info */
.review-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.reviewer-avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 600;
    font-size: 18px;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    line-height: 1.4;
}

.reviewer-role {
    font-size: 13px;
    color: #64748b;
    margin: 0;
    font-weight: 500;
}

/* Stars */
.review-stars {
    color: #fbbf24;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 16px;
    line-height: 1;
}

/* Body Text */
.review-text {
    font-size: 15px;
    line-height: 1.6;
    color: #334155;
    margin-bottom: 20px;
}

/* Highlights */
.review-highlight {
    background-color: #dcfce7;
    color: #166534;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
}

/* Date */
.review-date {
    font-size: 13px;
    color: #94a3b8;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
}

/* Responsive */
@media (max-width: 1024px) {
    .reviews-grid {
        column-count: 2;
    }
}

@media (max-width: 640px) {
    .reviews-grid {
        column-count: 1;
    }

    .review-card {
        padding: 24px;
    }
}