/* ========== ОСНОВНЫЕ СТИЛИ ========== */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #2d3436;
    background: #fff;
}

a {
    color: #ff7a45;
    text-decoration: none;
}
a:hover {
    color: #e06530;
}

/* ========== ШАПКА ========== */
.navbar {
    background: #fff !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 15px 0;
}
.navbar-brand {
    font-weight: 700;
    color: #ff7a45;
    font-size: 1.5rem;
}
.navbar-brand span {
    color: #2d3436;
}
.navbar .phone {
    font-weight: 600;
    color: #2d3436;
    font-size: 1.1rem;
}
.navbar .btn-outline-primary {
    border-color: #ff7a45;
    color: #ff7a45;
    border-radius: 50px;
    padding: 8px 20px;
    font-weight: 500;
}
.navbar .btn-outline-primary:hover {
    background: #ff7a45;
    color: #fff;
}

/* ========== HERO ========== */
.hero {
    background: #fff5f0;
    padding: 80px 0;
    position: relative;
}
.hero .row {
    align-items: center;
}
.hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2d3436;
    line-height: 1.2;
}
.hero h1 span {
    color: #ff7a45;
}
.hero .stats {
    display: flex;
    gap: 30px;
    margin: 20px 0;
}
.hero .stats div {
    text-align: center;
}
.hero .stats .number {
    font-size: 2rem;
    font-weight: 700;
    color: #ff7a45;
}
.hero .stats .label {
    font-size: 0.9rem;
    color: #636e72;
}
.hero p {
    font-size: 1.1rem;
    color: #636e72;
    margin-bottom: 30px;
}
.hero .btn-primary {
    background: linear-gradient(135deg, #ff7a45, #ff6348);
    border: none;
    border-radius: 50px;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(255,122,69,0.3);
}
.hero .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,122,69,0.4);
}
.hero .hero-image {
    max-width: 100%;
    border-radius: 16px;
}

/* ========== ПРЕИМУЩЕСТВА ========== */
.benefits {
    padding: 60px 0;
    background: #fff;
}
.benefits .card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
    text-align: center;
    padding: 30px 15px;
}
.benefits .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.benefits .card i {
    font-size: 2.5rem;
    color: #ff7a45;
    margin-bottom: 15px;
}
.benefits .card h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3436;
}

/* ========== ОТЗЫВЫ ========== */
.reviews {
    background: #fff5f0;
    padding: 60px 0;
}
.reviews .card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    padding: 20px;
}
.reviews .card p {
    font-style: italic;
}
.reviews .stars {
    color: #ff7a45;
}

/* ========== ФУТЕР ========== */
footer {
    background: #2d3436;
    color: #fff;
    padding: 40px 0;
}
footer a {
    color: #ff7a45;
}
footer a:hover {
    color: #ffa07a;
}

/* ========== ОБЩИЕ ЭЛЕМЕНТЫ ========== */
.btn-primary {
    background: linear-gradient(135deg, #ff7a45, #ff6348);
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
}
.btn-primary:hover {
    background: linear-gradient(135deg, #e06530, #ff4500);
}

/* ========== АДАПТИВНОСТЬ ========== */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    .hero .stats {
        flex-wrap: wrap;
    }
    .hero .hero-image {
        margin-top: 30px;
    }
}
