/* =============================================================================
   NexArt FAQ Page — Premium Design
   Scope : body.nexart-faq-active + .nexart-faq
   ============================================================================= */

/* OceanWP page chrome reset is centralized in assets/css/nexart.css. */

/* ── ROOT WRAPPER ────────────────────────────────────────────────────────────── */
.nexart-faq {
    background: var(--nx-bg);
    color: var(--nx-text);
    font-family: var(--nx-font);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* ── CONTAINER ───────────────────────────────────────────────────────────────── */
.nxfaq-container {
    max-width: var(--nx-max);
    margin: 0 auto;
    padding: 0 40px;
}

/* ── TYPOGRAPHY UTILITIES ────────────────────────────────────────────────────── */
.nxfaq-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--nx-gold);
    margin: 0 0 16px;
}
.nxfaq-eyebrow--center { text-align: center; }

.nxfaq-section-title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.13;
    color: var(--nx-text);
    margin: 0 0 52px;
    letter-spacing: -0.02em;
}
.nxfaq-section-title--center { text-align: center; }

/* ── BUTTONS ─────────────────────────────────────────────────────────────────── */
.nxfaq-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 14px 28px;
    border-radius: var(--nx-radius);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: all var(--nx-transition);
    border: none;
    cursor: pointer;
    font-family: var(--nx-font);
}
.nxfaq-btn--gold {
    background: var(--nx-gold);
    color: #0a0a0a;
}
.nxfaq-btn--gold:hover {
    background: var(--nx-gold-light);
    color: #0a0a0a;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px var(--nx-gold-glow);
}
.nxfaq-btn--ghost {
    background: transparent;
    color: var(--nx-text);
    border: 1px solid var(--nx-border-bright);
}
.nxfaq-btn--ghost:hover {
    border-color: var(--nx-gold);
    color: var(--nx-gold);
}

/* ── IMAGE FALLBACK ──────────────────────────────────────────────────────────── */
.nxfaq-img-fallback {
    width: 100%;
    height: 100%;
    min-height: 260px;
    background: linear-gradient(
        135deg,
        #111111 0%,
        #161616 40%,
        rgba(217,164,65,0.04) 70%,
        #0c0c0c 100%
    );
}

/* ── NO RESULTS ──────────────────────────────────────────────────────────────── */
.nxfaq-no-results {
    text-align: center;
    padding: 32px 24px;
    margin-bottom: 24px;
    background: var(--nx-bg-card);
    border: 1px solid var(--nx-border-md);
    border-radius: var(--nx-radius-lg);
}
.nxfaq-no-results p {
    font-size: 15px;
    color: var(--nx-text-soft);
    margin: 0;
}
.nxfaq-no-results a {
    color: var(--nx-gold);
    text-decoration: none;
}
.nxfaq-no-results a:hover { text-decoration: underline; }

/* =============================================================================
   1. HERO
   ============================================================================= */
.nxfaq-hero {
    min-height: 64vh;
    padding-top: var(--nx-header-h);
    background: var(--nx-bg-deep);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}

/* Ligne dorée en haut */
.nxfaq-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(217,164,65,0.45) 40%, rgba(217,164,65,0.45) 60%, transparent 100%);
    z-index: 10;
    pointer-events: none;
}

.nxfaq-hero-inner {
    display: block;
    max-width: none !important;
    margin: 0 !important;
    padding: 58px 80px;
    width: 100%;
    position: relative;
    z-index: 2;
}

/* Left */
.nxfaq-hero-left { position: relative; z-index: 2; max-width: 680px; }

.nxfaq-hero-title {
    font-size: clamp(38px, 5.2vw, 66px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--nx-text);
    margin: 0 0 18px;
}

.nxfaq-hero-desc {
    font-size: 17px;
    line-height: 1.72;
    color: var(--nx-text-soft);
    margin: 0 0 28px;
    max-width: 560px;
}

/* Search bar */
.nxfaq-search-bar {
    display: flex;
    align-items: center;
    background: var(--nx-bg-card);
    border: 1px solid var(--nx-border-md);
    border-radius: 12px;
    overflow: hidden;
    max-width: 620px;
    min-height: 62px;
    transition: border-color var(--nx-transition), box-shadow var(--nx-transition);
}
.nxfaq-search-bar:focus-within {
    border-color: var(--nx-border-gold);
    box-shadow: 0 0 0 3px rgba(217,164,65,0.10);
}

.nxfaq-search-icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    stroke: #888;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    margin: 0 12px 0 18px;
}

.nxfaq-search-input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: var(--nx-text);
    font-family: var(--nx-font);
    font-size: 16px;
    padding: 19px 12px 19px 0;
    min-width: 0;
}
.nxfaq-search-input::placeholder { color: #666; }

.nxfaq-search-btn {
    flex-shrink: 0;
    background: var(--nx-gold);
    color: #0a0a0a;
    border: none;
    cursor: pointer;
    font-family: var(--nx-font);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 0 24px;
    height: 62px;
    transition: background var(--nx-transition);
    white-space: nowrap;
}
.nxfaq-search-btn:hover { background: var(--nx-gold-light); }

.nxfaq-search-suggestions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    max-width: 620px;
    margin-top: 14px;
    color: var(--nx-text-muted);
    font-size: 12px;
}

.nxfaq-search-suggestions span {
    color: var(--nx-text-dim);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.nxfaq-search-suggestions a {
    padding: 6px 10px;
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 999px;
    background: rgba(255,255,255,0.035);
    color: var(--nx-text-soft);
    text-decoration: none;
    transition: border-color var(--nx-transition), color var(--nx-transition), background var(--nx-transition);
}

.nxfaq-search-suggestions a:hover,
.nxfaq-search-suggestions a:focus-visible {
    border-color: var(--nx-border-gold);
    background: rgba(217,164,65,0.08);
    color: var(--nx-gold-light);
    outline: none;
}

/* Right */
/* Image plein-écran : hors du flux, fond de section */
.nxfaq-hero-right {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.nxfaq-hero-img-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: 0;
    border: none;
    box-shadow: none;
}

.nxfaq-hero-img-wrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

/* Gradient cinématique gauche→droite */
.nxfaq-hero-img-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(4,4,4,0.97) 0%,
            rgba(4,4,4,0.91) 25%,
            rgba(4,4,4,0.70) 48%,
            rgba(4,4,4,0.28) 68%,
            transparent 100%
        ),
        linear-gradient(to top, rgba(4,4,4,0.82) 0%, transparent 35%);
    z-index: 1;
    pointer-events: none;
}

/* =============================================================================
   2. CATEGORY CARDS
   ============================================================================= */
.nxfaq-cats-section {
    background: var(--nx-bg-2);
    padding: 38px 0;
    border-top: 1px solid var(--nx-border);
    border-bottom: 1px solid var(--nx-border);
}

.nxfaq-cats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.nxfaq-cat-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 18px 16px;
    background: var(--nx-bg-card);
    border: 1px solid var(--nx-border);
    border-radius: var(--nx-radius-lg);
    text-decoration: none;
    transition: border-color var(--nx-transition),
                transform var(--nx-transition),
                box-shadow var(--nx-transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.nxfaq-cat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(217,164,65,0.07) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--nx-transition);
    pointer-events: none;
}
.nxfaq-cat-card:hover,
.nxfaq-cat-card:focus-visible {
    border-color: var(--nx-border-gold);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(217,164,65,0.12);
    outline: none;
}
.nxfaq-cat-card:hover::before,
.nxfaq-cat-card:focus-visible::before { opacity: 1; }

.nxfaq-cat-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(217,164,65,0.10);
    border-radius: var(--nx-radius);
    flex-shrink: 0;
}
.nxfaq-cat-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--nx-gold);
    stroke-width: 1.8;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nxfaq-cat-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--nx-text);
    line-height: 1.35;
}

.nxfaq-cat-desc {
    font-size: 12px;
    color: var(--nx-text-mid);
    line-height: 1.55;
    flex: 1;
}

.nxfaq-cat-arrow {
    font-size: 14px;
    color: var(--nx-gold);
    opacity: 0.45;
    margin-top: 4px;
    transition: opacity var(--nx-transition), transform var(--nx-transition);
    display: block;
}
.nxfaq-cat-card:hover .nxfaq-cat-arrow,
.nxfaq-cat-card:focus-visible .nxfaq-cat-arrow {
    opacity: 1;
    transform: translateX(4px);
}

/* =============================================================================
   3. FAQ ACCORDION
   ============================================================================= */
.nxfaq-accordion-section {
    background: var(--nx-bg);
    padding: 82px 0;
}

.nxfaq-section-header { margin-bottom: 56px; }

.nxfaq-accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ── Group wrapper ───────────────────────────────────────────────────────────── */
.nxfaq-group {
    background: var(--nx-bg-card);
    border: 1px solid var(--nx-border);
    border-radius: var(--nx-radius-lg);
    overflow: hidden;
    transition: border-color 0.22s ease, box-shadow 0.22s ease;
}
.nxfaq-group.is-open {
    border-color: var(--nx-border-md);
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

/* ── Group header button ─────────────────────────────────────────────────────── */
.nxfaq-group-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 28px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: inherit;
    font-family: var(--nx-font);
    transition: background var(--nx-transition);
}
.nxfaq-group-header:hover { background: rgba(255,255,255,0.025); }
.nxfaq-group-header:focus-visible {
    outline: 2px solid var(--nx-gold);
    outline-offset: -2px;
}

.nxfaq-group-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(217,164,65,0.10);
    border-radius: var(--nx-radius);
    flex-shrink: 0;
}
.nxfaq-group-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--nx-gold);
    stroke-width: 1.8;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nxfaq-group-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--nx-text);
    flex: 1;
    line-height: 1.3;
}

.nxfaq-group-count {
    font-size: 12px;
    color: var(--nx-text-mid);
    font-weight: 500;
    white-space: nowrap;
    padding: 4px 10px;
    background: rgba(255,255,255,0.04);
    border-radius: 20px;
    border: 1px solid var(--nx-border);
}

.nxfaq-group-chevron {
    width: 18px;
    height: 18px;
    stroke: #666;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
    transition: transform 0.28s ease, stroke 0.22s ease;
}
.nxfaq-group.is-open .nxfaq-group-chevron {
    transform: rotate(180deg);
    stroke: var(--nx-gold);
}

/* ── Group body ──────────────────────────────────────────────────────────────── */
.nxfaq-group-body {
    border-top: 1px solid var(--nx-border);
}

.nxfaq-items { padding: 8px 0; }

/* ── FAQ item ────────────────────────────────────────────────────────────────── */
.nxfaq-item {
    border-bottom: 1px solid var(--nx-border);
}
.nxfaq-item:last-child { border-bottom: none; }

.nxfaq-item-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 28px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: inherit;
    font-family: var(--nx-font);
    transition: background var(--nx-transition);
}
.nxfaq-item-q:hover { background: rgba(255,255,255,0.02); }
.nxfaq-item-q:focus-visible {
    outline: 2px solid var(--nx-gold);
    outline-offset: -2px;
}

.nxfaq-item-q > span {
    font-size: 14px;
    font-weight: 600;
    color: var(--nx-text);
    line-height: 1.55;
    flex: 1;
    transition: color var(--nx-transition);
}
.nxfaq-item.is-open .nxfaq-item-q > span { color: var(--nx-gold-light); }

.nxfaq-item-chevron {
    width: 16px;
    height: 16px;
    stroke: #666;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
    transition: transform 0.22s ease, stroke 0.22s ease;
}
.nxfaq-item.is-open .nxfaq-item-chevron {
    transform: rotate(180deg);
    stroke: var(--nx-gold);
}

.nxfaq-item-a {
    padding: 0 28px 22px;
}
.nxfaq-item-a p {
    font-size: 14px;
    line-height: 1.82;
    color: var(--nx-text-soft);
    margin: 0;
    border-left: 2px solid rgba(217,164,65,0.24);
    padding-left: 16px;
}

.nxfaq-context-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 8px 28px 26px;
    padding: 18px 20px;
    background: rgba(217,164,65,0.07);
    border: 1px solid rgba(217,164,65,0.20);
    border-radius: var(--nx-radius);
}

.nxfaq-context-cta p {
    color: var(--nx-text-soft);
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
}

.nxfaq-context-cta .nxfaq-btn {
    flex-shrink: 0;
    padding: 11px 18px;
}

/* =============================================================================
   4. STILL NEED HELP
   ============================================================================= */
.nxfaq-help-section {
    background: var(--nx-bg-deep);
    padding: 62px 0;
    border-top: 1px solid var(--nx-border);
    border-bottom: 1px solid var(--nx-border);
}

.nxfaq-help-card {
    display: flex;
    align-items: center;
    background: var(--nx-bg-card);
    border: 1px solid var(--nx-border);
    border-radius: 12px;
    padding: 38px;
    position: relative;
    overflow: hidden;
    gap: 0;
}
.nxfaq-help-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 55% 80% at 0% 50%, rgba(217,164,65,0.05) 0%, transparent 60%);
    pointer-events: none;
}

.nxfaq-help-left {
    flex: 1.1;
    padding-right: 52px;
    position: relative;
    z-index: 1;
}

.nxfaq-help-title {
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.1;
    color: var(--nx-text);
    margin: 0 0 16px;
}

.nxfaq-help-desc {
    font-size: 15px;
    line-height: 1.72;
    color: var(--nx-text-soft);
    margin: 0 0 24px;
    max-width: 360px;
}

.nxfaq-help-divider {
    width: 1px;
    height: 172px;
    background: var(--nx-border-md);
    flex-shrink: 0;
}

.nxfaq-help-mid {
    flex: 1;
    padding: 0 52px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.nxfaq-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.nxfaq-contact-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(217,164,65,0.10);
    border-radius: var(--nx-radius);
    flex-shrink: 0;
}
.nxfaq-contact-icon svg {
    width: 17px;
    height: 17px;
    stroke: var(--nx-gold);
    stroke-width: 1.8;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nxfaq-contact-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.nxfaq-contact-text strong {
    font-size: 13px;
    font-weight: 700;
    color: var(--nx-text);
}
.nxfaq-contact-text a,
.nxfaq-contact-text span {
    font-size: 13px;
    color: var(--nx-text-soft);
    text-decoration: none;
    transition: color var(--nx-transition);
}
.nxfaq-contact-text a:hover { color: var(--nx-gold); }

.nxfaq-help-right {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.nxfaq-help-img-wrap {
    width: 220px;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 28px 72px rgba(0,0,0,0.65),
                0 0 0 1px rgba(217,164,65,0.07);
    position: relative;
}
.nxfaq-help-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}
.nxfaq-help-img-overlay {
    position: absolute;
    inset: 0;
    /* Subtle vignette — preserve the packaging detail */
    background: linear-gradient(
        160deg,
        rgba(0,0,0,0.15) 0%,
        transparent 45%,
        rgba(0,0,0,0.10) 100%
    );
    pointer-events: none;
}

/* =============================================================================
   5. TRUST STRIP
   ============================================================================= */
.nxfaq-trust-section {
    background: var(--nx-bg-2);
    padding: 44px 0;
    border-bottom: 1px solid var(--nx-border);
}

.nxfaq-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: center;
}

.nxfaq-trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nxfaq-trust-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.nxfaq-trust-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--nx-gold);
    stroke-width: 1.8;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nxfaq-trust-item > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.nxfaq-trust-item strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--nx-text);
    display: block;
}
.nxfaq-trust-item span {
    font-size: 12px;
    color: var(--nx-text-muted);
}

/* =============================================================================
   RESPONSIVE
   ============================================================================= */

/* ── 1200px ──────────────────────────────────────────────────────────────────── */
@media (max-width: 1200px) {
    .nxfaq-cats-grid { grid-template-columns: repeat(3, 1fr); }

    .nxfaq-help-card { padding: 48px 40px; gap: 0; }
    .nxfaq-help-left { padding-right: 36px; }
    .nxfaq-help-mid { padding: 0 0 0 36px; }
    /* Reduce image size but keep it visible */
    .nxfaq-help-img-wrap { width: 220px; }
}

/* ── 1024px ──────────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .nxfaq-container { padding: 0 24px; }

    .nxfaq-hero { min-height: 60vh; }
    .nxfaq-hero-inner { padding: 56px 24px 52px; }
    .nxfaq-hero-left { max-width: 100%; }
    .nxfaq-hero-img-overlay {
        background:
            linear-gradient(180deg, rgba(4,4,4,0.60) 0%, rgba(4,4,4,0.97) 100%),
            linear-gradient(90deg, rgba(4,4,4,0.97) 0%, rgba(4,4,4,0.55) 60%, transparent 100%);
    }
    .nxfaq-hero-title { font-size: clamp(38px, 7.5vw, 58px); }
    .nxfaq-hero-desc { max-width: 100%; }
    .nxfaq-search-bar { max-width: 100%; }

    .nxfaq-cats-grid { grid-template-columns: repeat(3, 1fr); }

    .nxfaq-accordion-section { padding: 72px 0; }

    .nxfaq-help-card {
        flex-direction: column;
        align-items: stretch;
        padding: 40px 36px;
        gap: 32px;
    }
    .nxfaq-help-divider {
        width: 100%;
        height: 1px;
    }
    .nxfaq-help-left { padding-right: 0; }
    .nxfaq-help-mid { padding: 0; }
    /* Support image shown below contacts on tablet, full width */
    .nxfaq-help-right {
        display: block;
    }
    .nxfaq-help-img-wrap {
        width: 100%;
        aspect-ratio: 16 / 7;
    }

    .nxfaq-trust-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── 768px ───────────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .nxfaq-hero { padding: calc(var(--nx-header-h) + 34px) 0 40px; }
    .nxfaq-hero-title { font-size: clamp(34px, 9vw, 52px); }

    .nxfaq-cats-section { padding: 34px 0; }
    .nxfaq-cats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

    .nxfaq-accordion-section { padding: 56px 0; }
    .nxfaq-group-header { padding: 18px 20px; }
    .nxfaq-item-q { padding: 16px 20px; gap: 14px; }
    .nxfaq-item-a { padding: 0 20px 20px; }
    .nxfaq-item-a p { padding-left: 12px; }
    .nxfaq-context-cta {
        align-items: flex-start;
        flex-direction: column;
        margin: 6px 20px 22px;
    }

    .nxfaq-help-section { padding: 46px 0; }
    .nxfaq-help-card { padding: 32px 24px; gap: 28px; }
    /* Hide support image on small mobile — preserve layout */
    .nxfaq-help-right { display: none; }

    .nxfaq-trust-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}

/* ── 480px ───────────────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
    .nxfaq-container { padding: 0 16px; }

    .nxfaq-hero-title { font-size: clamp(30px, 10vw, 44px); }
    .nxfaq-search-btn { padding: 0 16px; font-size: 12px; }

    .nxfaq-cats-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .nxfaq-cat-card { padding: 18px 14px; }

    .nxfaq-group-header { padding: 16px; gap: 12px; }
    .nxfaq-group-count { display: none; }
    .nxfaq-item-q { padding: 14px 16px; }
    .nxfaq-item-a { padding: 0 16px 16px; }
    .nxfaq-context-cta { margin: 6px 16px 20px; }

    .nxfaq-help-card { padding: 24px 20px; }

    .nxfaq-trust-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* =============================================================================
   MOBILE-FIRST HARDENING
   ============================================================================= */
.nexart-faq,
.nexart-faq * {
    min-width: 0;
}

.nexart-faq img {
    max-width: 100%;
}

.nxfaq-btn,
.nxfaq-search-btn,
.nxfaq-cat-card,
.nxfaq-group-header,
.nxfaq-item-q {
    min-height: 44px;
}

@media (max-width: 768px) {
    .nxfaq-hero {
        min-height: 420px;
    }

    .nxfaq-search-bar {
        min-height: auto;
    }

    .nxfaq-group-header,
    .nxfaq-item-q {
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .nxfaq-search-bar {
        flex-wrap: wrap;
        padding: 0;
    }

    .nxfaq-search-icon {
        margin-left: 14px;
    }

    .nxfaq-search-input {
        flex-basis: calc(100% - 54px);
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .nxfaq-search-btn {
        width: 100%;
        height: 48px;
    }

    .nxfaq-cats-grid {
        grid-template-columns: 1fr;
    }
}
