/* === Shared Design System === */

:root {
    --bg: #0C0C0C;
    --surface: #151815;
    --surface-hover: #1C201C;
    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.15);
    --text: #C8C4BF;
    --text-muted: #6B6E6B;
    --heading: #E8E5E0;
    --accent: #4A9B5A;
    --accent-light: #5AB86A;
    --font: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font);
    font-weight: 300;
    line-height: 1.7;
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3 {
    text-wrap: balance;
}

h1 {
    color: var(--heading);
    font-size: 2.25rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0 0 2rem;
}

h2 {
    color: var(--heading);
    font-size: 1.4rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
}

h3 {
    color: var(--heading);
    font-size: 1.15rem;
    font-weight: 500;
    margin: 0 0 0.75rem;
}

p {
    margin: 0 0 1.25rem;
}

ul {
    padding-left: 1.5rem;
    margin: 0 0 1.5rem;
}

a {
    color: var(--accent-light);
    text-decoration: none;
    transition: color 0.15s;
}

a:hover {
    color: var(--heading);
}

/* FAQ */
.faq-item {
    margin-bottom: 2rem;
}

.faq-item h3 {
    color: var(--accent);
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
}

.faq-item p {
    color: var(--text);
    line-height: 1.6;
}

/* Footer */
.site-footer {
    max-width: 960px;
    margin: 0 auto;
    padding: 3.5rem 2rem 2.5rem;
    margin-top: auto;
    border-top: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
}

.site-footer nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.25rem;
}

.site-footer nav a {
    color: var(--text-muted);
    transition: color 0.2s ease;
    padding: 0.35rem 0;
    font-weight: 400;
}

.site-footer nav a:hover {
    color: var(--heading);
}

.site-footer .copyright {
    margin: 0;
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 600px) {
    h1 {
        font-size: 1.75rem;
    }
    .site-footer {
        padding: 2rem 1.5rem 1.5rem;
    }
}
