/* * VectorReviews - Global Styles & Variables
 * Brand Colors: Navy (#1A1F2C), Cyan (#25D1EB), Green (#00A86B)
 */

:root {
    --vr-navy: #1a1f2c;
    --vr-cyan: #25d1eb;
    --vr-green: #00a86b;
    --vr-light-bg: #f8fafc;
    --vr-white: #ffffff;
    --vr-text-main: #334155;
    --vr-text-dark: #0f172a;
    --vr-border: #e2e8f0;
    --vr-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.vr-section { padding: 80px 20px; font-family: 'Inter', system-ui, sans-serif; line-height: 1.6; color: var(--vr-text-main); }
.vr-container { max-width: 1100px; margin: 0 auto; }
.vr-badge { display: inline-block; padding: 4px 12px; border-radius: 20px; font-weight: 600; font-size: 0.85rem; margin-bottom: 1rem; }
.vr-badge-cyan { background: rgba(37, 209, 235, 0.1); color: var(--vr-cyan); }
.vr-btn { display: inline-block; padding: 16px 32px; border-radius: 8px; font-weight: 700; text-decoration: none; transition: all 0.3s ease; cursor: pointer; border: none; text-align: center; }
.vr-btn-primary { background: var(--vr-cyan); color: var(--vr-navy); }
.vr-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(37, 209, 235, 0.3); }

/* --- 1. HERO MODULE --- */
.vr-hero { text-align: center; background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%); padding-top: 100px; }
.vr-hero h1 { font-size: 3.5rem; color: var(--vr-text-dark); line-height: 1.1; margin-bottom: 1.5rem; }
.vr-hero p { font-size: 1.25rem; max-width: 700px; margin: 0 auto 2rem; }

/* --- 2. PROBLEM MODULE --- */
.vr-problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.vr-check-list { list-style: none; padding: 0; }
.vr-check-list li { margin-bottom: 12px; position: relative; padding-left: 30px; }
.vr-check-list li::before { content: '❌'; position: absolute; left: 0; }
.vr-check-list.positive li::before { content: '✅'; }

/* --- 3. HOW IT WORKS --- */
.vr-bg-light { background-color: var(--vr-light-bg); }
.vr-step-card { background: var(--vr-white); padding: 30px; border-radius: 12px; box-shadow: var(--vr-shadow); margin-bottom: 20px; border-left: 5px solid var(--vr-cyan); }

/* --- 4. PRICING MODULE --- */
.vr-pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.vr-price-card { background: white; border: 1px solid var(--vr-border); padding: 40px 20px; border-radius: 16px; text-align: center; position: relative; }
.vr-price-card.popular { border: 2px solid var(--vr-cyan); transform: scale(1.05); z-index: 2; }
.vr-price-card h3 { color: var(--vr-navy); margin-bottom: 5px; }
.vr-old-price { text-decoration: line-through; color: #94a3b8; font-size: 0.9rem; }
.vr-new-price { font-size: 2.5rem; font-weight: 800; color: var(--vr-text-dark); display: block; margin: 10px 0; }
.vr-save-tag { background: var(--vr-green); color: white; padding: 2px 8px; border-radius: 4px; font-size: 0.8rem; }

/* --- 5. HOW IT WORKS (STEPS) --- */
.vr-steps-wrapper { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 50px; }
.vr-step-item { position: relative; text-align: center; padding: 20px; }
.vr-step-number { width: 40px; height: 40px; background: var(--vr-cyan); color: var(--vr-navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 15px; font-weight: 800; font-size: 1.2rem; }

/* --- 6. PAIN POINT DEEP DIVE --- */
.vr-pain-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.vr-pain-card { background: #fff; padding: 25px; border-radius: 12px; border: 1px solid #eee; transition: 0.3s; }
.vr-pain-card:hover { border-color: var(--vr-cyan); box-shadow: var(--vr-shadow); }
.vr-pain-card h4 { color: var(--vr-navy); margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }

/* --- 7. FAQ SECTION --- */
.vr-faq-item { background: #fff; margin-bottom: 10px; border-radius: 8px; border: 1px solid var(--vr-border); overflow: hidden; }
.vr-faq-question { padding: 20px; font-weight: 700; color: var(--vr-navy); cursor: pointer; display: block; position: relative; }
.vr-faq-answer { padding: 0 20px 20px; color: var(--vr-text-main); font-size: 0.95rem; }






/* Mobile Optimization */
@media (max-width: 768px) {
    .vr-hero h1 { font-size: 2.2rem; }
    .vr-problem-grid, .vr-pricing-grid { grid-template-columns: 1fr; }
    .vr-price-card.popular { transform: none; }
	.vr-pain-grid { grid-template-columns: 1fr; }
}


