:root {
    --primary: #020202;
    --primary-light: #171717;
    --accent: #F56B1C;
    --accent-light: #f8924e;
    --accent-glow: rgba(245, 107, 28, 0.4);
    --success: #38a169;
    --warning: #d69e2e;
    --danger: #e53e3e;
    --bg: #f5f5f5;
    --card-bg: #ffffff;
    --text: #262626;
    --text-light: #525252;
    --border: #e5e5e5;
    --radius: 1rem;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Playfair Display', Georgia, serif;
}

/* Top Navigation */
.top-nav {
    background: var(--primary);
    color: white;
    padding: 0.6rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
}

.top-nav-brand:hover {
    color: var(--accent-light);
}

.top-nav-brand .nav-logo {
    font-size: 1.1rem;
}

.top-nav-links {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.top-nav-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.2s;
    font-family: 'Inter', sans-serif;
}

.top-nav-links a:hover {
    color: var(--accent-light);
}

.top-nav .lang-switcher {
    margin-top: 0;
}

/* Header */
.header {
    background: var(--accent);
    color: white;
    padding: 2.5rem 1rem;
    text-align: center;
}

.header h1 {
    font-size: clamp(1.8rem, 1.5rem + 2vw, 2.5rem);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.header p {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

.lang-switcher {
    display: inline-flex;
    gap: 0.25rem;
    margin-top: 0;
}
.lang-btn {
    background: rgba(255,255,255,0.15);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    padding: 0.3rem 0.7rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s;
}
.lang-btn:hover { background: rgba(255,255,255,0.25); }
.lang-btn.active { background: rgba(255,255,255,0.35); border-color: white; }

/* Container */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.btn-expert {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--accent);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
}

.btn-expert:hover {
    background: var(--primary-light);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-outline:hover {
    background: var(--accent);
    color: white;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    margin-top: 2rem;
}

.cta-section h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.cta-section p {
    opacity: 0.9;
    margin-bottom: 1.2rem;
}

.cta-section .btn-expert {
    background: white;
    color: var(--primary);
    font-size: 1rem;
    padding: 0.8rem 2rem;
}

.cta-section .btn-expert:hover {
    background: #f5f5f5;
}

/* Contact CTA in results */
.contact-cta {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.contact-cta a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.contact-cta .btn-coffee {
    background: var(--accent);
    color: white;
}

.contact-cta .btn-coffee:hover {
    background: var(--accent-light);
    transform: translateY(-1px);
}

.contact-cta .btn-linkedin {
    background: #0A66C2;
    color: white;
}

.contact-cta .btn-linkedin:hover {
    background: #004182;
    transform: translateY(-1px);
}

/* Responsive nav */
@media (max-width: 640px) {
    .top-nav {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.5rem 1rem;
    }

    .top-nav-links {
        gap: 0.75rem;
    }

    .contact-cta {
        flex-direction: column;
        align-items: center;
    }
}

/* Footer */
.footer {
    text-align: center;
    padding: 2rem 1rem;
    color: var(--text-light);
    font-size: 0.85rem;
}

.footer a {
    color: var(--accent);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 640px) {
    .header h1 {
        font-size: 1.5rem;
    }

    .container {
        padding: 1rem 0.75rem;
    }
}
