/* Vehicle Safety Tag landing page (shares layout/button/faq styles with carclean.css) */

.vst-page main { padding: 0; }

.vst-banner {
    background: var(--bg-white);
    padding: 16px 0 0;
}

.vst-banner-img {
    display: block;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--radius-16);
}

.vst-intro-section {
    padding: 32px 0 40px;
    background: var(--bg-white);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vst-card,
.vst-buy-card,
.vst-why-card {
    background: var(--bg-white);
    border: 1px solid var(--border-1);
    border-radius: var(--radius-16);
    padding: 22px;
    margin-bottom: 20px;
}

.vst-buy-card {
    background: var(--accent-10);
    border: 1.5px solid var(--accent);
}

.vst-card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.vst-icon-badge {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--accent);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
}

.vst-card-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--dark);
    margin: 0;
}

.vst-bullets {
    list-style: none;
    margin: 0;
    padding: 0;
}

.vst-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 13.5px;
    color: var(--dark);
    line-height: 1.5;
}

.vst-bullets li i {
    color: var(--accent);
    margin-top: 3px;
    font-size: 14px;
    flex-shrink: 0;
}

.vst-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
    margin: 0 0 16px;
}

.vst-price-amt {
    font-size: 30px;
    font-weight: 900;
    color: var(--dark);
}

.vst-price-note {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted-6);
}

.vst-buy-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 6px;
}

.vst-step-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--accent);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.vst-why { padding: 0 0 40px; background: var(--bg-white); }

.vst-why-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.vst-why-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 13.5px;
    color: var(--text-muted-6);
    line-height: 1.5;
}

.vst-why-list li strong { color: var(--dark); font-weight: 800; }

.vst-dot {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    margin-top: 5px;
    border-radius: 50%;
    background: var(--accent);
}

/* Sticky buy bar, mirrors the app's always-visible bottom CTA */
.vst-sticky-bar {
    position: sticky;
    bottom: 0;
    background: var(--bg-white);
    border-top: 1px solid var(--border-1);
    padding: 12px 0;
    z-index: 20;
}

.vst-sticky-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 640px) {
    .vst-price-amt { font-size: 26px; }
}
