/* ══════════════════════════════════════
   TOKENS — dark defaults
══════════════════════════════════════ */
:root {
    --green: #4ADE80;
    --green-dim: rgba(74,222,128,0.12);
    --green-border: rgba(74,222,128,0.30);
    --yellow: #FDB022;
    --yellow-dim: rgba(253,176,34,0.10);
    --yellow-border: rgba(253,176,34,0.28);
    --trans: 0.35s ease;
    --bg: #0a1628;
    --bg2: #0d1d35;
    --bg3: #0f2847;
    --bg4: #152f52;
    --surface: rgba(255,255,255,0.05);
    --surface2: rgba(255,255,255,0.08);
    --surface3: rgba(255,255,255,0.11);
    --border: rgba(255,255,255,0.10);
    --border2: rgba(255,255,255,0.18);
    --text: #ffffff;
    --text-muted: rgba(255,255,255,0.65);
    --text-faint: rgba(255,255,255,0.40);
    --hero-grad: linear-gradient(160deg,#0a1628 0%,#0d1d35 50%,#0f2847 100%);
    --section-grad: linear-gradient(to bottom,#0f2847,#152f52);
    --section-grad2: linear-gradient(to bottom,#0a1628,#0d1d35);
    --shadow: 0 8px 32px rgba(0,0,0,0.40);
    --acc-hover: rgba(255,255,255,0.04);
}

body.light-mode {
    --bg: #f0f4fa;
    --bg2: #e4ecf7;
    --bg3: #d8e6f5;
    --bg4: #ccdcee;
    --surface: rgba(255,255,255,0.80);
    --surface2: rgba(255,255,255,0.95);
    --surface3: rgba(255,255,255,1);
    --border: rgba(0,0,0,0.10);
    --border2: rgba(0,0,0,0.18);
    --text: #0a1628;
    --text-muted: rgba(10,22,40,0.65);
    --text-faint: rgba(10,22,40,0.40);
    --hero-grad: linear-gradient(160deg,#dbeafe 0%,#e0f2fe 50%,#eff6ff 100%);
    --section-grad: linear-gradient(to bottom,#e8f0fd,#dce8fa);
    --section-grad2: linear-gradient(to bottom,#f0f4fa,#e4ecf7);
    --shadow: 0 8px 32px rgba(10,22,40,0.12);
    --acc-hover: rgba(10,22,40,0.03);
    --green: #16a34a;
    --green-dim: rgba(22,163,74,0.10);
    --green-border: rgba(22,163,74,0.30);
    --yellow: #d97706;
    --yellow-dim: rgba(217,119,6,0.10);
    --yellow-border: rgba(217,119,6,0.28);
}

/**, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter',sans-serif;
    background: var(--bg);
    color: var(--text);
    transition: background var(--trans),color var(--trans);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

svg {
    display: block;
}*/

/* ── SCROLL REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .6s ease,transform .6s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

.rd1 {
    transition-delay: .07s;
}

.rd2 {
    transition-delay: .14s;
}

.rd3 {
    transition-delay: .21s;
}

.rd4 {
    transition-delay: .28s;
}

.rd5 {
    transition-delay: .35s;
}

/* ── CONTAINERS ── */
.faqs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px;
}

.faqs-container-md {
    max-width: 960px;
    margin: 0 auto;
    padding: 40px 24px;
}

.faqs-container-sm {
    max-width: 780px;
    margin: 0 auto;
    padding: 40px 24px;
}

/* ── BUTTONS ── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    background: var(--yellow);
    color: #0a1628;
    border: none;
    border-radius: 8px;
    font-family: 'Sora',sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: background .25s,transform .2s,box-shadow .2s;
}

    .btn-primary:hover {
        background: #e59a15;
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(253,176,34,.35);
    }

body.light-mode .btn-primary {
    background: #d97706;
    color: #fff;
}

    body.light-mode .btn-primary:hover {
        background: #b45309;
    }

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    background: transparent;
    color: var(--text);
    border: 2px solid var(--border2);
    border-radius: 8px;
    font-family: 'Sora',sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background var(--trans),border-color var(--trans),transform .2s,color var(--trans);
}

    .btn-outline:hover {
        background: var(--surface2);
        border-color: var(--green);
        transform: translateY(-2px);
    }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.faq-hero {
    position: relative;
    overflow: hidden;
    background: var(--hero-grad);
    padding: 90px 24px 80px;
    text-align: center;
    transition: background var(--trans);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(130px);
    pointer-events: none;
}

.hero-glow-1 {
    width: 600px;
    height: 600px;
    background: rgba(74,222,128,0.05);
    top: -120px;
    right: -80px;
}

.hero-glow-2 {
    width: 500px;
    height: 500px;
    background: rgba(253,176,34,0.04);
    bottom: -100px;
    left: -60px;
}

.faq-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto;
}

.faq-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 16px;
    transition: color var(--trans);
}

.faq-hero h1 {
    font-family: 'Sora',sans-serif;
    font-size: clamp(30px,5vw,52px);
    font-weight: 800;
    line-height: 1.12;
    color: var(--text);
    margin-bottom: 20px;
    transition: color var(--trans);
}

.faq-hero-desc {
    font-size: clamp(15px,1.8vw,17px);
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 32px;
    transition: color var(--trans);
}

.faq-hero-btns {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ── search bar ── */
.faq-search-wrap {
    max-width: 560px;
    margin: 36px auto 0;
    position: relative;
    z-index: 2;
}

.faq-search {
    width: 100%;
    padding: 14px 20px 14px 48px;
    background: var(--surface2);
    border: 1px solid var(--border2);
    border-radius: 10px;
    font-family: 'Inter',sans-serif;
    font-size: 15px;
    color: var(--text);
    outline: none;
    transition: background var(--trans),border-color var(--trans),color var(--trans),box-shadow .25s;
}

    .faq-search::placeholder {
        color: var(--text-faint);
    }

    .faq-search:focus {
        border-color: var(--green);
        box-shadow: 0 0 0 3px var(--green-dim);
    }

.faq-search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-faint);
    pointer-events: none;
    transition: color var(--trans);
}

/* ── quick nav ── */
.faq-quick-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
    position: relative;
    z-index: 2;
}

.faq-nav-pill {
    padding: 7px 18px;
    background: var(--surface);
    border: 1px solid var(--border2);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--trans);
}

    .faq-nav-pill:hover, .faq-nav-pill.active {
        background: var(--green-dim);
        border-color: var(--green-border);
        color: var(--green);
    }

/* ══════════════════════════════════════
   FAQ SECTIONS SHARED
══════════════════════════════════════ */
.faq-section {
    padding: 80px 24px;
    transition: background var(--trans),border-color var(--trans);
}

    .faq-section:nth-child(even) {
        background: var(--section-grad);
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
    }

    .faq-section:nth-child(odd) {
        background: var(--section-grad2);
    }

.faq-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px;
    background: var(--yellow-dim);
    border: 1px solid var(--yellow-border);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    color: var(--yellow);
    letter-spacing: .08em;
    text-transform: uppercase;
    font-family: 'Sora',sans-serif;
    margin-bottom: 12px;
    transition: all var(--trans);
}

.faq-section-title {
    font-family: 'Sora',sans-serif;
    font-size: clamp(22px,3vw,32px);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    transition: color var(--trans);
}

.faq-section-sub {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 600px;
    line-height: 1.6;
    transition: color var(--trans);
}

/* ── ACCORDION ── */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    backdrop-filter: blur(8px);
    transition: border-color var(--trans),background var(--trans),box-shadow var(--trans);
}

    .faq-item.open {
        border-color: var(--green-border);
        box-shadow: 0 4px 20px var(--green-dim);
    }

    .faq-item:not(.open):hover {
        border-color: var(--border2);
        background: var(--acc-hover);
    }

.faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    text-align: left;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background .2s;
}

    .faq-trigger:hover {
        background: var(--acc-hover);
    }

    .faq-trigger h3 {
        font-family: 'Sora',sans-serif;
        font-size: clamp(14px,1.6vw,16px);
        font-weight: 600;
        color: var(--text);
        padding-right: 12px;
        line-height: 1.4;
        transition: color var(--trans);
    }

.faq-item.open .faq-trigger h3 {
    color: var(--green);
}

.faq-chevron {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: var(--yellow-dim);
    border: 1px solid var(--yellow-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow);
    transition: transform .35s cubic-bezier(.34,1.56,.64,1),background var(--trans),border-color var(--trans);
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
    background: var(--green-dim);
    border-color: var(--green-border);
    color: var(--green);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s cubic-bezier(.4,0,.2,1);
}

.faq-body-inner {
    padding: 0 24px 22px;
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-muted);
    transition: color var(--trans);
}

    .faq-body-inner p + p {
        margin-top: 12px;
    }

/* ── section footer advisor link ── */
.faq-section-footer {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.faq-still {
    font-size: 13px;
    color: var(--text-faint);
    transition: color var(--trans);
}

.faq-advisor-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--yellow);
    transition: color var(--trans),gap .2s;
}

    .faq-advisor-link:hover {
        gap: 10px;
    }

body.light-mode .faq-advisor-link {
    color: #d97706;
}


/*-- SECTION 7 IP FAQS STARAT----------------------------------------------------*/
.ip-faq-section,
.ip-faq-section * {
    box-sizing: border-box;
}

.ip-faq-section {
    position: relative;
    overflow: hidden;
    padding: 28px 4% 50px;
    font-family: 'Sora', sans-serif;
    color: #fff;
    background: radial-gradient(circle at 50% 0%, rgba(0, 95, 180, .32), transparent 34%), linear-gradient(135deg, #020715 0%, #041630 50%, #020714 100%);
}

body.light-mode .ip-faq-section {
    color: #071428;
    background: radial-gradient(circle at 50% 0%, rgba(0, 140, 255, .15), transparent 34%), linear-gradient(135deg, #f7fbff 0%, #e8f2ff 50%, #fff 100%);
}

.ipfaq-container {
    max-width: 1680px;
    margin: 0 auto;
}

.ipfaq-heading {
    text-align: center;
    margin-bottom: 28px;
}

.ipfaq-eyebrow {
    color: #ffc334;
    letter-spacing: 6px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.ipfaq-heading h2 {
    margin: 0;
    font-size: clamp(40px, 5vw, 58px);
    line-height: 1.05;
    font-weight: 600;
}

    .ipfaq-heading h2 span {
        color: #ffc334;
    }

.ipfaq-heading p {
    margin: 18px auto 0;
    font-size: clamp(16px, 2vw, 19px);
    line-height: 1.45;
    color: rgba(255,255,255,.86);
}

body.light-mode .ipfaq-heading p {
    color: #26364e;
}

.ipfaq-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 32px;
}

.ipfaq-help-card,
.ipfaq-cta {
    border: 1px solid rgba(35,140,255,.45);
    background: rgba(3,18,45,.76);
    backdrop-filter: blur(14px);
    border-radius: 10px;
}

body.light-mode .ipfaq-help-card,
body.light-mode .ipfaq-cta {
    background: rgba(255,255,255,.86);
}

.ipfaq-help-card {
    padding: 30px 26px;
    text-align: center;
}

.ipfaq-help-icon {
    width: 150px;
    height: 150px;
    margin: 0 auto 16px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #57f263;
    border: 2px dotted #57f263;
    box-shadow: 0 0 35px rgba(87,242,99,.18);
}

.ip-faq-section svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ipfaq-help-icon svg {
    width: 84px;
    height: 84px;
    stroke-width: 1;
}

.ipfaq-help-card h3 {
    margin: 0 0 14px;
    font-size: 25px;
}

.ipfaq-help-card > p {
    margin: 0;
    font-size: 16px;
    line-height: 1.55;
    color: rgba(255,255,255,.84);
}

body.light-mode .ipfaq-help-card > p {
    color: #26364e;
}

.ipfaq-help-line {
    height: 1px;
    margin: 26px 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
}

.ipfaq-help-item {
    display: flex;
    gap: 16px;
    text-align: left;
    margin-bottom: 25px;
}

    .ipfaq-help-item svg {
        width: 38px;
        height: 38px;
        min-width: 38px;
    }

    .ipfaq-help-item.green svg {
        color: #57f263;
    }

    .ipfaq-help-item.purple svg {
        color: #bd62ff;
    }

    .ipfaq-help-item.blue svg {
        color: #23a7ff;
    }

    .ipfaq-help-item strong {
        display: block;
        font-size: 15px;
        margin-bottom: 6px;
    }

    .ipfaq-help-item span {
        display: block;
        color: rgba(255,255,255,.72);
        font-size: 13px;
        line-height: 1.4;
    }

body.light-mode .ipfaq-help-item span {
    color: #26364e;
}

.ipfaq-help-btn {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    border: 1px solid #ffc334;
    color: #ffc334;
    text-decoration: none;
    border-radius: 7px;
    font-weight: 600;
}

    .ipfaq-help-btn span,
    .ipfaq-cta-buttons a span {
        font-size: 28px;
        line-height: 1;
    }

.ipfaq-list-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.ipfaq-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ipfaq-item {
    border: 1px solid rgba(110,160,210,.28);
    background: rgba(8,29,63,.72);
    border-radius: 6px;
    overflow: hidden;
}

body.light-mode .ipfaq-item {
    background: rgba(255,255,255,.85);
}

.ipfaq-item button {
    width: 100%;
    min-height: 46px;
    padding: 0 18px;
    background: transparent;
    border: none;
    color: inherit;
    display: grid;
    grid-template-columns: 45px 1fr 22px;
    align-items: center;
    gap: 12px;
    text-align: left;
    cursor: pointer;
    font-size: 16px;
}

    .ipfaq-item button span {
        width: 31px;
        height: 31px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        color: #ffc334;
        font-size: 13px;
        font-weight: 600;
        background: rgba(255,195,52,.12);
        border: 1px solid rgba(255,195,52,.3);
    }

    .ipfaq-item button b {
        font-size: 28px;
        font-weight: 300;
        line-height: 1;
        transition: transform .2s ease;
    }

.ipfaq-item p {
    display: none;
    margin: 0;
    padding: 6px 22px 16px 75px;
    color: rgba(255,255,255,.75);
    line-height: 1.5;
}

body.light-mode .ipfaq-item p {
    color: #26364e;
}

.ipfaq-item.active p {
    display: block;
}

.ipfaq-item.active button b {
    transform: rotate(45deg);
}

.ipfaq-cta {
    margin-top: 34px;
    padding: 30px 42px;
    display: grid;
    grid-template-columns: 190px 1fr auto;
    align-items: center;
    gap: 30px;
}

.ipfaq-cta-icon {
    width: 120px;
    height: 90px;
    display: grid;
    place-items: center;
    color: #ffc334;
    filter: drop-shadow(0 0 18px rgba(255,195,52,.35));
}

    .ipfaq-cta-icon svg {
        width: 88px;
        height: 88px;
    }

.ipfaq-cta h3 {
    margin: 0 0 8px;
    font-size: 20px;
}

    .ipfaq-cta h3 span {
        color: #ffc334;
    }

.ipfaq-cta p {
    margin: 0;
    font-size: 14px;
    color: rgba(255,255,255,.82);
}

body.light-mode .ipfaq-cta p {
    color: #26364e;
}

.ipfaq-cta-buttons {
    display: flex;
    gap: 24px;
}

    .ipfaq-cta-buttons a {
        min-width: 245px;
        min-height: 50px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 22px;
        border-radius: 7px;
        text-decoration: none;
        font-weight: 600;
    }

    .ipfaq-cta-buttons .gold {
        background: linear-gradient(135deg, #ffd95a, #f4aa13);
        color: #071428;
    }

    .ipfaq-cta-buttons .green {
        border: 1px solid #45ef4f;
        color: #45ef4f;
    }

.ipfaq-reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: .85s ease;
}

    .ipfaq-reveal.ipfaq-active {
        opacity: 1;
        transform: translateY(0);
    }

@media (max-width: 1200px) {
    .ipfaq-layout,
    .ipfaq-list-wrap,
    .ipfaq-cta {
        grid-template-columns: 1fr;
    }

    .ipfaq-cta-buttons {
        flex-wrap: wrap;
    }
}

@media (max-width: 600px) {
    .ip-faq-section {
        padding: 35px 18px;
    }

    .ipfaq-eyebrow {
        font-size: 14px;
        letter-spacing: 5px;
    }

    .ipfaq-item button {
        grid-template-columns: 40px 1fr 20px;
        font-size: 14px;
        padding: 0 12px;
    }

    .ipfaq-item p {
        padding: 6px 16px 14px 65px;
    }

    .ipfaq-cta {
        padding: 24px;
    }

    .ipfaq-cta-buttons a {
        width: 100%;
        min-width: auto;
    }
}
/*-- SECTION 7 IP FAQS END----------------------------------------------------- -*/

/* 8. SECTION 7 — FAQ */
.ipfaq-item button {
    font-size: 14px;
    min-height: 44px;
}

.ipfaq-help-icon {
    width: 120px;
    height: 120px;
}

    .ipfaq-help-icon svg {
        width: 68px;
        height: 68px;
    }

.ipfaq-help-card h3 {
    font-size: 20px;
}

.ipfaq-help-card > p {
    font-size: 14px;
}

.ipfaq-help-item svg {
    width: 30px;
    height: 30px;
    min-width: 30px;
}

.ipfaq-help-item strong {
    font-size: 13px;
}

.ipfaq-help-item span {
    font-size: 12px;
}

.ipfaq-cta h3 {
    font-size: 18px;
}

.ipfaq-cta p {
    font-size: 13px;
}

.ipfaq-cta-icon svg {
    width: 72px;
    height: 72px;
}

.ipfaq-cta-buttons a {
    min-width: 200px;
    min-height: 46px;
    font-size: 14px;
    gap: 14px;
    padding: 0 22px;
}

.ip-faq-section img{
    border-radius: 20px;
    overflow: hidden;
    object-fit: contain;
    transition: filter .35s ease, box-shadow .35s ease, background .35s ease, transform .35s ease;
}

body.light-mode .ip-faq-section img{
    filter: brightness(1.08) contrast(.96) saturate(.9);
    background: rgba(255, 255, 255, .58);
    box-shadow: 0 16px 34px rgba(0, 65, 130, .12);
}

/*---------------------------------FAQS END ------------------------*/

/* ══════════════════════════════════════
   STILL HAVE QUESTIONS
══════════════════════════════════════ */
.still-section {
    padding: 80px 24px;
    background: var(--section-grad);
    border-top: 1px solid var(--border);
    transition: background var(--trans),border-color var(--trans);
}

.still-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.still-left h2 {
    font-family: 'Sora',sans-serif;
    font-size: clamp(26px,4vw,40px);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 14px;
    transition: color var(--trans);
}

.still-left p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 28px;
    transition: color var(--trans);
}

.still-left .faq-still {
    margin-bottom: 4px;
    font-size: 14px;
}

.still-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 16px;
}

.contact-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    backdrop-filter: blur(6px);
    transition: all var(--trans);
}

    .contact-card:hover {
        border-color: var(--green-border);
        transform: translateY(-3px);
    }

.contact-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--green-dim);
    border: 1px solid var(--green-border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--trans),border-color var(--trans);
}

    .contact-card-icon svg {
        color: var(--green);
    }

.contact-card h4 {
    font-family: 'Sora',sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    transition: color var(--trans);
}

.contact-card p {
    font-size: 12px;
    color: var(--text-muted);
    transition: color var(--trans);
}

/* right — stats */
.still-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-stat-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    backdrop-filter: blur(6px);
    transition: all var(--trans);
}

    .faq-stat-card:hover {
        border-color: var(--green-border);
        transform: translateX(4px);
    }

.stat-num {
    font-family: 'Sora',sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--green);
    flex-shrink: 0;
    min-width: 80px;
    transition: color var(--trans);
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    transition: color var(--trans);
}

/* ══════════════════════════════════════
   NO RESULTS MESSAGE
══════════════════════════════════════ */
.no-results {
    display: none;
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
    font-size: 16px;
    transition: color var(--trans);
}

    .no-results.visible {
        display: block;
    }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media(max-width:768px) {
    .faq-hero {
        padding: 72px 16px 60px;
    }

    .faq-section {
        padding: 60px 16px;
    }

    .still-section {
        padding: 60px 16px;
    }

    .still-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .still-contact-grid {
        grid-template-columns: 1fr;
    }

    .faq-hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .faq-trigger {
        padding: 16px 18px;
    }

    .faq-body-inner {
        padding: 0 18px 18px;
    }
}
