/* ===========================================================
   Vehicle History Report page (PPSR product) — CarAssure
   Uses ONLY the theme tokens (--color-primary #001639, --color-secondary #ffcc00,
   --color-text, Figtree) and the same sizes as the rest of the site. Depends on main.css.
   =========================================================== */

/* ---- Hero ---- */
.vh-hero {
    background: linear-gradient(180deg, #f7f9fc 0%, #eef2f8 100%);
    padding: 50px 0 56px;
}
.vh-hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: start; }
.vh-eyebrow {
    display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 1px;
    color: var(--color-primary); background: rgba(255, 204, 0, .35);
    padding: 6px 12px; border-radius: 50px; margin-bottom: 16px;
}
.vh-h1 { font-size: clamp(30px, 4.4vw, 46px); font-weight: 700; color: var(--color-text); line-height: 1.15; margin: 0 0 14px; }
.vh-lead { font-size: 16px; color: var(--color-text); line-height: 1.65; max-width: 560px; margin: 0 0 22px; }
.vh-form { margin: 0 0 14px; }
.vh-cta-btn { display: inline-flex; align-items: center; font-size: 16px; padding: 14px 32px; }
.vh-rating { font-size: 15px; color: var(--color-text); }
.vh-stars { color: var(--color-secondary); letter-spacing: 2px; }
.vh-sample-link { margin-top: 10px; font-size: 14px; }
.vh-sample-link a { color: var(--color-primary); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.vh-sample-link a:hover { opacity: .75; }

.vh-hero-side { position: sticky; top: 90px; }
.vh-includes { background: #fff; border: 1px solid #e6ebf0; border-radius: 14px; padding: 28px 24px; }
.vh-includes h2 { font-size: 18px; font-weight: 700; color: var(--color-text); margin: 0 0 14px; }
.vh-includes ul { display: grid; gap: 11px; }
.vh-includes li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--color-text); }
.vh-tick { display: inline-flex; color: var(--color-primary); flex: 0 0 auto; }
.vh-ppsr { margin-top: 18px; padding-top: 16px; border-top: 1px solid #e6ebf0; display: flex; flex-direction: column; gap: 3px; }
.vh-ppsr strong { color: var(--color-primary); font-size: 14px; font-weight: 700; }
.vh-ppsr span { color: var(--color-text); font-size: 13px; line-height: 1.55; }

/* ---- Feature cards (matches .why-card sizing) ---- */
.vh-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.vh-card { background: #fff; border: 1px solid #e6ebf0; border-radius: 14px; padding: 28px 24px; transition: box-shadow .2s, transform .2s; }
.vh-card:hover { box-shadow: 0 14px 30px rgba(0, 22, 57, .08); transform: translateY(-2px); }
.vh-card-ic {
    width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center;
    background: rgba(255, 204, 0, .18); color: var(--color-primary); margin-bottom: 16px;
}
.vh-card h3 { font-size: 18px; font-weight: 700; color: var(--color-text); line-height: 1.35; margin: 0 0 10px; }
.vh-card p { font-size: 15px; color: var(--color-text); line-height: 1.65; margin: 0; }

/* ---- How it works ---- */
.vh-hiw { background: var(--color-primary); }
.vh-hiw .section-header h2 { color: var(--color-white); }
.vh-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.vh-step { text-align: center; padding: 8px 12px; }
.vh-step-n {
    width: 44px; height: 44px; border-radius: 50%; display: inline-grid; place-items: center;
    background: var(--color-secondary); color: var(--color-primary); font-weight: 700; font-size: 18px; margin-bottom: 14px;
}
.vh-step h3 { font-size: 18px; font-weight: 700; color: var(--color-white); line-height: 1.35; margin: 0 0 8px; }
.vh-step p { font-size: 15px; color: var(--color-white); line-height: 1.65; margin: 0; }
.vh-hiw-cta { text-align: center; margin-top: 40px; }

/* ---- Report includes ---- */
.vh-report-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.vh-report-copy h2 { font-size: clamp(26px, 4vw, 36px); font-weight: 700; color: var(--color-text); line-height: 1.25; margin: 0 0 18px; }
.vh-report-list { display: grid; gap: 12px; }
.vh-report-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: var(--color-text); line-height: 1.65; }
.vh-sample-btn { margin-top: 22px; }
.vh-report-card { background: #fff; border: 1px solid #e6ebf0; border-radius: 14px; padding: 24px; box-shadow: 0 18px 40px rgba(0, 22, 57, .08); }
.vh-report-head { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #e6ebf0; padding-bottom: 12px; margin-bottom: 14px; }
.vh-report-head span:first-child { font-weight: 700; color: var(--color-primary); font-size: 14px; }
.vh-report-badge { background: rgba(255, 204, 0, .35); color: var(--color-primary); font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 50px; }
.vh-report-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.vh-report-chips .chip { font-size: 12px; font-weight: 700; padding: 6px 10px; border-radius: 8px; }
.vh-report-chips .warn { background: #fdeaea; color: #b02a2a; }
.vh-report-chips .ok { background: #eef7f0; color: #1f7a44; }
.vh-report-lines { display: grid; gap: 9px; }
.vh-report-lines span { height: 10px; border-radius: 6px; background: #eef2f6; display: block; }

/* ---- FAQ ---- */
.vh-faq { background: #f7f9fc; }
.vh-faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.vh-faq-item { background: #fff; border: 1px solid #e6ebf0; border-radius: 14px; overflow: hidden; }
.vh-faq-item summary { list-style: none; cursor: pointer; padding: 18px 20px; font-weight: 700; color: var(--color-text); display: flex; justify-content: space-between; align-items: center; font-size: 16px; }
.vh-faq-item summary::-webkit-details-marker { display: none; }
.vh-faq-plus { font-size: 22px; color: var(--color-primary); font-weight: 400; transition: transform .2s; }
.vh-faq-item[open] .vh-faq-plus { transform: rotate(45deg); }
.vh-faq-a { padding: 0 20px 18px; color: var(--color-text); font-size: 15px; line-height: 1.65; }

/* ---- Final CTA ---- */
.vh-cta { background: var(--color-primary); color: var(--color-white); text-align: center; padding: 64px 0; }
.vh-cta h2 { color: var(--color-white); font-size: clamp(26px, 4vw, 36px); font-weight: 700; margin: 0 0 10px; }
.vh-cta p { color: var(--color-white); font-size: 16px; margin: 0 0 24px; line-height: 1.65; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .vh-hero-grid { grid-template-columns: 1fr; gap: 28px; }
    .vh-hero-side { position: static; }
    .vh-cards { grid-template-columns: repeat(2, 1fr); }
    .vh-steps { grid-template-columns: 1fr; gap: 20px; }
    .vh-report-grid { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 560px) { .vh-cards { grid-template-columns: 1fr; } }
