:root {
    --faq-green: #277553;
    --faq-green-dark: #174f39;
    --faq-green-soft: #eaf5ef;
    --faq-indigo: #5d62a8;
    --faq-ink: #17362d;
    --faq-muted: #61716b;
}

.faq-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(4rem, 8vw, 6.5rem) 0 clamp(3.5rem, 7vw, 5.5rem);
    background: linear-gradient(145deg, #f6fbf8 0%, #f8f8fc 52%, #fffaf0 100%);
    text-align: center;
}

.faq-hero::after {
    content: '';
    position: absolute;
    z-index: -1;
    inset: auto 8% 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(39, 117, 83, .22), transparent);
}

.faq-hero-orb { position: absolute; z-index: -1; border-radius: 50%; filter: blur(4px); pointer-events: none; }
.faq-hero-orb-one { width: 26rem; height: 26rem; top: -13rem; right: -6rem; background: radial-gradient(circle, rgba(74, 161, 113, .19), transparent 68%); }
.faq-hero-orb-two { width: 25rem; height: 25rem; bottom: -15rem; left: -5rem; background: radial-gradient(circle, rgba(93, 98, 168, .16), transparent 68%); }
.faq-hero-inner { max-width: 880px; }

.faq-hero-icon {
    display: grid;
    place-items: center;
    width: 74px;
    height: 74px;
    margin: 0 auto 1.2rem;
    border: 1px solid rgba(39, 117, 83, .12);
    border-radius: 22px;
    background: rgba(255, 255, 255, .82);
    color: var(--faq-green);
    box-shadow: 0 18px 44px rgba(29, 89, 64, .12);
    transform: rotate(-3deg);
}

.faq-hero-icon svg { width: 42px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.faq-eyebrow { margin: 0 0 .65rem; color: var(--faq-green); font-size: .9rem; font-weight: 800; letter-spacing: .02em; }
.faq-hero h1 { margin: 0; color: var(--faq-ink); font-size: clamp(2.45rem, 6vw, 4.2rem); font-weight: 900; letter-spacing: -.045em; line-height: 1.05; }
.faq-hero-copy { max-width: 670px; margin: 1rem auto 0; color: var(--faq-muted); font-size: clamp(1.05rem, 2vw, 1.25rem); line-height: 1.75; }

.faq-trust-row { display: flex; justify-content: center; flex-wrap: wrap; gap: .85rem; margin-top: 2.15rem; }
.faq-trust-row span { display: inline-flex; align-items: center; gap: .55rem; min-height: 52px; padding: .72rem 1.1rem; border: 1px solid rgba(39, 117, 83, .12); border-radius: 999px; background: rgba(255, 255, 255, .72); color: #375c4f; font-size: .95rem; font-weight: 650; box-shadow: 0 7px 20px rgba(23, 79, 57, .055); }
.faq-trust-row svg { width: 20px; height: 20px; flex: 0 0 auto; fill: none; stroke: var(--faq-green); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.faq-main { padding: clamp(3.5rem, 7vw, 6rem) 0; background: #fff; }
.faq-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.faq-list-wrap { min-width: 0; }
.faq-section-heading { margin-bottom: 1.6rem; }
.faq-section-heading > p { margin: 0 0 .35rem; color: var(--faq-indigo); font-size: .82rem; font-weight: 800; letter-spacing: .04em; }
.faq-section-heading h2 { margin: 0; color: var(--faq-ink); font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 850; line-height: 1.3; }
.faq-accordion { display: grid; gap: .85rem; }

.faq-card {
    overflow: hidden;
    border: 1px solid #e3ebe7;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 7px 22px rgba(23, 54, 45, .045);
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.faq-card:hover { border-color: #c7ddd1; transform: translateY(-1px); box-shadow: 0 12px 30px rgba(23, 54, 45, .075); }
.faq-card[open] { border-color: rgba(39, 117, 83, .32); box-shadow: 0 14px 36px rgba(23, 79, 57, .09); }
.faq-card summary { display: grid; grid-template-columns: 42px minmax(0, 1fr) 30px; gap: .85rem; align-items: center; min-height: 76px; padding: .9rem 1.1rem; color: var(--faq-ink); font-size: 1.03rem; font-weight: 700; cursor: pointer; list-style: none; }
.faq-card summary::-webkit-details-marker { display: none; }
.faq-card summary:focus-visible { outline: 3px solid rgba(39, 117, 83, .28); outline-offset: -3px; border-radius: 17px; }
.faq-number { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 12px; background: var(--faq-green-soft); color: var(--faq-green); font-size: .75rem; font-weight: 800; direction: ltr; }
.faq-toggle { position: relative; width: 28px; height: 28px; border-radius: 50%; background: #f3f7f5; }
.faq-toggle::before, .faq-toggle::after { content: ''; position: absolute; top: 50%; left: 50%; width: 11px; height: 2px; border-radius: 2px; background: var(--faq-green); transform: translate(-50%, -50%); transition: transform .2s ease; }
.faq-toggle::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-card[open] .faq-toggle { background: var(--faq-green); }
.faq-card[open] .faq-toggle::before, .faq-card[open] .faq-toggle::after { background: #fff; }
.faq-card[open] .faq-toggle::after { transform: translate(-50%, -50%) rotate(0); }
.faq-card-answer { padding: 0 4.4rem 1.35rem 3.8rem; }
.faq-card-answer p { margin: 0; padding-top: 1rem; border-top: 1px solid #edf1ef; color: var(--faq-muted); font-size: .98rem; line-height: 1.85; }

.faq-help-card { position: sticky; top: 96px; overflow: hidden; padding: 2rem; border-radius: 24px; background: linear-gradient(145deg, var(--faq-green-dark), #22684b); color: #fff; box-shadow: 0 24px 55px rgba(23, 79, 57, .2); }
.faq-help-card::after { content: '?'; position: absolute; left: -1rem; bottom: -5rem; color: rgba(255, 255, 255, .045); font-size: 17rem; font-weight: 900; line-height: 1; pointer-events: none; }
.faq-help-card > * { position: relative; z-index: 1; }
.faq-help-kicker { display: inline-block; margin-bottom: .7rem; color: #b7dfc8; font-size: .78rem; font-weight: 800; }
.faq-help-card h2 { margin: 0; color: #fff; font-size: 1.65rem; font-weight: 800; }
.faq-help-card > p { margin: .75rem 0 1.5rem; color: rgba(255, 255, 255, .78); font-size: .94rem; line-height: 1.75; }
.faq-help-primary { display: flex; align-items: center; gap: .8rem; padding: .85rem 1rem; border-radius: 14px; background: #fff; color: var(--faq-green-dark); text-decoration: none; box-shadow: 0 10px 25px rgba(0, 0, 0, .12); transition: transform .2s ease, box-shadow .2s ease; }
.faq-help-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0, 0, 0, .16); }
.faq-help-primary svg { width: 24px; height: 24px; fill: currentColor; }
.faq-help-primary span { display: grid; font-size: 1.02rem; font-weight: 800; direction: ltr; text-align: right; }
.faq-help-primary small { color: #6d7d76; font-size: .7rem; font-weight: 600; direction: rtl; }
.faq-help-secondary { display: flex; justify-content: space-between; align-items: center; margin-top: .75rem; padding: .85rem 1rem; border: 1px solid rgba(255, 255, 255, .24); border-radius: 14px; color: #fff; font-size: .87rem; font-weight: 700; text-decoration: none; transition: background .2s ease; }
.faq-help-secondary:hover { background: rgba(255, 255, 255, .1); }
.faq-help-note { display: flex; align-items: center; gap: .4rem; margin: 1.25rem 0 0 !important; color: rgba(255, 255, 255, .64) !important; font-size: .72rem !important; }
.faq-help-note svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.main-nav-link[aria-current="page"] { color: var(--ind-600, #2e7a52) !important; background: rgba(39, 117, 83, .08); }

@media (max-width: 900px) {
    .faq-layout { grid-template-columns: 1fr; }
    .faq-help-card { position: static; max-width: 560px; width: 100%; margin: 0 auto; }
}

@media (max-width: 640px) {
    .faq-hero { padding-top: 3rem; }
    .faq-hero-icon { width: 62px; height: 62px; border-radius: 19px; }
    .faq-hero-icon svg { width: 35px; }
    .faq-trust-row { gap: .55rem; }
    .faq-trust-row span { min-height: 44px; padding: .58rem .78rem; font-size: .8rem; }
    .faq-trust-row svg { width: 18px; height: 18px; }
    .faq-main { padding-top: 2.8rem; }
    .faq-card summary { grid-template-columns: 35px minmax(0, 1fr) 28px; gap: .65rem; min-height: 70px; padding: .8rem; font-size: .93rem; }
    .faq-number { width: 34px; height: 34px; border-radius: 10px; }
    .faq-card-answer { padding: 0 3.75rem 1.1rem .9rem; }
    .faq-card-answer p { font-size: .9rem; line-height: 1.75; }
    .faq-help-card { padding: 1.5rem; border-radius: 20px; }
}

@media (prefers-reduced-motion: reduce) {
    .faq-card, .faq-toggle::before, .faq-toggle::after, .faq-help-primary { transition: none; }
}
