/* Базовые настройки */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #FAFAFA; /* Очень светло-серый, не бьет по глазам */
    color: #111111;
    line-height: 1.6;
}

/* Шапка */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #FFFFFF;
    border-bottom: 1px solid #EAEAEA;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -1px;
}

.navbar nav a {
    text-decoration: none;
    color: #555555;
    margin-left: 30px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.navbar nav a:hover {
    color: #111111;
}

/* Главный экран */
.hero {
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 64px;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero p {
    font-size: 20px;
    color: #555555;
    margin-bottom: 40px;
}

/* Кнопки */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.btn {
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background-color: #111111;
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.btn-secondary {
    background-color: #FFFFFF;
    color: #111111;
    border: 1px solid #EAEAEA;
}

.hero-note {
    font-size: 14px !important;
    color: #888888 !important;
}