/* GHL Success Path — Enterprise V6 additions.
 * Loads AFTER enterprise-v3.css. Adds: merged problem section card override,
 * lime phase hover (no navy), FAQ accordion.
 */

/* pain cards on the white merged-problem section */
.section.paper-bright .pain {
    background: var(--paper);
    box-shadow: inset 0 0 0 1px #00000014;
}

.section.paper-bright .trap__cost {
    margin-top: 40px;
}

/* phase hover: lime tint instead of navy */
.phase:hover {
    background: var(--ghlsp-gold-100);
    color: inherit;
    transform: translateY(-6px);
}

.phase:hover .phase__num {
    color: var(--ghlsp-gold-600);
}

.phase:hover .phase__title {
    color: var(--ghlsp-navy-950);
}

.phase:hover .phase__list li {
    color: var(--ink-600);
}

.phase:hover .phase__cta {
    color: var(--ghlsp-gold-600);
    border-color: rgba(10, 21, 38, .22);
}

/* ============= BAKED REVIEW SCREENSHOTS (aligned columns) ============= */
.shots-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    align-items: stretch;
}

.shots-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.shots-col .shot {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.shot .imgwrap {
    flex: 1;
    display: flex;
    align-items: center;
}

.shot img.review {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

.shots-col .shot .shot__cap {
    margin-top: auto;
}

@media (max-width: 900px) {
    .shots-cols {
        grid-template-columns: 1fr;
    }
}

/* ============= NAV refinements (v6) ============= */
.nav {
    padding: 12px 16px 12px 20px;
}

.nav__logo img {
    height: 32px;
}

.nav__links {
    gap: 26px;
    font-size: 14px;
}

.nav__cta {
    font-size: 13px;
    padding: 11px 18px 11px 15px;
}

/* ============= FOOTER refinements (v6, matching ghlsuccesspath.com) ============= */
.foot__col h5 {
    text-transform: none;
    letter-spacing: .01em;
    font-size: 15px;
}

.foot__col a .ext {
    font-size: 11px;
    opacity: .5;
    margin-left: 4px;
}

.foot__social {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.foot__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .18);
    color: #DCE5F0;
    transition: border-color .2s, color .2s, background .2s;
}

.foot__social a:hover {
    border-color: var(--ghlsp-gold-500);
    color: var(--ghlsp-gold-500);
    background: rgba(213, 242, 92, .06);
}

/* ============= TRUSTED CLIENTS (6-up, linked) ============= */
.tsm__grid.clients {
    grid-template-columns: repeat(3, 1fr);
}

.tsm__name a {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
}

.tsm__name a:hover {
    text-decoration: underline;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 5px;
}

.tsm__name .ext {
    font-size: 14px;
    opacity: .5;
    transition: opacity .2s, transform .2s;
}

.tsm__name a:hover .ext {
    opacity: 1;
    transform: translate(2px, -1px);
}

.tsm__grid.clients .tsm__desc {
    font-size: 13.5px;
}

@media (max-width: 1100px) {
    .tsm__grid.clients {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .tsm__grid.clients {
        grid-template-columns: 1fr;
    }
}

/* ============= FAQ ============= */
.faq {
    max-width: 880px;
}

.faq details {
    border-bottom: 1px solid rgba(10, 21, 38, .14);
}

.faq details:first-of-type {
    border-top: 1px solid rgba(10, 21, 38, .14);
}

.faq summary {
    list-style: none;
    cursor: pointer;
    padding: 26px 8px 26px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(18px, 2vw, 24px);
    letter-spacing: -.015em;
    color: var(--ghlsp-navy-950);
}

.faq summary::-webkit-details-marker {
    display: none;
}

.faq .ind {
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    border: 1px solid rgba(10, 21, 38, .22);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 400;
    transition: transform .25s, background .25s, color .25s;
}

.faq details[open] .ind {
    transform: rotate(45deg);
    background: var(--ghlsp-navy-950);
    color: var(--ghlsp-gold-500);
    border-color: var(--ghlsp-navy-950);
}

.faq__a {
    padding: 0 60px 28px 0;
    font-size: 15px;
    line-height: 1.6;
    color: var(--ink-600);
    max-width: 66ch;
}

.faq__a p {
    margin: 0;
}