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

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #07111f;
    color: #ffffff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

.container {
    width: min(1180px, 90%);
    margin: auto;
}



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

/* ==========================================
       BLUESTONE PREMIUM NAVIGATION
========================================== */


/* HEADER */

.site-header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1500;

    background:
        rgba(71, 77, 87, 0.28);

    -webkit-backdrop-filter:
        blur(18px) saturate(125%);

    backdrop-filter:
        blur(18px) saturate(125%);

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

    transition:
        background 0.3s ease,
        box-shadow 0.3s ease;

}


/* WHEN SCROLLING */

.site-header.scrolled {

    background:
        rgba(48, 54, 63, 0.68);

    box-shadow:
        0 8px 28px
        rgba(0,0,0,0.16);

}



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

.nav-container {

    height: 90px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}



/* ==========================================
                  LOGO
========================================== */
.navbar-brand-logo {

    display: flex;

    align-items: center;

    justify-content: flex-start;

    flex-shrink: 0;

    height: 90px;

    width: 250px;

}


.navbar-logo {

    display: block;

    width: 205px;

    max-width: 100%;

    max-height: 53px;

    object-fit: contain;

    object-position: left center;

    transition:
        transform 0.3s ease,
        filter 0.3s ease;

}


.navbar-brand-logo:hover
.navbar-logo {

    transform: scale(1.025);

    filter:
        drop-shadow(
            0 0 8px
            rgba(53,167,255,0.28)
        );

}


/* Slightly smaller after scroll */

.site-header.scrolled
.navbar-logo {

    transform: scale(0.95);

}



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

.desktop-nav {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 27px;

    flex: 1;

}


.nav-menu-item {

    position: relative;

}


.mega-nav-item {

    position: static;

}


.nav-trigger,
.nav-link-item {

    position: relative;

    display: inline-flex;

    align-items: center;

    gap: 5px;

    padding: 15px 0;

    border: none;

    background: transparent;

    font-family: inherit;

    font-size: 25px;

    font-weight: 500;

    color:
        rgba(255,255,255,0.86);

    cursor: pointer;

    white-space: nowrap;

    transition:
        color 0.25s ease;

}


.nav-trigger:hover,
.nav-link-item:hover {

    color: #ffffff;

}


.nav-trigger i {

    font-size: 7px;

    transition:
        transform 0.25s ease;

}


.nav-menu-item:hover
.nav-trigger i {

    transform: rotate(180deg);

}



/* SMALL BLUE HOVER LINE */

.nav-trigger::after,
.nav-link-item::after {

    content: '';

    position: absolute;

    left: 0;

    bottom: 1px;

    width: 0;

    height: 1.5px;

    border-radius: 5px;

    background:
        linear-gradient(
            90deg,
            #1267ff,
            #35a7ff
        );

    transition:
        width 0.3s ease;

}


.nav-trigger:hover::after,
.nav-link-item:hover::after {

    width: 100%;

}



/* ==========================================
             COMPANY DROPDOWN
========================================== */

.company-dropdown {

    position: absolute;

    top: calc(100% + 13px);

    left: -25px;

    width: 310px;

    padding: 9px;

    border-radius: 13px;

    background:
        rgba(12, 19, 29, 0.96);

    -webkit-backdrop-filter:
        blur(22px);

    backdrop-filter:
        blur(22px);

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

    box-shadow:
        0 26px 60px
        rgba(0,0,0,0.32);

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(8px);

    transition:
        opacity 0.22s ease,
        visibility 0.22s ease,
        transform 0.22s ease;

}


.nav-menu-item:hover
.company-dropdown {

    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);

}


.company-dropdown > a {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 11px;

    border-radius: 8px;

    transition:
        background 0.25s ease;

}


.company-dropdown > a:hover {

    background:
        rgba(53,167,255,0.08);

}


.company-dropdown > a > i {

    width: 34px;
    height: 34px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 8px;

    color: #35a7ff;

    background:
        rgba(53,167,255,0.08);

    font-size: 12px;

}


.company-dropdown strong {

    display: block;

    color: white;

    font-size: 14px;

    font-weight: 600;

}


.company-dropdown span {

    display: block;

    margin-top: 2px;

    color: #7f8b99;

    font-size: 14px;

}



/* ==========================================
                 MEGA MENU
========================================== */

.mega-menu {
    position: absolute;

    top: 100%;
    left: 50%;

    width: min(1060px, 94vw);

    padding: 28px;

    display: grid;

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

    gap: 20px;

    border-radius: 16px;

    background:
        rgba(9, 17, 28, 0.97);

    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);

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

    box-shadow:
        0 32px 75px rgba(0,0,0,0.40);

    opacity: 0;

    visibility: hidden;

    transform:
        translate(-50%, 8px);

    transition:
        opacity 0.22s ease,
        visibility 0.22s ease,
        transform 0.22s ease;
}

.mega-nav-item:hover
.mega-menu {

    opacity: 1;

    visibility: visible;

    transform:
        translate(-50%, 0);

}

.mega-nav-item::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;

    top: 100%;

    height: 14px;
}



/* INTRO COLUMN */

.mega-menu-intro {

    padding-right: 20px;

    border-right:
        1px solid
        rgba(255,255,255,0.07);

}


.mega-menu-intro > span {

    color: #35a7ff;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 2px;

}


.mega-menu-intro h3 {

    margin: 11px 0;

    color: white;

    font-size: 20px;

    line-height: 1.25;

}


.mega-menu-intro p {

    color: #8090a1;

    font-size: 14px;

    line-height: 1.7;

}


.mega-menu-intro a {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 18px;

    color: #35a7ff;

    font-size: 14px;

    font-weight: 600;

}


.mega-menu-intro a i {

    transition:
        transform 0.25s ease;

}


.mega-menu-intro a:hover i {

    transform: translateX(4px);

}



/* MENU COLUMNS */

.mega-menu-column {

    display: flex;

    flex-direction: column;

}


.mega-title {

    display: flex;

    align-items: center;

    gap: 7px;

    margin-bottom: 11px;

    color: #35a7ff;

    font-size: 16px;

    font-weight: 700;

    letter-spacing: 1.4px;

}


.mega-menu-column > a {

    padding: 6px 0;

    color: #adb9c6;

    font-size: 14px;

    transition:
        color 0.2s ease,
        transform 0.2s ease;

}


.mega-menu-column > a:hover {

    color: white;

    transform:
        translateX(3px);

}



/* ==========================================
            START PROJECT CTA
========================================== */

.nav-project-btn {

    flex-shrink: 0;

    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding:
        10px 17px;

    border-radius: 7px;

    color: white;

    background:
        linear-gradient(
            90deg,
            #1267ff,
            #258cff
        );

    font-size: 16px;

    font-weight: 600;

    box-shadow:
        0 8px 22px
        rgba(18,103,255,0.16);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;

}


.nav-project-btn i {

    font-size: 16px;

    transition:
        transform 0.25s ease;

}


.nav-project-btn:hover {

    transform:
        translateY(-2px);

    box-shadow:
        0 12px 30px
        rgba(18,103,255,0.25);

}


.nav-project-btn:hover i {

    transform:
        translate(2px,-2px);

}


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

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

.menu-toggle {

    width: 40px;
    height: 40px;

    display: none;

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

    padding: 0;

    border-radius: 9px;

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

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

    color: #ffffff;

    cursor: pointer;

    position: relative;

    z-index: 1600;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}


.menu-toggle i {

    color: #ffffff;

    font-size: 18px;

    line-height: 1;

    display: block;

}


.menu-toggle:hover {

    background:
        rgba(53,167,255,0.12);

    border-color:
        rgba(53,167,255,0.35);

    transform:
        translateY(-1px);
}




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

.mobile-navigation {

    position: fixed;

    inset: 0;

    z-index: 3000;

    background:
        rgba(3,8,14,0.62);

    -webkit-backdrop-filter:
        blur(10px);

    backdrop-filter:
        blur(10px);

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;

}


.mobile-navigation.open {

    opacity: 1;

    visibility: visible;

}



/* MOBILE PANEL */

.mobile-navigation-panel {

    width:
        min(480px, 100%);

    height: 100%;

    margin-left: auto;

    overflow-y: auto;

    padding:
        20px 24px 30px;

    display: flex;

    flex-direction: column;

    background:
        linear-gradient(
            180deg,
            #07111f,
            #0a1d30
        );

    transform:
        translateX(35px);

    transition:
        transform 0.35s ease;

}


.mobile-navigation.open
.mobile-navigation-panel {

    transform:
        translateX(0);

}



/* MOBILE HEADER */

.mobile-nav-header {

    min-height: 52px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding-bottom: 15px;

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

}


.mobile-brand {

    display: flex;

    align-items: center;

}


.mobile-logo {

    width: 150px;

    max-height: 40px;

    object-fit: contain;

}


.mobile-close {

    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: none;

    border-radius: 50%;

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

    color: white;

    font-size: 16px;

    cursor: pointer;

}



/* MOBILE LINKS */

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

.mobile-nav-links {

    display: flex;

    flex-direction: column;

    padding: 22px 0;

}


/* MAIN LINKS + DROPDOWN BUTTONS */

.mobile-main-link,
.mobile-nav-toggle {

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 14px 0;

    border: none;

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

    background: transparent;

    color: white;

    font-family: inherit;

    font-size: 14px !important;

    font-weight: 600;

    letter-spacing: -0.4px;

    text-align: left;

    cursor: pointer;

    transition:
        color 0.25s ease,
        padding-left 0.25s ease;

}


.mobile-main-link:hover,
.mobile-nav-toggle:hover {

    color: #35a7ff;

    padding-left: 4px;

}


/* CHEVRON */

.mobile-nav-toggle i {

    color: #35a7ff;

    font-size: 10px;

    transition:
        transform 0.3s ease;

}


.mobile-nav-group.open
.mobile-nav-toggle i {

    transform: rotate(180deg);

}


/* ==========================================
        MOBILE SUBMENU - FINAL SIZE FIX
========================================== */

.mobile-nav-group .mobile-submenu {
    max-height: 0;
    overflow: hidden;
    opacity: 0;

    padding-left: 8px;

    transition:
        max-height 0.4s ease,
        opacity 0.25s ease,
        padding 0.25s ease;
}


.mobile-nav-group.open .mobile-submenu {
    max-height: 1000px;
    opacity: 1;

    padding-top: 8px;
    padding-bottom: 12px;
}


/* CATEGORY LABELS */

.mobile-nav-group .mobile-submenu-title {
    display: block;

    margin: 10px 8px 5px;

    color: #35a7ff;

    font-size: 8px !important;
    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


/* SUBMENU LINKS */

.mobile-nav-group .mobile-submenu a {
    display: block;

    padding: 8px 9px !important;

    color: #aeb9c6;

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

    line-height: 1.4 !important;

    letter-spacing: 0 !important;

    border-bottom: none !important;

    border-radius: 6px;

    transition:
        color 0.2s ease,
        background 0.2s ease,
        padding-left 0.2s ease;
}


.mobile-nav-group .mobile-submenu a:hover {
    color: #ffffff;

    background:
        rgba(53,167,255,0.07);

    padding-left: 13px !important;
}


/* MOBILE FOOTER */

.mobile-nav-bottom {

    margin-top: auto;

}


.mobile-project-btn {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 14px 17px;

    border-radius: 8px;

    color: white;

    background:
        linear-gradient(
            90deg,
            #1267ff,
            #35a7ff
        );

    font-size: 12px;

    font-weight: 600;

}


.mobile-nav-bottom p {

    margin-top: 17px;

    color: #68798b;

    font-size: 10px;

    line-height: 1.7;

}



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

@media (max-width: 1050px) {

    .desktop-nav,
    .nav-project-btn {

        display: none;

    }


    .menu-toggle {

        display: flex;

    }


    .nav-container {

        height: 54px;

    }


    .navbar-brand-logo {

        height: 54px;

    }

}



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

@media (max-width: 600px) {

    .nav-container {

        height: 52px;

    }


    .navbar-brand-logo {

        width: 150px;

        height: 52px;

    }


    .navbar-logo {

        width: 140px;

        max-height: 38px;

    }

}



/* NEVER SHOW MOBILE OVERLAY ON DESKTOP */

@media (min-width: 1051px) {

    .mobile-navigation {

        display: none;

    }

}



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

.hero-section {
    position: relative;

    min-height: 100vh;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(circle at 75% 50%,
        rgba(18,103,255,0.18),
        transparent 35%),

        linear-gradient(
        135deg,
        #07111f 0%,
        #08172a 50%,
        #06101c 100%
        );
}


.hero-grid {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);

    background-size: 60px 60px;

    -webkit-mask-image:
    linear-gradient(
        to bottom,
        transparent,
        black,
        transparent
    );

mask-image:
    linear-gradient(
        to bottom,
        transparent,
        black,
        transparent
    );
}


.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.35;
}


.glow-one {
    width: 350px;
    height: 350px;
    background: #1267ff;
    right: 12%;
    top: 20%;
}


.glow-two {
    width: 250px;
    height: 250px;
    background: #35a7ff;
    right: 30%;
    bottom: 10%;
    opacity: 0.12;
}


.hero-container {
    position: relative;
    z-index: 5;

    display: grid;
    grid-template-columns: 1.1fr 0.9fr;

    align-items: center;

    gap: 80px;

    padding-top: 100px;
}


.hero-content {
    max-width: 720px;
}


.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 8px 14px;

    border: 1px solid rgba(53,167,255,0.25);

    border-radius: 30px;

    background: rgba(53,167,255,0.06);

    color: #a9d9ff;

    font-size: 12px;
    letter-spacing: 1px;

    margin-bottom: 25px;
}


.hero-tag span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #35a7ff;

    box-shadow:
        0 0 14px #35a7ff;
}


.hero-content h1 {
    font-size: clamp(58px, 7vw, 95px);

    line-height: 0.98;

    letter-spacing: -5px;

    font-weight: 800;

    max-width: 820px;
}


.hero-content h1 span {
    display: block;

    color: transparent;

    background:
        linear-gradient(90deg,
        #1267ff,
        #35a7ff);

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

    margin-top: 10px;
}


.hero-description {
    max-width: 650px;

    color: #aab6c5;

    font-size: 17px;

    line-height: 1.8;

    margin: 30px 0 35px;
}


.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}


.primary-btn,
.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;

    padding: 15px 25px;

    border-radius: 5px;

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

    transition: 0.3s ease;
}


.primary-btn {
    background:
        linear-gradient(90deg,
        #1267ff,
        #1989ff);

    color: white;
}


.primary-btn:hover {
    transform: translateY(-4px);

    box-shadow:
        0 15px 35px rgba(18,103,255,0.30);
}


.secondary-btn {
    border:
        1px solid rgba(255,255,255,0.20);

    color: white;

    background:
        rgba(255,255,255,0.04);
}


.secondary-btn:hover {
    background: white;
    color: #07111f;

    transform: translateY(-4px);
}



/* ==========================================
                MARKETS
========================================== */

.hero-markets {
    margin-top: 50px;
}


.hero-markets > span {
    display: block;

    color: #6f7d8d;

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 2px;

    margin-bottom: 12px;
}


.market-list {
    display: flex;
    flex-wrap: wrap;

    align-items: center;

    gap: 10px;

    color: #cbd4df;

    font-size: 12px;
}


.market-list strong {
    font-weight: 500;
}


.market-list i {
    width: 3px;
    height: 3px;

    border-radius: 50%;

    background: #1267ff;
}



/* ==========================================
             DIGITAL VISUAL
========================================== */

.hero-visual {
    width: 470px;
    height: 470px;

    position: relative;

    margin-left: auto;

    display: flex;
    align-items: center;
    justify-content: center;
}


.digital-core {
    position: relative;

    width: 120px;
    height: 120px;

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

    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;

    animation: coreFloat 5s ease-in-out infinite;
}


@keyframes coreFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}


/* STONE INSIDE DIGITAL CORE */

.digital-stone {
    width: 150px;
    height: 150px;

    display: block;
    object-fit: contain;

    filter: drop-shadow(0 0 18px rgba(53,167,255,0.28));

    transform-origin: center center;

    animation: stoneRotate 16s linear infinite;
}


@keyframes stoneRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}

.digital-orbit {
    position: absolute;

    border:
        1px solid rgba(53,167,255,0.15);

    border-radius: 50%;
}


.orbit-one {
    width: 260px;
    height: 260px;
}


.orbit-two {
    width: 360px;
    height: 360px;
}


.orbit-three {
    width: 455px;
    height: 455px;

    border-style: dashed;

    animation:
        rotateOrbit 35s linear infinite;
}


@keyframes rotateOrbit {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


.floating-card {
    position: absolute;

    padding: 10px 15px;

    display: flex;
    align-items: center;

    gap: 9px;

    border-radius: 8px;

    background:
        rgba(14, 31, 53, 0.78);

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

    
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    
    color: #dbe7f5;

    font-size: 12px;

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

    animation:
        floatingCard 5s ease-in-out infinite;
}


.floating-card i {
    color: #35a7ff;
}


.card-tech {
    top: 70px;
    left: 5px;
}


.card-growth {
    top: 65px;
    right: -5px;

    animation-delay: 1s;
}


.card-strategy {
    bottom: 85px;
    left: 0;

    animation-delay: 2s;
}


.card-global {
    bottom: 65px;
    right: 5px;

    animation-delay: 3s;
}


@keyframes floatingCard {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

}



/* ==========================================
                SCROLL
========================================== */

.scroll-text {
    position: absolute;

    bottom: 25px;
    left: 50%;

    transform:
        translateX(-50%);

    display: flex;
    align-items: center;

    gap: 10px;

    color: #667789;

    font-size: 9px;

    letter-spacing: 3px;
}


.scroll-text i {
    color: #35a7ff;

    animation:
        scrollMove 1.5s infinite;
}


@keyframes scrollMove {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }

}



/* ==========================================
            PREVIEW ABOUT
========================================== */

.preview-section {
    padding: 130px 0;

    background: #ffffff;

    color: #07111f;

    text-align: center;
}


.preview-section .container {
    max-width: 850px;
}


.section-kicker {
    color: #1267ff;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 3px;
}


.preview-section h2 {
    font-size: clamp(38px, 5vw, 65px);

    line-height: 1.1;

    letter-spacing: -2px;

    margin: 20px 0;
}


.preview-section h2 span {
    color: #1267ff;
}


.preview-section p {
    color: #667789;

    font-size: 17px;

    line-height: 1.8;
}



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

@media (max-width: 1000px) {

    .desktop-nav,
    .nav-cta {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

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

        text-align: center;

        padding-top: 150px;
        padding-bottom: 100px;
    }

    .hero-content {
        margin: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .market-list {
        justify-content: center;
    }

    .hero-visual {
        margin: 20px auto 0;

        width: 400px;
        height: 400px;
    }

}


@media (max-width: 600px) {

    .hero-content h1 {
        letter-spacing: -3px;
    }

    .hero-visual {
        width: 310px;
        height: 310px;
    }

    .orbit-one {
        width: 200px;
        height: 200px;
    }

    .orbit-two {
        width: 260px;
        height: 260px;
    }

    .orbit-three {
        width: 310px;
        height: 310px;
    }

    .digital-core {
        width: 125px;
        height: 125px;
    }

    .digital-core span {
        font-size: 65px;
    }

    .floating-card {
        font-size: 10px;
        padding: 8px 10px;
    }

}


/* ==========================================
          HERO PREMIUM MOTION
========================================== */


/* HERO TEXT REVEAL */

.reveal-line {

    display: block;

    opacity: 0;

    transform: translateY(35px);

    animation: revealLine 0.9s ease forwards;

}


.reveal-line:nth-child(1) {

    animation-delay: 0.2s;

}


.reveal-line:nth-child(2) {

    animation-delay: 0.45s;

}


.highlight-line {

    color: transparent;

    background:
        linear-gradient(
        90deg,
        #1267ff,
        #35a7ff
        );

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

}


@keyframes revealLine {

    to {

        opacity: 1;

        transform: translateY(0);

    }

}



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

.primary-btn {

    position: relative;

    overflow: hidden;

}


.primary-btn::before {

    content: '';

    position: absolute;

    top: 0;

    left: -120%;

    width: 60%;

    height: 100%;

    background:
        linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.35),
        transparent
        );

    transform: skewX(-20deg);

    transition: left 0.6s ease;

}


.primary-btn:hover::before {

    left: 140%;

}



/* ==========================================
             ORBIT LIGHT DOTS
========================================== */

.orbit-dot {

    position: absolute;

    width: 8px;

    height: 8px;

    border-radius: 50%;

    background: #35a7ff;

    box-shadow:
        0 0 14px #35a7ff,
        0 0 28px rgba(53,167,255,0.7);

    z-index: 3;

}


.dot-one {

    top: 28%;

    right: 18%;

    animation:
        orbitFloatOne 8s ease-in-out infinite;

}


.dot-two {

    bottom: 24%;

    right: 30%;

    width: 6px;

    height: 6px;

    animation:
        orbitFloatTwo 10s ease-in-out infinite;

}


.dot-three {

    top: 60%;

    right: 10%;

    width: 5px;

    height: 5px;

    opacity: 0.8;

    animation:
        orbitFloatThree 12s ease-in-out infinite;

}


@keyframes orbitFloatOne {

    0%,100% {

        transform: translate(0,0);

    }

    50% {

        transform: translate(-25px,15px);

    }

}


@keyframes orbitFloatTwo {

    0%,100% {

        transform: translate(0,0);

    }

    50% {

        transform: translate(20px,-18px);

    }

}


@keyframes orbitFloatThree {

    0%,100% {

        transform: translate(0,0);

    }

    50% {

        transform: translate(-15px,-20px);

    }

}



/* ==========================================
            CURSOR GLOW
========================================== */

.cursor-glow {

    position: absolute;

    width: 300px;

    height: 300px;

    border-radius: 50%;

    pointer-events: none;

    background:
        radial-gradient(
        circle,
        rgba(53,167,255,0.12),
        transparent 65%
        );

    transform:
        translate(-50%, -50%);

    opacity: 0;

    transition:
        opacity 0.3s ease;

    z-index: 1;

}



/* ==========================================
           SUBTLE HERO DEPTH
========================================== */

.hero-visual {

    transition:
        transform 0.3s ease-out;

}


.floating-card {

    will-change: transform;

}



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

@media (max-width: 900px) {

    .cursor-glow {

        display: none;

    }

}


@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        scroll-behavior: auto !important;

    }

}

/* ==========================================
        PREMIUM NAVIGATION UPGRADE
========================================== */

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-item {
    position: relative;
}

.nav-trigger,
.nav-link-item {

    background: none;
    border: none;

    color: rgba(255,255,255,0.72);

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

    cursor: pointer;

    display: inline-flex;
    align-items: center;

    gap: 7px;

    transition: 0.3s ease;
}

.nav-trigger i {
    font-size: 9px;
    transition: transform 0.3s ease;
}

.nav-trigger:hover,
.nav-link-item:hover {
    color: #35a7ff;
}

.dropdown-item:hover .nav-trigger i,
.mega-item:hover .nav-trigger i {
    transform: rotate(180deg);
}


/* small dropdown */

.simple-dropdown {

    position: absolute;

    top: calc(100% + 22px);
    left: 0;

    width: 220px;

    padding: 12px;

    border-radius: 10px;

    background: rgba(9, 23, 41, 0.97);

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

    box-shadow:
        0 25px 50px rgba(0,0,0,0.35);

    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition: all 0.25s ease;
}

.dropdown-item:hover .simple-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.simple-dropdown a {

    display: block;

    padding: 11px 12px;

    color: #c9d3df;

    font-size: 13px;

    border-radius: 6px;

    transition: 0.25s ease;
}

.simple-dropdown a:hover {

    background: rgba(53,167,255,0.08);

    color: #35a7ff;
}


/* ==========================================
                MEGA MENU
========================================== */

.mega-item {
    position: static;
}

.mega-menu {

    position: absolute;

    top: calc(100% + 18px);
    left: 50%;

    transform:
        translate(-50%, 14px);

    width: min(1050px, 90vw);

    padding: 28px;

    display: grid;

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

    gap: 22px;

    background:
        rgba(8, 22, 40, 0.98);

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

    border-radius: 16px;

    box-shadow:
        0 30px 70px rgba(0,0,0,0.45);

    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.mega-item:hover .mega-menu {

    opacity: 1;
    visibility: visible;

    transform:
        translate(-50%, 0);
}

.mega-column {

    padding: 10px;
}

.mega-label {

    display: block;

    margin-bottom: 14px;

    color: #35a7ff;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;
}

.mega-column a {

    display: block;

    padding: 9px 0;

    color: #b8c5d3;

    font-size: 12px;

    line-height: 1.4;

    transition: 0.25s ease;
}

.mega-column a:hover {

    color: white;

    transform:
        translateX(4px);
}


/* ==========================================
           NAVBAR SUBTLE INDICATOR
========================================== */

.nav-link-item,
.nav-trigger {

    position: relative;
}

.nav-link-item::after,
.nav-trigger::after {

    content: '';

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;

    height: 2px;

    background:
        linear-gradient(
        90deg,
        #1267ff,
        #35a7ff
        );

    transition: width 0.3s ease;
}

.nav-link-item:hover::after,
.nav-trigger:hover::after {

    width: 100%;
}


/* ==========================================
          START PROJECT BUTTON
========================================== */

.nav-cta {

    border-radius: 8px;

    padding: 12px 18px;

    background:
        linear-gradient(
        90deg,
        #1267ff,
        #1989ff
        );

    box-shadow:
        0 8px 25px
        rgba(18,103,255,0.18);
}

.nav-cta i {

    font-size: 11px;

    transition:
        transform 0.3s ease;
}

.nav-cta:hover i {

    transform:
        translate(3px, -3px);
}


/* ==========================================
        MOBILE / TABLET NAV HIDE
========================================== */

@media (max-width: 1000px) {

    .desktop-nav,
    .nav-cta {

        display: none;

    }

}


/* ==========================================
              OUR SOLUTIONS
========================================== */
/* ==========================================
   SOLUTIONS SECTION - REFINED VERSION
========================================== */

.solutions-axis-section {
    position: relative;
    padding: 130px 0 140px;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 20%, rgba(53,167,255,0.12), transparent 30%),
        radial-gradient(circle at 85% 30%, rgba(0,210,255,0.10), transparent 28%),
        radial-gradient(circle at 50% 85%, rgba(53,167,255,0.08), transparent 35%),
        #04101f;
}

/* Intro area */
.solutions-axis-intro {
    position: relative;
    z-index: 2;

    display: block;

    max-width: 760px;

    margin: 0 0 70px 0;
}

.solutions-axis-heading .section-kicker {
    display: block;

    margin-bottom: 14px;

    color: #35a7ff;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2.2px;

    text-transform: uppercase;
}

.solutions-axis-intro > p {
    margin: 0;

    max-width: 680px;

    color: rgba(255,255,255,0.72);

    font-size: 16px;

    line-height: 1.8;
}


.solutions-axis-heading h2 {
    margin: 0 0 22px;

    max-width: 680px;

    font-size: clamp(46px, 5.5vw, 76px);

    line-height: 0.98;

    letter-spacing: -3px;

    color: #ffffff;

    font-weight: 750;
}

.solutions-axis-heading h2 span {
    display: block;

    color: #35a7ff;
}

.solutions-axis-heading p {
    margin: 0;
    color: rgba(255,255,255,0.76);
    font-size: 17px;
    line-height: 1.85;
    max-width: 560px;
}



/* more space between intro and cards */
.solutions-axis-layout {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(280px, 1fr)
        220px
        minmax(280px, 1fr);

    grid-template-areas:
        "tech center business"
        "bottom bottom bottom";

    gap: 34px 42px;

    align-items: stretch;

    max-width: 1180px;

    margin: 28px auto 0;
}

.pillar-tech {
    grid-area: tech;
}

.pillar-business {
    grid-area: business;
}

.pillar-creative,
.pillar-learning {
    width: 100%;
    text-align: center;
}


.pillar-creative p,
.pillar-learning p {
    max-width: 520px;

    margin-left: auto;
    margin-right: auto;
}

.solutions-bottom-grid {
    grid-area: bottom;

    display: grid;

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

    gap: 28px;

    margin-top: 10px;

}


/* LIGHT GREY / SOFT WHITE CARDS */
.solution-pillar {
    position: relative;
    padding: 34px 32px;
    border-radius: 24px;

    background:
        linear-gradient(
            180deg,
            rgba(244,248,252,0.95) 0%,
            rgba(229,236,244,0.92) 100%
        );

    border: 1px solid rgba(130,160,200,0.28);

    box-shadow:
        0 18px 45px rgba(0,0,0,0.18),
        inset 0 1px 0 rgba(255,255,255,0.55);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.solution-pillar:hover {
    transform: translateY(-6px);
    border-color: rgba(53,167,255,0.35);
    box-shadow:
        0 22px 52px rgba(0,0,0,0.22),
        0 0 24px rgba(53,167,255,0.10);
}

.solution-pillar::before {
    display: none;
}

/* Card small top label */
.pillar-mini-title {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;

    color: #6d7d90;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

/* Card titles */
.solution-pillar h3 {
    margin: 0 0 14px;
    color: #0a1830;
    font-size: 32px;
    line-height: 1.1;
    letter-spacing: -1px;
}

/* Card text */
.solution-pillar p {
    margin: 0 0 24px;
    color: #4e6077;
    font-size: 14px;
    line-height: 1.8;
}

/* Service tags */
.pillar-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0 0 26px;
}

.pillar-list li {
    padding: 8px 11px;
    border-radius: 999px;
    background: rgba(18,103,255,0.06);
    border: 1px solid rgba(18,103,255,0.10);
    color: #22344c;
    font-size: 11px;
    font-weight: 500;
}

.center-list {
    justify-content: center;
}

/* Links inside cards */
.pillar-link,
.solution-pillar a {
    color: #1267ff;
    font-weight: 600;
    text-decoration: none;
    transition: 0.25s ease;
}

.pillar-link:hover,
.solution-pillar a:hover {
    color: #0a56db;
}

/* Creative card center style */
.pillar-creative {
    padding: 36px 40px;
}

.pillar-creative p {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.solutions-bottom-grid .solution-pillar {
    padding: 30px 28px;
}

.solutions-bottom-grid .pillar-list {
    justify-content: center;
    gap: 7px;
}

/* CENTER STONE AREA */
.solutions-axis-center {
    grid-area: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    position: relative;
}

.axis-line {
    display: none;
}

.axis-core {
    position: relative;
    width: 190px;
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.axis-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(53,167,255,0.18);
}

.ring-one {
    width: 150px;
    height: 150px;
}

.ring-two {
    width: 195px;
    height: 195px;
}

.axis-core-inner {
    width: 108px;
    height: 108px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(53,167,255,0.18), rgba(8,26,43,0.72) 65%);
    border: 1px solid rgba(53,167,255,0.25);
    box-shadow: 0 0 30px rgba(53,167,255,0.18);
}

.axis-stone {
    width: 64px;
    height: 64px;
    object-fit: contain;
    animation: stoneRotate 16s linear infinite;
    filter: drop-shadow(0 0 16px rgba(53,167,255,0.30));
}

.axis-core span {
    position: absolute;
    bottom: -26px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.60);
    font-size: 10px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    white-space: nowrap;
}

@keyframes stoneRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* TABLET */
@media (max-width: 1050px) {
    .solutions-axis-heading {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .solutions-axis-layout {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "tech business"
            "center center"
            "bottom bottom";
    }

    .solutions-axis-center {
        min-height: 230px;
    }
}

/* MOBILE */
@media (max-width: 650px) {
    .solutions-axis-section {
        padding: 100px 0;
    }

    .solutions-axis-layout {
        grid-template-columns: 1fr;
        grid-template-areas:
             "center"
            "tech"
            "business"
            "bottom";

        gap: 22px;
    }

    .solutions-bottom-grid {
        grid-template-columns: 1fr;

        gap: 22px;
    }

    .solution-pillar,
    .pillar-creative,
    .pillar-learning {

        padding: 24px 20px;

        text-align: left;
    }

     .solutions-bottom-grid .pillar-list,
    .center-list {

        justify-content: flex-start;
    }

    .solutions-axis-center {
        min-height: 210px;
    }

    .solution-pillar h3 {
        font-size: 27px;
    }

    .solutions-axis-heading h2 {
        font-size: 38px;
    }

    .solutions-axis-heading p {
        font-size: 15px;
    }
}






/* ==========================================
                GLOBAL REACH
========================================== */

.global-section {

    position: relative;

    padding: 150px 0;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 75% 45%,
            rgba(18,103,255,0.14),
            transparent 30%
        ),
        #06101c;

}


.global-container {

    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 90px;

    align-items: center;

    position: relative;

    z-index: 3;

}


.global-content h2 {

    font-size: clamp(42px, 5vw, 68px);

    line-height: 1.05;

    letter-spacing: -3px;

    margin: 18px 0 28px;

}


.global-content h2 span {

    display: block;

    color: #35a7ff;

}


.global-content p {

    color: #91a1b3;

    line-height: 1.8;

    margin-bottom: 18px;

    max-width: 600px;

}


.global-strengths {

    display: grid;

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

    gap: 14px;

    margin-top: 35px;

}


.global-strength-item {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 14px 16px;

    border-radius: 10px;

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

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

    color: #d1dbe5;

    font-size: 12px;

    transition: 0.3s ease;

}


.global-strength-item i {

    color: #35a7ff;

}


.global-strength-item:hover {

    transform: translateY(-4px);

    background: rgba(53,167,255,0.06);

    border-color: rgba(53,167,255,0.18);

}



/* ==========================================
                GLOBAL VISUAL
========================================== */

.global-visual {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    min-height: 520px;

}


.globe {

    width: 430px;

    height: 430px;

    border-radius: 50%;

    position: relative;

    border: 1px solid rgba(53,167,255,0.22);

    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(18,103,255,0.08),
            rgba(18,103,255,0.015) 65%,
            transparent 70%
        );

    box-shadow:
        0 0 80px rgba(18,103,255,0.12);

    animation: globeFloat 6s ease-in-out infinite;

}


@keyframes globeFloat {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

}


.globe-line {

    position: absolute;

    inset: 15%;

    border-radius: 50%;

    border: 1px solid rgba(53,167,255,0.12);

}


.globe-line-one {

    transform: rotateY(65deg);

}


.globe-line-two {

    transform: rotateY(35deg);

}


.globe-line-three {

    transform: rotateY(-55deg);

}


.globe-equator {

    position: absolute;

    left: 5%;

    top: 50%;

    width: 90%;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(53,167,255,0.25),
            transparent
        );

}


.global-point {

    position: absolute;

    display: flex;

    align-items: center;

    gap: 7px;

    font-size: 10px;

    color: #d6e1ec;

}


.global-point span {

    width: 8px;

    height: 8px;

    border-radius: 50%;

    background: #35a7ff;

    box-shadow:
        0 0 12px #35a7ff,
        0 0 24px rgba(53,167,255,0.6);

    animation: pointPulse 2s ease-in-out infinite;

}


@keyframes pointPulse {

    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.4);
        opacity: 0.7;
    }

}


.point-dubai {
    top: 35%;
    left: 58%;
}

.point-mauritius {
    top: 63%;
    left: 56%;
}

.point-india {
    top: 45%;
    left: 68%;
}

.point-canada {
    top: 24%;
    left: 23%;
}

.point-madagascar {
    top: 70%;
    left: 44%;
}


.worldwide-label {

    position: absolute;

    bottom: 35px;

    padding: 12px 16px;

    border-radius: 30px;

    background: rgba(10,27,48,0.75);

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

    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);

    color: #c9d4df;

    font-size: 11px;

    display: flex;

    gap: 9px;

    align-items: center;

}


.worldwide-label i {

    color: #35a7ff;

}



/* ==========================================
            DECORATIVE GLOWS
========================================== */

.global-glow {

    position: absolute;

    border-radius: 50%;

    filter: blur(110px);

}


.global-glow-one {

    width: 320px;
    height: 320px;

    background: rgba(18,103,255,0.14);

    right: 8%;

    top: 20%;

}


.global-glow-two {

    width: 220px;
    height: 220px;

    background: rgba(53,167,255,0.08);

    left: 10%;

    bottom: 10%;

}



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

@media (max-width: 950px) {

    .global-container {

        grid-template-columns: 1fr;

        gap: 55px;

    }

    .global-content {

        text-align: center;

    }

    .global-content p {

        margin-left: auto;
        margin-right: auto;

    }

    .global-strengths {

        max-width: 600px;

        margin-left: auto;
        margin-right: auto;

    }

}


@media (max-width: 600px) {

    .global-section {

        padding: 100px 0;

    }

    .global-strengths {

        grid-template-columns: 1fr;

    }

    .globe {

        width: 310px;

        height: 310px;

    }

    .global-visual {

        min-height: 380px;

    }

}


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

.why-section {
    position: relative;
    overflow: hidden;
    padding: 130px 0;
    background:
        linear-gradient(
            180deg,
            #f8fbff 0%,
            #f2f6fb 45%,
            #eef3f9 100%
        );
}


/* soft background glow */

.why-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}

.orb-one {
    width: 280px;
    height: 280px;
    top: 80px;
    left: -80px;
    background: rgba(53, 167, 255, 0.10);
}

.orb-two {
    width: 340px;
    height: 340px;
    bottom: 40px;
    right: -100px;
    background: rgba(18, 103, 255, 0.08);
}


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

.why-header {
    position: relative;
    z-index: 2;
    max-width: 780px;
    margin-bottom: 55px;
}

.why-header .section-kicker {
    display: inline-block;
    margin-bottom: 18px;
    color: #1f6fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.why-header h2 {
    margin: 0 0 20px;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1.03;
    letter-spacing: -2.5px;
    color: #07111f;
    font-weight: 750;
}

.why-header h2 span {
    display: block;
    color: #2f7cff;
}

.why-header p {
    margin: 0;
    max-width: 650px;
    color: #5f7187;
    font-size: 17px;
    line-height: 1.85;
}


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

.why-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}


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

.why-card {
    position: relative;

    min-height: 275px;

    padding: 28px 24px 26px;

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            #0a1422 0%,
            #101d2f 52%,
            #0b1725 100%
        );

    border:
        1px solid rgba(53,167,255,0.22);

    box-shadow:
        0 18px 45px rgba(10,24,45,0.20),
        0 0 20px rgba(53,167,255,0.08);

    overflow: hidden;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.why-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 12%;

    width: 76%;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #35a7ff,
            #1267ff,
            transparent
        );

    box-shadow:
        0 0 14px rgba(53,167,255,0.65);

    opacity: 0.75;

    transition:
        opacity 0.35s ease,
        width 0.35s ease,
        left 0.35s ease;
}


/* SOFT LIGHT INSIDE CARD */

.why-card::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

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

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(53,167,255,0.15),
            transparent 68%
        );

    opacity: 0.5;

    pointer-events: none;

    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
}

.why-card:hover {
    transform:
        translateY(-8px);

    border-color:
        rgba(53,167,255,0.48);

    box-shadow:
        0 26px 60px rgba(10,24,45,0.28),
        0 0 28px rgba(53,167,255,0.16);
}


.why-card:hover::before {
    left: 6%;
    width: 88%;
    opacity: 1;
}


.why-card:hover::after {
    opacity: 0.9;

    transform:
        scale(1.15);
}


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

.why-card-top {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}


.why-icon {
    position: relative;
    z-index: 2;

    width: 50px;
    height: 50px;

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

    border-radius: 15px;

    background:
        linear-gradient(
            145deg,
            rgba(53,167,255,0.20),
            rgba(18,103,255,0.08)
        );

    border:
        1px solid rgba(53,167,255,0.24);

    color: #62c4ff;

    font-size: 18px;

    box-shadow:
        0 0 16px rgba(53,167,255,0.12),
        inset 0 1px 0 rgba(255,255,255,0.08);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.why-card:hover
.why-icon {
    transform:
        translateY(-3px);

    box-shadow:
        0 0 22px rgba(53,167,255,0.22);
}



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

.why-card h3 {
    position: relative;
    z-index: 2;

    margin:
        0 0 14px;

    color: #f7fafc;

    font-size: 24px;

    line-height: 1.15;

    letter-spacing: -0.6px;

    font-weight: 700;
}


.why-card p {
    position: relative;
    z-index: 2;

    margin: 0;

    color: #9cacc0;

    font-size: 14px;

    line-height: 1.75;
}


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

@media (max-width: 1100px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


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

@media (max-width: 650px) {
    .why-section {
        padding: 90px 0;
    }

    .why-header {
        margin-bottom: 35px;
    }

    .why-header h2 {
        font-size: 40px;
        letter-spacing: -1.4px;
    }

    .why-header p {
        font-size: 15px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .why-card {
        min-height: 0;
        padding: 22px 20px;
        border-radius: 18px;
    }

    .why-card h3 {
        font-size: 24px;
    }

    .why-card-number {
        font-size: 24px;
    }
}

/* ==========================================
                HOW WE WORK
========================================== */

.process-section {

    padding: 150px 0;

    background:
        linear-gradient(
            180deg,
            #07111f 0%,
            #09182a 100%
        );

    position: relative;

    overflow: hidden;

}


.process-header {

    max-width: 850px;

    margin-bottom: 80px;

}


.process-header h2 {

    font-size: clamp(42px, 5vw, 68px);

    line-height: 1.05;

    letter-spacing: -3px;

    margin: 18px 0 24px;

}


.process-header h2 span {

    display: block;

    color: #35a7ff;

}


.process-header p {

    max-width: 720px;

    color: #91a1b3;

    line-height: 1.8;

    font-size: 16px;

}



/* TIMELINE */

.process-timeline {

    position: relative;

    max-width: 950px;

}


.process-timeline::before {

    content: '';

    position: absolute;

    left: 34px;

    top: 20px;

    bottom: 20px;

    width: 1px;

    background:
        linear-gradient(
            to bottom,
            rgba(53,167,255,0.55),
            rgba(53,167,255,0.08)
        );

}


.process-step {

    position: relative;

    display: grid;

    grid-template-columns: 70px 1fr;

    gap: 30px;

    padding-bottom: 55px;

    opacity: 0.35;

    transform: translateY(20px);

    transition:
        opacity 0.6s ease,
        transform 0.6s ease;

}


.process-step.active {

    opacity: 1;

    transform: translateY(0);

}


.process-marker {

    position: relative;

    width: 70px;
    height: 70px;

    border-radius: 50%;

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

    background: #0a1d33;

    border:
        1px solid rgba(53,167,255,0.20);

    color: #35a7ff;

    font-size: 13px;

    font-weight: 700;

    z-index: 2;

    transition: 0.35s ease;

}


.process-step.active .process-marker {

    background:
        linear-gradient(
            145deg,
            #1267ff,
            #35a7ff
        );

    color: white;

    box-shadow:
        0 0 30px rgba(18,103,255,0.28);

}


.process-content {

    padding-top: 7px;

}


.process-content > span {

    display: block;

    color: #35a7ff;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2.5px;

    margin-bottom: 9px;

}


.process-content h3 {

    font-size: 26px;

    margin-bottom: 12px;

    letter-spacing: -0.5px;

}


.process-content p {

    color: #91a1b3;

    line-height: 1.8;

    font-size: 14px;

    max-width: 700px;

}


/* MOBILE */

@media (max-width: 600px) {

    .process-section {

        padding: 100px 0;

    }

    .process-header {

        margin-bottom: 55px;

    }

    .process-step {

        grid-template-columns: 55px 1fr;

        gap: 20px;

    }

    .process-marker {

        width: 55px;
        height: 55px;

    }

    .process-timeline::before {

        left: 27px;

    }

    .process-content h3 {

        font-size: 22px;

    }

}

/* ==========================================
          SELECTED CAPABILITIES
========================================== */

/* ==========================================
CAPABILITIES MARQUEE SECTION
========================================== */

.capabilities-marquee-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 20%, rgba(37, 99, 235, 0.08), transparent 28%),
        radial-gradient(circle at 85% 30%, rgba(14, 165, 233, 0.06), transparent 24%),
        #f5f7fb;
}

.capabilities-intro {
    max-width: 820px;
    margin-bottom: 55px;
}

.capabilities-intro .section-kicker {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #2563eb;
    margin-bottom: 18px;
}

.capabilities-intro h2 {
    font-size: clamp(42px, 5vw, 76px);
    line-height: 1.02;
    letter-spacing: -2.5px;
    color: #0b1220;
    margin-bottom: 22px;
}

.capabilities-intro h2 span {
    display: block;
    color: #2563eb;
}

.capabilities-intro p {
    max-width: 760px;
    font-size: 18px;
    line-height: 1.8;
    color: #5f6f85;
}

/* MARQUEE WRAPPER */
.capabilities-marquee {
    position: relative;

    width: calc(100% - 80px);
    max-width: 1180px;

    margin: 0 auto;

    overflow-x: auto;
    overflow-y: hidden;

    padding: 16px 0 24px;

    cursor: grab;

    scrollbar-width: none;

    -ms-overflow-style: none;

    overscroll-behavior-x: contain;

    touch-action: pan-y;

    border-radius: 24px;
}

/* SOFT FADE EDGES */
/* SOFT DARK FADE EDGES */

.capabilities-marquee::before,
.capabilities-marquee::after {
    content: "";
    position: absolute;
    top: 0;

    width: 90px;
    height: 100%;

    z-index: 4;

    pointer-events: none;
}


.capabilities-marquee::before {
    left: 0;

    background:
        linear-gradient(
            to right,
            #071321 0%,
            rgba(7,19,33,0) 100%
        );
}


.capabilities-marquee::after {
    right: 0;

    background:
        linear-gradient(
            to left,
            #071321 0%,
            rgba(7,19,33,0) 100%
        );
}

/* MOVING TRACK */
.capabilities-track {
    display: flex;
    align-items: stretch;
    gap: 26px;
    width: max-content;
    animation: marqueeMove 38s linear infinite;
}

.capabilities-marquee:hover .capabilities-track {
    animation-play-state: paused;
}

@keyframes marqueeMove {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* CARD */

/* CARD */
.capability-card {
    position: relative;
    width: 285px;
    min-height: 285px;
    flex: 0 0 340px;
    padding: 24px 22px;
    border-radius: 24px;
    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            rgba(6, 18, 40, 0.96) 0%,
            rgba(8, 26, 56, 0.97) 55%,
            rgba(4, 14, 32, 0.98) 100%
        );

    border: 1px solid rgba(53, 167, 255, 0.28);

    box-shadow:
        0 18px 40px rgba(2, 8, 20, 0.35),
        0 0 0 1px rgba(53, 167, 255, 0.08) inset,
        0 0 22px rgba(53, 167, 255, 0.12);
    
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.capability-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 22px 60px rgba(16, 24, 40, 0.13),
        0 0 0 1px rgba(37, 99, 235, 0.08) inset;
}

/* GLOWING BORDER EFFECT */
.capability-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    pointer-events: none;
    box-shadow:
        0 0 0 1px rgba(53, 167, 255, 0.18) inset,
        0 0 30px rgba(53, 167, 255, 0.10);
}

.capability-card:hover {
    transform: translateY(-8px);
    border-color: rgba(53, 167, 255, 0.45);

    box-shadow:
        0 24px 60px rgba(2, 8, 20, 0.42),
        0 0 0 1px rgba(53, 167, 255, 0.16) inset,
        0 0 34px rgba(53, 167, 255, 0.18);
}

/* ICON BOX */

.capability-icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;

    background:
        linear-gradient(135deg, #2563eb, #38bdf8);

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

    box-shadow:
        0 10px 24px rgba(37, 99, 235, 0.28),
        0 0 20px rgba(53, 167, 255, 0.12);
}

.capability-icon i {
    color: white;
    font-size: 24px;
}

/* CARD TITLE */
.capability-card h3 {
    font-size: 28px;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 16px;
}

/* CARD TEXT */
.capability-card p {
    font-size: 15px;
    line-height: 1.75;
    color: #b8c7d9;
    margin: 0;
}




/* RESPONSIVE */
@media (max-width: 900px) {
    .capabilities-marquee-section {
        padding: 95px 0;
    }

    .capability-card {
        width: 290px;
        flex: 0 0 290px;
        min-height: 220px;
    }

    .capability-card h3 {
        font-size: 24px;
    }

    .capabilities-intro p {
        font-size: 16px;
    }

    .capabilities-marquee::before,
    .capabilities-marquee::after {
        width: 65px;
    }
}

@media (max-width: 600px) {
    .capabilities-intro h2 {
        font-size: 42px;
    }

    .capability-card {
        width: 250px;
        flex: 0 0 250px;
        padding: 22px 20px;
        min-height: 205px;
    }

    .capability-card h3 {
        font-size: 21px;
    }

    .capability-card p {
        font-size: 14px;
    }

    .capabilities-track {
        gap: 18px;
        animation-duration: 30s;
    }
}





/* ==========================================
                  INSIGHTS
========================================== */

.insights-section {

    padding: 145px 0;

    background: #ffffff;

    color: #07111f;

}


.insights-header {

    display: grid;

    grid-template-columns:
        1.1fr 0.9fr;

    gap: 70px;

    align-items: end;

    margin-bottom: 65px;

}


.insights-header h2 {

    font-size: clamp(42px, 5vw, 68px);

    line-height: 1.05;

    letter-spacing: -3px;

    margin-top: 18px;

}


.insights-header h2 span {

    display: block;

    color: #1267ff;

}


.insights-header > p {

    color: #64748b;

    line-height: 1.8;

    max-width: 500px;

}


.insights-grid {

    display: grid;

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

    gap: 22px;

}


.insight-card {

    background: #f8fafc;

    border:
        1px solid #e8edf4;

    border-radius: 17px;

    overflow: hidden;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;

}


.insight-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 24px 50px
        rgba(15,38,68,0.10);

}


.insight-image {

    height: 230px;

    position: relative;

    overflow: hidden;

}


.insight-image-one {

    background:
        linear-gradient(
            145deg,
            #08172a,
            #1267ff
        );

}


.insight-image-two {

    background:
        radial-gradient(
            circle at 70% 30%,
            #35a7ff,
            transparent 25%
        ),
        linear-gradient(
            145deg,
            #07111f,
            #0b2949
        );

}


.insight-image-three {

    background:
        linear-gradient(
            135deg,
            #1267ff,
            #06101c
        );

}


.insight-image::before {

    content: '';

    position: absolute;

    width: 180px;
    height: 180px;

    border-radius: 50%;

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

    right: -50px;
    bottom: -60px;

}


.insight-category {

    position: absolute;

    top: 20px;
    left: 20px;

    padding: 7px 10px;

    border-radius: 30px;

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

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

    color: white;

    font-size: 9px;

    letter-spacing: 1.5px;

}


.insight-image > i {

    position: absolute;

    right: 22px;
    bottom: 22px;

    width: 42px;
    height: 42px;

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

    border-radius: 50%;

    background: white;

    color: #1267ff;

    font-size: 13px;

    transition: 0.3s ease;

}


.insight-card:hover
.insight-image > i {

    transform:
        translate(3px, -3px);

}


.insight-content {

    padding: 28px;

}


.insight-meta {

    color: #1267ff;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.8px;

}


.insight-content h3 {

    font-size: 21px;

    line-height: 1.35;

    margin: 11px 0 14px;

}


.insight-content p {

    color: #64748b;

    font-size: 13px;

    line-height: 1.7;

}


.insight-content a {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-top: 20px;

    color: #1267ff;

    font-size: 12px;

    font-weight: 600;

}


.insight-content a i {

    transition: 0.3s ease;

}


.insight-content a:hover i {

    transform: translateX(5px);

}



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

.contact-section {

    position: relative;

    padding: 150px 0;

    background:
        linear-gradient(
            145deg,
            #07111f,
            #091d33
        );

    overflow: hidden;

}


.contact-glow {

    position: absolute;

    width: 500px;
    height: 500px;

    right: -150px;
    top: -120px;

    border-radius: 50%;

    background:
        rgba(18,103,255,0.13);

    filter: blur(120px);

}


.contact-container {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        0.85fr 1.15fr;

    gap: 90px;

    align-items: start;

}


.contact-intro h2 {

    font-size: clamp(46px, 5vw, 70px);

    line-height: 1.03;

    letter-spacing: -3px;

    margin: 18px 0 25px;

}


.contact-intro h2 span {

    display: block;

    color: #35a7ff;

}


.contact-intro > p {

    color: #91a1b3;

    line-height: 1.8;

    max-width: 520px;

}


.contact-points {

    margin-top: 45px;

    display: grid;

    gap: 18px;

}


.contact-point {

    display: flex;

    align-items: center;

    gap: 15px;

}


.contact-point > i {

    width: 44px;
    height: 44px;

    flex-shrink: 0;

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

    border-radius: 12px;

    background:
        rgba(53,167,255,0.08);

    border:
        1px solid
        rgba(53,167,255,0.15);

    color: #35a7ff;

}


.contact-point span {

    display: block;

    color: #69798b;

    font-size: 10px;

    letter-spacing: 1px;

    text-transform: uppercase;

}


.contact-point strong {

    display: block;

    margin-top: 3px;

    color: #dce5ef;

    font-size: 13px;

    font-weight: 500;

}

.contact-point strong a {
    color: #dce5ef;
    text-decoration: none;

    transition:
        color 0.25s ease;
}

.contact-point strong a:hover {
    color: #35a7ff;
}


/* ==========================================
              CONTACT FORM - LARGER
========================================== */

.contact-form-wrapper {

    padding: 48px;

    border-radius: 22px;

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

    border:
        1px solid rgba(158, 16, 73, 0.1);

    -webkit-backdrop-filter:
        blur(22px);

    backdrop-filter:
        blur(22px);

    box-shadow:
        0 20px 55px rgba(0,0,0,0.16);
}


/* TWO COLUMN ROW */

.form-row {

    display: grid;

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

    gap: 22px;
}


/* EACH FIELD */

.form-group {

    margin-bottom: 24px;
}


/* LABELS */

.form-group label {

    display: block;

    margin-bottom: 10px;

    color: #d7e0ea;

    font-size: 16px;

    font-weight: 500;
}


/* INPUTS / SELECT / TEXTAREA */

.form-group input,
.form-group select,
.form-group textarea {

    width: 100%;

    padding: 17px 17px;

    border-radius: 10px;

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

    outline: none;

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

    color: white;

    font-family: inherit;

    font-size: 15px;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}


/* MAKE TEXTAREA BIGGER */

.form-group textarea {

    min-height: 150px;

    resize: vertical;
}


/* PLACEHOLDERS */

.form-group input::placeholder,
.form-group textarea::placeholder {

    color: #718296;
}


/* FOCUS */

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

    border-color:
        rgba(53,167,255,0.65);

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

    box-shadow:
        0 0 0 4px
        rgba(53,167,255,0.07);
}



/* SELECT OPTIONS */

.form-group select option {

    background: #0a1c31;

    color: white;
}


/* SUBMIT BUTTON */

.submit-project-btn {

    width: 100%;

    padding: 18px 24px;

    min-height: 56px;

    border: none;

    border-radius: 10px;

    cursor: pointer;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 12px;

    background:
        linear-gradient(
            90deg,
            #1267ff,
            #35a7ff
        );

    color: white;

    font-family: inherit;

    font-size: 15px;

    font-weight: 600;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.submit-project-btn i {

    font-size: 12px;

    transition:
        transform 0.3s ease;
}


.submit-project-btn:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0 16px 38px
        rgba(18,103,255,0.28);
}


.submit-project-btn:hover i {

    transform:
        translateX(5px);
}


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

@media (max-width: 900px) {

    .contact-form-wrapper {
        padding: 36px;
    }

}


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

@media (max-width: 600px) {

    .contact-form-wrapper {
        padding: 24px;
        border-radius: 18px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-group label {
        font-size: 12px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 14px;
        padding: 15px;
    }

}

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

/* ==========================================
              FOOTER - GRAPHIC VERSION
========================================== */

.site-footer {
    position: relative;

    padding: 70px 0 34px;

    overflow: hidden;

   background:
    linear-gradient(rgba(0,0,0,0.32), rgba(0,0,0,0.32)),
    url('/images/bluestone-footer.png') center center / cover no-repeat;

    color: #d8dee7;

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

.site-footer::before {
    content: "";

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        );

    background-size:
        70px 70px;

    opacity: 0.35;

    pointer-events: none;
}


.site-footer::after {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    top: -220px;
    left: 25%;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(53,167,255,0.12),
            transparent 68%
        );

    filter: blur(30px);

    pointer-events: none;
}

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

.footer-top {
    display: grid;

    grid-template-columns:
        1.4fr
        0.8fr
        0.8fr
        0.8fr;

    gap: 60px;

    align-items: start;
}


/* ==========================================
              BRAND
========================================== */

.footer-brand .brand {
    display: inline-flex;
    flex-direction: column;

    text-decoration: none;

    margin-bottom: 22px;
}


.footer-brand .brand-main {
    color: #4d8dff;

    font-size: 20px;

    font-weight: 700;

    letter-spacing: 0.5px;

    line-height: 1;
}


.footer-brand .brand-sub {
    margin-top: 4px;

    color: #ffffff;

    font-size: 13px;

    font-weight: 400;

    letter-spacing: 1.6px;

    line-height: 1;
}


.footer-brand p {
    max-width: 360px;

    margin: 0 0 28px;

    color: #9ca8b8;

    font-size: 14px;

    line-height: 1.8;
}


/* ==========================================
              SOCIAL ICONS
========================================== */

.footer-socials {
    display: flex;

    gap: 12px;
}


.footer-socials a {
    width: 42px;
    height: 42px;

    display: flex;

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

    border-radius: 10px;

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

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

    color: #aeb8c6;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease;
}


.footer-socials a:hover {
    transform:
        translateY(-3px);

    background:
        rgba(53,167,255,0.10);

    border-color:
        rgba(53,167,255,0.24);

    color: #ffffff;
}


/* ==========================================
              COLUMNS
========================================== */

.footer-column {
    display: flex;

    flex-direction: column;

    gap: 15px;
}


.footer-column > span {
    margin-bottom: 7px;

    color: #3582ef;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;
}


.footer-column a {
    color: #9ca8b8;

    font-size: 13px;

    text-decoration: none;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}


.footer-column a:hover {
    color: #35a7ff;

    transform:
        translateX(3px);
}


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

.footer-bottom {
    margin-top: 65px;

    padding-top: 24px;

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

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}


.footer-bottom p {
    margin: 0;

    color: #738092;

    font-size: 12px;
}


.footer-bottom > div {
    display: flex;

    gap: 24px;
}


.footer-bottom a {
    color: #7f8b9b;

    font-size: 12px;

    text-decoration: none;

    transition:
        color 0.25s ease;
}


.footer-bottom a:hover {
    color: #35a7ff;
}


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

@media (max-width: 950px) {

    .footer-top {
        grid-template-columns:
            1fr 1fr;

        gap: 45px;
    }

}


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

@media (max-width: 600px) {

    .footer {
        padding:
            65px 0 24px;
    }


    .footer-top {
        grid-template-columns:
            1fr;

        gap: 36px;
    }


    .footer-bottom {
        margin-top: 45px;

        flex-direction: column;

        align-items: flex-start;
    }

}

/* ==========================================
            GLOBAL SCROLL REVEAL
========================================== */

.reveal {

    opacity: 0;

    transform: translateY(28px);

    transition:
        opacity 0.75s ease,
        transform 0.75s ease;

}

.reveal.reveal-visible {

    opacity: 1;

    transform: translateY(0);

}


/* Slight delays when cards are in a grid */

.solutions-grid .reveal:nth-child(2),
.why-bluestone-grid .reveal:nth-child(2),
.capabilities-grid .reveal:nth-child(2),
.insights-grid .reveal:nth-child(2) {

    transition-delay: 0.08s;

}

.solutions-grid .reveal:nth-child(3),
.why-bluestone-grid .reveal:nth-child(3),
.capabilities-grid .reveal:nth-child(3),
.insights-grid .reveal:nth-child(3) {

    transition-delay: 0.16s;

}

.solutions-grid .reveal:nth-child(4),
.why-bluestone-grid .reveal:nth-child(4),
.capabilities-grid .reveal:nth-child(4) {

    transition-delay: 0.24s;

}

.solutions-grid .reveal:nth-child(5),
.capabilities-grid .reveal:nth-child(5) {

    transition-delay: 0.32s;

}

.capabilities-grid .reveal:nth-child(6) {

    transition-delay: 0.40s;

}


/* Accessibility */

@media (prefers-reduced-motion: reduce) {

    .reveal {

        opacity: 1;

        transform: none;

        transition: none;

    }

}

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

.mobile-nav {

    position: fixed;

    inset: 0;

    z-index: 2000;

    background:
        rgba(4, 11, 19, 0.96);

    -webkit-backdrop-filter:
        blur(20px);

    backdrop-filter:
        blur(20px);

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;

}


.mobile-nav.open {

    opacity: 1;

    visibility: visible;

}


.mobile-nav-inner {

    min-height: 100%;

    width: min(520px, 100%);

    margin-left: auto;

    padding: 26px 28px 35px;

    display: flex;

    flex-direction: column;

    background:
        linear-gradient(
            180deg,
            #07111f,
            #08182b
        );

    transform:
        translateX(30px);

    transition:
        transform 0.35s ease;

}


.mobile-nav.open
.mobile-nav-inner {

    transform:
        translateX(0);

}


.mobile-nav-top {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding-bottom: 30px;

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

}


.mobile-nav-close {

    width: 42px;
    height: 42px;

    border: none;

    border-radius: 50%;

    display: flex;

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

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

    color: white;

    font-size: 18px;

    cursor: pointer;

    transition: 0.3s ease;

}


.mobile-nav-close:hover {

    background: #1267ff;

}


.mobile-nav-links {

    display: flex;

    flex-direction: column;

    padding: 45px 0;

}


.mobile-nav-links a {

    position: relative;

    padding: 18px 0;

    color: white;

    font-size: clamp(28px, 7vw, 42px);

    font-weight: 600;

    letter-spacing: -1px;

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

    transition: 0.3s ease;

}


.mobile-nav-links a::after {

    content: '↗';

    position: absolute;

    right: 5px;

    color: #35a7ff;

    opacity: 0;

    transform:
        translate(-8px, 8px);

    transition: 0.3s ease;

}


.mobile-nav-links a:hover {

    color: #35a7ff;

    padding-left: 8px;

}


.mobile-nav-links a:hover::after {

    opacity: 1;

    transform:
        translate(0,0);

}


.mobile-nav-footer {

    margin-top: auto;

}


.mobile-project-btn {

    display: flex;

    justify-content: space-between;

    align-items: center;

    width: 100%;

    padding: 17px 20px;

    border-radius: 9px;

    background:
        linear-gradient(
            90deg,
            #1267ff,
            #35a7ff
        );

    color: white;

    font-size: 14px;

    font-weight: 600;

}


.mobile-nav-footer p {

    margin-top: 22px;

    color: #657689;

    font-size: 11px;

    line-height: 1.7;

}


/* Keep mobile menu hidden on desktop */

@media (min-width: 1001px) {

    .mobile-nav {

        display: none;

    }

}

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

.about-page-hero {
    position: relative;
    overflow: hidden;
    padding: 150px 0 130px;

    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(53,167,255,0.14),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #06111f,
            #0a1d32
        );

    color: white;
}


.about-page-hero-inner {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        1.05fr 0.95fr;

    gap: 80px;

    align-items: center;
}


.about-hero-content h1 {
    margin: 16px 0 26px;

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

    line-height: 0.98;

    letter-spacing: -3px;
}


.about-hero-content h1 span {
    display: block;

    color: #35a7ff;
}


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

    color: #a6b4c5;

    font-size: 17px;

    line-height: 1.85;
}


.about-page-glow {
    position: absolute;

    border-radius: 50%;

    filter: blur(120px);
}


.about-glow-one {
    width: 420px;
    height: 420px;

    top: -140px;
    right: -100px;

    background:
        rgba(18,103,255,0.16);
}


.about-glow-two {
    width: 280px;
    height: 280px;

    bottom: -80px;
    left: 10%;

    background:
        rgba(53,167,255,0.08);
}


/* HERO VISUAL */

.about-hero-visual {
    position: relative;

    min-height: 440px;

    display: flex;

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


.about-orbit {
    position: absolute;

    border-radius: 50%;

    border:
        1px solid rgba(53,167,255,0.17);
}


.about-orbit-one {
    width: 260px;
    height: 260px;
}


.about-orbit-two {
    width: 360px;
    height: 360px;
}


.about-core {
    width: 130px;
    height: 130px;

    display: flex;

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

    border-radius: 34px;

    background:
        linear-gradient(
            145deg,
            #35a7ff,
            #1267ff
        );

    box-shadow:
        0 0 50px
        rgba(53,167,255,0.24);

    color: white;

    font-size: 46px;

    animation:
        aboutCoreFloat
        5s ease-in-out infinite;
}


@keyframes aboutCoreFloat {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-12px);
    }

}


.about-floating-label {
    position: absolute;

    padding:
        10px 14px;

    border-radius: 9px;

    background:
        rgba(7,18,32,0.72);

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

    color:
        rgba(255,255,255,0.78);

    font-size: 12px;
}


.label-digital {
    top: 22%;
    left: 12%;
}


.label-business {
    right: 8%;
    top: 40%;
}


.label-growth {
    left: 25%;
    bottom: 16%;
}


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

.about-story-section {
    padding: 130px 0;

    background: #f7f9fc;
}


.about-story-grid {
    display: grid;

    grid-template-columns:
        0.9fr 1.1fr;

    gap: 90px;
}


.about-story-heading h2,
.about-global-section h2,
.about-values-header h2,
.about-final-cta h2 {

    margin: 16px 0 0;

    font-size:
        clamp(44px, 5vw, 70px);

    line-height: 1.02;

    letter-spacing: -2.5px;

    color: #081321;
}


.about-story-heading h2 span,
.about-global-section h2 span,
.about-values-header h2 span,
.about-final-cta h2 span {

    display: block;

    color: #2c74ff;
}


.about-story-copy p {
    margin:
        0 0 22px;

    color: #5d6e82;

    font-size: 16px;

    line-height: 1.9;
}


/* ==========================================
              MISSION
========================================== */

.about-mission-section {
    padding: 120px 0;

    background:
        linear-gradient(
            135deg,
            #eef4fb,
            #dfeaf6
        );
}


.about-mission-box {
    max-width: 1000px;

    margin: 0 auto;

    padding: 70px;

    border-radius: 30px;

    background: white;

    border:
        1px solid
        rgba(40,80,140,0.08);

    box-shadow:
        0 25px 70px
        rgba(34,68,110,0.09);
}


.about-mission-box h2 {
    margin: 16px 0 28px;

    font-size:
        clamp(44px, 5vw, 70px);

    line-height: 1.03;

    color: #081321;
}


.about-mission-box h2 span {
    display: block;

    color: #2c74ff;
}


.about-mission-box p {
    max-width: 800px;

    color: #5d6e82;

    line-height: 1.9;
}


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

.about-global-section {
    padding: 130px 0;

    background:
        radial-gradient(
            circle at 80% 40%,
            rgba(53,167,255,0.12),
            transparent 30%
        ),
        #071321;

    color: white;
}


.about-global-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 90px;

    align-items: center;
}


.about-global-section h2 {
    color: white;
}


.about-global-section p {
    color: #9aaabc;

    line-height: 1.85;
}


.about-country-cloud {
    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    gap: 16px;
}


.about-country-cloud span {
    padding:
        16px 22px;

    border-radius: 999px;

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

    border:
        1px solid
        rgba(53,167,255,0.16);

    color: #d9e5f1;

    font-size: 14px;

    box-shadow:
        0 0 20px
        rgba(53,167,255,0.05);
}


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

.about-values-section {
    padding: 130px 0;

    background: #f8fafc;
}


.about-values-header {
    max-width: 760px;

    margin-bottom: 55px;
}


.about-values-grid {
    display: grid;

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

    gap: 22px;
}


.about-value {
    padding: 32px 28px;

    border-radius: 22px;

    background: white;

    border:
        1px solid
        rgba(35,80,145,0.08);

    box-shadow:
        0 14px 35px
        rgba(30,60,100,0.06);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.about-value:hover {
    transform:
        translateY(-6px);

    box-shadow:
        0 22px 50px
        rgba(30,60,100,0.10);
}


.about-value i {
    width: 48px;
    height: 48px;

    display: flex;

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

    margin-bottom: 22px;

    border-radius: 14px;

    background:
        rgba(53,167,255,0.10);

    color: #2c74ff;
}


.about-value h3 {
    margin:
        0 0 12px;

    color: #0c1828;

    font-size: 22px;
}


.about-value p {
    margin: 0;

    color: #657589;

    line-height: 1.7;
}


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

.about-final-cta {
    padding: 100px 0;

    background:
        linear-gradient(
            135deg,
            #edf4fb,
            #f8fbff
        );
}


.about-final-cta-inner {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;
}


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

@media (max-width: 950px) {

    .about-page-hero-inner,
    .about-story-grid,
    .about-global-grid {

        grid-template-columns: 1fr;
    }


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

}


@media (max-width: 600px) {

    .about-page-hero,
    .about-story-section,
    .about-global-section,
    .about-values-section {

        padding:
            90px 0;
    }


    .about-page-hero-inner {
        gap: 45px;
    }


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


    .about-hero-visual {
        min-height: 330px;
    }


    .about-mission-box {
        padding:
            38px 24px;
    }


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


    .about-final-cta-inner {
        flex-direction: column;

        align-items: flex-start;
    }

}


/* ==========================================
            SOLUTIONS PAGE
========================================== */



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

.contact-page-hero {
    position: relative;

    padding: 160px 0 120px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 25%,
            rgba(53,167,255,0.15),
            transparent 28%
        ),
        radial-gradient(
            circle at 12% 85%,
            rgba(18,103,255,0.08),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #06111f 0%,
            #0a1b30 55%,
            #071321 100%
        );

    color: white;
}


.contact-page-hero-inner {
    display: grid;

    grid-template-columns:
        1.05fr .95fr;

    gap: 80px;

    align-items: end;
}


.contact-page-hero h1 {
    margin: 17px 0 0;

    font-size:
        clamp(58px, 7vw, 94px);

    line-height: .96;

    letter-spacing: -4px;
}


.contact-page-hero h1 span {
    display: block;

    color: #35a7ff;
}


.contact-page-hero-copy {
    max-width: 560px;

    padding-bottom: 8px;
}


.contact-page-hero-copy p {
    margin: 0 0 16px;

    color: #a6b5c6;

    font-size: 16px;

    line-height: 1.85;
}



/* MAIN CONTACT */

.contact-page-main {
    padding: 130px 0;

    background:
        linear-gradient(
            135deg,
            #f4f7fb,
            #eef3f9
        );
}


.contact-page-grid {
    display: grid;

    grid-template-columns:
        .9fr 1.1fr;

    gap: 85px;

    align-items: start;
}


.contact-page-details h2 {
    margin: 15px 0 22px;

    color: #081321;

    font-size:
        clamp(44px, 5vw, 68px);

    line-height: 1.02;

    letter-spacing: -2.5px;
}


.contact-page-details h2 span {
    display: block;

    color: #2c74ff;
}


.contact-page-intro {
    max-width: 560px;

    margin: 0 0 38px;

    color: #65768a;

    font-size: 16px;

    line-height: 1.85;
}



/* CONTACT INFO */

.contact-info-list {
    display: flex;

    flex-direction: column;

    gap: 15px;
}


.contact-info-item {
    display: flex;

    align-items: center;

    gap: 18px;

    padding: 18px;

    border-radius: 16px;

    background: white;

    border:
        1px solid
        rgba(30,65,110,0.07);

    box-shadow:
        0 10px 28px
        rgba(30,60,100,0.05);
}


.contact-info-icon {
    width: 48px;
    height: 48px;

    flex: 0 0 48px;

    display: flex;

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

    border-radius: 14px;

    background:
        rgba(44,116,255,0.09);

    color: #2c74ff;
}


.contact-info-item span {
    display: block;

    margin-bottom: 3px;

    color: #8491a0;

    font-size: 11px;

    letter-spacing: .6px;

    text-transform: uppercase;
}


.contact-info-item strong {
    color: #132033;

    font-size: 14px;
}


.contact-info-item strong a {
    color: inherit;

    text-decoration: none;

    transition:
        color .25s ease;
}


.contact-info-item strong a:hover {
    color: #2c74ff;
}



/* REASSURANCE */

.contact-reassurance {
    display: flex;

    gap: 18px;

    margin-top: 28px;

    padding: 24px;

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            #081827,
            #0d2438
        );

    color: white;
}


.contact-reassurance > i {
    margin-top: 3px;

    color: #35a7ff;

    font-size: 22px;
}


.contact-reassurance strong {
    display: block;

    margin-bottom: 7px;

    font-size: 15px;
}


.contact-reassurance p {
    margin: 0;

    color: #9cabbc;

    font-size: 13px;

    line-height: 1.65;
}



/* FORM */

.contact-page-form-wrapper {
    padding: 44px;

    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            #071321,
            #0b1c30
        );

    box-shadow:
        0 25px 65px
        rgba(12,35,65,0.17);
}


.contact-form-row {
    display: grid;

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

    gap: 18px;
}


.contact-form-group {
    margin-bottom: 20px;
}


.contact-form-group label {
    display: block;

    margin-bottom: 9px;

    color: #d5deea;

    font-size: 12px;

    font-weight: 500;
}


.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {

    width: 100%;

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

    outline: none;

    border-radius: 11px;

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

    color: white;

    font-family: inherit;

    font-size: 14px;

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


.contact-form-group input {
    min-height: 56px;

    padding:
        0 16px;
}


.contact-form-group select {
    min-height: 56px;

    padding:
        0 16px;
}


.contact-form-group textarea {
    min-height: 160px;

    padding: 16px;

    resize: vertical;
}


.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder {

    color:
        rgba(255,255,255,0.36);
}


.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {

    border-color:
        rgba(53,167,255,0.55);

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

    box-shadow:
        0 0 0 3px
        rgba(53,167,255,0.07);
}


.contact-form-group select option {
    background: #0b1828;

    color: white;
}


.contact-submit-btn {
    width: 100%;

    min-height: 58px;

    display: flex;

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

    gap: 10px;

    border: none;

    border-radius: 11px;

    background:
        linear-gradient(
            135deg,
            #1267ff,
            #35a7ff
        );

    color: white;

    font-family: inherit;

    font-size: 15px;

    font-weight: 600;

    cursor: pointer;

    box-shadow:
        0 14px 30px
        rgba(18,103,255,0.22);

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


.contact-submit-btn:hover {
    transform:
        translateY(-2px);

    box-shadow:
        0 18px 38px
        rgba(18,103,255,0.29);
}


.contact-form-note {
    margin:
        15px 0 0;

    color:
        rgba(255,255,255,0.43);

    font-size: 11px;

    line-height: 1.6;
}



/* QUICK CONTACT */

.contact-quick-section {
    padding: 100px 0;

    background: #071321;

    color: white;
}


.contact-quick-inner {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 70px;
}


.contact-quick-inner h2 {
    margin: 14px 0 0;

    max-width: 690px;

    font-size:
        clamp(40px, 4.5vw, 64px);

    line-height: 1.03;

    letter-spacing: -2.3px;
}


.contact-quick-inner h2 span {
    display: block;

    color: #35a7ff;
}


.contact-quick-actions {
    display: flex;

    flex-direction: column;

    gap: 12px;

    min-width: 265px;
}


.contact-quick-btn {
    min-height: 54px;

    padding:
        0 20px;

    display: flex;

    align-items: center;

    gap: 11px;

    border-radius: 11px;

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

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

    color: #dce7f2;

    text-decoration: none;

    font-size: 13px;

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


.contact-quick-btn i {
    color: #35a7ff;
}


.contact-quick-btn:hover {
    transform:
        translateX(4px);

    border-color:
        rgba(53,167,255,0.25);

    background:
        rgba(53,167,255,0.07);
}



/* RESPONSIVE */

@media (max-width: 950px) {

    .contact-page-hero-inner,
    .contact-page-grid {

        grid-template-columns: 1fr;
    }


    .contact-page-hero-inner {
        gap: 35px;
    }


    .contact-quick-inner {
        flex-direction: column;

        align-items: flex-start;
    }


    .contact-quick-actions {
        width: 100%;
    }

}


@media (max-width: 650px) {

    .contact-page-hero {
        padding:
            125px 0 85px;
    }


    .contact-page-hero h1 {
        font-size: 48px;

        letter-spacing: -2px;
    }


    .contact-page-main {
        padding:
            85px 0;
    }


    .contact-form-row {
        grid-template-columns: 1fr;
    }


    .contact-page-form-wrapper {
        padding:
            30px 20px;
    }


    .contact-quick-section {
        padding:
            80px 0;
    }

}

/* ==========================================
              LEGAL PAGES
========================================== */

.legal-page-hero {
    position: relative;
    padding: 155px 0 100px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 82% 24%,
            rgba(53,167,255,.14),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #06111f 0%,
            #0a1b30 55%,
            #071321 100%
        );

    color: white;
}


.legal-page-hero-inner {
    max-width: 850px;
}


.legal-page-hero h1 {
    margin: 16px 0 24px;

    font-size:
        clamp(56px, 7vw, 90px);

    line-height: .96;
    letter-spacing: -4px;
}


.legal-page-hero h1 span {
    display: block;
    color: #35a7ff;
}


.legal-page-hero p {
    max-width: 720px;
    margin: 0;

    color: #a5b4c5;

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


.legal-updated {
    display: inline-flex;

    margin-top: 28px;
    padding: 9px 14px;

    border-radius: 999px;

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

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

    color: #95a6b9;
    font-size: 11px;
}



/* MAIN LEGAL AREA */

.legal-page-section {
    padding: 110px 0 130px;

    background: #f7f9fc;
}


.legal-layout {
    display: grid;

    grid-template-columns:
        230px minmax(0, 820px);

    gap: 80px;

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



/* SIDE NAV */

.legal-side-nav {
    position: sticky;
    top: 115px;

    display: flex;
    flex-direction: column;

    padding: 22px;

    border-radius: 18px;

    background: white;

    border:
        1px solid rgba(35,70,120,.07);

    box-shadow:
        0 14px 38px rgba(25,55,90,.06);
}


.legal-side-nav > span {
    margin-bottom: 16px;

    color: #2c74ff;

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

    letter-spacing: 1.5px;
}


.legal-side-nav a {
    padding: 8px 0;

    color: #68788a;

    font-size: 12px;

    text-decoration: none;

    border-bottom:
        1px solid rgba(20,45,75,.05);

    transition:
        color .2s ease,
        transform .2s ease;
}


.legal-side-nav a:last-child {
    border-bottom: none;
}


.legal-side-nav a:hover {
    color: #2c74ff;

    transform:
        translateX(3px);
}



/* CONTENT */

.legal-content {
    padding: 50px;

    border-radius: 26px;

    background: white;

    border:
        1px solid rgba(30,65,110,.07);

    box-shadow:
        0 18px 55px rgba(25,55,90,.06);
}


.legal-content section {
    padding-bottom: 42px;
    margin-bottom: 42px;

    border-bottom:
        1px solid rgba(20,45,75,.08);

    scroll-margin-top: 110px;
}


.legal-content section:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}


.legal-content h2 {
    margin:
        0 0 20px;

    color: #0b1828;

    font-size: 28px;

    line-height: 1.25;

    letter-spacing: -.6px;
}


.legal-content p {
    margin:
        0 0 18px;

    color: #607186;

    font-size: 15px;

    line-height: 1.9;
}


.legal-content ul {
    margin:
        18px 0 24px;

    padding-left: 22px;
}


.legal-content li {
    margin-bottom: 10px;

    color: #607186;

    font-size: 14px;

    line-height: 1.7;
}


.legal-content li::marker {
    color: #2c74ff;
}



/* CONTACT BOX */

.legal-contact-box {
    display: flex;
    flex-direction: column;

    gap: 10px;

    margin-top: 25px;
    padding: 24px;

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            #071321,
            #0c2137
        );
}


.legal-contact-box strong {
    color: white;
    font-size: 18px;
}


.legal-contact-box span {
    margin-bottom: 8px;

    color: #9facbc;

    font-size: 13px;
}


.legal-contact-box a {
    display: flex;

    align-items: center;

    gap: 10px;

    color: #dce7f2;

    font-size: 13px;

    text-decoration: none;

    transition:
        color .2s ease;
}


.legal-contact-box a i {
    color: #35a7ff;
}


.legal-contact-box a:hover {
    color: #35a7ff;
}



/* RESPONSIVE */

@media (max-width: 900px) {

    .legal-layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }


    .legal-side-nav {
        position: static;

        display: grid;

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

        gap: 0 25px;
    }


    .legal-side-nav > span {
        grid-column: 1 / -1;
    }

}


@media (max-width: 600px) {

    .legal-page-hero {
        padding:
            125px 0 75px;
    }


    .legal-page-hero h1 {
        font-size: 50px;
        letter-spacing: -2px;
    }


    .legal-page-section {
        padding:
            75px 0 90px;
    }


    .legal-content {
        padding:
            32px 22px;
    }


    .legal-content h2 {
        font-size: 23px;
    }


    .legal-side-nav {
        grid-template-columns: 1fr;
    }

}


.legal-inline-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-top: 5px;

    color: #2c74ff;

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

    text-decoration: none;

    transition:
        gap .25s ease,
        color .25s ease;
}


.legal-inline-link:hover {
    gap: 13px;
    color: #1267ff;
}

/* ==========================================
            GLOBAL REACH PAGE
========================================== */


/* HERO */

.global-page-hero {
    position: relative;
    overflow: hidden;

    padding: 165px 0 135px;

    background:
        radial-gradient(
            circle at 78% 35%,
            rgba(48, 221, 225, .15),
            transparent 27%
        ),
        radial-gradient(
            circle at 15% 85%,
            rgba(53, 167, 255, .12),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #06151d 0%,
            #08242e 45%,
            #0b3340 72%,
            #071821 100%
        );

    color: white;
}


.global-page-orb {
    position: absolute;

    border-radius: 50%;

    filter: blur(100px);

    pointer-events: none;
}


.global-page-orb-one {
    width: 390px;
    height: 390px;

    top: -140px;
    right: 2%;

    background:
        rgba(53, 167, 255, .11);
}


.global-page-orb-two {
    width: 300px;
    height: 300px;

    bottom: -130px;
    left: 15%;

    background:
        rgba(38, 225, 207, .08);
}


.global-page-hero-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        1.08fr .92fr;

    gap: 80px;

    align-items: center;
}


.global-page-hero-content h1 {
    margin: 17px 0 28px;

    max-width: 820px;

    font-size:
        clamp(56px, 6.4vw, 90px);

    line-height: .96;

    letter-spacing: -4px;
}


.global-page-hero-content h1 span {
    display: block;

    color: #35c7ff;
}


.global-page-hero-content p {
    max-width: 670px;

    margin:
        0 0 16px;

    color: #a8bcc7;

    font-size: 16px;

    line-height: 1.85;
}



/* ==========================================
            WORLD VISUAL
========================================== */

.global-world-visual {
    position: relative;

    min-height: 490px;

    display: flex;

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


.global-world-visual::before {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(53, 199, 255, .13),
            transparent 68%
        );

    filter: blur(18px);
}


.global-world-ring {
    position: absolute;

    border-radius: 50%;

    border:
        1px solid
        rgba(81, 221, 235, .15);
}


.ring-one {
    width: 230px;
    height: 230px;

    animation:
        globalRingRotate 18s linear infinite;
}


.ring-two {
    width: 340px;
    height: 340px;

    border-style: dashed;

    animation:
        globalRingRotateReverse 28s linear infinite;
}


.ring-three {
    width: 450px;
    height: 450px;

    opacity: .55;
}


@keyframes globalRingRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


@keyframes globalRingRotateReverse {

    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }

}


.global-world-core {
    position: relative;
    z-index: 3;

    width: 140px;
    height: 140px;

    display: flex;

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

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            rgba(26, 122, 255, .92),
            rgba(53, 215, 238, .92)
        );

    box-shadow:
        0 0 65px
        rgba(53, 199, 255, .24);

    color: white;

    font-size: 48px;

    animation:
        globalCoreFloat 5s ease-in-out infinite;
}


@keyframes globalCoreFloat {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-12px);
    }

}


.global-world-point {
    position: absolute;
    z-index: 4;

    display: flex;

    align-items: center;

    gap: 8px;

    padding:
        9px 13px;

    border-radius: 999px;

    background:
        rgba(5, 20, 28, .72);

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

    backdrop-filter:
        blur(15px);

    color: #dcebef;

    font-size: 11px;

    box-shadow:
        0 12px 28px
        rgba(0, 0, 0, .15);
}


.global-world-point span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #38e2ff;

    box-shadow:
        0 0 12px
        rgba(56, 226, 255, .8);
}


.point-uae {
    top: 18%;
    right: 18%;
}


.point-mauritius {
    right: 4%;
    bottom: 25%;
}


.point-india {
    left: 4%;
    top: 42%;
}


.point-canada {
    left: 18%;
    top: 12%;
}


.point-madagascar {
    left: 20%;
    bottom: 13%;
}



/* ==========================================
              DUBAI
========================================== */

.global-dubai-section {
    padding: 130px 0;

    background:
        #f7f9fc;
}


.global-dubai-grid {
    display: grid;

    grid-template-columns:
        .95fr 1.05fr;

    gap: 90px;

    align-items: start;
}


.global-dubai-grid h2 {
    margin:
        15px 0 0;

    color: #081321;

    font-size:
        clamp(44px, 5vw, 70px);

    line-height: 1.02;

    letter-spacing: -2.8px;
}


.global-dubai-grid h2 span {
    display: block;

    color: #2c74ff;
}


.global-dubai-copy p {
    margin:
        0 0 22px;

    color: #607287;

    font-size: 16px;

    line-height: 1.9;
}



/* ==========================================
               MARKETS
========================================== */

.global-markets-section {
    position: relative;

    padding: 130px 0;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 82% 18%,
            rgba(53, 167, 255, .09),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #071321,
            #0a2232
        );

    color: white;
}


.global-markets-heading {
    max-width: 820px;

    margin-bottom: 58px;
}


.global-markets-heading h2 {
    margin:
        15px 0 22px;

    font-size:
        clamp(44px, 5vw, 70px);

    line-height: 1.02;

    letter-spacing: -2.8px;
}


.global-markets-heading h2 span {
    display: block;

    color: #35a7ff;
}


.global-markets-heading p {
    max-width: 720px;

    color: #9eafc1;

    line-height: 1.8;
}


.global-market-grid {
    display: grid;

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

    gap: 20px;
}


.global-market-card {
    position: relative;

    min-height: 285px;

    padding: 28px;

    border-radius: 22px;

    overflow: hidden;

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

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

    transition:
        transform .3s ease,
        border-color .3s ease,
        background .3s ease;
}


.global-market-card::after {
    content: "";

    position: absolute;

    width: 170px;
    height: 170px;

    right: -70px;
    bottom: -80px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(53, 167, 255, .10),
            transparent 70%
        );

    pointer-events: none;
}


.global-market-card:hover {
    transform:
        translateY(-7px);

    border-color:
        rgba(53, 167, 255, .27);

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


.global-market-featured {
    background:
        linear-gradient(
            145deg,
            rgba(18, 103, 255, .15),
            rgba(53, 199, 255, .07)
        );

    border-color:
        rgba(53, 167, 255, .25);
}


.global-market-icon {
    width: 52px;
    height: 52px;

    display: flex;

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

    margin-bottom: 25px;

    border-radius: 15px;

    background:
        rgba(53, 167, 255, .10);

    color: #35a7ff;

    font-size: 18px;
}


.global-market-card > span {
    display: block;

    margin-bottom: 9px;

    color: #35c7ff;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.5px;
}


.global-market-card h3 {
    margin:
        0 0 14px;

    color: white;

    font-size: 24px;

    line-height: 1.2;
}


.global-market-card p {
    margin: 0;

    color: #a0b1c2;

    font-size: 14px;

    line-height: 1.75;
}



/* ==========================================
          INTERNATIONAL WORKING
========================================== */

.global-working-section {
    padding: 130px 0;

    background:
        linear-gradient(
            135deg,
            #edf4fb,
            #f9fbfe
        );
}


.global-working-header {
    max-width: 850px;

    margin-bottom: 55px;
}


.global-working-header h2 {
    margin:
        15px 0 0;

    color: #081321;

    font-size:
        clamp(44px, 5vw, 70px);

    line-height: 1.02;

    letter-spacing: -2.8px;
}


.global-working-header h2 span {
    display: block;

    color: #2c74ff;
}


.global-working-grid {
    display: grid;

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

    gap: 20px;
}


.global-working-card {
    position: relative;

    min-height: 315px;

    padding: 30px 25px;

    border-radius: 22px;

    background: white;

    border:
        1px solid
        rgba(35, 70, 120, .07);

    box-shadow:
        0 16px 40px
        rgba(30, 60, 100, .06);

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


.global-working-card:hover {
    transform:
        translateY(-7px);

    box-shadow:
        0 24px 55px
        rgba(30, 60, 100, .10);
}


.global-working-number {
    display: block;

    margin-bottom: 26px;

    color:
        rgba(44, 116, 255, .16);

    font-size: 42px;

    font-weight: 800;

    line-height: 1;
}


.global-working-card i {
    width: 48px;
    height: 48px;

    display: flex;

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

    margin-bottom: 22px;

    border-radius: 14px;

    background:
        rgba(44, 116, 255, .08);

    color: #2c74ff;
}


.global-working-card h3 {
    margin:
        0 0 13px;

    color: #102033;

    font-size: 21px;
}


.global-working-card p {
    margin: 0;

    color: #66788b;

    font-size: 14px;

    line-height: 1.75;
}



/* ==========================================
            GLOBAL MINDSET
========================================== */

.global-mindset-section {
    padding: 130px 0;

    background:
        linear-gradient(
            135deg,
            #071b24,
            #0a2a35,
            #0b3440
        );

    color: white;
}


.global-mindset-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 90px;

    align-items: start;
}


.global-mindset-grid h2 {
    margin:
        15px 0 0;

    font-size:
        clamp(44px, 5vw, 70px);

    line-height: 1.02;

    letter-spacing: -2.8px;
}


.global-mindset-grid h2 span {
    display: block;

    color: #35c7ff;
}


.global-mindset-grid p {
    margin:
        0 0 22px;

    color: #a8bbc5;

    font-size: 16px;

    line-height: 1.9;
}



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

.global-page-cta {
    padding: 110px 0;

    background:
        linear-gradient(
            135deg,
            #eef4fb,
            #f9fbfe
        );
}


.global-page-cta-inner {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 60px;
}


.global-page-cta-inner > div {
    max-width: 820px;
}


.global-page-cta h2 {
    margin:
        15px 0 20px;

    color: #081321;

    font-size:
        clamp(44px, 5vw, 68px);

    line-height: 1.02;

    letter-spacing: -2.7px;
}


.global-page-cta h2 span {
    display: block;

    color: #2c74ff;
}


.global-page-cta p {
    max-width: 650px;

    margin: 0;

    color: #64768a;

    line-height: 1.8;
}



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

@media (max-width: 1050px) {

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

}


@media (max-width: 950px) {

    .global-page-hero-grid,
    .global-dubai-grid,
    .global-mindset-grid {

        grid-template-columns: 1fr;
    }


    .global-page-hero-grid {
        gap: 40px;
    }


    .global-world-visual {
        min-height: 430px;
    }


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


    .global-page-cta-inner {
        flex-direction: column;

        align-items: flex-start;
    }

}


@media (max-width: 650px) {

    .global-page-hero {
        padding:
            125px 0 85px;
    }


    .global-page-hero-content h1 {
        font-size: 47px;

        letter-spacing: -2px;
    }


    .global-world-visual {
        min-height: 350px;

        transform:
            scale(.85);
    }


    .global-dubai-section,
    .global-markets-section,
    .global-working-section,
    .global-mindset-section {

        padding:
            90px 0;
    }


    .global-market-grid,
    .global-working-grid {

        grid-template-columns: 1fr;
    }


    .global-page-cta {
        padding:
            85px 0;
    }


    .global-world-point {
        font-size: 10px;

        padding:
            7px 10px;
    }

}


/* ==========================================
            HOW WE WORK PAGE
========================================== */


/* HERO */

.process-page-hero {
    position: relative;

    padding: 165px 0 130px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 82% 28%,
            rgba(53, 167, 255, .14),
            transparent 30%
        ),
        radial-gradient(
            circle at 12% 80%,
            rgba(116, 91, 255, .10),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #07111d 0%,
            #0b1929 48%,
            #0a2031 100%
        );

    color: white;
}


.process-page-hero-inner {
    max-width: 920px;
}


.process-page-hero h1 {
    margin: 17px 0 28px;

    font-size:
        clamp(56px, 6.5vw, 92px);

    line-height: .96;

    letter-spacing: -4px;
}


.process-page-hero h1 span {
    display: block;

    color: #35a7ff;
}


.process-page-hero p {
    max-width: 760px;

    margin: 0;

    color: #a5b4c5;

    font-size: 17px;

    line-height: 1.85;
}



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

.process-intro-section {
    padding: 125px 0;

    background: #f7f9fc;
}


.process-intro-grid {
    display: grid;

    grid-template-columns:
        .95fr 1.05fr;

    gap: 90px;

    align-items: start;
}


.process-intro-grid h2 {
    margin: 15px 0 0;

    color: #081321;

    font-size:
        clamp(44px, 5vw, 70px);

    line-height: 1.02;

    letter-spacing: -2.8px;
}


.process-intro-grid h2 span {
    display: block;

    color: #2c74ff;
}


.process-intro-grid p {
    margin: 0 0 22px;

    color: #607286;

    font-size: 16px;

    line-height: 1.9;
}



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

.process-steps-section {
    position: relative;

    padding: 130px 0;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 18%,
            rgba(53, 167, 255, .09),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #071321,
            #0a1e31
        );

    color: white;
}


.process-steps-header {
    max-width: 780px;

    margin-bottom: 60px;
}


.process-steps-header h2 {
    margin: 15px 0 0;

    font-size:
        clamp(44px, 5vw, 70px);

    line-height: 1.02;

    letter-spacing: -2.8px;
}


.process-steps-header h2 span {
    display: block;

    color: #35a7ff;
}


.process-steps-list {
    position: relative;

    display: flex;

    flex-direction: column;

    gap: 18px;
}


.process-steps-list::before {
    content: "";

    position: absolute;

    top: 45px;
    bottom: 45px;
    left: 48px;

    width: 1px;

    background:
        linear-gradient(
            to bottom,
            rgba(53, 167, 255, .5),
            rgba(53, 167, 255, .04)
        );
}


.process-step-card {
    position: relative;

    display: grid;

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

    gap: 24px;

    align-items: start;

    padding: 28px 30px;

    border-radius: 22px;

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

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

    transition:
        transform .3s ease,
        border-color .3s ease,
        background .3s ease;
}


.process-step-card:hover {
    transform:
        translateX(6px);

    border-color:
        rgba(53, 167, 255, .25);

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


.process-step-number {
    position: relative;
    z-index: 2;

    width: 42px;
    height: 42px;

    display: flex;

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

    border-radius: 50%;

    background: #0a1b2b;

    border:
        1px solid rgba(53, 167, 255, .32);

    color: #35a7ff;

    font-size: 11px;

    font-weight: 700;
}


.process-step-icon {
    width: 54px;
    height: 54px;

    display: flex;

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

    border-radius: 15px;

    background:
        linear-gradient(
            135deg,
            rgba(18, 103, 255, .20),
            rgba(53, 167, 255, .10)
        );

    color: #35a7ff;

    font-size: 18px;
}


.process-step-content > span {
    display: block;

    margin-bottom: 8px;

    color: #35a7ff;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.5px;
}


.process-step-content h3 {
    margin: 0 0 12px;

    color: white;

    font-size: 25px;
}


.process-step-content p {
    max-width: 780px;

    margin: 0;

    color: #9fb0c2;

    font-size: 14px;

    line-height: 1.75;
}



/* ==========================================
            PRINCIPLES
========================================== */

.process-principles-section {
    padding: 130px 0;

    background:
        linear-gradient(
            135deg,
            #edf4fb,
            #f9fbfe
        );
}


.process-principles-header {
    max-width: 820px;

    margin-bottom: 55px;
}


.process-principles-header h2 {
    margin: 15px 0 0;

    color: #081321;

    font-size:
        clamp(44px, 5vw, 70px);

    line-height: 1.02;

    letter-spacing: -2.8px;
}


.process-principles-header h2 span {
    display: block;

    color: #2c74ff;
}


.process-principles-grid {
    display: grid;

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

    gap: 20px;
}


.process-principle-card {
    min-height: 250px;

    padding: 30px 26px;

    border-radius: 22px;

    background: white;

    border:
        1px solid
        rgba(35, 70, 120, .07);

    box-shadow:
        0 16px 38px
        rgba(30, 60, 100, .06);

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


.process-principle-card:hover {
    transform:
        translateY(-7px);

    box-shadow:
        0 24px 52px
        rgba(30, 60, 100, .10);
}


.process-principle-card i {
    width: 50px;
    height: 50px;

    display: flex;

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

    margin-bottom: 24px;

    border-radius: 14px;

    background:
        rgba(44, 116, 255, .08);

    color: #2c74ff;
}


.process-principle-card h3 {
    margin: 0 0 12px;

    color: #102033;

    font-size: 21px;
}


.process-principle-card p {
    margin: 0;

    color: #65778a;

    font-size: 14px;

    line-height: 1.75;
}



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

.process-page-cta {
    padding: 110px 0;

    background:
        radial-gradient(
            circle at 82% 40%,
            rgba(53, 167, 255, .12),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #071321,
            #0b2034
        );

    color: white;
}


.process-page-cta-inner {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 60px;
}


.process-page-cta-inner > div {
    max-width: 820px;
}


.process-page-cta h2 {
    margin: 15px 0 20px;

    font-size:
        clamp(44px, 5vw, 68px);

    line-height: 1.02;

    letter-spacing: -2.7px;
}


.process-page-cta h2 span {
    display: block;

    color: #35a7ff;
}


.process-page-cta p {
    max-width: 660px;

    margin: 0;

    color: #9eafc0;

    line-height: 1.8;
}



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

@media (max-width: 1050px) {

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

}


@media (max-width: 950px) {

    .process-intro-grid {
        grid-template-columns: 1fr;
    }


    .process-page-cta-inner {
        flex-direction: column;

        align-items: flex-start;
    }

}


@media (max-width: 650px) {

    .process-page-hero {
        padding:
            125px 0 85px;
    }


    .process-page-hero h1 {
        font-size: 47px;

        letter-spacing: -2px;
    }


    .process-intro-section,
    .process-steps-section,
    .process-principles-section {

        padding:
            90px 0;
    }


    .process-step-card {
        grid-template-columns:
            48px 1fr;

        gap: 18px;

        padding:
            24px 20px;
    }


    .process-step-icon {
        display: none;
    }


    .process-steps-list::before {
        left: 41px;
    }


    .process-principles-grid {
        grid-template-columns: 1fr;
    }


    .process-page-cta {
        padding:
            85px 0;
    }

}





/* =========================================================
   HOMEPAGE MOBILE FIX
   INSIGHTS + START A PROJECT
   ========================================================= */

@media (max-width: 900px) {

    /* =========================
       INSIGHTS
       ========================= */

    .insights-section {
        padding: 95px 0;
    }

    .insights-header {
        grid-template-columns: 1fr;
        gap: 24px;
        align-items: start;

        margin-bottom: 42px;
    }

    .insights-header > p {
        max-width: 620px;
    }

    .insights-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }


    /* =========================
       START A PROJECT
       ========================= */

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

    .contact-container {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .contact-intro {
        max-width: 650px;
    }

    .contact-intro > p {
        max-width: 600px;
    }

    .contact-form-wrapper {
        width: 100%;
        max-width: 100%;
    }
}


/* =========================================================
   IPHONE / SMALL MOBILE
   ========================================================= */

@media (max-width: 600px) {

    /* =========================
       INSIGHTS
       ========================= */

    .insights-section {
        padding: 75px 0;
    }

    .insights-header {
        display: block;
        margin-bottom: 32px;
    }

    .insights-header h2 {
        margin-top: 14px;

        font-size: 38px;
        line-height: 1.08;
        letter-spacing: -2px;
    }

    .insights-header > p {
        margin-top: 20px;

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

    .insights-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .insight-card {
        width: 100%;
        min-width: 0;
    }

    .insight-image {
        height: 190px;
    }

    .insight-content {
        padding: 22px 20px;
    }

    .insight-content h3 {
        font-size: 19px;
        line-height: 1.3;
    }

    .insight-content p {
        font-size: 13px;
    }


    /* =========================
       START A PROJECT
       ========================= */

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

    .contact-container {
        display: grid;
        grid-template-columns: minmax(0, 1fr);

        gap: 42px;

        width: 90%;
        max-width: 100%;
    }

    .contact-intro {
        width: 100%;
        min-width: 0;
    }

    .contact-intro h2 {
        font-size: 40px;
        line-height: 1.05;
        letter-spacing: -2px;

        margin: 15px 0 20px;
    }

    .contact-intro > p {
        font-size: 14px;
        line-height: 1.7;
    }

    .contact-points {
        margin-top: 32px;
        gap: 15px;
    }

    .contact-point {
        align-items: flex-start;
    }

    .contact-point > i {
        width: 40px;
        height: 40px;

        flex: 0 0 40px;
    }

    .contact-point > div {
        min-width: 0;
    }

    .contact-point strong {
        max-width: 100%;

        font-size: 12px;

        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .contact-form-wrapper {
        width: 100%;
        min-width: 0;

        padding: 20px;

        border-radius: 16px;
    }

    .contact-form {
        width: 100%;
        min-width: 0;
    }

    .form-row {
        grid-template-columns: minmax(0, 1fr);
        gap: 0;
    }

    .form-group {
        width: 100%;
        min-width: 0;

        margin-bottom: 18px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        display: block;

        width: 100%;
        max-width: 100%;
        min-width: 0;

        padding: 14px;

        font-size: 16px;
    }

    .form-group textarea {
        min-height: 130px;
    }

    .submit-project-btn {
        width: 100%;

        padding: 16px 18px;

        font-size: 14px;
    }
}


/* EXTRA SMALL IPHONES */

@media (max-width: 390px) {

    .insights-header h2 {
        font-size: 34px;
    }

    .insight-image {
        height: 175px;
    }

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

    .contact-form-wrapper {
        padding: 17px;
    }
}



.form-success-message {
    display: none;
}