:root {
    --sct-orange: #f58220;
    --sct-orange-dark: #d96911;

    --sct-blue: #3e739d;
    --sct-blue-dark: #315f84;

    --sct-navy: #0b1d2d;
    --sct-navy-light: #10283b;

    --sct-text: #1b2835;
    --sct-muted: #687681;
    --sct-light: #f5f8fa;
    --sct-border: #e2eaf0;

    --sct-white: #fff;
}

.sct-container {
    width: min(1320px, calc(100% - 48px));
    margin-inline: auto;
}


/* ============================================================
   HERO
============================================================ */

.sct-about-hero {
    position: relative;

    min-height: 750px;

    display: flex;
    align-items: center;

    background-position: center;
    background-size: cover;

    overflow: hidden;
}

.sct-about-hero__content {
    position: relative;
    z-index: 2;

    max-width: 820px;

    padding: 115px 0 175px;
}

.sct-kicker {
    display: flex;
    align-items: center;
    gap: 11px;

    color: var(--sct-orange);

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

    letter-spacing: 2.2px;
    text-transform: uppercase;
}

.sct-kicker > span {
    width: 34px;
    height: 2px;

    background: var(--sct-orange);
}

.sct-kicker--center {
    justify-content: center;
}

.sct-kicker--light {
    color: #fff;
}

.sct-about-hero h1 {
    margin: 20px 0 24px;

    color: #fff;

    font-size: clamp(50px, 6vw, 84px);
    line-height: .99;

    font-weight: 800;
    letter-spacing: -3px;
}

.sct-about-hero h1 em,
.sct-heading h2 em,
.sct-story h2 em,
.sct-destination-block h2 em,
.sct-process h2 em,
.sct-purpose h2 em,
.sct-promise h2 em,
.sct-about-cta h2 em {
    color: var(--sct-orange);

    font-style: normal;
}

.sct-about-hero__content > p {
    max-width: 720px;

    margin: 0;

    color: rgba(255,255,255,.88);

    font-size: 18px;
    line-height: 1.8;
}

.sct-about-hero__secondary {
    margin-top: 12px !important;

    color: rgba(255,255,255,.66) !important;

    font-size: 15px !important;
}

.sct-about-hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;

    margin-top: 34px;
}

.sct-button {
    min-height: 56px;

    padding: 0 26px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;

    border-radius: 8px;

    font-weight: 700;

    transition: .25s ease;
}

.sct-button:hover {
    transform: translateY(-2px);
}

.sct-button--orange {
    background: var(--sct-orange);

    color: #fff !important;
}

.sct-button--orange:hover {
    background: var(--sct-orange-dark);
}

.sct-button--glass {
    border: 1px solid rgba(255,255,255,.33);

    background: rgba(255,255,255,.09);

    color: #fff !important;

    backdrop-filter: blur(7px);
}

.sct-about-hero__bar {
    position: absolute;
    z-index: 3;

    bottom: 0;
    left: 0;

    width: 100%;

    border-top: 1px solid rgba(255,255,255,.14);

    background: rgba(5,18,30,.75);

    backdrop-filter: blur(10px);
}

.sct-hero-points {
    display: grid;

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

.sct-hero-points > div {
    min-height: 105px;

    padding: 20px 30px;

    display: flex;
    align-items: center;
    gap: 16px;

    border-right: 1px solid rgba(255,255,255,.13);
}

.sct-hero-points > div:last-child {
    border-right: 0;
}

.sct-hero-points i {
    color: var(--sct-orange);

    font-size: 24px;
}

.sct-hero-points strong,
.sct-hero-points span {
    display: block;
}

.sct-hero-points strong {
    margin-bottom: 3px;

    color: #fff;

    font-size: 15px;
}

.sct-hero-points span {
    color: rgba(255,255,255,.58);

    font-size: 12px;
}


/* ============================================================
   GLOBAL HEADINGS
============================================================ */

.sct-heading {
    max-width: 820px;

    margin-bottom: 52px;
}

.sct-heading--center {
    margin-left: auto;
    margin-right: auto;

    text-align: center;
}

.sct-heading h2,
.sct-story h2,
.sct-destination-block h2,
.sct-process h2,
.sct-purpose h2,
.sct-promise h2,
.sct-about-cta h2 {
    margin: 17px 0 20px;

    color: var(--sct-navy);

    font-size: clamp(39px, 4.4vw, 62px);
    line-height: 1.07;

    font-weight: 800;
    letter-spacing: -2px;
}

.sct-heading > p {
    max-width: 700px;

    margin: 0 auto;

    color: var(--sct-muted);

    font-size: 16px;
    line-height: 1.85;
}


/* ============================================================
   SERVICES
============================================================ */

.sct-services {
    padding: 115px 0;

    background: #fff;
}

.sct-service-grid {
    display: grid;

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

    grid-auto-rows: 365px;

    gap: 15px;
}

.sct-service-card {
    position: relative;

    padding: 32px;

    display: flex;
    align-items: flex-end;

    overflow: hidden;

    border-radius: 8px;

    background-size: cover;
    background-position: center;

    color: #fff !important;

    transition: .35s ease;
}

.sct-service-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 22px 50px rgba(10,30,48,.18);
}

.sct-service-card--large {
    grid-row: span 2;
}

.sct-service-card--wide {
    grid-column: span 2;
}

.sct-service-card::after {
    content: "";

    position: absolute;
    inset: 0;

    border: 1px solid rgba(255,255,255,.10);

    border-radius: inherit;

    pointer-events: none;
}

.sct-service-card__number {
    position: absolute;

    top: 25px;
    right: 27px;

    color: rgba(255,255,255,.65);

    font-weight: 800;
}

.sct-service-card__content {
    position: relative;
    z-index: 2;

    max-width: 490px;
}

.sct-service-card__icon {
    width: 54px;
    height: 54px;

    margin-bottom: 22px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--sct-orange);

    color: #fff;

    font-size: 20px;
}

.sct-service-card small {
    color: var(--sct-orange);

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

    letter-spacing: 1.5px;
}

.sct-service-card h3 {
    margin: 7px 0 10px;

    color: #fff;

    font-size: 29px;
}

.sct-service-card p {
    margin: 0 0 18px;

    color: rgba(255,255,255,.78);

    line-height: 1.7;
}

.sct-service-card__content > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: #fff;

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


/* ============================================================
   STORY
============================================================ */

.sct-story {
    padding: 125px 0;

    background: var(--sct-light);
}

.sct-story__grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;

    align-items: center;
}

.sct-story__visual {
    position: relative;

    min-height: 650px;
}

.sct-story__image-main {
    position: absolute;

    left: 0;
    top: 0;

    width: 78%;
    height: 570px;

    overflow: hidden;

    border-radius: 8px;
}

.sct-story__image-main img,
.sct-story__image-small img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.sct-story__image-small {
    position: absolute;

    z-index: 3;

    right: 0;
    bottom: 0;

    width: 48%;
    height: 290px;

    overflow: hidden;

    border: 8px solid var(--sct-light);
    border-radius: 8px;
}

.sct-story__badge {
    position: absolute;

    z-index: 4;

    right: 20px;
    top: 60px;

    padding: 16px 18px;

    display: flex;
    align-items: center;
    gap: 13px;

    border-radius: 7px;

    background: #fff;

    box-shadow: 0 18px 45px rgba(10,31,50,.14);
}

.sct-story__badge i {
    color: var(--sct-orange);

    font-size: 26px;
}

.sct-story__badge small,
.sct-story__badge strong {
    display: block;
}

.sct-story__badge small {
    color: var(--sct-muted);

    font-size: 9px;

    letter-spacing: 1.4px;
}

.sct-story__badge strong {
    color: var(--sct-navy);
}

.sct-story__content p {
    margin-bottom: 18px;

    color: var(--sct-muted);

    font-size: 15px;
    line-height: 1.9;
}

.sct-story__lead {
    color: var(--sct-text) !important;

    font-size: 18px !important;

    font-weight: 500;
}

.sct-story__signature {
    margin-top: 28px;
    padding-top: 24px;

    display: flex;
    align-items: center;
    gap: 13px;

    border-top: 1px solid var(--sct-border);
}

.sct-story__signature-icon {
    width: 52px;
    height: 52px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--sct-blue);

    color: #fff;

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

.sct-story__signature strong,
.sct-story__signature span {
    display: block;
}

.sct-story__signature strong {
    color: var(--sct-navy);
}

.sct-story__signature span {
    color: var(--sct-muted);

    font-size: 12px;
}


/* ============================================================
   WHY
============================================================ */

.sct-why {
    padding: 115px 0;

    background: #fff;
}

.sct-why-grid {
    display: grid;

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

    border-top: 1px solid var(--sct-border);
    border-left: 1px solid var(--sct-border);
}

.sct-why-grid article {
    position: relative;

    min-height: 300px;

    padding: 35px;

    border-right: 1px solid var(--sct-border);
    border-bottom: 1px solid var(--sct-border);

    transition: .25s ease;
}

.sct-why-grid article:hover {
    background: var(--sct-light);
}

.sct-why-grid article > span {
    position: absolute;

    right: 25px;
    top: 22px;

    color: #d5dde4;

    font-size: 13px;

    font-weight: 700;
}

.sct-why-icon {
    width: 59px;
    height: 59px;

    display: grid;
    place-items: center;

    border-radius: 8px;

    background: rgba(62,115,157,.10);

    color: var(--sct-blue);

    font-size: 23px;
}

.sct-why-grid h3 {
    margin: 27px 0 11px;

    color: var(--sct-navy);

    font-size: 20px;
}

.sct-why-grid p {
    margin: 0;

    color: var(--sct-muted);

    line-height: 1.8;
}


/* ============================================================
   DESTINATIONS
============================================================ */

.sct-destinations {
    background: var(--sct-navy);
}

.sct-destination-block {
    min-height: 650px;

    display: grid;

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

.sct-destination-block--reverse
.sct-destination-block__image {
    order: 2;
}

.sct-destination-block__image {
    min-height: 650px;

    background-position: center;
    background-size: cover;
}

.sct-destination-block__content {
    padding: 90px max(7vw, 60px);

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sct-destination-block__content h2 {
    color: #fff;
}

.sct-destination-block__content p {
    max-width: 620px;

    color: rgba(255,255,255,.69);

    line-height: 1.9;
}

.sct-text-link {
    margin-top: 17px;

    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: #fff !important;

    font-weight: 700;
}

.sct-text-link i {
    color: var(--sct-orange);
}


/* ============================================================
   PROCESS
============================================================ */

.sct-process {
    padding: 115px 0;

    background: var(--sct-light);
}

.sct-process-grid {
    display: grid;

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

    gap: 16px;
}

.sct-process-grid article {
    min-height: 265px;

    padding: 30px;

    border-radius: 8px;

    background: #fff;

    border: 1px solid var(--sct-border);
}

.sct-process-grid strong {
    color: var(--sct-orange);

    font-size: 13px;
}

.sct-process-grid h3 {
    margin: 55px 0 13px;

    color: var(--sct-navy);

    font-size: 20px;
}

.sct-process-grid p {
    color: var(--sct-muted);

    line-height: 1.8;
}


/* ============================================================
   MISSION & VISION
============================================================ */

.sct-purpose {
    padding: 115px 0;

    background: var(--sct-navy);
}

.sct-purpose__grid {
    display: grid;

    grid-template-columns: 1fr .85fr .85fr;

    gap: 20px;

    align-items: stretch;
}

.sct-purpose__intro {
    padding-right: 50px;
}

.sct-purpose__intro h2 {
    color: #fff;
}

.sct-purpose__intro p {
    color: rgba(255,255,255,.66);

    line-height: 1.9;
}

.sct-purpose-card {
    min-height: 420px;

    padding: 37px;

    border-radius: 9px;

    background: #fff;
}

.sct-purpose-card--orange {
    background: var(--sct-orange);
}

.sct-purpose-card small {
    color: var(--sct-blue);

    font-weight: 800;

    letter-spacing: 1.6px;
}

.sct-purpose-card > i {
    display: block;

    margin-top: 28px;

    color: var(--sct-orange);

    font-size: 31px;
}

.sct-purpose-card h3 {
    margin: 65px 0 18px;

    color: var(--sct-navy);

    font-size: 26px;
    line-height: 1.3;
}

.sct-purpose-card p {
    color: var(--sct-muted);

    line-height: 1.85;
}

.sct-purpose-card--orange small,
.sct-purpose-card--orange > i,
.sct-purpose-card--orange h3,
.sct-purpose-card--orange p {
    color: #fff;
}


/* ============================================================
   PROMISE
============================================================ */

.sct-promise {
    min-height: 640px;

    padding: 110px 0;

    display: flex;
    align-items: center;

    background-size: cover;
    background-position: center;
}

.sct-promise__content {
    max-width: 760px;
}

.sct-promise h2 {
    color: #fff;
}

.sct-promise p {
    color: rgba(255,255,255,.74);

    font-size: 16px;

    line-height: 1.9;
}


/* ============================================================
   CTA
============================================================ */

.sct-about-cta {
    padding: 105px 0;

    background: #fff;
}

.sct-about-cta__grid {
    display: grid;

    grid-template-columns: 1fr auto;

    gap: 80px;

    align-items: center;
}

.sct-about-cta p {
    max-width: 680px;

    color: var(--sct-muted);

    line-height: 1.85;
}

.sct-about-cta__buttons {
    min-width: 245px;

    display: flex;
    flex-direction: column;
    gap: 17px;
}

.sct-cta-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    color: var(--sct-blue-dark) !important;

    font-weight: 700;
}


/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width: 1199px) {

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

    .sct-service-card--large {
        grid-row: auto;
    }

    .sct-story__grid {
        gap: 55px;
    }

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

    .sct-purpose__grid {
        grid-template-columns: 1fr 1fr;
    }

    .sct-purpose__intro {
        grid-column: 1 / -1;
    }
}


@media (max-width: 991px) {

    .sct-story__grid {
        grid-template-columns: 1fr;
    }

    .sct-story__visual {
        max-width: 700px;
    }

    .sct-destination-block {
        grid-template-columns: 1fr;
    }

    .sct-destination-block--reverse
    .sct-destination-block__image {
        order: 0;
    }

    .sct-destination-block__image {
        min-height: 500px;
    }

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

    .sct-about-cta__grid {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 767px) {

    .sct-container {
        width: min(100% - 30px, 1320px);
    }

    .sct-about-hero {
        min-height: auto;
    }

    .sct-about-hero__content {
        padding: 75px 0 60px;
    }

    .sct-about-hero h1 {
        font-size: 46px;

        letter-spacing: -1.6px;
    }

    .sct-about-hero__bar {
        position: relative;
    }

    .sct-hero-points {
        grid-template-columns: 1fr;
    }

    .sct-hero-points > div {
        min-height: 78px;

        padding: 15px 0;

        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.13);
    }

    .sct-services,
    .sct-story,
    .sct-why,
    .sct-process,
    .sct-purpose,
    .sct-about-cta {
        padding: 75px 0;
    }

    .sct-service-grid {
        grid-template-columns: 1fr;

        grid-auto-rows: 390px;
    }

    .sct-service-card--wide {
        grid-column: auto;
    }

    .sct-story__visual {
        min-height: 535px;
    }

    .sct-story__image-main {
        height: 460px;
    }

    .sct-story__image-small {
        height: 220px;
    }

    .sct-heading h2,
    .sct-story h2,
    .sct-destination-block h2,
    .sct-process h2,
    .sct-purpose h2,
    .sct-promise h2,
    .sct-about-cta h2 {
        font-size: 38px;

        letter-spacing: -1px;
    }

    .sct-why-grid,
    .sct-process-grid,
    .sct-purpose__grid {
        grid-template-columns: 1fr;
    }

    .sct-destination-block__image {
        min-height: 400px;
    }

    .sct-destination-block__content {
        padding: 65px 25px;
    }

    .sct-purpose__intro {
        grid-column: auto;
        padding-right: 0;
    }

    .sct-promise {
        min-height: 580px;
    }
}


@media (max-width: 480px) {

    .sct-about-hero h1 {
        font-size: 39px;
    }

    .sct-about-hero__buttons {
        flex-direction: column;
    }

    .sct-button {
        width: 100%;
    }

    .sct-story__visual {
        min-height: 470px;
    }

    .sct-story__image-main {
        width: 88%;
        height: 390px;
    }

    .sct-story__image-small {
        width: 51%;
        height: 185px;
    }

    .sct-story__badge {
        right: 0;
        top: 28px;
    }

    .sct-service-grid {
        grid-auto-rows: 410px;
    }

    .sct-service-card {
        padding: 25px;
    }

    .sct-service-card h3 {
        font-size: 25px;
    }
}

/* ============================================================
   ABOUT WHY-US ICON POLISH
============================================================ */

.sct-why-icon {
    width: 58px !important;
    height: 58px !important;

    display: grid !important;
    place-items: center !important;

    border-radius: 12px !important;

    background:
        linear-gradient(
            135deg,
            rgba(62, 115, 157, .12),
            rgba(245, 130, 32, .10)
        ) !important;

    border: 1px solid rgba(62, 115, 157, .10);

    color: #3E739D !important;

    font-size: 23px !important;

    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,.7);

    transition:
        transform .25s ease,
        background .25s ease,
        color .25s ease;
}

.sct-why-icon i {
    display: inline-block !important;
    line-height: 1 !important;
    color: inherit !important;
    font-size: inherit !important;
}

.sct-why-grid article:hover .sct-why-icon {
    transform: translateY(-2px);

    background:
        linear-gradient(
            135deg,
            #F58220,
            #F5A623
        ) !important;

    color: #fff !important;
}

/* individual subtle accent */
.sct-why-grid article:nth-child(1) .sct-why-icon {
    color: #3E739D !important;
}

.sct-why-grid article:nth-child(2) .sct-why-icon {
    color: #F58220 !important;
}

.sct-why-grid article:nth-child(3) .sct-why-icon {
    color: #3E739D !important;
}

.sct-why-grid article:nth-child(4) .sct-why-icon {
    color: #F58220 !important;
}

.sct-why-grid article:nth-child(5) .sct-why-icon {
    color: #3E739D !important;
}

.sct-why-grid article:nth-child(6) .sct-why-icon {
    color: #F58220 !important;
}


/* ABOUT INLINE SVG ICONS */

.sct-why-icon svg {
    width: 27px !important;
    height: 27px !important;
    display: block !important;
    fill: currentColor !important;
}

.sct-why-grid article:nth-child(1) .sct-why-icon {
    color: #3E739D !important;
}

.sct-why-grid article:nth-child(2) .sct-why-icon {
    color: #F58220 !important;
}

.sct-why-grid article:nth-child(3) .sct-why-icon {
    color: #3E739D !important;
}

.sct-why-grid article:nth-child(4) .sct-why-icon {
    color: #F58220 !important;
}

.sct-why-grid article:nth-child(5) .sct-why-icon {
    color: #3E739D !important;
}

.sct-why-grid article:nth-child(6) .sct-why-icon {
    color: #F58220 !important;
}

.sct-why-grid article:hover .sct-why-icon svg {
    fill: #fff !important;
}


/* ============================================================
   SALAAM ABOUT - PREMIUM WHAT WE DO GRID
============================================================ */

.sct-services {
    padding: 120px 0 125px !important;
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f7f9fb 100%
        ) !important;
}

.sct-services .sct-heading {
    max-width: 860px !important;
    margin: 0 auto 58px !important;
    text-align: center !important;
}

.sct-services .sct-heading h2 {
    max-width: 820px;
    margin-left: auto !important;
    margin-right: auto !important;
}

.sct-services .sct-heading > p {
    max-width: 760px !important;
}


/* ------------------------------------------------------------
   BALANCED 3 x 2 GRID
------------------------------------------------------------ */

.sct-service-grid {
    display: grid !important;

    grid-template-columns:
        repeat(3, minmax(0, 1fr)) !important;

    grid-auto-rows: unset !important;

    gap: 24px !important;
}


/* Remove old mosaic spanning */

.sct-service-card--large,
.sct-service-card--wide {
    grid-column: auto !important;
    grid-row: auto !important;
}


/* ------------------------------------------------------------
   CARD
------------------------------------------------------------ */

.sct-service-card {
    position: relative !important;

    min-height: 470px !important;

    padding: 0 !important;

    display: flex !important;
    align-items: flex-end !important;

    overflow: hidden !important;

    border-radius: 22px !important;

    background-size: cover !important;
    background-position: center !important;

    border:
        1px solid rgba(49,95,132,.10) !important;

    box-shadow:
        0 16px 45px rgba(24,48,72,.10) !important;

    isolation: isolate;

    transition:
        transform .35s ease,
        box-shadow .35s ease !important;
}

.sct-service-card:hover {
    transform: translateY(-9px) !important;

    box-shadow:
        0 28px 65px rgba(24,48,72,.18) !important;
}


/* Extra image depth */

.sct-service-card::before {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 0;

    background:
        linear-gradient(
            180deg,
            rgba(8,22,35,.04) 15%,
            rgba(8,22,35,.22) 48%,
            rgba(8,22,35,.92) 100%
        );

    transition:
        background .35s ease;
}

.sct-service-card:hover::before {
    background:
        linear-gradient(
            180deg,
            rgba(8,22,35,.02) 10%,
            rgba(8,22,35,.17) 42%,
            rgba(8,22,35,.95) 100%
        );
}


/* Existing border pseudo element */

.sct-service-card::after {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 4;

    pointer-events: none;

    border-radius: inherit !important;

    border:
        1px solid rgba(255,255,255,.12) !important;
}


/* ------------------------------------------------------------
   NUMBER
------------------------------------------------------------ */

.sct-service-card__number {
    position: absolute !important;

    z-index: 3 !important;

    top: 22px !important;
    right: 22px !important;

    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        rgba(255,255,255,.14);

    border:
        1px solid rgba(255,255,255,.24);

    backdrop-filter: blur(8px);

    color: #fff !important;

    font-size: 11px !important;
    font-weight: 800 !important;
}


/* ------------------------------------------------------------
   CONTENT PANEL
------------------------------------------------------------ */

.sct-service-card__content {
    position: relative !important;

    z-index: 3 !important;

    width: 100% !important;
    max-width: none !important;

    padding: 30px 30px 28px !important;

    background:
        linear-gradient(
            180deg,
            transparent 0%,
            rgba(7,22,36,.12) 100%
        );
}


/* Icon */

.sct-service-card__icon {
    width: 52px !important;
    height: 52px !important;

    margin-bottom: 19px !important;

    display: grid !important;
    place-items: center !important;

    border-radius: 14px !important;

    background:
        linear-gradient(
            135deg,
            #F58220,
            #F5A623
        ) !important;

    color: #fff !important;

    box-shadow:
        0 10px 25px rgba(245,130,32,.25);
}


/* Category */

.sct-service-card small {
    display: block !important;

    margin-bottom: 7px !important;

    color: #F5A623 !important;

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

    letter-spacing: 1.5px !important;
}


/* Title */

.sct-service-card h3 {
    margin: 0 0 11px !important;

    color: #fff !important;

    font-size: 27px !important;
    line-height: 1.18 !important;

    font-weight: 800 !important;
}


/* Description */

.sct-service-card p {
    margin: 0 0 19px !important;

    color: rgba(255,255,255,.78) !important;

    font-size: 14px !important;
    line-height: 1.7 !important;
}


/* Bottom link */

.sct-service-card__content > span {
    display: inline-flex !important;
    align-items: center !important;
    gap: 9px !important;

    padding-bottom: 4px !important;

    color: #fff !important;

    font-size: 12px !important;
    font-weight: 800 !important;

    border-bottom:
        1px solid rgba(255,255,255,.35);

    transition:
        color .25s ease,
        border-color .25s ease;
}

.sct-service-card:hover
.sct-service-card__content > span {
    color: #F5A623 !important;

    border-color: #F5A623 !important;
}

.sct-service-card__content > span i {
    transition: transform .25s ease;
}

.sct-service-card:hover
.sct-service-card__content > span i {
    transform: translateX(5px);
}


/* ------------------------------------------------------------
   COLOR IDENTITY - alternating subtle accent
------------------------------------------------------------ */

.sct-service-card:nth-child(2) .sct-service-card__icon,
.sct-service-card:nth-child(5) .sct-service-card__icon {
    background:
        linear-gradient(
            135deg,
            #3E739D,
            #315F84
        ) !important;

    box-shadow:
        0 10px 25px rgba(49,95,132,.25);
}


/* ------------------------------------------------------------
   TABLET
------------------------------------------------------------ */

@media (max-width: 1100px) {

    .sct-service-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr)) !important;
    }

    .sct-service-card {
        min-height: 450px !important;
    }
}


/* ------------------------------------------------------------
   MOBILE
------------------------------------------------------------ */

@media (max-width: 767px) {

    .sct-services {
        padding: 78px 0 85px !important;
    }

    .sct-services .sct-heading {
        margin-bottom: 38px !important;
    }

    .sct-service-grid {
        grid-template-columns: 1fr !important;

        gap: 18px !important;
    }

    .sct-service-card {
        min-height: 425px !important;

        border-radius: 18px !important;
    }

    .sct-service-card__content {
        padding: 26px 24px 24px !important;
    }

    .sct-service-card h3 {
        font-size: 25px !important;
    }

    .sct-service-card p {
        font-size: 13px !important;
    }
}


/* ------------------------------------------------------------
   SMALL PHONE
------------------------------------------------------------ */

@media (max-width: 420px) {

    .sct-service-card {
        min-height: 410px !important;
    }

    .sct-service-card__content {
        padding: 23px 20px !important;
    }

    .sct-service-card__number {
        top: 17px !important;
        right: 17px !important;
    }
}



/* ============================================================
   ABOUT HERO QUICK POINTS - PREMIUM SVG ICONS
============================================================ */

.sct-hero-points > div {
    min-width: 0 !important;
    padding: 22px 30px !important;

    display: flex !important;
    align-items: center !important;
    gap: 18px !important;
}

.sct-hero-point-icon {
    width: 54px !important;
    height: 54px !important;

    flex: 0 0 54px !important;

    display: grid !important;
    place-items: center !important;

    border-radius: 15px !important;

    border: 1px solid rgba(255,255,255,.14);

    backdrop-filter: blur(8px);

    box-shadow:
        0 10px 25px rgba(0,0,0,.12);
}

.sct-hero-point-icon svg {
    width: 25px !important;
    height: 25px !important;

    display: block !important;

    fill: currentColor !important;
}

.sct-hero-point-icon--orange {
    color: #F58220 !important;

    background:
        linear-gradient(
            135deg,
            rgba(245,130,32,.20),
            rgba(245,166,35,.10)
        ) !important;
}

.sct-hero-point-icon--blue {
    color: #67B7F7 !important;

    background:
        linear-gradient(
            135deg,
            rgba(62,115,157,.30),
            rgba(49,95,132,.16)
        ) !important;
}


/* Remove any old Font Awesome sizing from quick points */

.sct-hero-points > div > i {
    display: none !important;
}


/* TEXT */

.sct-hero-points > div > span:not(.sct-hero-point-icon) {
    min-width: 0 !important;
}

.sct-hero-points strong {
    display: block !important;

    margin-bottom: 5px !important;

    color: #FFFFFF !important;

    font-size: 16px !important;
    line-height: 1.35 !important;

    font-weight: 700 !important;
}

.sct-hero-points
> div
> span:not(.sct-hero-point-icon) {
    color: rgba(255,255,255,.65) !important;

    font-size: 13px !important;
    line-height: 1.6 !important;
}


/* HOVER */

.sct-hero-points > div {
    transition: background .25s ease;
}

.sct-hero-points > div:hover {
    background:
        rgba(255,255,255,.035);
}

.sct-hero-points > div:hover
.sct-hero-point-icon--orange {
    color: #FFFFFF !important;

    background:
        linear-gradient(
            135deg,
            #F58220,
            #F5A623
        ) !important;
}

.sct-hero-points > div:hover
.sct-hero-point-icon--blue {
    color: #FFFFFF !important;

    background:
        linear-gradient(
            135deg,
            #3E739D,
            #315F84
        ) !important;
}


/* MOBILE */

@media (max-width: 767px) {

    .sct-hero-points > div {
        min-height: 86px !important;

        padding: 16px 4px !important;

        gap: 15px !important;
    }

    .sct-hero-point-icon {
        width: 48px !important;
        height: 48px !important;

        flex-basis: 48px !important;

        border-radius: 13px !important;
    }

    .sct-hero-point-icon svg {
        width: 22px !important;
        height: 22px !important;
    }

    .sct-hero-points strong {
        font-size: 15px !important;
    }
}



/* ============================================================
   ABOUT HERO - PREMIUM FINAL DESIGN
============================================================ */

.sct-about-hero-premium {
    position: relative;

    min-height: 760px;

    display: flex;
    align-items: center;

    background-size: cover;
    background-position: center;

    overflow: hidden;
}

.sct-about-hero-premium::before {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    background:
        radial-gradient(
            circle at 67% 42%,
            rgba(62,115,157,.10),
            transparent 31%
        );
}

.sct-about-hero-premium__content {
    position: relative;
    z-index: 2;

    max-width: 920px;

    padding: 105px 0 185px;
}


/* ------------------------------------------------------------
   KICKER
------------------------------------------------------------ */

.sct-about-hero-premium .sct-kicker {
    color: #F58220;

    font-size: 12px;
}

.sct-about-hero-premium .sct-kicker span {
    background: #F58220;
}


/* ------------------------------------------------------------
   HEADLINE
------------------------------------------------------------ */

.sct-about-hero-premium h1 {
    max-width: 900px;

    margin: 20px 0 22px;

    color: #FFFFFF;

    font-size: clamp(52px, 5.4vw, 82px);
    line-height: .99;

    letter-spacing: -3.4px;
    font-weight: 800;
}

.sct-about-hero-premium h1 em {
    color: #F58220;

    font-style: normal;
}


/* ------------------------------------------------------------
   COPY
------------------------------------------------------------ */

.sct-about-hero-premium__lead {
    max-width: 760px;

    margin: 0;

    color: rgba(255,255,255,.88);

    font-size: 18px;
    line-height: 1.75;
}

.sct-about-hero-premium__sub {
    max-width: 720px;

    margin: 9px 0 0;

    color: rgba(255,255,255,.60);

    font-size: 14px;
    line-height: 1.7;
}


/* ------------------------------------------------------------
   BUTTONS
------------------------------------------------------------ */

.sct-about-hero-premium__actions {
    display: flex;
    flex-wrap: wrap;

    gap: 13px;

    margin-top: 30px;
}


/* ------------------------------------------------------------
   TRUST ROW
------------------------------------------------------------ */

.sct-about-trust {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 0;

    margin-top: 37px;
}

.sct-about-trust__item {
    min-height: 59px;

    padding: 0 28px;

    display: flex;
    align-items: center;

    gap: 12px;

    border-right:
        1px solid rgba(255,255,255,.18);
}

.sct-about-trust__item:first-child {
    padding-left: 0;
}

.sct-about-trust__item:last-child {
    border-right: 0;
}

.sct-about-trust__icon {
    width: 40px;
    height: 40px;

    flex: 0 0 40px;

    display: grid;
    place-items: center;

    border-radius: 11px;
}

.sct-about-trust__icon svg {
    width: 22px;
    height: 22px;

    fill: currentColor;
}

.sct-about-trust__icon--orange {
    color: #F58220;

    background:
        rgba(245,130,32,.13);

    border:
        1px solid rgba(245,130,32,.21);
}

.sct-about-trust__icon--blue {
    color: #6FBDF7;

    background:
        rgba(62,115,157,.22);

    border:
        1px solid rgba(111,189,247,.17);
}

.sct-about-trust__item strong,
.sct-about-trust__item span {
    display: block;
}

.sct-about-trust__item strong {
    margin-bottom: 2px;

    color: #fff;

    font-size: 14px;
    line-height: 1.3;
}

.sct-about-trust__item span {
    color: rgba(255,255,255,.56);

    font-size: 11px;
}


/* ============================================================
   BOTTOM GLASS FEATURE BAR
============================================================ */

.sct-about-feature-bar {
    position: absolute;

    z-index: 4;

    left: 0;
    bottom: 0;

    width: 100%;

    padding: 0 0 20px;
}

.sct-about-feature-bar__grid {
    display: grid;

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

    border:
        1px solid rgba(255,255,255,.17);

    border-radius: 22px;

    background:
        linear-gradient(
            135deg,
            rgba(11,37,58,.92),
            rgba(7,25,41,.88)
        );

    backdrop-filter: blur(16px);

    box-shadow:
        0 20px 50px rgba(0,0,0,.23);

    overflow: hidden;
}

.sct-about-feature-bar__item {
    min-height: 128px;

    padding: 24px 32px;

    display: flex;
    align-items: center;

    gap: 19px;

    border-right:
        1px solid rgba(255,255,255,.12);
}

.sct-about-feature-bar__item:last-child {
    border-right: 0;
}


/* ------------------------------------------------------------
   FEATURE ICONS
------------------------------------------------------------ */

.sct-feature-icon {
    width: 66px;
    height: 66px;

    flex: 0 0 66px;

    display: grid;
    place-items: center;

    border-radius: 17px;

    box-shadow:
        0 12px 30px rgba(0,0,0,.18);
}

.sct-feature-icon svg {
    width: 30px;
    height: 30px;

    fill: currentColor;
}

.sct-feature-icon--orange {
    color: #FFFFFF;

    background:
        linear-gradient(
            135deg,
            #F58220,
            #FF9E22
        );

    box-shadow:
        0 13px 30px rgba(245,130,32,.22);
}

.sct-feature-icon--blue {
    color: #FFFFFF;

    background:
        linear-gradient(
            135deg,
            #3E9BF2,
            #176FD1
        );

    box-shadow:
        0 13px 30px rgba(23,111,209,.26);
}


/* ------------------------------------------------------------
   FEATURE TEXT
------------------------------------------------------------ */

.sct-about-feature-bar__item strong {
    display: block;

    margin-bottom: 5px;

    color: #FFFFFF;

    font-size: 17px;
    line-height: 1.3;
}

.sct-about-feature-bar__item p {
    margin: 0;

    color: rgba(255,255,255,.63);

    font-size: 13px;
    line-height: 1.55;
}


/* ============================================================
   DESKTOP WIDTH POLISH
============================================================ */

@media (min-width: 1400px) {

    .sct-about-hero-premium__content {
        max-width: 970px;
    }

    .sct-about-hero-premium h1 {
        max-width: 960px;
    }
}


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

@media (max-width: 991px) {

    .sct-about-hero-premium {
        min-height: auto;
    }

    .sct-about-hero-premium__content {
        padding: 85px 0 55px;
    }

    .sct-about-hero-premium h1 {
        max-width: 740px;

        font-size: 58px;
    }

    .sct-about-feature-bar {
        position: relative;

        padding: 0;

        background: #071b2b;
    }

    .sct-about-feature-bar__grid {
        border-radius: 0;

        border-left: 0;
        border-right: 0;
        border-bottom: 0;
    }

}


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

@media (max-width: 767px) {

    .sct-about-hero-premium {
        background-position: 64% center;
    }

    .sct-about-hero-premium__content {
        padding: 70px 0 50px;
    }

    .sct-about-hero-premium h1 {
        max-width: 100%;

        font-size: 43px;
        line-height: 1.03;

        letter-spacing: -1.8px;
    }

    .sct-about-hero-premium__lead {
        font-size: 15px;
    }

    .sct-about-hero-premium__sub {
        font-size: 13px;
    }

    .sct-about-hero-premium__actions {
        flex-direction: column;
    }

    .sct-about-hero-premium__actions
    .sct-button {
        width: 100%;
    }


    /* TRUST */

    .sct-about-trust {
        display: grid;

        grid-template-columns: 1fr;

        gap: 12px;

        margin-top: 30px;
    }

    .sct-about-trust__item {
        min-height: auto;

        padding: 0;

        border-right: 0;
    }


    /* FEATURE BAR */

    .sct-about-feature-bar__grid {
        grid-template-columns: 1fr;
    }

    .sct-about-feature-bar__item {
        min-height: 105px;

        padding: 20px 18px;

        border-right: 0;

        border-bottom:
            1px solid rgba(255,255,255,.10);
    }

    .sct-about-feature-bar__item:last-child {
        border-bottom: 0;
    }

    .sct-feature-icon {
        width: 56px;
        height: 56px;

        flex-basis: 56px;

        border-radius: 15px;
    }

    .sct-feature-icon svg {
        width: 26px;
        height: 26px;
    }

    .sct-about-feature-bar__item strong {
        font-size: 16px;
    }
}


/* ============================================================
   SMALL PHONE
============================================================ */

@media (max-width: 420px) {

    .sct-about-hero-premium h1 {
        font-size: 37px;
    }

    .sct-about-feature-bar__item {
        gap: 15px;
    }
}



/* ============================================================
   ABOUT HERO FINAL POLISH
   Fix oversized text + broken giant icons
============================================================ */

/* HERO CONTENT WIDTH */

.sct-about-hero-premium__content {
    max-width: 760px !important;
    padding-top: 90px !important;
    padding-bottom: 180px !important;
}


/* SMALLER, CLEANER HEADLINE */

.sct-about-hero-premium h1 {
    max-width: 760px !important;

    margin-top: 17px !important;
    margin-bottom: 20px !important;

    font-size: 58px !important;
    line-height: 1.04 !important;

    letter-spacing: -2.2px !important;
}


/* DESCRIPTION */

.sct-about-hero-premium__lead {
    max-width: 690px !important;

    font-size: 16px !important;
    line-height: 1.7 !important;
}

.sct-about-hero-premium__sub {
    max-width: 650px !important;

    font-size: 13px !important;
    line-height: 1.65 !important;
}


/* TRUST ROW SMALLER */

.sct-about-trust {
    margin-top: 27px !important;
}

.sct-about-trust__item {
    min-height: 48px !important;

    padding-left: 20px !important;
    padding-right: 20px !important;

    gap: 10px !important;
}

.sct-about-trust__item:first-child {
    padding-left: 0 !important;
}

.sct-about-trust__icon {
    width: 36px !important;
    height: 36px !important;

    min-width: 36px !important;
    max-width: 36px !important;

    min-height: 36px !important;
    max-height: 36px !important;

    flex: 0 0 36px !important;

    overflow: hidden !important;
}

.sct-about-trust__icon svg {
    width: 19px !important;
    height: 19px !important;

    min-width: 19px !important;
    max-width: 19px !important;

    min-height: 19px !important;
    max-height: 19px !important;

    display: block !important;

    fill: currentColor !important;

    overflow: hidden !important;
}


/* ============================================================
   FORCE BOTTOM FEATURE BAR ICONS TO CORRECT SIZE
============================================================ */

.sct-about-feature-bar {
    padding-bottom: 18px !important;
}

.sct-about-feature-bar__grid {
    min-height: 110px !important;

    border-radius: 17px !important;
}

.sct-about-feature-bar__item {
    min-height: 110px !important;

    padding: 18px 27px !important;

    gap: 16px !important;

    overflow: hidden !important;
}


/* ICON WRAPPER */

.sct-feature-icon {
    width: 54px !important;
    height: 54px !important;

    min-width: 54px !important;
    max-width: 54px !important;

    min-height: 54px !important;
    max-height: 54px !important;

    flex: 0 0 54px !important;

    display: grid !important;
    place-items: center !important;

    overflow: hidden !important;

    border-radius: 15px !important;
}


/* THIS IS IMPORTANT:
   never allow SVG to grow beyond wrapper */

.sct-feature-icon svg,
.sct-about-feature-bar__item .sct-feature-icon svg {
    width: 24px !important;
    height: 24px !important;

    min-width: 24px !important;
    max-width: 24px !important;

    min-height: 24px !important;
    max-height: 24px !important;

    display: block !important;

    position: static !important;

    transform: none !important;

    fill: currentColor !important;

    color: inherit !important;

    overflow: hidden !important;
}


/* KILL ANY OLD DIRECT ICONS THAT MAY STILL EXIST */

.sct-about-feature-bar__item > i,
.sct-about-feature-bar__item > svg {
    display: none !important;
}


/* TEXT */

.sct-about-feature-bar__item strong {
    font-size: 15px !important;
    line-height: 1.3 !important;
}

.sct-about-feature-bar__item p {
    font-size: 12px !important;
    line-height: 1.5 !important;
}


/* ============================================================
   DESKTOP
============================================================ */

@media (min-width: 1200px) {

    .sct-about-hero-premium {
        min-height: 690px !important;
    }

}


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

@media (max-width: 991px) {

    .sct-about-hero-premium__content {
        max-width: 680px !important;

        padding-top: 75px !important;
        padding-bottom: 50px !important;
    }

    .sct-about-hero-premium h1 {
        font-size: 50px !important;
    }

}


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

@media (max-width: 767px) {

    .sct-about-hero-premium__content {
        padding-top: 60px !important;
        padding-bottom: 45px !important;
    }

    .sct-about-hero-premium h1 {
        font-size: 39px !important;
        line-height: 1.06 !important;

        letter-spacing: -1.3px !important;
    }

    .sct-about-hero-premium__lead {
        font-size: 14px !important;
    }

    .sct-about-feature-bar__item {
        min-height: 90px !important;

        padding: 16px 18px !important;
    }

    .sct-feature-icon {
        width: 48px !important;
        height: 48px !important;

        min-width: 48px !important;
        max-width: 48px !important;

        min-height: 48px !important;
        max-height: 48px !important;

        flex-basis: 48px !important;
    }

    .sct-feature-icon svg {
        width: 22px !important;
        height: 22px !important;

        min-width: 22px !important;
        max-width: 22px !important;

        min-height: 22px !important;
        max-height: 22px !important;
    }

}


/* ============================================================
   SMALL PHONE
============================================================ */

@media (max-width: 420px) {

    .sct-about-hero-premium h1 {
        font-size: 35px !important;
    }

}


/* ABOUT HERO SHORT COPY */

.sct-about-hero-tagline {
    margin: 12px 0 16px !important;

    color: #F58220 !important;

    font-size: 26px !important;
    line-height: 1.2 !important;

    font-weight: 700 !important;
    letter-spacing: -.5px !important;
}

.sct-about-hero-premium__lead {
    max-width: 640px !important;

    margin: 0 !important;

    font-size: 15px !important;
    line-height: 1.65 !important;
}

@media (max-width: 767px) {

    .sct-about-hero-tagline {
        font-size: 21px !important;
    }

    .sct-about-hero-premium__lead {
        font-size: 14px !important;
    }
}

