/* Best Price Guarantee page
 *
 * Reuses .trust-bar, .service-content-container, .content-block, .cta-block
 * and .sidebar-card from css/service-pages.css. Only the pieces unique to this
 * page live here.
 *
 * NOTE: .warranty-list is defined in warranty-page.css, which is NOT loaded on
 * this page (the auto-loader keys off $page_class and pulls only one page
 * stylesheet). It is duplicated at the bottom of this file so the checkmark
 * lists render correctly here.
 */

/* ── The three pillars ── */
.pg-pillars {
    display: grid;
    gap: 1.25rem;
    margin: 1.5rem 0 0.5rem;
}
.pg-pillar {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    border: 1px solid #e5e7eb;
    border-left: 4px solid var(--green);
    border-radius: 8px;
    background: var(--white);
    padding: 1.35rem 1.5rem;
}
.pg-num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #d4e5c3;
    color: #3f5a1f;
    font-size: 1.15rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pg-pillar h3 {
    margin: 0 0 0.45rem;
    font-size: 1.15rem;
    line-height: 1.3;
}
.pg-pillar p {
    margin: 0;
    line-height: 1.65;
    color: #4b5563;
}

/* ── The three warranty layers ── */
.pg-layers {
    display: grid;
    gap: 1rem;
    margin: 1.5rem 0;
}
.pg-layer {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #f8f9f6;
    padding: 1.25rem 1.5rem;
}
.pg-layer h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0 0 0.5rem;
    font-size: 1.075rem;
    line-height: 1.3;
}
.pg-layer-num {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pg-layer p {
    margin: 0;
    line-height: 1.65;
    color: #4b5563;
}

/* The single question that separates most bids */
.pg-question {
    border-left: 4px solid #8b9a5b;
    background: #f8f9f6;
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ── Duplicated from warranty-page.css (see note at top) ── */
.warranty-list {
    list-style: none;
    margin: 1rem 0 1.25rem;
    padding: 0;
}
.warranty-list li {
    position: relative;
    padding-left: 1.9rem;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}
.warranty-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--green);
    font-weight: 800;
}

@media (max-width: 640px) {
    .pg-pillar { flex-direction: column; gap: 0.85rem; padding: 1.15rem 1.25rem; }
    .pg-layer { padding: 1.1rem 1.25rem; }
    .pg-question { font-size: 1rem; }
}
