/* =============================================================================
   NSL — Memberships Page Blocks
   GRO-354 / GRO-355: nsl-membership-plans + nsl-monthly-bonus
   ============================================================================= */

/* ---------------------------------------------------------------------------
   CSS custom properties (scoped to membership sections)
   --------------------------------------------------------------------------- */
:root {
    --nsl-mp-cyan:       #64d2f4;
    --nsl-mp-black:      #000000;
    --nsl-mp-navy:       #011424;
    --nsl-mp-dark-bg:    #0f0f11;
    --nsl-mp-border:     #272727;
    --nsl-mp-arrow-bg:   #212227;
    --nsl-mp-white:      #ffffff;
    --nsl-mp-text-muted: rgba(255, 255, 255, 0.65);
    --nsl-mp-secondary:  #B9B9B9;
    --nsl-mp-card-width: 350px;
    --nsl-mp-card-gap:   20px;
    --nsl-mp-radius:     8px;
}

/* =============================================================================
   BLOCK 1 — MEMBERSHIP PLANS (acf/nsl-membership-plans)
   ============================================================================= */

.nsl-membership-plans {
    width: 100%;
    overflow: hidden;
}

.nsl-membership-plans__inner {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 40px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 40px;
}

/* Sidebar */
.nsl-membership-plans__sidebar {
    flex: 0 0 180px;
    width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 0;
}

.nsl-membership-plans__sidebar-award {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 30px;
    gap: 10px;
    background: #0F0F11;
}

.nsl-membership-plans__sidebar-award img,
.nsl-membership-plans__sidebar-brand img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}

/* Content area */
.nsl-membership-plans__content {
    flex: 1 1 auto;
    min-width: 0;
}

/* Section heading — uppercase forced */
.nsl-membership-plans__heading {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 800;
    color: var(--nsl-mp-white);
    margin: 0 0 36px;
    line-height: 1.1;
    text-transform: uppercase;
}

.nsl-membership-plans__heading .accent,
.nsl-monthly-bonus__heading .accent {
    background: linear-gradient(to right, var(--brand-blue) 0%, var(--cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Cards row */
.nsl-membership-plans__cards {
    display: flex;
    flex-direction: row;
    gap: var(--nsl-mp-card-gap);
    align-items: stretch;
}

/* Individual card */
.nsl-membership-plans__card {
    flex: 1 1 var(--nsl-mp-card-width);
    min-width: 0;
    display: flex;
    flex-direction: column;
    padding: 36px 28px 32px;
    border-radius: var(--nsl-mp-radius);
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.nsl-membership-plans__card--black {
    background-color: var(--nsl-mp-black);
    border: 1px solid #3B3535;
    border-radius: 0;
}

.nsl-membership-plans__card--navy {
    background-color: var(--nsl-mp-navy);
}

/* Hover + featured card: scale lift + cyan glow */
.nsl-membership-plans__card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 8px 40px rgba(100, 210, 244, 0.25);
    border-color: rgba(100, 210, 244, 0.45);
}

.nsl-membership-plans__card--featured {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 8px 40px rgba(100, 210, 244, 0.25);
    border-color: var(--nsl-mp-cyan);
    border-radius: 0;
}

/* Card header — 2-column layout: col1 = badge+price, col2 = tier icon */
.nsl-mp-card__header {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.nsl-membership-plans__card .nsl-mp-card__header-col2 svg * {
    transition: fill 0.3s ease;
}

.nsl-membership-plans__card:hover .nsl-mp-card__header-col2 svg * {
    fill: url(#brandGradient) var(--nsl-mp-cyan);
}

.nsl-membership-plans__card--featured .nsl-mp-card__header-col2 svg * {
    fill: url(#brandGradient) var(--nsl-mp-cyan);
}

.nsl-mp-card__header-col1 {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1 1 auto;
    min-width: 0;
}

.nsl-mp-card__header-col2 {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* Tier badges — Poppins 14px Regular uppercase */
.nsl-mp-tier-badge {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--nsl-mp-white);
}

.nsl-mp-tier-badge--pill {
    background-color: var(--nsl-mp-cyan);
    color: var(--nsl-mp-black);
    padding: 4px 14px;
    border-radius: 100px;
    display: inline-block;
}

/* Price wrapper */
.nsl-mp-card__price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 4px;
    margin: 0;
}

/* Main price value — Poppins SemiBold 24px white */
.nsl-mp-card__price-main {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--nsl-mp-white);
    line-height: 1.1;
}

/* "/month" suffix — Poppins Medium 14px secondary text, uppercase */
.nsl-mp-card__price-suffix {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--nsl-mp-secondary);
    text-transform: uppercase;
    line-height: 1.1;
}

/* SVG divider — commitment separator & benefit row separators */
.nsl-mp-divider {
    display: block;
    width: 100%;
    height: 1px;
    overflow: visible;
    margin: 12px 0;
}

/* Commitment text — inherits global <p> size, no font-size override */
.nsl-mp-card__commitment {
    font-family: 'Darker Grotesque', sans-serif;
    color: var(--nsl-mp-text-muted);
    margin: 0 0 16px;
}

/* Benefits heading — Poppins SemiBold 18px cyan */
.nsl-mp-card__benefits-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--nsl-mp-cyan);
    margin: 0 0 12px;
}

/* Benefits list */
.nsl-mp-card__benefits {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

/* Divider list items between benefit rows */
.nsl-mp-card__benefit-divider {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 0;
}

.nsl-mp-card__benefit-divider .nsl-mp-divider {
    margin: 0;
}

/* Benefit row — inherits body font, no font-size/font-weight override */
.nsl-mp-card__benefit {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: 'Darker Grotesque', sans-serif;
    color: var(--nsl-mp-white);
    line-height: 1.35;
    padding: 8px 0;
}

.nsl-mp-card__check {
    flex-shrink: 0;
    margin-top: 2px;
}

/* CTA button — structural only; ns-btn + ns-btn--outline/ns-btn--blue handle visuals */
.nsl-mp-card__cta {
    display: block;
    width: 100%;
    text-align: center;
    justify-content: center;
    margin-top: auto;
}

/* =============================================================================
   BLOCK 2 — MONTHLY BONUS (acf/nsl-monthly-bonus)
   ============================================================================= */

.nsl-monthly-bonus {
    background-color: var(--nsl-mp-dark-bg);
    width: 100%;
    overflow: hidden;
}

.nsl-monthly-bonus__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 40px;
}

/* Heading — uppercase */
.nsl-monthly-bonus__heading {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    line-height: 1;
    margin: 0 0 56px;
    display: flex;
    flex-wrap: wrap;
    gap: 0 12px;
    align-items: baseline;
    text-transform: uppercase;
}

.nsl-monthly-bonus__heading-pre,
.nsl-monthly-bonus__heading-post {
    color: var(--nsl-mp-white);
}

.nsl-monthly-bonus__heading-accent {
    color: var(--nsl-mp-cyan);
}

/* Two-column layout */
.nsl-monthly-bonus__columns {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
}

.nsl-monthly-bonus__left,
.nsl-monthly-bonus__right {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
    min-width: 0;
}

/* Bonus rows — square corners (0px radius), 30px padding, row flex */
.nsl-monthly-bonus__row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 30px;
    border: 1px solid #272727;
    border-radius: 0px;
    margin-bottom: 12px;
    transition: border-color 0.2s ease;
}

.nsl-monthly-bonus__row:last-child {
    margin-bottom: 0;
}

.nsl-monthly-bonus__row:hover {
    border-color: rgba(100, 210, 244, 0.4);
}

/* Left sub-column — top-aligned */
.nsl-monthly-bonus__row-left {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Tier label — Barlow Bold 20px */
.nsl-monthly-bonus__tier-label {
    display: block;
    font-family: 'Barlow', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--nsl-mp-cyan);
    margin-bottom: 6px;
}

/* Tier description — inherits body size, no font-size override */
.nsl-monthly-bonus__tier-desc {
    font-family: 'Darker Grotesque', sans-serif;
    font-weight: 500;
    color: var(--nsl-mp-white);
    margin: 0;
    line-height: 1.4;
}

/* Arrow icon */
.nsl-monthly-bonus__arrow-wrap {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    background-color: var(--nsl-mp-arrow-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Right column wrapper */
.nsl-monthly-bonus__right {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

/* QR wrap — row layout, no background/border, max-width 650px */
.nsl-monthly-bonus__qr-wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 30px;
    background: none !important;
    border: none !important;
    border-radius: 0px !important;
    max-width: 650px;
    width: 100%;
    text-align: left;
}

/* QR code container — 264×264 */
.nsl-monthly-bonus__qr-code {
    flex-shrink: 0;
    width: 264px;
    height: 264px;
    display: block;
}

.nsl-monthly-bonus__qr-code img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0px;
    display: block;
}

/* QR placeholder */
.nsl-monthly-bonus__qr-placeholder {
    flex-shrink: 0;
    width: 264px;
    height: 264px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* App copy — column, left-aligned */
.nsl-monthly-bonus__app-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1 1 auto;
    min-width: 0;
}

/* App copy paragraphs — inherits body size, no font-size override */
.nsl-monthly-bonus__app-copy p {
    font-family: 'Darker Grotesque', sans-serif;
    color: var(--nsl-mp-text-muted);
    margin: 0 0 8px;
    line-height: 1.45;
}

.nsl-monthly-bonus__app-copy p:last-child {
    margin-bottom: 0;
}

/* Last paragraph highlighted in cyan accent */
.nsl-monthly-bonus__app-copy-accent {
    color: var(--nsl-mp-cyan) !important;
}

/* =============================================================================
   RESPONSIVE — tablet & mobile
   ============================================================================= */

/* Tablet: 1024px and below */
@media ( max-width: 1024px ) {
    .nsl-membership-plans__inner {
        padding: 60px 24px;
        gap: 24px;
    }

    .nsl-monthly-bonus__inner {
        padding: 60px 24px;
    }

    .nsl-membership-plans__cards {
        flex-direction: column;
        gap: 12px;
    }

    .nsl-membership-plans__card {
        flex-basis: auto;
    }

    /* Reset hover-lift on stacked layout */
    .nsl-membership-plans__card:hover,
    .nsl-membership-plans__card--featured {
        transform: none;
    }

    .nsl-monthly-bonus__columns {
        flex-direction: column;
    }

    .nsl-monthly-bonus__left,
    .nsl-monthly-bonus__right {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .nsl-monthly-bonus__qr-wrap {
        max-width: 100%;
    }
}

/* Mobile: 767px and below */
@media ( max-width: 767px ) {
    .nsl-membership-plans__inner {
        flex-direction: column;
        padding: 48px 16px;
    }

    .nsl-membership-plans__sidebar {
        flex: 0 0 auto;
        width: 100%;
        flex-direction: row;
        justify-content: center;
        padding-top: 0;
        order: 2;
    }

    .nsl-membership-plans__content {
        order: 1;
    }

    .nsl-membership-plans__sidebar-award,
    .nsl-membership-plans__sidebar-brand {
        max-width: 120px;
    }

    .nsl-monthly-bonus__inner {
        padding: 48px 16px;
    }

    .nsl-monthly-bonus__heading {
        font-size: 36px;
        margin-bottom: 36px;
    }

    .nsl-monthly-bonus__row {
        padding: 20px;
        gap: 16px;
    }

    .nsl-monthly-bonus__qr-wrap {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .nsl-monthly-bonus__qr-code,
    .nsl-monthly-bonus__qr-placeholder {
        width: 200px;
        height: 200px;
    }

    .nsl-monthly-bonus__app-copy {
        align-items: center;
        text-align: center;
    }

    .nsl-mp-card__cta {
        padding: 12px 16px;
    }
}

/* =============================================================================
   BLOCK 3 — AFFIRM STEPS (acf/nsl-affirm-steps)
   ============================================================================= */
.nsl-affirm-steps {
    width: 100%;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.nsl-affirm-steps__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 40px;
}

.nsl-affirm-steps__header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 56px;
    text-align: left;
}

.nsl-affirm-steps__header-left,
.nsl-affirm-steps__header-right {
    flex: 1 1 50%;
    min-width: 0;
}

.nsl-affirm-steps__header-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
}

.nsl-affirm-steps__affirm-logo {
    max-width: 120px;
    height: auto;
}

.nsl-affirm-steps__header-desc {
    font-family: 'Darker Grotesque', sans-serif;
    font-size: clamp(16px, 1.4vw, 20px);
    color: var(--nsl-mp-text-muted);
    margin: 0;
}

.nsl-affirm-steps__heading {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 800;
    color: var(--nsl-mp-white);
    margin: 0 0 16px;
    line-height: 1.1;
    text-transform: uppercase;
}

.nsl-affirm-steps__heading .accent {
    background: linear-gradient(to right, var(--brand-blue) 0%, var(--cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.nsl-affirm-steps__subheading {
    font-family: 'Darker Grotesque', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: var(--nsl-mp-white);
    max-width: 720px;
    margin: 0;
    line-height: 1.5;
}

.nsl-affirm-steps__grid {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 30px;
    align-items: flex-start;
}

.nsl-affirm-steps__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.nsl-affirm-steps__circle-wrapper {
    margin-bottom: 24px;
    position: relative;
    width: 295px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nsl-affirm-steps__circle-outer {
    position: absolute;
    width: 295px;
    height: 280px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.nsl-affirm-steps__circle-middle {
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(180deg, rgba(100, 210, 244, 0.2) 0%, rgba(7, 98, 181, 0.2) 100%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.nsl-affirm-steps__circle {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: black;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.nsl-affirm-steps__item:hover .nsl-affirm-steps__circle {
    border-color: var(--nsl-mp-cyan);
    box-shadow: 0 0 30px rgba(100, 210, 244, 0.35);
    transform: scale(1.05);
}

.nsl-affirm-steps__item:hover .nsl-affirm-steps__circle-outer {
    transform: translate(-50%, -50%) rotate(90deg);
}

.nsl-affirm-steps__num-label {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--nsl-mp-cyan);
    line-height: 1;
}

.nsl-affirm-steps__num-suffix {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--nsl-mp-white);
    letter-spacing: 0.1em;
    margin-top: 4px;
}

.nsl-affirm-steps__item-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--nsl-mp-white);
    margin: 0 0 10px;
    text-transform: uppercase;
}

.nsl-affirm-steps__item-desc {
    font-family: 'Darker Grotesque', sans-serif;
    font-size: clamp(16px, 1.4vw, 20px);
    color: var(--nsl-mp-text-muted);
    line-height: 1.4;
    margin: 0;
}


/* =============================================================================
   BLOCK 4 — SERVICE PACKAGES (acf/nsl-service-packages)
   ============================================================================= */
.nsl-service-packages {
    width: 100%;
    overflow: hidden;
}

.nsl-service-packages__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 40px;
}

.nsl-service-packages__header {
    text-align: center;
    margin-bottom: 56px;
}

.nsl-service-packages__heading {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 800;
    color: var(--nsl-mp-white);
    margin: 0 0 16px;
    line-height: 1.1;
    text-transform: uppercase;
}

.nsl-service-packages__heading .accent {
    background: linear-gradient(to right, var(--brand-blue) 0%, var(--cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.nsl-service-packages__subheading {
    font-family: 'Darker Grotesque', sans-serif;
    font-size: 18px;
    color: var(--nsl-mp-text-muted);
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.5;
}

.nsl-service-packages__slider-container {
    position: relative;
}

.nsl-service-packages__nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.nsl-service-packages__nav .swiper-button-disabled {
    display: none !important;
}

.nsl-service-packages__card {
    height: auto;
    background-color: var(--nsl-mp-navy);
    border: 1px solid rgba(100, 210, 244, 0.3);
    border-radius: 0;
    padding: 36px 28px 32px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.nsl-service-packages__card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 8px 40px rgba(100, 210, 244, 0.25);
    border-color: var(--nsl-mp-cyan);
}

.nsl-service-packages__card-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.nsl-service-packages__price-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nsl-service-packages__price-icon {
    display: flex;
    align-items: center;
}

.nsl-service-packages__price {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--nsl-mp-cyan);
    line-height: 1;
}

.nsl-service-packages__upsell {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--nsl-mp-white);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.nsl-service-packages__card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--nsl-mp-cyan);
    margin: 0 0 16px;
    text-transform: uppercase;
    line-height: 1.2;
}

.nsl-service-packages__duration {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

.nsl-service-packages__duration-icon {
    display: flex;
    align-items: center;
}

.nsl-service-packages__duration-text {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--nsl-mp-white);
    text-transform: uppercase;
}

.nsl-service-packages__list {
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.nsl-service-packages__list-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: 'Darker Grotesque', sans-serif;
    font-size: clamp(16px, 1.4vw, 20px);
    font-weight: 600;
    color: var(--nsl-mp-white);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nsl-service-packages__list-item:last-child {
    border-bottom: none;
}

.nsl-service-packages__bullet {
    color: var(--nsl-mp-cyan);
    font-weight: bold;
}

.nsl-service-packages__card-footer {
    margin-top: auto;
    padding-top: 16px;
}

.nsl-service-packages__footer-text {
    font-family: 'Darker Grotesque', sans-serif;
    font-size: clamp(16px, 1.4vw, 20px);
    color: var(--nsl-mp-text-muted);
    margin: 0;
    line-height: 1.4;
}


/* =============================================================================
   RESPONSIVE — tablet & mobile
   ============================================================================= */
@media ( max-width: 1024px ) {
    .nsl-affirm-steps__header {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    
    .nsl-affirm-steps__header-right {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .nsl-affirm-steps__grid {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .nsl-affirm-steps__inner,
    .nsl-service-packages__inner {
        padding: 60px 24px;
    }
}

@media ( max-width: 767px ) {
    .nsl-affirm-steps__inner,
    .nsl-service-packages__inner {
        padding: 48px 16px;
    }

    .nsl-affirm-steps__circle {
        width: 110px;
        height: 110px;
    }

    .nsl-affirm-steps__num-label {
        font-size: 26px;
    }
}

/* =============================================================================
   SERVICE PACKAGES — CTA Button (GRO-356)
   ============================================================================= */
.nsl-service-packages__cta {
    margin-top: 24px;
}

.nsl-service-packages__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 14px 20px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none !important;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.nsl-service-packages__btn:hover {
    border-color: #64d2f4;
    color: #64d2f4;
    box-shadow: 0 0 12px rgba(100, 210, 244, 0.2);
}

/* Connector lines removed per user request */
