

/* Start:/development/style.css?17692185265607*/
/* =========================================
   1. ОБЩИЕ СТИЛИ
   ========================================= */
:root {
    --brand-red: #d92b16;
    --text-main: #1a1a1a;
    --text-secondary: #666;
    --bg-gray: #f5f7fa;
}

.development-page {
    padding-bottom: 80px;
    background-color: #fff;
}

/* --- ЗАГОЛОВКИ (Strict Rule) --- */
.section-header {
    text-align: left;
    margin-bottom: 50px;
}

.section-title {
    font-size: 42px !important;
    /* STRICT RULE */
    font-weight: 800;
    color: var(--text-main);
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.section-title span {
    color: var(--brand-red);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 700px;
    margin: 0;
}

/* --- HERO BLOCK --- */
.development-hero {
    background: var(--bg-gray);
    padding: 40px 0;
    margin-bottom: 100px;
    border-bottom: 1px solid #eee;
    overflow: hidden;
}

.hero-flex-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-content {
    max-width: 600px;
    flex: 1;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: contain;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.hero-label {
    color: var(--brand-red);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

.hero-title {
    font-size: 42px !important;
    /* STRICT RULE */
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--text-main);
    line-height: 1.2;
}

.hero-desc {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 30px;
}

.hero-btn {
    background: var(--brand-red);
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 10px 20px rgba(217, 43, 22, 0.2);
}

.hero-btn:hover {
    background: #b02312;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(217, 43, 22, 0.3);
    color: #fff;
}

/* --- БЛОК ПРЕИМУЩЕСТВ --- */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 100px;
}

.benefit-item {
    text-align: left;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: #fff5f5;
    color: #d92b16;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    transform: translateY(-5px) scale(1.1);
    background: #d92b16;
    color: #fff;
    box-shadow: 0 10px 20px rgba(217, 43, 22, 0.2);
}

.benefit-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.benefit-text {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* --- СЕРВИСЫ (Cards) --- */
.development-services-section {
    margin-bottom: 100px;
    background: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid #f0f0f0;
    text-decoration: none;
    /* For links */
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.service-img-wrap {
    height: 220px;
    background: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.service-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img-wrap img {
    transform: scale(1.05);
}

.service-body {
    padding: 35px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    flex: 1;
}

.service-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--brand-red);
    margin-bottom: 15px;
}

.service-link {
    color: #d92b16;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
}

.service-link:hover {
    color: #b02312;
    gap: 12px;
    transition: 0.3s;
}

@media (max-width: 992px) {
    .hero-flex-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-image {
        margin-top: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-image {
        display: none;
    }

    .development-hero {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}
/* End */
/* /development/style.css?17692185265607 */
