/**
 * /pages/reviews — hero, картки, coverage (типографіка ×2 від попередньої версії)
 */

.reviews-page {
    padding-top: 0 !important;
}

/* Hero */
.reviews-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 45%, #0f172a 100%);
    color: #f8fafc;
    padding: 80px 40px 96px;
    margin: 0 0 56px;
    border-radius: 0 0 40px 40px;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.25);
}

.reviews-hero__inner {
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
}

.reviews-hero__eyebrow {
    font-size: 1.625rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #94a3b8;
    margin: 0 0 24px;
}

.reviews-hero__title {
    font-size: clamp(3rem, 8vw, 4rem);
    font-weight: 800;
    line-height: 1.25;
    margin: 0 0 40px;
    color: #fff;
}

.reviews-hero__rating-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 32px 48px;
    margin-bottom: 48px;
}

.reviews-hero__score {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.reviews-hero__score-num {
    font-size: clamp(5rem, 16vw, 7.5rem);
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(180deg, #fde68a 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.reviews-hero__score-max {
    font-size: 3rem;
    font-weight: 600;
    color: #94a3b8;
}

.reviews-hero__stars {
    font-size: 4rem;
    letter-spacing: 4px;
    color: #fbbf24;
    line-height: 1;
}

.reviews-hero__count {
    font-size: 2.125rem;
    color: #cbd5e1;
    margin: 0;
}

.reviews-hero__platforms {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-bottom: 56px;
}

.reviews-hero__plat {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 20px 36px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #e2e8f0;
    font-size: 1.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.reviews-hero__plat:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    transform: translateY(-2px);
}

.reviews-hero__plat svg {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
}

.reviews-hero__cta-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.reviews-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 28px 56px;
    border-radius: 24px;
    font-weight: 700;
    font-size: 2rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
}

.reviews-hero__btn--primary {
    background: linear-gradient(135deg, #2563eb, #0ea5e9);
    color: #fff;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
}

.reviews-hero__btn--primary:hover {
    transform: translateY(-2px);
    color: #fff;
}

.reviews-hero__btn--ghost {
    background: transparent;
    color: #e2e8f0;
    border: 4px solid rgba(255, 255, 255, 0.35);
}

.reviews-hero__btn--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* Intro */
.reviews-intro {
    font-size: 2.125rem;
    line-height: 1.65;
    color: #1e293b;
    margin-bottom: 56px;
}

.reviews-intro p {
    margin: 0 0 24px;
}

/* Cards grid */
.reviews-cards-head {
    margin: 72px 0 32px;
}

.reviews-cards-head h2 {
    font-size: 2.75rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 16px;
}

.reviews-cards-head p {
    margin: 0;
    font-size: 1.875rem;
    color: #64748b;
}

.reviews-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.reviews-card {
    background: #fff;
    border-radius: 28px;
    padding: 40px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.reviews-card__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.reviews-card__author {
    font-weight: 700;
    color: #0f172a;
    font-size: 2rem;
}

.reviews-card__date {
    font-size: 1.5rem;
    color: #94a3b8;
    white-space: nowrap;
}

.reviews-card__stars {
    color: #f59e0b;
    font-size: 2rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.reviews-card__text {
    font-size: 1.875rem;
    line-height: 1.55;
    color: #334155;
    margin: 0;
    flex: 1;
}

.reviews-card__src {
    margin-top: 24px;
    font-size: 1.375rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #94a3b8;
}

.reviews-google-link {
    text-align: center;
    margin: 16px 0 48px;
}

.reviews-google-link a {
    font-weight: 700;
    color: #2563eb;
    font-size: 2rem;
}

/* Coverage block */
.reviews-coverage-block {
    margin: 80px 0 72px;
    padding: 56px 40px;
    background: linear-gradient(180deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 32px;
    border: 1px solid rgba(14, 165, 233, 0.25);
}

.reviews-coverage-block__title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0c4a6e;
    margin: 0 0 16px;
    text-align: center;
}

.reviews-coverage-block__sub {
    font-size: 1.875rem;
    color: #0369a1;
    text-align: center;
    margin: 0 0 40px;
    line-height: 1.5;
}

.reviews-coverage-block__inner {
    max-width: 720px;
    margin: 0 auto;
}

/* B2B letters */
.reviews-letters {
    margin-top: 64px;
}

.reviews-letters h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 16px;
}

.reviews-letters__lead {
    font-size: 1.875rem;
    color: #64748b;
    margin: 0 0 32px;
}

.reviews-letters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.reviews-letter-card {
    background: #f8fafc;
    border-left: 8px solid #0056b3;
    border-radius: 16px;
    padding: 28px 32px;
    font-size: 1.75rem;
    line-height: 1.5;
    color: #334155;
}

.reviews-letter-card strong {
    color: #0f172a;
}

.reviews-letters__more {
    margin-top: 32px;
}

.reviews-letters__more a {
    font-weight: 700;
    color: #2563eb;
    font-size: 2rem;
}

.reviews-more {
    margin: 64px 0;
    padding: 40px;
    background: #fff;
    border-radius: 24px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    font-size: 1.875rem;
    line-height: 1.6;
}

.reviews-more a {
    color: #2563eb;
    font-weight: 600;
}

/* Хвіст сторінки: популярні посилання + GPON */
.reviews-tail {
    font-size: 1.875rem;
    line-height: 1.6;
}

.reviews-tail a {
    color: #2563eb;
}

.reviews-tail--center {
    text-align: center;
    padding: 16px 0;
}

@media (max-width: 576px) {
    .reviews-hero {
        padding: 56px 32px 72px;
        margin-bottom: 40px;
    }

    .reviews-hero__rating-row {
        flex-direction: column;
    }

    .reviews-cards-grid {
        grid-template-columns: 1fr;
    }

    .reviews-hero__btn {
        width: 100%;
        font-size: 1.75rem;
        padding: 24px 32px;
    }
}
