/* Шрифты как на DTEAM */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --font-primary: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.01em;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 2.5rem;
    letter-spacing: -0.3px;
}

h3 {
    font-size: 1.75rem;
}

p {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: -0.01em;
}

.logo {
    font-family: var(--font-primary);
    font-weight: 800;
    letter-spacing: -0.5px;
}

.hero-title {
    letter-spacing: -0.03em;
}

.hero-title .highlight {
    font-weight: 800;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
}