/* Общие настройки стиля */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #0b060c; /* Темный фон как на скриншоте */
    color: #ffffff;
    min-height: 100vh;
    padding: 0 20px;
}

/* Шапка */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-weight: bold;
    font-size: 1.1rem;
}

.nav {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lang-switcher {
    background: #ff52a2;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    cursor: pointer;
}

.btn-download-small, .btn-profile {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 6px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    transition: 0.3s;
}

.btn-download-small {
    background: linear-gradient(45deg, #ff52a2, #b52a70);
    border: none;
}

.btn-download-small:hover {
    opacity: 0.9;
}

/* Главный блок */
.hero {
    text-align: center;
    max-width: 800px;
    margin: 80px auto 100px auto;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-title span {
    color: #ff52a2; /* Розовый акцент */
}

.hero-subtitle {
    color: #a39ca5;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary {
    background-color: #ff52a2;
    color: white;
}

.btn-primary:hover {
    background-color: #e03e8b;
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

/* Секция возможностей */
.features {
    max-width: 1200px;
    margin: 0 auto 80px auto;
}

.section-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

/* Карточки */
.card {
    background-color: rgba(25px, 12px, 28, 0.4); /* Полупрозрачный темный */
    border: 1px solid rgba(255, 82, 162, 0.15); /* Едва заметная розовая рамка */
    border-radius: 15px;
    padding: 30px;
    transition: transform 0.3s, border-color 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 82, 162, 0.4);
}

.card-icon {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ff52a2;
}

.card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.card p {
    color: #a39ca5;
    font-size: 0.95rem;
    line-height: 1.5;
}
