/* ============================================================
   Tweak 97 — FBC public marketing site styles.

   Design language: clean, trustworthy, modern. Deep forest-green primary
   + warm gold accent (the FBC logo palette), with an orange/red spark.
   Generous whitespace, considered typography, subtle motion. Mobile-first.

   Palette (Tweak 138 — remapped to the FBC logo):
     --color-green:    #0d5a2b   (primary — logo letter green; headlines, dark UI)
     --color-green-2:  #15793c   (brighter green — logo swoosh; gradients)
     --color-navy:     -> green  (alias kept so existing references cascade)
     --color-navy-2:   -> green-2
     --color-gold:     #c89b2a   (accent, CTAs — matches the coin band)
     --color-gold-2:   #e7b94d   (lighter accent)
     --color-orange:   #e8731c   (logo slash — decorative spark only)
     --color-red:      #d6342a   (logo coin arc — decorative spark only)
     --color-ink:      #1a202c   (body text, headings on light bg)
     --color-text:     #475569   (body copy)
     --color-muted:    #94a3b8   (helper text)
     --color-line:     #e5e7eb   (borders, dividers)
     --color-bg:       #ffffff
     --color-bg-soft:  #f8fafc
   ============================================================ */

:root {
    /* Tweak 138 — palette remapped to the FBC logo (forest green + gold,
       with an orange/red spark). The variable NAMES `--color-navy` /
       `--color-navy-2` are kept so every existing reference cascades
       automatically — only their VALUES change to the logo greens.
       Forest green has nearly the same luminance as the old navy, so every
       dark-on-light / light-on-dark contrast relationship the site was
       designed around is preserved (all text stays as legible as before).
       --color-green/-2 are added as self-documenting aliases. */
    --color-green:    #0a4a23;   /* Tweak 138a — deepened to a richer forest tone (was #0d5a2b) */
    --color-green-2:  #0f6330;   /* Tweak 138a — matching deeper gradient/hover green (was #15793c) */
    --color-navy:     var(--color-green);   /* alias retained for existing references */
    --color-navy-2:   var(--color-green-2);
    --color-gold:     #c89b2a;   /* unchanged — matches the coin's gold band */
    --color-gold-2:   #e7b94d;
    --color-orange:   #e8731c;   /* logo accent slash — DECORATIVE spark only (never text on light) */
    --color-red:      #d6342a;   /* logo coin top arc — DECORATIVE spark only */
    --color-ink:      #1a202c;
    --color-text:     #475569;
    --color-muted:    #94a3b8;
    --color-line:     #e5e7eb;
    --color-bg:       #ffffff;
    --color-bg-soft:  #f8fafc;
    --shadow-sm:      0 1px 2px rgba(15, 41, 66, 0.04), 0 1px 3px rgba(15, 41, 66, 0.06);
    --shadow-md:      0 4px 6px -1px rgba(15, 41, 66, 0.07), 0 2px 4px -1px rgba(15, 41, 66, 0.05);
    --shadow-lg:      0 10px 25px -5px rgba(15, 41, 66, 0.10), 0 8px 10px -6px rgba(15, 41, 66, 0.08);
    --radius:         12px;
    --radius-lg:      20px;
    --font-sans:      'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ============================================================
   Reset / base
   ============================================================ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-navy); text-decoration: none; transition: color 0.18s ease; }
a:hover { color: var(--color-gold); }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--color-ink);
    line-height: 1.2;
    margin: 0 0 0.6em;
    letter-spacing: -0.015em;
}
h1 { font-size: 2.25rem; font-weight: 800; }
h2 { font-size: 1.875rem; font-weight: 700; }
h3 { font-size: 1.375rem; font-weight: 700; }
h4 { font-size: 1.125rem; font-weight: 600; }
p { margin: 0 0 1em; }

/* Larger headings desktop+ */
@media (min-width: 768px) {
    h1 { font-size: 3.25rem; }
    h2 { font-size: 2.5rem; }
    h3 { font-size: 1.625rem; }
}
@media (min-width: 1024px) {
    h1 { font-size: 3.875rem; }
}

.eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.muted { color: var(--color-muted); }
.lead  { font-size: 1.125rem; color: var(--color-text); }
@media (min-width: 768px) { .lead { font-size: 1.25rem; } }

/* ============================================================
   Layout primitives
   ============================================================ */
.fbc-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}
@media (min-width: 768px) { .fbc-container { padding: 0 2rem; } }

.section { padding: 4rem 0; }
@media (min-width: 768px) { .section { padding: 6rem 0; } }

.section-soft { background: var(--color-bg-soft); }
.section-dark { background: var(--color-navy); color: rgba(255, 255, 255, 0.85); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark .eyebrow { color: var(--color-gold-2); }

.section-header { max-width: 720px; margin: 0 auto 3rem; text-align: center; }
.section-header.left { text-align: left; margin-left: 0; }

.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
    .grid-2 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(4, 1fr); }
    .grid { gap: 2rem; }
}

/* ============================================================
   Header / nav
   ============================================================ */
.fbc-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--color-line);
}
.fbc-header-inner {
    display: flex;
    align-items: center;
    height: 72px;
    gap: 1.5rem;
}
.fbc-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 800;
    color: var(--color-navy);
    font-size: 1.125rem;
    letter-spacing: -0.01em;
}
.fbc-logo img { height: 36px; width: auto; }
.fbc-nav {
    display: none;
    align-items: center;
    gap: 1.75rem;
    margin-left: auto;
}
.fbc-nav a {
    font-weight: 500;
    color: var(--color-ink);
    font-size: 0.9375rem;
}
.fbc-nav a:hover { color: var(--color-gold); }
.fbc-nav-cta { margin-left: 1rem; display: flex; gap: 0.75rem; align-items: center; }
.fbc-mobile-toggle {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--color-line);
    background: var(--color-bg);
    border-radius: var(--radius);
    cursor: pointer;
    padding: 0;
}
.fbc-mobile-toggle svg { width: 22px; height: 22px; }
.fbc-mobile-menu {
    display: none;
    border-top: 1px solid var(--color-line);
    padding: 1rem 0 1.5rem;
    background: #fff;
}
.fbc-mobile-menu.open { display: block; }
.fbc-mobile-menu a {
    display: block;
    padding: 0.875rem 0;
    font-weight: 500;
    color: var(--color-ink);
    border-bottom: 1px solid var(--color-line);
}
.fbc-mobile-menu a:last-child { border-bottom: none; }
.fbc-mobile-menu .btn { margin-top: 1rem; }

@media (min-width: 1024px) {
    .fbc-nav { display: flex; }
    .fbc-mobile-toggle { display: none; }
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.9375rem;
    line-height: 1;
    border: 1.5px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.18s ease;
    text-decoration: none;
    white-space: nowrap;
}
.btn-primary {
    background: var(--color-navy);
    color: #fff;
    border-color: var(--color-navy);
}
.btn-primary:hover {
    background: var(--color-navy-2);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}
.btn-gold {
    background: var(--color-gold);
    /* Tweak 138 — was #fff on gold (~2.3:1, fails WCAG AA). Dark ink on
       gold is ~5.8:1 — clearly legible and ties the gold CTA to the
       brand's dark tone. */
    color: var(--color-ink);
    border-color: var(--color-gold);
}
.btn-gold:hover {
    background: #b88a1e;
    color: var(--color-ink);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}
.btn-outline {
    background: transparent;
    color: var(--color-navy);
    border-color: var(--color-line);
}
.btn-outline:hover {
    background: var(--color-navy);
    color: #fff;
    border-color: var(--color-navy);
}
.btn-ghost {
    background: transparent;
    color: var(--color-ink);
    padding: 0.75rem 1rem;
}
.btn-ghost:hover {
    background: var(--color-bg-soft);
    color: var(--color-navy);
}
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-block { width: 100%; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
    position: relative;
    padding: 4rem 0 5rem;
    /* Tweak 138 — hero glow now echoes the logo's coin: a gold wash top-right,
       an orange spark just below it, and a soft green wash bottom-left. All
       very low-alpha decorative tints behind the content (z-index:2) — no text
       sits on these, so legibility is unaffected. */
    background:
        radial-gradient(ellipse at top right, rgba(200, 155, 42, 0.10) 0%, transparent 50%),
        radial-gradient(ellipse at 72% 18%, rgba(232, 115, 28, 0.06) 0%, transparent 45%),
        radial-gradient(ellipse at bottom left, rgba(10, 74, 35, 0.05) 0%, transparent 60%),
        var(--color-bg);
    overflow: hidden;
}
.hero-inner { position: relative; z-index: 2; }
.hero h1 {
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-2) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.25rem;
}
.hero .lead { color: var(--color-text); max-width: 580px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }
.hero-meta {
    margin-top: 3rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-line);
}
.hero-meta-item .num {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--color-navy);
    line-height: 1;
    letter-spacing: -0.02em;
}
.hero-meta-item .label {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}
@media (min-width: 768px) {
    .hero { padding: 7rem 0 8rem; }
    .hero-meta-item .num { font-size: 2.5rem; }
}

/* Hero ornament (decorative shapes) */
.hero-ornament {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    pointer-events: none;
    opacity: 0.6;
    display: none;
}
.hero-ornament::before, .hero-ornament::after {
    content: '';
    position: absolute;
    border-radius: 50%;
}
.hero-ornament::before {
    width: 380px; height: 380px;
    top: 10%; right: -80px;
    /* Tweak 138 — orange→gold blob, echoing the logo coin's red-gold spark. */
    background: linear-gradient(135deg, rgba(232, 115, 28, 0.13), rgba(200, 155, 42, 0.10) 50%, transparent 75%);
    filter: blur(40px);
}
.hero-ornament::after {
    width: 280px; height: 280px;
    bottom: 5%; right: 20%;
    /* Tweak 138 — green blob (was navy), echoing the logo swoosh. */
    background: linear-gradient(135deg, rgba(10, 74, 35, 0.12), transparent);
    filter: blur(50px);
}
@media (min-width: 1024px) { .hero-ornament { display: block; } }

/* ============================================================
   Cards
   ============================================================ */
.card {
    background: var(--color-bg);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.22s ease;
}
.card:hover {
    border-color: rgba(200, 155, 42, 0.4);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}
.card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-2) 100%);
    color: var(--color-gold-2);
    border-radius: var(--radius);
    margin-bottom: 1.25rem;
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 0.5rem; }
.card-meta {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--color-line);
    font-size: 0.875rem;
    color: var(--color-muted);
}
.card-meta strong { color: var(--color-navy); font-weight: 700; }

/* Value-prop simpler card (no border, no hover lift) */
.value {
    text-align: left;
}
.value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(200, 155, 42, 0.12);
    color: var(--color-gold);
    border-radius: var(--radius);
    margin-bottom: 1rem;
}
.value-icon svg { width: 22px; height: 22px; }
.value h4 { color: var(--color-ink); margin-bottom: 0.5rem; }
.value p  { color: var(--color-text); margin: 0; }

/* ============================================================
   Branch list
   ============================================================ */
.branch-list { display: grid; gap: 0.875rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .branch-list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .branch-list { grid-template-columns: repeat(3, 1fr); } }
.branch-pill {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: var(--radius);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}
.branch-pill svg { width: 18px; height: 18px; opacity: 0.7; flex-shrink: 0; }

/* ============================================================
   CTA strip
   ============================================================ */
.cta-strip {
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-2) 100%);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.cta-strip::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 60%; height: 200%;
    background: radial-gradient(circle, rgba(200, 155, 42, 0.18), transparent 60%);
    pointer-events: none;
}
.cta-strip h2 { color: #fff; position: relative; }
.cta-strip p  { color: rgba(255, 255, 255, 0.80); position: relative; }
.cta-strip .btn { position: relative; }
@media (min-width: 768px) { .cta-strip { padding: 4rem 3rem; } }

/* ============================================================
   Footer
   ============================================================ */
.fbc-footer {
    background: #0a1d33;
    color: rgba(255, 255, 255, 0.65);
    padding: 4rem 0 2rem;
    font-size: 0.9375rem;
}
.fbc-footer h4 {
    color: #fff;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.25rem;
}
.fbc-footer a {
    display: block;
    color: rgba(255, 255, 255, 0.65);
    padding: 0.375rem 0;
    text-decoration: none;
}
.fbc-footer a:hover { color: var(--color-gold-2); }
.fbc-footer .grid-4 { gap: 2.5rem; align-items: start; }
.fbc-footer-brand { max-width: 320px; }
.fbc-footer-brand img { height: 40px; margin-bottom: 1rem; filter: brightness(0) invert(1); opacity: 0.95; }
.fbc-footer-brand p { color: rgba(255, 255, 255, 0.55); margin: 0; }
.fbc-footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.8125rem;
}

/* ============================================================
   Form fields (public)
   ============================================================ */
.field { margin-bottom: 1.25rem; }
.field label {
    display: block;
    font-weight: 600;
    color: var(--color-ink);
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}
.field input, .field textarea, .field select {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: inherit;
    font-size: 1rem;
    color: var(--color-ink);
    background: var(--color-bg);
    border: 1.5px solid var(--color-line);
    border-radius: var(--radius);
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
    outline: none;
    border-color: var(--color-navy);
    box-shadow: 0 0 0 3px rgba(10, 74, 35, 0.12); /* Tweak 138 — green focus ring to match brand */
}
.field-honeypot { position: absolute; left: -9999px; }
.field-error {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.375rem;
}

.alert-success {
    background: rgba(34, 197, 94, 0.10);
    border: 1px solid rgba(34, 197, 94, 0.30);
    color: #166534;
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
}
.alert-error {
    background: rgba(220, 38, 38, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.25);
    color: #991b1b;
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
}

/* ============================================================
   Subtle fade-in for content (no JS required for prefers-reduced-motion)
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
    .fade-in { animation: fadeIn 0.6s ease both; }
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(8px); }
        to   { opacity: 1; transform: translateY(0); }
    }
}

/* ============================================================
   Tweak 100 — Polish pass styles
   ============================================================ */

/* Skip-to-content link — visually hidden until focused (a11y) */
.fbc-skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    z-index: 100;
    padding: 0.75rem 1.25rem;
    background: var(--color-navy);
    color: #fff;
    text-decoration: none;
    border-radius: 0 0 var(--radius) var(--radius);
    font-weight: 600;
    transition: top 0.18s ease;
}
.fbc-skip-link:focus {
    top: 0;
    color: #fff;
    outline: 3px solid var(--color-gold);
    outline-offset: -3px;
}

/* Focus-visible rings everywhere (a11y) */
.btn:focus-visible,
.fbc-nav a:focus-visible,
.fbc-mobile-toggle:focus-visible,
.fbc-mobile-menu a:focus-visible,
.fbc-faq-item summary:focus-visible,
.fbc-announce-close:focus-visible {
    outline: 3px solid var(--color-gold);
    outline-offset: 2px;
}

/* Latest-news announcement bar (slim, dismissible) */
.fbc-announce-bar {
    background: linear-gradient(90deg, var(--color-navy) 0%, var(--color-navy-2) 100%);
    color: #fff;
    font-size: 0.9375rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.fbc-announce-inner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0;
}
.fbc-announce-pill {
    flex-shrink: 0;
    display: inline-block;
    padding: 0.2rem 0.625rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-navy);
    background: var(--color-gold-2);
    border-radius: 999px;
}
.fbc-announce-link {
    flex: 1;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.fbc-announce-link:hover { color: var(--color-gold-2); }
.fbc-announce-arrow {
    color: var(--color-gold-2);
    flex-shrink: 0;
    font-weight: 700;
}
.fbc-announce-close {
    flex-shrink: 0;
    padding: 0.375rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.65);
    border-radius: 6px;
    cursor: pointer;
    line-height: 0;
    transition: all 0.15s ease;
}
.fbc-announce-close:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
}
@media (max-width: 640px) {
    .fbc-announce-pill { display: none; } /* tight on mobile — drop the pill */
}

/* Trust signals strip under hero */
.fbc-trust-strip {
    padding: 2rem 0;
    background: var(--color-bg-soft);
    border-top: 1px solid var(--color-line);
    border-bottom: 1px solid var(--color-line);
}
.fbc-trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 640px) { .fbc-trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .fbc-trust-grid { grid-template-columns: repeat(4, 1fr); } }
.fbc-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
}
.fbc-trust-item svg {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    color: var(--color-gold);
}
.fbc-trust-label {
    font-weight: 700;
    color: var(--color-ink);
    font-size: 0.9375rem;
    line-height: 1.3;
}
.fbc-trust-sub {
    margin-top: 0.25rem;
    color: var(--color-muted);
    font-size: 0.8125rem;
    line-height: 1.4;
}

/* FAQ accordion */
.fbc-faq-item {
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: var(--color-bg);
    overflow: hidden;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.fbc-faq-item[open] {
    border-color: rgba(200, 155, 42, 0.4);
    box-shadow: var(--shadow-md);
}
.fbc-faq-item summary {
    cursor: pointer;
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    color: var(--color-ink);
    font-size: 1.0625rem;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.fbc-faq-item summary::-webkit-details-marker { display: none; }
.fbc-faq-item summary svg {
    flex-shrink: 0;
    color: var(--color-gold);
    transition: transform 0.2s ease;
}
.fbc-faq-item[open] summary svg { transform: rotate(180deg); }
.fbc-faq-item summary:hover { color: var(--color-navy); }
.fbc-faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--color-text);
    line-height: 1.7;
}
.fbc-faq-answer p { margin: 0; }
