.quote-hero {
    background-color: var(--cre-purple);
    color: var(--cre-white);
    text-align: center;
    padding: 60px 0 50px;
}

.quote-hero h1 {
    font-size: 2.4rem;
    margin-bottom: 10px;
}

.quote-hero p {
    font-size: 1.1rem;
    max-width: 680px;
    margin: 0 auto;
    opacity: 0.92;
}

.quote-content {
    background: var(--cre-white);
    padding: 60px 0;
}

.quote-wrap {
    max-width: 860px;
}

.quote-alert {
    border-radius: 8px;
    padding: 14px 16px;
    margin-bottom: 18px;
    border: 1px solid transparent;
    font-size: 1rem;
}

.quote-alert--success {
    background: #ecf9f6;
    border-color: #9ddfce;
    color: #0f5f50;
}

.quote-alert--error {
    background: #fff5f5;
    border-color: #efc8c8;
    color: #7b1d1d;
}

.quote-alert--error p {
    margin-bottom: 8px;
    font-weight: 600;
}

.quote-alert--error ul {
    margin-left: 20px;
}

.quote-form {
    background: #f9f9fb;
    border: 1px solid #e4e6ef;
    border-radius: 10px;
    padding: 28px;
}

.quote-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.quote-form__field {
    margin-bottom: 16px;
}

.quote-form__field label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #2d2f3a;
    font-size: 1rem;
}

.quote-form__field input,
.quote-form__field textarea {
    width: 100%;
    border: 1px solid #c9cfdd;
    border-radius: 6px;
    padding: 11px 12px;
    font-size: 1rem;
    font-family: var(--font-body);
    color: #2a2c36;
    background: #fff;
}

.quote-form__field input:focus,
.quote-form__field textarea:focus {
    outline: none;
    border-color: var(--cre-teal);
    box-shadow: 0 0 0 3px rgba(0, 130, 138, 0.18);
}

.quote-form__field small {
    display: block;
    margin-top: 6px;
    color: #5f6678;
    font-size: 1rem;
}

.quote-form__field--hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.quote-form__submit {
    width: 100%;
    border: 0;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
}

@media (max-width: 768px) {
    .quote-hero {
        padding: 45px 0 38px;
    }

    .quote-hero h1 {
        font-size: 2rem;
    }

    .quote-content {
        padding: 40px 0;
    }

    .quote-form {
        padding: 22px;
    }

    .quote-form__grid {
        grid-template-columns: 1fr;
    }
}
