.ms-pound-consultation-section {
    padding: 85px 0;
    direction: rtl;
    box-sizing: border-box;
}

.ms-pound-consultation-section *,
.ms-pound-consultation-section *::before,
.ms-pound-consultation-section *::after {
    box-sizing: border-box;
}

.ms-pound-container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.ms-pound-consultation-box {
    --ms-primary: #0056b3;
    --ms-text: #263547;
    --ms-radius-lg: 28px;

    position: relative;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: 50px;
    overflow: hidden;
    padding: 55px;
    border-radius: var(--ms-radius-lg);
    color: #fff;
    background:
        radial-gradient(
            circle at 5% 5%,
            rgba(255, 255, 255, 0.2),
            transparent 24%
        ),
        linear-gradient(
            125deg,
            #003e83 0%,
            #0056b3 45%,
            #277d7d 100%
        );
    box-shadow: 0 25px 60px rgba(0, 63, 133, 0.22);
}

.ms-pound-consultation-decoration {
    position: absolute;
    bottom: -120px;
    left: -70px;
    width: 330px;
    height: 330px;
    border: 50px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.ms-pound-consultation-content,
.ms-pound-lead-form {
    position: relative;
    z-index: 1;
}

.ms-pound-consultation-content > span {
    display: inline-block;
    margin-bottom: 12px;
    color: #92f0d0;
    font-size: 15px;
    font-weight: 800;
}

.ms-pound-consultation-content h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.65rem, 3vw, 2.45rem);
    font-weight: 900;
    line-height: 1.55;
}

.ms-pound-consultation-content p {
    margin: 17px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 2;
}

.ms-pound-lead-form {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    align-items: end;
    gap: 13px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.11);
    box-shadow: 0 10px 30px rgba(0, 40, 90, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.ms-pound-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.ms-pound-form-group label {
    color: inherit;
    font-size: 0.86rem;
    font-weight: 800;
}

.ms-pound-form-group input {
    width: 100%;
    height: 52px;
    padding: 0 15px;
    border: 1px solid #dce3ed;
    border-radius: 11px;
    outline: none;
    color: var(--ms-text);
    background: #fff;
    font: inherit;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.ms-pound-form-group input::placeholder {
    color: #8793a3;
    opacity: 1;
}

.ms-pound-form-group input:focus {
    border-color: var(--ms-primary);
    box-shadow: 0 0 0 4px rgba(0, 86, 179, 0.1);
}

.ms-pound-form-group input.ms-field-error {
    border-color: #d63638;
    box-shadow: 0 0 0 4px rgba(214, 54, 56, 0.12);
}

.ms-pound-form-submit {
    display: inline-flex;
    height: 52px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 19px;
    border: 0;
    border-radius: 11px;
    color: var(--ms-primary);
    background: #fff;
    font: inherit;
    font-weight: 900;
    white-space: nowrap;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        opacity 0.2s ease;
}

.ms-pound-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 9px 20px rgba(0, 35, 80, 0.18);
}

.ms-pound-form-submit:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.5);
    outline-offset: 3px;
}

.ms-pound-form-submit:disabled {
    opacity: 0.68;
    cursor: wait;
    transform: none;
}

.ms-pound-form-submit svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transform: scaleX(-1);
}

.ms-consultation-message {
    display: none;
    grid-column: 1 / -1;
    padding: 10px 13px;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.8;
}

.ms-consultation-message.is-visible {
    display: block;
}

.ms-consultation-message.is-success {
    color: #073f2f;
    background: #baf4df;
}

.ms-consultation-message.is-error {
    color: #7a1717;
    background: #ffdada;
}

.ms-consultation-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

@media (max-width: 1050px) {
    .ms-pound-consultation-box {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 720px) {
    .ms-pound-consultation-section {
        padding: 45px 0;
    }

    .ms-pound-container {
        width: min(100% - 24px, 1180px);
    }

    .ms-pound-consultation-box {
        gap: 27px;
        padding: 34px 24px;
        border-radius: 22px;
    }

    .ms-pound-lead-form {
        grid-template-columns: 1fr;
        padding: 18px;
    }

    .ms-pound-form-submit {
        width: 100%;
    }

    .ms-pound-consultation-content h2 {
        font-size: 1.65rem;
    }
}

@media (max-width: 420px) {
    .ms-pound-consultation-box {
        padding: 28px 17px;
    }

    .ms-pound-lead-form {
        padding: 15px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ms-pound-form-group input,
    .ms-pound-form-submit {
        transition: none;
    }
}