/* =========================================
   FAQ BLOCK
========================================= */
.faq_block {
    position: relative;
    background: #000;
    overflow: hidden;
    padding: 120px 0 100px;
}

/* =========================================
   BACKGROUND
========================================= */
.faq_block_bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.faq_block_glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
}

.faq_block_glow_1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(234, 179, 8, 0.08), transparent 70%);
    top: -15%;
    left: -10%;
    animation: faq_block_drift 22s ease-in-out infinite;
}

.faq_block_glow_2 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05), transparent 70%);
    top: 40%;
    right: -12%;
    animation: faq_block_drift 26s ease-in-out infinite 5s;
}

.faq_block_glow_3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.04), transparent 70%);
    bottom: -10%;
    left: 30%;
    animation: faq_block_drift 28s ease-in-out infinite 10s;
}

@keyframes faq_block_drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(35px, -45px) scale(1.1); }
    66% { transform: translate(-25px, 35px) scale(0.95); }
}

.faq_block_grid_pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
    background-size: 70px 70px;
    mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 65%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 65%);
}

.faq_block_particles {
    position: absolute;
    inset: 0;
}

.faq_block_particles span {
    position: absolute;
    border-radius: 50%;
    animation: faq_block_particle 20s ease-in-out infinite;
}

.faq_block_particles span:nth-child(1) { width: 5px; height: 5px; background: rgba(234, 179, 8, 0.25); top: 10%; left: 12%; animation-delay: 0s; }
.faq_block_particles span:nth-child(2) { width: 4px; height: 4px; background: rgba(59, 130, 246, 0.25); top: 35%; right: 10%; animation-delay: 4s; }
.faq_block_particles span:nth-child(3) { width: 6px; height: 6px; background: rgba(34, 197, 94, 0.2); bottom: 40%; left: 8%; animation-delay: 8s; }
.faq_block_particles span:nth-child(4) { width: 3px; height: 3px; background: rgba(168, 85, 247, 0.3); top: 60%; right: 22%; animation-delay: 12s; }
.faq_block_particles span:nth-child(5) { width: 5px; height: 5px; background: rgba(234, 179, 8, 0.2); bottom: 20%; left: 45%; animation-delay: 6s; }
.faq_block_particles span:nth-child(6) { width: 4px; height: 4px; background: rgba(249, 115, 22, 0.2); top: 80%; right: 35%; animation-delay: 16s; }

@keyframes faq_block_particle {
    0%, 100% { transform: translateY(0); opacity: 0.3; }
    50% { transform: translateY(-30px); opacity: 0.9; }
}

/* =========================================
   HEADER
========================================= */
.faq_block_header {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
    z-index: 2;
}

.faq_block_tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 26px;
    background: rgba(234, 179, 8, 0.06);
    border: 1px solid rgba(234, 179, 8, 0.25);
    border-radius: 50px;
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
}

.faq_block_tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(234, 179, 8, 0.12), transparent);
    animation: faq_block_sweep 3.5s ease-in-out infinite;
}

@keyframes faq_block_sweep {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.faq_block_tag_dot {
    width: 8px;
    height: 8px;
    background: #eab308;
    border-radius: 50%;
    flex-shrink: 0;
    animation: faq_block_dot_pulse 2s ease-in-out infinite;
}

@keyframes faq_block_dot_pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(234, 179, 8, 0.5); }
    50% { box-shadow: 0 0 0 8px rgba(234, 179, 8, 0); }
}

.faq_block_tag span {
    font-size: 11px;
    font-weight: 800;
    color: #eab308;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    z-index: 1;
}

.faq_block_tag svg {
    color: #eab308;
    position: relative;
    z-index: 1;
}

.faq_block_title {
    font-size: clamp(32px, 5vw, 58px);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.faq_block_title_gold {
    background: linear-gradient(135deg, #eab308, #fbbf24, #f59e0b);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: faq_block_grad 5s ease infinite;
}

@keyframes faq_block_grad {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.faq_block_desc {
    font-size: clamp(14px, 1.8vw, 17px);
    color: #6b7280;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.75;
}

/* =========================================
   FILTER TABS
========================================= */
.faq_block_tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.faq_block_tabs_inner {
    display: inline-flex;
    gap: 6px;
    padding: 6px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 60px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-wrap: wrap;
    justify-content: center;
}

.faq_block_tab {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 10px 20px;
    border: none;
    background: transparent;
    border-radius: 50px;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #4b5563;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    white-space: nowrap;
}

.faq_block_tab svg {
    opacity: 0.4;
    transition: opacity 0.3s;
}

.faq_block_tab:hover {
    color: #9ca3af;
    background: rgba(255, 255, 255, 0.03);
}

.faq_block_tab:hover svg { opacity: 0.7; }

.faq_block_tab_on {
    background: linear-gradient(135deg, #eab308, #f59e0b) !important;
    color: #000 !important;
    box-shadow: 0 4px 20px rgba(234, 179, 8, 0.3);
}

.faq_block_tab_on svg { opacity: 1 !important; }

.faq_block_tab_badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 10px;
    font-weight: 700;
    font-style: normal;
    transition: all 0.3s;
}

.faq_block_tab_on .faq_block_tab_badge {
    background: rgba(0, 0, 0, 0.2);
    color: #000;
}

/* =========================================
   MAIN LAYOUT
========================================= */
.faq_block_layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 44px;
    align-items: start;
    position: relative;
    z-index: 2;
}

/* =========================================
   GROUP LABELS
========================================= */
.faq_block_group {
    margin: 8px 0;
}

.faq_block_group_label {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 0;
}

.faq_block_group_label span {
    font-size: 11px;
    font-weight: 700;
    color: rgba(234, 179, 8, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
}

.faq_block_group_line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(234, 179, 8, 0.15), transparent);
}

.faq_block_group_blue span { color: rgba(59, 130, 246, 0.6); }
.faq_block_line_blue { background: linear-gradient(90deg, rgba(59, 130, 246, 0.15), transparent); }

.faq_block_group_green span { color: rgba(34, 197, 94, 0.6); }
.faq_block_line_green { background: linear-gradient(90deg, rgba(34, 197, 94, 0.15), transparent); }

.faq_block_group_purple span { color: rgba(168, 85, 247, 0.6); }
.faq_block_line_purple { background: linear-gradient(90deg, rgba(168, 85, 247, 0.15), transparent); }

/* =========================================
   FAQ ITEM
========================================= */
.faq_block_accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq_block_item {
    transition: all 0.4s ease;
}

.faq_block_item_wrap {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.faq_block_item:hover .faq_block_item_wrap {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(4px);
}

.faq_block_item_open .faq_block_item_wrap {
    border-color: rgba(234, 179, 8, 0.2);
    transform: translateX(6px);
    box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.4), 0 0 30px rgba(234, 179, 8, 0.03);
}

.faq_block_item_blue.faq_block_item_open .faq_block_item_wrap { border-color: rgba(59, 130, 246, 0.2); box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.4), 0 0 30px rgba(59, 130, 246, 0.03); }
.faq_block_item_green.faq_block_item_open .faq_block_item_wrap { border-color: rgba(34, 197, 94, 0.2); box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.4), 0 0 30px rgba(34, 197, 94, 0.03); }
.faq_block_item_purple.faq_block_item_open .faq_block_item_wrap { border-color: rgba(168, 85, 247, 0.2); box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.4), 0 0 30px rgba(168, 85, 247, 0.03); }

/* Accent Strip */
.faq_block_item_accent {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #eab308, rgba(234, 179, 8, 0.2));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.faq_block_accent_blue { background: linear-gradient(to bottom, #3b82f6, rgba(59, 130, 246, 0.2)); }
.faq_block_accent_green { background: linear-gradient(to bottom, #22c55e, rgba(34, 197, 94, 0.2)); }
.faq_block_accent_purple { background: linear-gradient(to bottom, #a855f7, rgba(168, 85, 247, 0.2)); }

.faq_block_item:hover .faq_block_item_accent,
.faq_block_item_open .faq_block_item_accent { opacity: 1; }

/* Question Button */
.faq_block_question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: "Poppins", sans-serif;
    text-align: left;
}

.faq_block_q_num {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 12px;
    background: rgba(234, 179, 8, 0.06);
    border: 1px solid rgba(234, 179, 8, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.faq_block_q_num span { font-size: 13px; font-weight: 800; color: #eab308; transition: color 0.3s; }

.faq_block_num_blue { background: rgba(59, 130, 246, 0.06); border-color: rgba(59, 130, 246, 0.15); }
.faq_block_num_blue span { color: #3b82f6; }
.faq_block_num_green { background: rgba(34, 197, 94, 0.06); border-color: rgba(34, 197, 94, 0.15); }
.faq_block_num_green span { color: #22c55e; }
.faq_block_num_purple { background: rgba(168, 85, 247, 0.06); border-color: rgba(168, 85, 247, 0.15); }
.faq_block_num_purple span { color: #a855f7; }

.faq_block_item_open .faq_block_q_num { background: linear-gradient(135deg, #eab308, #ca8a04); border-color: #eab308; transform: scale(1.05); box-shadow: 0 6px 18px rgba(234, 179, 8, 0.25); }
.faq_block_item_open .faq_block_q_num span { color: #000; }
.faq_block_item_blue.faq_block_item_open .faq_block_q_num { background: linear-gradient(135deg, #3b82f6, #2563eb); border-color: #3b82f6; box-shadow: 0 6px 18px rgba(59, 130, 246, 0.25); }
.faq_block_item_green.faq_block_item_open .faq_block_q_num { background: linear-gradient(135deg, #22c55e, #16a34a); border-color: #22c55e; box-shadow: 0 6px 18px rgba(34, 197, 94, 0.25); }
.faq_block_item_purple.faq_block_item_open .faq_block_q_num { background: linear-gradient(135deg, #a855f7, #9333ea); border-color: #a855f7; box-shadow: 0 6px 18px rgba(168, 85, 247, 0.25); }

.faq_block_q_text { flex: 1; min-width: 0; }

.faq_block_q_cat {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: rgba(234, 179, 8, 0.6);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
}

.faq_block_cat_blue { color: rgba(59, 130, 246, 0.6); }
.faq_block_cat_green { color: rgba(34, 197, 94, 0.6); }
.faq_block_cat_purple { color: rgba(168, 85, 247, 0.6); }

.faq_block_q_text h3 { font-size: 15px; font-weight: 600; color: #d1d5db; line-height: 1.45; transition: color 0.3s; }
.faq_block_item:hover .faq_block_q_text h3 { color: #fff; }
.faq_block_item_open .faq_block_q_text h3 { color: #eab308; }
.faq_block_item_blue.faq_block_item_open .faq_block_q_text h3 { color: #3b82f6; }
.faq_block_item_green.faq_block_item_open .faq_block_q_text h3 { color: #22c55e; }
.faq_block_item_purple.faq_block_item_open .faq_block_q_text h3 { color: #a855f7; }

/* Toggle */
.faq_block_q_toggle { width: 36px; height: 36px; min-width: 36px; border-radius: 50%; background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08); display: flex; align-items: center; justify-content: center; position: relative; transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1); }
.faq_block_toggle_line { position: absolute; background: #6b7280; border-radius: 2px; transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1); }
.faq_block_toggle_h { width: 14px; height: 2px; }
.faq_block_toggle_v { width: 2px; height: 14px; }
.faq_block_item_open .faq_block_q_toggle { background: rgba(234, 179, 8, 0.1); border-color: rgba(234, 179, 8, 0.2); }
.faq_block_item_open .faq_block_toggle_line { background: #eab308; }
.faq_block_item_open .faq_block_toggle_v { transform: rotate(90deg); opacity: 0; }

/* =========================================
   ANSWER
========================================= */
.faq_block_answer { max-height: 0; overflow: hidden; transition: max-height 0.6s cubic-bezier(0.23, 1, 0.32, 1); }
.faq_block_answer_body { padding: 0 24px 24px 82px; }
.faq_block_answer_line { height: 1px; background: linear-gradient(90deg, rgba(234, 179, 8, 0.2), transparent); margin-bottom: 18px; }
.faq_block_ansline_blue { background: linear-gradient(90deg, rgba(59, 130, 246, 0.2), transparent); }
.faq_block_ansline_green { background: linear-gradient(90deg, rgba(34, 197, 94, 0.2), transparent); }
.faq_block_ansline_purple { background: linear-gradient(90deg, rgba(168, 85, 247, 0.2), transparent); }

.faq_block_answer_body p { font-size: 14px; color: #9ca3af; line-height: 1.85; margin-bottom: 14px; }
.faq_block_answer_body p:last-child { margin-bottom: 0; }
.faq_block_answer_body strong { color: #eab308; font-weight: 600; }

/* List */
.faq_block_list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 6px; margin: 14px 0; }
.faq_block_list li { display: flex; align-items: center; gap: 12px; padding: 9px 14px; border-radius: 10px; background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.04); font-size: 13px; color: #d1d5db; transition: all 0.3s; }
.faq_block_list li:hover { background: rgba(234, 179, 8, 0.04); border-color: rgba(234, 179, 8, 0.1); transform: translateX(6px); }
.faq_block_list_dot { width: 6px; height: 6px; border-radius: 50%; background: #eab308; flex-shrink: 0; }
.faq_block_list_blue li:hover { background: rgba(59, 130, 246, 0.04); border-color: rgba(59, 130, 246, 0.1); }
.faq_block_dot_blue { background: #3b82f6; }

/* Highlight */
.faq_block_highlight { display: flex; align-items: center; gap: 14px; padding: 14px 18px; background: linear-gradient(135deg, rgba(234, 179, 8, 0.06), rgba(234, 179, 8, 0.015)); border: 1px solid rgba(234, 179, 8, 0.12); border-radius: 14px; margin-top: 14px; }
.faq_block_highlight_icon { width: 36px; height: 36px; min-width: 36px; border-radius: 10px; background: linear-gradient(135deg, #eab308, #ca8a04); display: flex; align-items: center; justify-content: center; color: #000; }
.faq_block_highlight span { font-size: 13px; font-weight: 600; color: #eab308; line-height: 1.4; }
.faq_block_highlight_purple { background: linear-gradient(135deg, rgba(168, 85, 247, 0.06), rgba(168, 85, 247, 0.015)); border-color: rgba(168, 85, 247, 0.12); }
.faq_block_hlicon_purple { background: linear-gradient(135deg, #a855f7, #9333ea); }
.faq_block_highlight_purple span { color: #a855f7; }

/* Chips */
.faq_block_chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0; }
.faq_block_chip { padding: 7px 16px; border-radius: 50px; font-size: 12px; font-weight: 600; border: 1px solid rgba(59, 130, 246, 0.15); background: rgba(59, 130, 246, 0.04); color: #93c5fd; transition: all 0.3s; cursor: default; }
.faq_block_chip:hover { background: rgba(59, 130, 246, 0.1); border-color: rgba(59, 130, 246, 0.3); transform: translateY(-2px); }

/* Tech Grid */
.faq_block_tech_grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin: 14px 0; }
.faq_block_tech { display: flex; align-items: center; gap: 12px; padding: 11px 14px; border-radius: 12px; background: rgba(34, 197, 94, 0.03); border: 1px solid rgba(34, 197, 94, 0.08); transition: all 0.3s; }
.faq_block_tech:hover { background: rgba(34, 197, 94, 0.06); border-color: rgba(34, 197, 94, 0.2); transform: translateX(4px); }
.faq_block_tech_icon { width: 30px; height: 30px; min-width: 30px; border-radius: 8px; background: rgba(34, 197, 94, 0.08); border: 1px solid rgba(34, 197, 94, 0.12); display: flex; align-items: center; justify-content: center; color: #22c55e; }
.faq_block_tech span { font-size: 12px; color: #d1d5db; font-weight: 500; }

/* Steps */
.faq_block_steps { display: flex; flex-direction: column; gap: 8px; margin: 14px 0; }
.faq_block_step { display: flex; align-items: center; gap: 14px; padding: 13px 16px; border-radius: 12px; background: rgba(168, 85, 247, 0.03); border: 1px solid rgba(168, 85, 247, 0.08); transition: all 0.3s; }
.faq_block_step:hover { background: rgba(168, 85, 247, 0.06); border-color: rgba(168, 85, 247, 0.2); transform: translateX(5px); }
.faq_block_step_num { width: 28px; height: 28px; min-width: 28px; border-radius: 50%; background: linear-gradient(135deg, #a855f7, #9333ea); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; color: #fff; }
.faq_block_step span { font-size: 13px; color: #d1d5db; font-weight: 500; }

/* Checks */
.faq_block_checks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin: 14px 0; }
.faq_block_check_item { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 10px; background: rgba(234, 179, 8, 0.03); border: 1px solid rgba(234, 179, 8, 0.06); transition: all 0.3s; }
.faq_block_check_item:hover { background: rgba(234, 179, 8, 0.06); border-color: rgba(234, 179, 8, 0.15); transform: translateX(3px); }
.faq_block_check_icon { width: 22px; height: 22px; min-width: 22px; border-radius: 6px; background: rgba(234, 179, 8, 0.1); display: flex; align-items: center; justify-content: center; color: #eab308; }
.faq_block_check_item span { font-size: 12px; color: #d1d5db; font-weight: 500; }

/* Hidden for filter */
.faq_block_item_hide, .faq_block_group_hide { display: none !important; }

/* =========================================
   SIDEBAR
========================================= */
.faq_block_sidebar { position: sticky; top: 30px; display: flex; flex-direction: column; gap: 20px; }

.faq_block_cta { border-radius: 24px; overflow: hidden; position: relative; }
.faq_block_cta_glow { position: absolute; top: -50px; left: 50%; transform: translateX(-50%); width: 250px; height: 160px; background: radial-gradient(ellipse, rgba(234, 179, 8, 0.08), transparent 70%); pointer-events: none; }
.faq_block_cta_body { position: relative; z-index: 1; padding: 36px 28px; text-align: center; background: linear-gradient(160deg, rgba(234, 179, 8, 0.06), rgba(255, 255, 255, 0.03)); border: 1px solid rgba(234, 179, 8, 0.12); border-radius: 24px; }
.faq_block_cta_icon_wrap { width: 68px; height: 68px; border-radius: 50%; background: rgba(234, 179, 8, 0.08); border: 2px solid rgba(234, 179, 8, 0.2); display: flex; align-items: center; justify-content: center; color: #eab308; margin: 0 auto 20px; transition: all 0.4s; }
.faq_block_cta:hover .faq_block_cta_icon_wrap { transform: scale(1.08) rotate(3deg); border-color: rgba(234, 179, 8, 0.4); box-shadow: 0 8px 25px rgba(234, 179, 8, 0.12); }
.faq_block_cta_body h4 { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.faq_block_cta_body p { font-size: 14px; color: #6b7280; line-height: 1.6; margin-bottom: 24px; }

.faq_block_cta_primary { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 15px 28px; background: linear-gradient(135deg, #eab308, #ca8a04); border-radius: 14px; font-size: 15px; font-weight: 700; color: #000; text-decoration: none; transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1); box-shadow: 0 5px 22px rgba(234, 179, 8, 0.25); margin-bottom: 12px; position: relative; overflow: hidden; }
.faq_block_cta_primary::after { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent); transition: left 0.5s; }
.faq_block_cta_primary:hover::after { left: 100%; }
.faq_block_cta_primary:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(234, 179, 8, 0.4); }
.faq_block_cta_primary svg { transition: transform 0.3s; }
.faq_block_cta_primary:hover svg { transform: translateX(4px); }

.faq_block_cta_secondary { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 12px 22px; border: 1.5px solid rgba(255,255,255,0.1); border-radius: 12px; font-size: 13px; font-weight: 600; color: #d1d5db; text-decoration: none; transition: all 0.3s; background: transparent; }
.faq_block_cta_secondary:hover { border-color: rgba(234, 179, 8, 0.3); color: #eab308; background: rgba(234, 179, 8, 0.04); }

/* Stats */
.faq_block_numbers { border-radius: 20px; background: linear-gradient(160deg, rgba(255,255,255,0.035), rgba(255,255,255,0.01)); border: 1px solid rgba(255,255,255,0.06); padding: 24px; }
.faq_block_numbers_head { font-size: 12px; font-weight: 700; color: #6b7280; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.faq_block_num_row { display: flex; align-items: center; gap: 14px; padding: 12px 10px; border-radius: 12px; transition: background 0.3s; margin-bottom: 4px; }
.faq_block_num_row:last-child { margin-bottom: 0; }
.faq_block_num_row:hover { background: rgba(255,255,255,0.03); }
.faq_block_num_icon { width: 42px; height: 42px; min-width: 42px; border-radius: 12px; background: rgba(234,179,8,0.08); border: 1px solid rgba(234,179,8,0.12); display: flex; align-items: center; justify-content: center; color: #eab308; }
.faq_block_numicon_blue { background: rgba(59,130,246,0.08); border-color: rgba(59,130,246,0.12); color: #3b82f6; }
.faq_block_numicon_green { background: rgba(34,197,94,0.08); border-color: rgba(34,197,94,0.12); color: #22c55e; }
.faq_block_numicon_purple { background: rgba(168,85,247,0.08); border-color: rgba(168,85,247,0.12); color: #a855f7; }
.faq_block_num_info strong { font-size: 20px; font-weight: 800; color: #fff; display: block; line-height: 1; }
.faq_block_num_info span { font-size: 11px; color: #6b7280; display: block; margin-top: 2px; }

/* =========================================
   ANIMATIONS
========================================= */
.faq_block_reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1); }
.faq_block_reveal.faq_block_shown { opacity: 1; transform: translateY(0); }

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 1200px) {
    .faq_block_layout { grid-template-columns: 1fr 320px; gap: 32px; }
}

@media (max-width: 992px) {
    .faq_block { padding: 80px 0; }
    .faq_block_layout { grid-template-columns: 1fr; }
    .faq_block_sidebar { position: static; flex-direction: row; }
    .faq_block_cta, .faq_block_numbers { flex: 1; }
    .faq_block_tabs_inner { border-radius: 20px; }
    .faq_block_tab { padding: 8px 14px; font-size: 12px; }
    .faq_block_answer_body { padding-left: 24px; }
    .faq_block_tech_grid, .faq_block_checks { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .faq_block { padding: 60px 0; }
    .faq_block_sidebar { flex-direction: column; }
    .faq_block_question { padding: 16px 18px; gap: 12px; }
    .faq_block_q_num { width: 36px; height: 36px; min-width: 36px; border-radius: 10px; }
    .faq_block_q_num span { font-size: 11px; }
    .faq_block_q_text h3 { font-size: 14px; }
    .faq_block_q_toggle { width: 32px; height: 32px; min-width: 32px; }
    .faq_block_answer_body { padding: 0 18px 18px 18px; }
    .faq_block_tab { padding: 7px 12px; font-size: 11px; }
    .faq_block_tab svg { width: 13px; height: 13px; }
}

@media (max-width: 480px) {
    .faq_block { padding: 40px 0; }
    .faq_block_title { font-size: 28px; }
    .faq_block_q_num { display: none; }
    .faq_block_q_text h3 { font-size: 13px; }
    .faq_block_tab svg { display: none; }
    .faq_block_tab { padding: 6px 10px; font-size: 10px; }
    .faq_block_cta_body { padding: 24px 18px; }
    .faq_block_checks { grid-template-columns: 1fr; }
    .faq_block_tech_grid { grid-template-columns: 1fr; }
}
