.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.flex-1 {
    flex: 1;
}

.flex-spread {
    justify-content: space-between;
}

.flex-center {
    justify-content: center;
}

.flex-vcenter {
    align-items: center;
}

.swi-hero-section-container {
    display: flex;
    align-items: center;
}

.swi-hero-section-info-container {
    max-width: 600px;
    flex: 1 1 50%;
}

.swi-hero-section-container {
    display: flex;
    align-items: stretch;
    min-height: 520px;
}

/* NEW */
.swi-hero-left,
.swi-hero-right {
    flex: 1;
    display: flex;
    position: relative;
}

/* THIS fixes your alignment */
.swi-hero-left {
    align-items: center;
    max-width: 680px;
}

/* optional fine tuning */
.swi-hero-section-info-container {
    max-width: 600px;
    transform: translateY(45px);
}

.swi-hero-section-desc {
    max-width: 715px;
    margin-top: -20px;
    margin-bottom: 25px !important;
}

.swi-hero-section-h1 {
    font-size: 36px;
    top: -40px;
}

.swi-hero-section-h1-highlight {
    font-size: 54px;
    white-space: nowrap;
}

.swi-hero-section-wrapper {
    justify-content: center;
}

.swi-hero-visual {
    position: relative;
    flex: 1 1 50%;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swi-hero-visual-shell {
    width: 100%;
    max-width: 820px;
    height: 500px;
    gap: 15px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    padding: 15px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    display: flex;
    margin-bottom: auto;
}

.swi-hero-visual-sidebar {
    width: 150px;
    background: rgba(255, 255, 255, 0.60);
    padding: 18px 10px 18px 0;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.swi-hero-visual-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    padding-left: 15px;
    font-size: 12px;
    letter-spacing: 0.12em;
    color: rgba(0, 0, 0, 0.8);
}

.swi-hero-visual-steps {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.4);
    counter-reset: hero-step;
    width: 100%;
    padding-bottom: 70px;
}

.swi-hero-step {
    display: flex;
    gap: 6px;
    align-items: center;
    padding: 6px;
    border-radius: 0 15px 15px 0;
    width: 100%;
    font-size: 8px;
    box-sizing: border-box;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.35);
    counter-increment: hero-step;
}

.swi-hero-step-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #bdb7ba;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
}

.swi-hero-step-dot::after {
    content: counter(hero-step);
}

.swi-hero-step-active {
    color: #ff2ea7;
    font-weight: 600;
    background: #ffe0ef;
}

.swi-hero-step-active .swi-hero-step-dot {
    background: #ff2ea7;
}

.swi-hero-visual-main {
    flex: 1;
    position: relative;
}

.swi-hero-visual-topbar {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 16px;
}

.swi-hero-visual-search {
    background: #fff;
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 12px;
    color: rgba(103, 103, 103, 0.50);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 200px;
}

.swi-hero-card {
    background: #fff;
    border-radius: 5px;
    padding: 18px 18px 170px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.swi-hero-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.swi-hero-card-header h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.swi-hero-card-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff984f 0%, #ff2ea7 100%);
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.swi-hero-card-subtitle {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 20px;
}

.swi-hero-card-subtitle .black {
    color: #000;
}

.swi-hero-card-label {
    font-size: 11px;
    color: rgba(0, 0, 0, 0.55);
    margin-bottom: 6px;
    display: block;
}

.swi-hero-card-input {
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 13px;
    margin-bottom: 15px;
}



.swi-hero-card-input:focus {
    outline: none;
    border: none;
    box-shadow: none;
}


.swi-hero-card-btn {
    border: none;
    background: #ff2ea7;
    color: #fff;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 22px;
    font-size: 13px;
    cursor: pointer;
    box-shadow: 0 4px 20px 0 rgba(35, 31, 32, 0.15);
}

.swi-hero-float-note-text {
    width: 222px;
}

.swi-hero-float-note {
    position: absolute;
    left: 62%;
    transform: translate(-120%, 50%);
    bottom: -20px;
    background: #fff;
    border-radius: 14px;
    padding: 10px 12px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    color: rgba(0, 0, 0, 0.7);
    max-width: 320px;
}

.swi-hero-chat {
    position: absolute;
    right: 0;
    bottom: 0;
    transform: translate(25%, 25%);
}

.swi-hero-chat-img {
    width: 100%;
    height: auto;
}

.swi-hero-directors {
    position: absolute;
    height: 430px;
    transform: translate(-25%, 35%);
}

.swi-hero-directors-img {
    height: 100%;
    width: auto;
}

.swi-hero-chat {
    position: absolute;
    z-index: 4;
}

.swi-chat-card {
    width: 200px;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 12px;
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.10);
    overflow: hidden;
}

.swi-chat-card-header {
    padding: 10px;
}

.swi-chat-card-title {
    font-size: 12px;
    font-weight: 700;
    color: #7c3aed;
    line-height: 1.2;
    text-align: center;
}

.swi-chat-card-body {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.swi-chat-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.swi-chat-row-left {
    justify-content: flex-start;
}

.swi-chat-row-right {
    justify-content: flex-end;
}

.swi-chat-avatar {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    margin-top: 2px;
    background: #eee;
}

.swi-chat-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.swi-chat-content {
    max-width: 150px;
}

.swi-chat-name {
    font-size: 10px;
    font-weight: 600;
    color: rgba(15, 23, 42, 0.55);
    margin-bottom: 4px;
    line-height: 1;
}

.swi-chat-bubble {
    font-size: 10px;
    font-weight: 600;
    line-height: 1.4;
    border-radius: 10px;
    padding: 8px 10px;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.swi-chat-bubble-light {
    background: rgba(255, 255, 255, 0.92);
    color: #a855f7;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.swi-chat-bubble-purple {
    background: linear-gradient(135deg, #7c3aed 0%, #9333ea 100%);
    color: #fff;
    max-width: 150px;
}

.swi-chat-card-footer {
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    padding: 10px;
    font-size: 10px;
    color: rgba(15, 23, 42, 0.45);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.swi-footer {
  margin-top: 0 !important;
}

.swi-chat-send {
    font-size: 12px;
    color: rgba(15, 23, 42, 0.45);
}

.regulatory-standards {
    column-gap: 20px;
    margin-bottom: 100px;
    max-width: 100%;
}

.regulatory-standards .logo-wrapper {
    height: 120px;
}

.regulatory-standards .logo-text {
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.90);
    max-width: 145px;
    text-align: center;
    margin: auto auto 0;
    padding-top: 10px;
}

.regulatory-standards img {
    max-width: 145px;
    max-height: 75px;
}

.reviews-header,
.automation-header {
    font-size: 25px;
    font-weight: 700;
    text-align: center;
}

.who-serve-subtitle {
    font-size: 20px;
    font-weight: 700;
    /* hug the longest line so trailing slack doesn't make the
       inter-card gaps look uneven (paired with <br> in the markup) */
    width: max-content;
}

.who-serve-row {
    justify-content: space-between;
    /* keep all four cards on one line so the gaps stay even */
    flex-wrap: nowrap;
    align-items: center;
}

.who-serve-row .col-lg-4 {
    /* size each column to its content so space-between distributes the
       leftover space evenly -> equal gaps between the cards */
    flex: 0 1 max-content;
    min-width: 0;
    max-width: none;
}

.who-serve-card {
    display: flex;
    gap: 15px;
    /* hug the icon + label so there's no trailing slack inside the card */
    width: max-content;
}

/* below the width where all four content-sized cards fit on one line,
   wrap to a centered grid (even column-gap) instead of overflowing */
@media (max-width: 1400px) {
    .who-serve-row {
        flex-wrap: wrap;
        justify-content: center;
        column-gap: 60px;
        row-gap: 28px;
    }

    .who-serve-row .col-lg-4 {
        flex: 0 0 max-content;
    }
}

.swi-sub-page-usp-header-black-text {
    font-weight: 700;
    font-size: 30px;
}

.swi-sub-page-usp-header-highlight,
.swi-pricing-section .swi-h2 .swi-h2-highlight,
.swi-partners-section .swi-h2 .swi-h2-highlight {
    font-size: 60px;
}

.swi-sub-page-usp-p {
    font-size: 18px;
    color: rgba(0, 0, 0, 0.6);
}

.accounting-include .swi-info-pages-sub-header.swi-info-pages-secondary-header {
    margin-bottom: 40px !important;
}


.accounting-include .swi-sub-page-grid-p {
    font-size: 16px;
}

.accounting-include .swi-sub-page-grid-p {
    font-size: 16px;
}

.accounting-include .swi-sub-page-additional-info-grid-row-container-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 30px;
    row-gap: 30px;
}

.swi-sub-page-additional-info-grid-item {
    background-color: #f2f2f2;
    border-radius: 30px;
    overflow: hidden;
    justify-content: space-between;
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.swi-sub-page-additional-info-grid-item svg {
    width: 30px;
    height: 30px;
    flex: none;
}

.swi-docs-needed-col {
    margin-bottom: 30px;
    max-height: 700px;
}

.swi-compare-container {
    max-width: 1200px;
    margin: 0 auto;
}

.swi-compare-title {
    font-size: 60px;
    font-weight: 600;
    margin-bottom: 20px;
}

.swi-compare-cards {
    display: grid;
    grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
    gap: 30px;
    align-items: stretch;
}

.swi-compare-card {
    background-color: #f2f2f2;
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.08);
}

.swi-compare-card--simple {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.swi-compare-card--featured {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-bottom: 0;
    padding-right: 0;
}

.swi-compare-card-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: rgba(0, 0, 0, 0.9);
}

.swi-compare-card-title--accent {
    font-size: 30px;
}

.swi-compare-card.swi-compare-card--featured {
    padding-bottom: 30px
}

.swi-compare-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.swi-compare-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(0, 0, 0, 0.65);
    font-size: 16px;
    font-weight: 500;
}

.swi-compare-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swi-compare-visual-frame {
    width: 100%;
}

.swi-compare-visual-img {
    width: 100%;
    display: block;
    border-radius: 14px;
}

.accounting-include .swi-sub-page-sub-header {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 700;
}

.accounting-include .swi-sub-page-grid-p {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 10px;
    color: rgba(0, 0, 0, 0.6);
    font-weight: 500;
}

.swi-sub-page-grid-content {
    padding: 0 20px;
}

.accounting-include .swi-sub-page-sub-header-inline img {
    width: 30px;
    height: 30px;
}

.swi-usp-5-img {
    width: auto;
}

.swi-usp-content-container {
    max-height: 100%;
}

.swi-industry-pros-container {
    gap: 40px;
}

.swi-industry-pros-container .right-side {
    background-color: #f2f2f2;
    border-radius: 30px;
    overflow: hidden;
    text-align: center;
    transition: all 600ms ease;
}

.swi-banks-image {
    width: auto;
    max-height: 450px;
}

.swi-sub-page-faq-header {
    text-align: center;
    margin-bottom: 30px;
}

.swi-sub-page-faq-header-black-text {
    font-size: 30px;
    font-weight: 700;
}

.swi-sub-page-faq-header-highlight {
    font-size: 60px;
}

.swi-sub-page-faq-btns {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 20px 30px;
    border-radius: 10px;
    /* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03); */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto 20px 0;
}

.swi-sub-page-faq-btn-icon {
    width: 45px;
    height: 45px;
    background-color: #7f1eff;
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 15px;
}

.swi-sub-page-faq-btn-icon>i {
    color: #ffffff;
}

.swi-sub-page-faq-btn-text {
    font-size: 16px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.9);
    text-align: left;
    width: 410px;
    max-width: 100%;
}

.swi-sub-page-more-faq-link {
    text-align: center;
    font-size: 18px;
    color: rgba(0, 0, 0, 0.6);
    margin-top: 0;
}

.swi-partners-section .swi-h2 {
    text-align: left;
    width: 100%;
}

.disclaimer-section {
    background-color: #FEF6FF;
    padding: 90px 0;
    margin-top: 100px;
}

.disclaimer-text {
    color: #8216FD;
    text-align: center;
}

.swi-usp-grid-container {
    max-width: 100%;
}

.swi-partners-img {
    width: 100%;
    margin-left: 0;
    max-width: 400px;
}

.swi-sub-page-usp-img-container-inner-nd-1 {
    justify-content: flex-end;
    height: 100%;
}

.swi-sub-page-usp-img-container-inner-nd-2 {
    justify-content: flex-start;
    height: 100%;
}

.swi-sub-page-usp-img-container-inner-nd-1 img,
.swi-sub-page-usp-img-container-inner-nd-2 img {
    max-height: 500px;
    margin: auto 0;
}

.swi-sub-page-usp-img-container {
    height: 100%;
}

.swi-hero-section .launches-text {
    margin: 0;
    margin-top: 75px;
}

.swi-partners-section {
    max-width: 1280px;
    padding: 0;
}

.swi-partners-container .swi-flex-header {
    flex-direction: row;
}

.swi-flex-header {
  display: flex;
  align-items: center;  
}

.swi-left,
.swi-right {
  flex: 0.5;
}

.swi-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.swi-right {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 500px;
}

.swi-contact-us-addresses.flex {
    column-gap: 0;
}

/* IMPORTANT: make the wrapper and input sizing behave */
.swi-glow-field{
  position: relative;
  width: 100%;
  padding: 3px;             
  border-radius: 12px;
  box-sizing: border-box;
  display: block;
  margin-bottom: 20px;
}

.swi-glow-field>.swi-hero-card-input {
    display: block;
    width: 100%;
    box-sizing: border-box;
    /* key */
    border: 0 !important;
    /* key */
    margin: 0 !important;
    /* key */
    border-radius: 10px;
    background: #fff;
    position: relative;
    z-index: 2;
}

/* gradient border layer */
.swi-glow-field::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, #FFB940, #FF1EA4, #FFB940);
    background-size: 200% 200%;
    animation: swiMove 3s linear infinite;
    z-index: 1;
    opacity: 0.85;
    /* softer border */
}

/* glow halo (only when focused) */
.swi-glow-field::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: inherit;
    background: linear-gradient(90deg, #FFB940, #FF1EA4, #FFB940);
    background-size: 200% 200%;
    animation: swiMove 3s linear infinite;
    filter: blur(10px);
    opacity: 0.10;
    /* idle glow (very subtle) */
    transition: opacity .25s ease;
    z-index: 0;
}

/* stronger when user clicks */
.swi-glow-field:focus-within::after {
    opacity: 0.30;
}

/* tiny hover lift (optional but nice) */
.swi-glow-field:hover::after {
    opacity: 0.18;
}

@keyframes swiMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes swiBreath {
    0% {
        opacity: 0.08;
    }

    50% {
        opacity: 0.14;
    }

    100% {
        opacity: 0.08;
    }
}

.swi-glow-field::after {
    animation: swiMove 3s linear infinite, swiBreath 4s ease-in-out infinite;
}


.swi-sub-page-usp-info-container.usp-text-right {
  max-width: 650px;
  margin-left: auto;
}

.swi-sub-page-usp-info-container.usp-text-left {
  max-width: 650px;
  margin-right: auto;
}

.swi-sub-page-usp-section .swi-sub-page-usp-container-inner,
.who-serve-row {
  margin-left: 30px;
  margin-right: 30px;
}

@media screen and (max-width: 1500px) {
.swi-hero-section-wrapper {
    padding-left: 40px;
    padding-right: 40px;
}
}

@media screen and (max-width: 1200px) {
    .swi-usp-grid {
        border-radius: 20px;
    }

    .swi-usp-grid-container {
        padding: 0;
    }
}

@media (max-width: 992px) {
.swi-contact-us-addresses {
    flex-direction: column;
}

    .swi-compare-cards {
        grid-template-columns: 1fr;
    }

    .swi-compare-card--featured {
        flex-direction: column;
        align-items: flex-start;
    }

    .swi-compare-visual {
        width: 100%;
    }

    .swi-compare-visual-frame {
        max-width: 100%;
    }

    .swi-partners-section {
        padding: 0 20px;
    }

     .swi-industry-pros-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .swi-industry-pros-container .left-side,
  .swi-industry-pros-container .right-side {
    width: 100%;
    max-width: 100%;
    flex: none;
  }

  .swi-industry-pros-container .right-side {
    order: 3;
  }

  .swi-industry-pros-container .left-side {
    order: 1;
  }

  .swi-industry-pros-container .left-side .flex.flex-vcenter {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }

  .swi-verify-image,
  .swi-banks-image {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }

  .swi-industry-pros-logos {
    display: block;
    max-width: 100%;
    height: auto;
    margin-right: 0 !important;
  }

  .swi-industry-pros-container .left-side {
    text-align: center;
  }

  .swi-industry-pros-container .left-side .swi-h2 {
    display: block !important;
    margin-bottom: 24px !important;
  }


}

@media (max-width: 576px) {
    .swi-partners-section .swi-h2-highlight {
  padding: 0 !important;
}

.swi-partners-section .swi-h2 {
    text-align: center;
    width: 100%;
}

    .swi-compare-title {
        font-size: 30px;
    }

    .swi-compare-card {
        padding: 24px;
        border-radius: 24px;
    }

    .swi-compare-card-title,
    .swi-compare-card-title--accent {
        font-size: 20px;
    }

    .swi-sub-page-usp-section .swi-sub-page-usp-container-inner,
.who-serve-row {
  margin-left: 5px;
  margin-right: 5px;
}

}

@media screen and (min-width: 1200px) {

    .swi-sub-page-faq-btns {
        border: 0;
        border-radius: 50px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
    }
}

@media screen and (max-width: 1650px) {
    .swi-hero-chat {
        transform: translate(15px, 25%);
    }

    .swi-hero-float-note {
        left: 73%;
    }
}

@media screen and (max-width: 1400px) {

    .swi-hero-section-info-container,
    .swi-hero-section-desc {
        max-width: 100%;
    }

    .swi-hero-section-container {
        gap: 40px;
    }

    .swi-hero-visual-shell {
        max-width: 520px;
    }

    .accounting-include .swi-sub-page-additional-info-grid-row-container-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .swi-hero-directors,
    .swi-hero-visual-sidebar,
    .swi-hero-chat {
        display: none;
    }

    .swi-hero-float-note {
        max-width: none;
        width: fit-content;
        transform: none;
        left: auto;
        right: 0;
    }
}

@media screen and (max-height: 750px) {

    .swi-hero-float-note {
        max-width: none;
        width: fit-content;
        transform: none;
        left: auto;
        right: 0;
    }

    .swi-hero-directors,
    .swi-hero-visual-sidebar,
    .swi-hero-chat {
        display: none;
    }


    .swi-hero-visual {
        min-height: auto;
        justify-content: flex-start;
    }

    .swi-hero-visual-shell {
        max-width: 100%;
        height: fit-content;
    }
}

@media screen and (max-width: 992px) {

    .swi-hero-section-container {
        flex-direction: column;
        align-items: stretch;
    }

    .swi-hero-visual {
        min-height: auto;
        justify-content: flex-start;
    }

    .swi-hero-visual-shell {
        max-width: 100%;
        height: fit-content;
    }

    .swi-hero-float-note {
        display: none;
    }

    .swi-hero-section-h1 {
        font-size: 40px;
        line-height: 1.2;
    }

    .swi-hero-section-h1-highlight {
        font-size: 48px;
    }

    .regulatory-standards {
        flex-wrap: wrap;
        row-gap: 20px;
        justify-content: center;
    }

    .regulatory-standards .logo-wrapper {
        flex: 1 1 160px;
        max-width: 50%;
        width: 50%;
    }

    .who-serve-row {
        flex-wrap: wrap;
        row-gap: 20px;
    }

    .who-serve-row .col-lg-4 {
        max-width: 100% !important;
        flex: 0 0 100%;
    }

    /* stacked full-width: let the label reflow naturally, drop the
       forced 2-line break used for the equal-gap desktop row */
    .who-serve-subtitle {
        width: auto;
    }

    .who-serve-subtitle br {
        display: none;
    }

    .who-serve-card {
        width: auto;
    }

    .swi-sub-page-usp-container-inner {
        row-gap: 30px;
    }

    .swi-sub-page-usp-img,
    .swi-sub-page-usp-img-nd-1,
    .swi-sub-page-usp-img-nd-2 {
        width: 100%;
        height: auto;
        max-width: 100%;
    }

    .swi-industry-pros-container {
        flex-direction: column;
        row-gap: 25px;
        align-items: stretch;
        max-width: 100%;
    }

    .swi-industry-pros-container .left-side,
    .swi-industry-pros-container .right-side {
        width: 100%;
    }

    .swi-verify-image,
    .swi-banks-image,
    .swi-industry-pros-logos {
        width: 100%;
        height: auto;
    }

    .swi-tabs {
        flex: 1 1 45%;
        max-width: 45%;
    }

    .swi-sub-page-usp-header-highlight,
    .swi-pricing-section .swi-h2 .swi-h2-highlight,
    .swi-partners-section .swi-h2 .swi-h2-highlight {
        font-size: 40px;
    }

    .swi-verify-image,
    .swi-banks-image,
    .swi-industry-pros-logos {
        width: auto;
    }

    .swi-indurstry-pros-section {
        margin-top: 0 !important;
    }

    .swi-usps-section {
        margin-bottom: 0 !important;
    }
}

@media (max-width: 768px) {
    .swi-hero-visual-main {
        padding: 16px;
    }

    .swi-hero-card {
        padding: 16px;
    }

    .swi-hero-visual-search {
        min-width: 140px;
    }

    .swi-hero-section-h1 {
        font-size: 34px;
    }

    .swi-hero-section-h1-highlight {
        font-size: 42px;
    }

    .swi-hero-section-ctas {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .swi-hero-cta,
    .swi-hero-cta-learn-more {
        width: 100%;
        text-align: center;
    }

    .accounting-include .swi-sub-page-additional-info-grid-row-container-inner {
        grid-template-columns: 1fr;
    }

    .swi-sub-page-usp-header,
    .swi-sub-page-usp-info-container {
        text-align: center;
    }

    .swi-sub-page-usp-info-container .swi-sub-page-usp-p {
        text-align: left;
    }

    .swi-compare-card--featured {
        padding-right: 24px;
    }

    .swi-partners-container .swi-flex-header {
        gap: 15px;
        flex-direction: column;
    }

    .swi-partners-img {
        max-width: 100%;
    }
}

@media (max-width: 576px) {

    .swi-hero-section-wrapper {
        padding-top: revert;
    }

    .swi-hero-card-btn {
        width: 100%;
    }

    .swi-hero-chat {
        font-size: 10px;
    }

    .swi-hero-section-h1 {
        font-size: 30px;
        line-height: 50px;
    }

    .swi-hero-section-h1-highlight {
        font-size: 38px;
    }

    .swi-hero-section-desc {
        font-size: 16px;
    }

    .regulatory-standards .logo-wrapper {
        flex: 1 1 140px;
    }

    .swi-tabs {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .swi-sub-page-faq-btns {
        padding: 16px 20px;
    }
}

@media screen and (max-height: 1080px) and (min-width: 1080px) {
    .swi-pricing-scale {
        transform: none;
        zoom: 0.8;
    }
}