.hero-transfer {
    color: #000;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    color: #000;
}

.hero-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 30px;
    font-size: 18px;
}

.hero-benefits li {
    background: rgba(255,255,255,0.05);
    padding: 10px 15px;
    border-radius: 6px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.btn {
    display: inline-block;
    padding: 14px 22px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
    font-size: 16px;
}

.btn-primary {
    background: #1f6feb;
    color: #fff;
}

.btn-primary:hover {
    background: #3b82f6;
}

.btn-secondary {
    background: #ffffff;
    color: #0f2b5b;
}

.btn-secondary:hover {
    background: #e5e7eb;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
}

.btn-whatsapp:hover {
    background: #1ebe5d;
}

.btn-telegram {
    background: #229ED9;
    color: #fff;
}

.btn-telegram:hover {
    background: #1b8cc4;
}

/* Адаптив */
@media (max-width: 768px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-benefits {
        grid-template-columns: 1fr;
        font-size: 16px;
    }

    .hero-transfer {
        padding: 60px 20px;
    }
}