/* Home page — compact property CTA */
body.nine-properties {
    --pm-cb-navy: #09233c;
    --pm-cb-accent: var(--nine-pm-brand-btn, #fdb813);
    --pm-cb-accent-dark: var(--nine-pm-brand-btn-hover, #e5a610);
    --pm-cb-border: #e5e7eb;
}

body.nine-properties .nine-pm-callback-band {
    width: 100%;
    box-sizing: border-box;
}

body.nine-properties .nine-pm-callback-band__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

body.nine-properties .nine-pm-callback-card {
    padding: 22px 24px;
    border: 1px solid var(--pm-cb-border);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 18px rgb(9 35 60 / 5%);
    box-sizing: border-box;
}

body.nine-properties .nine-pm-callback-card__intro {
    margin-bottom: 14px;
}

body.nine-properties .nine-pm-callback-card__title {
    margin: 0 0 6px;
    font-size: clamp(20px, 2vw, 26px);
    font-weight: 700;
    line-height: 1.25;
    color: var(--pm-cb-navy);
}

body.nine-properties .nine-pm-callback-card__text {
    margin: 0;
    font-size: 14px;
    line-height: 1.45;
    color: #666;
}

body.nine-properties .nine-pm-callback-form {
    margin: 0;
}

body.nine-properties .nine-pm-callback-form__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

body.nine-properties .nine-pm-callback-form__pill {
    margin: 0;
    cursor: pointer;
}

body.nine-properties .nine-pm-callback-form__pill input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

body.nine-properties .nine-pm-callback-form__pill span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border: 1px solid var(--pm-cb-border);
    border-radius: 999px;
    background: #f9fafb;
    color: #444;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

body.nine-properties .nine-pm-callback-form__pill input:checked + span {
    border-color: var(--pm-cb-navy);
    background: var(--pm-cb-navy);
    color: #fff;
}

body.nine-properties .nine-pm-callback-form__row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: stretch;
}

body.nine-properties .nine-pm-callback-form__input {
    flex: 1 1 140px;
    min-width: 0;
    min-height: 42px;
    padding: 0 12px;
    border: 1px solid var(--pm-cb-border);
    border-radius: 8px;
    background: #fff;
    color: #333;
    font-size: 14px;
    box-sizing: border-box;
}

body.nine-properties .nine-pm-callback-form__input::placeholder {
    color: #999;
}

body.nine-properties .nine-pm-callback-form__input:focus {
    outline: none;
    border-color: var(--pm-cb-navy);
    box-shadow: 0 0 0 2px rgb(9 35 60 / 8%);
}

body.nine-properties .nine-pm-callback-form__input.is-invalid {
    border-color: #e55353;
}

body.nine-properties .nine-pm-callback-form__input.is-hidden {
    display: none;
}

body.nine-properties .nine-pm-callback-form__submit {
    flex: 0 0 auto;
    min-height: 42px;
    padding: 0 20px;
    border: none;
    border-radius: 8px;
    background: var(--pm-cb-accent);
    color: var(--pm-cb-navy);
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
    transition: background 0.2s ease;
}

body.nine-properties .nine-pm-callback-form__submit:hover {
    background: var(--pm-cb-accent-dark);
}

body.nine-properties .nine-pm-callback-form__submit:disabled {
    opacity: 0.7;
    cursor: wait;
}

body.nine-properties .nine-pm-callback-form__trust {
    margin: 10px 0 0;
    font-size: 12px;
    line-height: 1.4;
    color: #888;
}

body.nine-properties .nine-pm-callback-form__result {
    margin: 6px 0 0;
    font-size: 13px;
    line-height: 1.4;
}

body.nine-properties .nine-pm-callback-form__result.is-success {
    color: #15803d;
}

body.nine-properties .nine-pm-callback-form__result.is-error {
    color: #b91c1c;
}

@media (max-width: 767px) {
    body.nine-properties .nine-pm-callback-card {
        padding: 18px 16px;
    }

    body.nine-properties .nine-pm-callback-form__row {
        flex-direction: column;
    }

    body.nine-properties .nine-pm-callback-form__input,
    body.nine-properties .nine-pm-callback-form__submit {
        flex: 1 1 auto;
        width: 100%;
    }
}
