/* =========================================================
   Quote Preparation Page
   Premium Pre-Quote Experience
   ========================================================= */


/* =========================================================
   Section
   ========================================================= */

.quote-prep-section {
    position: relative;

    padding: 3.5rem 0 3rem;

    background:
        radial-gradient(
            circle at 15% 10%,
            rgba(25, 135, 84, 0.055),
            transparent 32%
        ),
        radial-gradient(
            circle at 85% 90%,
            rgba(90, 31, 43, 0.035),
            transparent 30%
        ),
        var(--cream);
}


/* =========================================================
   Main Wrapper
   ========================================================= */

.quote-prep {
    max-width: 920px;

    margin: 0 auto;
}


/* =========================================================
   Header / Pseudo Hero
   ========================================================= */

.quote-prep-header {
    position: relative;

    margin-bottom: 1.75rem;

    text-align: center;
}


/* =========================================================
   Brand Mark
   ========================================================= */

.quote-prep-mark {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;

    margin: 0 auto 0.9rem;

    background: var(--brand);
    color: var(--ivory);

    border: 1px solid rgba(25, 135, 84, 0.35);
    border-radius: 50%;

    box-shadow:
        0 6px 16px rgba(11, 59, 44, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.quote-prep-mark i {
    font-size: 1.15rem;
}


/* =========================================================
   Eyebrow
   ========================================================= */

.quote-prep-eyebrow {
    display: inline-flex;
    align-items: center;

    margin-bottom: 0.6rem;

    color: var(--burgundy);

    font-family: var(--body-font);
    font-size: 0.72rem;
    font-weight: 700;

    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.quote-prep-eyebrow i {
    color: var(--burgundy);
}


/* =========================================================
   Header Heading
   ========================================================= */

.quote-prep-header h1 {
    margin: 0 auto 0.65rem;

    color: var(--brand);

    font-family: var(--heading-font);
    font-size: clamp(2.2rem, 4.5vw, 3.1rem);
    font-weight: 700;

    line-height: 1.1;
    letter-spacing: -0.025em;
}


/* =========================================================
   Header Intro
   ========================================================= */

.quote-prep-header p {
    max-width: 620px;

    margin: 0 auto;

    color: #5f665f;

    font-size: 1rem;
    line-height: 1.6;
}


/* =========================================================
   Main Card
   ========================================================= */

.quote-prep-card {
    position: relative;
    overflow: hidden;

    padding: 2.5rem;

    background: #fff;

    border: 1px solid rgba(143, 165, 139, 0.55);
    border-radius: 1rem;

    box-shadow:
        0 24px 60px rgba(36, 38, 34, 0.09),
        0 4px 14px rgba(36, 38, 34, 0.05);
}


/* =========================================================
   Card Header
   ========================================================= */

.quote-prep-card-header {
    position: relative;
    z-index: 1;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 1.5rem;

    padding-bottom: 1.5rem;

    border-bottom: 1px solid rgba(143, 165, 139, 0.3);
}


.quote-prep-card-header > div {
    display: flex;
    align-items: center;

    gap: 0.9rem;
}


/* =========================================================
   Section Number
   ========================================================= */

.quote-prep-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    flex-shrink: 0;

    background: rgba(90, 31, 43, 0.06);
    color: var(--burgundy);

    border: 1px solid rgba(90, 31, 43, 0.25);
    border-radius: 6px;

    font-family: var(--body-font);
    font-size: 0.72rem;
    font-weight: 800;

    letter-spacing: 0.04em;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
}


/* =========================================================
   Card Heading
   ========================================================= */

.quote-prep-card-header h2 {
    margin: 0;

    color: var(--brand);

    font-family: var(--heading-font);
    font-size: 1.65rem;
    font-weight: 600;
}


/* =========================================================
   Small Card Label
   ========================================================= */

.quote-prep-label {
    padding: 0.35rem 0.7rem;

    background: var(--cream);
    color: var(--brand);

    border: 1px solid rgba(143, 165, 139, 0.4);
    border-radius: 50px;

    font-size: 0.7rem;
    font-weight: 700;

    letter-spacing: 0.06em;
    text-transform: uppercase;
}


/* =========================================================
   Requirement Grid
   ========================================================= */

.quote-prep-items {
    position: relative;
    z-index: 1;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 1px;

    margin-top: 1.5rem;

    background: rgba(143, 165, 139, 0.3);

    border: 1px solid rgba(143, 165, 139, 0.3);
    border-radius: 0.75rem;

    overflow: hidden;
}


/* =========================================================
   Requirement Item
   ========================================================= */

.quote-prep-item {
    display: flex;
    align-items: flex-start;

    gap: 1rem;

    min-height: 145px;

    padding: 1.35rem;

    background: #fff;

    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.quote-prep-item:hover {
    background: #fcfdfb;
}


/* =========================================================
   Requirement Icon
   ========================================================= */

.quote-prep-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    flex-shrink: 0;

    background: var(--brand);
    color: var(--ivory);

    border-radius: 50%;

    box-shadow:
        0 3px 8px rgba(11, 59, 44, 0.14);
}

.quote-prep-icon i {
    font-size: 0.95rem;
}


/* =========================================================
   Requirement Content
   ========================================================= */

.quote-prep-item-content {
    min-width: 0;
}

.quote-prep-item h3 {
    margin: 0 0 0.4rem;

    color: var(--brand);

    font-family: var(--body-font);
    font-size: 0.95rem;
    font-weight: 700;

    line-height: 1.35;
}

.quote-prep-item p {
    margin: 0;

    color: #687068;

    font-size: 0.85rem;
    line-height: 1.6;
}


/* =========================================================
   Photo Notice
   ========================================================= */

.quote-prep-notice {
    position: relative;
    z-index: 1;

    display: flex;
    align-items: flex-start;

    gap: 1rem;

    margin-top: 1.5rem;
    padding: 1rem 1.15rem;

    background: rgba(11, 59, 44, 0.045);

    border: 1px solid rgba(25, 135, 84, 0.16);
    border-left: 3px solid var(--leaf);

    border-radius: 0.65rem;
}


/* =========================================================
   Notice Icon
   ========================================================= */

.quote-prep-notice-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    flex-shrink: 0;

    background: var(--brand);
    color: var(--ivory);

    border-radius: 50%;

    font-size: 0.8rem;
}


/* =========================================================
   Notice Content
   ========================================================= */

.quote-prep-notice strong {
    display: block;

    margin-bottom: 0.2rem;

    color: var(--brand);

    font-size: 0.85rem;
    font-weight: 700;
}

.quote-prep-notice p {
    margin: 0;

    color: #687068;

    font-size: 0.8rem;
    line-height: 1.55;
}


/* =========================================================
   CTA
   ========================================================= */

.quote-prep-action {
    position: relative;
    z-index: 1;

    display: flex;
    flex-direction: column;
    align-items: center;

    margin-top: 2rem;
}


/*
   The main quote CTA remains controlled by quote.css.
   This only sizes it appropriately for this page.
*/

.quote-prep-action .nav-quote {
    min-width: 210px;
}


/* =========================================================
   CTA Reassurance
   ========================================================= */

.quote-prep-reassurance {
    margin-top: 0.8rem;

    color: #7a817a;

    font-size: 0.75rem;
    font-weight: 500;

    text-align: center;
}


/* =========================================================
   Trust Footer
   ========================================================= */

.quote-prep-trust {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 1rem;

    margin-top: 2rem;

    color: #687068;

    font-size: 0.72rem;
    font-weight: 700;

    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.quote-prep-trust span {
    display: inline-flex;
    align-items: center;

    gap: 0.4rem;
}

.quote-prep-trust i {
    color: var(--leaf);
}

.quote-prep-divider {
    width: 4px;
    height: 4px;

    background: var(--sage);

    border-radius: 50%;
}


/* =========================================================
   Tablet
   ========================================================= */

@media (max-width: 767.98px) {

    .quote-prep-section {
        padding: 3rem 0 2.5rem;
    }

    .quote-prep-card {
        padding: 1.75rem;
    }

    .quote-prep-items {
        grid-template-columns: 1fr;
    }

    .quote-prep-item {
        min-height: auto;
    }

}


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

@media (max-width: 575.98px) {

    .quote-prep-section {
        padding: 2.5rem 0 2rem;
    }

    .quote-prep-header {
        margin-bottom: 1.5rem;
    }

    .quote-prep-mark {
        width: 48px;
        height: 48px;

        margin-bottom: 0.75rem;
    }

    .quote-prep-mark i {
        font-size: 1rem;
    }

    .quote-prep-header h1 {
        font-size: 2.15rem;
    }

    .quote-prep-header p {
        font-size: 0.92rem;
    }

    .quote-prep-card {
        padding: 1.25rem;

        border-radius: 0.85rem;
    }

    .quote-prep-card-header {
        align-items: flex-start;
        flex-direction: column;

        gap: 0.75rem;
    }

    .quote-prep-card-header h2 {
        font-size: 1.45rem;
    }

    .quote-prep-number {
        width: 36px;
        height: 36px;

        font-size: 0.7rem;
    }

    .quote-prep-items {
        margin-top: 1.25rem;
    }

    .quote-prep-item {
        padding: 1.1rem;
    }

    .quote-prep-notice {
        padding: 0.9rem;
    }

    .quote-prep-trust {
        flex-wrap: wrap;

        gap: 0.65rem 0.85rem;

        line-height: 1.4;
    }

    .quote-prep-divider {
        display: none;
    }

}
