/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: "DM Sans", sans-serif;

    background: #ffffff;

    color: #102d56;

    overflow-x: hidden;
}


a {
    text-decoration: none;

    color: inherit;
}


img {
    display: block;

    width: 100%;
}


button {
    font-family: inherit;
}


.container {
    width: min(1180px, calc(100% - 80px));

    margin: 0 auto;
}



/* =====================================================
   NAVIGATION
===================================================== */

.site-header {
    height: 115px;
    background: #ffffff;
    position: relative;
    z-index: 1000;
}

.nav-container {
    width: calc(100% - 60px);
    max-width: 1400px;
    height: 100%;
    margin: 0 auto;

    display: flex;
    align-items: center;
}

/* BRAND */

.logo {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
    white-space: nowrap;
}

.logo img {
    width: 155px;
    height: 105px;

    object-fit: contain;
    flex-shrink: 0;
}

/* BRAND NAME */

.logo-text {
    display: flex;
    align-items: baseline;
    gap: 18px;

    white-space: nowrap;
}

.logo-text span {
    color: #082d69;

    font-family: "Oswald", sans-serif;

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

    letter-spacing: 1px;

    white-space: nowrap;
}


/* NAVIGATION */

.main-nav {
    margin-left: auto;

    display: flex;
    align-items: center;

    gap: 38px;
}

.main-nav a {
    color: #082d69;

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

    white-space: nowrap;

    position: relative;
}

.main-nav a.active::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -12px;

    width: 100%;
    height: 3px;

    background: #1267ce;
}



/* =====================================================
   LET'S TALK
===================================================== */

.nav-cta {
    margin-left: 55px;

    height: 46px;

    padding: 0 17px;

    display: flex;

    align-items: center;

    gap: 15px;

    background: #082d69;

    color: #ffffff;

    border-radius: 6px;

    font-size: 13px;

    font-weight: 600;

    transition: 0.3s;
}


.nav-cta:hover {
    background: #1267ce;

    transform: translateY(-2px);
}


.nav-cta i {
    width: 26px;

    height: 26px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(255,255,255,0.7);

    border-radius: 50%;

    font-size: 11px;
}



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

.menu-toggle {
    display: none;

    margin-left: auto;

    border: none;

    background: transparent;

    color: #082d69;

    font-size: 25px;

    cursor: pointer;
}



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

.hero {
    position: relative;

    min-height: calc(100vh - 90px);

    overflow: hidden;

    background: #ffffff;
}


.hero-container {
    min-height: calc(100vh - 90px);

    display: grid;

    grid-template-columns: 51% 49%;

    align-items: center;
}



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

.hero-decoration {
    position: absolute;

    width: 500px;

    height: 500px;

    left: -450px;

    top: -330px;

    border-radius: 50%;

    border: 25px solid #1267ce;

    border-right-color: transparent;

    border-bottom-color: transparent;

    opacity: 0.95;
}



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

.hero-content {
    position: relative;

    z-index: 5;

    padding-bottom: 30px;
}


.hero h1 {
    font-family: "Oswald", sans-serif;

    font-size: clamp(
        62px,
        6vw,
        86px
    );

    line-height: 0.95;

    letter-spacing: -1.5px;

    font-weight: 600;

    color: #082d69;
}


.hero h1 span {
    display: block;

    color: #a1a6ac;

    font-weight: 500;
}



/* =====================================================
   BLUE DIVIDER
===================================================== */

.hero-divider {
    width: 66px;

    height: 3px;

    background: #1267ce;

    margin: 28px 0;
}



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

.hero-description {
    width: 420px;

    max-width: 100%;

    color: #172f53;

    font-size: 16px;

    line-height: 1.65;
}



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

.hero-buttons {
    display: flex;

    align-items: center;

    gap: 19px;

    margin-top: 29px;
}


.hero-btn {
    height: 47px;

    padding: 0 22px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 18px;

    border-radius: 5px;

    font-size: 13px;

    font-weight: 700;

    transition: 0.3s;
}


.primary-btn {
    background: #082d69;

    color: #ffffff;

    box-shadow:
        0 10px 25px
        rgba(8,45,105,0.15);
}


.primary-btn:hover {
    background: #1267ce;

    transform: translateY(-2px);
}


.primary-btn i {
    width: 25px;

    height: 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(255,255,255,0.75);

    border-radius: 50%;

    font-size: 10px;
}


.secondary-btn {
    background: #ffffff;

    color: #082d69;

    border: 1.5px solid #082d69;
}


.secondary-btn:hover {
    background: #082d69;

    color: #ffffff;
}



/* =====================================================
   TRUST INDICATORS
===================================================== */

.trust-indicators {
    display: flex;

    align-items: center;

    gap: 27px;

    margin-top: 38px;
}


.trust-item {
    display: flex;

    align-items: center;

    gap: 9px;
}


.trust-icon {
    width: 43px;

    height: 43px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #082d69;

    color: #ffffff;

    border-radius: 50%;

    font-size: 17px;
}


.trust-item span {
    color: #082d69;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.5px;
}



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

.hero-visual {
    height: 600px;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: flex-end;
}



/* =====================================================
   CITY IMAGE
===================================================== */

.city-image {
    width: 500px;

    height: 560px;

    overflow: hidden;

    position: relative;

    z-index: 3;

    border-radius:
        125px
        0
        0
        125px;

    box-shadow:
        0 20px 50px
        rgba(8,45,105,0.10);
}


.city-image img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;
}



/* =====================================================
   BLUE BOTTOM SHAPE
===================================================== */

.city-decoration {
    position: absolute;

    right: -70px;

    bottom: -1px;

    width: 250px;

    height: 145px;

    background: #082d69;

    border-radius:
        120px
        0
        0
        0;

    z-index: 2;
}



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

.compliance-card {
    position: absolute;

    right: 8px;

    bottom: 25px;

    width: 282px;

    min-height: 102px;

    padding: 19px 20px;

    display: flex;

    align-items: center;

    gap: 15px;

    background: #ffffff;

    border-radius: 8px;

    box-shadow:
        0 15px 35px
        rgba(0,0,0,0.14);

    z-index: 10;
}


.compliance-icon {
    width: 48px;

    height: 48px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        linear-gradient(
            145deg,
            #1267ce,
            #082d69
        );

    color: #ffffff;

    border-radius: 50%;

    font-size: 19px;
}


.compliance-text h3 {
    color: #082d69;

    font-size: 16px;

    font-weight: 700;
}


.compliance-text p {
    margin-top: 2px;

    color: #53677f;

    font-size: 12px;
}



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

@media (max-width: 1050px) {

    .container {
        width: calc(100% - 50px);
    }


    .main-nav {
        gap: 25px;
    }


    .nav-cta {
        margin-left: 25px;
    }


    .hero-container {
        grid-template-columns: 50% 50%;

        gap: 10px;
    }


    .hero h1 {
        font-size: 65px;
    }


    .city-image {
        width: 430px;

        height: 500px;
    }


    .compliance-card {
        right: -5px;
    }

}



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

@media (max-width: 750px) {

    .container {
        width: calc(100% - 30px);
    }



    /* ================= NAV ================= */

    .site-header {
        height: 75px;
    }


    .logo {
        width: 140px;
    }


    .logo img {
        height: 62px;
    }


    .main-nav {
        display: none;

        position: absolute;

        top: 75px;

        left: 0;

        width: 100%;

        padding: 25px 20px;

        flex-direction: column;

        align-items: flex-start;

        gap: 18px;

        background: #ffffff;

        border-top: 1px solid #eeeeee;

        border-bottom: 1px solid #eeeeee;

        box-shadow:
            0 15px 30px
            rgba(0,0,0,0.08);
    }


    .main-nav.open {
        display: flex;
    }


    .nav-cta {
        display: none;
    }


    .menu-toggle {
        display: block;
    }



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

    .hero {
        min-height: auto;
    }


    .hero-container {
        min-height: auto;

        display: flex;

        flex-direction: column;

        align-items: stretch;
    }


    .hero-content {
        padding:
            65px 0
            25px;
    }


    .hero h1 {
        font-size: 56px;

        line-height: 0.96;
    }


    .hero-divider {
        margin: 24px 0;
    }


    .hero-description {
        width: 100%;

        max-width: 430px;

        font-size: 14px;
    }


    .hero-buttons {
        flex-direction: column;

        align-items: flex-start;

        gap: 12px;
    }


    .hero-btn {
        width: auto;
    }


    .trust-indicators {
        gap: 15px;

        flex-wrap: wrap;

        margin-top: 30px;
    }


    .trust-icon {
        width: 39px;

        height: 39px;

        font-size: 15px;
    }



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

    .hero-visual {
        height: 420px;

        width: 100%;

        margin-bottom: 35px;
    }


    .city-image {
        width: 92%;

        height: 390px;

        border-radius:
            90px
            0
            0
            90px;

        margin-left: auto;
    }


    .city-decoration {
        right: -40px;

        bottom: 0;

        width: 180px;

        height: 105px;
    }


    .compliance-card {
        right: 0;

        bottom: 10px;

        width: 245px;

        min-height: 88px;

        padding: 15px;
    }


    .compliance-icon {
        width: 42px;

        height: 42px;
    }


    .compliance-text h3 {
        font-size: 14px;
    }


    .compliance-text p {
        font-size: 11px;
    }

}



/* =====================================================
   SMALL PHONES
===================================================== */

@media (max-width: 420px) {

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


    .hero-description {
        font-size: 13px;
    }


    .trust-item span {
        font-size: 8px;
    }


    .trust-indicators {
        gap: 10px;
    }


    .city-image {
        width: 95%;

        height: 350px;
    }


    .hero-visual {
        height: 380px;
    }


    .compliance-card {
        width: 225px;
    }

}

/* =====================================================
   ABOUT PAGE
===================================================== */


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

.about-hero {
    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            110deg,
            #ffffff 0%,
            #ffffff 65%,
            #f2f6fb 100%
        );
}


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

    position: absolute;

    width: 450px;
    height: 450px;

    left: -390px;
    top: -250px;

    border: 22px solid #1267ce;

    border-right-color: transparent;
    border-bottom-color: transparent;

    border-radius: 50%;
}


.about-hero-container {
    min-height: 410px;

    display: grid;

    grid-template-columns: 1fr 300px;

    align-items: center;

    gap: 70px;
}


.about-eyebrow {
    display: flex;

    align-items: center;

    gap: 10px;

    color: #1267ce;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.8px;
}


.about-eyebrow span {
    width: 30px;

    height: 2px;

    background: #1267ce;
}


.about-hero h1 {
    margin-top: 18px;

    font-family: "Oswald", sans-serif;

    font-size: clamp(55px, 6vw, 78px);

    line-height: .95;

    color: #082d69;

    font-weight: 600;
}


.about-hero h1 strong {
    display: block;

    color: #a0a5aa;

    font-weight: 500;
}


.about-divider {
    width: 65px;

    height: 3px;

    margin: 25px 0;

    background: #1267ce;
}


.about-hero-content p {
    max-width: 600px;

    color: #354b66;

    font-size: 15px;

    line-height: 1.7;
}


.about-hero-side {
    padding: 35px;

    border-left: 1px solid #d9e2ed;

    color: #082d69;
}


.about-number {
    margin-bottom: 15px;

    color: #1267ce;

    font-family: "Oswald", sans-serif;

    font-size: 60px;

    font-weight: 500;

    line-height: 1;
}


.about-hero-side span {
    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;

    line-height: 1.6;
}



/* ================= WHO WE ARE ================= */

.who-section {
    padding: 100px 0;

    background: #ffffff;
}


.who-container {
    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 80px;
}

.about-image {
    width: 100%;
    height: 100%;
    min-height: 500px;

    overflow: hidden;

    border-radius: 0 0 100px 0;

    background: #082d69;
}

.about-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}

.about-image-placeholder {
    height: 450px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    border-radius: 90px 0 90px 0;

    background:
        linear-gradient(
            145deg,
            #082d69,
            #1267ce
        );

    color: #ffffff;

    position: relative;

    overflow: hidden;
}


.about-image-placeholder::before {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

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

    border-radius: 50%;
}


.placeholder-icon {
    width: 90px;

    height: 90px;

    display: flex;

    align-items: center;

    justify-content: center;

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

    border-radius: 50%;

    font-size: 30px;

    position: relative;
}


.about-image-placeholder > span {
    margin-top: 20px;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

    position: relative;
}


.section-eyebrow {
    display: flex;

    align-items: center;

    gap: 12px;

    color: #1267ce;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;
}


.section-eyebrow span {
    width: 40px;

    height: 1px;

    background: #1267ce;
}


.who-content h2 {
    margin-top: 15px;

    color: #082d69;

    font-size: 42px;

    line-height: 1.1;
}


.who-content h2 strong {
    display: block;

    color: #1267ce;
}


.who-content p {
    margin-top: 18px;

    color: #52677f;

    font-size: 14px;

    line-height: 1.75;
}



/* ================= VALUES ================= */

.values-section {
    padding: 95px 0;

    background: #f6f8fb;
}


.values-heading {
    text-align: center;

    margin-bottom: 50px;
}


.values-heading .section-eyebrow {
    justify-content: center;
}


.values-heading h2 {
    margin-top: 15px;

    color: #082d69;

    font-size: 42px;

    line-height: 1.1;
}


.values-heading h2 strong {
    color: #1267ce;
}


.values-grid {
    display: grid;

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

    gap: 15px;
}


.value-card {
    min-height: 290px;

    padding: 28px;

    background: #ffffff;

    border: 1px solid #dce4ed;

    border-radius: 12px;

    position: relative;

    transition: .3s;
}


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

    box-shadow:
        0 20px 40px
        rgba(8,45,105,.10);
}


.value-dark {
    background: #082d69;

    color: #ffffff;

    border-color: #082d69;
}


.value-blue {
    background:
        linear-gradient(
            145deg,
            #1267ce,
            #082d69
        );

    color: #ffffff;

    border-color: #1267ce;
}


.value-number {
    font-size: 18px;

    font-weight: 700;
}


.value-icon {
    width: 55px;

    height: 55px;

    margin-top: 30px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid #1267ce;

    border-radius: 50%;

    color: #1267ce;
}


.value-dark .value-icon,
.value-blue .value-icon {
    border-color: #ffffff;

    color: #ffffff;
}


.value-card h3 {
    margin-top: 20px;

    color: #082d69;

    font-size: 20px;
}


.value-dark h3,
.value-blue h3 {
    color: #ffffff;
}


.value-card p {
    margin-top: 9px;

    color: #607188;

    font-size: 12px;

    line-height: 1.65;
}


.value-dark p,
.value-blue p {
    color: #d4dfed;
}



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

.about-cta {
    padding: 70px 0;

    background:
        linear-gradient(
            120deg,
            #031c45,
            #082d69,
            #0d4e9f
        );

    color: #ffffff;
}


.about-cta-container {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;
}


.about-cta h2 {
    margin-top: 15px;

    font-size: 38px;

    line-height: 1.15;
}


.about-cta h2 strong {
    display: block;

    color: #2681e5;
}



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

@media (max-width: 900px) {

    .about-hero-container {
        grid-template-columns: 1fr;
    }


    .about-hero-side {
        display: none;
    }


    .who-container {
        grid-template-columns: 1fr;

        gap: 50px;
    }


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

}


@media (max-width: 750px) {

    .about-hero-container {
        min-height: 360px;
    }


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


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


    .who-section {
        padding: 70px 0;
    }


    .about-image-placeholder {
        height: 350px;

        border-radius:
            60px
            0
            60px
            0;
    }


    .who-content h2 {
        font-size: 34px;
    }


    .values-section {
        padding: 70px 0;
    }


    .values-heading h2 {
        font-size: 34px;
    }


    .values-grid {
        grid-template-columns: 1fr;
    }


    .about-cta {
        padding: 60px 0;
    }


    .about-cta-container {
        flex-direction: column;

        align-items: flex-start;
    }


    .about-cta h2 {
        font-size: 32px;
    }

}

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


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

.services-hero {
    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            110deg,
            #ffffff,
            #f3f7fc
        );
}


.services-hero::before {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    left: -390px;
    top: -260px;

    border: 22px solid #1267ce;

    border-right-color: transparent;

    border-bottom-color: transparent;

    border-radius: 50%;
}


.services-hero-container {
    min-height: 430px;

    display: grid;

    grid-template-columns: 1fr 250px;

    align-items: center;

    gap: 80px;
}


.services-eyebrow {
    display: flex;

    align-items: center;

    gap: 10px;

    color: #1267ce;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;
}


.services-eyebrow span {
    width: 30px;

    height: 2px;

    background: #1267ce;
}


.services-hero h1 {
    margin-top: 18px;

    font-family: "Oswald", sans-serif;

    font-size: clamp(52px, 6vw, 78px);

    line-height: .96;

    color: #082d69;

    font-weight: 600;
}


.services-hero h1 strong {
    display: block;

    color: #9fa5aa;

    font-weight: 500;
}


.services-divider {
    width: 65px;

    height: 3px;

    margin: 25px 0;

    background: #1267ce;
}


.services-hero-content p {
    max-width: 620px;

    color: #52677f;

    font-size: 15px;

    line-height: 1.7;
}


.services-hero-number {
    padding-left: 35px;

    border-left: 1px solid #d5deea;

    color: #082d69;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

    line-height: 1.7;
}


.services-hero-number span {
    display: block;

    margin-bottom: 15px;

    color: #1267ce;

    font-family: "Oswald", sans-serif;

    font-size: 70px;

    font-weight: 500;

    line-height: 1;
}



/* ================= SERVICE NAV ================= */

.service-navigation {
    padding: 25px 0;

    background: #082d69;
}


.service-nav-grid {
    display: grid;

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

    gap: 1px;

    background:
        rgba(255,255,255,.2);
}


.service-nav-grid a {
    min-height: 95px;

    padding: 18px 22px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    position: relative;

    background: #082d69;

    color: #ffffff;

    font-size: 14px;

    font-weight: 700;

    line-height: 1.3;

    transition: .3s;
}


.service-nav-grid a:hover {
    background: #1267ce;
}


.service-nav-grid a > span {
    margin-bottom: 5px;

    color: #7db4ef;

    font-family: "Oswald", sans-serif;

    font-size: 15px;
}


.service-nav-grid i {
    position: absolute;

    right: 20px;

    bottom: 20px;

    font-size: 12px;

    color: #9cc5ed;
}



/* ================= SERVICE DETAILS ================= */

.service-detail {
    padding: 100px 0;

    background: #ffffff;

    border-bottom: 1px solid #edf1f5;
}


.service-detail-dark {
    background:
        linear-gradient(
            110deg,
            #f5f8fc,
            #ffffff
        );
}


.service-detail-container {
    display: grid;

    grid-template-columns:
        70px
        80px
        1fr;

    align-items: start;

    gap: 30px;
}


.service-detail-number {
    padding-top: 8px;

    color: #1267ce;

    font-family: "Oswald", sans-serif;

    font-size: 27px;

    font-weight: 500;
}


.service-detail-icon {
    width: 70px;

    height: 70px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid #1267ce;

    border-radius: 50%;

    color: #1267ce;

    font-size: 22px;
}


.service-detail-icon span {
    font-size: 13px;

    font-weight: 800;
}


.service-detail-content {
    max-width: 820px;
}


.service-detail-eyebrow {
    color: #1267ce;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;
}


.service-detail-content h2 {
    margin-top: 12px;

    color: #082d69;

    font-size: 42px;

    line-height: 1.1;
}


.service-detail-content h2 strong {
    display: block;

    color: #1267ce;
}


.service-detail-content > p {
    max-width: 730px;

    margin-top: 18px;

    color: #52677f;

    font-size: 14px;

    line-height: 1.75;
}



/* ================= SERVICE LIST ================= */

.service-list {
    display: grid;

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

    gap: 13px 35px;

    margin-top: 30px;
}


.service-list div {
    display: flex;

    align-items: flex-start;

    gap: 11px;

    color: #233d5e;

    font-size: 13px;

    line-height: 1.5;
}


.service-list i {
    margin-top: 3px;

    color: #1267ce;

    font-size: 12px;
}



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

.services-cta {
    padding: 75px 0;

    background:
        linear-gradient(
            120deg,
            #031c45,
            #082d69,
            #0d4e9f
        );

    color: #ffffff;
}


.services-cta-container {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;
}


.services-cta h2 {
    margin-top: 15px;

    font-size: 38px;

    line-height: 1.15;
}


.services-cta h2 strong {
    display: block;

    color: #2681e5;
}



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

@media (max-width: 900px) {

    .services-hero-container {
        grid-template-columns: 1fr;

        gap: 30px;

        padding:
            70px 0;
    }


    .services-hero-number {
        display: none;
    }


    .service-detail-container {
        grid-template-columns:
            60px
            70px
            1fr;
    }

}



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

@media (max-width: 750px) {

    .services-hero {
        padding: 50px 0;
    }


    .services-hero-container {
        min-height: auto;
    }


    .services-hero h1 {
        font-size: 50px;
    }


    .service-navigation {
        padding: 0;
    }


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


    .service-nav-grid a {
        min-height: 100px;
    }


    .service-detail {
        padding: 70px 0;
    }


    .service-detail-container {
        display: block;
    }


    .service-detail-number {
        margin-bottom: 15px;
    }


    .service-detail-icon {
        width: 60px;

        height: 60px;

        margin-bottom: 25px;
    }


    .service-detail-content h2 {
        font-size: 34px;
    }


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

        gap: 13px;
    }


    .services-cta {
        padding: 60px 0;
    }


    .services-cta-container {
        flex-direction: column;

        align-items: flex-start;
    }


    .services-cta h2 {
        font-size: 32px;
    }

}

/* =====================================================
   CONTACT PAGE
===================================================== */


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

.contact-hero {
    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            110deg,
            #ffffff 0%,
            #ffffff 65%,
            #f2f6fb 100%
        );
}


.contact-hero::before {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    left: -390px;
    top: -260px;

    border: 22px solid #1267ce;

    border-right-color: transparent;

    border-bottom-color: transparent;

    border-radius: 50%;
}


.contact-hero-container {
    min-height: 410px;

    display: grid;

    grid-template-columns: 1fr 280px;

    align-items: center;

    gap: 70px;
}


.contact-eyebrow {
    display: flex;

    align-items: center;

    gap: 10px;

    color: #1267ce;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;
}


.contact-eyebrow span {
    width: 30px;

    height: 2px;

    background: #1267ce;
}


.contact-hero h1 {
    margin-top: 18px;

    font-family: "Oswald", sans-serif;

    font-size: clamp(55px, 6vw, 78px);

    line-height: .95;

    color: #082d69;

    font-weight: 600;
}


.contact-hero h1 strong {
    display: block;

    color: #a0a5aa;

    font-weight: 500;
}


.contact-divider {
    width: 65px;

    height: 3px;

    margin: 25px 0;

    background: #1267ce;
}


.contact-hero-content p {
    max-width: 610px;

    color: #52677f;

    font-size: 15px;

    line-height: 1.7;
}


.contact-hero-number {
    padding-left: 35px;

    border-left: 1px solid #d5deea;

    color: #082d69;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

    line-height: 1.7;
}


.contact-hero-number span {
    display: block;

    margin-bottom: 15px;

    color: #1267ce;

    font-family: "Oswald", sans-serif;

    font-size: 70px;

    font-weight: 500;

    line-height: 1;
}



/* ================= CONTACT SECTION ================= */

.contact-section {
    padding: 100px 0;

    background: #ffffff;
}


.contact-container {
    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 90px;

    align-items: start;
}



/* ================= INFORMATION ================= */

.contact-information h2 {
    margin-top: 15px;

    color: #082d69;

    font-size: 42px;

    line-height: 1.1;
}


.contact-information h2 strong {
    color: #1267ce;
}


.contact-intro {
    max-width: 420px;

    margin-top: 18px;

    color: #607188;

    font-size: 14px;

    line-height: 1.7;
}


.contact-detail {
    display: flex;

    align-items: center;

    gap: 17px;

    margin-top: 25px;

    color: #082d69;
}


.contact-detail-icon {
    width: 50px;

    height: 50px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #edf4fb;

    color: #1267ce;

    font-size: 16px;

    transition: .3s;
}


.contact-detail:hover .contact-detail-icon {
    background: #082d69;

    color: #ffffff;
}


.contact-detail div:last-child {
    display: flex;

    flex-direction: column;
}


.contact-detail span {
    color: #1267ce;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.contact-detail strong {
    margin-top: 2px;

    color: #082d69;

    font-size: 14px;

    font-weight: 600;
}



/* ================= FORM ================= */

.contact-form-wrapper {
    padding: 38px;

    background: #f5f8fc;

    border: 1px solid #e1e8f0;

    border-radius: 12px;
}


.form-heading span {
    color: #1267ce;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.8px;
}


.form-heading h3 {
    margin-top: 6px;

    color: #082d69;

    font-size: 28px;
}


.contact-form {
    display: grid;

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

    gap: 20px;

    margin-top: 28px;
}


.form-group {
    display: flex;

    flex-direction: column;

    gap: 7px;
}


.form-full {
    grid-column: 1 / -1;
}


.form-group label {
    color: #082d69;

    font-size: 11px;

    font-weight: 700;
}


.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 13px 14px;

    border: 1px solid #d4dee9;

    border-radius: 5px;

    background: #ffffff;

    color: #172f53;

    font-family: "DM Sans", sans-serif;

    font-size: 13px;

    outline: none;

    transition: .25s;
}


.form-group textarea {
    resize: vertical;

    min-height: 130px;
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #1267ce;

    box-shadow:
        0 0 0 3px
        rgba(18,103,206,.08);
}


.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9aa7b6;
}



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

.form-submit {
    grid-column: 1 / -1;

    width: fit-content;

    min-width: 180px;

    padding: 14px 18px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    border: none;

    border-radius: 5px;

    background: #082d69;

    color: #ffffff;

    font-family: "DM Sans", sans-serif;

    font-size: 13px;

    font-weight: 700;

    cursor: pointer;

    transition: .3s;
}


.form-submit:hover {
    background: #1267ce;

    transform: translateY(-2px);
}


.form-submit span {
    width: 27px;

    height: 27px;

    display: flex;

    align-items: center;

    justify-content: center;

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

    border-radius: 50%;

    font-size: 10px;
}

/* =====================================================
   FAQ PAGE
===================================================== */


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

.faq-hero {
    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            110deg,
            #ffffff 0%,
            #ffffff 65%,
            #f2f6fb 100%
        );
}


.faq-hero::before {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    left: -390px;
    top: -260px;

    border: 22px solid #1267ce;

    border-right-color: transparent;

    border-bottom-color: transparent;

    border-radius: 50%;
}


.faq-hero-container {
    min-height: 410px;

    display: grid;

    grid-template-columns: 1fr 280px;

    align-items: center;

    gap: 70px;
}


.faq-eyebrow {
    display: flex;

    align-items: center;

    gap: 10px;

    color: #1267ce;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;
}


.faq-eyebrow span {
    width: 30px;

    height: 2px;

    background: #1267ce;
}


.faq-hero h1 {
    margin-top: 18px;

    font-family: "Oswald", sans-serif;

    font-size: clamp(55px, 6vw, 78px);

    line-height: .95;

    color: #082d69;

    font-weight: 600;
}


.faq-hero h1 strong {
    display: block;

    color: #a0a5aa;

    font-weight: 500;
}


.faq-divider {
    width: 65px;

    height: 3px;

    margin: 25px 0;

    background: #1267ce;
}


.faq-hero-content p {
    max-width: 600px;

    color: #52677f;

    font-size: 15px;

    line-height: 1.7;
}


.faq-hero-number {
    padding-left: 35px;

    border-left: 1px solid #d5deea;

    color: #082d69;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

    line-height: 1.7;
}


.faq-hero-number span {
    display: block;

    margin-bottom: 15px;

    color: #1267ce;

    font-family: "Oswald", sans-serif;

    font-size: 70px;

    font-weight: 500;

    line-height: 1;
}



/* ================= FAQ SECTION ================= */

.faq-section {
    padding: 100px 0;

    background: #ffffff;
}


.faq-container {
    display: grid;

    grid-template-columns: .75fr 1.25fr;

    gap: 90px;

    align-items: start;
}


.faq-intro {
    position: sticky;

    top: 30px;
}


.faq-intro h2 {
    margin-top: 15px;

    color: #082d69;

    font-size: 42px;

    line-height: 1.1;
}


.faq-intro h2 strong {
    display: block;

    color: #1267ce;
}


.faq-intro > p {
    max-width: 390px;

    margin-top: 18px;

    color: #607188;

    font-size: 14px;

    line-height: 1.75;
}


.faq-contact-button {
    width: fit-content;

    margin-top: 25px;

    display: flex;

    align-items: center;

    gap: 18px;

    padding: 12px 14px 12px 18px;

    background: #082d69;

    color: #ffffff;

    border-radius: 5px;

    font-size: 12px;

    font-weight: 700;

    transition: .3s;
}


.faq-contact-button:hover {
    background: #1267ce;

    transform: translateY(-2px);
}


.faq-contact-button span {
    width: 27px;

    height: 27px;

    display: flex;

    align-items: center;

    justify-content: center;

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

    border-radius: 50%;

    font-size: 10px;
}



/* ================= FAQ ACCORDION ================= */

.faq-list {
    border-top: 1px solid #dce4ed;
}


.faq-item {
    border-bottom: 1px solid #dce4ed;
}


.faq-question {
    width: 100%;

    min-height: 72px;

    padding: 18px 5px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    border: none;

    background: transparent;

    color: #082d69;

    font-family: "DM Sans", sans-serif;

    font-size: 14px;

    font-weight: 700;

    text-align: left;

    cursor: pointer;
}


.faq-question i {
    width: 30px;

    height: 30px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid #1267ce;

    border-radius: 50%;

    color: #1267ce;

    font-size: 11px;

    transition: .3s;
}


.faq-item.active .faq-question i {
    background: #082d69;

    border-color: #082d69;

    color: #ffffff;

    transform: rotate(45deg);
}


.faq-answer {
    max-height: 0;

    overflow: hidden;

    transition:
        max-height .35s ease;
}


.faq-answer p {
    padding:
        0
        45px
        22px
        5px;

    color: #607188;

    font-size: 13px;

    line-height: 1.75;
}


.faq-item.active .faq-answer {
    max-height: 250px;
}



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

.faq-cta {
    padding: 70px 0;

    background:
        linear-gradient(
            120deg,
            #031c45,
            #082d69,
            #0d4e9f
        );

    color: #ffffff;
}


.faq-cta-container {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;
}


.faq-cta h2 {
    margin-top: 15px;

    font-size: 38px;

    line-height: 1.15;
}


.faq-cta h2 strong {
    display: block;

    color: #2681e5;
}



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

@media (max-width: 900px) {

    .faq-hero-container {
        grid-template-columns: 1fr;

        gap: 30px;

        padding:
            70px 0;
    }


    .faq-hero-number {
        display: none;
    }


    .faq-container {
        grid-template-columns: 1fr;

        gap: 55px;
    }


    .faq-intro {
        position: static;
    }

}



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

@media (max-width: 750px) {

    .faq-hero {
        padding: 50px 0;
    }


    .faq-hero-container {
        min-height: auto;
    }


    .faq-hero h1 {
        font-size: 50px;
    }


    .faq-section {
        padding: 70px 0;
    }


    .faq-intro h2 {
        font-size: 34px;
    }


    .faq-question {
        min-height: 70px;

        padding: 17px 0;

        font-size: 13px;
    }


    .faq-question i {
        width: 27px;

        height: 27px;
    }


    .faq-answer p {
        padding:
            0
            30px
            20px
            0;

        font-size: 12px;
    }


    .faq-cta {
        padding: 60px 0;
    }


    .faq-cta-container {
        flex-direction: column;

        align-items: flex-start;
    }


    .faq-cta h2 {
        font-size: 32px;
    }

}

.faq-answer {
    max-height: 0;

    overflow: hidden;

    transition: max-height 0.35s ease;
}


.faq-answer p {
    padding:
        0
        45px
        22px
        5px;

    color: #607188;

    font-size: 13px;

    line-height: 1.75;
}


.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-question i {
    width: 30px;

    height: 30px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid #1267ce;

    border-radius: 50%;

    color: #1267ce;

    font-size: 11px;

    transition: 0.3s;
}


.faq-item.active .faq-question i {
    background: #082d69;

    border-color: #082d69;

    color: #ffffff;

    transform: rotate(45deg);
}

/* =====================================================
   GLOBAL RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: "DM Sans", sans-serif;

    background: #ffffff;

    color: #102d56;

    overflow-x: hidden;
}


a {
    text-decoration: none;

    color: inherit;
}


img {
    display: block;

    width: 100%;
}


button,
input,
textarea,
select {
    font-family: inherit;
}


.container {
    width: min(1180px, calc(100% - 80px));

    margin: 0 auto;
}



/* =====================================================
   NAVIGATION
===================================================== */

.site-header {
    height: 90px;

    background: #ffffff;

    position: relative;

    z-index: 1000;
}


.nav-container {
    height: 100%;

    display: flex;

    align-items: center;
}



/* LOGO */

.logo {
    width: 165px;

    flex-shrink: 0;
}


.logo img {
    width: 100%;

    height: 78px;

    object-fit: contain;

    object-position: left center;
}



/* NAV */

.main-nav {
    margin-left: auto;

    display: flex;

    align-items: center;

    gap: 35px;
}


.main-nav a {
    position: relative;

    padding: 8px 0;

    color: #162f54;

    font-size: 15px;

    font-weight: 500;

    transition: .25s;
}


.main-nav a:hover {
    color: #1267ce;
}


.main-nav a::after {
    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 0;

    height: 2px;

    background: #1267ce;

    transition: .25s;
}


.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}


.main-nav a.active {
    color: #082d69;

    font-weight: 600;
}



/* LET'S TALK */

.nav-cta {
    margin-left: 45px;

    height: 46px;

    padding: 0 17px;

    display: flex;

    align-items: center;

    gap: 15px;

    background: #082d69;

    color: #ffffff;

    border-radius: 6px;

    font-size: 13px;

    font-weight: 600;

    transition: .3s;
}


.nav-cta:hover {
    background: #1267ce;

    transform: translateY(-2px);
}


.nav-cta i {
    width: 26px;

    height: 26px;

    display: flex;

    align-items: center;

    justify-content: center;

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

    border-radius: 50%;

    font-size: 11px;
}



/* MOBILE MENU */

.menu-toggle {
    display: none;

    margin-left: auto;

    border: none;

    background: transparent;

    color: #082d69;

    font-size: 25px;

    cursor: pointer;
}



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

.contact-hero {
    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            110deg,
            #ffffff 0%,
            #ffffff 65%,
            #f2f6fb 100%
        );
}


.contact-hero::before {
    content: "";

    position: absolute;

    width: 450px;

    height: 450px;

    left: -390px;

    top: -260px;

    border: 22px solid #1267ce;

    border-right-color: transparent;

    border-bottom-color: transparent;

    border-radius: 50%;
}


.contact-hero-container {
    min-height: 410px;

    display: grid;

    grid-template-columns: 1fr 280px;

    align-items: center;

    gap: 70px;
}



/* EYEBROW */

.contact-eyebrow {
    display: flex;

    align-items: center;

    gap: 10px;

    color: #1267ce;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;
}


.contact-eyebrow span {
    width: 30px;

    height: 2px;

    background: #1267ce;
}



/* HERO HEADING */

.contact-hero h1 {
    margin-top: 18px;

    font-family: "Oswald", sans-serif;

    font-size: clamp(55px, 6vw, 78px);

    line-height: .95;

    color: #082d69;

    font-weight: 600;
}


.contact-hero h1 strong {
    display: block;

    color: #a0a5aa;

    font-weight: 500;
}



/* DIVIDER */

.contact-divider {
    width: 65px;

    height: 3px;

    margin: 25px 0;

    background: #1267ce;
}



/* HERO TEXT */

.contact-hero-content p {
    max-width: 610px;

    color: #52677f;

    font-size: 15px;

    line-height: 1.7;
}



/* HERO NUMBER */

.contact-hero-number {
    padding-left: 35px;

    border-left: 1px solid #d5deea;

    color: #082d69;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

    line-height: 1.7;
}


.contact-hero-number span {
    display: block;

    margin-bottom: 15px;

    color: #1267ce;

    font-family: "Oswald", sans-serif;

    font-size: 70px;

    font-weight: 500;

    line-height: 1;
}



/* =====================================================
   CONTACT SECTION
===================================================== */

.contact-section {
    padding: 100px 0;

    background: #ffffff;
}


.contact-container {
    display: grid;

    grid-template-columns: .8fr 1.2fr;

    gap: 90px;

    align-items: start;
}



/* =====================================================
   CONTACT INFORMATION
===================================================== */

.section-eyebrow {
    display: flex;

    align-items: center;

    gap: 12px;

    color: #1267ce;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;
}


.section-eyebrow span {
    width: 40px;

    height: 1px;

    background: #1267ce;
}


.contact-information h2 {
    margin-top: 15px;

    color: #082d69;

    font-size: 42px;

    line-height: 1.1;
}


.contact-information h2 strong {
    color: #1267ce;
}


.contact-intro {
    max-width: 420px;

    margin-top: 18px;

    color: #607188;

    font-size: 14px;

    line-height: 1.7;
}



/* =====================================================
   CONTACT DETAILS
===================================================== */

.contact-detail {
    display: flex;

    align-items: center;

    gap: 17px;

    margin-top: 25px;

    color: #082d69;
}


.contact-detail-icon {
    width: 50px;

    height: 50px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #edf4fb;

    color: #1267ce;

    border-radius: 50%;

    font-size: 16px;

    transition: .3s;
}


.contact-detail:hover .contact-detail-icon {
    background: #082d69;

    color: #ffffff;
}


.contact-detail div:last-child {
    display: flex;

    flex-direction: column;
}


.contact-detail span {
    color: #1267ce;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.contact-detail strong {
    margin-top: 2px;

    color: #082d69;

    font-size: 14px;

    font-weight: 600;
}



/* =====================================================
   CONTACT OPTIONS
===================================================== */

.contact-options {
    display: flex;

    flex-direction: column;

    gap: 15px;
}


.contact-option {
    padding: 27px;

    display: flex;

    align-items: flex-start;

    gap: 20px;

    background: #f5f8fc;

    border: 1px solid #e1e8f0;

    border-radius: 10px;

    transition: .3s;
}


.contact-option:hover {
    transform: translateY(-3px);

    border-color: #1267ce;

    box-shadow:
        0 15px 30px
        rgba(8,45,105,.08);
}



/* ICON */

.contact-option-icon {
    width: 58px;

    height: 58px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #082d69;

    color: #ffffff;

    border-radius: 50%;

    font-size: 21px;
}



/* CONTENT */

.contact-option-content > span {
    color: #1267ce;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.7px;
}


.contact-option h3 {
    margin-top: 4px;

    color: #082d69;

    font-size: 18px;

    font-weight: 700;
}


.contact-option p {
    max-width: 430px;

    margin-top: 6px;

    color: #607188;

    font-size: 12px;

    line-height: 1.6;
}


.contact-option a {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-top: 13px;

    color: #1267ce;

    font-size: 11px;

    font-weight: 700;

    transition: .25s;
}


.contact-option a:hover {
    color: #082d69;
}


.contact-option a i {
    font-size: 9px;
}



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

.contact-cta {
    padding: 70px 0;

    background:
        linear-gradient(
            120deg,
            #031c45,
            #082d69,
            #0d4e9f
        );

    color: #ffffff;
}


.contact-cta-container {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;
}


.promise-eyebrow {
    display: flex;

    align-items: center;

    gap: 12px;

    color: #ffffff;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;
}


.promise-eyebrow span {
    width: 35px;

    height: 1px;

    background: #2681e5;
}


.contact-cta h2 {
    margin-top: 15px;

    font-size: 38px;

    line-height: 1.15;
}


.contact-cta h2 strong {
    display: block;

    color: #2681e5;
}



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

.promise-button {
    min-width: 155px;

    padding: 10px 10px 10px 20px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    background: #ffffff;

    color: #082d69;

    border-radius: 5px;

    font-size: 12px;

    font-weight: 700;

    transition: .3s;
}


.promise-button:hover {
    background: #2681e5;

    color: #ffffff;

    transform: translateY(-2px);
}


.promise-button span {
    width: 28px;

    height: 28px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid #082d69;

    border-radius: 50%;

    font-size: 10px;
}


.promise-button:hover span {
    border-color: #ffffff;
}



/* =====================================================
   FOOTER
===================================================== */

.site-footer {
    padding: 25px 0;

    background: #031c45;

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


.footer-container {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;
}


.footer-item {
    display: flex;

    align-items: center;

    gap: 10px;

    color: #b9c9dc;

    font-size: 11px;

    transition: .25s;
}


.footer-item:hover {
    color: #ffffff;
}


.footer-item i {
    color: #2681e5;

    font-size: 13px;
}



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

@media (max-width: 1000px) {

    .container {
        width: calc(100% - 50px);
    }


    .main-nav {
        gap: 22px;
    }


    .nav-cta {
        margin-left: 25px;
    }


    .contact-container {
        grid-template-columns: 1fr 1fr;

        gap: 45px;
    }

}



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

@media (max-width: 750px) {


    /* ================= NAV ================= */

    .site-header {
        height: 75px;
    }


    .container {
        width: calc(100% - 30px);
    }


    .logo {
        width: 140px;
    }


    .logo img {
        height: 62px;
    }


    .main-nav {
        display: none;

        position: absolute;

        top: 75px;

        left: 0;

        width: 100%;

        padding: 25px 20px;

        flex-direction: column;

        align-items: flex-start;

        gap: 18px;

        background: #ffffff;

        border-top: 1px solid #eeeeee;

        border-bottom: 1px solid #eeeeee;

        box-shadow:
            0 15px 30px
            rgba(0,0,0,.08);
    }


    .main-nav.open {
        display: flex;
    }


    .nav-cta {
        display: none;
    }


    .menu-toggle {
        display: block;
    }



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

    .contact-hero {
        padding: 55px 0;
    }


    .contact-hero-container {
        min-height: auto;

        display: block;
    }


    .contact-hero-number {
        display: none;
    }


    .contact-hero h1 {
        font-size: 52px;
    }


    .contact-hero-content p {
        font-size: 14px;
    }



    /* ================= CONTACT ================= */

    .contact-section {
        padding: 70px 0;
    }


    .contact-container {
        display: flex;

        flex-direction: column;

        gap: 55px;
    }


    .contact-information h2 {
        font-size: 36px;
    }


    .contact-intro {
        max-width: 100%;
    }


    .contact-option {
        padding: 22px;

        gap: 15px;
    }


    .contact-option-icon {
        width: 50px;

        height: 50px;

        font-size: 18px;
    }



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

    .contact-cta {
        padding: 60px 0;
    }


    .contact-cta-container {
        flex-direction: column;

        align-items: flex-start;
    }


    .contact-cta h2 {
        font-size: 32px;
    }



    /* ================= FOOTER ================= */

    .footer-container {
        flex-direction: column;

        align-items: flex-start;

        gap: 15px;
    }

}



/* =====================================================
   SMALL PHONES
===================================================== */

@media (max-width: 420px) {

    .contact-hero h1 {
        font-size: 46px;
    }


    .contact-option {
        padding: 18px;
    }


    .contact-option h3 {
        font-size: 16px;
    }


    .contact-option p {
        font-size: 11px;
    }


    .contact-option-icon {
        width: 45px;

        height: 45px;

        font-size: 16px;
    }

}

/* =========================================================
   MOBILE OPTIMISATION
   PLATINUM & CO CONSULTING
========================================================= */

@media (max-width: 750px) {

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

    .site-header {
        height: 78px;
    }

    .nav-container {
        width: calc(100% - 24px);
        height: 78px;

        display: flex;
        align-items: center;
    }


    /* =====================================================
       LOGO + BRAND NAME
    ===================================================== */

    .logo {
        display: flex;
        align-items: center;

        gap: 7px;

        min-width: 0;

        max-width: calc(100% - 55px);

        white-space: nowrap;
    }


    .logo img {
        width: 58px;
        height: 58px;

        flex-shrink: 0;

        object-fit: contain;
    }


    .logo-text {
        display: flex;
        align-items: baseline;

        gap: 6px;

        min-width: 0;

        white-space: nowrap;
    }


    .logo-text span {
        font-size: 18px;

        line-height: 1;

        letter-spacing: .3px;

        white-space: nowrap;
    }


    .logo-text small {
        font-size: 6px;

        letter-spacing: 2px;

        white-space: nowrap;
    }


    /* =====================================================
       HAMBURGER
    ===================================================== */

    .menu-toggle {
        display: flex;

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

        width: 40px;
        height: 40px;

        margin-left: auto;

        flex-shrink: 0;

        border: none;

        background: transparent;

        color: #082d69;

        font-size: 24px;

        cursor: pointer;
    }


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

    .main-nav {
        display: none;

        position: absolute;

        top: 78px;
        left: 0;

        width: 100%;

        padding: 20px 24px 25px;

        flex-direction: column;

        align-items: flex-start;

        gap: 5px;

        background: #ffffff;

        border-top: 1px solid #e8edf3;

        border-bottom: 1px solid #e8edf3;

        box-shadow:
            0 15px 30px
            rgba(8, 45, 105, .10);

        z-index: 999;
    }


    .main-nav.open {
        display: flex;
    }


    .main-nav a {
        width: 100%;

        padding: 12px 0;

        color: #082d69;

        font-size: 15px;

        font-weight: 600;
    }


    .main-nav a::after {
        display: none;
    }


    .main-nav a.active {
        color: #1267ce;
    }


    .nav-cta {
        display: none;
    }



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

    .hero {
        padding: 42px 0 55px;
    }


    .hero-container {
        width: calc(100% - 30px);

        min-height: auto;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 35px;
    }


    .hero-content {
        width: 100%;

        max-width: none;
    }


    /* EYEBROW */

    .hero-eyebrow {
        margin-bottom: 15px;

        font-size: 9px;

        letter-spacing: 1.5px;
    }


    /* HEADING */

    .hero h1 {
        font-size: clamp(45px, 12.5vw, 60px);

        line-height: .94;

        letter-spacing: -.5px;

        max-width: 100%;
    }


    .hero h1 span {
        display: block;
    }


    /* BLUE LINE */

    .hero-line {
        width: 50px;

        height: 3px;

        margin: 19px 0;
    }


    /* DESCRIPTION */

    .hero-content p {
        max-width: 100%;

        font-size: 12px;

        line-height: 1.65;
    }


    /* =====================================================
       BUTTONS
    ===================================================== */

    .hero-buttons {
        display: flex;

        flex-direction: row;

        align-items: center;

        gap: 10px;

        margin-top: 22px;
    }


    .primary-btn,
    .secondary-btn {
        height: 43px;

        min-width: 0;

        font-size: 10px;
    }


    .primary-btn {
        flex: 1;

        padding: 0 9px 0 13px;

        gap: 8px;
    }


    .primary-btn span {
        width: 23px;
        height: 23px;

        font-size: 8px;
    }


    .secondary-btn {
        flex: .75;

        padding: 0 12px;
    }



    /* =====================================================
       TRUST ITEMS
    ===================================================== */

    .hero-trust {
        display: flex;

        align-items: center;

        justify-content: space-between;

        gap: 8px;

        width: 100%;

        margin-top: 25px;
    }


    .trust-item {
        display: flex;

        align-items: center;

        gap: 5px;
    }


    .trust-icon {
        width: 34px;
        height: 34px;

        font-size: 11px;
    }


    .trust-item span {
        font-size: 7px;

        letter-spacing: .3px;
    }


    .trust-divider {
        display: none;
    }



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

    .hero-visual {
        width: 100%;

        min-height: 300px;

        height: 300px;
    }


    .hero-image-wrapper {
        width: 100%;

        height: 300px;

        border-radius:
            55px
            0
            0
            55px;
    }


    .hero-image-wrapper img {
        width: 100%;

        height: 100%;

        object-fit: cover;
    }


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

    .hero-card {
        right: 8px;

        bottom: -15px;

        width: 225px;

        min-height: 72px;

        padding: 12px 14px;

        gap: 11px;

        border-radius: 8px;
    }


    .hero-card-icon {
        width: 38px;
        height: 38px;

        font-size: 14px;
    }


    .hero-card strong {
        font-size: 12px;
    }


    .hero-card span {
        margin-top: 2px;

        font-size: 9px;
    }

}



/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 380px) {

    .logo img {
        width: 50px;
        height: 50px;
    }


    .logo {
        gap: 5px;
    }


    .logo-text {
        gap: 4px;
    }


    .logo-text span {
        font-size: 15px;
    }


    .logo-text small {
        font-size: 5px;

        letter-spacing: 1.5px;
    }


    .hero h1 {
        font-size: 43px;
    }


    .hero-buttons {
        gap: 7px;
    }


    .primary-btn,
    .secondary-btn {
        font-size: 9px;
    }


    .trust-icon {
        width: 31px;
        height: 31px;
    }


    .trust-item span {
        font-size: 6px;
    }

}