@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    /* Themes variables - Default Dark Mode */
    --bg-primary: #0b0f19;
    --bg-secondary: rgba(15, 23, 42, 0.7);
    --bg-card: rgba(30, 41, 59, 0.45);
    --bg-input: rgba(15, 23, 42, 0.5);
    --border-color: rgba(255, 255, 255, 0.06);
    --border-color-active: rgba(255, 255, 255, 0.15);
    --text-primary: #f3f4f6;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    
    --accent-primary: #3b82f6;
    --accent-secondary: #8b5cf6;
    --accent-cyan: #06b6d4;
    --accent-emerald: #10b981;
    --accent-gradient: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    --accent-gradient-hover: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    --text-gradient: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    --glow-color: rgba(59, 130, 246, 0.35);
    --glass-blur: blur(16px);
    
    --shadow-sm: 0 2px 8px -1px rgba(0, 0, 0, 0.1), 0 1px 3px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px -2px rgba(0, 0, 0, 0.25), 0 2px 8px -1px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 20px 40px -5px rgba(0, 0, 0, 0.4), 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-circle: 50%;
}

[data-theme="light"] {
    --bg-primary: #f8fafc;
    --bg-secondary: rgba(255, 255, 255, 0.75);
    --bg-card: rgba(255, 255, 255, 0.65);
    --bg-input: rgba(241, 245, 249, 0.8);
    --border-color: rgba(0, 0, 0, 0.06);
    --border-color-active: rgba(0, 0, 0, 0.12);
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    
    --accent-primary: #2563eb;
    --accent-secondary: #7c3aed;
    --accent-cyan: #0891b2;
    --accent-emerald: #059669;
    --accent-gradient: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    --accent-gradient-hover: linear-gradient(135deg, #1d4ed8 0%, #6d28d9 100%);
    --text-gradient: linear-gradient(135deg, #1e40af 0%, #6b21a8 100%);
    --glow-color: rgba(37, 99, 235, 0.12);
    
    --shadow-sm: 0 2px 8px -1px rgba(0, 0, 0, 0.05), 0 1px 3px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 4px 20px -2px rgba(15, 23, 42, 0.08), 0 2px 8px -1px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 20px 40px -5px rgba(15, 23, 42, 0.1), 0 10px 15px -3px rgba(15, 23, 42, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.5;
}

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

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    mix-blend-mode: screen;
}

[data-theme="light"] .blob {
    opacity: 0.08;
    mix-blend-mode: multiply;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: var(--accent-primary);
    animation: float 20s infinite alternate;
}

.blob-2 {
    bottom: -10%;
    right: -10%;
    width: 45vw;
    height: 45vw;
    background: var(--accent-secondary);
    animation: float 25s infinite alternate-reverse;
}

.blob-3 {
    top: 40%;
    left: 50%;
    width: 30vw;
    height: 30vw;
    background: var(--accent-cyan);
    animation: float 18s infinite alternate;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, 30px) scale(1.1); }
    100% { transform: translate(-30px, -50px) scale(0.9); }
}

/* Scrollbar Style */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--border-color-active);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-primary);
}

/* Typography elements */
h1, h2, h3, h4, .font-display {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Glassmorphism utility class */
.glass {
    background: var(--bg-secondary);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
}

header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--bg-secondary);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    z-index: -1;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px var(--glow-color);
}

.logo-icon svg {
    width: 22px;
    height: 22px;
    fill: #ffffff;
}

.logo-text {
    font-size: 24px;
    background: var(--text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
    background: var(--accent-gradient);
    color: #ffffff;
    box-shadow: 0 4px 15px var(--glow-color);
}

.btn-primary:hover {
    background: var(--accent-gradient-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--glow-color);
}

.btn-secondary {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.btn-secondary:hover {
    border-color: var(--border-color-active);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

[data-theme="light"] .btn-secondary:hover {
    background: rgba(0, 0, 0, 0.02);
}

.btn-icon {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: var(--radius-md);
}

/* Theme toggle btn */
.theme-btn svg {
    width: 20px;
    height: 20px;
    fill: var(--text-primary);
}

.theme-btn .sun { display: none; }
.theme-btn .moon { display: block; }

[data-theme="light"] .theme-btn .sun { display: block; }
[data-theme="light"] .theme-btn .moon { display: none; }

/* Hero Section */
.hero {
    padding-top: 140px;
    padding-bottom: 60px;
    text-align: center;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 30px;
    color: #60a5fa;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
}

[data-theme="light"] .hero-badge {
    background: rgba(37, 99, 235, 0.06);
    color: var(--accent-primary);
}

.hero-badge svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.hero h1 {
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -1.5px;
}

.hero h1 span {
    background: var(--text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    font-weight: 400;
}

/* Search Bar Wrapper */
.search-container {
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 6px 8px 6px 18px;
    position: relative;
    z-index: 2;
}

.search-input-wrapper:focus-within {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px var(--glow-color);
}

.search-input-wrapper svg.search-icon {
    width: 20px;
    height: 20px;
    fill: var(--text-muted);
    margin-right: 12px;
    flex-shrink: 0;
}

.search-input {
    background: none;
    border: none;
    outline: none;
    width: 100%;
    color: var(--text-primary);
    font-size: 16px;
    padding: 10px 0;
}

.search-input::placeholder {
    color: var(--text-muted);
}

/* Main Section Layout */
.app-section {
    padding-bottom: 80px;
}

/* Filter controls */
.controls-bar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
}

.category-filters {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: none; /* Firefox */
}

.category-filters::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
}

.filter-pill {
    padding: 8px 18px;
    border-radius: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-pill:hover {
    color: var(--text-primary);
    border-color: var(--border-color-active);
}

.filter-pill.active {
    background: var(--accent-gradient);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 12px var(--glow-color);
}

.meta-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--text-secondary);
}

.sorting-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sort-select {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 6px 12px;
    border-radius: 8px;
    outline: none;
    cursor: pointer;
    font-size: 13px;
}

/* Apps Grid */
.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

/* App Card styling */
.app-card {
    display: flex;
    flex-direction: column;
    padding: 24px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.app-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid transparent;
    background: var(--accent-gradient) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.app-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    background: rgba(30, 41, 59, 0.6);
}

[data-theme="light"] .app-card:hover {
    background: rgba(255, 255, 255, 0.9);
}

.app-card:hover::after {
    opacity: 1;
}

.app-card-header {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    align-items: center;
}

.app-card-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.app-card-icon img, .app-card-icon svg {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.app-card-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.app-card-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

.app-card-developer {
    font-size: 13px;
    color: var(--text-muted);
}

.app-card-body {
    flex-grow: 1;
    margin-bottom: 20px;
}

.app-card-desc {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.app-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
    margin-top: auto;
}

.app-stats {
    display: flex;
    gap: 12px;
}

.app-stat {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: var(--text-muted);
}

.app-stat svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.category-tag {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 8px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
}

[data-theme="light"] .category-tag {
    background: rgba(0, 0, 0, 0.03);
}

/* Modals Overlay Base */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 720px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.95) translateY(20px);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: var(--shadow-lg);
}

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

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
}

.modal-close-btn svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.modal-close-btn:hover {
    border-color: var(--border-color-active);
    background: rgba(255, 255, 255, 0.05);
}

/* Detail Modal Styles */
.detail-header {
    display: flex;
    gap: 24px;
    padding: 40px 40px 30px;
    border-bottom: 1px solid var(--border-color);
    align-items: center;
}

.detail-logo {
    width: 90px;
    height: 90px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detail-logo svg, .detail-logo img {
    max-width: 100%;
    max-height: 100%;
}

.detail-meta-wrapper {
    flex-grow: 1;
}

.detail-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    flex-wrap: wrap;
}

.detail-title {
    font-size: 28px;
    font-weight: 800;
}

.detail-tags {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.detail-body {
    padding: 30px 40px 40px;
}

.detail-desc {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.detail-info-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 16px;
    border-radius: var(--radius-md);
}

.info-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.info-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.detail-action-buttons {
    display: flex;
    gap: 12px;
}

.detail-action-buttons .btn {
    flex: 1;
}

/* Download Simulation Modal */
.download-simulator-content {
    max-width: 440px;
    text-align: center;
    padding: 40px;
}

.simulator-icon-container {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.simulator-icon-container svg {
    width: 32px;
    height: 32px;
    fill: var(--accent-primary);
}

.scanning-ring {
    position: absolute;
    inset: -5px;
    border: 2px solid transparent;
    border-top-color: var(--accent-cyan);
    border-radius: 50%;
    animation: rotate 1.5s linear infinite;
}

@keyframes rotate {
    to { transform: rotate(360deg); }
}

.progress-stats-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    margin-top: 24px;
}

.progress-track {
    width: 100%;
    height: 8px;
    background: var(--bg-input);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 24px;
    border: 1px solid var(--border-color);
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: var(--accent-gradient);
    border-radius: 4px;
    transition: width 0.1s linear;
}

.simulator-status-text {
    font-size: 15px;
    color: var(--text-secondary);
    min-height: 24px;
}

.simulator-completed-actions {
    display: none;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
    animation: fadeInUp 0.3s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Submit Modal / Floating Form */
.submit-modal-content {
    max-width: 560px;
}

.submit-header {
    padding: 30px 30px 20px;
    border-bottom: 1px solid var(--border-color);
}

.submit-header h2 {
    font-size: 22px;
}

.submit-body {
    padding: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-input {
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 12px 16px;
    border-radius: var(--radius-md);
    outline: none;
    font-size: 14px;
}

.form-input:focus {
    border-color: var(--accent-primary);
    background: var(--bg-card);
}

textarea.form-input {
    resize: vertical;
    min-height: 80px;
}

/* Feedback toast notifications */
.toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
    transform: translateY(50px);
    opacity: 0;
    animation: slideInUp 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.toast-success {
    border-left: 4px solid var(--accent-emerald);
}

.toast-success svg {
    fill: var(--accent-emerald);
}

.toast svg {
    width: 18px;
    height: 18px;
}

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

/* Footer Section */
footer {
    border-top: 1px solid var(--border-color);
    padding: 40px 0;
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.footer-stats {
    display: flex;
    gap: 24px;
    font-weight: 500;
    color: var(--text-secondary);
}

.footer-stats span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-stats svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

/* Responsive media queries */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 38px;
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
    
    .detail-header {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px 20px;
    }
    
    .detail-body {
        padding: 20px;
    }
    
    .detail-title-row {
        flex-direction: column;
        align-items: center;
    }
    
    .detail-tags {
        justify-content: center;
    }
    
    .detail-grid {
        grid-template-columns: 1fr;
    }
    
    .apps-grid {
        grid-template-columns: 1fr;
    }
}

/* Q&A Section Styles */
.qa-section {
    padding: 80px 0;
    position: relative;
    border-top: 1px solid var(--border-color);
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 12px;
}

.section-title span {
    background: var(--text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 48px;
    font-size: 15px;
}

.qa-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.qa-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.qa-card:hover {
    border-color: var(--border-color-active);
    background: rgba(255, 255, 255, 0.02);
}

[data-theme="light"] .qa-card:hover {
    background: rgba(0, 0, 0, 0.01);
}

.qa-trigger {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 16px;
}

.qa-trigger .chevron {
    width: 20px;
    height: 20px;
    fill: var(--text-muted);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.qa-card.active .qa-trigger .chevron {
    transform: rotate(180deg);
    fill: var(--accent-primary);
}

.qa-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
    padding: 0 24px;
}

.qa-card.active .qa-content {
    max-height: 200px;
    padding-bottom: 20px;
}

.qa-content p {
    color: var(--text-secondary);
    font-size: 14.5px;
    line-height: 1.6;
}

.support-email {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 500;
}

.support-email:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }
    .qa-trigger {
        padding: 16px 20px;
        font-size: 15px;
    }
    .qa-content {
        padding: 0 20px;
    }
    .qa-card.active .qa-content {
        padding-bottom: 16px;
    }
}

