/* International Tour single-event styles, ported verbatim from @H's design
   (staging page 10347, widget 1). Two changes only: his Manrope @import is
   dropped (Poppins is the locked brand font and already loaded), and the hero
   top padding gains the sticky-header clearance the B2B hero also needed -
   his page was standalone with nothing above it. */
.smbf-tour-hero,
.smbf-tour-hero *,
.smbf-tour-hero *::before,
.smbf-tour-hero *::after {
    box-sizing: border-box;
}

.smbf-tour-hero {
    position: relative;
    width: 100%;
    overflow: hidden;

    padding: calc(64px + var(--smbf-headroom, 96px)) 24px 48px;

    font-family: inherit;

    background:
        radial-gradient(
            circle at 50% 5%,
            #ffffff 0%,
            #f8fbff 55%,
            #eef5fc 100%
        );

    color: #071A3A;
}


/* =========================
   DECORATIVE ELEMENTS
========================= */

.smbf-tour-hero__rings {
    position: absolute;

    top: -55px;
    left: -95px;

    width: 280px;
    height: 280px;

    border-radius: 50%;

    background:
        repeating-radial-gradient(
            circle,
            transparent 0,
            transparent 31px,
            rgba(20, 91, 199, 0.09) 32px,
            transparent 33px
        );

    pointer-events: none;
}

.smbf-tour-hero__dots {
    position: absolute;

    right: 5%;
    top: 54%;

    width: 112px;
    height: 112px;

    opacity: 0.72;

    background-image:
        radial-gradient(circle, #2870C5 2px, transparent 2.5px),
        radial-gradient(circle, #1598A7 2px, transparent 2.5px);

    background-size: 26px 26px;
    background-position: 0 0, 13px 13px;
}


/* =========================
   INNER
========================= */

.smbf-tour-hero__inner {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1180px;

    margin: 0 auto;

    text-align: center;
}


/* =========================
   EYEBROW
========================= */

.smbf-tour-hero__eyebrow {
    display: inline-block;

    margin-bottom: 28px;

    color: #148EA4;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 4px;

    text-transform: uppercase;
}

.smbf-tour-hero__eyebrow::after {
    content: "";

    display: block;

    width: 62px;
    height: 2px;

    margin: 13px auto 0;

    background: linear-gradient(
        90deg,
        #145BC7 0%,
        #1598A7 55%,
        #58A844 100%
    );
}


/* =========================
   HEADING
========================= */

.smbf-tour-hero__title {
    max-width: 980px;

    margin: 0 auto;

    color: #071A3A;

    font-size: clamp(48px, 5vw, 72px);
    font-weight: 800;

    line-height: 1.03;

    letter-spacing: -2.4px;
}

.smbf-tour-hero__highlight {
    background: linear-gradient(
        90deg,
        #145BC7 0%,
        #1598A7 55%,
        #58A844 100%
    );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
    color: transparent;
}


/* =========================
   ROUTE
========================= */

.smbf-tour-hero__route {
    margin-top: 22px;

    color: #0A2D68;

    font-size: 17px;
    font-weight: 700;

    line-height: 1.5;

    letter-spacing: 0.1px;
}

.smbf-tour-hero__route span {
    color: #1598A7;

    margin: 0 8px;
}


/* =========================
   DESCRIPTION
========================= */

.smbf-tour-hero__description {
    max-width: 760px;

    margin: 18px auto 0;

    color: #334666;

    font-size: 16px;
    font-weight: 500;

    line-height: 1.7;
}


/* =========================
   TOUR META
========================= */

.smbf-tour-hero__meta {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    flex-wrap: wrap;

    margin-top: 20px;

    color: #60708A;

    font-size: 13px;
    font-weight: 700;
}

.smbf-tour-hero__meta-dot {
    width: 4px;
    height: 4px;

    border-radius: 50%;

    background: #1598A7;
}


/* =========================
   BUTTON
========================= */

.smbf-tour-hero__cta-wrap {
    margin-top: 30px;
}

.smbf-tour-hero__cta {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 270px;

    padding: 15px 24px;

    border-radius: 8px;

    background: linear-gradient(
        90deg,
        #145BC7 0%,
        #1598A7 55%,
        #58A844 100%
    );

    color: #ffffff;

    text-decoration: none;

    font-size: 15px;
    font-weight: 700;

    box-shadow:
        0 8px 20px rgba(8, 47, 111, 0.12);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.smbf-tour-hero__cta-text {
    flex: 1;

    text-align: center;
}

.smbf-tour-hero__cta-arrow {
    margin-left: 20px;

    font-size: 22px;
    font-weight: 400;

    line-height: 1;

    transition: transform .25s ease;
}

.smbf-tour-hero__cta:hover {
    transform: translateY(-2px);

    box-shadow:
        0 12px 26px rgba(8, 47, 111, 0.17);
}

.smbf-tour-hero__cta:hover
.smbf-tour-hero__cta-arrow {
    transform: translateX(4px);
}


/* =========================
   RATING
========================= */

.smbf-tour-hero__rating {
    margin-top: 25px;

    color: #162A4C;

    font-size: 12px;
    font-weight: 600;
}

.smbf-tour-hero__stars {
    margin-top: 6px;

    color: #0B2A63;

    font-size: 20px;

    letter-spacing: 2px;

    line-height: 1;
}


/* =========================
   TABLET
========================= */

@media (max-width: 1024px) {

    .smbf-tour-hero {
        /* @H's own breakpoint reset the padding SHORTHAND, which wiped the
           calc() header clearance from the base rule and put the eyebrow back
           under the nav on tablet. Keep his values, re-add the clearance. */
        padding:
            calc(56px + var(--smbf-headroom, 88px))
            24px
            44px;
    }

    .smbf-tour-hero__title {
        font-size: clamp(44px, 6vw, 62px);
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .smbf-tour-hero {
        /* same on mobile, where the header is taller relative to the viewport */
        padding:
            calc(42px + var(--smbf-headroom, 76px))
            18px
            38px;
    }

    .smbf-tour-hero__rings {
        width: 210px;
        height: 210px;

        left: -115px;
        top: -50px;
    }

    .smbf-tour-hero__dots {
        display: none;
    }

    .smbf-tour-hero__eyebrow {
        margin-bottom: 22px;

        font-size: 11px;

        letter-spacing: 3px;
    }

    .smbf-tour-hero__title {
        font-size: 36px;

        line-height: 1.08;

        letter-spacing: -1.5px;
    }

    .smbf-tour-hero__route {
        margin-top: 18px;

        font-size: 15px;
    }

    .smbf-tour-hero__route span {
        margin: 0 5px;
    }

    .smbf-tour-hero__description {
        margin-top: 16px;

        font-size: 15px;

        line-height: 1.6;
    }

    .smbf-tour-hero__meta {
        gap: 8px;

        margin-top: 17px;

        font-size: 12px;
    }

    .smbf-tour-hero__cta-wrap {
        margin-top: 24px;
    }

    .smbf-tour-hero__cta {
        width: 100%;

        min-width: 0;
        max-width: 310px;

        font-size: 14px;
    }

    .smbf-tour-hero__rating {
        margin-top: 20px;
    }

}


/* --- TOUR OVERVIEW, ported from @H widget 2 --- */
.smbf-tour-details,
.smbf-tour-details *,
.smbf-tour-details *::before,
.smbf-tour-details *::after {
    box-sizing: border-box;
}

.smbf-tour-details {
    position: relative;
    width: 100%;
    overflow: hidden;

    padding: 54px 24px 58px;

    font-family: inherit;

    background:
        linear-gradient(
            180deg,
            #f8fbff 0%,
            #eef5fc 100%
        );

    color: #071A3A;
}


/* =========================
   DECORATIVE ELEMENTS
========================= */

.smbf-tour-details__rings {
    position: absolute;

    left: -100px;
    top: -55px;

    width: 230px;
    height: 230px;

    border-radius: 50%;

    background:
        repeating-radial-gradient(
            circle,
            transparent 0,
            transparent 28px,
            rgba(20, 91, 199, 0.08) 29px,
            transparent 30px
        );

    pointer-events: none;
}

.smbf-tour-details__dots {
    position: absolute;

    right: 4%;
    top: 50%;

    width: 105px;
    height: 105px;

    opacity: 0.65;

    background-image:
        radial-gradient(circle, #2870C5 2px, transparent 2.5px),
        radial-gradient(circle, #1598A7 2px, transparent 2.5px);

    background-size: 26px 26px;
    background-position: 0 0, 13px 13px;
}


/* =========================
   INNER
========================= */

.smbf-tour-details__inner {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1180px;

    margin: 0 auto;
}


/* =========================
   EYEBROW
========================= */

.smbf-tour-details__eyebrow-wrap {
    text-align: center;

    margin-bottom: 30px;
}

.smbf-tour-details__eyebrow {
    display: inline-block;

    color: #148EA4;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 4px;

    text-transform: uppercase;
}

.smbf-tour-details__eyebrow::after {
    content: "";

    display: block;

    width: 62px;
    height: 2px;

    margin: 13px auto 0;

    background: linear-gradient(
        90deg,
        #145BC7 0%,
        #1598A7 55%,
        #58A844 100%
    );
}


/* =========================
   GRID
========================= */

.smbf-tour-details__grid {
    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 18px;
}


/* =========================
   CARD
========================= */

.smbf-tour-detail-card {
    min-height: 185px;

    padding: 24px 18px;

    background: rgba(255,255,255,0.97);

    border: 1px solid rgba(20, 91, 199, 0.08);

    border-radius: 16px;

    box-shadow:
        0 10px 28px rgba(11, 42, 99, 0.06);

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.smbf-tour-detail-card:hover {
    transform: translateY(-3px);

    box-shadow:
        0 14px 32px rgba(11, 42, 99, 0.09);
}


/* =========================
   ICON
========================= */

.smbf-tour-detail-card__icon {
    width: 58px;
    height: 58px;

    margin-bottom: 15px;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            rgba(20,91,199,0.09) 0%,
            rgba(21,152,167,0.09) 55%,
            rgba(88,168,68,0.09) 100%
        );

    color: #145BC7;
}

.smbf-tour-detail-card__icon svg {
    width: 28px;
    height: 28px;

    fill: none;

    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================
   LABEL
========================= */

.smbf-tour-detail-card__label {
    margin-bottom: 7px;

    color: #7A89A2;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.8px;

    text-transform: uppercase;
}


/* =========================
   VALUE
========================= */

.smbf-tour-detail-card__value {
    color: #0A2D68;

    font-size: 16px;
    font-weight: 700;

    line-height: 1.45;
}


/* =========================
   TABLET
========================= */

@media (max-width: 1024px) {

    .smbf-tour-details__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .smbf-tour-detail-card {
        min-height: 170px;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .smbf-tour-details {
        padding:
            42px
            18px
            44px;
    }

    .smbf-tour-details__rings {
        width: 190px;
        height: 190px;

        left: -105px;
        top: -35px;
    }

    .smbf-tour-details__dots {
        display: none;
    }

    .smbf-tour-details__eyebrow-wrap {
        margin-bottom: 24px;
    }

    .smbf-tour-details__eyebrow {
        font-size: 11px;

        letter-spacing: 3px;
    }

    .smbf-tour-details__grid {
        grid-template-columns: 1fr;

        gap: 12px;
    }

    .smbf-tour-detail-card {
        min-height: 0;

        padding: 18px;

        display: grid;

        grid-template-columns: 52px 1fr;

        column-gap: 14px;

        text-align: left;

        align-items: center;
    }

    .smbf-tour-detail-card__icon {
        width: 52px;
        height: 52px;

        margin: 0;

        grid-row: span 2;
    }

    .smbf-tour-detail-card__icon svg {
        width: 25px;
        height: 25px;
    }

    .smbf-tour-detail-card__label {
        margin-bottom: 2px;

        font-size: 10px;
    }

    .smbf-tour-detail-card__value {
        font-size: 15px;
    }

}


/* --- TOUR ROUTE, ported from @H widget 3 --- */
.smbf-tour-route,
.smbf-tour-route *,
.smbf-tour-route *::before,
.smbf-tour-route *::after {
    box-sizing: border-box;
}

.smbf-tour-route {
    position: relative;
    width: 100%;
    overflow: hidden;

    padding: 72px 24px 76px;

    font-family: inherit;

    background: #ffffff;

    color: #071A3A;
}


/* =========================
   DECORATION
========================= */

.smbf-tour-route__rings {
    position: absolute;

    right: -110px;
    top: -70px;

    width: 250px;
    height: 250px;

    border-radius: 50%;

    background:
        repeating-radial-gradient(
            circle,
            transparent 0,
            transparent 29px,
            rgba(20,91,199,0.07) 30px,
            transparent 31px
        );

    pointer-events: none;
}

.smbf-tour-route__dots {
    position: absolute;

    left: 3%;
    bottom: 80px;

    width: 100px;
    height: 100px;

    opacity: 0.45;

    background-image:
        radial-gradient(circle, #2870C5 2px, transparent 2.5px),
        radial-gradient(circle, #1598A7 2px, transparent 2.5px);

    background-size: 25px 25px;
    background-position: 0 0, 12px 12px;
}


/* =========================
   INNER
========================= */

.smbf-tour-route__inner {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1180px;

    margin: 0 auto;
}


/* =========================
   HEADER
========================= */

.smbf-tour-route__header {
    max-width: 760px;

    margin: 0 auto 46px;

    text-align: center;
}

.smbf-tour-route__eyebrow {
    display: inline-block;

    color: #148EA4;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 4px;

    text-transform: uppercase;
}

.smbf-tour-route__eyebrow::after {
    content: "";

    display: block;

    width: 62px;
    height: 2px;

    margin: 13px auto 0;

    background: linear-gradient(
        90deg,
        #145BC7 0%,
        #1598A7 55%,
        #58A844 100%
    );
}

.smbf-tour-route__title {
    margin: 20px 0 0;

    color: #071A3A;

    font-size: clamp(38px, 3.4vw, 48px);
    font-weight: 800;

    line-height: 1.08;

    letter-spacing: -1.7px;
}

.smbf-tour-route__highlight {
    background: linear-gradient(
        90deg,
        #145BC7 0%,
        #1598A7 55%,
        #58A844 100%
    );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
    color: transparent;
}

.smbf-tour-route__description {
    margin: 16px auto 0;

    max-width: 680px;

    color: #4C5D78;

    font-size: 16px;
    font-weight: 500;

    line-height: 1.7;
}


/* =========================
   ROUTE LINE
========================= */

.smbf-tour-route__journey {
    position: relative;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 26px;

    margin-bottom: 34px;
}

.smbf-tour-route__journey::before {
    content: "";

    position: absolute;

    top: 28px;
    left: 16.5%;
    right: 16.5%;

    height: 2px;

    background: linear-gradient(
        90deg,
        #145BC7 0%,
        #1598A7 50%,
        #58A844 100%
    );

    opacity: 0.35;

    z-index: 0;
}

.smbf-tour-route__stop {
    position: relative;
    z-index: 1;

    text-align: center;
}

.smbf-tour-route__number {
    width: 56px;
    height: 56px;

    margin: 0 auto 13px;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    background: linear-gradient(
        135deg,
        #145BC7 0%,
        #1598A7 58%,
        #58A844 100%
    );

    color: #ffffff;

    font-size: 14px;
    font-weight: 800;

    box-shadow:
        0 8px 20px rgba(20,91,199,0.16);
}

.smbf-tour-route__stop-city {
    color: #0A2D68;

    font-size: 17px;
    font-weight: 800;
}

.smbf-tour-route__stop-date {
    margin-top: 4px;

    color: #7A89A2;

    font-size: 12px;
    font-weight: 600;
}


/* =========================
   DESTINATION CARDS
========================= */

.smbf-tour-route__cards {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}

.smbf-tour-route-card {
    position: relative;

    overflow: hidden;

    min-height: 310px;

    padding: 28px;

    border-radius: 18px;

    background: #ffffff;

    border: 1px solid rgba(20,91,199,0.09);

    box-shadow:
        0 14px 34px rgba(11,42,99,0.07);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.smbf-tour-route-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 18px 40px rgba(11,42,99,0.10);
}

.smbf-tour-route-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 100%;
    height: 4px;

    background: linear-gradient(
        90deg,
        #145BC7 0%,
        #1598A7 55%,
        #58A844 100%
    );
}


/* =========================
   CARD TOP
========================= */

.smbf-tour-route-card__top {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-bottom: 22px;
}

.smbf-tour-route-card__stop {
    color: #1598A7;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.smbf-tour-route-card__flag {
    min-width: 42px;
    height: 42px;

    padding: 0 10px;

    border-radius: 50px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #F0F6FD;

    font-size: 21px;
}


/* =========================
   CARD TITLE
========================= */

.smbf-tour-route-card__city {
    margin: 0;

    color: #071A3A;

    font-size: 27px;
    font-weight: 800;

    line-height: 1.15;

    letter-spacing: -0.8px;
}

.smbf-tour-route-card__country {
    margin-top: 5px;

    color: #74839A;

    font-size: 13px;
    font-weight: 600;
}


/* =========================
   META ROWS
========================= */

.smbf-tour-route-card__meta {
    margin-top: 24px;
}

.smbf-tour-route-card__row {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    padding: 11px 0;

    border-bottom: 1px solid #EDF1F6;
}

.smbf-tour-route-card__row:last-child {
    border-bottom: none;
}

.smbf-tour-route-card__icon {
    flex: 0 0 auto;

    width: 34px;
    height: 34px;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            rgba(20,91,199,0.08),
            rgba(21,152,167,0.08),
            rgba(88,168,68,0.08)
        );

    color: #145BC7;
}

.smbf-tour-route-card__icon svg {
    width: 17px;
    height: 17px;

    fill: none;

    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.smbf-tour-route-card__meta-label {
    color: #8290A5;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.3px;

    text-transform: uppercase;
}

.smbf-tour-route-card__meta-value {
    margin-top: 3px;

    color: #193A6A;

    font-size: 13px;
    font-weight: 700;

    line-height: 1.45;
}


/* =========================
   FOOT NOTE
========================= */

.smbf-tour-route__note {
    max-width: 760px;

    margin: 30px auto 0;

    text-align: center;

    color: #62718A;

    font-size: 13px;
    font-weight: 500;

    line-height: 1.6;
}


/* =========================
   TABLET
========================= */

@media (max-width: 1000px) {

    .smbf-tour-route__cards {
        grid-template-columns: 1fr;
    }

    .smbf-tour-route-card {
        min-height: 0;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .smbf-tour-route {
        padding:
            52px
            18px
            56px;
    }

    .smbf-tour-route__rings {
        width: 190px;
        height: 190px;

        right: -105px;
        top: -45px;
    }

    .smbf-tour-route__dots {
        display: none;
    }

    .smbf-tour-route__header {
        margin-bottom: 34px;
    }

    .smbf-tour-route__eyebrow {
        font-size: 11px;

        letter-spacing: 3px;
    }

    .smbf-tour-route__title {
        font-size: 34px;

        line-height: 1.1;

        letter-spacing: -1.3px;
    }

    .smbf-tour-route__description {
        font-size: 15px;
    }


    /* Journey becomes vertical */

    .smbf-tour-route__journey {
        grid-template-columns: 1fr;

        gap: 18px;

        margin-bottom: 28px;
    }

    .smbf-tour-route__journey::before {
        top: 28px;
        bottom: 28px;

        left: 27px;
        right: auto;

        width: 2px;
        height: auto;
    }

    .smbf-tour-route__stop {
        display: grid;

        grid-template-columns: 56px 1fr;

        column-gap: 15px;

        text-align: left;

        align-items: center;
    }

    .smbf-tour-route__number {
        margin: 0;

        grid-row: span 2;
    }

    .smbf-tour-route__stop-city {
        font-size: 16px;
    }

    .smbf-tour-route-card {
        padding: 24px 20px;

        border-radius: 16px;
    }

    .smbf-tour-route-card__city {
        font-size: 24px;
    }

}


/* --- TOUR GALLERY, ported from @H widget 4 --- */
.smbf-tour-gallery,
.smbf-tour-gallery *,
.smbf-tour-gallery *::before,
.smbf-tour-gallery *::after {
    box-sizing: border-box;
}

.smbf-tour-gallery {
    position: relative;
    width: 100%;
    overflow: hidden;

    padding: 72px 24px 76px;

    font-family: inherit;

    background: #f7faff;

    color: #071A3A;
}


/* =========================
   DECORATION
========================= */

.smbf-tour-gallery__rings {
    position: absolute;

    left: -110px;
    bottom: -95px;

    width: 260px;
    height: 260px;

    border-radius: 50%;

    background:
        repeating-radial-gradient(
            circle,
            transparent 0,
            transparent 30px,
            rgba(20,91,199,0.07) 31px,
            transparent 32px
        );

    pointer-events: none;
}

.smbf-tour-gallery__dots {
    position: absolute;

    right: 4%;
    top: 90px;

    width: 105px;
    height: 105px;

    opacity: 0.45;

    background-image:
        radial-gradient(circle, #2870C5 2px, transparent 2.5px),
        radial-gradient(circle, #1598A7 2px, transparent 2.5px);

    background-size: 26px 26px;
    background-position: 0 0, 13px 13px;
}


/* =========================
   INNER
========================= */

.smbf-tour-gallery__inner {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1180px;

    margin: 0 auto;
}


/* =========================
   HEADER
========================= */

.smbf-tour-gallery__header {
    max-width: 760px;

    margin: 0 auto 38px;

    text-align: center;
}

.smbf-tour-gallery__eyebrow {
    display: inline-block;

    color: #148EA4;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 4px;

    text-transform: uppercase;
}

.smbf-tour-gallery__eyebrow::after {
    content: "";

    display: block;

    width: 62px;
    height: 2px;

    margin: 13px auto 0;

    background: linear-gradient(
        90deg,
        #145BC7 0%,
        #1598A7 55%,
        #58A844 100%
    );
}

.smbf-tour-gallery__title {
    margin: 20px 0 0;

    color: #071A3A;

    font-size: clamp(38px, 3.4vw, 48px);
    font-weight: 800;

    line-height: 1.08;

    letter-spacing: -1.7px;
}

.smbf-tour-gallery__highlight {
    background: linear-gradient(
        90deg,
        #145BC7 0%,
        #1598A7 55%,
        #58A844 100%
    );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
    color: transparent;
}

.smbf-tour-gallery__description {
    max-width: 660px;

    margin: 16px auto 0;

    color: #4C5D78;

    font-size: 16px;
    font-weight: 500;

    line-height: 1.7;
}


/* =========================
   GALLERY BOX
========================= */

.smbf-tour-gallery__box {
    width: 100%;

    padding: 14px;

    background: #ffffff;

    border: 1px solid rgba(20,91,199,0.09);

    border-radius: 20px;

    box-shadow:
        0 14px 36px rgba(11,42,99,0.07);
}


/* =========================
   IMAGES
========================= */

.smbf-tour-gallery__grid {
    display: grid;

    grid-template-columns:
        1.15fr
        1fr
        1fr;

    gap: 12px;
}

.smbf-tour-gallery__item {
    position: relative;

    overflow: hidden;

    min-height: 390px;

    border-radius: 15px;

    background: #eaf1f8;
}

.smbf-tour-gallery__item img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .45s ease;
}

.smbf-tour-gallery__item:hover img {
    transform: scale(1.035);
}


/* =========================
   LOCATION LABEL
========================= */

.smbf-tour-gallery__label {
    position: absolute;

    left: 18px;
    bottom: 18px;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 9px 13px;

    border-radius: 50px;

    background: rgba(7,26,58,0.82);

    backdrop-filter: blur(8px);

    color: #ffffff;

    font-size: 12px;
    font-weight: 700;

    line-height: 1;
}

.smbf-tour-gallery__label-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #58A844;
}


/* =========================
   ARROW
========================= */

.smbf-tour-gallery__arrow {
    position: absolute;

    right: 18px;
    bottom: 18px;

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ffffff;

    color: #0B3477;

    font-size: 21px;
    font-weight: 500;

    box-shadow:
        0 8px 20px rgba(7,26,58,0.12);
}


/* =========================
   TABLET
========================= */

@media (max-width: 1000px) {

    .smbf-tour-gallery__grid {
        grid-template-columns:
            1fr
            1fr;
    }

    .smbf-tour-gallery__item:first-child {
        grid-column: 1 / -1;
    }

    .smbf-tour-gallery__item {
        min-height: 320px;
    }

    .smbf-tour-gallery__item:first-child {
        min-height: 390px;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .smbf-tour-gallery {
        padding:
            52px
            18px
            56px;
    }

    .smbf-tour-gallery__rings {
        width: 190px;
        height: 190px;

        left: -110px;
        bottom: -75px;
    }

    .smbf-tour-gallery__dots {
        display: none;
    }

    .smbf-tour-gallery__header {
        margin-bottom: 28px;
    }

    .smbf-tour-gallery__eyebrow {
        font-size: 11px;

        letter-spacing: 3px;
    }

    .smbf-tour-gallery__title {
        font-size: 34px;

        line-height: 1.1;

        letter-spacing: -1.3px;
    }

    .smbf-tour-gallery__description {
        font-size: 15px;
    }

    .smbf-tour-gallery__box {
        padding: 10px;

        border-radius: 16px;
    }

    .smbf-tour-gallery__grid {
        display: flex;

        overflow-x: auto;

        gap: 10px;

        scroll-snap-type: x mandatory;

        scrollbar-width: none;
    }

    .smbf-tour-gallery__grid::-webkit-scrollbar {
        display: none;
    }

    .smbf-tour-gallery__item,
    .smbf-tour-gallery__item:first-child {
        flex: 0 0 84%;

        min-height: 330px;

        grid-column: auto;

        scroll-snap-align: start;
    }

    .smbf-tour-gallery__label {
        left: 14px;
        bottom: 14px;

        font-size: 11px;
    }

    .smbf-tour-gallery__arrow {
        right: 14px;
        bottom: 14px;

        width: 38px;
        height: 38px;
    }

}


/* --- BUSINESS OPPORTUNITIES, ported from @H widget 5 --- */
.smbf-tour-opportunities,
.smbf-tour-opportunities *,
.smbf-tour-opportunities *::before,
.smbf-tour-opportunities *::after {
    box-sizing: border-box;
}

.smbf-tour-opportunities {
    position: relative;
    width: 100%;
    overflow: hidden;

    padding: 72px 24px 76px;

    font-family: inherit;

    background: #ffffff;

    color: #071A3A;
}


/* =========================
   DECORATION
========================= */

.smbf-tour-opportunities__rings {
    position: absolute;

    right: -110px;
    top: -85px;

    width: 250px;
    height: 250px;

    border-radius: 50%;

    background:
        repeating-radial-gradient(
            circle,
            transparent 0,
            transparent 29px,
            rgba(20,91,199,0.07) 30px,
            transparent 31px
        );

    pointer-events: none;
}

.smbf-tour-opportunities__dots {
    position: absolute;

    left: 3%;
    bottom: 70px;

    width: 100px;
    height: 100px;

    opacity: 0.45;

    background-image:
        radial-gradient(circle, #2870C5 2px, transparent 2.5px),
        radial-gradient(circle, #1598A7 2px, transparent 2.5px);

    background-size: 25px 25px;
    background-position: 0 0, 12px 12px;
}


/* =========================
   INNER
========================= */

.smbf-tour-opportunities__inner {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1180px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(380px, 0.95fr);

    gap: 68px;

    align-items: center;
}


/* =========================
   CONTENT
========================= */

.smbf-tour-opportunities__content {
    max-width: 650px;
}


/* =========================
   EYEBROW
========================= */

.smbf-tour-opportunities__eyebrow {
    display: inline-block;

    color: #148EA4;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 4px;

    text-transform: uppercase;
}

.smbf-tour-opportunities__eyebrow::after {
    content: "";

    display: block;

    width: 62px;
    height: 2px;

    margin-top: 13px;

    background: linear-gradient(
        90deg,
        #145BC7 0%,
        #1598A7 55%,
        #58A844 100%
    );
}


/* =========================
   TITLE
========================= */

.smbf-tour-opportunities__title {
    margin: 20px 0 0;

    color: #071A3A;

    font-size: clamp(38px, 3.4vw, 48px);
    font-weight: 800;

    line-height: 1.08;

    letter-spacing: -1.7px;
}

.smbf-tour-opportunities__highlight {
    background: linear-gradient(
        90deg,
        #145BC7 0%,
        #1598A7 55%,
        #58A844 100%
    );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
    color: transparent;
}


/* =========================
   COPY
========================= */

.smbf-tour-opportunities__copy {
    margin-top: 22px;
}

.smbf-tour-opportunities__copy p {
    margin: 0 0 17px;

    color: #435574;

    font-size: 16px;
    font-weight: 500;

    line-height: 1.72;
}

.smbf-tour-opportunities__copy p:last-child {
    margin-bottom: 0;
}

.smbf-tour-opportunities__copy strong {
    color: #173F78;

    font-weight: 700;
}


/* =========================
   ROUTE STRIP
========================= */

.smbf-tour-opportunities__route {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 9px;

    margin-top: 26px;
}

.smbf-tour-opportunities__route-city {
    padding: 9px 13px;

    border-radius: 50px;

    background: #F2F7FD;

    border: 1px solid #DCE8F5;

    color: #173F78;

    font-size: 12px;
    font-weight: 700;
}

.smbf-tour-opportunities__route-arrow {
    color: #1598A7;

    font-size: 16px;
    font-weight: 700;
}


/* =========================
   IMAGE SIDE
========================= */

.smbf-tour-opportunities__visual {
    position: relative;

    width: 100%;

    padding: 14px 14px 14px 0;
}

.smbf-tour-opportunities__accent {
    position: absolute;

    right: 0;
    bottom: 0;

    width: 74%;
    height: 78%;

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            rgba(20,91,199,0.10),
            rgba(21,152,167,0.08),
            rgba(88,168,68,0.08)
        );
}

.smbf-tour-opportunities__image-wrap {
    position: relative;
    z-index: 2;

    width: 100%;
    height: 430px;

    overflow: hidden;

    border-radius: 18px;

    background: #E9F0F7;

    box-shadow:
        0 18px 42px rgba(11,42,99,0.10);
}

.smbf-tour-opportunities__image-wrap img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* =========================
   FLOATING LABEL
========================= */

.smbf-tour-opportunities__badge {
    position: absolute;
    z-index: 3;

    left: -22px;
    bottom: 38px;

    min-width: 210px;

    padding: 15px 18px;

    border-radius: 13px;

    background: #ffffff;

    border: 1px solid rgba(20,91,199,0.08);

    box-shadow:
        0 12px 28px rgba(11,42,99,0.10);
}

.smbf-tour-opportunities__badge-label {
    color: #1598A7;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}

.smbf-tour-opportunities__badge-value {
    margin-top: 4px;

    color: #0A2D68;

    font-size: 14px;
    font-weight: 800;

    line-height: 1.45;
}


/* =========================
   TABLET
========================= */

@media (max-width: 980px) {

    .smbf-tour-opportunities__inner {
        grid-template-columns: 1fr;

        gap: 42px;
    }

    .smbf-tour-opportunities__content {
        max-width: 760px;
    }

    .smbf-tour-opportunities__visual {
        max-width: 720px;

        margin: 0 auto;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .smbf-tour-opportunities {
        padding:
            52px
            18px
            56px;
    }

    .smbf-tour-opportunities__rings {
        width: 190px;
        height: 190px;

        right: -105px;
        top: -60px;
    }

    .smbf-tour-opportunities__dots {
        display: none;
    }

    .smbf-tour-opportunities__inner {
        gap: 34px;
    }

    .smbf-tour-opportunities__eyebrow {
        font-size: 11px;

        letter-spacing: 3px;
    }

    .smbf-tour-opportunities__title {
        font-size: 34px;

        line-height: 1.1;

        letter-spacing: -1.3px;
    }

    .smbf-tour-opportunities__copy {
        margin-top: 18px;
    }

    .smbf-tour-opportunities__copy p {
        font-size: 15px;

        line-height: 1.65;
    }

    .smbf-tour-opportunities__route {
        gap: 7px;

        margin-top: 22px;
    }

    .smbf-tour-opportunities__route-city {
        padding: 8px 11px;

        font-size: 11px;
    }

    .smbf-tour-opportunities__visual {
        padding: 0 8px 14px 0;
    }

    .smbf-tour-opportunities__image-wrap {
        height: 320px;

        border-radius: 16px;
    }

    .smbf-tour-opportunities__accent {
        border-radius: 16px;
    }

    .smbf-tour-opportunities__badge {
        left: 14px;
        bottom: -4px;

        min-width: 0;
        max-width: 240px;

        padding: 13px 15px;
    }

}


/* --- MARKETS & SECTORS, ported from @H widget 6 --- */
.smbf-tour-sectors,
.smbf-tour-sectors *,
.smbf-tour-sectors *::before,
.smbf-tour-sectors *::after {
    box-sizing: border-box;
}

.smbf-tour-sectors {
    position: relative;
    width: 100%;
    overflow: hidden;

    padding: 72px 24px 76px;

    font-family: inherit;

    background: #f7faff;

    color: #071A3A;
}


/* =========================
   DECORATION
========================= */

.smbf-tour-sectors__rings {
    position: absolute;

    left: -110px;
    top: -90px;

    width: 250px;
    height: 250px;

    border-radius: 50%;

    background:
        repeating-radial-gradient(
            circle,
            transparent 0,
            transparent 29px,
            rgba(20,91,199,0.07) 30px,
            transparent 31px
        );

    pointer-events: none;
}

.smbf-tour-sectors__dots {
    position: absolute;

    right: 4%;
    bottom: 80px;

    width: 105px;
    height: 105px;

    opacity: 0.45;

    background-image:
        radial-gradient(circle, #2870C5 2px, transparent 2.5px),
        radial-gradient(circle, #1598A7 2px, transparent 2.5px);

    background-size: 26px 26px;
    background-position: 0 0, 13px 13px;
}


/* =========================
   INNER
========================= */

.smbf-tour-sectors__inner {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1180px;

    margin: 0 auto;
}


/* =========================
   HEADER
========================= */

.smbf-tour-sectors__header {
    max-width: 760px;

    margin: 0 auto 42px;

    text-align: center;
}

.smbf-tour-sectors__eyebrow {
    display: inline-block;

    color: #148EA4;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 4px;

    text-transform: uppercase;
}

.smbf-tour-sectors__eyebrow::after {
    content: "";

    display: block;

    width: 62px;
    height: 2px;

    margin: 13px auto 0;

    background: linear-gradient(
        90deg,
        #145BC7 0%,
        #1598A7 55%,
        #58A844 100%
    );
}

.smbf-tour-sectors__title {
    margin: 20px 0 0;

    color: #071A3A;

    font-size: clamp(38px, 3.4vw, 48px);
    font-weight: 800;

    line-height: 1.08;

    letter-spacing: -1.7px;
}

.smbf-tour-sectors__highlight {
    background: linear-gradient(
        90deg,
        #145BC7 0%,
        #1598A7 55%,
        #58A844 100%
    );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
    color: transparent;
}

.smbf-tour-sectors__description {
    max-width: 680px;

    margin: 16px auto 0;

    color: #4C5D78;

    font-size: 16px;
    font-weight: 500;

    line-height: 1.7;
}


/* =========================
   GRID
========================= */

.smbf-tour-sectors__grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}


/* =========================
   CARD
========================= */

.smbf-tour-sector-card {
    position: relative;

    min-height: 185px;

    padding: 26px 24px;

    background: #ffffff;

    border: 1px solid rgba(20,91,199,0.08);

    border-radius: 16px;

    box-shadow:
        0 10px 28px rgba(11,42,99,0.055);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.smbf-tour-sector-card:hover {
    transform: translateY(-3px);

    box-shadow:
        0 14px 34px rgba(11,42,99,0.085);
}


/* =========================
   ICON
========================= */

.smbf-tour-sector-card__icon {
    width: 52px;
    height: 52px;

    margin-bottom: 18px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            rgba(20,91,199,0.09),
            rgba(21,152,167,0.09),
            rgba(88,168,68,0.09)
        );

    color: #145BC7;
}

.smbf-tour-sector-card__icon svg {
    width: 25px;
    height: 25px;

    fill: none;

    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================
   TEXT
========================= */

.smbf-tour-sector-card__title {
    margin: 0;

    color: #0A2D68;

    font-size: 17px;
    font-weight: 800;

    line-height: 1.35;
}

.smbf-tour-sector-card__text {
    margin-top: 8px;

    color: #62718A;

    font-size: 13px;
    font-weight: 500;

    line-height: 1.6;
}


/* =========================
   TABLET
========================= */

@media (max-width: 1000px) {

    .smbf-tour-sectors__grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .smbf-tour-sectors {
        padding:
            52px
            18px
            56px;
    }

    .smbf-tour-sectors__rings {
        width: 190px;
        height: 190px;

        left: -110px;
        top: -60px;
    }

    .smbf-tour-sectors__dots {
        display: none;
    }

    .smbf-tour-sectors__header {
        margin-bottom: 30px;
    }

    .smbf-tour-sectors__eyebrow {
        font-size: 11px;

        letter-spacing: 3px;
    }

    .smbf-tour-sectors__title {
        font-size: 34px;

        line-height: 1.1;

        letter-spacing: -1.3px;
    }

    .smbf-tour-sectors__description {
        font-size: 15px;
    }

    .smbf-tour-sectors__grid {
        grid-template-columns: 1fr;

        gap: 12px;
    }

    .smbf-tour-sector-card {
        min-height: 0;

        padding: 18px;

        display: grid;

        grid-template-columns: 52px 1fr;

        column-gap: 14px;

        align-items: center;
    }

    .smbf-tour-sector-card__icon {
        margin: 0;

        grid-row: span 2;
    }

    .smbf-tour-sector-card__text {
        margin-top: 4px;
    }

}


/* --- TOUR BENEFITS, ported from @H widget 7 --- */
.smbf-tour-gain,
.smbf-tour-gain *,
.smbf-tour-gain *::before,
.smbf-tour-gain *::after {
    box-sizing: border-box;
}

.smbf-tour-gain {
    position: relative;
    width: 100%;
    overflow: hidden;

    padding: 72px 24px 76px;

    font-family: inherit;

    background: #ffffff;

    color: #071A3A;
}


/* =========================
   DECORATION
========================= */

.smbf-tour-gain__rings {
    position: absolute;

    right: -110px;
    top: -80px;

    width: 250px;
    height: 250px;

    border-radius: 50%;

    background:
        repeating-radial-gradient(
            circle,
            transparent 0,
            transparent 29px,
            rgba(20,91,199,0.07) 30px,
            transparent 31px
        );

    pointer-events: none;
}

.smbf-tour-gain__dots {
    position: absolute;

    left: 3%;
    bottom: 70px;

    width: 100px;
    height: 100px;

    opacity: 0.45;

    background-image:
        radial-gradient(circle, #2870C5 2px, transparent 2.5px),
        radial-gradient(circle, #1598A7 2px, transparent 2.5px);

    background-size: 25px 25px;
    background-position: 0 0, 12px 12px;
}


/* =========================
   INNER
========================= */

.smbf-tour-gain__inner {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1180px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(380px, 0.95fr);

    gap: 68px;

    align-items: center;
}


/* =========================
   CONTENT
========================= */

.smbf-tour-gain__content {
    max-width: 660px;
}


/* =========================
   EYEBROW
========================= */

.smbf-tour-gain__eyebrow {
    display: inline-block;

    color: #148EA4;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 4px;

    text-transform: uppercase;
}

.smbf-tour-gain__eyebrow::after {
    content: "";

    display: block;

    width: 62px;
    height: 2px;

    margin-top: 13px;

    background: linear-gradient(
        90deg,
        #145BC7 0%,
        #1598A7 55%,
        #58A844 100%
    );
}


/* =========================
   TITLE
========================= */

.smbf-tour-gain__title {
    margin: 20px 0 0;

    color: #071A3A;

    font-size: clamp(38px, 3.4vw, 48px);
    font-weight: 800;

    line-height: 1.08;

    letter-spacing: -1.7px;
}

.smbf-tour-gain__highlight {
    background: linear-gradient(
        90deg,
        #145BC7 0%,
        #1598A7 55%,
        #58A844 100%
    );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
    color: transparent;
}


/* =========================
   INTRO
========================= */

.smbf-tour-gain__intro {
    margin: 18px 0 0;

    color: #435574;

    font-size: 16px;
    font-weight: 500;

    line-height: 1.7;
}


/* =========================
   BULLETS
========================= */

.smbf-tour-gain__list {
    margin: 28px 0 0;
    padding: 0;

    list-style: none;
}

.smbf-tour-gain__item {
    position: relative;

    margin-bottom: 17px;

    padding-left: 27px;

    color: #334666;

    font-size: 15px;
    font-weight: 600;

    line-height: 1.6;
}

.smbf-tour-gain__item:last-child {
    margin-bottom: 0;
}

.smbf-tour-gain__item::before {
    content: "";

    position: absolute;

    left: 0;
    top: 9px;

    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        #145BC7 0%,
        #1598A7 55%,
        #58A844 100%
    );

    box-shadow:
        0 0 0 4px rgba(21,152,167,0.08);
}


/* =========================
   IMAGE SIDE
========================= */

.smbf-tour-gain__visual {
    position: relative;

    width: 100%;

    padding: 14px 14px 14px 0;
}

.smbf-tour-gain__accent {
    position: absolute;

    right: 0;
    bottom: 0;

    width: 75%;
    height: 77%;

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            rgba(20,91,199,0.10),
            rgba(21,152,167,0.08),
            rgba(88,168,68,0.08)
        );
}

.smbf-tour-gain__image-wrap {
    position: relative;
    z-index: 2;

    width: 100%;
    height: 430px;

    overflow: hidden;

    border-radius: 18px;

    background: #E9F0F7;

    box-shadow:
        0 18px 42px rgba(11,42,99,0.10);
}

.smbf-tour-gain__image-wrap img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* =========================
   SMALL IMAGE BADGE
========================= */

.smbf-tour-gain__badge {
    position: absolute;
    z-index: 3;

    left: -22px;
    bottom: 38px;

    min-width: 205px;

    padding: 15px 18px;

    border-radius: 13px;

    background: #ffffff;

    border: 1px solid rgba(20,91,199,0.08);

    box-shadow:
        0 12px 28px rgba(11,42,99,0.10);
}

.smbf-tour-gain__badge-label {
    color: #1598A7;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}

.smbf-tour-gain__badge-value {
    margin-top: 4px;

    color: #0A2D68;

    font-size: 14px;
    font-weight: 800;

    line-height: 1.45;
}


/* =========================
   TABLET
========================= */

@media (max-width: 980px) {

    .smbf-tour-gain__inner {
        grid-template-columns: 1fr;

        gap: 42px;
    }

    .smbf-tour-gain__content {
        max-width: 760px;
    }

    .smbf-tour-gain__visual {
        max-width: 720px;

        margin: 0 auto;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .smbf-tour-gain {
        padding:
            52px
            18px
            56px;
    }

    .smbf-tour-gain__rings {
        width: 190px;
        height: 190px;

        right: -105px;
        top: -60px;
    }

    .smbf-tour-gain__dots {
        display: none;
    }

    .smbf-tour-gain__inner {
        gap: 34px;
    }

    .smbf-tour-gain__eyebrow {
        font-size: 11px;

        letter-spacing: 3px;
    }

    .smbf-tour-gain__title {
        font-size: 34px;

        line-height: 1.1;

        letter-spacing: -1.3px;
    }

    .smbf-tour-gain__intro {
        font-size: 15px;

        line-height: 1.65;
    }

    .smbf-tour-gain__list {
        margin-top: 23px;
    }

    .smbf-tour-gain__item {
        margin-bottom: 14px;

        padding-left: 24px;

        font-size: 14px;
    }

    .smbf-tour-gain__item::before {
        top: 8px;

        width: 8px;
        height: 8px;
    }

    .smbf-tour-gain__visual {
        padding: 0 8px 14px 0;
    }

    .smbf-tour-gain__image-wrap {
        height: 320px;

        border-radius: 16px;
    }

    .smbf-tour-gain__accent {
        border-radius: 16px;
    }

    .smbf-tour-gain__badge {
        left: 14px;
        bottom: -4px;

        min-width: 0;
        max-width: 230px;

        padding: 13px 15px;
    }

}


/* --- WHO SHOULD JOIN, ported from @H widget 8 --- */
.smbf-tour-audience,
.smbf-tour-audience *,
.smbf-tour-audience *::before,
.smbf-tour-audience *::after {
    box-sizing: border-box;
}

.smbf-tour-audience {
    position: relative;
    width: 100%;
    overflow: hidden;

    padding: 72px 24px 76px;

    font-family: inherit;

    background: #f7faff;

    color: #071A3A;
}


/* =========================
   DECORATION
========================= */

.smbf-tour-audience__rings {
    position: absolute;

    left: -110px;
    top: -80px;

    width: 250px;
    height: 250px;

    border-radius: 50%;

    background:
        repeating-radial-gradient(
            circle,
            transparent 0,
            transparent 29px,
            rgba(20,91,199,0.07) 30px,
            transparent 31px
        );

    pointer-events: none;
}

.smbf-tour-audience__dots {
    position: absolute;

    right: 4%;
    bottom: 70px;

    width: 100px;
    height: 100px;

    opacity: 0.45;

    background-image:
        radial-gradient(circle, #2870C5 2px, transparent 2.5px),
        radial-gradient(circle, #1598A7 2px, transparent 2.5px);

    background-size: 25px 25px;
    background-position: 0 0, 12px 12px;
}


/* =========================
   INNER
========================= */

.smbf-tour-audience__inner {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1180px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(380px, 0.95fr)
        minmax(0, 1.05fr);

    gap: 68px;

    align-items: center;
}


/* =========================
   IMAGE SIDE
========================= */

.smbf-tour-audience__visual {
    position: relative;

    width: 100%;

    padding: 14px 0 14px 14px;
}

.smbf-tour-audience__accent {
    position: absolute;

    left: 0;
    bottom: 0;

    width: 75%;
    height: 77%;

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            rgba(20,91,199,0.10),
            rgba(21,152,167,0.08),
            rgba(88,168,68,0.08)
        );
}

.smbf-tour-audience__image-wrap {
    position: relative;
    z-index: 2;

    width: 100%;
    height: 430px;

    overflow: hidden;

    border-radius: 18px;

    background: #E9F0F7;

    box-shadow:
        0 18px 42px rgba(11,42,99,0.10);
}

.smbf-tour-audience__image-wrap img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* =========================
   CONTENT
========================= */

.smbf-tour-audience__content {
    max-width: 660px;
}


/* =========================
   EYEBROW
========================= */

.smbf-tour-audience__eyebrow {
    display: inline-block;

    color: #148EA4;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 4px;

    text-transform: uppercase;
}

.smbf-tour-audience__eyebrow::after {
    content: "";

    display: block;

    width: 62px;
    height: 2px;

    margin-top: 13px;

    background: linear-gradient(
        90deg,
        #145BC7 0%,
        #1598A7 55%,
        #58A844 100%
    );
}


/* =========================
   TITLE
========================= */

.smbf-tour-audience__title {
    margin: 20px 0 0;

    color: #071A3A;

    font-size: clamp(38px, 3.4vw, 48px);
    font-weight: 800;

    line-height: 1.08;

    letter-spacing: -1.7px;
}

.smbf-tour-audience__highlight {
    background: linear-gradient(
        90deg,
        #145BC7 0%,
        #1598A7 55%,
        #58A844 100%
    );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
    color: transparent;
}


/* =========================
   INTRO
========================= */

.smbf-tour-audience__intro {
    margin: 18px 0 0;

    color: #435574;

    font-size: 16px;
    font-weight: 500;

    line-height: 1.7;
}


/* =========================
   BULLETS
========================= */

.smbf-tour-audience__list {
    margin: 28px 0 0;
    padding: 0;

    list-style: none;
}

.smbf-tour-audience__item {
    position: relative;

    margin-bottom: 17px;

    padding-left: 27px;

    color: #334666;

    font-size: 15px;
    font-weight: 600;

    line-height: 1.6;
}

.smbf-tour-audience__item:last-child {
    margin-bottom: 0;
}

.smbf-tour-audience__item::before {
    content: "";

    position: absolute;

    left: 0;
    top: 9px;

    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        #145BC7 0%,
        #1598A7 55%,
        #58A844 100%
    );

    box-shadow:
        0 0 0 4px rgba(21,152,167,0.08);
}


/* =========================
   TABLET
========================= */

@media (max-width: 980px) {

    .smbf-tour-audience__inner {
        grid-template-columns: 1fr;

        gap: 42px;
    }

    .smbf-tour-audience__content {
        max-width: 760px;
    }

    .smbf-tour-audience__visual {
        max-width: 720px;

        margin: 0 auto;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .smbf-tour-audience {
        padding:
            52px
            18px
            56px;
    }

    .smbf-tour-audience__rings {
        width: 190px;
        height: 190px;

        left: -105px;
        top: -60px;
    }

    .smbf-tour-audience__dots {
        display: none;
    }

    .smbf-tour-audience__inner {
        gap: 34px;
    }

    .smbf-tour-audience__visual {
        padding: 0 0 14px 8px;
    }

    .smbf-tour-audience__image-wrap {
        height: 320px;

        border-radius: 16px;
    }

    .smbf-tour-audience__accent {
        border-radius: 16px;
    }

    .smbf-tour-audience__eyebrow {
        font-size: 11px;

        letter-spacing: 3px;
    }

    .smbf-tour-audience__title {
        font-size: 34px;

        line-height: 1.1;

        letter-spacing: -1.3px;
    }

    .smbf-tour-audience__intro {
        font-size: 15px;

        line-height: 1.65;
    }

    .smbf-tour-audience__list {
        margin-top: 23px;
    }

    .smbf-tour-audience__item {
        margin-bottom: 14px;

        padding-left: 24px;

        font-size: 14px;
    }

    .smbf-tour-audience__item::before {
        top: 8px;

        width: 8px;
        height: 8px;
    }

}


/* --- REGISTER HEADER. The same rules the B2B sheet carries: @H uses the
   identical smbf-register markup on both designs, and b2b-event.css does
   not load on a tour page, so they are duplicated here rather than
   loading a whole B2B stylesheet for one band. --- */
/* --- REGISTER HEADER, ported from @H widget 7.
   Header and wrapper rules ONLY - his form styling is deliberately left out,
   because the live form is a FluentForm with its own markup and classes. --- */
.smbf-register,
.smbf-register *,
.smbf-register *::before,
.smbf-register *::after{
    box-sizing: border-box;
}
.smbf-register{
    position: relative;
    width: 100%;
    overflow: hidden;

    padding: 72px 24px 82px;

    font-family: inherit;

    background:
        linear-gradient(
            180deg,
            #eef5fc 0%,
            #f7faff 100%
        );

    color: #071A3A;
}
.smbf-register__dots{
    position: absolute;

    right: 4%;
    bottom: 80px;

    width: 105px;
    height: 105px;

    opacity: 0.55;

    background-image:
        radial-gradient(circle, #2870C5 2px, transparent 2.5px),
        radial-gradient(circle, #1598A7 2px, transparent 2.5px);

    background-size: 26px 26px;
    background-position: 0 0, 13px 13px;
}
.smbf-register__eyebrow{
    display: inline-block;

    color: #148EA4;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 4px;

    text-transform: uppercase;
}
.smbf-register__eyebrow::after{
    content: "";

    display: block;

    width: 62px;
    height: 2px;

    margin: 13px auto 0;

    background: linear-gradient(
        90deg,
        #145BC7 0%,
        #1598A7 55%,
        #58A844 100%
    );
}
.smbf-register__title{
    margin: 20px 0 0;

    color: #071A3A;

    font-size: clamp(38px, 3.4vw, 48px);
    font-weight: 800;

    line-height: 1.08;

    letter-spacing: -1.7px;
}
.smbf-register__highlight{
    background: linear-gradient(
        90deg,
        #145BC7 0%,
        #1598A7 55%,
        #58A844 100%
    );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
    color: transparent;
}
.smbf-register__description{
    margin: 18px auto 0;

    color: #435574;

    font-size: 16px;
    font-weight: 500;

    line-height: 1.65;
}
/* =========================
   INPUTS
========================= */

.smbf-register input[type="text"],
.smbf-register input[type="email"],
.smbf-register input[type="tel"],
.smbf-register input[type="number"],
.smbf-register select,
.smbf-register textarea{
    width: 100%;

    min-height: 50px;

    padding: 13px 15px;

    border: 1px solid #CFD9E8;

    border-radius: 9px;

    background: #ffffff;

    color: #203A64;

    font-family: inherit;

    font-size: 14px;
    font-weight: 500;

    outline: none;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}
.smbf-register textarea{
    min-height: 110px;

    resize: vertical;
}
.smbf-register input::placeholder,
.smbf-register textarea::placeholder{
    color: #9AA7BA;
}
.smbf-register input:focus,
.smbf-register select:focus,
.smbf-register textarea:focus{
    border-color: #1598A7;

    box-shadow:
        0 0 0 3px rgba(21,152,167,0.08);
}
.smbf-register{
        padding:
            52px
            18px
            58px;
    }
.smbf-register__rings{
        width: 190px;
        height: 190px;

        left: -100px;
        top: -70px;
    }
.smbf-register__dots{
        display: none;
    }
.smbf-register__header{
        margin-bottom: 28px;
    }
.smbf-register__eyebrow{
        font-size: 11px;

        letter-spacing: 3px;
    }
.smbf-register__title{
        margin-top: 16px;

        font-size: 34px;

        line-height: 1.1;

        letter-spacing: -1.3px;
    }
.smbf-register__description{
        font-size: 15px;
    }
@media (max-width: 900px) {

    .smbf-register__checks {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* 🔴 These two were dropped by the rule filter when widget 7 was ported -
   the selector test required a space before the brace and his source has
   none. They are the rules that CENTRE the band: __inner sets the max-width
   and auto margins, __header sets text-align:center. Without them the
   heading sat hard against the left edge of the viewport. */
.smbf-register__inner{
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1180px;

    margin: 0 auto;
}
.smbf-register__header{
    max-width: 760px;

    margin: 0 auto 36px;

    text-align: center;
}
