/* FAQ Hero Section */
.faq-hero-section {
    width: 100%;
    padding: 96px 20px 72px;
    background:
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.14), transparent 34%),
        linear-gradient(135deg, #f8fafc 0%, #eef4ff 48%, #ffffff 100%);
    direction: rtl;
    overflow: hidden;
}

.faq-hero-container {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    align-items: center;
    gap: 56px;
}

.faq-hero-content {
    position: relative;
    z-index: 2;
}

.faq-hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    padding: 8px 16px;
    border: 1px solid rgba(37, 99, 235, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    color: #2563eb;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.7;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.08);
    backdrop-filter: blur(14px);
}

.faq-hero-title {
    margin: 0;
    color: #0f172a;
    font-size: 54px;
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: 0;
}

.faq-hero-description {
    max-width: 640px;
    margin: 22px 0 0;
    color: #475569;
    font-size: 17px;
    font-weight: 500;
    line-height: 2.1;
}

.faq-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.faq-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.faq-hero-btn:hover {
    transform: translateY(-2px);
}

.faq-hero-btn-primary {
    background: linear-gradient(135deg, #2563eb, #0ea5e9);
    color: #ffffff;
    box-shadow: 0 16px 34px rgba(37, 99, 235, 0.28);
}

.faq-hero-btn-primary:hover {
    box-shadow: 0 20px 42px rgba(37, 99, 235, 0.36);
}

.faq-hero-btn-secondary {
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: rgba(255, 255, 255, 0.82);
    color: #1e293b;
}

.faq-hero-btn-secondary:hover {
    border-color: rgba(37, 99, 235, 0.28);
    color: #2563eb;
    background: #ffffff;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.faq-hero-visual {
    position: relative;
    z-index: 1;
}

.faq-hero-visual::before {
    content: "";
    position: absolute;
    inset: -32px 38px auto auto;
    width: 210px;
    height: 210px;
    border-radius: 42px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.18), rgba(37, 99, 235, 0.16));
    transform: rotate(14deg);
    z-index: -1;
}

.faq-hero-card {
    position: relative;
    padding: 30px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(18px);
}

.faq-hero-card-icon {
    width: 66px;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 20px;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    color: #ffffff;
    font-size: 34px;
    font-weight: 900;
    box-shadow: 0 18px 34px rgba(37, 99, 235, 0.28);
}

.faq-hero-card-content h2 {
    margin: 0;
    color: #0f172a;
    font-size: 24px;
    font-weight: 900;
    line-height: 1.6;
}

.faq-hero-card-content p {
    margin: 10px 0 0;
    color: #64748b;
    font-size: 15px;
    font-weight: 500;
    line-height: 2;
}

.faq-hero-items {
    display: grid;
    gap: 12px;
    margin-top: 26px;
}

.faq-hero-item {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 58px;
    padding: 12px 14px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 16px;
    background: rgba(248, 250, 252, 0.84);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.faq-hero-item:hover {
    transform: translateX(-4px);
    border-color: rgba(37, 99, 235, 0.24);
    background: #ffffff;
}

.faq-hero-item span {
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    font-size: 13px;
    font-weight: 900;
}

.faq-hero-item p {
    margin: 0;
    color: #334155;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.8;
}

/* Dark Mode */
body.dark-mode .faq-hero-section {
    background:
        radial-gradient(circle at top right, rgba(56, 189, 248, 0.14), transparent 34%),
        linear-gradient(135deg, #020617 0%, #0f172a 52%, #111827 100%);
}

body.dark-mode .faq-hero-badge {
    border-color: rgba(56, 189, 248, 0.2);
    background: rgba(15, 23, 42, 0.72);
    color: #7dd3fc;
    box-shadow: 0 10px 30px rgba(2, 132, 199, 0.12);
}

body.dark-mode .faq-hero-title {
    color: #f8fafc;
}

body.dark-mode .faq-hero-description {
    color: #cbd5e1;
}

body.dark-mode .faq-hero-btn-secondary {
    border-color: rgba(148, 163, 184, 0.2);
    background: rgba(15, 23, 42, 0.72);
    color: #e2e8f0;
}

body.dark-mode .faq-hero-btn-secondary:hover {
    border-color: rgba(56, 189, 248, 0.32);
    color: #7dd3fc;
    background: rgba(15, 23, 42, 0.95);
}

body.dark-mode .faq-hero-card {
    border-color: rgba(148, 163, 184, 0.18);
    background: rgba(15, 23, 42, 0.78);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

body.dark-mode .faq-hero-card-content h2 {
    color: #f8fafc;
}

body.dark-mode .faq-hero-card-content p {
    color: #cbd5e1;
}

body.dark-mode .faq-hero-item {
    border-color: rgba(148, 163, 184, 0.16);
    background: rgba(30, 41, 59, 0.62);
}

body.dark-mode .faq-hero-item:hover {
    border-color: rgba(56, 189, 248, 0.28);
    background: rgba(30, 41, 59, 0.88);
}

body.dark-mode .faq-hero-item span {
    background: rgba(56, 189, 248, 0.12);
    color: #7dd3fc;
}

body.dark-mode .faq-hero-item p {
    color: #e2e8f0;
}

/* Responsive */
@media (max-width: 992px) {
    .faq-hero-section {
        padding: 82px 18px 60px;
    }

    .faq-hero-container {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .faq-hero-content {
        text-align: center;
    }

    .faq-hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .faq-hero-actions {
        justify-content: center;
    }

    .faq-hero-card {
        max-width: 620px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .faq-hero-section {
        padding: 64px 14px 46px;
    }

    .faq-hero-title {
        font-size: 38px;
    }

    .faq-hero-description {
        font-size: 15px;
        line-height: 2;
    }

    .faq-hero-actions {
        width: 100%;
        gap: 10px;
    }

    .faq-hero-btn {
        width: 100%;
        min-height: 46px;
        padding: 0 18px;
        border-radius: 10px;
        font-size: 14px;
    }

    .faq-hero-card {
        padding: 22px;
        border-radius: 20px;
    }

    .faq-hero-card-icon {
        width: 58px;
        height: 58px;
        margin-bottom: 18px;
        border-radius: 18px;
        font-size: 30px;
    }

    .faq-hero-card-content h2 {
        font-size: 20px;
    }

    .faq-hero-item {
        align-items: flex-start;
        min-height: auto;
        padding: 12px;
        border-radius: 14px;
    }

    .faq-hero-item span {
        width: 34px;
        height: 34px;
        border-radius: 10px;
    }

    .faq-hero-item p {
        font-size: 13px;
    }
}
/* FAQ Quick Categories Section */
.faq-categories-section {
    width: 100%;
    padding: 80px 20px;
    background: #ffffff;
    direction: rtl;
}

.faq-categories-container {
    max-width: 1180px;
    margin: 0 auto;
}

.faq-categories-header {
    max-width: 720px;
    margin: 0 auto 42px;
    text-align: center;
}

.faq-categories-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    padding: 7px 15px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.08);
    color: #2563eb;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.7;
}

.faq-categories-title {
    margin: 0;
    color: #0f172a;
    font-size: 34px;
    font-weight: 900;
    line-height: 1.55;
}

.faq-categories-description {
    margin: 14px 0 0;
    color: #64748b;
    font-size: 16px;
    font-weight: 500;
    line-height: 2;
}

.faq-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.faq-category-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    min-height: 142px;
    padding: 22px 18px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 20px;
    background: #ffffff;
    text-decoration: none;
    overflow: hidden;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}

.faq-category-card::before {
    content: "";
    position: absolute;
    inset: auto auto -42px -42px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.07);
    transition: transform 0.25s ease, background 0.25s ease;
}

.faq-category-card:hover {
    transform: translateY(-6px);
    border-color: rgba(37, 99, 235, 0.28);
    background: #f8fbff;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.faq-category-card:hover::before {
    transform: scale(1.35);
    background: rgba(37, 99, 235, 0.1);
}

.faq-category-icon {
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(14, 165, 233, 0.12));
    color: #2563eb;
    font-size: 24px;
}

.faq-category-content {
    position: relative;
    z-index: 1;
}

.faq-category-content h3 {
    margin: 0;
    color: #0f172a;
    font-size: 16px;
    font-weight: 900;
    line-height: 1.7;
}

.faq-category-content p {
    margin: 7px 0 0;
    color: #64748b;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.9;
}

/* Dark Mode */
body.dark-mode .faq-categories-section {
    background: #020617;
}

body.dark-mode .faq-categories-badge {
    background: rgba(56, 189, 248, 0.1);
    color: #7dd3fc;
}

body.dark-mode .faq-categories-title {
    color: #f8fafc;
}

body.dark-mode .faq-categories-description {
    color: #cbd5e1;
}

body.dark-mode .faq-category-card {
    border-color: rgba(148, 163, 184, 0.16);
    background: rgba(15, 23, 42, 0.72);
}

body.dark-mode .faq-category-card::before {
    background: rgba(56, 189, 248, 0.08);
}

body.dark-mode .faq-category-card:hover {
    border-color: rgba(56, 189, 248, 0.28);
    background: rgba(30, 41, 59, 0.86);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

body.dark-mode .faq-category-card:hover::before {
    background: rgba(56, 189, 248, 0.12);
}

body.dark-mode .faq-category-icon {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.12), rgba(37, 99, 235, 0.16));
    color: #7dd3fc;
}

body.dark-mode .faq-category-content h3 {
    color: #f8fafc;
}

body.dark-mode .faq-category-content p {
    color: #cbd5e1;
}

/* Responsive */
@media (max-width: 1100px) {
    .faq-categories-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .faq-categories-section {
        padding: 64px 16px;
    }

    .faq-categories-header {
        margin-bottom: 32px;
    }

    .faq-categories-title {
        font-size: 28px;
    }

    .faq-categories-description {
        font-size: 15px;
    }

    .faq-categories-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .faq-category-card {
        min-height: 132px;
        padding: 18px 15px;
        border-radius: 18px;
    }
}

@media (max-width: 520px) {
    .faq-categories-section {
        padding: 54px 14px;
    }

    .faq-categories-title {
        font-size: 24px;
    }

    .faq-categories-grid {
        grid-template-columns: 1fr;
    }

    .faq-category-card {
        min-height: auto;
    }

    .faq-category-icon {
        width: 44px;
        height: 44px;
        border-radius: 14px;
        font-size: 22px;
    }

    .faq-category-content h3 {
        font-size: 15px;
    }

    .faq-category-content p {
        font-size: 13px;
    }
}
/* FAQ Featured Questions Section */
.faq-featured-section {
    width: 100%;
    padding: 86px 20px;
    background:
        linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    direction: rtl;
}

.faq-featured-container {
    max-width: 1180px;
    margin: 0 auto;
}

.faq-featured-header {
    max-width: 760px;
    margin: 0 auto 44px;
    text-align: center;
}

.faq-featured-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    padding: 7px 15px;
    border-radius: 999px;
    background: rgba(14, 165, 233, 0.1);
    color: #0284c7;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.7;
}

.faq-featured-title {
    margin: 0;
    color: #0f172a;
    font-size: 34px;
    font-weight: 900;
    line-height: 1.55;
}

.faq-featured-description {
    margin: 14px 0 0;
    color: #64748b;
    font-size: 16px;
    font-weight: 500;
    line-height: 2;
}

.faq-featured-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.faq-featured-card {
    position: relative;
    min-height: 290px;
    display: flex;
    flex-direction: column;
    padding: 26px 24px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 24px;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.04);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}

.faq-featured-card::before {
    content: "";
    position: absolute;
    top: -68px;
    left: -68px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.07);
    transition: transform 0.25s ease, background 0.25s ease;
}

.faq-featured-card:hover {
    transform: translateY(-6px);
    border-color: rgba(37, 99, 235, 0.26);
    box-shadow: 0 22px 52px rgba(15, 23, 42, 0.09);
}

.faq-featured-card:hover::before {
    transform: scale(1.22);
    background: rgba(37, 99, 235, 0.1);
}

.faq-featured-card-main {
    grid-row: span 2;
    min-height: 100%;
    background:
        linear-gradient(135deg, rgba(37, 99, 235, 0.96), rgba(14, 165, 233, 0.94));
    border-color: transparent;
    box-shadow: 0 24px 60px rgba(37, 99, 235, 0.24);
}

.faq-featured-card-main::before {
    background: rgba(255, 255, 255, 0.13);
}

.faq-featured-card-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 22px;
}

.faq-featured-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    font-size: 24px;
}

.faq-featured-card-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 11px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.05);
    color: #475569;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.6;
}

.faq-featured-card h3 {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #0f172a;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.9;
}

.faq-featured-card p {
    position: relative;
    z-index: 1;
    margin: 14px 0 0;
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
    line-height: 2;
}

.faq-featured-link {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin-top: auto;
    padding-top: 22px;
    color: #2563eb;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.7;
    text-decoration: none;
    transition: gap 0.25s ease, color 0.25s ease;
}

.faq-featured-link:hover {
    gap: 12px;
    color: #0ea5e9;
}

.faq-featured-card-main .faq-featured-card-icon {
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
}

.faq-featured-card-main .faq-featured-card-tag {
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
}

.faq-featured-card-main h3,
.faq-featured-card-main p,
.faq-featured-card-main .faq-featured-link {
    color: #ffffff;
}

.faq-featured-card-main p {
    opacity: 0.92;
}

.faq-featured-card-main .faq-featured-link:hover {
    color: #e0f2fe;
}

/* Dark Mode */
body.dark-mode .faq-featured-section {
    background:
        linear-gradient(180deg, #020617 0%, #0f172a 100%);
}

body.dark-mode .faq-featured-badge {
    background: rgba(56, 189, 248, 0.1);
    color: #7dd3fc;
}

body.dark-mode .faq-featured-title {
    color: #f8fafc;
}

body.dark-mode .faq-featured-description {
    color: #cbd5e1;
}

body.dark-mode .faq-featured-card {
    border-color: rgba(148, 163, 184, 0.16);
    background: rgba(15, 23, 42, 0.76);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.2);
}

body.dark-mode .faq-featured-card::before {
    background: rgba(56, 189, 248, 0.08);
}

body.dark-mode .faq-featured-card:hover {
    border-color: rgba(56, 189, 248, 0.28);
    background: rgba(30, 41, 59, 0.88);
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.3);
}

body.dark-mode .faq-featured-card-main {
    background:
        linear-gradient(135deg, rgba(37, 99, 235, 0.92), rgba(8, 145, 178, 0.9));
    border-color: transparent;
}

body.dark-mode .faq-featured-card-icon {
    background: rgba(56, 189, 248, 0.12);
    color: #7dd3fc;
}

body.dark-mode .faq-featured-card-tag {
    background: rgba(148, 163, 184, 0.12);
    color: #cbd5e1;
}

body.dark-mode .faq-featured-card h3 {
    color: #f8fafc;
}

body.dark-mode .faq-featured-card p {
    color: #cbd5e1;
}

body.dark-mode .faq-featured-link {
    color: #7dd3fc;
}

body.dark-mode .faq-featured-link:hover {
    color: #bae6fd;
}

body.dark-mode .faq-featured-card-main .faq-featured-card-icon {
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
}

body.dark-mode .faq-featured-card-main .faq-featured-card-tag {
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
}

body.dark-mode .faq-featured-card-main h3,
body.dark-mode .faq-featured-card-main p,
body.dark-mode .faq-featured-card-main .faq-featured-link {
    color: #ffffff;
}

/* Responsive */
@media (max-width: 992px) {
    .faq-featured-section {
        padding: 72px 18px;
    }

    .faq-featured-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .faq-featured-card-main {
        grid-row: auto;
        grid-column: span 2;
        min-height: 290px;
    }
}

@media (max-width: 640px) {
    .faq-featured-section {
        padding: 58px 14px;
    }

    .faq-featured-header {
        margin-bottom: 32px;
    }

    .faq-featured-title {
        font-size: 25px;
    }

    .faq-featured-description {
        font-size: 15px;
    }

    .faq-featured-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .faq-featured-card,
    .faq-featured-card-main {
        grid-column: auto;
        min-height: auto;
        padding: 22px 18px;
        border-radius: 20px;
    }

    .faq-featured-card-top {
        margin-bottom: 18px;
    }

    .faq-featured-card-icon {
        width: 44px;
        height: 44px;
        border-radius: 14px;
        font-size: 22px;
    }

    .faq-featured-card h3 {
        font-size: 16px;
        line-height: 1.9;
    }

    .faq-featured-card p {
        font-size: 13px;
        line-height: 2;
    }
}
/* ================================
   FAQ Support Sidebar Section
================================ */

.faq-support-section {
    padding: 90px 20px;
    background:
        radial-gradient(circle at top right, rgba(37, 99, 235, 0.09), transparent 35%),
        radial-gradient(circle at bottom left, rgba(14, 165, 233, 0.08), transparent 35%),
        #f8fafc;
    direction: rtl;
}

.faq-support-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}

.faq-support-content {
    max-width: 680px;
    margin: 0 auto 42px;
    text-align: center;
}

.faq-support-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    font-size: 14px;
    font-weight: 700;
}

.faq-support-title {
    margin: 0 0 16px;
    color: #0f172a;
    font-size: 34px;
    font-weight: 900;
    line-height: 1.5;
}

.faq-support-description {
    margin: 0;
    color: #64748b;
    font-size: 16px;
    font-weight: 500;
    line-height: 2;
}

.faq-support-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.faq-support-card {
    position: relative;
    overflow: hidden;
    min-height: 285px;
    padding: 26px 22px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.faq-support-card::before {
    content: "";
    position: absolute;
    right: auto;
    bottom: -45px;
    left: -35px;
    width: 110px;
    height: 110px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.08);
    pointer-events: none;
}

.faq-support-card:hover {
    transform: translateY(-8px);
    border-color: rgba(37, 99, 235, 0.35);
    box-shadow: 0 26px 60px rgba(15, 23, 42, 0.13);
}

.faq-support-icon {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin-bottom: 20px;
    border-radius: 18px;
    background: linear-gradient(135deg, #2563eb, #0ea5e9);
    color: #ffffff;
    font-size: 24px;
    box-shadow: 0 14px 28px rgba(37, 99, 235, 0.28);
}

.faq-support-card-content {
    position: relative;
    z-index: 1;
}

.faq-support-card-content h3 {
    margin: 0 0 12px;
    color: #0f172a;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.6;
}

.faq-support-card-content p {
    margin: 0 0 18px;
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
    line-height: 2;
}

.faq-support-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2563eb;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: color 0.25s ease;
}

.faq-support-link::after {
    content: "←";
    font-size: 15px;
    transition: transform 0.25s ease;
}

.faq-support-link:hover {
    color: #1d4ed8;
}

.faq-support-link:hover::after {
    transform: translateX(-4px);
}

.faq-support-card-highlight {
    background: linear-gradient(135deg, #2563eb, #0ea5e9);
    border-color: transparent;
}

.faq-support-card-highlight::before {
    background: rgba(255, 255, 255, 0.12);
}

.faq-support-card-highlight .faq-support-icon {
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    box-shadow: none;
}

.faq-support-card-highlight h3,
.faq-support-card-highlight p {
    color: #ffffff;
}

.faq-support-note {
    display: block;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.9;
}


/* ================================
   Dark Mode - FAQ Support Sidebar
================================ */

html.dark .faq-support-section,
body.dark .faq-support-section,
html.dark-mode .faq-support-section,
body.dark-mode .faq-support-section,
[data-theme="dark"] .faq-support-section {
    background:
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.14), transparent 35%),
        radial-gradient(circle at bottom left, rgba(14, 165, 233, 0.11), transparent 35%),
        #020617;
}

html.dark .faq-support-badge,
body.dark .faq-support-badge,
html.dark-mode .faq-support-badge,
body.dark-mode .faq-support-badge,
[data-theme="dark"] .faq-support-badge {
    background: rgba(96, 165, 250, 0.14);
    color: #93c5fd;
}

html.dark .faq-support-title,
body.dark .faq-support-title,
html.dark-mode .faq-support-title,
body.dark-mode .faq-support-title,
[data-theme="dark"] .faq-support-title {
    color: #f8fafc;
}

html.dark .faq-support-description,
body.dark .faq-support-description,
html.dark-mode .faq-support-description,
body.dark-mode .faq-support-description,
[data-theme="dark"] .faq-support-description {
    color: #94a3b8;
}

html.dark .faq-support-card,
body.dark .faq-support-card,
html.dark-mode .faq-support-card,
body.dark-mode .faq-support-card,
[data-theme="dark"] .faq-support-card {
    background: rgba(15, 23, 42, 0.82);
    border-color: rgba(148, 163, 184, 0.18);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

html.dark .faq-support-card::before,
body.dark .faq-support-card::before,
html.dark-mode .faq-support-card::before,
body.dark-mode .faq-support-card::before,
[data-theme="dark"] .faq-support-card::before {
    background: rgba(96, 165, 250, 0.08);
}

html.dark .faq-support-card:hover,
body.dark .faq-support-card:hover,
html.dark-mode .faq-support-card:hover,
body.dark-mode .faq-support-card:hover,
[data-theme="dark"] .faq-support-card:hover {
    border-color: rgba(96, 165, 250, 0.35);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.4);
}

html.dark .faq-support-icon,
body.dark .faq-support-icon,
html.dark-mode .faq-support-icon,
body.dark-mode .faq-support-icon,
[data-theme="dark"] .faq-support-icon {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(59, 130, 246, 0.24);
}

html.dark .faq-support-card-content h3,
body.dark .faq-support-card-content h3,
html.dark-mode .faq-support-card-content h3,
body.dark-mode .faq-support-card-content h3,
[data-theme="dark"] .faq-support-card-content h3 {
    color: #f8fafc;
}

html.dark .faq-support-card-content p,
body.dark .faq-support-card-content p,
html.dark-mode .faq-support-card-content p,
body.dark-mode .faq-support-card-content p,
[data-theme="dark"] .faq-support-card-content p {
    color: #94a3b8;
}

html.dark .faq-support-link,
body.dark .faq-support-link,
html.dark-mode .faq-support-link,
body.dark-mode .faq-support-link,
[data-theme="dark"] .faq-support-link {
    color: #93c5fd;
}

html.dark .faq-support-link:hover,
body.dark .faq-support-link:hover,
html.dark-mode .faq-support-link:hover,
body.dark-mode .faq-support-link:hover,
[data-theme="dark"] .faq-support-link:hover {
    color: #bfdbfe;
}

html.dark .faq-support-card-highlight,
body.dark .faq-support-card-highlight,
html.dark-mode .faq-support-card-highlight,
body.dark-mode .faq-support-card-highlight,
[data-theme="dark"] .faq-support-card-highlight {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.94), rgba(2, 132, 199, 0.92));
    border-color: rgba(96, 165, 250, 0.18);
}

html.dark .faq-support-card-highlight .faq-support-icon,
body.dark .faq-support-card-highlight .faq-support-icon,
html.dark-mode .faq-support-card-highlight .faq-support-icon,
body.dark-mode .faq-support-card-highlight .faq-support-icon,
[data-theme="dark"] .faq-support-card-highlight .faq-support-icon {
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
    box-shadow: none;
}

html.dark .faq-support-card-highlight h3,
body.dark .faq-support-card-highlight h3,
html.dark-mode .faq-support-card-highlight h3,
body.dark-mode .faq-support-card-highlight h3,
[data-theme="dark"] .faq-support-card-highlight h3,
html.dark .faq-support-card-highlight p,
body.dark .faq-support-card-highlight p,
html.dark-mode .faq-support-card-highlight p,
body.dark-mode .faq-support-card-highlight p,
[data-theme="dark"] .faq-support-card-highlight p {
    color: #ffffff;
}

html.dark .faq-support-note,
body.dark .faq-support-note,
html.dark-mode .faq-support-note,
body.dark-mode .faq-support-note,
[data-theme="dark"] .faq-support-note {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
}


/* ================================
   Responsive
================================ */

@media (max-width: 1100px) {
    .faq-support-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .faq-support-section {
        padding: 70px 16px;
    }

    .faq-support-title {
        font-size: 28px;
    }

    .faq-support-description {
        font-size: 15px;
    }

    .faq-support-grid {
        grid-template-columns: 1fr;
    }

    .faq-support-card {
        min-height: auto;
        padding: 24px 20px;
        border-radius: 22px;
    }
}

@media (max-width: 480px) {
    .faq-support-title {
        font-size: 24px;
    }

    .faq-support-icon {
        width: 50px;
        height: 50px;
        border-radius: 16px;
        font-size: 22px;
    }

    .faq-support-card-content h3 {
        font-size: 17px;
    }

    .faq-support-card-content p {
        font-size: 13.5px;
    }
}
/* Main FAQ Accordion Section */
.faq-main-section {
    width: 100%;
    padding: 92px 20px;
    background: #ffffff;
    direction: rtl;
}

.faq-main-container {
    max-width: 1180px;
    margin: 0 auto;
}

.faq-main-header {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.faq-main-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    padding: 7px 15px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.08);
    color: #2563eb;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.7;
}

.faq-main-title {
    margin: 0;
    color: #0f172a;
    font-size: 34px;
    font-weight: 900;
    line-height: 1.55;
}

.faq-main-description {
    margin: 14px 0 0;
    color: #64748b;
    font-size: 16px;
    font-weight: 500;
    line-height: 2;
}

.faq-main-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    align-items: flex-start;
    gap: 28px;
}

.faq-main-sidebar {
    position: sticky;
    top: 110px;
    display: grid;
    gap: 10px;
    padding: 16px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 22px;
    background: #f8fafc;
}

.faq-sidebar-link {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 0 14px;
    border-radius: 13px;
    color: #475569;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.7;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.faq-sidebar-link:hover,
.faq-sidebar-link.active {
    background: #ffffff;
    color: #2563eb;
    transform: translateX(-3px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.faq-accordion-content {
    display: grid;
    gap: 28px;
}

.faq-group {
    scroll-margin-top: 120px;
    padding: 24px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.04);
}

.faq-group-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(226, 232, 240, 0.95);
}

.faq-group-header span {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(37, 99, 235, 0.09);
    font-size: 22px;
}

.faq-group-header h3 {
    margin: 0;
    color: #0f172a;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.7;
}

.faq-accordion-list {
    display: grid;
    gap: 12px;
}

.faq-accordion-item {
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 18px;
    background: #f8fafc;
    overflow: hidden;
    transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.faq-accordion-item.active {
    border-color: rgba(37, 99, 235, 0.24);
    background: #ffffff;
    box-shadow: 0 14px 32px rgba(37, 99, 235, 0.07);
}

.faq-accordion-question {
    width: 100%;
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 20px;
    border: 0;
    background: transparent;
    color: #0f172a;
    font-family: inherit;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.9;
    text-align: right;
    cursor: pointer;
}

.faq-accordion-question i {
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.09);
    color: #2563eb;
    font-style: normal;
    font-size: 20px;
    font-weight: 900;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.faq-accordion-item.active .faq-accordion-question i {
    transform: rotate(45deg);
    background: #2563eb;
    color: #ffffff;
}

.faq-accordion-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-accordion-answer p {
    margin: 0;
    padding: 0 20px 20px 64px;
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
    line-height: 2.1;
}

/* Dark Mode */
body.dark-mode .faq-main-section {
    background: #020617;
}

body.dark-mode .faq-main-badge {
    background: rgba(56, 189, 248, 0.1);
    color: #7dd3fc;
}

body.dark-mode .faq-main-title {
    color: #f8fafc;
}

body.dark-mode .faq-main-description {
    color: #cbd5e1;
}

body.dark-mode .faq-main-sidebar,
body.dark-mode .faq-group {
    border-color: rgba(148, 163, 184, 0.16);
    background: rgba(15, 23, 42, 0.72);
}

body.dark-mode .faq-sidebar-link {
    color: #cbd5e1;
}

body.dark-mode .faq-sidebar-link:hover,
body.dark-mode .faq-sidebar-link.active {
    background: rgba(30, 41, 59, 0.9);
    color: #7dd3fc;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

body.dark-mode .faq-group {
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
}

body.dark-mode .faq-group-header {
    border-bottom-color: rgba(148, 163, 184, 0.16);
}

body.dark-mode .faq-group-header span {
    background: rgba(56, 189, 248, 0.1);
}

body.dark-mode .faq-group-header h3 {
    color: #f8fafc;
}

body.dark-mode .faq-accordion-item {
    border-color: rgba(148, 163, 184, 0.16);
    background: rgba(30, 41, 59, 0.58);
}

body.dark-mode .faq-accordion-item.active {
    border-color: rgba(56, 189, 248, 0.28);
    background: rgba(30, 41, 59, 0.88);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24);
}

body.dark-mode .faq-accordion-question {
    color: #f8fafc;
}

body.dark-mode .faq-accordion-question i {
    background: rgba(56, 189, 248, 0.12);
    color: #7dd3fc;
}

body.dark-mode .faq-accordion-item.active .faq-accordion-question i {
    background: #0ea5e9;
    color: #ffffff;
}

body.dark-mode .faq-accordion-answer p {
    color: #cbd5e1;
}

/* Responsive */
@media (max-width: 992px) {
    .faq-main-section {
        padding: 76px 18px;
    }

    .faq-main-layout {
        grid-template-columns: 1fr;
    }

    .faq-main-sidebar {
        position: static;
        display: flex;
        gap: 10px;
        overflow-x: auto;
        padding: 12px;
        border-radius: 18px;
        scrollbar-width: none;
    }

    .faq-main-sidebar::-webkit-scrollbar {
        display: none;
    }

    .faq-sidebar-link {
        flex: 0 0 auto;
        white-space: nowrap;
    }
}

@media (max-width: 640px) {
    .faq-main-section {
        padding: 60px 14px;
    }

    .faq-main-header {
        margin-bottom: 34px;
    }

    .faq-main-title {
        font-size: 25px;
    }

    .faq-main-description {
        font-size: 15px;
    }

    .faq-group {
        padding: 18px;
        border-radius: 20px;
    }

    .faq-group-header {
        margin-bottom: 14px;
        padding-bottom: 14px;
    }

    .faq-group-header span {
        width: 40px;
        height: 40px;
        border-radius: 13px;
        font-size: 20px;
    }

    .faq-group-header h3 {
        font-size: 17px;
    }

    .faq-accordion-question {
        min-height: 58px;
        padding: 15px 16px;
        font-size: 14px;
    }

    .faq-accordion-question i {
        width: 28px;
        height: 28px;
        font-size: 18px;
    }

    .faq-accordion-answer p {
        padding: 0 16px 18px 16px;
        font-size: 13px;
        line-height: 2;
    }
}
/* ================================
   FAQ Help Path / Useful Links
================================ */

.faq-help-path-section {
    padding: 90px 20px;
    background: #ffffff;
    direction: rtl;
}

.faq-help-path-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}

.faq-help-path-header {
    max-width: 690px;
    margin: 0 auto 42px;
    text-align: center;
}

.faq-help-path-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(14, 165, 233, 0.1);
    color: #0284c7;
    font-size: 14px;
    font-weight: 800;
}

.faq-help-path-title {
    margin: 0 0 16px;
    color: #0f172a;
    font-size: 34px;
    font-weight: 900;
    line-height: 1.5;
}

.faq-help-path-description {
    margin: 0;
    color: #64748b;
    font-size: 16px;
    font-weight: 500;
    line-height: 2;
}

.faq-help-path-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.faq-help-path-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    min-height: 190px;
    padding: 26px 24px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.92));
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.07);
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.faq-help-path-card::before {
    content: "";
    position: absolute;
    top: -42px;
    left: -42px;
    width: 110px;
    height: 110px;
    border-radius: 999px;
    background: rgba(14, 165, 233, 0.08);
    transition: transform 0.3s ease, background 0.3s ease;
}

.faq-help-path-card:hover {
    transform: translateY(-8px);
    border-color: rgba(14, 165, 233, 0.35);
    box-shadow: 0 26px 60px rgba(15, 23, 42, 0.12);
}

.faq-help-path-card:hover::before {
    transform: scale(1.25);
    background: rgba(14, 165, 233, 0.12);
}

.faq-help-path-icon {
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: linear-gradient(135deg, #0ea5e9, #2563eb);
    color: #ffffff;
    font-size: 24px;
    box-shadow: 0 14px 28px rgba(14, 165, 233, 0.24);
}

.faq-help-path-content {
    position: relative;
    z-index: 1;
    flex: 1;
}

.faq-help-path-content h3 {
    margin: 0 0 10px;
    color: #0f172a;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.6;
}

.faq-help-path-content p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
    line-height: 2;
}

.faq-help-path-arrow {
    position: absolute;
    left: 22px;
    bottom: 20px;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: rgba(14, 165, 233, 0.1);
    color: #0284c7;
    font-size: 17px;
    font-weight: 900;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.faq-help-path-card:hover .faq-help-path-arrow {
    transform: translateX(-4px);
    background: #0284c7;
    color: #ffffff;
}


/* ================================
   Dark Mode - FAQ Help Path
================================ */

html.dark .faq-help-path-section,
body.dark .faq-help-path-section,
html.dark-mode .faq-help-path-section,
body.dark-mode .faq-help-path-section,
[data-theme="dark"] .faq-help-path-section {
    background: #020617;
}

html.dark .faq-help-path-badge,
body.dark .faq-help-path-badge,
html.dark-mode .faq-help-path-badge,
body.dark-mode .faq-help-path-badge,
[data-theme="dark"] .faq-help-path-badge {
    background: rgba(56, 189, 248, 0.13);
    color: #7dd3fc;
}

html.dark .faq-help-path-title,
body.dark .faq-help-path-title,
html.dark-mode .faq-help-path-title,
body.dark-mode .faq-help-path-title,
[data-theme="dark"] .faq-help-path-title {
    color: #f8fafc;
}

html.dark .faq-help-path-description,
body.dark .faq-help-path-description,
html.dark-mode .faq-help-path-description,
body.dark-mode .faq-help-path-description,
[data-theme="dark"] .faq-help-path-description {
    color: #94a3b8;
}

html.dark .faq-help-path-card,
body.dark .faq-help-path-card,
html.dark-mode .faq-help-path-card,
body.dark-mode .faq-help-path-card,
[data-theme="dark"] .faq-help-path-card {
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.78));
    border-color: rgba(148, 163, 184, 0.18);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

html.dark .faq-help-path-card::before,
body.dark .faq-help-path-card::before,
html.dark-mode .faq-help-path-card::before,
body.dark-mode .faq-help-path-card::before,
[data-theme="dark"] .faq-help-path-card::before {
    background: rgba(56, 189, 248, 0.08);
}

html.dark .faq-help-path-card:hover,
body.dark .faq-help-path-card:hover,
html.dark-mode .faq-help-path-card:hover,
body.dark-mode .faq-help-path-card:hover,
[data-theme="dark"] .faq-help-path-card:hover {
    border-color: rgba(56, 189, 248, 0.35);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.42);
}

html.dark .faq-help-path-card:hover::before,
body.dark .faq-help-path-card:hover::before,
html.dark-mode .faq-help-path-card:hover::before,
body.dark-mode .faq-help-path-card:hover::before,
[data-theme="dark"] .faq-help-path-card:hover::before {
    background: rgba(56, 189, 248, 0.12);
}

html.dark .faq-help-path-icon,
body.dark .faq-help-path-icon,
html.dark-mode .faq-help-path-icon,
body.dark-mode .faq-help-path-icon,
[data-theme="dark"] .faq-help-path-icon {
    background: linear-gradient(135deg, #38bdf8, #3b82f6);
    box-shadow: 0 14px 28px rgba(56, 189, 248, 0.2);
}

html.dark .faq-help-path-content h3,
body.dark .faq-help-path-content h3,
html.dark-mode .faq-help-path-content h3,
body.dark-mode .faq-help-path-content h3,
[data-theme="dark"] .faq-help-path-content h3 {
    color: #f8fafc;
}

html.dark .faq-help-path-content p,
body.dark .faq-help-path-content p,
html.dark-mode .faq-help-path-content p,
body.dark-mode .faq-help-path-content p,
[data-theme="dark"] .faq-help-path-content p {
    color: #94a3b8;
}

html.dark .faq-help-path-arrow,
body.dark .faq-help-path-arrow,
html.dark-mode .faq-help-path-arrow,
body.dark-mode .faq-help-path-arrow,
[data-theme="dark"] .faq-help-path-arrow {
    background: rgba(56, 189, 248, 0.12);
    color: #7dd3fc;
}

html.dark .faq-help-path-card:hover .faq-help-path-arrow,
body.dark .faq-help-path-card:hover .faq-help-path-arrow,
html.dark-mode .faq-help-path-card:hover .faq-help-path-arrow,
body.dark-mode .faq-help-path-card:hover .faq-help-path-arrow,
[data-theme="dark"] .faq-help-path-card:hover .faq-help-path-arrow {
    background: #38bdf8;
    color: #020617;
}


/* ================================
   Responsive
================================ */

@media (max-width: 1100px) {
    .faq-help-path-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .faq-help-path-section {
        padding: 70px 16px;
    }

    .faq-help-path-title {
        font-size: 28px;
    }

    .faq-help-path-description {
        font-size: 15px;
    }

    .faq-help-path-grid {
        grid-template-columns: 1fr;
    }

    .faq-help-path-card {
        min-height: auto;
        padding: 24px 20px 66px;
        border-radius: 22px;
    }

    .faq-help-path-icon {
        width: 52px;
        height: 52px;
        border-radius: 17px;
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .faq-help-path-title {
        font-size: 24px;
    }

    .faq-help-path-card {
        gap: 14px;
    }

    .faq-help-path-content h3 {
        font-size: 17px;
    }

    .faq-help-path-content p {
        font-size: 13.5px;
    }
}
/* ================================
   FAQ Final CTA Section
================================ */

.faq-final-cta-section {
    padding: 95px 20px;
    background:
        radial-gradient(circle at top left, rgba(14, 165, 233, 0.18), transparent 34%),
        radial-gradient(circle at bottom right, rgba(37, 99, 235, 0.2), transparent 36%),
        linear-gradient(135deg, #0f172a, #1e3a8a);
    direction: rtl;
    overflow: hidden;
}

.faq-final-cta-container {
    position: relative;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
    gap: 36px;
    align-items: center;
}

.faq-final-cta-container::before {
    content: "";
    position: absolute;
    top: -90px;
    right: -90px;
    width: 220px;
    height: 220px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.faq-final-cta-container::after {
    content: "";
    position: absolute;
    left: 12%;
    bottom: -110px;
    width: 260px;
    height: 260px;
    border-radius: 999px;
    background: rgba(14, 165, 233, 0.14);
    pointer-events: none;
}

.faq-final-cta-content {
    position: relative;
    z-index: 1;
}

.faq-final-cta-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #bfdbfe;
    font-size: 14px;
    font-weight: 800;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.faq-final-cta-title {
    max-width: 760px;
    margin: 0 0 18px;
    color: #ffffff;
    font-size: 38px;
    font-weight: 950;
    line-height: 1.55;
}

.faq-final-cta-description {
    max-width: 720px;
    margin: 0;
    color: #dbeafe;
    font-size: 16px;
    font-weight: 500;
    line-height: 2.1;
}

.faq-final-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.faq-final-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.faq-final-cta-btn-primary {
    background: #ffffff;
    color: #1d4ed8;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.22);
}

.faq-final-cta-btn-primary:hover {
    transform: translateY(-4px);
    background: #eff6ff;
    box-shadow: 0 22px 42px rgba(15, 23, 42, 0.3);
}

.faq-final-cta-btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.26);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.faq-final-cta-btn-secondary:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.16);
}

.faq-final-cta-card {
    position: relative;
    z-index: 1;
    padding: 30px 26px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.faq-final-cta-card-icon {
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    margin-bottom: 22px;
    border-radius: 20px;
    background: linear-gradient(135deg, #38bdf8, #2563eb);
    color: #ffffff;
    font-size: 28px;
    box-shadow: 0 18px 34px rgba(14, 165, 233, 0.26);
}

.faq-final-cta-card h3 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.7;
}

.faq-final-cta-card p {
    margin: 0;
    color: #dbeafe;
    font-size: 14px;
    font-weight: 500;
    line-height: 2;
}

/* Dark Mode */
html.dark .faq-final-cta-section,
body.dark .faq-final-cta-section,
html.dark-mode .faq-final-cta-section,
body.dark-mode .faq-final-cta-section,
[data-theme="dark"] .faq-final-cta-section {
    background:
        radial-gradient(circle at top left, rgba(56, 189, 248, 0.14), transparent 34%),
        radial-gradient(circle at bottom right, rgba(59, 130, 246, 0.18), transparent 36%),
        linear-gradient(135deg, #020617, #0f172a);
}

html.dark .faq-final-cta-card,
body.dark .faq-final-cta-card,
html.dark-mode .faq-final-cta-card,
body.dark-mode .faq-final-cta-card,
[data-theme="dark"] .faq-final-cta-card {
    background: rgba(15, 23, 42, 0.68);
    border-color: rgba(148, 163, 184, 0.18);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

/* Responsive */
@media (max-width: 992px) {
    .faq-final-cta-container {
        grid-template-columns: 1fr;
    }

    .faq-final-cta-card {
        max-width: 520px;
   75px 16px;
    }

 768px) {
    .faq-final-cta-section {
        padding: 75px 16px;
    }

    .faq-final-cta-title {
        font-size: 29px;
    }

    .faq-final-cta-description {
        font-size: 15px;
    }

    .faq-final-cta-actions {
        flex-direction: column;
    }

    .faq-final-cta-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .faq-final-cta-title {
        font-size: 24px;
    }

    .faq-final-cta-card {
        padding: 24px 20px;
        border-radius: 24px;
    }

    .faq-final-cta-card-icon {
        width: 56px;
        height: 56px;
        border-radius: 18px;
        font-size: 25px;
    }
}
