/* ========== Review Page ========== */

.rv-main {
    padding: 80px 0 100px;
    text-align: center;
}

/* Stars */
.rv-stars {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
}
.rv-star {
    width: 36px;
    height: 36px;
    fill: #fbbc05;
    filter: drop-shadow(0 0 6px rgba(251, 188, 5, .35));
    animation: rv-pulse 2s ease-in-out infinite;
}
.rv-star:nth-child(2) { animation-delay: .15s; }
.rv-star:nth-child(3) { animation-delay: .3s; }
.rv-star:nth-child(4) { animation-delay: .45s; }
.rv-star:nth-child(5) { animation-delay: .6s; }

@keyframes rv-pulse {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.12); }
}

/* Heading + Description */
.rv-heading {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px;
    letter-spacing: .03em;
}
.rv-desc {
    color: rgba(255,255,255,.65);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 48px;
}

/* Card */
.rv-card {
    max-width: 720px;
    margin: 0 auto 56px;
    background: linear-gradient(135deg, rgba(255,255,255,.06) 0%, rgba(255,255,255,.02) 100%);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    padding: 48px 40px;
}
.rv-card-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

/* QR */
.rv-qr-wrap {
    flex-shrink: 0;
    text-align: center;
}
.rv-qr-frame {
    background: #fff;
    border-radius: 12px;
    padding: 12px;
    display: inline-block;
    box-shadow: 0 4px 24px rgba(0,0,0,.3);
}
.rv-qr-frame img {
    display: block;
    width: 180px;
    height: 180px;
}
.rv-qr-hint {
    color: rgba(255,255,255,.45);
    font-size: .8rem;
    margin-top: 12px;
}

/* Divider */
.rv-divider {
    width: 1px;
    height: 160px;
    background: rgba(255,255,255,.12);
    flex-shrink: 0;
}

/* CTA */
.rv-cta-wrap {
    text-align: center;
    flex: 1;
    min-width: 0;
}
.rv-google-icon {
    margin-bottom: 16px;
}
.rv-cta-text {
    color: rgba(255,255,255,.7);
    font-size: .95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}
.rv-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #4285F4;
    color: #fff;
    font-size: .95rem;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    transition: background .25s, transform .25s, box-shadow .25s;
    box-shadow: 0 4px 16px rgba(66, 133, 244, .35);
}
.rv-btn:hover {
    background: #3367d6;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(66, 133, 244, .5);
    color: #fff;
}

/* Steps */
.rv-steps {
    max-width: 640px;
    margin: 0 auto;
}
.rv-steps-title {
    font-size: 1.1rem;
    color: rgba(255,255,255,.5);
    font-weight: 500;
    margin-bottom: 24px;
    letter-spacing: .05em;
}
.rv-steps-grid {
    display: flex;
    gap: 24px;
    justify-content: center;
}
.rv-step {
    flex: 1;
    text-align: center;
}
.rv-step-num {
    width: 36px;
    height: 36px;
    line-height: 36px;
    border-radius: 50%;
    background: rgba(66, 133, 244, .15);
    border: 1px solid rgba(66, 133, 244, .35);
    color: #4285F4;
    font-weight: 700;
    font-size: .95rem;
    margin: 0 auto 10px;
}
.rv-step p {
    color: rgba(255,255,255,.6);
    font-size: .85rem;
    line-height: 1.5;
    margin: 0;
}

/* ========== Responsive ========== */
@media (max-width: 640px) {
    .rv-main { padding: 56px 0 72px; }
    .rv-heading { font-size: 1.4rem; }
    .rv-card { padding: 32px 24px; }
    .rv-card-inner {
        flex-direction: column;
        gap: 28px;
    }
    .rv-divider {
        width: 80%;
        height: 1px;
    }
    .rv-qr-frame img {
        width: 160px;
        height: 160px;
    }
    .rv-steps-grid {
        flex-direction: column;
        gap: 16px;
    }
    .rv-stars .rv-star {
        width: 28px;
        height: 28px;
    }
}
