/* Homepage consultative section — leads the page ahead of the catalogue. */

.ps-consultative {
    background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
    border-top: 1px solid #e6ebf2;
}

.ps-consultative__eyebrow {
    background: rgba(68, 156, 204, 0.12);
    color: #16425b;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.72rem;
}

.ps-consultative__step {
    position: relative;
    background: #fff;
    border: 1px solid #e6ebf2;
    border-radius: 0.75rem;
    padding: 1.5rem 1.25rem 1.25rem;
    transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.ps-consultative__step:hover {
    box-shadow: 0 0.75rem 1.5rem rgba(22, 66, 91, 0.1);
    border-color: #cfe0ec;
    transform: translateY(-3px);
}

.ps-consultative__num {
    position: absolute;
    top: -0.75rem;
    left: 1.25rem;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #449ccc 0%, #16425b 100%);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ps-consultative__icon {
    display: block;
    font-size: 1.6rem;
    color: #449ccc;
    margin: 0.35rem 0 0.75rem;
}

.ps-consultative__cta {
    background: linear-gradient(135deg, #449ccc 0%, #16425b 100%);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 0.75rem 1.75rem rgba(22, 66, 91, 0.22);
}

.ps-consultative__cta .btn-light {
    color: #16425b;
}

.ps-consultative__cta .btn-outline-light:hover {
    background: #fff;
    color: #16425b;
}

.ps-consultative__proof {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 2rem;
    margin: 1.75rem 0 0;
    padding: 0;
}

.ps-consultative__proof li {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
}

.ps-consultative__proof i {
    color: #449ccc;
}

@media (max-width: 575.98px) {
    .ps-consultative__cta {
        padding: 1.5rem 1.25rem;
    }

    .ps-consultative__proof {
        gap: 0.5rem 1.25rem;
    }
}

/* ── Homepage hero (consultative) ────────────────────────────────────────
   One static hero replacing the ten-slide category carousel: one message,
   one primary action, and no carousel JS on the critical path. */
.ps-hero {
    position: relative;
    background: #16425b center/cover no-repeat;
    color: #fff;
    isolation: isolate;
}

.ps-hero--noimg {
    background: linear-gradient(135deg, #2a8ec7 0%, #16425b 100%);
}

/* Scrim keeps the copy legible over any photograph, weighted to the left
   where the text sits so the image still reads on the right. */
.ps-hero__scrim {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(100deg, rgba(11, 32, 46, 0.94) 0%, rgba(11, 32, 46, 0.82) 42%, rgba(11, 32, 46, 0.35) 72%, rgba(11, 32, 46, 0.15) 100%);
    z-index: -1;
}

.ps-hero__inner {
    padding-top: clamp(3.5rem, 8vw, 7rem);
    padding-bottom: clamp(3.5rem, 8vw, 7rem);
}

.ps-hero__eyebrow {
    display: inline-block;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 2rem;
    padding: 0.3rem 0.9rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.ps-hero__title {
    font-size: clamp(2rem, 4.6vw, 3.6rem);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -0.02em;
    margin-bottom: 1.1rem;
    max-width: 18ch;
}

.ps-hero__intro {
    font-size: clamp(1rem, 1.25vw, 1.18rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.86);
    max-width: 56ch;
    margin-bottom: 2rem;
}

.ps-hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;
    margin-bottom: 2.25rem;
}

/* Explicit padding — .btn resolves its padding from Bootstrap vars this
   build never defines, so anything relying on it collapses to a hairline. */
.ps-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    border: 2px solid transparent;
    border-radius: 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease, color 0.16s ease;
}

.ps-hero__btn--primary {
    background: #fff;
    color: #16425b;
    box-shadow: 0 0.6rem 1.4rem rgba(0, 0, 0, 0.3);
}

.ps-hero__btn--primary:hover {
    color: #0f6fa9;
    transform: translateY(-2px);
    box-shadow: 0 0.9rem 1.8rem rgba(0, 0, 0, 0.36);
}

.ps-hero__btn--ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.55);
}

.ps-hero__btn--ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: #fff;
}

.ps-hero__call {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    opacity: 0.9;
}

.ps-hero__call:hover {
    color: #fff;
    opacity: 1;
    text-decoration: underline;
}

.ps-hero__proof {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 1.75rem;
    margin: 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.ps-hero__proof li {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.84rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.82);
}

.ps-hero__proof i {
    color: #7fc4e8;
    font-size: 0.95rem;
}

@media (max-width: 767.98px) {
    .ps-hero__scrim {
        background: linear-gradient(180deg, rgba(11, 32, 46, 0.88) 0%, rgba(11, 32, 46, 0.94) 100%);
    }

    .ps-hero__title {
        max-width: none;
    }

    .ps-hero__btn {
        width: 100%;
        justify-content: center;
    }

    .ps-hero__call {
        width: 100%;
        justify-content: center;
        padding-top: 0.25rem;
    }
}

/* ── Homepage closing section: sectors + enquiry ─────────────────────────
   Rebuilt: the old markup used a decorative grid background, a truncated
   placeholder paragraph and icon-only cards pointing at 404s. */
.ps-enquiry {
    padding: clamp(2.75rem, 6vw, 4.5rem) 0;
    background: #f7f9fc;
    border-top: 1px solid #e6ebf2;
}

.ps-enquiry__head {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: end;
    margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}

.ps-enquiry__eyebrow {
    display: inline-block;
    background: rgba(42, 142, 199, 0.12);
    color: #16425b;
    border-radius: 2rem;
    padding: 0.3rem 0.9rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.ps-enquiry__title {
    font-size: clamp(1.6rem, 3.2vw, 2.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #16425b;
    margin-bottom: 0.85rem;
    max-width: 24ch;
}

.ps-enquiry__text {
    font-size: 1rem;
    line-height: 1.6;
    color: #64748b;
    max-width: 62ch;
    margin: 0;
}

.ps-enquiry__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
}

.ps-enquiry__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    background: linear-gradient(135deg, #2a8ec7 0%, #16425b 100%);
    color: #fff !important;
    border-radius: 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 0.5rem 1.1rem rgba(22, 66, 91, 0.24);
    transition: transform 0.16s ease, box-shadow 0.16s ease, filter 0.16s ease;
}

.ps-enquiry__btn:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
    box-shadow: 0 0.75rem 1.5rem rgba(22, 66, 91, 0.3);
}

.ps-enquiry__call {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #16425b;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
}

.ps-enquiry__call:hover {
    color: #0f6fa9;
    text-decoration: underline;
}

.ps-enquiry__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(268px, 1fr));
    gap: 1.4rem;
}

.ps-enquiry__card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e6ebf2;
    border-radius: 0.9rem;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.ps-enquiry__card:hover {
    transform: translateY(-4px);
    border-color: #cfe0ec;
    box-shadow: 0 1rem 2rem rgba(15, 42, 60, 0.14);
}

.ps-enquiry__card-img {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    background: #eef3f8 center/cover no-repeat;
}

.ps-enquiry__card-badge {
    position: absolute;
    bottom: -18px;
    left: 1.15rem;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: #2a8ec7;
    font-size: 1.15rem;
    box-shadow: 0 0.35rem 0.8rem rgba(15, 42, 60, 0.16);
}

.ps-enquiry__card-body {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    padding: 1.9rem 1.25rem 1.3rem;
    flex: 1 1 auto;
}

.ps-enquiry__card-title {
    font-size: 1.12rem;
    font-weight: 700;
    color: #16425b;
    line-height: 1.25;
}

.ps-enquiry__card-text {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #64748b;
    flex: 1 1 auto;
}

.ps-enquiry__card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.84rem;
    font-weight: 700;
    color: #0f6fa9;
}

.ps-enquiry__card:hover .ps-enquiry__card-cta i {
    transform: translateX(3px);
}

.ps-enquiry__card-cta i {
    transition: transform 0.16s ease;
}

.ps-enquiry__all {
    margin: 1.5rem 0 0;
    text-align: center;
}

.ps-enquiry__all a {
    font-size: 0.92rem;
    font-weight: 700;
    color: #0f6fa9;
    text-decoration: none;
}

.ps-enquiry__all a:hover {
    color: #16425b;
    text-decoration: underline;
}

@media (max-width: 767.98px) {
    .ps-enquiry__head {
        grid-template-columns: minmax(0, 1fr);
        align-items: start;
        gap: 1.4rem;
    }

    .ps-enquiry__title {
        max-width: none;
    }

    .ps-enquiry__btn,
    .ps-enquiry__call {
        width: 100%;
        justify-content: center;
    }
}
