/* Landing FAQ — reference-style split layout */
.landing-faq-section {
    position: relative;
    padding: 4.5rem 0 5rem;
    background: #fff;
    overflow: hidden;
}

.landing-faq-layout {
    position: relative;
    z-index: 1;
}

/* —— Left intro —— */
.landing-faq-intro {
    padding: 0.5rem 0 0;
    max-width: 26rem;
}

.landing-faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 0.9rem;
    margin-bottom: 1.35rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #4b5563;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
}

.landing-faq-badge i {
    font-size: 0.78rem;
    color: #ff6b35;
}

.landing-faq-title {
    font-size: clamp(1.85rem, 2.8vw, 2.65rem);
    font-weight: 800;
    line-height: 1.18;
    color: #0f172a;
    margin: 0 0 1.25rem;
    text-align: left;
    letter-spacing: -0.02em;
}

.landing-faq-lead {
    position: relative;
    font-size: 1rem;
    line-height: 1.7;
    color: #6b7280;
    margin: 0;
    padding-left: 1.15rem;
    text-align: left;
    border-left: 3px solid #ff6b35;
}

/* —— Right accordion —— */
.landing-faq-panel {
    padding: 0;
}

.landing-faq .accordion-item {
    border: none;
    background: transparent;
}

.landing-faq__item {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 0.35rem;
    background: transparent;
    transition: background 0.25s ease, box-shadow 0.25s ease;
}

.landing-faq__item:last-child {
    margin-bottom: 0;
}

.landing-faq__item:has(.accordion-button:not(.collapsed)) {
    background: #fff8f4;
    box-shadow: inset 4px 0 0 #ff6b35;
}

.landing-faq__btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 1.15rem 1.25rem;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    color: #0f172a;
    background: transparent;
    box-shadow: none;
    border-radius: 16px;
}

.landing-faq__btn::after {
    flex-shrink: 0;
    width: 0.85rem;
    height: 0.85rem;
    margin-left: auto;
    background-size: 0.85rem;
    opacity: 0.55;
}

.landing-faq__btn:not(.collapsed) {
    color: #0f172a;
    background: transparent;
    box-shadow: none;
}

.landing-faq__btn:not(.collapsed)::after {
    opacity: 1;
}

.landing-faq__btn:focus {
    box-shadow: none;
    border-color: transparent;
}

.landing-faq__btn.collapsed {
    background: transparent;
}

.landing-faq__index {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 50%;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: #fff;
    background: #ff6b35;
    box-shadow: 0 4px 14px rgba(255, 107, 53, 0.28);
}

.landing-faq__question {
    flex: 1;
    text-align: left;
    padding-right: 0.5rem;
}

.landing-faq__body {
    padding: 0 1.25rem 1.35rem 4.6rem;
    background: transparent;
    border: none;
}

.landing-faq__answer {
    font-size: 0.95rem;
    line-height: 1.75;
    color: #6b7280;
    margin-bottom: 1.15rem;
}

.landing-faq__answer a {
    color: #ff6b35;
    font-weight: 600;
    text-decoration: none;
}

.landing-faq__answer a:hover {
    text-decoration: underline;
}

.landing-faq__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.72rem 1.35rem;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    background: #ff6b35;
    box-shadow: 0 8px 22px rgba(255, 107, 53, 0.28);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.landing-faq__cta:hover {
    color: #fff;
    background: #e85f2f;
    transform: translateY(-1px);
    box-shadow: 0 10px 26px rgba(255, 107, 53, 0.34);
}

.landing-faq__cta i {
    font-size: 0.82rem;
    transition: transform 0.2s ease;
}

.landing-faq__cta:hover i {
    transform: translateX(3px);
}

@media (max-width: 991.98px) {
    .landing-faq-intro {
        max-width: none;
        text-align: center;
        margin-bottom: 0.75rem;
    }

    .landing-faq-title,
    .landing-faq-lead {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .landing-faq-lead {
        max-width: 52ch;
        border-left: none;
        padding-left: 0;
    }

    .landing-faq-lead::before {
        content: "";
        display: block;
        width: 3px;
        height: 2.5rem;
        margin: 0 auto 0.85rem;
        background: #ff6b35;
        border-radius: 2px;
    }
}

@media (max-width: 767.98px) {
    .landing-faq-section {
        padding: 3rem 0 3.5rem;
    }

    .landing-faq__btn {
        padding: 1rem 0.85rem;
        gap: 0.75rem;
        font-size: 0.92rem;
    }

    .landing-faq__index {
        width: 2.1rem;
        height: 2.1rem;
        font-size: 0.72rem;
    }

    .landing-faq__body {
        padding: 0 0.85rem 1.1rem 0.85rem;
    }
}
