:root {
    --primary: #d97706;
    /* Bronze/Amber */
    --primary-hover: #b45309;
    --bg: #0c0a09;
    /* Stone-950, deep dark */
    --text: #fafaf9;
    --text-muted: #a8a29e;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --accent-glow: rgba(217, 119, 6, 0.2);
}

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

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

header {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lang-switch {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.5rem;
    transition: color 0.2s;
}

.lang-switch:hover {
    color: var(--primary);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--text);
    text-decoration: none;
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    box-shadow: 0 0 20px var(--accent-glow);
}

.logo span {
    background: linear-gradient(90deg, #fbbf24, #d97706);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 80vh;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.highlight {
    color: var(--primary);
}

p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.cta-button {
    background: var(--primary);
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 99px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: transform 0.2s, background 0.2s;
}

.cta-button:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

.cta-button.mini {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.glass-card {
    background: var(--glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 24px;
    max-width: 350px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: float 6s ease-in-out infinite;
}

.bot-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1.25rem;
    border: 2px solid var(--primary);
    box-shadow: 0 0 15px var(--accent-glow);
}

.bot-msg {
    display: flex;
    align-items: flex-start;
}

.bot-msg-content {
    display: flex;
    flex-direction: column;
}

.bot-name {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.bot-msg p {
    font-size: 1rem;
    margin-bottom: 0;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--glass);
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    transition: background 0.3s;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
}

.icon {
    font-size: 2.5rem;
}

footer {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-muted);
    border-top: 1px solid var(--glass-border);
}

.legal-links {
    margin-top: 1rem;
    font-size: 0.85rem;
}

.legal-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin: 0 0.5rem;
}

.legal-links a:hover {
    color: var(--primary);
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    h1 {
        font-size: 2.5rem;
    }

    .hero-image {
        margin-top: 4rem;
    }
}

.bot-icon-inline {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-left: 0.25rem;
    border-radius: 4px;
}