/* ==========================================================
   Reviews page (/reviews.html)
   Builds on the review card + chip styles in landingPage.css
   ========================================================== */

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

.rv-container-narrow {
    max-width: 820px;
}

/* ---------- Hero ---------- */
.rv-hero {
    background: linear-gradient(135deg, #f5e6d3 0%, #fdf4e4 50%, #fff8f0 100%);
    padding: 55px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.rv-hero::before,
.rv-hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.rv-hero::before {
    top: -25%;
    left: -8%;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(255, 165, 0, 0.16) 0%, transparent 70%);
}

.rv-hero::after {
    bottom: -30%;
    right: -8%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.12) 0%, transparent 70%);
}

.rv-hero .rv-container {
    position: relative;
    z-index: 2;
}

.rv-breadcrumb {
    font-size: 0.85rem;
    color: #7a8794;
    margin-bottom: 18px;
}

.rv-breadcrumb a {
    color: #5a6c7d;
    text-decoration: none;
}

.rv-breadcrumb a:hover {
    color: var(--secondary);
    text-decoration: underline;
}

.rv-hero h1 {
    color: #2c3e50;
    font-size: 3rem;
    line-height: 1.15;
    margin: 0 0 16px;
}

.rv-hero-sub {
    color: #5a6c7d;
    font-size: 1.15rem;
    line-height: 1.6;
    max-width: 720px;
    margin: 0 auto 30px;
}

/* Rating summary badge */
.rv-rating-summary {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.08);
    padding: 18px 28px;
    margin-bottom: 30px;
    text-align: left;
}

.rv-rating-score {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1;
    color: #2c3e50;
}

.rv-rating-detail {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.rv-rating-detail .lp-review-stars {
    margin-bottom: 0;
}

.rv-rating-count {
    font-size: 0.85rem;
    color: #7a8794;
    max-width: 260px;
}

.rv-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

/* ---------- Trust bar ---------- */
.rv-trust-bar {
    background: #2c3e50;
    padding: 28px 0;
}

.rv-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.rv-trust-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.rv-trust-figure {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
}

.rv-trust-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
}

/* ---------- Shared section headings ---------- */
.rv-reviews,
.rv-themes,
.rv-faq {
    padding: 60px 0;
}

.rv-reviews {
    background: #ffffff;
}

.rv-reviews h2,
.rv-themes h2,
.rv-faq h2 {
    color: #2c3e50;
    font-size: 2.2rem;
    margin: 0 0 12px;
}

.rv-section-sub {
    color: #5a6c7d;
    font-size: 1.05rem;
    margin: 0 0 40px;
}

/* Reviews grid inherits .lp-reviews-grid from landingPage.css */
.rv-reviews-grid {
    margin-top: 10px;
}

/* ---------- Themes ---------- */
.rv-themes {
    background: var(--bg-light);
}

.rv-themes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.rv-theme-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 28px 26px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.rv-theme-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.11);
}

.rv-theme-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #ffffff;
    font-size: 1.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.rv-theme-card h3 {
    color: #2c3e50;
    font-size: 1.15rem;
    margin: 0 0 10px;
}

.rv-theme-card p {
    color: #44525f;
    font-size: 0.97rem;
    line-height: 1.6;
    margin: 0;
}

/* ---------- FAQ ---------- */
.rv-faq {
    background: #ffffff;
}

.rv-faq h2 {
    margin-bottom: 35px;
}

.rv-faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.rv-faq-item {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 0 22px;
    transition: var(--transition);
}

.rv-faq-item[open] {
    background: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
}

.rv-faq-item summary {
    cursor: pointer;
    list-style: none;
    font-weight: 600;
    color: #2c3e50;
    padding: 18px 30px 18px 0;
    position: relative;
}

.rv-faq-item summary::-webkit-details-marker {
    display: none;
}

.rv-faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--secondary);
    line-height: 1;
}

.rv-faq-item[open] summary::after {
    content: '\2013';
}

.rv-faq-item p {
    color: #44525f;
    line-height: 1.65;
    margin: 0 0 18px;
}

.rv-faq-item a {
    color: var(--secondary);
    font-weight: 600;
}

/* ---------- CTA ---------- */
.rv-cta {
    background: linear-gradient(135deg, #f5e6d3 0%, #fdf4e4 50%, #fff8f0 100%);
    padding: 60px 0;
}

.rv-cta h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin: 0 0 14px;
}

.rv-cta p {
    color: #5a6c7d;
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0 0 28px;
}

.rv-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
    .rv-hero h1 {
        font-size: 2.3rem;
    }

    .rv-themes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rv-trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 26px;
    }

    .rv-reviews h2,
    .rv-themes h2,
    .rv-faq h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 600px) {
    .rv-hero {
        padding: 40px 0 45px;
    }

    .rv-hero h1 {
        font-size: 1.9rem;
    }

    .rv-hero-sub {
        font-size: 1rem;
    }

    .rv-rating-summary {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 20px 24px;
    }

    .rv-rating-detail {
        align-items: center;
    }

    .rv-themes-grid {
        grid-template-columns: 1fr;
    }

    .rv-hero-cta .lp-btn,
    .rv-cta-buttons .lp-btn {
        width: 100%;
        text-align: center;
    }
}
