body {
    padding-top: 86px !important;
}
.hero-section .container,
.container {
    max-width: 1400px;
    padding: 0;
}

.section {
    margin-top: 0 !important;
    margin-bottom: 80px;
}


/* ── Hero ── */
.hero-section {
    position: relative;
    overflow: hidden;
    margin-bottom: 0 !important;
    padding-bottom: 80px;
}

.floating-left,
.floating-right {
    position: absolute;
    top: 0;
    z-index: -1;
    pointer-events: none;
    animation: floatY 10s ease-in-out infinite;
}

.floating-left-mobile,
.floating-right-mobile {
    display: none;
}

.floating-left {
    left: -30%;
    animation-delay: 0s;
}

.floating-right {
    right: -30%;
    animation-delay: 3s;
}

@keyframes floatY {
    0%, 100% { transform: translateY(-300px); }
    50%       { transform: translateY(-200px); }
}

.hero-section__inner {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
    padding-top: 40px;
}

.hero-section__inner .title {
    margin: 0 auto 24px;
    color: var(--content-primary);
    text-align: center;
    font-family: "Titillium Web";
    font-size: 90px;
    font-weight: 900;
    line-height: 90px;
    text-transform: uppercase;
}

.hero-section__inner .desc {
    margin: 0 auto 40px;
    max-width: 853px;

    color: #1F1E1F;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px; /* 155.556% */
}

.hero-section__inner .buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 80px;
}


/* ── Global Payments ── */
.sba-global {
    margin-bottom: 16px;
}

.sba-global__inner {
    overflow: hidden;
    display: flex;
    align-items: center;
    border-radius: 24px;
    background: var(--white);
    box-shadow: 0 4px 38px 0 rgba(143, 39, 199, 0.10);
}

.sba-global__inner > div {
    width: 50%;
    flex-basis: 50%;
}

.sba-global__cnt {
    padding: 60px;
}

.sba-global__title {
    margin-bottom: 32px;
    color: #1F1E1F;
    font-family: "Titillium Web";
    font-size: 60px;
    font-weight: 900;
    line-height: 60px;
    text-transform: uppercase;
}

.sba-global__desc {
    color: #1F1E1F;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px; /* 155.556% */
}

.sba-global__image {
    /*background: #EFDAFF;*/
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.sba-global__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


/* ── Benefits ── */
.sba-benefits {
    margin-bottom: 96px;
}

.sba-benefits__title {
    margin: 0 auto 48px;
    color: #1F1E1F;
    text-align: center;
    font-size: 42px;
    font-weight: 600;
    line-height: 56px;
}

.sba-benefits__grid {
    display: flex;
    gap: 40px;
}

.sba-benefit-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: calc((100% / 3) - 20px);
    flex-basis: calc((100% / 3) - 20px);
    padding: 32px;
    border-radius: 20px;
    background: var(--white);
    box-shadow: 0 4px 38px 0 rgba(143, 39, 199, 0.10);
}

.sba-icon {
    text-align: center;
}

.sba-benefit-card__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.sba-benefit-card__name {
    display: block;
    color: #1F1E1F;
    text-align: center;
    font-family: Manrope;
    font-size: 28px;
    font-weight: 600;
    line-height: 40px;
}

.sba-benefit-card__desc {
    color: #1F1E1F;
    text-align: center;
    font-family: Manrope;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}


/* ── Account Manager ── */
.sba-account-manager {
    margin-bottom: 96px;
}

.sba-account-manager__inner {
    overflow: hidden;
    display: flex;
    align-items: stretch;
    border-radius: 32px;
    background: var(--white);
    box-shadow: 0 4px 38px 0 rgba(143, 39, 199, 0.10);
}

.sba-account-manager__inner > div {
    width: 50%;
    flex-basis: 50%;
}

.sba-account-manager__image {
    overflow: hidden;
    min-height: 500px;
}

.sba-account-manager__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.sba-account-manager__cnt {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
}

.sba-account-manager__title {
    color: #1F1E1F;
    leading-trim: both;
    text-edge: cap;

    /* Desctop/Headings/H2 */
    font-family: "Titillium Web";
    font-size: 60px;
    font-style: normal;
    font-weight: 900;
    line-height: 60px; /* 100% */
    text-transform: uppercase;
}

.sba-account-manager__desc {
    color: #1F1E1F;

    /* Desctop/Paragraph/P1 */
    font-family: Manrope;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px; /* 155.556% */
}

.sba-account-manager__items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.sba-am-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border-radius: 16px;
    background: #F2F4F8;
}

.sba-am-item__icon {
    flex-shrink: 0;
}

.sba-am-item__title {
    color: #1F1E1F;
    font-family: Manrope;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}


/* ── Steps ── */
.sba-steps {
    margin-bottom: 96px;
}

.sba-steps__inner {
    overflow: hidden;
    display: flex;
    border-radius: 32px;
    background: var(--white);
}

.sba-steps__inner > div {
    width: 50%;
    flex-basis: 50%;
}

.sba-steps__content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: center;
}

.sba-steps__heading {
    color: #1F1E1F;
    font-family: Manrope;
    font-size: 42px;
    font-weight: 600;
    line-height: 56px;
}

.sba-steps__subtitle {
    margin-top: -24px;
    color: #1F1E1F;
    font-family: Manrope;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}

.sba-steps__content .items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sba-steps__content .btn {
    max-width: max-content;
}

.sba-steps__content .item {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 20px;
    border-radius: 24px;
    background: #F2F4F8;
    color: var(--content-primary);
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
}

.sba-steps__content .item .number {
    color: #1F1E1F;
    font-size: 42px;
    font-weight: 600;
    line-height: 56px;
    flex-shrink: 0;
    min-width: 50px;
}

.sba-steps__content .item p {
    line-height: 28px;
}

.sba-steps__image {
    min-height: 500px;
    overflow: hidden;
}

.sba-steps__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}


/* ── Use Cases ── */
.sba-use-cases {
    margin-bottom: 96px;
}

.sba-use-cases__inner {

}

.sba-use-cases__title {
    margin-bottom: 48px;
    color: var(--content-primary);
    text-align: center;
    font-family: Manrope;
    font-size: 42px;
    font-weight: 600;
    line-height: 56px;
}

.sba-use-cases__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.sba-use-case-card {
    width: calc(50% - 20px);
    flex-basis: calc(50% - 20px);
    padding: 32px;
    border-radius: 20px;
    background: var(--white);
    box-shadow: 0 4px 38px 0 rgba(143, 39, 199, 0.10);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.sba-use-case-card__name {
    display: block;
    color: #1F1E1F;
    text-align: center;
    font-family: Manrope;
    font-size: 28px;
    font-weight: 600;
    line-height: 40px;
}

.sba-use-case-card__desc {
    color: #1F1E1F;
    text-align: center;
    font-family: Manrope;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}


/* ── Banner ── */
#banner .container {
    padding: 60px;
    border-radius: 32px;
    background: url('../images/british-pound-account/banner.png') lightgray 50% / cover no-repeat;
    box-shadow: 0 4px 38px 0 rgba(143, 39, 199, 0.10);
}

#banner .banner__inner {
    text-align: center;
}

#banner .title {
    max-width: 930px;
    margin: 0 auto 20px;
    color: var(--white);
    text-align: center;
    font-family: "Titillium Web";
    font-size: 60px;
    font-weight: 900;
    line-height: 60px;
    text-transform: uppercase;
}

#banner .content {
    max-width: 430px;
    margin: 0 auto 48px;
    color: #F8F7F8;
    text-align: center;
}

#banner .btn {
    display: flex;
    align-items: center;
    width: max-content;
    margin: 0 auto;
    background: #ffffff;
    color: #1E1E1E;
    border-radius: 8px;
}


/* ── FAQ ── */
#faq .title {
    margin-bottom: 60px;
    color: #1F1E1F;
    text-align: center;
}

#faq .accordion {
    row-gap: 30px;
}

#faq .accordion__item {
    border-radius: 24px;
    box-shadow: 0 4px 38px 0 rgba(143, 39, 199, 0.10);
}

#faq .accordion__header {
    color: #1F1E1F;
}

#faq p.accordion__content {
    padding-top: 25px;
    color: #1F1E1F;
}

/* ── Responsive 1399px ── */
@media (max-width: 1399px) {
    .sba-global__inner .sba-global__cnt {
        flex: 1;
    }
    .sba-global__inner .sba-global__image {
        width: 506px;
        flex-basis: 506px;
    }
}

/* ── Responsive 1365px ── */
@media (max-width: 1365px) {
    .section {
        margin-bottom: 60px !important;
    }

    .sba-global {
        margin-bottom: 0 !important;
    }

    .hero-section__inner .title {
        font-size: 40px;
        line-height: 1;
    }

    .hero-section__inner .desc,
    .sba-global__desc,
    .sba-benefit-card__desc,
    .sba-account-manager__desc,
    .sba-steps__subtitle,
    .sba-use-case-card__desc {
        font-size: 16px;
        line-height: 28px;
    }

    .sba-steps__subtitle {
        max-width: 340px;
    }


    .hero-section__inner .buttons .btn {
        padding: 12px 16px;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 16px; /* 100% */
    }

    .sba-global__inner {
        flex-direction: row-reverse;
    }

    .sba-global__inner > div {
        width: 50%;
        flex-basis: 50%;
    }

    .sba-global__inner .sba-global__image  {
        width: 50%;
        flex-basis: 50%;
    }

    .sba-global__inner .sba-global__image picture {
        width: 100%;
    }

    .sba-global__cnt {
        padding: 40px;
    }

    .sba-global__title {
        font-size: 34px;
        line-height: 1;
    }

    .sba-benefits__title {
        font-size: 28px;
        line-height: 32px;
    }

    .sba-benefit-card__name {
        font-size: 20px;
        line-height: 28px;
    }

    .sba-account-manager__cnt {
        padding: 40px;
    }

    .sba-account-manager__title {
        font-size: 28px;
        line-height: 36px;
    }

    .sba-steps__content {
        padding: 40px;
    }

    .sba-steps__heading {
        font-size: 28px;
        line-height: 36px;
    }

    .sba-steps__content .item .number {
        font-size: 28px;
        line-height: 32px;
    }

    .sba-steps__content .item p {
        font-size: 16px;
    }

    .sba-steps__content .item .number {
        min-width: auto;
    }

    .sba-steps__content .btn {
        padding: 12px 16px;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 20px; /* 125% */
    }

    .sba-use-cases__inner {
        padding: 40px;
    }

    .sba-use-cases__title {
        margin-bottom: 40px;
        font-size: 28px;
        line-height: 36px;
    }

    .sba-use-case-card__name {
        font-size: 20px;
        line-height: 28px;
    }

    #banner .container {
        padding: 40px;
    }

    #banner .title {
        font-size: 34px;
        line-height: 1;
    }

    #banner .btn {
        padding: 12px 16px;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 16px; /* 100% */
    }

    .accordion__header {
        font-size: 16px;
        line-height: 24px;
    }
}


/* ── Responsive 1023px ── */
@media (max-width: 1023px) {
    .floating-left {
        left: -50%;
    }

    .floating-right {
        right: -50%;
    }

    .sba-global__inner {
        flex-direction: column-reverse;
    }

    .sba-global__image {
        height: 400px;
    }

    .sba-benefits__grid {
        flex-wrap: wrap;
    }

    .sba-benefit-card {
        width: 100%;
        flex-basis: 100%;
    }

    .sba-account-manager__image {
        min-height: 300px;
    }

    .sba-steps__inner {
        flex-direction: column-reverse;
    }

    .sba-steps__inner > div {
        width: 100%;
        flex-basis: 100%;
    }

    .sba-steps__image {
        min-height: 300px;
    }

    .sba-steps__image img {
        width: 100%;
    }

    .sba-use-case-card {
        width: calc(50% - 20px);
    }
}


/* ── Responsive 767px ── */
@media (max-width: 767.98px) {
    body {
        padding: 88px 0 0 !important;
    }

    section .container {
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0;
    }

    .section {
        overflow: hidden;
        margin-bottom: 40px !important;
    }

    @keyframes floatY {
        0%, 100% { transform: translateY(-100px); }
        50%       { transform: translateY(200%); }
    }

    .hero-section {
        padding-bottom: 40px;
    }

    .hero-section__inner {
        margin-top: 0;
    }

    .hero-section__inner .buttons {
        margin-bottom: 40px;
    }

    .hero-section__inner .desc {
        padding: 0 20px;
        font-size: 16px;
        line-height: 28px;
    }


    .floating-left,
    .floating-right {
        display: none;
    }

    .floating-left-mobile,
    .floating-right-mobile {
        display: block;
    }

    .sba-global__inner {
        flex-direction: column-reverse;
        border-radius: 0;
    }

    .sba-global__inner > div {
        width: 100%;
        flex-basis: 100%;
    }

    .sba-global__title {
        margin-bottom: 20px;
    }

    .sba-global__inner .sba-global__image {
        width: 100%;
        flex-basis: 100%;
    }

    .sba-global__inner .sba-global__image picture {
        width: 100%;
        flex-basis: 100%;
    }

    .sba-global__cnt {
        padding: 20px;
    }

    .sba-global__image {
        height: 280px;
    }

    .sba-account-manager__inner {
        border-radius: 0;
    }

    .sba-account-manager__cnt {
        padding: 20px;
        gap: 20px;
    }

    .sba-benefits__title {
        padding: 0 20px;
    }

    .sba-account-manager__desc {
        font-size: 16px;
    }

    .sba-account-manager__items {
        grid-template-columns: 1fr;
    }

    .sba-benefit-card {
        border-radius: 0;
    }

    .sba-benefit-card__name {
        font-size: 20px;
        line-height: 28px;
    }

    .sba-benefit-card__desc {
        font-size: 16px;
        line-height: 28px;
    }

    .sba-account-manager__inner {
        flex-direction: column;
    }

    .sba-account-manager__inner > div {
        width: 100%;
        flex-basis: 100%;
    }


    .sba-steps__inner {
        border-radius: 0;
    }

    .sba-steps__content {
        padding: 20px;
    }

    .sba-steps__content .item {
        gap: 16px;
    }

    .sba-steps__content .item .number {
        font-size: 24px;
        line-height: 32px;
        min-width: 36px;
    }

    .sba-steps__content .item p {
        font-size: 16px;
        line-height: 24px;
    }

    .sba-steps__subtitle {
        max-width: 216px;
        font-size: 16px;
        line-height: 28px;
    }

    .sba-use-cases__inner {
        border-radius: 0;
        padding: 20px;
    }

    .sba-use-case-card {
        width: 100%;
        flex-basis: 100%;
        border-radius: 16px;
    }

    .sba-use-case-card__name {
        margin-bottom: 4px;
        font-size: 20px;
        line-height: 28px;
    }

    .sba-use-case-card__desc {
        font-size: 16px;
        line-height: 28px;
    }

    #banner .container {
        padding: 50px 20px !important;
        border-radius: 0;
    }

    #banner .title {
        margin-bottom: 20px;
        font-size: 28px;
        line-height: 36px;
    }

    #banner .content {
        margin-bottom: 30px;
        font-size: 16px;
        line-height: 24px;
    }

    #faq .accordion__item {
        border-radius: 0;
    }

    .box-faq-list .accordion__header {
        font-size: 20px !important;
    }
}


/* ── Responsive 575px ── */
@media (max-width: 575.98px) {
    .sba-use-case-card {
        width: 100%;
        flex-basis: 100%;
    }
}
