/* ==========================================================================
   Repair process — step cards
   ========================================================================== */

#repair .callout {
    margin: 1.5rem 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;

    margin: 24px 0 8px;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 16px;

    padding: 24px 28px;

    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 8px;
}

.process-step__index {
    display: inline-flex;
    flex: none;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;

    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    color: var(--color-accent);

    border: 1px solid var(--color-border);
    border-radius: 50%;
}

.process-step h4 {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 600;
}

.process-step p {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: var(--color-text-muted);
}

/* ==========================================================================
   Checklist — accent square bullet, used for included/warranty/product lists
   ========================================================================== */

.check-list {
    display: flex;
    flex-direction: column;

    margin: 20px 0;
    max-width: 720px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;

    color: var(--color-text-muted);
    line-height: 1.6;
}

.check-list li::before {
    content: "";
    flex: none;

    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-accent);
}

/* ==========================================================================
   Service product grid (thermal tiers)
   ========================================================================== */

.service-product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;

    margin-top: 32px;
}

.service-product-card {
    padding: 28px 32px;

    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 8px;
}

.service-product-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1024px) {
    .service-product-grid--three {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.service-product-card h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.service-product-card .check-list {
    margin: 20px 0 0;
    max-width: none;
}

/* ==========================================================================
   Section CTA — inline call to action under a service block
   ========================================================================== */

.section-cta {
    margin-top: 40px;
    padding-top: 32px;

    border-top: 1px solid var(--color-border);
    text-align: center;
}

.section-cta__price {
    margin: 0 0 20px;
    font-size: 15px;
    color: var(--color-text-muted);
}

.section-cta__price strong {
    color: var(--color-accent);
    font-size: 18px;
}

/* ==========================================================================
   Closing CTA card
   ========================================================================== */

.closing-cta {
    padding: 48px 40px;

    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;

    text-align: center;
}

.closing-cta h3 {
    margin: 0 0 12px;
    font-size: clamp(20px, 2.4vw, 26px);
    font-weight: 600;
}

.closing-cta p {
    margin: 0 0 28px;
    color: var(--color-text-muted);
}

/* ==========================================================================
   Warranty grid — list and exclusion callout side by side
   ========================================================================== */

.warranty-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;

    /*align-items: center;*/
}

.warranty-grid .check-list,
.warranty-grid .callout {
    margin: 0;
    max-width: none;
}

/* ==========================================================================
   Mobile
   ========================================================================== */

@media (max-width: 768px) {
    .service-product-grid,
    .warranty-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }
}
