/* ═══════════════════════════════════════
   Century 21 Nova — Landing Page Styles
   ═══════════════════════════════════════ */

/* ─── Variables ─── */
:root {
    --gold: #C8A951;
    --gold-light: #D4B96A;
    --gold-dark: #B0923E;
    --gold-glow: rgba(200, 169, 81, 0.15);
    --black: #0A0A0A;
    --dark: #141414;
    --dark-card: #1A1A1A;
    --dark-border: #2A2A2A;
    --gray: #6B6B6B;
    --gray-light: #9A9A9A;
    --white: #F5F0E8;
    --white-pure: #FFFFFF;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', system-ui, sans-serif;
}

/* ─── Base ─── */
* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Grain overlay */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ─── Animations ─── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes lineGrow {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.reveal {
    opacity: 0;
    animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.reveal-d1 { animation-delay: 0.15s; }
.reveal-d2 { animation-delay: 0.3s; }
.reveal-d3 { animation-delay: 0.45s; }
.reveal-d4 { animation-delay: 0.6s; }
.reveal-d5 { animation-delay: 0.75s; }
.reveal-d6 { animation-delay: 0.9s; }

/* ─── Nav ─── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.4s, padding 0.4s;
}
nav.scrolled {
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.75rem 2rem;
    border-bottom: 1px solid var(--dark-border);
}
nav .logo img {
    height: 44px;
    width: auto;
    transition: height 0.4s;
}
nav.scrolled .logo img {
    height: 34px;
}
nav .nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}
nav .nav-links a {
    color: var(--gray-light);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.3s;
}
nav .nav-links a:hover {
    color: var(--gold);
}
nav .nav-cta {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 0.5rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
    font-family: var(--font-body);
}
nav .nav-cta:hover {
    background: var(--gold);
    color: var(--black);
}

/* ─── Hero ─── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.hero-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 120px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    transform-origin: top;
    animation: lineGrow 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}
.hero-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--dark-border);
    padding: 0.4rem 1.2rem;
    margin-bottom: 2.5rem;
}
.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6.5vw, 5.5rem);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.01em;
    color: var(--white);
    margin-bottom: 1.5rem;
}
.hero h1 em {
    font-style: italic;
    color: var(--gold);
}
.hero-sub {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--gray-light);
    max-width: 520px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--gold);
    color: var(--black);
    padding: 0.9rem 2.2rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-body);
}
.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(200, 169, 81, 0.25);
}
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: transparent;
    color: var(--white);
    padding: 0.9rem 2.2rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--dark-border);
    transition: all 0.3s;
    font-family: var(--font-body);
}
.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.btn-icon {
    width: 18px;
    height: 18px;
}

/* ─── Section shared ─── */
section {
    padding: 7rem 2rem;
}
.section-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 1rem;
}
.section-desc {
    font-size: 1rem;
    font-weight: 300;
    color: var(--gray-light);
    max-width: 540px;
    line-height: 1.7;
}

/* ─── Services ─── */
.services {
    background: var(--dark);
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
}
.services-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--dark-border);
    margin-top: 3.5rem;
}
.service-card {
    background: var(--dark);
    padding: 2.5rem;
    transition: background 0.4s;
}
.service-card:hover {
    background: var(--dark-card);
}
.service-icon {
    width: 40px;
    height: 40px;
    color: var(--gold);
    margin-bottom: 1.5rem;
    opacity: 0.85;
}
.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: var(--white);
}
.service-card p {
    font-size: 0.9rem;
    color: var(--gray-light);
    line-height: 1.65;
    font-weight: 300;
}

/* ─── Stats ─── */
.stats {
    max-width: 1200px;
    margin: 0 auto;
    padding: 7rem 2rem;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    border: 1px solid var(--dark-border);
    transition: border-color 0.3s;
}
.stat-item:hover {
    border-color: var(--gold-dark);
}
.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.stat-label {
    font-size: 0.8rem;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 400;
}

/* ─── Join ─── */
.join {
    background: linear-gradient(135deg, var(--dark) 0%, var(--black) 100%);
    border-top: 1px solid var(--dark-border);
    position: relative;
    overflow: hidden;
}
.join::before {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.join-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}
.join-content .section-desc {
    margin-bottom: 2rem;
}
.join-benefits {
    list-style: none;
    display: grid;
    gap: 1rem;
}
.join-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.92rem;
    color: var(--gray-light);
    font-weight: 300;
}
.join-benefits li svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--gold);
    margin-top: 2px;
}
.join-cta {
    margin-top: 2.5rem;
}

/* ─── Contact ─── */
.contact {
    background: var(--dark);
    border-top: 1px solid var(--dark-border);
    text-align: center;
}
.contact-inner {
    max-width: 600px;
    margin: 0 auto;
}
.contact-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 750px;
    margin: 0 auto;
}
.contact-option {
    border: 1px solid var(--dark-border);
    padding: 2.5rem 1.5rem;
    text-align: center;
    text-decoration: none;
    color: var(--white);
    transition: border-color 0.3s, background 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}
.contact-option:hover {
    border-color: var(--gold-dark);
    background: rgba(200, 169, 81, 0.04);
}
.contact-option svg {
    color: var(--gold);
    opacity: 0.8;
}
.contact-option:hover svg {
    opacity: 1;
}
.contact-option-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--white);
}
.contact-option-desc {
    font-size: 0.78rem;
    color: var(--gray);
    font-weight: 300;
    letter-spacing: 0.02em;
}

/* ─── Footer ─── */
footer {
    padding: 3rem 2rem 2rem;
    border-top: 1px solid var(--dark-border);
    background: var(--black);
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
}
.footer-brand img {
    height: 36px;
    width: auto;
    margin-bottom: 0.75rem;
}
.footer-brand p {
    font-size: 0.78rem;
    color: var(--gray);
    line-height: 1.6;
    max-width: 280px;
}
.footer-links h4 {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-light);
    margin-bottom: 0.75rem;
}
.footer-links a {
    display: block;
    font-size: 0.82rem;
    color: var(--gray);
    text-decoration: none;
    margin-bottom: 0.4rem;
    transition: color 0.3s;
}
.footer-links a:hover {
    color: var(--gold);
}
.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--dark-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.72rem;
    color: var(--gray);
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
    nav .nav-links { display: none; }
    .services-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .join-inner { grid-template-columns: 1fr; }
    .footer-inner { flex-direction: column; }
    section { padding: 4.5rem 1.25rem; }
    .hero { padding: 5rem 1.25rem; }
    .contact-options { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════
   FAQ Widget
   ═══════════════════════════════════════ */

/* ── Floating toggle button ── */
.faq-toggle {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 10000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gold);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 24px rgba(200, 169, 81, 0.35), 0 1px 6px rgba(0,0,0,0.5);
    transition: background 0.3s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    outline: none;
    padding: 0;
    animation: faq-pulse 2.8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}
.faq-toggle:hover {
    background: var(--gold-light);
    transform: scale(1.07);
    box-shadow: 0 6px 32px rgba(200, 169, 81, 0.5), 0 2px 8px rgba(0,0,0,0.5);
}
.faq-toggle.faq-open {
    animation: none;
    background: var(--dark-card);
    box-shadow: 0 4px 16px rgba(0,0,0,0.5);
    border: 1px solid var(--dark-border);
}
.faq-toggle.faq-open:hover {
    background: #222;
    transform: scale(1.07);
}
.faq-toggle svg {
    transition: opacity 0.2s, transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
    flex-shrink: 0;
}
.faq-icon-chat,
.faq-icon-close {
    position: absolute;
}
.faq-icon-chat {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}
.faq-icon-close {
    opacity: 0;
    transform: scale(0.6) rotate(-45deg);
}
.faq-toggle.faq-open .faq-icon-chat {
    opacity: 0;
    transform: scale(0.6) rotate(45deg);
}
.faq-toggle.faq-open .faq-icon-close {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

@keyframes faq-pulse {
    0%   { box-shadow: 0 4px 24px rgba(200, 169, 81, 0.35), 0 0 0 0 rgba(200, 169, 81, 0.45); }
    60%  { box-shadow: 0 4px 24px rgba(200, 169, 81, 0.35), 0 0 0 12px rgba(200, 169, 81, 0); }
    100% { box-shadow: 0 4px 24px rgba(200, 169, 81, 0.35), 0 0 0 0 rgba(200, 169, 81, 0); }
}

/* ── Panel ── */
.faq-panel {
    position: fixed;
    bottom: calc(1.5rem + 60px + 0.75rem);
    right: 1.5rem;
    z-index: 10000;
    width: 360px;
    max-height: 500px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    display: flex;
    flex-direction: column;
    box-shadow: 0 16px 60px rgba(0,0,0,0.7), 0 2px 12px rgba(0,0,0,0.4);
    transform-origin: bottom right;
    transform: scale(0.92) translateY(12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-panel.faq-panel-visible {
    transform: scale(1) translateY(0);
    opacity: 1;
    pointer-events: all;
}

/* ── Header ── */
.faq-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--dark-border);
    flex-shrink: 0;
}
.faq-header-left {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}
.faq-header-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    box-shadow: 0 0 6px rgba(200, 169, 81, 0.6);
}
.faq-header-label {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.02em;
}
.faq-header-sub {
    font-size: 0.7rem;
    color: var(--gray);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-left: 0.1rem;
}
.faq-header-close {
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--gray);
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: color 0.2s, background 0.2s;
}
.faq-header-close:hover {
    color: var(--white);
    background: rgba(255,255,255,0.06);
}

/* ── Body ── */
.faq-body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 1rem 0.5rem;
    scroll-behavior: smooth;
}
.faq-body::-webkit-scrollbar {
    width: 4px;
}
.faq-body::-webkit-scrollbar-track {
    background: transparent;
}
.faq-body::-webkit-scrollbar-thumb {
    background: var(--dark-border);
    border-radius: 2px;
}
.faq-body::-webkit-scrollbar-thumb:hover {
    background: var(--gray);
}

/* ── Home view ── */
.faq-greeting {
    font-size: 0.82rem;
    color: var(--gray-light);
    margin-bottom: 1rem;
    line-height: 1.55;
    font-weight: 300;
}
.faq-greeting strong {
    color: var(--white);
    font-weight: 500;
}
.faq-section-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    background: transparent;
    border: 1px solid var(--dark-border);
    color: var(--white);
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 400;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
    border-radius: 2px;
}
.faq-section-btn:hover {
    border-color: var(--gold-dark);
    background: rgba(200, 169, 81, 0.06);
    color: var(--gold-light);
}
.faq-section-btn:last-child {
    margin-bottom: 0;
}
.faq-section-icon {
    font-size: 1rem;
    flex-shrink: 0;
    line-height: 1;
}
.faq-section-arrow {
    margin-left: auto;
    color: var(--gray);
    flex-shrink: 0;
    transition: color 0.2s, transform 0.2s;
}
.faq-section-btn:hover .faq-section-arrow {
    color: var(--gold);
    transform: translateX(3px);
}

/* ── Section / Question list ── */
.faq-back {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: transparent;
    border: none;
    color: var(--gray-light);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    padding: 0 0 0.875rem 0;
    transition: color 0.2s;
}
.faq-back:hover {
    color: var(--gold);
}
.faq-section-heading {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 0.875rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--dark-border);
}
.faq-question-btn {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    width: 100%;
    background: transparent;
    border: none;
    border-left: 2px solid transparent;
    color: var(--gray-light);
    padding: 0.65rem 0.75rem;
    margin-bottom: 0.15rem;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-size: 0.855rem;
    font-weight: 400;
    line-height: 1.45;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    border-radius: 0 2px 2px 0;
}
.faq-question-btn:hover {
    border-left-color: var(--gold);
    color: var(--white);
    background: rgba(255,255,255,0.03);
}

/* ── Answer view ── */
.faq-answer-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 0.875rem;
    line-height: 1.3;
}
.faq-answer {
    font-size: 0.855rem;
    color: var(--gray-light);
    line-height: 1.65;
    font-weight: 300;
    margin-bottom: 1.25rem;
    white-space: pre-line;
}
/* ── Fade transition for body content ── */
.faq-view {
    animation: faq-fade-in 0.22s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes faq-fade-in {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Footer ── */
.faq-footer {
    flex-shrink: 0;
    padding: 0.75rem 1rem;
    border-top: 1px solid var(--dark-border);
    background: var(--dark-card);
}
.faq-home-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    background: transparent;
    border: 1px solid var(--dark-border);
    color: var(--gray-light);
    padding: 0.5rem 1rem;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border-radius: 2px;
    transition: border-color 0.25s, color 0.25s;
    margin-bottom: 0.5rem;
}
.faq-home-btn:hover {
    border-color: var(--gold-dark);
    color: var(--gold);
}
.faq-input-row {
    display: flex;
    gap: 0.5rem;
}
.faq-input {
    flex: 1;
    background: var(--dark);
    border: 1px solid var(--dark-border);
    color: var(--white);
    padding: 0.6rem 0.75rem;
    font-family: var(--font-body);
    font-size: 0.82rem;
    border-radius: 2px;
    outline: none;
    transition: border-color 0.3s;
}
.faq-input::placeholder {
    color: var(--gray);
}
.faq-input:focus {
    border-color: var(--gold-dark);
}
.faq-send {
    background: var(--gold);
    border: none;
    color: var(--black);
    padding: 0.6rem 0.75rem;
    cursor: pointer;
    border-radius: 2px;
    transition: background 0.25s;
    display: flex;
    align-items: center;
}
.faq-send:hover {
    background: var(--gold-light);
}

/* Chat bubbles */
.faq-bubble {
    padding: 0.65rem 0.85rem;
    border-radius: 6px;
    font-size: 0.82rem;
    line-height: 1.55;
    max-width: 88%;
    animation: faq-fade-in 0.3s ease;
}
.faq-bubble-user {
    background: var(--gold);
    color: var(--black);
    margin-left: auto;
    border-bottom-right-radius: 2px;
    font-weight: 500;
}
.faq-bubble-bot {
    background: var(--dark);
    color: var(--gray-light);
    border: 1px solid var(--dark-border);
    border-bottom-left-radius: 2px;
}
.faq-chat-history {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

/* ── Mobile ── */
@media (max-width: 420px) {
    .faq-panel {
        width: calc(100vw - 1.5rem);
        right: 0.75rem;
        bottom: calc(0.75rem + 60px + 0.75rem);
        max-height: 78vh;
    }
    .faq-toggle {
        bottom: 0.75rem;
        right: 0.75rem;
    }
}
