/* ==========================================================================
   OptiML CX Platform — FAQ and final-CTA sections
   Ported from css/optiml-qms.css (.qms_faq_* / .qms_cta_*) and rescoped to
   .pf_* so the platform module pages do not depend on the QMS stylesheet.
   ========================================================================== */

/* ==========================================================================
   FAQ
   ========================================================================== */

section.pf_faq_section {
    position: relative;
    padding: 70px 0 75px;
    background: #fff;
    overflow: hidden;
}

/* soft tint behind the aside column */
section.pf_faq_section::before {
    content: "";
    position: absolute;
    top: -80px;
    left: -80px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(33, 115, 140, .1) 0%, rgba(33, 115, 140, 0) 70%);
    pointer-events: none;
}

section.pf_faq_section .container {
    position: relative;
    z-index: 1;
}

/* --- Left aside -------------------------------------------------------- */

/* Not sticky: section.pf_faq_section clips its decorative circle with
   overflow:hidden, which makes the section the aside's scroll container, and a
   container that never scrolls can never stick — measured on /products/cx-solutions,
   the aside scrolls straight off the top like any static block. All the sticky
   did was pin the aside to the bottom of the equal-height column, so its
   eyebrow hung 8px (module pages) to 120px (optiml-qms) below accordion row 01. */
.pf_faq_aside {
    padding-right: 24px;
}

.pf_faq_eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    margin-bottom: 16px;
    border-radius: 100px;
    background: rgba(33, 115, 140, .1);
    color: #21738c;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.pf_faq_aside .pf_faq_heading {
    margin-bottom: 14px;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
    color: #102A4B;
}

.pf_faq_lead {
    margin-bottom: 28px;
    font-size: 15.5px;
    line-height: 1.75;
    color: #5e6162;
}

/* helper card */
.pf_faq_help {
    display: flex;
    gap: 14px;
    padding: 20px;
    border: 1px solid #e3e9f2;
    border-left: 3px solid #f0812d;
    border-radius: 14px;
    background: #f8fafd;
}

.pf_faq_help_icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(240, 129, 45, .12);
    color: #f0812d;
    font-size: 16px;
}

.pf_faq_help strong {
    display: block;
    margin-bottom: 4px;
    font-size: 15px;
    color: #102A4B;
}

.pf_faq_help p {
    margin: 0 0 10px;
    font-size: 13.5px;
    line-height: 1.55;
    color: #5e6162;
}

.pf_faq_help a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #21738c;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
}

.pf_faq_help a i {
    font-size: 11px;
    transition: transform .25s ease;
}

.pf_faq_help a:hover {
    color: #f0812d;
    text-decoration: none;
}

.pf_faq_help a:hover i {
    transform: translateX(4px);
}

/* --- Accordion --------------------------------------------------------- */

.pf_faq_accordion {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pf_faq_item {
    position: relative;
    border: 1px solid #e3e9f2;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 3px 14px rgba(16, 42, 75, .05);
    overflow: hidden;
    transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
}

.pf_faq_item:hover {
    border-color: #cfdcec;
    box-shadow: 0 8px 24px rgba(16, 42, 75, .09);
}

/* --- Question ---------------------------------------------------------- */

/* The question is a real <button> inside an <h3>: the heading keeps its
   semantics for screen readers and the control keeps native button
   behaviour, which role="button" on the heading itself would have lost. */
.pf_faq_q_wrap {
    margin: 0;
    padding: 0;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

.pf_faq_accordion .pf_faq_q {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
    margin: 0;
    padding: 22px 24px;
    border: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
    user-select: none;
    transition: background .25s ease;
}

/* left accent bar that grows in when the item is open */
.pf_faq_accordion .pf_faq_q::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #21738c, #f0812d);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .3s ease;
}

.pf_faq_accordion .pf_faq_q:hover {
    background: #f8fafd;
}

.pf_faq_accordion .pf_faq_q:focus-visible {
    outline: 2px solid #21738c;
    outline-offset: -2px;
}

.pf_faq_index {
    flex: 0 0 auto;
    min-width: 30px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.7;
    color: #66748c;
    letter-spacing: .5px;
    transition: color .25s ease;
}

.pf_faq_qtext {
    flex: 1 1 auto;
    font-size: 16.5px;
    font-weight: 600;
    line-height: 1.55;
    color: #102A4B;
    transition: color .25s ease;
}

/* animated plus / minus toggle */
.pf_faq_toggle {
    position: relative;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    margin-top: 1px;
    border-radius: 50%;
    background: #eef3f9;
    transition: background .3s ease, transform .3s ease;
}

.pf_faq_toggle::before,
.pf_faq_toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    border-radius: 2px;
    background: #21738c;
    transform: translate(-50%, -50%);
    transition: transform .3s ease, background .3s ease;
}

.pf_faq_toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

/* --- Open state -------------------------------------------------------- */

.pf_faq_q:not(.collapsed) {
    background: #f8fafd;
}

.pf_faq_q:not(.collapsed)::before {
    transform: scaleY(1);
}

.pf_faq_q:not(.collapsed) .pf_faq_index {
    color: #f0812d;
}

.pf_faq_q:not(.collapsed) .pf_faq_qtext {
    color: #21738c;
}

.pf_faq_q:not(.collapsed) .pf_faq_toggle {
    background: #21738c;
    transform: rotate(180deg);
}

.pf_faq_q:not(.collapsed) .pf_faq_toggle::before,
.pf_faq_q:not(.collapsed) .pf_faq_toggle::after {
    background: #fff;
}

/* collapse the vertical bar to leave a minus sign */
.pf_faq_q:not(.collapsed) .pf_faq_toggle::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

/* --- Answer ------------------------------------------------------------ */

.pf_faq_a {
    padding: 0 24px 24px 70px;
}

.pf_faq_a p {
    margin: 0;
    padding-top: 16px;
    border-top: 1px dashed #e3e9f2;
    font-size: 15px;
    line-height: 1.8;
    color: #5e6162;
}

/* --- FAQ responsive ---------------------------------------------------- */

@media (max-width: 991px) {
    .pf_faq_aside {
        padding-right: 0;
        margin-bottom: 36px;
    }
    .pf_faq_aside .pf_faq_heading { font-size: 32px; }
    .pf_faq_aside .pf_faq_heading br { display: none; }
}

@media (max-width: 767px) {
    section.pf_faq_section { padding: 45px 0 50px; }
    .pf_faq_aside .pf_faq_heading { font-size: 26px; }
    .pf_faq_lead { font-size: 15px; }

    .pf_faq_accordion .pf_faq_q {
        gap: 12px;
        padding: 18px 16px;
    }
    .pf_faq_index {
        min-width: 24px;
        font-size: 12px;
    }
    .pf_faq_qtext { font-size: 15.5px; }
    .pf_faq_toggle {
        flex: 0 0 26px;
        width: 26px;
        height: 26px;
    }
    .pf_faq_a { padding: 0 16px 20px 52px; }
    .pf_faq_a p { font-size: 14.5px; }
}

@media (max-width: 479px) {
    .pf_faq_a { padding: 0 16px 20px 16px; }
}

/* ==========================================================================
   Final CTA — "Book your slot"
   ========================================================================== */

section.pf_cta_section {
    position: relative;
    padding: 70px 0 80px;
    background: #f4f7fb;
    overflow: hidden;
}

/* soft decorative blobs */
.pf_cta_blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.pf_cta_blob_1 {
    top: -120px;
    left: -100px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(33, 115, 140, .18) 0%, rgba(33, 115, 140, 0) 70%);
}

.pf_cta_blob_2 {
    bottom: -140px;
    right: -110px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(240, 129, 45, .16) 0%, rgba(240, 129, 45, 0) 70%);
}

section.pf_cta_section .container {
    position: relative;
    z-index: 1;
}

/* --- Panel ------------------------------------------------------------- */

.pf_cta_panel {
    position: relative;
    padding: 52px 48px;
    border-radius: 24px;
    background: linear-gradient(120deg, #102A4B 0%, #16506b 55%, #21738c 100%);
    box-shadow: 0 24px 60px rgba(16, 42, 75, .3);
    overflow: hidden;
}

/* faint diagonal sheen across the panel */
.pf_cta_panel::before {
    content: "";
    position: absolute;
    top: -60%;
    right: -10%;
    width: 60%;
    height: 220%;
    background: linear-gradient(100deg, rgba(255, 255, 255, .07) 0%, rgba(255, 255, 255, 0) 60%);
    transform: rotate(12deg);
    pointer-events: none;
}

/* --- Copy side --------------------------------------------------------- */

.pf_cta_copy {
    position: relative;
    z-index: 1;
    padding-right: 20px;
}

.pf_cta_eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 100px;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .6px;
}

.pf_cta_eyebrow i {
    color: #f0812d;
    font-size: 12px;
}

.pf_cta_panel .pf_cta_title {
    margin-bottom: 14px;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
}

.pf_cta_text {
    max-width: 560px;
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, .84);
}

.pf_cta_list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.pf_cta_list li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin-bottom: 11px;
    font-size: 15px;
    line-height: 1.5;
    color: #fff;
}

.pf_cta_list li:last-child {
    margin-bottom: 0;
}

.pf_cta_list li i {
    flex: 0 0 auto;
    margin-top: 3px;
    color: #31bae6;
    font-size: 14px;
}

/* --- Form card --------------------------------------------------------- */

.pf_cta_card {
    position: relative;
    z-index: 1;
    padding: 32px 30px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(0, 0, 0, .22);
}

.pf_cta_card .pf_cta_card_title {
    margin-bottom: 6px;
    font-size: 23px;
    font-weight: 700;
    color: #102A4B;
}

.pf_cta_card_sub {
    margin-bottom: 22px;
    font-size: 14px;
    line-height: 1.6;
    color: #5e6162;
}

.pf_cta_form .form-control {
    height: 48px;
    margin-bottom: 12px;
    border: 1px solid #dde5ef;
    border-radius: 10px;
    background: #f8fafd;
    font-size: 14.5px;
}

.pf_cta_form .form-control:focus {
    border-color: #21738c;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(33, 115, 140, .18);
}

.pf_cta_form .errorMessage2 {
    display: block;
    margin-bottom: 10px;
    font-size: 13px;
    color: #c0392b;
}

.pf_cta_form .errorMessage2:empty {
    display: none;
}

.pf_cta_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 52px;
    border: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, #f0812d 0%, #e4252e 100%);
    box-shadow: 0 8px 20px rgba(240, 129, 45, .34);
    color: #fff;
    font-size: 15.5px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease;
}

.pf_cta_btn:hover,
.pf_cta_btn:focus {
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(240, 129, 45, .46);
}

.pf_cta_btn i {
    font-size: 13px;
    transition: transform .25s ease;
}

.pf_cta_btn:hover i {
    transform: translateX(4px);
}

/* --- Divider ----------------------------------------------------------- */

.pf_cta_or {
    position: relative;
    margin: 24px 0 18px;
    text-align: center;
}

.pf_cta_or::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e6ecf4;
}

.pf_cta_or span {
    position: relative;
    padding: 0 12px;
    background: #fff;
    font-size: 12.5px;
    color: #66748c;
}

/* --- Direct links ------------------------------------------------------ */

.pf_cta_direct {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pf_cta_direct a {
    flex: 1 1 140px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 14px;
    border: 1px solid #dde5ef;
    border-radius: 10px;
    background: #f8fafd;
    color: #102A4B;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    transition: border-color .25s ease, background .25s ease, color .25s ease;
}

.pf_cta_direct a i {
    color: #21738c;
    font-size: 13px;
    transition: color .25s ease;
}

.pf_cta_direct a:hover {
    background: #eef4fb;
    border-color: #21738c;
    color: #102A4B;
    text-decoration: none;
}

.pf_cta_direct a:hover i {
    color: #f0812d;
}

.pf_cta_privacy {
    margin: 18px 0 0;
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12.5px;
    color: #66748c;
}

.pf_cta_privacy i {
    font-size: 11px;
    color: #16a64a;
}

/* --- CTA responsive ---------------------------------------------------- */

@media (max-width: 1199px) {
    .pf_cta_panel { padding: 44px 36px; }
    .pf_cta_panel .pf_cta_title { font-size: 34px; }
}

@media (max-width: 991px) {
    .pf_cta_copy {
        padding-right: 0;
        margin-bottom: 34px;
    }
    .pf_cta_panel .pf_cta_title { font-size: 32px; }
    .pf_cta_text { max-width: 100%; }
}

@media (max-width: 767px) {
    section.pf_cta_section { padding: 45px 0 55px; }
    .pf_cta_panel {
        padding: 32px 22px;
        border-radius: 18px;
    }
    .pf_cta_panel .pf_cta_title { font-size: 26px; }
    .pf_cta_card { padding: 26px 20px; }
}

@media (prefers-reduced-motion: reduce) {
    .pf_faq_item,
    .pf_faq_accordion .pf_faq_q::before,
    .pf_faq_toggle,
    .pf_faq_toggle::before,
    .pf_faq_toggle::after,
    .pf_cta_btn,
    .pf_cta_btn i,
    .pf_cta_direct a { transition: none; }

    /* AOS animates 31-37 elements per module page and ships no reduced-motion
       guard of its own, so the scroll reveal ran regardless of the setting.
       Show the content immediately instead. */
    #main-content [data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
    }

    .voice-ai-arrow-link i,
    .voice-ai-tab > summary::after { transition: none; }
}

/* --- Section sub-heading -----------------------------------------------
 * These lines are descriptive sentences under the section h2, not headings,
 * so the template emits them as <p>. Keep the heading line-height (1.2) the
 * markup used to inherit so the layout is unchanged.
 * --------------------------------------------------------------------- */
.pf_section_sub {
    line-height: 1.2;
}

/* Spec table: the 40% label column used to be an inline style on every <th>. */
.pf_spec_label {
    width: 40%;
}

/* ==========================================================================
   RELATED MODULES — link cards
   ========================================================================== */

.pf_rel_eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    margin-bottom: 14px;
    border-radius: 100px;
    background: rgba(33, 115, 140, .1);
    color: #21738c;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

/* the whole card is the link, so the arrow is not the only hit target */
.pf_rel_card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 26px 24px 22px;
    overflow: hidden;
    border: 1px solid #e6ecf4;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 2px 14px rgba(16, 42, 75, .04);
    text-decoration: none;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.pf_rel_card:hover,
.pf_rel_card:focus-visible {
    transform: translateY(-5px);
    border-color: rgba(33, 115, 140, .35);
    box-shadow: 0 16px 36px rgba(16, 42, 75, .11);
    text-decoration: none;
}

/* tinted corner that swells behind the card on hover */
.pf_rel_card::before {
    content: "";
    position: absolute;
    top: -70px;
    right: -70px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(33, 115, 140, .16) 0%, rgba(33, 115, 140, 0) 70%);
    transition: transform .45s ease;
}

.pf_rel_card:hover::before,
.pf_rel_card:focus-visible::before {
    transform: scale(1.7);
}

.pf_rel_index {
    position: absolute;
    top: 16px;
    right: 20px;
    color: rgba(33, 115, 140, .16);
    font-size: 30px;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    line-height: 1;
    transition: color .3s ease;
}

.pf_rel_card:hover .pf_rel_index {
    color: rgba(240, 129, 45, .3);
}

.pf_rel_kicker {
    position: relative;
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 12px;
    padding: 3px 11px;
    border-radius: 999px;
    background: rgba(33, 115, 140, .1);
    color: #21738c;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.pf_rel_title {
    position: relative;
    margin: 0 0 10px;
    color: #102A4B;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    transition: color .3s ease;
}

.pf_rel_card:hover .pf_rel_title {
    color: #21738c;
}

.pf_rel_desc {
    position: relative;
    margin: 0 0 18px;
    color: #4a5568;
    font-size: 15px;
    line-height: 1.65;
}

/* pinned to the foot so the arrows line up across the row */
.pf_rel_cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px dashed #e2e9f2;
    color: #21738c;
    font-size: 14px;
    font-weight: 700;
}

.pf_rel_cta i {
    font-size: 12px;
    transition: transform .3s ease;
}

.pf_rel_card:hover .pf_rel_cta i,
.pf_rel_card:focus-visible .pf_rel_cta i {
    transform: translateX(5px);
}

@media (max-width: 767px) {
    .pf_rel_card {
        padding: 22px 18px 18px;
    }

    .pf_rel_title {
        font-size: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pf_rel_card,
    .pf_rel_card::before,
    .pf_rel_index,
    .pf_rel_title,
    .pf_rel_cta i { transition: none; }

    .pf_rel_card:hover { transform: none; }
    .pf_rel_card:hover::before { transform: none; }
}

/* ==========================================================================
   STATS BAND — figures on a dark panel
   ========================================================================== */

.pf_stats_eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    margin-bottom: 14px;
    border-radius: 100px;
    background: rgba(33, 115, 140, .1);
    color: #21738c;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.pf_stats_panel {
    position: relative;
    max-width: 1080px;
    margin: 0 auto;
    padding: 44px 40px 40px;
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(135deg, #102A4B 0%, #16576b 55%, #21738c 100%);
    box-shadow: 0 18px 44px rgba(16, 42, 75, .22);
}

/* faint grid so the panel is not a flat block of colour */
.pf_stats_panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 46px 46px;
    pointer-events: none;
}

.pf_stats_blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.pf_stats_blob_1 {
    top: -110px;
    right: -70px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(240, 129, 45, .3) 0%, rgba(240, 129, 45, 0) 70%);
}

.pf_stats_blob_2 {
    bottom: -130px;
    left: -80px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(255, 255, 255, .12) 0%, rgba(255, 255, 255, 0) 70%);
}

.pf_stats_list {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 10px 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pf_stat {
    position: relative;
    padding: 6px 26px;
    text-align: center;
}

/* hairline separator between the figures */
.pf_stat + .pf_stat::before {
    content: "";
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 0;
    width: 1px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, .28), rgba(255, 255, 255, 0));
}

.pf_stat_fig {
    display: block;
    margin-bottom: 12px;
    color: #fff;
    font-size: 38px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1.5px;
    font-variant-numeric: tabular-nums;
    background: linear-gradient(180deg, #fff 30%, #ffd9b8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pf_stat_rule {
    display: block;
    width: 40px;
    height: 3px;
    margin: 0 auto 14px;
    border-radius: 3px;
    background: linear-gradient(90deg, #f0812d, rgba(240, 129, 45, .25));
    transition: width .3s ease;
}

.pf_stat:hover .pf_stat_rule {
    width: 68px;
}

.pf_stat_cap {
    margin: 0;
    color: rgba(255, 255, 255, .84);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.55;
}

@media (max-width: 991px) {
    .pf_stats_panel {
        padding: 34px 24px 30px;
    }

    /* stack them, so the separator can become a single horizontal rule */
    .pf_stats_list {
        grid-template-columns: minmax(0, 1fr);
        gap: 0;
    }

    .pf_stat {
        padding: 14px 16px;
    }

    /* the vertical rule stops making sense once the figures wrap */
    .pf_stat + .pf_stat::before {
        top: 0;
        bottom: auto;
        left: 16px;
        right: 16px;
        width: auto;
        height: 1px;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, .22), rgba(255, 255, 255, 0));
    }

    .pf_stat_fig {
        font-size: 46px;
    }
}

@media (max-width: 767px) {
    .pf_stats_panel {
        border-radius: 16px;
    }

    .pf_stat_fig {
        font-size: 40px;
    }

    .pf_stat_cap {
        font-size: 14.5px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pf_stat_rule { transition: none; }
}

/* ==========================================================================
   SPECIFICATION — two-column table
   ========================================================================== */

section.pf_spec_section {
    position: relative;
    overflow: hidden;
}

.pf_spec_eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    margin-bottom: 14px;
    border-radius: 100px;
    background: rgba(33, 115, 140, .1);
    color: #21738c;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

/* the rounded frame the table sits in, and the scroll container on narrow screens */
.pf_spec_tablewrap {
    max-width: 1040px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid #e6ecf4;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(16, 42, 75, .05);
}

.pf_spec_table {
    width: 100%;
    margin: 0;
    border-collapse: collapse;
}

/* --- Header ------------------------------------------------------------- */

.pf_spec_table thead th {
    padding: 15px 22px;
    background: linear-gradient(135deg, #21738c, #16576b);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    text-align: left;
    border: 0;
}

.pf_spec_table thead th:first-child {
    width: 34%;
}

/* --- Body --------------------------------------------------------------- */

.pf_spec_table tbody tr {
    border-top: 1px solid #eef2f7;
    transition: background .25s ease;
}

.pf_spec_table tbody tr:nth-child(even) {
    background: #fafcfe;
}

.pf_spec_table tbody tr:hover {
    background: rgba(33, 115, 140, .06);
}

.pf_spec_table th,
.pf_spec_table td {
    padding: 15px 22px;
    vertical-align: top;
    border: 0;
}

/* label cell, with an accent spine that lights up on row hover */
.pf_spec_table .pf_spec_key {
    position: relative;
    color: #102A4B;
    font-size: 14.5px;
    font-weight: 700;
    text-align: left;
}

.pf_spec_table .pf_spec_key::before {
    content: "";
    position: absolute;
    top: 15px;
    bottom: 15px;
    left: 0;
    width: 3px;
    border-radius: 3px;
    background: transparent;
    transition: background .25s ease;
}

.pf_spec_table tbody tr:hover .pf_spec_key::before {
    background: linear-gradient(180deg, #21738c, #f0812d);
}

.pf_spec_table .pf_spec_val {
    color: #4a5568;
    font-size: 15px;
    line-height: 1.6;
}

/* --- Chipped list values ------------------------------------------------ */

.pf_spec_chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.pf_spec_chip {
    display: inline-block;
    padding: 4px 11px;
    border: 1px solid #dde5ef;
    border-radius: 999px;
    background: #f6f9fc;
    color: #102A4B;
    font-size: 13px;
    font-weight: 600;
    transition: border-color .25s ease, background .25s ease;
}

.pf_spec_table tbody tr:hover .pf_spec_chip {
    border-color: rgba(33, 115, 140, .3);
    background: #fff;
}

@media (max-width: 767px) {
    .pf_spec_tablewrap {
        border-radius: 14px;
    }

    .pf_spec_table thead {
        display: none;
    }

    /* one stacked block per row, so nothing scrolls sideways */
    .pf_spec_table tbody tr,
    .pf_spec_table th,
    .pf_spec_table td {
        display: block;
        width: auto;
    }

    .pf_spec_table th,
    .pf_spec_table td {
        padding: 0 16px;
    }

    .pf_spec_table tbody tr {
        padding: 14px 0;
    }

    .pf_spec_table .pf_spec_key {
        margin-bottom: 6px;
        font-size: 11.5px;
        font-weight: 800;
        letter-spacing: 1.1px;
        text-transform: uppercase;
        color: #66748c;
    }

    .pf_spec_table .pf_spec_key::before {
        top: 0;
        bottom: 0;
        background: rgba(33, 115, 140, .3);
    }
}

@media (prefers-reduced-motion: reduce) {
    .pf_spec_table tbody tr,
    .pf_spec_table .pf_spec_key::before,
    .pf_spec_chip { transition: none; }
}

/* ==========================================================================
   HOW IT WORKS — stepped timeline
   ========================================================================== */

section.pf_hiw_section {
    position: relative;
    overflow: hidden;
}

section.pf_hiw_section::before {
    content: "";
    position: absolute;
    top: -140px;
    right: -120px;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(33, 115, 140, .12) 0%, rgba(33, 115, 140, 0) 70%);
    pointer-events: none;
}

section.pf_hiw_section .container {
    position: relative;
    z-index: 1;
}

.pf_hiw_eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    margin-bottom: 14px;
    border-radius: 100px;
    background: rgba(33, 115, 140, .1);
    color: #21738c;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.pf_hiw_flow {
    position: relative;
    max-width: 1040px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    counter-reset: pf-hiw;
}

/* the spine the steps hang off */
.pf_hiw_flow::before {
    content: "";
    position: absolute;
    top: 14px;
    bottom: 14px;
    left: 23px;
    width: 2px;
    background: linear-gradient(180deg,
        rgba(33, 115, 140, 0) 0%,
        rgba(33, 115, 140, .35) 10%,
        rgba(33, 115, 140, .35) 90%,
        rgba(33, 115, 140, 0) 100%);
}

.pf_hiw_step {
    position: relative;
    padding: 0 0 22px 66px;
}

.pf_hiw_step:last-child {
    padding-bottom: 0;
}

.pf_hiw_node {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 2px solid rgba(33, 115, 140, .35);
    border-radius: 50%;
    background: #fff;
    color: #21738c;
    font-size: 15px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    transition: background .3s ease, border-color .3s ease, color .3s ease;
}

.pf_hiw_card {
    position: relative;
    padding: 22px 24px 20px;
    border: 1px solid #e6ecf4;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 2px 14px rgba(16, 42, 75, .04);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

/* accent bar that fills in on hover */
/* .pf_hiw_card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 24px;
    width: 44px;
    height: 3px;
    border-radius: 0 0 3px 3px;
    background: linear-gradient(90deg, #21738c, #f0812d);
    transition: width .3s ease;
} */

.pf_hiw_step:hover .pf_hiw_card,
.pf_hiw_step:focus-within .pf_hiw_card {
    transform: translateY(-3px);
    border-color: rgba(33, 115, 140, .35);
    box-shadow: 0 12px 30px rgba(16, 42, 75, .09);
}

.pf_hiw_step:hover .pf_hiw_card::before,
.pf_hiw_step:focus-within .pf_hiw_card::before {
    width: 96px;
}

.pf_hiw_step:hover .pf_hiw_node,
.pf_hiw_step:focus-within .pf_hiw_node {
    background: #21738c;
    border-color: #21738c;
    color: #fff;
}

.pf_hiw_card_head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.pf_hiw_icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(33, 115, 140, .14), rgba(240, 129, 45, .14));
    color: #21738c;
    font-size: 19px;
    transition: background .3s ease, color .3s ease;
}

.pf_hiw_step:hover .pf_hiw_icon,
.pf_hiw_step:focus-within .pf_hiw_icon {
    background: linear-gradient(135deg, #21738c, #16576b);
    color: #fff;
}

.pf_hiw_title {
    margin: 0;
    color: #102A4B;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.3;
}

.pf_hiw_body {
    margin: 0;
    color: #4a5568;
    font-size: 15px;
    line-height: 1.65;
}

/* --- Desktop: alternate the cards either side of the spine ------------- */

@media (min-width: 992px) {
    .pf_hiw_flow::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .pf_hiw_step {
        width: 50%;
        padding: 0 52px 34px 0;
    }

    .pf_hiw_step:nth-child(even) {
        margin-left: 50%;
        padding: 0 0 34px 52px;
    }

    .pf_hiw_node {
        left: auto;
        right: -24px;
    }

    .pf_hiw_step:nth-child(even) .pf_hiw_node {
        right: auto;
        left: -24px;
    }
}

@media (max-width: 767px) {
    .pf_hiw_step {
        padding-left: 58px;
    }

    .pf_hiw_flow::before {
        left: 20px;
    }

    .pf_hiw_node {
        width: 42px;
        height: 42px;
        font-size: 14px;
    }

    .pf_hiw_card {
        padding: 20px 18px 18px;
    }

    .pf_hiw_card::before {
        left: 18px;
    }

    .pf_hiw_title {
        font-size: 17px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pf_hiw_card,
    .pf_hiw_card::before,
    .pf_hiw_node,
    .pf_hiw_icon { transition: none; }

    .pf_hiw_step:hover .pf_hiw_card { transform: none; }
}

/* ==========================================================================
   USE CASES — story cards
   ========================================================================== */

.pf_uc_card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 26px 24px 24px;
    overflow: hidden;
    border: 1px solid #e6ecf4;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 2px 14px rgba(16, 42, 75, .04);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

/* gradient rule along the top edge, revealed on hover */
.pf_uc_card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 72px;
    height: 4px;
    background: linear-gradient(90deg, #21738c, #f0812d);
    transition: width .35s ease;
}

.pf_uc_card:hover,
.pf_uc_card:focus-within {
    transform: translateY(-4px);
    border-color: rgba(33, 115, 140, .35);
    box-shadow: 0 14px 34px rgba(16, 42, 75, .1);
}

.pf_uc_card:hover::before,
.pf_uc_card:focus-within::before {
    width: 100%;
}

/* oversized watermark number */
.pf_uc_index {
    position: absolute;
    top: 6px;
    right: 14px;
    color: rgba(33, 115, 140, .1);
    font-size: 54px;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    line-height: 1;
    pointer-events: none;
    transition: color .3s ease;
}

.pf_uc_card:hover .pf_uc_index,
.pf_uc_card:focus-within .pf_uc_index {
    color: rgba(240, 129, 45, .18);
}

.pf_uc_head {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 14px;
}

.pf_uc_icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(33, 115, 140, .14), rgba(240, 129, 45, .14));
    color: #21738c;
    font-size: 19px;
    transition: background .3s ease, color .3s ease;
}

.pf_uc_card:hover .pf_uc_icon,
.pf_uc_card:focus-within .pf_uc_icon {
    background: linear-gradient(135deg, #21738c, #16576b);
    color: #fff;
}

.pf_uc_head_text {
    min-width: 0;
}

.pf_uc_feature {
    display: inline-block;
    margin-bottom: 6px;
    padding: 3px 11px;
    border-radius: 999px;
    background: rgba(33, 115, 140, .1);
    color: #21738c;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .4px;
    text-transform: uppercase;
}

.pf_uc_title {
    margin: 0;
    color: #102A4B;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
}

.pf_uc_client {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 0 0 14px;
    padding-bottom: 14px;
    border-bottom: 1px dashed #e2e9f2;
    color: #66748c;
    font-size: 13.5px;
    font-weight: 600;
}

.pf_uc_client i {
    color: #21738c;
    font-size: 12px;
}

.pf_uc_text {
    margin: 0 0 14px;
    color: #4a5568;
    font-size: 15px;
    line-height: 1.65;
}

/* --- Scenario / Outcome blocks ----------------------------------------- */

.pf_uc_block {
    position: relative;
    padding: 14px 16px;
    border-radius: 12px;
    border-left: 3px solid transparent;
}

.pf_uc_block p {
    margin: 0;
    color: #4a5568;
    font-size: 14.5px;
    line-height: 1.6;
}

.pf_uc_label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 6px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.pf_uc_block_scenario {
    margin-bottom: 12px;
    background: #f6f9fc;
    border-left-color: #21738c;
}

.pf_uc_block_scenario .pf_uc_label {
    color: #21738c;
}

/* the payoff sits at the card foot so the grid lines up across a row */
.pf_uc_block_outcome {
    margin-top: auto;
    background: rgba(240, 129, 45, .07);
    border-left-color: #f0812d;
}

.pf_uc_block_outcome .pf_uc_label {
    color: #c25e12;
}

.pf_uc_block_outcome p {
    color: #3f4a5c;
    font-weight: 500;
}

@media (max-width: 767px) {
    .pf_uc_card {
        padding: 22px 18px 20px;
    }

    .pf_uc_index {
        font-size: 44px;
    }

    .pf_uc_title {
        font-size: 17px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pf_uc_card,
    .pf_uc_card::before,
    .pf_uc_index,
    .pf_uc_icon { transition: none; }

    .pf_uc_card:hover { transform: none; }
}

/* ==========================================================================
   "Where this module is used" band
   The reverse of the "platform underneath" band on the Solutions pages. Both
   lists come from _solutions_links.php, generated by _solutions_build.py.
   ========================================================================== */

section.pf_solutions_band {
    position: relative;
    overflow: hidden;
}

/* Soft tint behind the grid so the band reads as its own map of the platform
   rather than a third slab of the same flat gray as the two bands above it. */
.pf_sol_blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.pf_sol_blob_1 {
    top: -140px;
    left: -120px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(33, 115, 140, .14) 0%, rgba(33, 115, 140, 0) 70%);
}

.pf_sol_blob_2 {
    right: -140px;
    bottom: -160px;
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, rgba(240, 129, 45, .12) 0%, rgba(240, 129, 45, 0) 70%);
}

.pf_solutions_band .container {
    position: relative;
    z-index: 1;
}

.pf_sol_eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    margin-bottom: 14px;
    border-radius: 100px;
    background: rgba(33, 115, 140, .1);
    color: #21738c;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

/* Counts the reader would otherwise have to add up from the three cards. */
.pf_sol_total {
    display: inline-block;
    margin-top: 14px;
    padding: 5px 16px;
    border-radius: 100px;
    border: 1px dashed rgba(33, 115, 140, .35);
    color: #21738c;
    font-size: 13.5px;
}

.pf_sol_total strong {
    font-weight: 800;
    font-variant-numeric: tabular-nums;
}

.pf_sol_card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 24px 22px 20px;
    overflow: hidden;
    border: 1px solid #e6ecf4;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 2px 14px rgba(16, 42, 75, .04);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

/* A coloured rail per group is what lets a reader tell the three columns
   apart at a glance once they have scrolled past the headings. */
.pf_sol_card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #21738c 0%, rgba(33, 115, 140, .25) 100%);
}

.pf_sol_card_role::before {
    background: linear-gradient(90deg, #102A4B 0%, rgba(16, 42, 75, .25) 100%);
}

.pf_sol_card_use-case::before {
    background: linear-gradient(90deg, #f0812d 0%, rgba(240, 129, 45, .25) 100%);
}

.pf_sol_card:hover {
    transform: translateY(-5px);
    border-color: rgba(33, 115, 140, .35);
    box-shadow: 0 16px 36px rgba(16, 42, 75, .11);
}

.pf_sol_card_head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px dashed #e2e9f2;
}

/* Solid tiles rather than tinted ones: at 42px a 10%-opacity wash reads as a
   smudge, and the icon is the only thing distinguishing the three headers. */
.pf_sol_icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, #21738c 0%, #175567 100%);
    box-shadow: 0 6px 14px rgba(33, 115, 140, .28);
    color: #fff;
    font-size: 18px;
    transition: transform .3s ease;
}

.pf_sol_card:hover .pf_sol_icon {
    transform: scale(1.06) rotate(-4deg);
}

.pf_sol_card_role .pf_sol_icon {
    background: linear-gradient(135deg, #102A4B 0%, #061a33 100%);
    box-shadow: 0 6px 14px rgba(16, 42, 75, .28);
}

.pf_sol_card_use-case .pf_sol_icon {
    background: linear-gradient(135deg, #f0812d 0%, #d96f1c 100%);
    box-shadow: 0 6px 14px rgba(240, 129, 45, .3);
}

.pf_sol_head_text {
    flex: 1 1 auto;
    min-width: 0;
}

/* style.css sizes headings inside .QMS-inner-page cards, so the specificity
   here has to match those ancestors or the label keeps the 21-23px treatment. */
.single_service_frame.QMS-inner-page .pf_sol_card .pf_sol_title,
.pf_solutions_band .pf_sol_card .pf_sol_title {
    margin: 0;
    padding: 0;
    font-size: 17px;
    font-weight: 700;
    line-height: 24px;
    color: #102A4B;
    letter-spacing: .3px;
}

.pf_sol_hint {
    margin: 2px 0 0;
    color: #6b7a90;
    font-size: 12.5px;
    line-height: 1.35;
}

.pf_sol_count {
    flex: 0 0 auto;
    min-width: 28px;
    padding: 3px 9px;
    border-radius: 999px;
    background: rgba(33, 115, 140, .1);
    color: #21738c;
    font-size: 12.5px;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    text-align: center;
}

.pf_sol_card_role .pf_sol_count {
    background: rgba(16, 42, 75, .1);
    color: #102A4B;
}

.pf_sol_card_use-case .pf_sol_count {
    background: rgba(240, 129, 45, .14);
    color: #d96f1c;
}

.pf_solutions_band ul.pf_solutions_list,
.single_service_frame.QMS-inner-page .pf_sol_card ul.pf_solutions_list {
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.pf_solutions_band ul.pf_solutions_list li,
.single_service_frame.QMS-inner-page .pf_sol_card ul.pf_solutions_list li {
    padding: 0;
    padding-left: 0;
    margin-bottom: 6px;
    line-height: 22px;
    font-size: 15px;
}

/* The bullet in style.css is `content: "\f621" !important`, so clearing it
   needs !important too. Without this the FontAwesome chevron is absolutely
   positioned at left:0 and paints on top of the first characters of every
   link in the band, on all 14 module pages. */
.single_service_frame.QMS-inner-page .pf_sol_card ul.pf_solutions_list li::before,
.pf_solutions_band ul.pf_solutions_list li::before {
    content: none !important;
    display: none !important;
}

/* Full-width rows, not inline text: the arrow then sits on a common right
   edge down the card and the whole row is the hit target. */
.pf_solutions_band ul.pf_solutions_list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 10px;
    background: #f5f8fb;
    color: #0a1425;
    font-size: 15px;
    line-height: 1.4;
    text-decoration: none;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.pf_solutions_band ul.pf_solutions_list li a i {
    flex: 0 0 auto;
    font-size: 11px;
    color: #21738c;
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity .2s ease, transform .2s ease;
}

.pf_solutions_band ul.pf_solutions_list li a:hover,
.pf_solutions_band ul.pf_solutions_list li a:focus-visible {
    background: rgba(33, 115, 140, .1);
    color: #21738c;
    text-decoration: none;
    transform: translateX(3px);
}

.pf_sol_card_role ul.pf_solutions_list li a:hover,
.pf_sol_card_role ul.pf_solutions_list li a:focus-visible {
    background: rgba(16, 42, 75, .09);
    color: #102A4B;
}

.pf_sol_card_use-case ul.pf_solutions_list li a:hover,
.pf_sol_card_use-case ul.pf_solutions_list li a:focus-visible {
    background: rgba(240, 129, 45, .13);
    color: #b85c12;
}

.pf_sol_card_role ul.pf_solutions_list li a i { color: #102A4B; }
.pf_sol_card_use-case ul.pf_solutions_list li a i { color: #d96f1c; }

.pf_solutions_band ul.pf_solutions_list li a:hover i,
.pf_solutions_band ul.pf_solutions_list li a:focus-visible i {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 767px) {
    .pf_sol_card {
        padding: 20px 16px 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pf_sol_card,
    .pf_sol_icon,
    .pf_solutions_band ul.pf_solutions_list li a,
    .pf_solutions_band ul.pf_solutions_list li a i { transition: none; }

    .pf_sol_card:hover { transform: none; }
    .pf_sol_card:hover .pf_sol_icon { transform: none; }
    .pf_solutions_band ul.pf_solutions_list li a:hover { transform: none; }
}
