* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

.purple {
    color: #5170ff !important;
}

.orange {
    color: #fd8f50 !important;
}

:root {
    --ba-purple: #5170ff;
    --ba-purple-d: #3a5ae0;
    --ba-orange: #fd8f50;
    --ba-orange-d: #e07a3a;
    --ba-dark: #1e293b;
    --ba-mid: #33485d;
    --ba-muted: #5a6a7e;
    --ba-light: #f5f8ff;
    --ba-border: #eef2f8;
    --ba-white: #ffffff;
    --ba-navy: #15233d;
    --ba-navy-d: #1e3a5f;
    --ba-green: #27ae60;
    --ba-red: #e74c3c;
}

.ba-page * {
    box-sizing: border-box;
}

.ba-page {
    font-family: 'Montserrat', -apple-system, sans-serif;
    color: var(--ba-dark);
}

.ba-page a {
    text-decoration: none;
}

.ba-page img {
    max-width: 100%;
    display: block;
}

/* ── shared section shell ── */
.ba-section {
    padding: 72px 0;
}

.ba-section--light {
    background: var(--ba-light);
}

.ba-section--white {
    background: var(--ba-white);
}

.ba-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.ba-header {
    text-align: center;
    margin-bottom: 44px;
}

.ba-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--ba-purple);
    background: rgba(81, 112, 255, .08);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.ba-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--ba-dark);
    line-height: 1.25;
    margin-bottom: 12px;
}

.ba-desc {
    font-size: 15px;
    color: var(--ba-muted);
    line-height: 1.65;
    margin: 0 auto;
}

.ba-purple {
    color: var(--ba-purple) !important;
}

.ba-orange {
    color: var(--ba-orange) !important;
}

@media(max-width:600px) {
    .ba-title {
        font-size: 23px !important;
    }
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.ba-hero {
    position: relative;
    min-height: 78vh;
    overflow: hidden;
    background: var(--ba-navy);
}

.ba-hero .ba-video-container {
    position: absolute;
    inset: 0;
}

.ba-hero .ba-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-hero .ba-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, .45) 55%, rgba(21, 35, 61, .9) 100%);
}

.ba-hero-content {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 90px 20px 70px;
}

.ba-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 22px;
}

.ba-breadcrumb a {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, .75);
    transition: color .2s;
}

.ba-breadcrumb a:hover {
    color: #fff;
}

.ba-breadcrumb .ba-bc-sep {
    font-size: 12px;
    color: var(--ba-orange);
}

.ba-breadcrumb .ba-bc-current {
    font-size: 12px;
    font-weight: 700;
    color: var(--ba-orange);
}

.ba-hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.18;
    margin-bottom: 14px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, .4);
}

.ba-hero-content h4 {
    font-size: .95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .82);
    margin-bottom: 20px;
    line-height: 1.6;
}

.ba-google-tag {
    background: var(--ba-orange);
    padding: 6px 18px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.ba-google-tag p {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.ba-trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
    padding: 18px;
    background: rgba(255, 255, 255, .08);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .15);
}

.ba-trust-badges .ba-tb-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, .88);
}

.ba-trust-badges .ba-tb-item i {
    font-size: 17px;
    color: var(--ba-orange);
}

@media(max-width:600px) {
    .ba-hero-content h1 {
        font-size: 2rem;
    }
}

/* ══════════════════════════════════════
   TRUST BAR
══════════════════════════════════════ */
.ba-trust-bar {
    background: #fff;
    border-bottom: 1px solid var(--ba-border);
    box-shadow: 0 2px 16px rgba(81, 112, 255, .06);
}

.ba-tb-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.ba-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 32px 22px;
    border-right: 1px solid var(--ba-border);
    transition: background .2s;
}

.ba-trust-item:last-child {
    border-right: none;
}

.ba-trust-item:hover {
    background: var(--ba-light);
}

.ba-trust-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ba-trust-icon i {
    font-size: 21px;
}

.ba-trust-icon.g {
    background: rgba(66, 133, 244, .1);
}

.ba-trust-icon.g i {
    color: #4285f4;
}

.ba-trust-icon.s {
    background: rgba(81, 112, 255, .1);
}

.ba-trust-icon.s i {
    color: var(--ba-purple);
}

.ba-trust-icon.p {
    background: rgba(39, 174, 96, .1);
}

.ba-trust-icon.p i {
    color: #27ae60;
}

.ba-trust-icon.a {
    background: rgba(253, 143, 80, .1);
}

.ba-trust-icon.a i {
    color: var(--ba-orange);
}

.ba-tb-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--ba-dark);
}

.ba-tb-sub {
    font-size: 11.5px;
    color: var(--ba-muted);
    margin-top: 2px;
}

@media(max-width:900px) {
    .ba-tb-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .ba-trust-item:nth-child(2) {
        border-right: none;
    }

    .ba-trust-item:nth-child(3) {
        border-top: 1px solid var(--ba-border);
    }

    .ba-trust-item:nth-child(4) {
        border-top: 1px solid var(--ba-border);
        border-right: none;
    }
}

@media(max-width:480px) {
    .ba-tb-inner {
        grid-template-columns: 1fr;
    }

    .ba-trust-item {
        border-right: none !important;
        border-bottom: 1px solid var(--ba-border);
    }
}

/* ══════════════════════════════════════
   QUICK FACTS STRIP
══════════════════════════════════════ */
.ba-facts-strip {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-top: 36px;
}

.ba-fact-box {
    background: #fff;
    border: 1px solid var(--ba-border);
    border-radius: 16px;
    padding: 20px 14px;
    text-align: center;
    box-shadow: 0 4px 14px rgba(30, 41, 59, .05);
}

.ba-fact-val {
    font-size: 21px;
    font-weight: 900;
    color: var(--ba-purple);
    line-height: 1.1;
}

.ba-fact-label {
    font-size: 11px;
    color: var(--ba-muted);
    margin-top: 6px;
    line-height: 1.4;
}

@media(max-width:900px) {
    .ba-facts-strip {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width:560px) {
    .ba-facts-strip {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ══════════════════════════════════════
   ROUTE / TIMELINE
══════════════════════════════════════ */
.ba-timeline {
    position: relative;
    margin-top: 44px;
    padding-left: 26px;
    border-left: 3px solid var(--ba-border);
}

.ba-tl-item {
    position: relative;
    padding-bottom: 34px;
}

.ba-tl-item:last-child {
    padding-bottom: 0;
}

.ba-tl-dot {
    position: absolute;
    left: -35px;
    top: 2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--ba-purple);
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px rgba(81, 112, 255, .25);
}

.ba-tl-item.ba-tl-orange .ba-tl-dot {
    background: var(--ba-orange);
    box-shadow: 0 0 0 3px rgba(253, 143, 80, .25);
}

.ba-tl-item.ba-tl-green .ba-tl-dot {
    background: var(--ba-green);
    box-shadow: 0 0 0 3px rgba(39, 174, 96, .25);
}

.ba-tl-date {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: var(--ba-purple);
    margin-bottom: 4px;
}

.ba-tl-item.ba-tl-orange .ba-tl-date {
    color: var(--ba-orange-d);
}

.ba-tl-item.ba-tl-green .ba-tl-date {
    color: var(--ba-green);
}

.ba-tl-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--ba-dark);
    margin-bottom: 6px;
}

.ba-tl-text {
    font-size: 13.5px;
    color: var(--ba-muted);
    line-height: 1.7;
}

/* ══════════════════════════════════════
   ROUTE CARDS
══════════════════════════════════════ */
.ba-route-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 36px;
}

.ba-route-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--ba-border);
    box-shadow: 0 4px 18px rgba(30, 41, 59, .06);
    transition: transform .25s, box-shadow .25s;
}

.ba-route-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(81, 112, 255, .13);
}

.ba-route-card-top {
    background: linear-gradient(135deg, var(--ba-navy), var(--ba-navy-d));
    padding: 22px 22px 26px;
    color: #fff;
}

.ba-route-pair {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
}

.ba-route-pair .code {
    font-size: 26px;
    font-weight: 900;
}

.ba-route-pair i {
    color: var(--ba-orange);
    font-size: 18px;
}

.ba-route-cities {
    font-size: 12px;
    color: rgba(255, 255, 255, .72);
    display: flex;
    justify-content: space-between;
}

.ba-route-body {
    padding: 18px 22px 22px;
}

.ba-route-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 12px;
    color: var(--ba-muted);
    margin-bottom: 12px;
}

.ba-route-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.ba-route-price {
    font-size: 20px;
    font-weight: 900;
    color: var(--ba-orange);
    margin-bottom: 12px;
}

.ba-route-price span {
    font-size: 11px;
    font-weight: 400;
    color: var(--ba-muted);
}

.ba-route-cta {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, var(--ba-purple), var(--ba-purple-d));
    color: #fff;
    padding: 11px 0;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    transition: opacity .2s;
}

.ba-route-cta:hover {
    opacity: .88;
}

@media(max-width:900px) {
    .ba-route-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:600px) {
    .ba-route-grid {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════════════════
   GENERIC INFO CARD GRID (baggage / meals / lounges / children / pets)
══════════════════════════════════════ */
.ba-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 36px;
}

.ba-info-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.ba-info-card {
    background: #fff;
    border: 1px solid var(--ba-border);
    border-radius: 18px;
    padding: 24px 20px;
    text-align: center;
    transition: transform .25s, box-shadow .25s;
}

.ba-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(81, 112, 255, .1);
}

.ba-info-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(81, 112, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.ba-info-icon i {
    font-size: 21px;
    color: var(--ba-purple);
}

.ba-info-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--ba-dark);
    margin-bottom: 8px;
}

.ba-info-card p {
    font-size: 12.5px;
    color: var(--ba-muted);
    line-height: 1.65;
}

@media(max-width:900px) {

    .ba-info-grid,
    .ba-info-grid.cols-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:560px) {

    .ba-info-grid,
    .ba-info-grid.cols-3 {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════════════════
   CABIN CLASS TABS
══════════════════════════════════════ */
.ba-tab-buttons {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.ba-tab-btn {
    padding: 9px 20px;
    border-radius: 30px;
    font-size: 12.5px;
    font-weight: 700;
    border: 1.5px solid var(--ba-border);
    background: #fff;
    color: var(--ba-muted);
    cursor: pointer;
    transition: all .2s;
    font-family: 'Montserrat', sans-serif;
}

.ba-tab-btn.active,
.ba-tab-btn:hover {
    background: var(--ba-purple);
    color: #fff;
    border-color: var(--ba-purple);
}

.ba-tab-panel {
    display: none;
}

.ba-tab-panel.active {
    display: block;
}

.ba-cabin-card {
    background: #fff;
    border: 1px solid var(--ba-border);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 18px rgba(30, 41, 59, .06);
    max-width: 780px;
    margin: 0 auto;
}

.ba-cabin-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    flex-wrap: wrap;
    gap: 10px;
}

.ba-cabin-head h3 {
    font-size: 19px;
    font-weight: 800;
    color: var(--ba-dark);
}

.ba-cabin-price {
    font-size: 13px;
    font-weight: 700;
    color: var(--ba-purple);
    background: rgba(81, 112, 255, .08);
    padding: 5px 14px;
    border-radius: 20px;
}

.ba-cabin-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 22px;
}

.ba-cabin-list div {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 13px;
    color: var(--ba-mid);
    line-height: 1.55;
}

.ba-cabin-list i {
    color: var(--ba-green);
    font-size: 15px;
    margin-top: 2px;
    flex-shrink: 0;
}

@media(max-width:600px) {
    .ba-cabin-list {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════════════════
   TABLES
══════════════════════════════════════ */
.ba-table-wrap {
    margin-top: 32px;
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid var(--ba-border);
}

.ba-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.ba-table thead th {
    background: linear-gradient(135deg, var(--ba-navy), var(--ba-navy-d));
    color: #fff;
    padding: 13px 16px;
    text-align: left;
    font-weight: 700;
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: .4px;
}

.ba-table tbody tr {
    border-bottom: 1px solid var(--ba-border);
    transition: background .15s;
}

.ba-table tbody tr:hover {
    background: var(--ba-light);
}

.ba-table td {
    padding: 12px 16px;
    vertical-align: middle;
    color: var(--ba-mid);
}

.ba-table td:first-child {
    font-weight: 700;
    color: var(--ba-dark);
}

.ba-freq-pill {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
    background: rgba(39, 174, 96, .1);
    color: #1e8449;
}

.ba-cmp-best {
    background: rgba(81, 112, 255, .04);
}

.ba-cmp-label {
    background: rgba(81, 112, 255, .1);
    color: var(--ba-purple);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    margin-left: 6px;
    display: inline-block;
}

/* ══════════════════════════════════════
   FLEET CARDS
══════════════════════════════════════ */
.ba-fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 34px;
}

.ba-fleet-card {
    background: var(--ba-light);
    border: 1px solid var(--ba-border);
    border-radius: 18px;
    padding: 24px;
    text-align: center;
}

.ba-fleet-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--ba-mid);
    margin: 4px 0 8px;
}

.ba-fleet-use {
    font-size: 12px;
    color: var(--ba-muted);
    line-height: 1.6;
}

.ba-fleet-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    color: var(--ba-purple);
    background: rgba(81, 112, 255, .08);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 8px;
}

@media(max-width:700px) {
    .ba-fleet-grid {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════════════════
   FAQ ACCORDION
══════════════════════════════════════ */
.ba-faq-wrap {
    max-width: 1080px;
    margin: 36px auto 0;
}

.ba-faq-item {
    border: 1px solid var(--ba-border);
    border-radius: 14px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: box-shadow .2s;
    background: #fff;
}

.ba-faq-item:hover {
    box-shadow: 0 6px 20px rgba(81, 112, 255, .08);
}

.ba-faq-q {
    width: 100%;
    padding: 16px 20px;
    background: #fff;
    border: none;
    font-size: 14px;
    font-weight: 600;
    color: var(--ba-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    transition: background .2s;
}

.ba-faq-q:hover {
    background: var(--ba-light);
}

.ba-faq-q i {
    font-size: 18px;
    color: var(--ba-purple);
    transition: transform .3s;
    flex-shrink: 0;
}

.ba-faq-q.open {
    background: var(--ba-light);
}

.ba-faq-q.open i {
    transform: rotate(180deg);
}

.ba-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.ba-faq-a-inner {
    padding: 4px 20px 18px;
    font-size: 13.5px;
    color: var(--ba-muted);
    line-height: 1.75;
    border-top: 1px solid var(--ba-border);
}

.ba-faq-a-inner strong {
    color: var(--ba-dark);
}

/* ══════════════════════════════════════
   INTERNAL LINKS
══════════════════════════════════════ */
.ba-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 32px;
}

.ba-link-pill {
    display: block;
    text-align: center;
    padding: 13px 10px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    background: var(--ba-purple);
    transition: all .22s;
}

.ba-link-pill:hover {
    background: var(--ba-purple-d);
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(81, 112, 255, .28);
}

.ba-link-pill.ba-link-alt {
    background: var(--ba-orange);
}

.ba-link-pill.ba-link-alt:hover {
    background: var(--ba-orange-d);
}

@media(max-width:900px) {
    .ba-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:500px) {
    .ba-links-grid {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════════════════
   CTA
══════════════════════════════════════ */
.ba-cta-section {
    padding: 86px 0;
    background: var(--ba-navy);
    position: relative;
    overflow: hidden;
    margin: 24px;
    border-radius: 30px;
}

.ba-cta-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(81, 112, 255, .18) 0%, transparent 65%);
}

.ba-cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    margin: 0 auto;
    padding: 0 20px;
}

.ba-cta-inner h2 {
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 14px;
}

.ba-cta-inner p {
    font-size: 14.5px;
    color: rgba(255, 255, 255, .72);
    line-height: 1.65;
    margin-bottom: 32px;
    margin-left: auto;
    margin-right: auto;
}

.ba-cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.ba-btn-call,
.ba-btn-wa,
.ba-btn-quote {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 26px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    transition: transform .2s;
}

.ba-btn-call {
    background: linear-gradient(135deg, var(--ba-purple), var(--ba-purple-d));
    color: #fff;
}

.ba-btn-wa {
    background: #25d366;
    color: #fff;
}

.ba-btn-quote {
    background: rgba(255, 255, 255, .1);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .3);
}

.ba-btn-call:hover,
.ba-btn-wa:hover,
.ba-btn-quote:hover {
    transform: translateY(-3px);
}

@media(max-width:600px) {
    .ba-cta-section {
        margin: 12px;
    }

    .ba-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .ba-btn-call,
    .ba-btn-wa,
    .ba-btn-quote {
        justify-content: center;
    }
}

/* ══════════════════════════════════════
   MISC
══════════════════════════════════════ */
.ba-note {
    font-size: 12px;
    color: var(--ba-muted);
    text-align: center;
    margin-top: 16px;
    line-height: 1.6;
}

.ba-vs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 36px;
}

.ba-vs-card {
    background: #fff;
    border: 1px solid var(--ba-border);
    border-radius: 18px;
    padding: 22px;
}

.ba-vs-card h4 {
    font-size: 14px;
    font-weight: 800;
    color: var(--ba-dark);
    margin-bottom: 10px;
    text-align: center;
}

.ba-vs-card ul {
    list-style: none;
}

.ba-vs-card li {
    font-size: 12.5px;
    color: var(--ba-muted);
    line-height: 1.8;
    padding-left: 18px;
    position: relative;
}

.ba-vs-card li::before {
    content: '\2022';
    color: var(--ba-purple);
    position: absolute;
    left: 0;
    font-weight: 900;
}

@media(max-width:900px) {
    .ba-vs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:560px) {
    .ba-vs-grid {
        grid-template-columns: 1fr;
    }
}

.ba-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 30px;
}

.ba-pill {
    font-size: 12px;
    font-weight: 700;
    color: var(--ba-purple);
    background: rgba(81, 112, 255, .08);
    padding: 8px 16px;
    border-radius: 20px;
}