/* ══════════════════════════════════════
   REVIEWS SECTION
══════════════════════════════════════ */
.reviews-section {
    position: relative;
    overflow: hidden;
    background-color: #000000;
}

.reviews-section::before {
    content: '';
    position: absolute;
    left: 50%; top: 0;
    transform: translateX(-50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.reviews-overall {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.reviews-score {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 300;
    color: var(--text-primary);
    line-height: 1;
}

.reviews-stars-overall {
    display: flex;
    gap: 4px;
}

.reviews-stars-overall .star {
    font-size: 22px;
    color: var(--border);
}

.reviews-count {
    font-family: var(--font-display);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    width: 100%;
    text-align: center;
    margin-top: -8px;
}

.reviews-fiverr-note {
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 48px;
    font-weight: 300;
}
.reviews-fiverr-note a {
    color: var(--gold-400);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 500;
    transition: color 0.2s;
}
.reviews-fiverr-note a:hover { color: var(--gold-300); }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 56px;
    align-items: stretch;
}

/* With 7 cards in a 3-column grid the last row has a single, orphaned
   card left-stranded under column one. Centering it under column two
   makes the leftover deliberate instead of accidental. Tuned for the
   current review count — revisit if the count changes to something
   that already divides evenly by 3. */
.reviews-grid .review-card:last-child {
    grid-column: 2 / 3;
}

.review-card {
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 0;
    padding: 30px 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.4s var(--ease-out), border-color 0.3s ease, background 0.3s ease;
    position: relative;
}

.review-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.28);
    background: rgba(255,255,255,0.045);
}

.review-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.review-stars {
    display: flex;
    gap: 3px;
}

.star {
    font-size: 16px;
    color: var(--border);
    transition: color 0.2s;
}

.star.filled {
    color: var(--gold-400);
}

/* True clipped half-star: a dim base glyph with a filled glyph masked
   to 50% width laid on top, rather than a uniformly dimmed full star. */
.star.half {
    position: relative;
    color: var(--border);
}
.star.half::after {
    content: '\2605';
    position: absolute;
    top: 0; left: 0;
    width: 50%;
    overflow: hidden;
    color: var(--gold-400);
}

.review-quote-mark {
    flex-shrink: 0;
    font-family: var(--font-display);
    font-size: 34px;
    line-height: 0.6;
    color: rgba(255,255,255,0.2);
}

.review-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
    font-weight: 300;
    font-style: italic;
    flex: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 0;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 500;
    color: var(--gold-400);
    flex-shrink: 0;
    letter-spacing: 1px;
}

.review-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.review-name-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.review-name {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--text-primary);
}

.review-verif {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 13px; height: 13px;
    flex-shrink: 0;
    color: #000000;
    background: var(--gold-400);
    border-radius: 50%;
}
.review-verif svg { width: 8px; height: 8px; }

.review-role {
    font-family: var(--font-display);
    font-size: 10px;
    letter-spacing: 1px;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* FAQ & Reviews mobile */
@media (max-width: 1024px) {
    .reviews-grid { grid-template-columns: 1fr 1fr; }
    .reviews-grid .review-card:last-child { grid-column: auto; }
}

@media (max-width: 768px) {
    .reviews-grid { grid-template-columns: 1fr; }
    .reviews-grid .review-card:last-child { grid-column: auto; }
    .faq-question { font-size: 15px; }
    .reviews-score { font-size: 42px; }
    .review-card { padding: 26px 22px; }
}

/* ── Article code blocks — always left-aligned ── */
