/* سوالات متداول صفحه اصلی */
.home-faq {
    position: relative;
    isolation: isolate;
    padding: 72px 0;
    overflow: hidden;
    background: #f4f8f7;
}

.home-faq::before,
.home-faq::after {
    content: "";
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    filter: blur(2px);
    pointer-events: none;
}

.home-faq::before {
    width: 440px;
    height: 440px;
    top: -230px;
    right: -120px;
    background: radial-gradient(circle, rgba(240,203,52,.3), rgba(240,203,52,0) 68%);
}

.home-faq::after {
    width: 520px;
    height: 520px;
    left: -210px;
    bottom: -300px;
    background: radial-gradient(circle, rgba(17,72,69,.17), rgba(17,72,69,0) 70%);
}

.home-faq-shell {
    display: grid;
    grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr);
    gap: 48px;
    align-items: center;
    padding: 52px;
    border: 1px solid rgba(17,72,69,.1);
    border-radius: 32px;
    background: rgba(255,255,255,.88);
    box-shadow: 0 28px 70px rgba(17,72,69,.11);
    backdrop-filter: blur(14px);
}

.home-faq-head { position: relative; padding: 16px 4px; }
.home-faq-eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 7px 13px; border-radius: 999px; background: #fff5c9; color: #5d5015; font-weight: 800; font-size: .86rem; }
.home-faq-eyebrow i { color: #b89500; font-size: 1.05rem; }
.home-faq-head h2 { margin: 18px 0 14px; color: #113d3a; font-size: clamp(1.55rem, 2.5vw, 2.25rem); line-height: 1.65; }
.home-faq-head > p { margin: 0; color: #5b6765; line-height: 2.05; font-size: .98rem; }
.home-faq-highlights { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 24px; }
.home-faq-highlights span { display: inline-flex; align-items: center; gap: 7px; padding: 8px 11px; border: 1px solid #dce8e5; border-radius: 10px; background: #f8fbfa; color: #315451; font-size: .79rem; font-weight: 700; }
.home-faq-highlights i { color: #c5a100; }

.home-faq-list { display: grid; gap: 11px; }
.home-faq-item { position: relative; border: 1px solid #dfe9e7; border-radius: 16px; background: #fff; box-shadow: 0 7px 22px rgba(17,72,69,.045); overflow: hidden; transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease; }
.home-faq-item:hover { transform: translateX(-4px); border-color: rgba(17,72,69,.25); box-shadow: 0 13px 30px rgba(17,72,69,.09); }
.home-faq-item[open] { border-color: rgba(200,163,0,.45); box-shadow: 0 16px 36px rgba(17,72,69,.11); }
.home-faq-item::before { content: ""; position: absolute; top: 0; right: 0; width: 4px; height: 100%; background: #e6c12d; opacity: 0; transition: opacity .25s ease; }
.home-faq-item[open]::before { opacity: 1; }
.home-faq-item summary { display: grid; grid-template-columns: 42px minmax(0, 1fr) 34px; align-items: center; gap: 13px; min-height: 76px; padding: 13px 16px; color: #173f3c; font-weight: 850; cursor: pointer; list-style: none; line-height: 1.8; }
.home-faq-item summary::-webkit-details-marker { display: none; }
.home-faq-number { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: #eef5f3; color: #50706d; font-size: .78rem; font-weight: 900; transition: background .25s ease, color .25s ease; }
.home-faq-item[open] .home-faq-number { background: #f0cb34; color: #25302e; }
.home-faq-toggle { position: relative; display: block; width: 32px; height: 32px; border-radius: 50%; background: #f1f6f5; transition: transform .25s ease, background .25s ease; }
.home-faq-toggle::before,
.home-faq-toggle::after { content: ""; position: absolute; top: 50%; left: 50%; width: 12px; height: 2px; border-radius: 2px; background: #315451; transform: translate(-50%,-50%); }
.home-faq-toggle::after { transform: translate(-50%,-50%) rotate(90deg); transition: transform .25s ease; }
.home-faq-item[open] .home-faq-toggle { background: #113d3a; transform: rotate(180deg); }
.home-faq-item[open] .home-faq-toggle::before,
.home-faq-item[open] .home-faq-toggle::after { background: #fff; }
.home-faq-item[open] .home-faq-toggle::after { transform: translate(-50%,-50%) rotate(0); }
.home-faq-answer { display: grid; grid-template-columns: 28px minmax(0,1fr); gap: 10px; margin: 0 70px 0 16px; padding: 0 0 20px; animation: homeFaqReveal .28s ease both; }
.home-faq-answer > i { display: grid; place-items: center; width: 26px; height: 26px; margin-top: 4px; border-radius: 50%; background: #e8f6ef; color: #198754; font-size: .72rem; }
.home-faq-answer p { margin: 0; color: #53615f; line-height: 2.05; font-size: .91rem; }

@keyframes homeFaqReveal {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 991.98px) {
    .home-faq { padding: 54px 0; }
    .home-faq-shell { grid-template-columns: 1fr; gap: 28px; padding: 36px; border-radius: 25px; }
    .home-faq-head { text-align: center; max-width: 720px; margin: 0 auto; }
    .home-faq-highlights { justify-content: center; }
}

@media (max-width: 576px) {
    .home-faq { padding: 34px 0; }
    .home-faq-shell { padding: 24px 14px; border-radius: 20px; }
    .home-faq-head { padding: 4px 7px; text-align: right; }
    .home-faq-highlights { justify-content: flex-start; gap: 6px; }
    .home-faq-highlights span { padding: 7px 8px; font-size: .72rem; }
    .home-faq-item summary { grid-template-columns: 36px minmax(0,1fr) 30px; gap: 9px; min-height: 70px; padding: 11px 10px; font-size: .88rem; }
    .home-faq-number { width: 36px; height: 36px; border-radius: 10px; }
    .home-faq-toggle { width: 28px; height: 28px; }
    .home-faq-answer { margin: 0 54px 0 10px; grid-template-columns: 24px minmax(0,1fr); padding-bottom: 16px; }
    .home-faq-answer > i { width: 22px; height: 22px; }
    .home-faq-answer p { font-size: .84rem; }
}
