:root {
    --bg-dark: #111827;
    --sidebar-bg: #0f172a;
    --message-user: #1e293b;
    --message-ai: #1e293b;
    --accent-teal: #10b981;
    --accent-magenta: #ec4899;
    --text-main: #f3f4f6;
    --text-dim: #94a3b8;
    --border: #334155;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    height: 100vh;
    overflow: hidden;
}

.app-container {
    display: flex;
    height: 100vh;
    width: 100vw;
    position: relative;
    z-index: 1;
}

/* Sidebar */
.sidebar {
    width: 300px;
    background-color: var(--sidebar-bg);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    padding: 24px;
    transition: all 0.3s ease;
}

.logo-container {
    margin-bottom: 60px;
    padding-left: 4px;
}

.logo-main {
    display: flex;
    align-items: flex-end;
    /* Keeps symbol aligned with text baseline */
    gap: 12px;
    /* Adjusted gap for better visual balance */
}

.logo-text {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -2.5px;
    line-height: 0.8;
    text-transform: lowercase;
}

/* The Symbol Container */
/* Conteneur du symbole (Proportions fidèles au logo original) */
.logo-symbol {
    position: relative;
    width: 26px;
    height: 26px;
    display: block;
}

.logo-symbol::before,
.logo-symbol::after {
    content: '';
    position: absolute;
    background-color: var(--accent-teal);
}

/* Petit carré en bas à gauche */
.logo-symbol::before {
    bottom: 2px;
    left: 2px;
    width: 7px;
    height: 7px;
}

/* Forme en L épaisse en haut à droite */
.logo-symbol::after {
    top: 2px;
    right: 2px;
    width: 15px;
    height: 15px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 60% 100%, 60% 40%, 0 40%);
}

.logo-subtext {
    font-size: 12px;
    font-weight: 800;
    color: var(--accent-teal);
    letter-spacing: 0.5px;
    margin-top: 10px;
    text-transform: none;
    opacity: 1;
}

.new-chat-btn {
    width: 100%;
    padding: 14px;
    background: var(--accent-teal);
    border: none;
    border-radius: var(--radius-md);
    color: white;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
    transition: all 0.2s;
}

.new-chat-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
}

.history-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.section-title {
    font-size: 12px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    font-weight: 700;
    padding: 0 4px;
}

.history-list {
    flex: 1;
    overflow-y: auto;
}

.history-item {
    padding: 12px 16px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    margin-bottom: 4px;
    font-size: 14px;
    color: var(--text-dim);
    transition: all 0.2s;
}

.history-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
}

.history-item.active {
    background: #1e293b;
    color: var(--text-main);
    border: 1px solid var(--border);
}

.history-item.pinned i:first-child {
    color: var(--accent-teal);
}

.history-item.pinned {
    border-left: 3px solid var(--accent-teal);
    padding-left: 13px;
    /* Adjust for border */
}

.pinned-indicator {
    font-size: 12px;
    color: var(--text-dim);
    margin-right: 4px;
    transform: rotate(45deg);
}

.history-item i {
    font-size: 16px;
}

.history-title {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.history-title-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--accent-teal);
    border-radius: 4px;
    color: white;
    padding: 2px 6px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    width: 0;
    /* Let flex-grow handle it */
}

.history-options {
    opacity: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.2s;
    color: var(--text-dim);
}

.history-item:hover .history-options,
.history-item.active .history-options {
    opacity: 1;
}

.history-options:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-main);
}

.history-item {
    position: relative;
}

.history-dropdown {
    position: fixed;
    width: 280px;
    background: #232429;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 10px;
    display: none;
    flex-direction: column;
    z-index: 9999;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    animation: fadeIn 0.15s ease-out;
}

.history-dropdown.active {
    display: flex;
}

.dropdown-item {
    padding: 12px 14px;
    font-size: 14px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: #e5e7eb;
    cursor: pointer;
    transition: all 0.2s;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.dropdown-item i {
    width: 20px;
    text-align: center;
    font-size: 16px;
    color: #9ca3af;
}

.dropdown-item.delete {
    color: #f87171;
}

.dropdown-item.delete i {
    color: #f87171;
}

.dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    margin: 8px 0;
}

.sidebar-footer {
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #1e293b;
    border-radius: var(--radius-md);
    cursor: pointer;
    position: relative;
}

.avatar {
    width: 40px;
    height: 40px;
    background: var(--accent-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: white;
}

.user-info {
    flex: 1;
}

.user-name {
    font-size: 14px;
    font-weight: 700;
}

.user-status {
    font-size: 12px;
    color: var(--text-dim);
}

.profile-menu {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 0;
    width: 100%;
    background: #1e293b;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 8px;
    display: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.profile-menu.active {
    display: block;
}

.menu-item {
    padding: 10px 12px;
    font-size: 13px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-item {
    padding: 10px 12px;
    font-size: 13px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-main);
}

.menu-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.menu-item i {
    width: 16px;
    color: var(--text-dim);
}

#clearHistory {
    color: #ff5252;
}

#clearHistory i {
    color: #ff5252;
}

.menu-divider {
    height: 1px;
    background: var(--border);
    margin: 8px 0;
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    background-color: var(--bg-dark);
}

.chat-header {
    height: 64px;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
    z-index: 10;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-teal);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-teal);
}

.status-text {
    color: var(--text-dim);
}

.status-val {
    color: var(--accent-teal);
    font-weight: 600;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    font-size: 13px;
    color: var(--text-dim);
    text-decoration: none;
    font-weight: 500;
}

.export-btn {
    padding: 8px 16px;
    background: var(--accent-magenta);
    color: white;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border: none;
}

/* Messages Area */
.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.message {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    gap: 16px;
}

.message-icon {
    width: 32px;
    height: 32px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-teal);
    flex-shrink: 0;
}

.message-content {
    flex: 1;
    padding: 24px;
    background: #1e293b;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    line-height: 1.6;
    font-size: 15px;
    position: relative;
}

.message-content h1, .message-content h2, .message-content h3 {
    margin-top: 16px;
    margin-bottom: 12px;
    font-weight: 700;
    color: #ffffff;
}

.message-content h1:first-child, .message-content h2:first-child, .message-content h3:first-child {
    margin-top: 0;
}

.message-content p {
    margin-bottom: 12px;
}

.message-content p:last-child {
    margin-bottom: 0;
}

.message-content ul, .message-content ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.message-content li {
    margin-bottom: 6px;
}

.message-content strong {
    color: #ffffff;
    font-weight: 700;
}

.user-message {
    justify-content: flex-end;
}

.user-message .message-content {
    background: #0f172a;
    border-color: var(--border);
    max-width: 80%;
}

.ai-message .message-content {
    background: #1e293b;
}

.ai-message.welcome {
    text-align: center;
    margin-top: 40px;
    display: block;
}

.ai-message.welcome h1 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
}

.ai-message.welcome p {
    color: var(--text-dim);
    margin-bottom: 32px;
}

.suggestions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.suggestion-card {
    padding: 20px;
    background: #0f172a;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    cursor: pointer;
    text-align: left;
    transition: all 0.2s;
}

.suggestion-card:hover {
    border-color: var(--accent-teal);
    background: rgba(16, 185, 129, 0.05);
}

.suggestion-card i {
    color: var(--accent-teal);
    margin-bottom: 12px;
    display: block;
}

/* Code Blocks */
pre {
    background: #0b1120;
    padding: 20px;
    border-radius: var(--radius-md);
    margin: 16px 0;
    position: relative;
    overflow-x: auto;
}

.code-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 12px;
    color: var(--text-dim);
}

.copy-code {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.copy-code:hover {
    color: var(--text-main);
}

.message-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    justify-content: flex-end;
}

.action-btn {
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-dim);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.action-btn:hover {
    color: var(--text-main);
    border-color: var(--text-dim);
}

/* Footer & Input */
.chat-footer {
    padding: 24px 32px;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.input-container {
    background: #1e293b;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

#userInput {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 15px;
    outline: none;
    resize: none;
    max-height: 150px;
}

.input-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.input-btn {
    color: var(--text-dim);
    cursor: pointer;
    font-size: 18px;
    transition: color 0.2s;
}

.input-btn:hover {
    color: var(--text-main);
}

.send-btn {
    width: 36px;
    height: 36px;
    background: var(--accent-teal);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: transform 0.2s;
}

.send-btn:hover {
    transform: scale(1.1);
}

.footer-status {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 16px;
    font-size: 10px;
    font-weight: 700;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot-sm {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.dot-green {
    background: var(--accent-teal);
}

.dot-magenta {
    background: var(--accent-magenta);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.3s ease forwards;
}

/* Background Blobs */
.bg-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    filter: blur(80px);
    border-radius: 50%;
    opacity: 0.4;
}

.blob-1 {
    top: -10%;
    left: -10%;
    animation: float 20s infinite alternate;
}

.blob-2 {
    bottom: -10%;
    right: -10%;
    animation: float 25s infinite alternate-reverse;
}

.input-btn {
    color: var(--text-dim);
    cursor: pointer;
    font-size: 18px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.input-btn.recording {
    color: #ef4444 !important;
    animation: pulseMic 1.5s infinite ease-in-out;
}

@keyframes pulseMic {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.15);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes float {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(100px, 50px);
    }
}

/* Login Overlay */
.login-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at center, #1e293b 0%, #0f172a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(10px);
}

.login-card {
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 400px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    text-align: center;
    animation: loginFadeIn 0.5s ease-out;
}

.login-card h2 {
    font-size: 24px;
    margin-bottom: 8px;
    color: white;
}

.login-card p {
    color: var(--text-dim);
    font-size: 14px;
    margin-bottom: 32px;
}

.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-group i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-dim);
}

.input-group input {
    width: 100%;
    padding: 14px 14px 14px 48px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: white;
    outline: none;
    transition: all 0.2s;
}

.input-group input:focus {
    border-color: var(--accent-teal);
    background: rgba(15, 23, 42, 0.8);
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    padding-left: 4px;
    font-size: 14px;
    color: var(--text-dim);
    text-align: left;
}

.remember-me input {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: var(--accent-teal);
}

.remember-me label {
    cursor: pointer;
    user-select: none;
}

.login-btn {
    width: 100%;
    padding: 14px;
    background: var(--accent-teal);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 10px;
}

.login-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
}

.login-footer {
    margin-top: 24px;
    font-size: 12px;
    color: var(--text-dim);
}

.login-footer i {
    margin-right: 6px;
    color: var(--accent-teal);
}

@keyframes loginFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.2s ease-out;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: #1e293b;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 400px;
    padding: 30px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.modal-header i {
    font-size: 24px;
    color: var(--accent-teal);
}

.modal-header h3 {
    font-size: 20px;
    font-weight: 700;
}

.modal-body {
    margin-bottom: 30px;
    color: var(--text-dim);
    line-height: 1.6;
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.modal-btn {
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.modal-btn.cancel {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: 1px solid var(--border);
}

.modal-btn.cancel:hover {
    background: rgba(255, 255, 255, 0.1);
}

.modal-btn.confirm {
    background: var(--accent-teal);
    color: white;
}

.modal-btn.confirm:hover {
    filter: brightness(1.1);
}

/* Sources & Tags */
.sources-container {
    margin-top: 15px;
    padding-top: 12px;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

.sources-title {
    font-size: 11px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    font-weight: 700;
}

.sources-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.source-tag {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--accent-teal);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
    cursor: default;
    max-width: 250px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.source-tag:hover {
    background: rgba(16, 185, 129, 0.15);
    border-color: var(--accent-teal);
}

.source-tag i {
    font-size: 10px;
    opacity: 0.8;
}

/* Metrics Display */
.metrics-container {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.metric-badge {
    background: rgba(255, 255, 255, 0.03);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.metric-badge strong {
    color: var(--text-main);
}

.metric-badge i {
    font-size: 14px;
    opacity: 0.8;
}

/* --- FAQ MODULE --- */

.faq-btn {
    width: 100%;
    padding: 12px;
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid var(--accent-teal);
    border-radius: var(--radius-md);
    color: var(--accent-teal);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
    transition: all 0.2s;
}

.faq-btn:hover {
    background: rgba(16, 185, 129, 0.15);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.faq-content {
    background: #1e293b;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 600px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    animation: slideUpFade 0.3s ease-out;
}

.faq-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0f172a;
}

.faq-header h3 {
    margin: 0;
    font-size: 18px;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-header h3 i {
    color: var(--accent-teal);
}

.close-faq {
    background: transparent;
    border: none;
    color: var(--text-dim);
    font-size: 20px;
    cursor: pointer;
    transition: color 0.2s;
}

.close-faq:hover {
    color: #ef4444;
}

.faq-body {
    padding: 24px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-category h4 {
    font-size: 14px;
    color: var(--text-dim);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 8px;
}

.faq-item {
    padding: 14px 16px;
    background: #0f172a;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-main);
}

.faq-item i {
    color: var(--accent-teal);
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.faq-item:hover {
    border-color: var(--accent-teal);
    background: rgba(16, 185, 129, 0.08);
    transform: translateX(4px);
}