#cutsoftwaredevelopt .carousel-indicators.clddpls, .pbi-cta-nav {
    z-index: 10;
    position: absolute
}

.pbi-cta-badge, .pbi-v2-badge {
    animation: 3s ease-in-out infinite badgeFloat
}

*, ::after, ::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

i {
    font-style: unset
}

:root {
    --spt-bg-page: #080808;
    --spt-bg-card: #111111;
    --spt-bg-card-inner: #181818;
    --spt-bg-accord: #0e0e0e;
    --spt-bg-accord-open: #131313;
    --spt-border: rgba(255, 255, 255, 0.08);
    --spt-border-accent: rgba(12, 97, 119, 0.7);
    --spt-accent: #0c6177;
    --spt-accent-light: #0e7a94;
    --spt-accent-soft: rgba(12, 97, 119, 0.15);
    --spt-accent2: #ffffff;
    --spt-accent2-soft: rgba(255, 255, 255, 0.06);
    --spt-text-head: #ffffff;
    --spt-text-body: #edf8fb;
    --spt-text-muted: #b9aeae;
    --spt-tag-bg: rgba(12, 97, 119, 0.14);
    --spt-tag-text: #4ab5d0;
    --spt-radius-card: 18px;
    --spt-radius-inner: 12px;
    --spt-radius-tag: 6px;
    --spt-shadow-card: 0 8px 40px rgba(0, 0, 0, 0.7);
    --spt-transition: 0.32s cubic-bezier(.4, 0, .2, 1)
}

.spt-wrapper-body {
    background: var(--spt-bg-page);
    color: var(--spt-text-body);
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 48px 20px 64px
}

.bi-wrapper-body {
    min-height: 75vh !important;
}

.spt-wrapper {
    width: 100%;
    max-width: 1200px
}

.spt-main-title {
    color: #fff;
    text-align: center;
    font-size: 35px;
    font-weight: 700
}

.min-vh-25 {
    min-height: 25vh
}

@keyframes spt-pulse {
    0%,100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .45;
        transform: scale(.75)
    }
}

.spt-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start
}

.spt-left-card {
    background: var(--spt-bg-card);
    border: 1px solid var(--spt-border);
    border-radius: var(--spt-radius-card);
    box-shadow: var(--spt-shadow-card);
    overflow: hidden;
    position: relative
}

.spt-left-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgb(12 97 119 / .07) 0, transparent 60%);
    pointer-events: none
}

.spt-card-stripe {
    height: 3px;
    background: linear-gradient(90deg, var(--spt-accent) 0, #0e9ab8 55%, transparent 100%)
}

.spt-card-body {
    padding: 28px 28px 32px
}

.spt-shield-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px
}

.spt-shield-icon-wrap svg {
    width: 24px;
    height: 24px;
    color: var(--spt-accent)
}

.spt-card-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--spt-text-head);
    line-height: 1.3;
    margin-bottom: 6px
}

.spt-card-subtitle {
    font-size: 16px;
    font-weight: 500;
    color: #18c6f3;
    letter-spacing: .04em;
    margin-bottom: 18px
}

.spt-divider {
    height: 1px;
    background: var(--spt-border);
    margin-bottom: 20px
}

.spt-card-desc {
    font-size: 18px;
    line-height: 1.75;
    color: var(--spt-text-body);
    margin-bottom: 24px
}

.spt-highlight-text {
    font-size: 13.5px;
    line-height: 1.65;
    color: var(--spt-text-body)
}

.spt-dev-line {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--spt-border);
    display: flex;
    align-items: center;
    gap: 10px
}

.spt-dev-avatar {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: linear-gradient(135deg, #0a4a5a 0, #0c6177 100%);
    border: 1px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    letter-spacing: .02em
}

.spt-compat-info, .spt-dev-info {
    flex: 1
}

.spt-accord-title, .spt-dev-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--spt-text-head);
    line-height: 1.3
}

.spt-dev-role {
    font-size: 15px;
    color: var(--spt-text-muted);
    margin-top: 1px
}

.spt-right-stack {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.spt-accordion {
    background: var(--spt-bg-accord);
    border: 2px solid var(--spt-border);
    border-radius: var(--spt-radius-card);
    box-shadow: 0 4px 24px rgb(0 0 0 / .3);
    overflow: hidden;
    transition: border-color var(--spt-transition)
}

.spt-accord-header, .spt-accord-icon-wrap {
    transition: background var(--spt-transition);
    display: flex
}

.spt-accordion.spt-accord-open {
    border-color: #0a5163;
    background: var(--spt-bg-accord-open)
}

.spt-accord-header {
    align-items: center;
    gap: 14px;
    padding: 20px 22px;
    cursor: pointer;
    user-select: none;
    background: #0f7a95a1
}

.spt-accord-header:hover {
    background: rgb(255 255 255 / .025)
}

.spt-accord-icon-wrap {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.spt-accord-icon-wrap.spt-icon-blue {
    background: var(--spt-accent-soft);
    border: 1px solid
}

.spt-accord-icon-wrap.spt-icon-green {
    background: rgb(12 97 119 / .15);
    border: 1px solid
}

.spt-accord-icon-wrap svg, .wyr-icon svg {
    width: 18px;
    height: 18px
}

.spt-bul-send svg, .spt-icon-blue svg, .spt-icon-green svg {
    color: #4ab5d0
}

.spt-accord-meta {
    flex: 1;
    min-width: 0
}

.spt-accord-chevron {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgb(255 255 255 / .04);
    border: 1px solid var(--spt-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform var(--spt-transition), background var(--spt-transition)
}

.spt-accord-open .spt-accord-chevron {
    transform: rotate(180deg);
    background: var(--spt-accent-soft);
    border-color: #15bfe3
}

.spt-accord-chevron svg {
    width: 14px;
    height: 14px;
    color: var(--spt-text-muted);
    transition: color var(--spt-transition)
}

.spt-accord-open .spt-accord-chevron svg {
    color: #15bfe3
}

.spt-accord-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .42s cubic-bezier(.4, 0, .2, 1)
}

.spt-cap-item, .spt-compat-row {
    background: rgb(255 255 255 / .025);
    transition: border-color var(--spt-transition), background var(--spt-transition)
}

.spt-accord-open .spt-accord-body {
    max-height: 600px
}

.bi-accord-body {
    max-height: 880px !important
}

.spt-accord-inner {
    padding: 20px 22px 24px;
    border-top: 1px solid var(--spt-border)
}

.spt-cap-list {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.spt-cap-item {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 7px;
    border: 1px solid var(--spt-border);
    border-radius: 10px
}

.spt-cap-item:hover {
    border-color: rgb(12 97 119 / .45);
    background: rgb(12 97 119 / .07)
}

.spt-cap-bullet {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px
}

.spt-cap-bullet.spt-bul-send {
    background: rgb(12 97 119 / .22)
}

.spt-cap-bullet.spt-bul-read {
    background: rgb(255 255 255 / .08)
}

.spt-cap-bullet.spt-bul-modify {
    background: rgb(12 97 119 / .16)
}

.spt-cap-bullet.spt-bul-third {
    background: rgb(255 255 255 / .06)
}

.spt-cap-bullet.spt-bul-no {
    background: rgb(239 68 68 / .13)
}

.spt-cap-bullet svg {
    width: 20px;
    height: 20px
}

.spt-bul-read svg {
    color: #fff
}

.spt-bul-modify svg {
    color: #0e9ab8
}

.spt-bul-third svg {
    color: #aaa
}

.spt-bul-no svg {
    color: #ef4444
}

.spt-cap-text {
    font-size: 17px;
    line-height: 1.6;
    color: var(--spt-text-body)
}

.spt-compat-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px
}

.spt-compat-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 13px 14px;
    border: 1px solid var(--spt-border);
    border-radius: 10px
}

.spt-compat-row:hover {
    border-color: rgb(12 97 119 / .4);
    background: rgb(12 97 119 / .06)
}

.spt-compat-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgb(12 97 119 / .15);
    border: 1px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.pbi-cta-left, .pbi-cta-trust-item:not(:last-child) {
    border-right: 1.5px solid #e8e8e8
}

.spt-compat-icon svg {
    width: 22px;
    height: 25px;
    color: #4ab5d0
}

.spt-compat-label {
    font-size: 17.5px;
    font-weight: 600;
    color: var(--spt-text-head);
    margin-bottom: 2px
}

.spt-compat-detail {
    font-size: 17px;
    color: var(--spt-text-muted);
    line-height: 1.5
}

.customslider-image img {
    object-fit: fill !important
}

@media (max-width:820px) {
    .spt-layout {
        grid-template-columns: 1fr
    }

    .customslider-image img {
        object-fit: fill !important
    }
}

#cutsoftwaredevelopt .carousel-control-next, #cutsoftwaredevelopt .carousel-control-prev {
    width: 24px;
    height: 24px;
    top: auto;
    bottom: -14px;
    transform: none;
    opacity: 1;
    background: 0 0;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5
}

#cutsoftwaredevelopt .carousel-control-prev {
    left: 6px;
    right: auto
}

#cutsoftwaredevelopt .carousel-control-next {
    right: 6px;
    left: auto
}

#cutsoftwaredevelopt .banner-ai-email-carousel-arrow {
    color: #fff;
    font-size: 28px;
    line-height: 1;
    font-weight: 700;
    text-shadow: 0 1px 2px rgb(0 0 0 / .35);
    pointer-events: none
}

#cutsoftwaredevelopt .carousel-control-next-icon, #cutsoftwaredevelopt .carousel-control-prev-icon {
    background-image: none !important
}

.main-pbi-container {
    font-family: Inter, sans-serif;
    background: #f0f2f5;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 16px
}

.blog-pbi-container {
    background: 0 0;
    min-height: 60vh
}

.common-pbi-container {
    background: 0 0;
    min-height: 30vh
}

.explore-offers-title {
    color: #fff;
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 10px
}

.pbicolor {
    background: #0f7a95 !important
}

.slide-5 .pbi-cta-top {
    height: 360px;
    overflow: hidden;
    align-items: center
}

.slide-5 .pbi-cta-right-img-box img {
    width: 330px;
    height: auto;
    display: block
}

.pbi-cta-card {
    width: 100%;
    max-width: 1100px;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 32px rgb(0 0 0 / .1);
    border-top: 6px solid #2a7b9b;
    margin: 0 auto;
    /*height: 445px*/
}

.common-cta-card {
    border: 2px solid #2a7b9b;
    height: 220px
}

.pbi-cta-slider {
    padding-bottom: 70px
}

.pbi-cta-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 24px
}

.pbi-cta-nav-arrows {
    display: flex;
    align-items: center;
    gap: 12px
}

.pbi-cta-arrow-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: #fff0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .25s;
    padding: 0;
    color: #fff
}

.pbi-cta-arrow-btn:hover {
    background: #fff;
    border-color: #fff;
    color: #0f7a95
}

.pbi-cta-arrow-btn svg {
    width: 25px;
    height: 25px
}

.pbi-cta-nav-counter {
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    padding-bottom: 10px
}

.pbi-cta-current-slide {
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    min-width: 20px;
    text-align: right
}

.pbi-cta-counter-sep {
    font-size: 18px;
    font-weight: 400;
    color: rgb(255 255 255 / .5);
    margin: 0 2px
}

.pbi-cta-total-slides {
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    min-width: 20px
}

.pbi-cta-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgb(255 255 255 / .3);
    border-radius: 2px;
    overflow: hidden
}

.pbi-cta-progress-fill {
    height: 100%;
    background: #f5c100;
    border-radius: 2px;
    transition: width .4s
}

.pbi-cta-top {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0;
    align-items: stretch;
    padding: 36px 44px 32px;
    border-bottom: 1.5px solid #e8e8e8;
    background: #f0f8ff
}

.pbi-cta-left {
    padding-right: 44px
}

.common-cta-left {
    padding-right: 5%
}

.ebook-cta-badge-black {
    background: #000 !important;
    color: #fff !important;
    border: 3px solid #277290
}

.ebook-cta-badge-red {
    background: #F44335 !important;
    color: #fff !important
}

.pbi-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #f5c100;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
    padding: 9px 18px;
    border-radius: 999px;
    margin-bottom: 20px
}

.pbi-cta-badge::before, .pbi-v2-badge::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 70%;
    height: 100%;
    background: rgb(255 255 255 / .35);
    transform: skewX(-25deg);
    animation: 3.5s linear infinite shineMove
}

@keyframes shineMove {
    0% {
        left: -120%
    }

    100% {
        left: 130%
    }
}

@keyframes badgeFloat {
    0%, 100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-6px)
    }
}

.pbi-cta-badge-icon {
    font-size: 20px
}

.pbi-cta-headline {
    font-size: 23px;
    font-weight: 700;
    color: #0d1b2a;
    line-height: 1.1;
    letter-spacing: -.025em;
    margin-bottom: 10px;
    font-family: Poppins;
    text-align: left;
}

.blog-pbi-headline {
    border-bottom: none !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.pbi-cta-description {
    font-size: 23px !important;
    font-weight: 700 !important;
    margin: 0 0 10px !important;
    font-family: Poppins;
    text-align: left !important;
}

.pbi-cta-subtext {
    font-size: 18px;
    color: #2e2a2a;
    font-weight: 400;
    margin-bottom: 32px;
    line-height: 1.5
}

.pbi-cta-subtext strong {
    color: #2a7b9b;
    font-weight: 800
}

.pbi-cta-steps {
    display: flex;
    align-items: flex-start;
    gap: 0
}

.pbi-cta-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    position: relative
}

.pbi-cta-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 29px;
    left: calc(50% + 50px);
    width: calc(100% - 100px);
    height: 0;
    border-top: 1.5px dashed #c8d8da;
    opacity: .8
}

.pbi-cta-step-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    position: relative;
    z-index: 1
}

.pbi-cta-step-circle-wrap {
    position: relative;
    width: 58px;
    height: 58px;
    flex-shrink: 0
}

.pbi-cta-step-circle-wrap svg {
    position: absolute;
    inset: 0;
    width: 58px;
    height: 58px
}

.pbi-cta-step-num {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 900;
    color: #fff
}

.pbi-cta-step-icon-box {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.pbi-cta-step-icon-box svg {
    width: 34px;
    height: 34px;
    color: #1a7f8e
}

.pbi-cta-step-name {
    font-size: 18px;
    font-weight: 700;
    color: #0d1b2a;
    margin-bottom: 3px
}

.pbi-cta-step-desc {
    font-size: 14px;
    color: #2e2a2a;
    font-weight: 400
}

.pbi-cta-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding-left: 44px;
    min-width: 300px
}

.pbi-cta-btn-schedule {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: linear-gradient(90deg, #2a7b9b 0, #174757 100%);
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    padding: 18px 32px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    width: 100%;
    min-width: 280px;
    box-shadow: 0 8px 24px rgb(13 42 53 / .3);
    letter-spacing: -.01em
}

.pbi-cta-btn-schedule:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgb(13 42 53 / .5);
    color: #fff
}

.common-cta-btn-schedule {
    padding: 13px 32px;
    width: 60%
}

.ebook-cta-schedule {
    background: linear-gradient(90deg, #F44336 0, #b80c0c 100%)
}

.pbi-cta-btn-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f5c100;
    transition: transform .2s
}

.pbi-cta-btn-arrow svg {
    width: 32px;
    height: 32px
}

.pbi-cta-link-appsource {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #174757;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    position: relative;
    padding-bottom: 10px;
    transition: opacity .2s;
    margin-top: 12px
}

.pbi-cta-link-appsource::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 30px;
    right: 0;
    height: 0;
    border-bottom: 2.5px dashed #f5c100
}

.pbi-cta-link-appsource:hover {
    color: #3e7386
}

.pbi-cta-link-appsource svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: #f5c100
}

.pbi-cta-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 0
}

.pbi-cta-trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 22px 20px;
    font-size: 15px;
    font-weight: 600;
    color: #0d1b2a
}

.pbi-cta-trust-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0
}

@media(max-width:860px) {
    .pbi-cta-top {
        grid-template-columns: 1fr;
        padding: 32px 28px 28px;
        gap: 20px
    }

    .pbi-cta-left {
        padding-right: 0;
        border-right: none;
        border-bottom: 1.5px solid #e8e8e8;
        padding-bottom: 28px
    }

    .pbi-cta-right {
        padding-left: 0;
        padding-top: 0
    }

    .common-cta-left {
        padding-bottom: 0
    }
}

.main-pbi-v2-container {
    font-family: Inter, sans-serif;
    background: #f0f2f5;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px
}

.pbi-v2-container {
    width: 100%;
    max-width: 1150px;
    min-height: 330px;
    background: #f3f7fa;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgb(0 0 0 / .06);
    position: relative;
    border-top: 6px solid #2a7b9b;
    display: grid;
    grid-template-columns: 1.05fr 1fr
}

.pbi-v2-left {
    padding: 25px 45px;
    display: flex;
    flex-direction: column;
    background: #fff0
}

.pbi-v2-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f5c100;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .05em;
    padding: 10px 22px;
    border-radius: 999px;
    margin-bottom: 15px;
    width: fit-content
}

.pbi-v2-step, .pbi-v2-steps {
    gap: 15px;
    position: relative;
    display: flex
}

.pbi-v2-title {
    font-size: 32px;
    font-weight: 700;
    color: #0d1b2a;
    line-height: 1.15;
    margin-bottom: 12px;
    letter-spacing: -.03em
}

.pbi-v2-desc {
    font-size: 16px;
    color: #2e2a2a;
    margin-bottom: 18px;
    font-weight: 400
}

.pbi-v2-desc strong {
    color: #1a7f8e;
    font-weight: 700
}

.pbi-v2-steps {
    justify-content: space-between;
    margin-bottom: 25px;
    padding: 20px 10px;
    align-items: flex-start
}

.pbi-v2-step {
    flex: 1;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 1
}

.pbi-v2-step-header {
    display: flex;
    align-items: center;
    gap: 5px
}

.pbi-v2-step-circle-wrap {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0
}

.pbi-v2-step-progress-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid #edf2f7;
    border-top: 4px solid #f5c100;
    border-radius: 50%;
    transform: rotate(312deg)
}

.hc-ai-card-zx91, .ts-inner, .ts-section, .ts-slider-wrap, .wyr-list li {
    position: relative
}

.pbi-v2-step-num {
    width: 45px;
    height: 45px;
    background: #2a7b9b;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    z-index: 1;
    box-shadow: 0 4px 10px rgb(23 71 87 / .15)
}

.pbi-v2-step-icon {
    width: 28px;
    height: 28px;
    color: #174757
}

.pbi-v2-step-text {
    font-size: 14px;
    line-height: 1.25;
    color: #5a6b7d
}

.pbi-v2-step-label {
    display: block;
    font-size: 16px;
    font-weight: 800;
    color: #0d1b2a;
    margin-bottom: 2px
}

.pbi-v2-step-sub {
    font-size: 14px;
    color: #2e2a2a
}

.pbi-v2-step-divider {
    flex: 1;
    max-width: 50px;
    height: 1px;
    border-top: 2px dotted #cbd5e0;
    margin-top: 22px;
    align-self: flex-start
}

.pbi-v2-cta-row {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 50px
}

.pbi-v2-btn-main {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(90deg, #008eb4 0, #003b4d 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 22px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgb(0 59 77 / .25);
    transition: .3s;
    white-space: nowrap;
    flex-shrink: 0;
    justify-content: center
}

.pbi-v2-btn-link, .pbi-v2-trust-item {
    gap: 12px;
    font-size: 15px;
    display: flex
}

.pbi-v2-btn-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgb(0 59 77 / .35);
    color: #fff
}

.pbi-v2-btn-link {
    align-items: center;
    color: #174757;
    font-weight: 500;
    text-decoration: none;
    line-height: 1.25;
    justify-content: center
}

.pbi-v2-btn-link svg, .pbi-v2-trust-item:first-child .pbi-v2-trust-icon {
    color: #f5c100
}

.pbi-v2-link-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-weight: 600
}

.pbi-v2-link-text:hover {
    color: #3e7386 !important
}

.pbi-v2-btn-link span {
    border-bottom: 2.5px dashed #f5c100;
    padding-bottom: 2px
}

.pbi-v2-trust {
    grid-column: 1/-1;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #fff;
    border-top: 1px solid #e2e8f0;
    padding: 24px 40px;
    margin-top: 0
}

.pbi-v2-trust-item {
    align-items: center;
    font-weight: 600;
    color: #0a1e2c
}

.pbi-v2-trust-divider {
    width: 1px;
    height: 30px;
    background-color: #cbd5e1
}

.pbi-v2-trust-icon-box {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #f5c100;
    color: #f5c100;
    flex-shrink: 0
}

.pbi-v2-trust-icon {
    width: 18px;
    height: 18px;
    color: #f5c100
}

.pbi-v2-trust-item:first-child .pbi-v2-trust-icon-box {
    background-color: #fff0;
    border-color: #f5c100
}

.pbi-v2-right {
    background: #fff0;
    padding: 15px 35px;
    display: flex;
    align-items: center;
    justify-content: center
}

.pbi-v2-mockup-box {
    width: 100%;
    max-width: 400px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 15px 45px rgb(0 0 0 / .08);
    overflow: hidden;
    border: 1px solid #eef2f6;
    line-height: 0;
    transition: transform .3s, box-shadow .3s
}

.pbi-v2-mockup-box:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 20px 55px rgb(0 0 0 / .12)
}

.pbi-v2-mockup-img {
    width: 100%;
    height: auto;
    display: block
}

@media (max-width:1024px) {

    .pbi-v2-left, .pbi-v2-right {
        padding: 40px
    }

    .pbi-v2-container {
        grid-template-columns: 1fr
    }

    .pbi-v2-left {
        text-align: center;
        align-items: center
    }

    .pbi-v2-steps {
        width: 100%;
        max-width: 600px;
        margin: 0 auto 35px
    }

    .pbi-v2-cta-row, .pbi-v2-trust {
        justify-content: center
    }
}

.hc-ai-wrap-zx91 {
    max-width: 1100px;
    margin: auto;
    display: flex;
    gap: 50px;
    flex-wrap: wrap
}

.hc-ai-card-zx91 {
    flex: 1;
    min-width: 320px;
    border-radius: 20px;
    padding: 28px;
    overflow: hidden
}

.hc-ai-price-zx91 {
    background: #fff;
    border: 1px solid #0f7993;
    box-shadow: 0 10px 30px rgb(0 0 0 / .05)
}

.hc-ai-label-zx91 {
    display: inline-block;
    background: rgb(15 121 147 / .1);
    color: #0f7993;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px
}

.hc-ai-title-zx91 {
    font-size: 30px;
    font-weight: 700;
    color: #111;
    margin-bottom: 18px
}

.hc-ai-title-zx91 span {
    color: #0f7993
}

.hc-ai-subtitle-zx91 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #222
}

.hc-ai-list-zx91 {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.hc-ai-list-zx91 li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    line-height: 1.6;
    color: #444
}

.hc-ai-list-zx91 li strong {
    display: contents
}

.hc-ai-check-zx91 {
    min-width: 22px;
    height: 22px;
    background: #0f7993;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-top: 1px
}

.hc-ai-addon-zx91 {
    margin-top: 22px;
    background: #f7fbfc;
    border-left: 4px solid #0f7993;
    border-radius: 14px;
    padding: 18px
}

.hc-ai-addon-zx91 h4 {
    font-size: 17px;
    margin-bottom: 8px;
    color: #111
}

.hc-ai-addon-zx91 p {
    font-size: 16px;
    line-height: 1.7;
    color: #555
}

.hc-ai-duration-zx91 {
    background: linear-gradient(135deg, #0f7993, #0d6278);
    color: #fff;
    box-shadow: 0 15px 35px rgb(15 121 147 / .25)
}

.hc-ai-duration-zx91::before {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    background: rgb(255 255 255 / .08);
    border-radius: 50%;
    top: -70px;
    right: -70px
}

.hc-ai-duration-icon-zx91 {
    width: 56px;
    height: 56px;
    background: rgb(255 255 255 / .12);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px
}

.hc-ai-duration-title-zx91 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 18px
}

.hc-ai-duration-title-zx91 span {
    display: block;
    font-size: 18px;
    margin-top: 6px;
    opacity: .9
}

.hc-ai-duration-text-zx91 {
    font-size: 16px;
    line-height: 1.8;
    color: rgb(255 255 255 / .88);
    margin-bottom: 22px
}

.hc-ai-week-wrap-zx91 {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.hc-ai-week-box-zx91 {
    background: rgb(255 255 255 / .1);
    border-radius: 14px;
    padding: 16px;
    display: flex;
    gap: 14px;
    align-items: flex-start
}

.hc-ai-week-number-zx91 {
    min-width: 42px;
    height: 42px;
    background: #fff;
    color: #0f7993;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px
}

.hc-ai-week-box-zx91 h4 {
    font-size: 16px;
    margin-bottom: 4px
}

.hc-ai-week-box-zx91 p {
    font-size: 16px;
    color: rgb(255 255 255 / .88);
    line-height: 1.6
}

@media(max-width:768px) {
    .hc-ai-card-zx91 {
        padding: 22px
    }

    .hc-ai-duration-title-zx91, .hc-ai-title-zx91 {
        font-size: 26px
    }
}

@media(max-width:480px) {
    .hc-ai-duration-title-zx91, .hc-ai-title-zx91 {
        font-size: 20px
    }

    .hc-ai-addon-zx91 p, .hc-ai-list-zx91 li, .hc-ai-week-box-zx91 p {
        font-size: 13px
    }

    .hc-ai-wrap-zx91 {
        max-width: 950px;
        gap: 30px;
        margin: 15px
    }
}

.wyr-list li, .wyr-title {
    margin-bottom: 10px;
    color: #fff
}

.wyr-section {
    background-color: #000;
    padding: 60px 0 70px
}

.wyr-title {
    font-size: 30px;
    font-weight: 500
}

.wyr-card-title {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px;
    line-height: 1.3
}

.wyr-grid {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px
}

.wyr-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -18px
}

.wyr-col {
    flex: 0 0 33.3333%;
    padding: 0 12px;
    margin-bottom: 25px
}

.wyr-card {
    background: #07414f;
    border: 1px solid #fff;
    border-radius: 10px;
    padding: 22px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    height: 100%;
    transition: background .2s, transform .2s;
    cursor: default
}

.wyr-card:hover {
    background: #07414f9e;
    transform: translateY(-3px)
}

.wyr-card-top {
    display: block;
    padding: 15px 20px
}

.wyr-head {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 12px 0
}

.wyr-heading {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0
}

.wyr-bullet {
    flex-direction: column !important;
    align-items: flex-start !important
}

.wyr-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%
}

.wyr-list li {
    font-size: 16px;
    line-height: 1.7;
    padding-left: 45px
}

.important-note-item:last-child, .wyr-list li:last-child {
    margin-bottom: 0
}

.wyr-list li::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 11px;
    width: 8px;
    height: 8px;
    background: #29d3ff;
    border-radius: 50%
}

.wyr-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border: 2px solid #178ba7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center
}

.wyr-card-text {
    font-size: 18px;
    color: #fff;
    font-weight: 400;
    text-align: left
}

.ts-section {
    background: #dbeff4;
    padding: 40px 0 55px;
    overflow: hidden
}

.ts-inner {
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px
}

.ts-title {
    font-size: 35px;
    font-weight: 600;
    color: #0f7a95;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: -.5px
}

.ts-slider-wrap {
    overflow: hidden;
    padding: 20px 0;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%)
}

.ts-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: 35s linear infinite ts-scroll;
    cursor: grab;
    align-items: center
}

.ts-track:active {
    cursor: grabbing
}

.ts-slider-wrap:hover .ts-track, .ts-track.paused {
    animation-play-state: paused !important
}

@keyframes ts-scroll {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

.ts-card {
    flex-shrink: 0;
    width: 170px;
    height: 150px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #0f7993;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s cubic-bezier(.4, 0, .2, 1);
    user-select: none;
    box-shadow: 0 4px 20px rgb(31 123 147 / .05)
}

.ts-card:hover {
    background: #fff;
    border-color: #1f7b93;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgb(31 123 147 / .15)
}

.ts-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: .3s;
    pointer-events: none
}

@media (max-width:1199px) {
    .ts-card {
        width: 190px;
        height: 110px;
        padding: 16px 20px
    }
}

@media (max-width:991px) {
    .ts-title {
        font-size: 36px;
        margin-bottom: 30px
    }

    .ts-card {
        width: 170px;
        height: 100px;
        padding: 14px 18px
    }
}

@media (max-width:767px) {
    .wyr-col {
        flex: 0 0 50%;
        max-width: 50%
    }

    .wyr-title {
        font-size: 1.55rem
    }

    .wyr-section {
        padding: 50px 0 30px
    }

    .wyr-heading {
        font-size: 16px
    }

    .wyr-list li {
        font-size: 15px;
        line-height: 1.6
    }

    .wyr-card {
        padding: 18px
    }

    .ts-section {
        padding: 50px 0
    }

    .ts-title {
        font-size: 30px;
        margin-bottom: 25px
    }

    .ts-slider-wrap {
        -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
        mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%)
    }

    .ts-card {
        width: 140px;
        height: 90px;
        padding: 12px 15px;
        border-radius: 12px
    }
}

@media (max-width:575px) {
    .ts-section {
        padding: 40px 0
    }

    .ts-title {
        font-size: 26px;
        margin-bottom: 20px
    }

    .ts-track {
        gap: 16px
    }

    .ts-card {
        width: 120px;
        height: 80px;
        padding: 10px 12px;
        border-radius: 10px
    }
}

.pbi-cta-actions-left {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 30px
}

.pbi-cta-btn-claim {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: linear-gradient(90deg, #2a7b9b 0, #174757 100%);
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    padding: 16px 28px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 8px 24px rgb(0 122 155 / .3);
    transition: transform .2s, box-shadow .2s
}

.pbi-cta-btn-claim:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgb(0 122 155 / .5);
    color: #fff
}

.pbi-cta-link-appsource-inline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #174757;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    line-height: 1.3;
    transition: opacity .2s
}

.pbi-cta-link-appsource-inline:hover {
    opacity: .85;
    color: #174757
}

.pbi-cta-link-appsource-inline .pbi-cta-link-highlight {
    border-bottom: 2.5px dashed #f5c100;
    padding-bottom: 1px
}

.pbi-cta-link-appsource-inline svg.pbi-cta-link-icon {
    width: 26px;
    height: 26px;
    color: #f5c100;
    flex-shrink: 0
}

.pbi-cta-right-img {
    padding-left: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 300px;
    flex: 0 0 auto
}

.pbi-cta-right-img-box {
    background: #fff;
    border-radius: 24px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 440px
}

.pbi-cta-right-img-box img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 12px
}

@media (max-width:860px) {
    .pbi-cta-right-img {
        padding-left: 0;
        margin-top: 0;
        min-width: unset;
        width: 100%;
        justify-content: flex-start
    }

    .pbi-cta-right-img-box {
        max-width: 100%;
        width: 100%
    }

    .pbi-cta-right-img-box img {
        max-height: 220px;
        width: auto;
        margin: 0 auto;
        display: block
    }
}

@media (max-width:600px) {
    .slide-5 .pbi-cta-card {
        height: auto !important;
        min-height: auto !important
    }

    .slide-5 .pbi-cta-top {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px 16px
    }

    .slide-5 .pbi-cta-trust-item {
        border-right: none !important;
        border-bottom: 1px solid #eee;
        padding: 12px
    }

    .slide-5 .pbi-cta-trust-item:last-child {
        border-bottom: none
    }

    .pbi-cta-slider {
        padding-bottom: 90px
    }

    .pbi-cta-bottom {
        grid-template-columns: repeat(3, 1fr);
        border-top: 1.5px solid #e8e8e8
    }

    .pbi-cta-steps {
        grid-template-columns: repeat(3, 1fr)
    }

    .main-pbi-container, .main-pbi-v2-container {
        padding: 30px 12px
    }

    .blog-pbi-container {
        padding: 30px 0
    }

    .common-pbi-container {
        padding: 20px 12px
    }

    .pbi-cta-card {
        height: auto !important;
        min-height: auto !important;
        border-radius: 14px
    }

    .pbi-cta-top {
        padding: 24px 18px 22px
    }

    .pbi-cta-headline {
        font-size: 20px;
        line-height: 1.25
    }

    .pbi-cta-description {
        font-size: 20px !important;
        line-height: 1.3 !important;
    }

    .pbi-cta-subtext {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 24px
    }

    .pbi-cta-steps {
        display: grid;
        gap: 10px;
        align-items: start
    }

    .pbi-mobile-steps {
        display: flex
    }

    .pbi-cta-step {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        text-align: center;
        gap: 8px;
        width: 100%
    }

    .pbi-cta-link-text br, .pbi-cta-step:not(:last-child)::after, .pbi-v2-step-divider {
        display: none
    }

    .pbi-cta-step-top {
        flex-direction: row;
        align-items: center;
        gap: 0;
        margin-bottom: 0;
        flex-shrink: 0
    }

    .pbi-cta-step-circle-wrap, .pbi-cta-step-circle-wrap svg {
        width: 38px;
        height: 38px
    }

    .pbi-cta-counter-sep, .pbi-cta-step-num {
        font-size: 13px
    }

    .pbi-cta-step-icon-box {
        width: 26px;
        height: 26px
    }

    .pbi-cta-link-appsource svg, .pbi-cta-step-icon-box svg {
        width: 20px;
        height: 20px
    }

    .pbi-cta-step-info {
        display: flex;
        flex-direction: column
    }

    .pbi-cta-step-name {
        font-size: 12px;
        margin-bottom: 2px
    }

    .pbi-cta-step-desc {
        font-size: 10px;
        line-height: 1.3
    }

    .pbi-cta-btn-schedule {
        width: 100%;
        min-width: unset;
        font-size: 16px;
        font-weight: 700
    }

    .pbi-cta-btn-arrow svg {
        width: 24px;
        height: 24px
    }

    .pbi-cta-link-appsource {
        font-size: 12px;
        text-align: center
    }

    .common-cta-link-appsource {
        gap: 8px;
        text-align: left
    }

    .pbi-cta-trust-item {
        justify-content: center;
        text-align: center;
        gap: 6px;
        padding: 10px 4px;
        font-size: 11px;
        line-height: 1.25;
        border-bottom: none
    }

    .pbi-cta-trust-item:last-child {
        border-bottom: none
    }

    .pbi-cta-trust-item:not(:last-child) {
        border-right: 1.5px solid #e8e8e8 !important;
        border-bottom: none
    }

    .pbi-cta-trust-icon {
        width: 22px;
        height: 22px
    }

    .pbi-cta-badge, .pbi-v2-badge {
        font-size: 12px;
        padding: 7px 14px;
    }

    .explore-offers-title {
        font-size: 26px
    }

    .pbi-cta-nav {
        padding: 10px 16px
    }

    .pbi-cta-arrow-btn {
        width: 36px;
        height: 36px
    }

    .pbi-cta-arrow-btn svg {
        width: 16px;
        height: 16px
    }

    .pbi-cta-current-slide, .pbi-cta-total-slides {
        font-size: 15px
    }

    .slide-5 .pbi-cta-top {
        height: auto !important;
        overflow: visible;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center
    }

    .slide-5 .pbi-cta-right-img {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        padding-top: 15px
    }

    .slide-5 .pbi-cta-right-img-box img {
        width: 270px;
        max-width: 100%;
        height: auto;
        object-fit: contain
    }

    .common-cta-btn-schedule, .common-cta-right {
        width: 100%;
        min-width: auto
    }

    .common-cta-card {
        height: auto;
        min-height: auto
    }

    .common-cta-top {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        padding: 20px 16px
    }

    .common-cta-left {
        width: 100%;
        padding-bottom: 10px
    }

    .common-cta-subtext {
        white-space: normal;
        word-break: normal;
        overflow-wrap: break-word;
        margin-bottom: 0
    }

    .common-cta-subtext b {
        display: inline
    }

    .common-cta-right {
        padding-left: 0;
        gap: 10px
    }

    .pbi-v2-desc, .pbi-v2-left, .pbi-v2-step, .pbi-v2-title {
        text-align: center
    }

    .pbi-v2-container {
        grid-template-columns: 1fr;
        border-radius: 24px;
        min-height: auto;
        border-top-width: 5px
    }

    .pbi-v2-left {
        padding: 28px 16px 10px;
        align-items: center
    }

    .pbi-v2-title {
        font-size: 22px;
        line-height: 1.25;
        margin-bottom: 10px
    }

    .pbi-v2-desc {
        font-size: 14.5px;
        line-height: 1.5;
        margin-bottom: 24px
    }

    .pbi-v2-steps {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 6px;
        margin-bottom: 28px;
        width: 100%;
        padding: 0
    }

    .pbi-v2-step {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px
    }

    .pbi-v2-step-header {
        display: flex;
        align-items: center;
        gap: 4px;
        margin-bottom: 0
    }

    .pbi-v2-step-circle-wrap {
        width: 32px;
        height: 32px;
        flex-shrink: 0
    }

    .pbi-v2-step-progress-ring {
        border-width: 3px 2px 2px
    }

    .pbi-v2-step-num {
        width: 24px;
        height: 24px;
        font-size: 11px;
        font-weight: 800
    }

    .pbi-v2-step-icon {
        width: 16px;
        height: 16px;
        flex-shrink: 0
    }

    .pbi-v2-step-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%
    }

    .pbi-v2-step-label {
        font-size: 11.5px;
        font-weight: 800;
        margin-bottom: 2px;
        color: #0d1b2a
    }

    .pbi-v2-step-sub {
        font-size: 9.5px;
        line-height: 1.2;
        color: #2e2a2a
    }

    .pbi-v2-cta-row {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-bottom: 12px
    }

    .pbi-v2-btn-main {
        width: 70%;
        max-width: 250px;
        font-size: 14px;
        font-weight: 700;
        padding: 12px 24px;
        border-radius: 10px;
        justify-content: center;
        box-shadow: 0 6px 18px rgb(0 59 77 / .2)
    }

    .pbi-v2-btn-link {
        font-size: 14px;
        justify-content: center
    }

    .pbi-v2-right {
        display: flex;
        padding: 5px 16px 24px;
        align-items: center;
        justify-content: center;
        width: 100%
    }

    .pbi-v2-mockup-box {
        width: 100%;
        max-width: 310px;
        border-radius: 12px
    }

    .pbi-v2-trust {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        border-top: 1px solid #e2e8f0;
        padding: 16px 8px;
        background-color: #fff;
        margin-top: 0;
        gap: 2px;
        width: 100%
    }

    .pbi-v2-trust-divider {
        display: block;
        width: 1.5px;
        height: 32px;
        background-color: #cbd5e1;
        flex-shrink: 0
    }

    .pbi-v2-trust-item {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 2px 4px;
        font-size: 10px;
        font-weight: 700;
        color: #0a1e2c;
        line-height: 1.25;
        flex: 1;
        text-align: left
    }

    .pbi-v2-trust-icon-box {
        width: 26px;
        height: 26px;
        border-width: 1.5px;
        flex-shrink: 0
    }

    .pbi-v2-trust-icon {
        width: 12px;
        height: 12px
    }

    .pbi-v2-link-text {
        flex-direction: row;
        gap: 5px
    }

    .pbi-cta-actions-left {
        flex-direction: column;
        align-items: center;
        flex-wrap: wrap;
        gap: 16px 24px
    }

    .pbi-cta-btn-claim {
        font-size: 16px;
        font-weight: 700;
        gap: 12px
    }

    .pbi-cta-link-appsource-inline {
        justify-content: flex-start
    }

    .pbi-cta-right-img {
        margin-top: 4px
    }

    .pbi-cta-right-img-box {
        padding: 14px;
        border-radius: 16px
    }

    .pbi-cta-right-img-box img {
        max-height: 180px
    }
}

.important-note-section {
    padding: 60px;
    background: #f5f9fb
}

.important-note-card {
    max-width: 1100px;
    margin: 0 auto;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgb(0 0 0 / .08)
}

.important-note-header {
    background: #0f7a95;
    padding: 18px 25px;
    display: flex;
    align-items: center;
    gap: 12px
}

.important-note-header h3 {
    color: #fff;
    margin: 0;
    font-size: 26px;
    font-weight: 600
}

.important-note-icon {
    width: 40px;
    height: 40px;
    background: rgb(255 255 255 / .15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px
}

.important-note-body {
    padding: 30px
}

.important-note-item {
    position: relative;
    padding-left: 25px;
    margin-bottom: 25px
}

.important-note-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #0f7a95
}

.important-note-item h4 {
    margin: 0 0 8px;
    color: #222;
    font-size: 18px;
    font-weight: 600
}

.important-note-item p {
    margin: 0;
    color: #555;
    font-size: 16px;
    line-height: 1.7
}

@media (max-width:767px) {
    .important-note-header h3 {
        font-size: 22px
    }

    .important-note-body {
        padding: 20px
    }
}

@media (max-width:480px) {
    spt-wrapper-body {
        padding: 28px 14px 48px
    }

    .spt-card-body {
        padding: 22px 18px 26px
    }

    .important-note-header h3,
    .spt-main-title {
        font-size: 20px
    }

    .spt-card-title {
        font-size: 18px
    }

    .spt-accord-title {
        font-size: 14.5px
    }

    .spt-accord-header {
        padding: 16px
    }

    .spt-accord-inner {
        padding: 18px 16px 20px
    }

    .spt-cap-text {
        font-size: 13px
    }

    .important-note-item p, .spt-card-desc, .spt-compat-detail, .spt-compat-label, .spt-dev-name, .spt-dev-role, .wyr-card-text {
        font-size: 14px
    }

    .customslider-image img {
        height: 200px !important
    }

    .inbanner-slider {
        padding: 0 !important
    }

    .wyr-col {
        flex: 0 0 100%;
        max-width: 100%
    }

    .wyr-card {
        padding: 18px 16px
    }

    .wyr-title {
        font-size: 22px
    }

    .wyr-icon {
        width: 30px;
        height: 30px
    }

    .important-note-item h4, .wyr-card-title {
        font-size: 16px
    }

    .important-note-section {
        padding: 40px 0
    }

    .important-note-icon {
        width: 32px;
        height: 32px;
        font-size: 16px
    }
}

.ifour-header {
    text-align: center;
    margin-bottom: 3rem
}

.ifour-header__title {
    font-size: 40px;
    font-weight: 600;
    color: #0c4958;
    line-height: 1.2;
    margin-bottom: 1rem
}

.ifour-header__sub {
    font-size: 16px;
    color: #000;
    margin: 0 auto;
    line-height: 1.7;
    text-align: center
}

.ifour-columns {
    display: flex;
    gap: 10px;
    max-width: 1160px;
    margin: 0 auto;
    align-items: flex-start
}

.ifour-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0
}

.ifour-acc {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
    transition: border-color .25s
}

.ifour-acc.ifour-acc--open {
    border-color: #0c4958
}

.ifour-acc__btn {
    width: 100%;
    background: 0 0;
    border: none;
    cursor: pointer;
    padding: 14px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    color: #cbd5e1;
    transition: background .2s
}

.ifour-acc__btn:hover {
    border: 1px solid #17789d
}

.ifour-acc--open .ifour-acc__btn {
    background: #0f7a95
}

.ifour-acc__icon {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background: rgb(190 230 245 / var(--tw-bg-opacity, 1));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #17789d;
    font-size: 15px;
    transition: background .2s, border-color .2s
}

.ifour-acc--open .ifour-acc__icon {
    background: #c9cccd2b;
    color: #e5eef3
}

.ifour-acc__title {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    color: #005e7e;
    line-height: 1.35
}

.ifour-acc--open .ifour-acc__title {
    color: #e2e8f0
}

.ifour-acc__chevron {
    font-size: 13px;
    color: #4fc3f7;
    transition: transform .3s;
    flex-shrink: 0
}

.ifour-acc--open .ifour-acc__chevron {
    transform: rotate(180deg)
}

.ifour-acc__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .38s
}

.ifour-acc--open .ifour-acc__body {
    max-height: 320px
}

.ifour-acc__content {
    padding: 12px 16px 16px 63px;
    font-size: 16px;
    color: #152a46;
    line-height: 1.7
}

.ifour-cta {
    background: #0f7a95;
    border: 1px solid #2b7fd4;
    border-radius: 8px;
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3px
}

.ifour-cta__label {
    font-size: .78rem;
    color: #fff;
    font-weight: 600;
    letter-spacing: .04em
}

.ifour-cta__text {
    font-size: .8rem;
    color: #fff;
    line-height: 1.55
}

.ifour-cta__btn {
    margin-top: 4px;
    background: #fff;
    color: #0f7a95;
    border: 1px solid;
    border-radius: 3px;
    padding: 10px 28px;
    font-size: .85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s, transform .15s
}

.ifour-cta__btn:hover {
    background: #e3f2fd
}

.ifour-cta__btn:active {
    transform: scale(.97)
}

@media (max-width:960px) {
    .ifour-columns {
        flex-wrap: wrap
    }

    .ifour-col {
        flex: 1 1 calc(50% - 10px);
        min-width: 260px
    }
}

@media (max-width:580px) {
    .ifour-header__title {
        font-size: 25px
    }

    .ifour-section {
        padding: 2.5rem 1rem 3.5rem
    }

    .ifour-col {
        flex: 1 1 100%
    }

    .ifour-acc__title {
        font-size: .88rem
    }
}