.p2c-search-hero {
    padding: 40px 0 100px;
    background:
        radial-gradient(circle at top right,
        rgba(37,99,235,.15),
        transparent 35%),
        linear-gradient(
            180deg,
            #f8fbff,
            #ffffff
        );
}

.p2c-search-hero h1 {
    font-size: clamp(2.8rem,5vw,4.8rem);
    font-weight: 900;
    line-height: 1.05;
    color: var(--p2c-secondary);
    margin-bottom: 25px;
}

.p2c-search-hero p {
    font-size: 1.15rem;
    color: var(--p2c-muted);
    line-height: 1.8;
}

.p2c-search-points {
    display: grid;
    gap: 18px;
    margin-top: 40px;
}

.p2c-search-points div {
    font-weight: 700;
}

.p2c-search-points i {
    color: #16a34a;
    margin-right: 10px;
}

.p2c-search-form-card {
    background: #fff;
    padding: 45px;
    border-radius: 30px;
    box-shadow:
        0 20px 60px rgba(15,23,42,.08);
}

.p2c-search-form-card h2 {
    font-weight: 900;
    color: var(--p2c-secondary);
}

.p2c-search-form-card input {
    height: 58px;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
}

.p2c-search-form-card input:focus {
    border-color: var(--p2c-primary);
    box-shadow:
        0 0 0 .25rem rgba(37,99,235,.15);
}

.p2c-search-stat {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow:
        0 10px 40px rgba(15,23,42,.06);
}

.p2c-search-stat h2 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--p2c-primary);
}

.p2c-search-stat p {
    color: var(--p2c-muted);
    margin: 0;
}

@media (max-width:991px) {
    .p2c-search-hero {
        padding: 130px 0 70px;
    }

    .p2c-search-form-card {
        padding: 30px;
    }
}