.hero {
    background: #f6f9fc;
    padding: 70px 20px 80px;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-location {
    margin: 0 0 18px;
    color: #2f80ed;
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    margin: 0 0 30px;
    color: #2c3e50;
    font-size: 58px;
    line-height: 1.1;
}

.hero-lead {
    max-width: 760px;
    margin: 0 auto 40px;
    color: #66788a;
    font-size: 22px;
    line-height: 1.7;
}

.hero-button {
    display: inline-block;
    width: auto;
    min-width: 0;
    padding: 18px 42px;
    text-decoration: none;
}

.hero-contact {
    margin-top: 28px;
}

.hero-phone {
    font-size: 34px;
    font-weight: 700;
    color: #2c3e50;
}

.hero-email {
    margin-top: 8px;
    font-size: 18px;
    color: #66788a;
}

/* ========================================= */
/* WHAT WE DO                                */
/* ========================================= */

.services-preview {
    max-width: 900px;
    margin: 0 auto;
    padding: 35px 20px 15px;
    text-align: center;
}

.services-preview h2 {
    margin: 0 0 20px;
    font-size: 40px;
    color: #2c3e50;
}

.services-preview p {
    font-size: 20px;
    line-height: 1.8;
    color: #66788a;
}

/* ========================================= */
/* SOLUTIONS                                 */
/* ========================================= */

.solutions {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.solution {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
    transition: .25s;
}

.solution:hover {
    transform: translateY(-6px);
}

.solution h3 {
    margin: 0 0 18px;
    color: #2c3e50;
    font-size: 28px;
}

.solution p {
    margin: 0;
    color: #66788a;
    line-height: 1.8;
    font-size: 17px;
}

/* ========================================= */
/* LEAD FORM                                 */
/* ========================================= */

.lead-form-section {
    background: #f7f9fc;
    padding: 60px 20px;
}

.lead-form-section .container {
    max-width: 740px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 14px;
    padding: 40px;
    box-shadow: 0 12px 35px rgba(0,0,0,.08);
}

.lead-form-section h2 {
    margin: 0 0 16px;
    text-align: center;
    font-size: 42px;
    color: #2c3e50;
}

.lead-intro,
.lead-local {
    text-align: center;
    color: #66788a;
    line-height: 1.6;
}

.lead-intro {
    margin: 0 0 12px;
}

.lead-local {
    margin: 0 0 30px;
    font-weight: 600;
}

.alert {
    margin: 0 0 24px;
    padding: 16px 18px;
    border-radius: 8px;
    font-size: 16px;
    line-height: 1.5;
}

.alert-success {
    background: #eaf8ee;
    border: 1px solid #9ad3a7;
    color: #1d6b36;
}

.alert-error {
    background: #fdecec;
    border: 1px solid #e4a3a3;
    color: #8b1e1e;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d6dde5;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    box-sizing: border-box;
    transition: border-color .2s, box-shadow .2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2f80ed;
    box-shadow: 0 0 0 3px rgba(47,128,237,.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.privacy-note {
    text-align: center;
    color: #66788a;
    margin: 24px 0 20px;
    font-size: 15px;
}

.btn-primary {
    display: block;
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: 8px;
    background: #2f80ed;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s, transform .15s;
}

.btn-primary:hover {
    background: #2368c4;
    transform: translateY(-1px);
}

@media (max-width:900px) {

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

}

@media (max-width:768px) {

    .hero {
        padding: 50px 20px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-lead {
        font-size: 18px;
    }

    .hero-button {
        width: 100%;
        min-width: 0;
    }

    .hero-phone {
    font-size: 38px;

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

    .services-preview {
        padding: 45px 20px 20px;
    }

    .services-preview h2 {
        font-size: 32px;
    }

    .services-preview p {
        font-size: 18px;
    }

    .lead-form-section {
        padding: 45px 15px;
    }

    .lead-form-section .container {
        padding: 28px 22px;
    }

    .lead-form-section h2 {
        font-size: 34px;
    }

}