:root {
    --accent: #ff5722;
    --accent2: #e64a19;
    --accent-soft: #fff5f1;
    --navy: #0a0e1a;
    --navy2: #111827;
    --slate-dark: #1e293b;
    --green: #10b981;
    --green2: #059669;
    --green-soft: #ecfdf5;
    --blue: #3b82f6;
    --blue-soft: #eff6ff;
    --amber: #f59e0b;
    --amber-soft: #fffbeb;
    --purple: #8b5cf6;
    --purple-soft: #f5f3ff;
    --star: #fbbf24;
    --text: #0f172a;
    --text-muted: #475569;
    --text-light: #64748b;
    --rule: #e2e8f0;
    --rule-light: #f1f5f9;
    --bg-soft: #f8fafc;
    --font-h: 'Plus Jakarta Sans', -apple-system, sans-serif;
    --font-display: 'Fraunces', Georgia, serif;
    --font-mono: 'JetBrains Mono', Menlo, monospace;
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--font-h);
    background: #fff;
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    line-height: 1.6
}

a {
    color: inherit;
    text-decoration: none
}

.header-stub {
    height: 64px;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .5);
    font-size: 12px;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-weight: 600
}

.footer-stub {
    height: 80px;
    background: var(--slate-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .4);
    font-size: 12px;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-weight: 600
}

/* BREADCRUMB */
.faq-crumb {
    background: var(--bg-soft);
    border-bottom: 1px solid var(--rule);
    padding: 14px 24px
}

.faq-crumb__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-muted);
    flex-wrap: wrap
}

.faq-crumb__inner a {
    color: var(--text-muted);
    transition: .15s
}

.faq-crumb__inner a:hover {
    color: var(--accent2)
}

.faq-crumb__inner svg {
    width: 11px;
    height: 11px;
    color: var(--text-light)
}

.faq-crumb__current {
    color: var(--navy);
    font-weight: 600
}

/* HERO */
.faq-hero {
    padding: 52px 24px 40px;
    background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
    border-bottom: 1px solid var(--rule)
}

.faq-hero__inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center
}

.faq-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .10em;
    text-transform: uppercase;
    color: var(--accent2);
    background: var(--accent-soft);
    border: 1px solid rgba(255, 87, 34, .2);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 16px
}

.faq-hero__eyebrow svg {
    width: 13px;
    height: 13px
}

.faq-hero__title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 50px);
    font-weight: 600;
    color: var(--navy);
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 14px
}

.faq-hero__title em {
    font-style: italic;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent
}

.faq-hero__sub {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 28px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto
}

.faq-hero__search {
    position: relative;
    max-width: 520px;
    margin: 0 auto
}

.faq-hero__search input {
    width: 100%;
    font-family: var(--font-h);
    font-size: 15px;
    color: var(--navy);
    background: #fff;
    border: 1.5px solid var(--rule);
    border-radius: 12px;
    padding: 14px 52px 14px 48px;
    outline: none;
    transition: .15s;
    box-shadow: 0 4px 16px -8px rgba(15, 23, 42, .12)
}

.faq-hero__search input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-soft), 0 4px 16px -8px rgba(15, 23, 42, .12)
}

.faq-hero__search input::placeholder {
    color: var(--text-light)
}

.faq-hero__search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    pointer-events: none
}

.faq-hero__search-icon svg {
    width: 18px;
    height: 18px
}

.faq-hero__search-clear {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
    display: none;
    padding: 4px;
    border-radius: 50%;
    transition: .15s
}

.faq-hero__search-clear:hover {
    color: var(--navy);
    background: var(--rule-light)
}

.faq-hero__search-clear svg {
    width: 16px;
    height: 16px
}

.faq-hero__meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 18px;
    flex-wrap: wrap
}

.faq-hero__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500
}

.faq-hero__meta-item svg {
    width: 13px;
    height: 13px;
    color: var(--green)
}

.faq-hero__meta-item strong {
    color: var(--navy);
    font-weight: 700
}

/* CATEGORY FILTER */
.faq-cats {
    padding: 28px 24px;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--rule);
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(10px)
}

.faq-cats__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap
}

.faq-cats__label {
    font-size: 11.5px;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: .06em;
    text-transform: uppercase;
    flex-shrink: 0;
    margin-right: 4px
}

.faq-cat {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    background: #fff;
    border: 1.5px solid var(--rule);
    cursor: pointer;
    transition: .15s;
    white-space: nowrap
}

.faq-cat:hover {
    border-color: var(--accent);
    color: var(--accent2)
}

.faq-cat.active {
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: #fff;
    border-color: var(--accent);
    box-shadow: 0 6px 16px -6px rgba(255, 87, 34, .45)
}

.faq-cat__icon {
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    flex-shrink: 0
}

.faq-cat__icon svg {
    width: 13px;
    height: 13px
}

.faq-cat__count {
    font-family: var(--font-mono);
    font-size: 10.5px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 100px;
    background: rgba(0, 0, 0, .06);
    transition: .15s
}

.faq-cat.active .faq-cat__count {
    background: rgba(255, 255, 255, .22);
    color: #fff
}

/* MAIN */
.faq-main {
    padding: 48px 24px 72px;
    max-width: 1100px;
    margin: 0 auto
}

/* SEARCH — no results */
.faq-noresults {
    display: none;
    text-align: center;
    padding: 48px 24px;
    color: var(--text-muted)
}

.faq-noresults svg {
    width: 48px;
    height: 48px;
    color: var(--rule);
    margin: 0 auto 14px
}

.faq-noresults h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px
}

.faq-noresults p {
    font-size: 14px;
    line-height: 1.6
}

/* CATEGORY SECTION */
.faq-section {
    margin-bottom: 48px
}

.faq-section__head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--rule-light)
}

.faq-section__icon {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    display: grid;
    place-items: center;
    color: #fff;
    flex-shrink: 0
}

.faq-section__icon svg {
    width: 19px;
    height: 19px
}

.faq-section__icon.c1 {
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    box-shadow: 0 6px 14px -4px rgba(255, 87, 34, .45)
}

.faq-section__icon.c2 {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    box-shadow: 0 6px 14px -4px rgba(59, 130, 246, .45)
}

.faq-section__icon.c3 {
    background: linear-gradient(135deg, #10b981, #047857);
    box-shadow: 0 6px 14px -4px rgba(16, 185, 129, .45)
}

.faq-section__icon.c4 {
    background: linear-gradient(135deg, #8b5cf6, #5b21b6);
    box-shadow: 0 6px 14px -4px rgba(139, 92, 246, .45)
}

.faq-section__icon.c5 {
    background: linear-gradient(135deg, #f59e0b, #b45309);
    box-shadow: 0 6px 14px -4px rgba(245, 158, 11, .45)
}

.faq-section__icon.c6 {
    background: linear-gradient(135deg, #ec4899, #9d174d);
    box-shadow: 0 6px 14px -4px rgba(236, 72, 153, .45)
}

.faq-section__meta {
    display: flex;
    flex-direction: column
}

.faq-section__label {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .10em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 3px
}

.faq-section__title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: -.4px;
    line-height: 1.2;
    margin: 0px !important;
}

.faq-section__title em {
    font-style: italic;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent
}

/* ACCORDION ITEMS */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.faq-item {
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: 13px;
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s
}

.faq-item:hover {
    border-color: #cbd5e1
}

.faq-item[open] {
    border-color: rgba(255, 87, 34, .28);
    box-shadow: 0 8px 28px -16px rgba(255, 87, 34, .2)
}

.faq-item[open] .faq-q__icon {
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: #fff;
    border-color: var(--accent)
}

.faq-item[open] .faq-q__icon svg {
    transform: rotate(45deg)
}

.faq-q {
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    list-style: none;
    transition: .15s
}

.faq-q::-webkit-details-marker {
    display: none
}

.faq-item:hover .faq-q {
    color: var(--accent2)
}

.faq-q__text {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: -.2px;
    line-height: 1.35;
    flex: 1
}

.faq-item:hover .faq-q__text {
    color: var(--accent2)
}

.faq-q__icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--accent2);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    transition: .2s;
    border: 1px solid rgba(255, 87, 34, .2)
}

.faq-q__icon svg {
    width: 14px;
    height: 14px;
    transition: transform .2s
}

.faq-a {
    padding: 0 22px 20px;
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.75
}

.faq-a p {
    margin-bottom: 10px
}

.faq-a p:last-child {
    margin-bottom: 0
}

.faq-a strong {
    color: var(--navy);
    font-weight: 700
}

.faq-a a {
    color: var(--accent2);
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 87, 34, .3);
    transition: .15s
}

.faq-a a:hover {
    color: var(--accent);
    border-bottom-color: var(--accent)
}

.faq-a ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin: 10px 0
}

.faq-a ul li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 14px
}

.faq-a ul li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 8px
}

.faq-a .highlight {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 14px 16px;
    background: var(--accent-soft);
    border-left: 3px solid var(--accent);
    border-radius: 0 9px 9px 0;
    margin-top: 12px;
    font-size: 13.5px
}

.faq-a .highlight svg {
    width: 14px;
    height: 14px;
    color: var(--accent2);
    flex-shrink: 0;
    margin-top: 2px
}

.faq-a .highlight strong {
    color: var(--navy)
}

/* CONTACT CTA */
.faq-contact {
    padding: 64px 24px;
    background: linear-gradient(135deg, var(--navy), var(--navy2));
    color: #fff;
    position: relative;
    overflow: hidden
}

.faq-contact::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(255, 87, 34, .18), transparent 70%);
    pointer-events: none
}

.faq-contact__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative
}

.faq-contact__left h2 {
    font-family: var(--font-display);
    font-size: clamp(26px, 3.4vw, 36px);
    font-weight: 600;
    color: #fff;
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 12px
}

.faq-contact__left h2 em {
    font-style: italic;
    background: linear-gradient(135deg, var(--accent), #ff8a65);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent
}

.faq-contact__left p {
    font-size: 15px;
    color: rgba(255, 255, 255, .7);
    line-height: 1.6;
    margin-bottom: 22px
}

.faq-contact__ctas {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.faq-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 12px 20px;
    border-radius: 11px;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: .02em;
    transition: .15s;
    cursor: pointer;
    border: none;
    font-family: inherit
}

.faq-btn--primary {
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: #fff;
    box-shadow: 0 8px 22px -6px rgba(255, 87, 34, .55)
}

.faq-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px -6px rgba(255, 87, 34, .7)
}

.faq-btn--ghost {
    background: rgba(255, 255, 255, .08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .18)
}

.faq-btn--ghost:hover {
    background: rgba(255, 255, 255, .14)
}

.faq-btn svg {
    width: 13px;
    height: 13px
}

.faq-contact__channels {
    display: flex;
    flex-direction: column;
    gap: 11px
}

.faq-contact__channel {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 13px;
    transition: .15s
}

.faq-contact__channel:hover {
    background: rgba(255, 255, 255, .09);
    transform: translateX(3px)
}

.faq-contact__ch-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    color: #fff
}

.faq-contact__ch-icon.e {
    background: linear-gradient(135deg, var(--accent), var(--accent2))
}

.faq-contact__ch-icon.w {
    background: linear-gradient(135deg, #25d366, #128c7e)
}

.faq-contact__ch-icon.c {
    background: linear-gradient(135deg, var(--blue), #1e3a8a)
}

.faq-contact__ch-icon svg {
    width: 18px;
    height: 18px
}

.faq-contact__ch-body {}

.faq-contact__ch-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 2px
}

.faq-contact__ch-value {
    font-size: 14px;
    font-weight: 600;
    color: #fff
}

.faq-contact__ch-sub {
    font-size: 11.5px;
    color: rgba(255, 255, 255, .55);
    margin-top: 1px
}

/* RESPONSIVE */
@media(max-width:1024px) {
    .faq-contact__inner {
        grid-template-columns: 1fr;
        gap: 32px
    }
}

@media(max-width:640px) {
    .faq-hero {
        padding: 40px 18px 32px
    }

    .faq-cats {
        padding: 18px;
        overflow-x: auto;
        flex-wrap: nowrap
    }

    .faq-cats__inner {
        flex-wrap: nowrap;
        min-width: max-content
    }

    .faq-main {
        padding: 32px 18px 56px
    }

    .faq-q {
        padding: 16px 18px
    }

    .faq-q__text {
        font-size: 15px
    }

    .faq-a {
        padding: 0 18px 18px
    }

    .faq-contact {
        padding: 48px 18px
    }

    .faq-contact__ctas {
        flex-direction: column
    }
}