/* =========================================================
   ZACHRY INSURANCE
   COVERAGE INTERVIEW
========================================================= */


/* =========================================================
   HERO
========================================================= */

.coverage-hero {
    background:
        linear-gradient(
            135deg,
            #0f172a 0%,
            #172b46 52%,
            #1e3a5f 100%
        );

    padding: 95px 0 110px;
}


.coverage-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
    gap: 70px;
    align-items: center;
}


/* =========================================================
   LEFT INTRO
========================================================= */

.coverage-eyebrow {
    display: inline-block;
    color: #e8c95b;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
}


.coverage-eyebrow.dark {
    color: #806515;
}


.coverage-intro > h1 {
    color: #ffffff;
    font-family: "Playfair Display", serif;
    font-size: clamp(3rem, 5vw, 4.7rem);
    line-height: 1.03;
    margin-bottom: 25px;
    letter-spacing: -0.035em;
}


.coverage-intro > h1 span {
    color: #e8c95b;
}


.coverage-lead {
    max-width: 650px;
    color: #dbeafe;
    font-size: 1.08rem;
    line-height: 1.85;
    margin-bottom: 42px;
}


.coverage-feature-list {
    display: grid;
    gap: 25px;
}


.coverage-feature {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 18px;
    align-items: start;
}


.coverage-feature-number {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 48px;
    height: 48px;

    border: 1px solid rgba(232, 201, 91, 0.4);
    border-radius: 50%;

    color: #e8c95b;
    font-size: 0.75rem;
    font-weight: 800;
}


.coverage-feature h2 {
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    margin: 0 0 5px;
}


.coverage-feature p {
    color: #b9c9dc;
    font-size: 0.92rem;
    line-height: 1.65;
    margin: 0;
}


/* =========================================================
   MAIN CARD
========================================================= */

.coverage-card {
    background: #ffffff;

    border-radius: 26px;

    box-shadow:
        0 32px 80px rgba(0, 0, 0, 0.28);

    overflow: hidden;
}


.interview-screen {
    padding: 48px;
}


.interview-screen[hidden] {
    display: none;
}


.interview-badge {
    display: inline-flex;
    align-items: center;

    background: #f6efcf;
    color: #68510e;

    border-radius: 999px;

    padding: 8px 13px;

    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.055em;
    text-transform: uppercase;

    margin-bottom: 22px;
}


.interview-complete-badge {
    background: #dcfce7;
    color: #166534;
}


.interview-screen > h2 {
    color: #0f172a;

    font-family: "Playfair Display", serif;

    font-size: clamp(2rem, 3vw, 2.65rem);
    line-height: 1.15;

    margin-bottom: 18px;
}


.interview-screen > p {
    color: #64748b;

    font-size: 1rem;
    line-height: 1.75;

    margin-bottom: 28px;
}


/* =========================================================
   START SCREEN CHECK LIST
========================================================= */

.interview-check-list {
    display: grid;
    gap: 13px;

    margin: 28px 0 32px;
}


.interview-check-list > div {
    display: flex;
    gap: 11px;
    align-items: center;

    color: #334155;

    font-size: 0.93rem;
    font-weight: 600;
}


.interview-check-list span {
    display: inline-flex;
    justify-content: center;
    align-items: center;

    width: 24px;
    height: 24px;

    flex: 0 0 24px;

    border-radius: 50%;

    background: #f6efcf;
    color: #68510e;

    font-size: 0.8rem;
    font-weight: 800;
}


.interview-small-note {
    text-align: center;

    color: #94a3b8 !important;

    font-size: 0.79rem !important;
    line-height: 1.5 !important;

    margin: 16px 0 0 !important;
}


/* =========================================================
   BUTTONS
========================================================= */

.interview-primary-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;

    width: 100%;

    border: 0;

    border-radius: 12px;

    background: #c9a227;
    color: #0f172a;

    padding: 17px 22px;

    font-family: inherit;
    font-size: 0.97rem;
    font-weight: 800;

    text-decoration: none;

    cursor: pointer;

    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        background 0.18s ease;
}


.interview-primary-button:hover {
    transform: translateY(-2px);

    background: #d7b63e;

    box-shadow:
        0 10px 24px rgba(128, 101, 21, 0.22);
}


.interview-primary-button:focus-visible,
.interview-option:focus-visible,
.interview-back-button:focus-visible,
.interview-text-button:focus-visible,
.coverage-secondary-button:focus-visible {
    outline: 3px solid rgba(128, 101, 21, 0.35);
    outline-offset: 3px;
}


.interview-primary-button:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}


.interview-link-button {
    text-align: center;
}


.interview-back-button {
    border: 0;
    background: transparent;

    color: #64748b;

    padding: 5px 0;

    font-family: inherit;
    font-weight: 700;
    font-size: 0.88rem;

    cursor: pointer;
}


.interview-back-button:hover {
    color: #0f172a;
}


.interview-text-button {
    display: block;

    width: 100%;

    margin-top: 15px;

    border: 0;
    background: transparent;

    color: #64748b;

    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 700;

    cursor: pointer;
}


.interview-text-button:hover {
    color: #0f172a;
}


.coverage-secondary-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;

    padding: 16px 25px;

    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 12px;

    color: #ffffff;

    text-decoration: none;
    font-weight: 700;

    transition: background 0.18s ease;
}


.coverage-secondary-button:hover {
    background: rgba(255, 255, 255, 0.08);
}


/* =========================================================
   PROGRESS
========================================================= */

.interview-progress-header {
    display: flex;
    justify-content: space-between;
    gap: 20px;

    margin-bottom: 9px;

    color: #64748b;

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


.interview-progress-track {
    width: 100%;
    height: 7px;

    overflow: hidden;

    background: #e2e8f0;

    border-radius: 999px;

    margin-bottom: 40px;
}


.interview-progress-bar {
    width: 16.666%;

    height: 100%;

    background:
        linear-gradient(
            90deg,
            #a88517,
            #d5b73e
        );

    border-radius: inherit;

    transition: width 0.35s ease;
}


/* =========================================================
   QUESTIONS
========================================================= */

.interview-question-number {
    color: #806515;

    font-size: 0.73rem;
    font-weight: 800;

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

    margin-bottom: 12px;
}


.interview-question-title {
    color: #0f172a;

    font-family: "Playfair Display", serif;

    font-size: clamp(1.8rem, 3vw, 2.35rem);
    line-height: 1.2;

    margin-bottom: 10px;
}


.interview-question-description {
    color: #64748b;

    font-size: 0.94rem;
    line-height: 1.65;

    margin-bottom: 27px;
}


.interview-options {
    display: grid;
    gap: 11px;
}


.interview-option {
    display: grid;

    width: 100%;

    border: 1px solid #dbe2ea;
    border-radius: 13px;

    background: #ffffff;
    color: #334155;

    padding: 16px 18px;

    text-align: left;

    font-family: inherit;
    font-size: 0.94rem;
    font-weight: 700;

    cursor: pointer;

    transition:
        border-color 0.17s ease,
        background 0.17s ease,
        transform 0.17s ease,
        box-shadow 0.17s ease;
}


.interview-option:hover {
    border-color: #c9a227;

    background: #fffcf0;

    transform: translateY(-1px);

    box-shadow:
        0 6px 16px rgba(15, 23, 42, 0.06);
}


.interview-option.selected {
    border-color: #a88517;

    background: #faf3d3;

    color: #4c3b0c;
}


.interview-navigation {
    margin-top: 28px;

    min-height: 25px;
}


/* =========================================================
   RESULTS
========================================================= */

.interview-results-summary {
    display: grid;
    gap: 16px;

    margin: 28px 0;
}


.result-topic {
    background: #f8fafc;

    border: 1px solid #e2e8f0;

    border-radius: 14px;

    padding: 18px;
}


.result-topic h3 {
    color: #0f172a;

    font-size: 0.96rem;

    margin: 0 0 7px;
}


.result-topic p {
    color: #64748b;

    font-size: 0.9rem;
    line-height: 1.65;

    margin: 0;
}


.interview-disclaimer {
    background: #fffbea;

    border: 1px solid #eadb9e;

    border-radius: 13px;

    padding: 17px;

    margin: 24px 0;
}


.interview-disclaimer strong {
    display: block;

    color: #4f3d0d;

    font-size: 0.88rem;

    margin-bottom: 5px;
}


.interview-disclaimer p {
    color: #6b5b2b;

    font-size: 0.78rem;
    line-height: 1.55;

    margin: 0;
}


.consultation-choice {
    padding-top: 10px;
}


.consultation-choice h3 {
    color: #0f172a;

    font-size: 1.15rem;

    margin-bottom: 7px;
}


.consultation-choice p {
    color: #64748b;

    font-size: 0.9rem;
    line-height: 1.6;

    margin-bottom: 20px;
}


/* =========================================================
   CONTACT FORM
========================================================= */

.contact-back-button {
    margin-bottom: 24px;
}


#coverageLeadForm {
    margin-top: 30px;
}


#coverageLeadForm label {
    font-weight: 700;
    color: #334155;
}


#coverageLeadForm input {
    width: 100%;
}


#coverageLeadForm .interview-primary-button {
    margin-top: 5px;
}


/* =========================================================
   SUCCESS
========================================================= */

.interview-success-screen {
    text-align: center;
}


.success-check {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 68px;
    height: 68px;

    margin: 0 auto 20px;

    border-radius: 50%;

    background: #dcfce7;
    color: #166534;

    font-size: 1.8rem;
    font-weight: 800;
}


.interview-success-screen .interview-badge {
    margin-left: auto;
    margin-right: auto;
}


.interview-success-screen .interview-primary-button {
    margin-top: 15px;
}


.interview-home-link {
    display: inline-block;

    margin-top: 20px;

    color: #64748b;

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

    text-decoration: underline;
    text-underline-offset: 3px;
}


/* =========================================================
   INFORMATION SECTION
========================================================= */

.coverage-info-section {
    background: #f8fafc;

    padding: 95px 0;
}


.coverage-info-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: start;
}


.coverage-info-grid h2 {
    color: #0f172a;

    font-family: "Playfair Display", serif;

    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.18;

    margin: 0;
}


.coverage-info-grid p {
    color: #64748b;

    font-size: 1.02rem;
    line-height: 1.8;

    margin: 0 0 20px;
}


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

.coverage-bottom-section {
    background: #ffffff;

    padding: 95px 0;
}


.coverage-bottom-card {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 50px;
    align-items: center;

    background:
        linear-gradient(
            135deg,
            #0f172a,
            #1e3a5f
        );

    border-radius: 24px;

    padding: 50px;

    box-shadow:
        0 22px 50px rgba(15, 23, 42, 0.15);
}


.coverage-bottom-card h2 {
    color: #ffffff;

    font-family: "Playfair Display", serif;

    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 1.2;

    margin: 0 0 14px;
}


.coverage-bottom-card p {
    color: #cbd5e1;

    max-width: 620px;

    line-height: 1.7;

    margin: 0;
}


.coverage-bottom-buttons {
    display: grid;
    gap: 12px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    .coverage-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }


    .coverage-intro {
        max-width: 760px;
    }


    .coverage-card {
        max-width: 760px;
        width: 100%;
    }


    .coverage-info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }


    .coverage-bottom-card {
        grid-template-columns: 1fr;
        gap: 32px;
    }


    .coverage-bottom-buttons {
        max-width: 380px;
    }

}


@media (max-width: 700px) {

    .coverage-hero {
        padding: 65px 0 75px;
    }


    .coverage-intro > h1 {
        font-size: 3rem;
    }


    .coverage-lead {
        font-size: 1rem;
    }


    .coverage-feature {
        grid-template-columns: 40px 1fr;
        gap: 14px;
    }


    .coverage-feature-number {
        width: 40px;
        height: 40px;
    }


    .interview-screen {
        padding: 32px 24px;
    }


    .interview-screen > h2 {
        font-size: 2rem;
    }


    .interview-question-title {
        font-size: 1.85rem;
    }


    .coverage-info-section,
    .coverage-bottom-section {
        padding: 70px 0;
    }


    .coverage-bottom-card {
        padding: 35px 24px;
    }

}


@media (max-width: 430px) {

    .coverage-intro > h1 {
        font-size: 2.55rem;
    }


    .interview-screen {
        padding: 28px 20px;
    }


    .interview-option {
        padding: 15px;
    }


    .interview-progress-track {
        margin-bottom: 30px;
    }

}