/*
Theme Name: Bono Child
Theme URI: https://wpshop.ru/themes/bono
Author: WPShop.ru
Author URI: http://wpshop.ru/
Template: bono
Version: 1.0.0
*/

/* ГЛАВНЫЙ ЭКРАН */

.hero-fullscreen {
    min-height: 100%;
    display: flex;
    align-items: center;
    color: #fff;
}

.hero-container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 48px 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    box-sizing: border-box;
}

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

.hero-title {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.2;
    color: #ffffff;
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 40px 0;
    border-left: 4px solid #3770b1;
    padding-left: 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    padding: 5px 5px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid rgba(55, 112, 177, 0.2);
    color: #1e2a2e;
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: #3770b1;
}

.feature-icon {
    font-size: 32px;
    color: #3770b1;
    width: 48px;
    text-align: center;
    flex-shrink: 0;
}

.feature-text {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #3770b1;
    border: none;
    color: white;
    font-weight: 500;
    font-size: 20px;
    padding: 16px 40px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 8px 18px rgba(55, 112, 177, 0.3);
    letter-spacing: 0.5px;
    gap: 10px;
}

.hero-btn i {
    font-size: 18px;
    transition: transform 0.2s;
}

.hero-btn:hover {
    background-color: #2a5a8f;
    transform: scale(1.02);
    box-shadow: 0 12px 22px rgba(55, 112, 177, 0.4);
}

.hero-btn:hover i {
    transform: translateX(4px);
}

.hero-right {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 32px 28px;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.2);
}

.form-heading {
    font-size: 20px;
    font-weight: 500;
    color: #1e2a2e;
    margin-bottom: 20px;

    line-height: 1.3;
}

.hero-right .wpcf7-form label {
    font-weight: 500;
    color: #1e2a2e;
    display: block;
    margin-bottom: 6px;
	font-size: 13px;
}

.hero-right .wpcf7-form input,
.hero-right .wpcf7-form textarea,
.hero-right .wpcf7-form select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 16px;
    transition: border 0.2s;
    margin-bottom: 16px;
    box-sizing: border-box;
}

.hero-right .wpcf7-form input:focus,
.hero-right .wpcf7-form textarea:focus {
    border-color: #3770b1;
    outline: none;
    box-shadow: 0 0 0 2px rgba(55, 112, 177, 0.2);
}

.hero-right .wpcf7-form .wpcf7-submit {
    width: 100%;
    background-color: #3770b1;
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s;
    display: inline-block;
    box-sizing: border-box;
}

.hero-right .wpcf7-form .wpcf7-submit:hover {
    background-color: #2a5a8f;
}

.wpcf7-response-output {
	color: #1e2a2e;
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 32px 24px;
    }
    .hero-fullscreen {
        min-height: auto;
        padding: 32px 0;
    }
    .hero-title {
        font-size: 32px;
    }
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 28px;
    }
    .features-grid {
        gap: 16px;
        margin-bottom: 32px;
    }
    .feature-item {
        padding: 11px 16px;
    }
    .feature-icon {
        font-size: 25px;
        width: 40px;
    }
    .feature-text {
        font-size: 14px;
    }
    .hero-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 16px;
    }
    .hero-right {
        padding: 24px;
    }
    .form-heading {
        font-size: 18px;
        margin-bottom: 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    .feature-text {
        font-size: 13px;
    }
}

/* ГЛАВНЫЙ ЭКРАН */