/* =========================================================
   BAJOT — GLOBAL DESIGN SYSTEM
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');


:root {

    --primary: #168BFF;
    --primary-light: #38A5FF;
    --primary-dark: #0867C7;

    --dark: #030811;
    --dark-2: #050C17;
    --dark-3: #081321;
    --dark-4: #0B1828;

    --light: #F5F8FC;
    --white: #FFFFFF;

    --text: #AEBCCD;
    --text-light: #D6DEE8;

    --border: rgba(255,255,255,.09);
    --border-blue: rgba(22,139,255,.32);

    --shadow: 0 25px 70px rgba(0,0,0,.35);

    --container: 1450px;

}


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

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

html {
    scroll-behavior: smooth;
    background: var(--dark);
}

body {

    background:
        radial-gradient(
            circle at 80% 10%,
            rgba(22,139,255,.055),
            transparent 30%
        ),
        var(--dark);

    color: var(--light);

    font-family: 'Inter', Arial, sans-serif;

    line-height: 1.6;

    overflow-x: hidden;

}

img {
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

::selection {
    background: var(--primary);
    color: #fff;
}


/* =========================================================
   BOOTSTRAP OVERRIDES
========================================================= */

.container {
    max-width: var(--container);
}

.row {
    position: relative;
}

section {
    position: relative;
}


/* =========================================================
   NAVBAR
========================================================= */

.custom-navbar {

    height: 92px;

    padding: 0;

    background: rgba(3,8,17,.78);

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

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

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

    z-index: 1000;

}

.custom-navbar::after {

    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: -1px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(22,139,255,.35),
            transparent
        );

    opacity: .5;

}

.logo {

    width: auto;

    height: 68px;

    object-fit: contain;

    transition: transform .3s ease;

}

.navbar-brand:hover .logo {
    transform: translateY(-1px);
}

.navbar-nav {

    gap: 5px;

}

.navbar-nav .nav-link {

    position: relative;

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

    font-size: .86rem;

    font-weight: 600;

    letter-spacing: .2px;

    padding: 12px 13px !important;

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

}

.navbar-nav .nav-link::after {

    content: "";

    position: absolute;

    left: 13px;
    right: 13px;

    bottom: 5px;

    height: 1px;

    background: var(--primary);

    transform: scaleX(0);

    transform-origin: center;

    transition: transform .25s ease;

}

.navbar-nav .nav-link:hover {

    color: #fff !important;

}

.navbar-nav .nav-link:hover::after {

    transform: scaleX(1);

}

.language-link {

    display: inline-flex !important;

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

    min-width: 44px;

    height: 36px;

    padding: 0 12px !important;

    margin-left: 5px;

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

    border-radius: 4px;

    font-size: .75rem !important;

    font-weight: 800 !important;

    letter-spacing: 1.2px;

}

.language-link::after {
    display: none;
}

.language-link:hover {

    background: var(--primary);

    border-color: var(--primary);

}

.nav-cta {

    margin-left: 8px;

    padding: 12px 20px !important;

    border-radius: 4px !important;

    font-size: .82rem !important;

    font-weight: 700 !important;

    letter-spacing: .2px;

}

.nav-cta::after {
    display: none;
}


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

.btn {

    border-radius: 4px;

    font-weight: 700;

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

}

.btn-primary {

    background: var(--primary);

    border: 1px solid var(--primary);

    color: #fff !important;

}

.btn-primary:hover {

    background: var(--primary-light);

    border-color: var(--primary-light);

    transform: translateY(-2px);

    box-shadow:
        0 12px 35px rgba(22,139,255,.28);

}

.btn-lg {

    padding: 15px 24px;

}


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

.hero-section {

    min-height: 920px;

    display: flex;

    align-items: center;

    overflow: hidden;

    padding-top: 92px;

    isolation: isolate;

}

.hero-background {

    position: absolute;

    inset: 0;

    z-index: -4;

    background-image:
        url("../images/hero-datacenter.webp");

    background-size: cover;

    background-position: center right;

    transform: scale(1.01);

}

.hero-overlay {

    position: absolute;

    inset: 0;

    z-index: -3;

    background:

        linear-gradient(
            90deg,
            rgba(3,8,17,.98) 0%,
            rgba(3,8,17,.94) 28%,
            rgba(3,8,17,.72) 53%,
            rgba(3,8,17,.18) 82%,
            rgba(3,8,17,.38) 100%
        ),

        linear-gradient(
            180deg,
            rgba(3,8,17,.50),
            transparent 35%,
            rgba(3,8,17,.72) 100%
        );

}

.hero-grid {

    position: absolute;

    inset: 0;

    z-index: -2;

    opacity: .18;

    background-image:

        linear-gradient(
            rgba(255,255,255,.025) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,.025) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    mask-image:
        linear-gradient(
            90deg,
            black,
            transparent 80%
        );

}

.hero-container {

    position: relative;

    width: 100%;

    padding-top: 80px;

    padding-bottom: 70px;

}

.hero-eyebrow {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 24px;

    color: var(--primary-light);

    font-size: .72rem;

    font-weight: 800;

    letter-spacing: 3px;

}

.hero-eyebrow span {

    display: block;

    width: 38px;

    height: 2px;

    background: var(--primary);

    box-shadow:
        0 0 15px rgba(22,139,255,.5);

}

.hero-title {

    max-width: 850px;

    margin-bottom: 28px;

    color: #fff;

    font-family: 'Space Grotesk', sans-serif;

    font-size: clamp(3.7rem, 6vw, 6.4rem);

    font-weight: 700;

    letter-spacing: -3px;

    line-height: .98;

}

.hero-title span {

    display: block;

    color: var(--primary);

}

.hero-line {

    width: 95px;

    height: 3px;

    margin-bottom: 28px;

    background: var(--primary);

    box-shadow:
        0 0 20px rgba(22,139,255,.45);

}

.hero-description {

    max-width: 720px;

    margin-bottom: 28px;

    color: var(--text-light);

    font-size: 1.08rem;

    line-height: 1.8;

}

.hero-features {

    display: flex;

    flex-wrap: wrap;

    gap: 9px;

    max-width: 850px;

    margin-bottom: 38px;

}

.hero-features span {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 8px 12px;

    background: rgba(7,17,30,.58);

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

    border-radius: 3px;

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

    font-size: .78rem;

    font-weight: 600;

    backdrop-filter: blur(8px);

}

.hero-features strong {

    color: var(--primary);

    font-size: .9rem;

}

.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

}

.hero-primary-btn {

    display: inline-flex;

    align-items: center;

    gap: 18px;

    padding: 15px 23px;

    text-transform: uppercase;

    font-size: .78rem;

    letter-spacing: .8px;

}

.hero-primary-btn span {

    font-size: 1.2rem;

    transition: transform .25s ease;

}

.hero-primary-btn:hover span {

    transform: translateX(4px);

}

.hero-secondary-btn {

    display: inline-flex;

    align-items: center;

    padding: 15px 23px;

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

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

    color: #fff;

    text-transform: uppercase;

    font-size: .78rem;

    letter-spacing: .8px;

}

.hero-secondary-btn:hover {

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

    border-color: rgba(255,255,255,.45);

    color: #fff;

    transform: translateY(-2px);

}


/* HERO STATS */

.hero-stats {

    display: grid;

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

    max-width: 850px;

    margin-top: 85px;

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

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

}

.hero-stat {

    position: relative;

    padding: 24px 28px 23px;

}

.hero-stat:not(:last-child)::after {

    content: "";

    position: absolute;

    top: 22px;
    right: 0;
    bottom: 22px;

    width: 1px;

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

}

.hero-stat-number {

    color: #fff;

    font-family: 'Space Grotesk', sans-serif;

    font-size: 2.1rem;

    font-weight: 700;

    line-height: 1;

}

.hero-stat-number span {

    color: var(--primary);

}

.hero-stat-text {

    font-size: 1.7rem;

}

.hero-stat-label {

    margin-top: 8px;

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

    font-size: .66rem;

    font-weight: 700;

    letter-spacing: 1.3px;

    text-transform: uppercase;

}


/* =========================================================
   SECTION SYSTEM
========================================================= */

.about-section,
.services-section,
.experience-section,
.why-section,
.cta-section {

    padding: 125px 0;

}

.section-eyebrow {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 20px;

    color: var(--primary);

    font-size: .7rem;

    font-weight: 800;

    letter-spacing: 3px;

    text-transform: uppercase;

}

.section-eyebrow span {

    width: 34px;

    height: 2px;

    background: var(--primary);

}

.section-title {

    max-width: 900px;

    margin-bottom: 22px;

    font-family: 'Space Grotesk', sans-serif;

    font-size: clamp(2.5rem, 4vw, 4.2rem);

    font-weight: 700;

    letter-spacing: -2px;

    line-height: 1.03;

}

.section-title span {

    color: var(--primary);

}

.section-heading {

    max-width: 920px;

    margin-bottom: 60px;

}

.section-heading > p {

    max-width: 760px;

    color: var(--text);

    font-size: 1rem;

    line-height: 1.8;

}

.section-heading.centered {

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

    text-align: center;

}

.section-heading.centered .section-eyebrow {

    justify-content: center;

}

.section-heading.centered .section-title,
.section-heading.centered > p {

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

}


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

.about-section {

    background:
        linear-gradient(
            180deg,
            var(--dark-2),
            var(--dark-3)
        );

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

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

}

.section-heading-row {

    display: grid;

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

    gap: 80px;

    align-items: end;

    margin-bottom: 65px;

}

.section-heading-description {

    padding-bottom: 8px;

}

.section-heading-description p {

    margin: 0;

    color: var(--text);

    font-size: .98rem;

    line-height: 1.8;

}

.about-content {

    display: grid;

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

    gap: 90px;

    align-items: center;

}

.about-copy {

    max-width: 620px;

}

.about-copy p {

    margin-bottom: 20px;

    color: var(--text);

    line-height: 1.85;

}

.text-link {

    display: inline-flex;

    align-items: center;

    gap: 15px;

    margin-top: 18px;

    color: #fff;

    font-size: .78rem;

    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;

}

.text-link span {

    color: var(--primary);

    font-size: 1.15rem;

    transition: transform .25s ease;

}

.text-link:hover {

    color: var(--primary);

}

.text-link:hover span {

    transform: translateX(5px);

}


/* =========================================================
   STATS
========================================================= */

.stats-grid {

    display: grid;

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

    gap: 1px;

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

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

}

.stat-card {

    position: relative;

    min-height: 210px;

    padding: 30px;

    background:
        linear-gradient(
            145deg,
            rgba(11,24,40,.98),
            rgba(5,12,23,.98)
        );

    overflow: hidden;

    transition:
        background .3s ease,
        transform .3s ease;

}

.stat-card::before {

    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 3px;
    height: 0;

    background: var(--primary);

    transition: height .35s ease;

}

.stat-card:hover {

    background:
        linear-gradient(
            145deg,
            rgba(13,30,50,.98),
            rgba(5,12,23,.98)
        );

}

.stat-card:hover::before {

    height: 100%;

}

.stat-card-top {

    margin-bottom: 40px;

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

    font-size: .65rem;

    font-weight: 800;

    letter-spacing: 2px;

}

.stat-card-number {

    color: var(--primary);

    font-family: 'Space Grotesk', sans-serif;

    font-size: 1.65rem;

    font-weight: 700;

    line-height: 1.1;

}

.stat-card-title {

    margin-top: 9px;

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

    font-size: .78rem;

}

.stat-card-line {

    width: 35px;

    height: 1px;

    margin-top: 22px;

    background: rgba(22,139,255,.55);

}


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

.services-section {

    background: var(--dark);

}

.services-grid {

    display: grid;

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

    gap: 18px;

}

.service-card {

    position: relative;

    min-height: 420px;

    display: flex;

    flex-direction: column;

    padding: 34px;

    background:
        linear-gradient(
            145deg,
            #091625,
            #050B14
        );

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

    overflow: hidden;

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;

}

.service-card::before {

    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--primary),
            transparent
        );

    transform: scaleX(0);

    transition: transform .35s ease;

}

.service-card::after {

    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

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

    border-radius: 50%;

    background: rgba(22,139,255,.08);

    filter: blur(15px);

    transition: transform .4s ease;

}

.service-card:hover {

    transform: translateY(-10px);

    border-color: rgba(22,139,255,.45);

    box-shadow:
        0 25px 70px rgba(0,0,0,.35),
        0 0 35px rgba(22,139,255,.06);

}

.service-card:hover::before {

    transform: scaleX(1);

}

.service-card:hover::after {

    transform: scale(1.5);

}

.service-card-number {

    align-self: flex-end;

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

    font-family: 'Space Grotesk', sans-serif;

    font-size: .7rem;

    font-weight: 700;

    letter-spacing: 2px;

}

.service-icon {

    width: 64px;
    height: 64px;

    display: flex;

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

    margin-top: 55px;
    margin-bottom: 28px;

    background: rgba(22,139,255,.07);

    border: 1px solid rgba(22,139,255,.28);

}

.service-icon svg {

    width: 32px;
    height: 32px;

    fill: none;

    stroke: var(--primary);

    stroke-width: 1.6;

    stroke-linecap: round;
    stroke-linejoin: round;

}

.service-card h3 {

    margin-bottom: 16px;

    color: #fff;

    font-family: 'Space Grotesk', sans-serif;

    font-size: 1.55rem;

    font-weight: 600;

}

.service-card p {

    margin-bottom: 30px;

    color: var(--text);

    font-size: .88rem;

    line-height: 1.75;

}

.service-link {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-top: auto;

    color: var(--primary);

    font-size: .73rem;

    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;

}

.service-link span {

    font-size: 1.1rem;

    transition: transform .25s ease;

}

.service-card:hover .service-link span {

    transform: translateX(5px);

}


/* =========================================================
   EXPERIENCE
========================================================= */

.experience-section {

    background: #040A12;

    overflow: hidden;

}

.experience-background {

    position: absolute;

    inset: 0;

    background:

        radial-gradient(
            circle at 85% 30%,
            rgba(22,139,255,.08),
            transparent 32%
        ),

        linear-gradient(
            135deg,
            transparent,
            rgba(22,139,255,.025)
        );

    pointer-events: none;

}

.experience-heading {

    position: relative;

    z-index: 2;

}

.experience-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: 1.35fr .825fr .825fr;

    gap: 18px;

}

.experience-card {

    position: relative;

    min-height: 470px;

    display: flex;

    flex-direction: column;

    background:
        linear-gradient(
            145deg,
            #091624,
            #050B14
        );

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

    overflow: hidden;

}

.experience-card-large {

    min-height: 560px;

}

.experience-card-image {

    height: 220px;

    background-size: cover;

    background-position: center;

}

.experience-image-dc {

    background-image:
        linear-gradient(
            180deg,
            rgba(3,8,17,.05),
            rgba(3,8,17,.7)
        ),
        url("../images/hero-datacenter.webp");

}

.experience-card-large .experience-card-content {

    margin-top: -1px;

}

.experience-card-content {

    position: relative;

    flex: 1;

    padding: 34px;

}

.experience-number {

    margin-bottom: 32px;

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

    font-size: .68rem;

    font-weight: 800;

    letter-spacing: 2px;

}

.experience-label {

    margin-bottom: 12px;

    color: var(--primary);

    font-size: .66rem;

    font-weight: 800;

    letter-spacing: 2.5px;

}

.experience-card h3 {

    margin-bottom: 16px;

    color: #fff;

    font-family: 'Space Grotesk', sans-serif;

    font-size: 1.65rem;

    line-height: 1.1;

}

.experience-card p {

    max-width: 480px;

    margin-bottom: 28px;

    color: var(--text);

    font-size: .86rem;

    line-height: 1.75;

}

.experience-card a {

    position: absolute;

    left: 34px;
    bottom: 32px;

    display: inline-flex;

    gap: 12px;

    color: #fff;

    font-size: .7rem;

    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;

}

.experience-card a span {

    color: var(--primary);

    font-size: 1.1rem;

    transition: transform .25s ease;

}

.experience-card:hover {

    border-color: rgba(22,139,255,.4);

}

.experience-card:hover a span {

    transform: translateX(5px);

}


/* EXPERIENCE STRIP */

.experience-strip {

    position: relative;

    z-index: 2;

    display: grid;

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

    margin-top: 20px;

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

}

.experience-strip > div {

    padding: 20px 22px;

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

}

.experience-strip > div:last-child {

    border-right: 0;

}

.experience-strip strong {

    display: block;

    margin-bottom: 4px;

    color: #fff;

    font-size: .75rem;

}

.experience-strip span {

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

    font-size: .68rem;

}


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

.why-section {

    background: var(--dark-2);

}

.why-grid {

    display: grid;

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

    gap: 18px;

}

.why-card {

    position: relative;

    min-height: 330px;

    padding: 32px;

    background: rgba(8,19,33,.65);

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

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

}

.why-card:hover {

    transform: translateY(-8px);

    border-color: rgba(22,139,255,.35);

    background: rgba(9,24,40,.95);

}

.why-icon {

    width: 55px;
    height: 55px;

    display: flex;

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

    margin-bottom: 35px;

    border: 1px solid rgba(22,139,255,.3);

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

}

.why-icon svg {

    width: 29px;
    height: 29px;

    fill: none;

    stroke: var(--primary);

    stroke-width: 1.5;

    stroke-linecap: round;
    stroke-linejoin: round;

}

.why-number {

    position: absolute;

    top: 30px;
    right: 30px;

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

    font-size: .65rem;

    font-weight: 800;

    letter-spacing: 2px;

}

.why-card h3 {

    margin-bottom: 13px;

    color: #fff;

    font-family: 'Space Grotesk', sans-serif;

    font-size: 1.35rem;

}

.why-card p {

    margin: 0;

    color: var(--text);

    font-size: .84rem;

    line-height: 1.75;

}


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

.cta-section {

    padding-top: 80px;

    padding-bottom: 100px;

    background: var(--dark);

    overflow: hidden;

}

.cta-glow {

    position: absolute;

    width: 500px;
    height: 500px;

    left: 50%;
    top: 50%;

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

    background: rgba(22,139,255,.08);

    filter: blur(100px);

    pointer-events: none;

}

.cta-box {

    position: relative;

    display: flex;

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

    gap: 50px;

    padding: 65px 70px;

    background:

        linear-gradient(
            115deg,
            #071523,
            #0A1A2C
        );

    border: 1px solid rgba(22,139,255,.28);

    overflow: hidden;

}

.cta-box::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;
    bottom: 0;

    width: 4px;

    background: var(--primary);

    box-shadow:
        0 0 35px rgba(22,139,255,.7);

}

.cta-content {

    max-width: 820px;

}

.cta-content .section-eyebrow {

    margin-bottom: 15px;

}

.cta-content h2 {

    margin-bottom: 16px;

    color: #fff;

    font-family: 'Space Grotesk', sans-serif;

    font-size: clamp(2rem, 3vw, 3.2rem);

    font-weight: 700;

    letter-spacing: -1.5px;

    line-height: 1.05;

}

.cta-content h2 span {

    color: var(--primary);

}

.cta-content p {

    max-width: 700px;

    margin: 0;

    color: var(--text);

    font-size: .95rem;

}

.cta-button {

    flex-shrink: 0;

    display: inline-flex;

    align-items: center;

    gap: 18px;

    padding: 16px 25px;

    text-transform: uppercase;

    font-size: .76rem;

    letter-spacing: .8px;

}

.cta-button span {

    font-size: 1.2rem;

}


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

.footer {

    position: relative;

    padding: 80px 0 25px;

    background: #02060C;

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

}

.footer-grid {

    display: grid;

    grid-template-columns: 1.5fr .8fr .8fr .9fr;

    gap: 70px;

}

.footer-brand {

    max-width: 430px;

}

.footer-logo {

    height: 70px;

    width: auto;

    margin-bottom: 22px;

}

.footer-brand p {

    max-width: 360px;

    margin-bottom: 24px;

    color: var(--text);

    font-size: .85rem;

    line-height: 1.8;

}

.footer-tagline {

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

    font-size: .63rem;

    font-weight: 800;

    letter-spacing: 2px;

}

.footer-tagline span {

    color: var(--primary);

}

.footer-column {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

}

.footer-column h4 {

    margin-bottom: 23px;

    color: #fff;

    font-family: 'Space Grotesk', sans-serif;

    font-size: .85rem;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;

}

.footer-column a {

    margin-bottom: 12px;

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

    font-size: .78rem;

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

}

.footer-column a:hover {

    color: var(--primary);

    transform: translateX(4px);

}

.footer-contact span {

    margin-bottom: 5px;

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

    font-size: .63rem;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

}

.footer-contact a {

    margin-bottom: 0;

    color: var(--primary);

    font-size: .86rem;

}

.footer-contact-space {

    margin-top: 25px;

}

.footer-contact strong {

    color: #fff;

    font-family: 'Space Grotesk', sans-serif;

    font-size: 1.35rem;

}

.footer-bottom {

    display: flex;

    justify-content: space-between;

    gap: 30px;

    margin-top: 65px;

    padding-top: 22px;

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

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

    font-size: .63rem;

    letter-spacing: .5px;

}


/* =========================================================
   CONTACT / EXISTING COMPONENTS
   Kept so other pages continue working.
========================================================= */

.contact-card {

    height: 100%;

    padding: 35px;

    background: var(--dark-3);

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

}

.contact-item {

    margin-bottom: 28px;

}

.contact-item:last-child {

    margin-bottom: 0;

}

.contact-item strong {

    display: block;

    margin-bottom: 8px;

    color: var(--light);

}

.contact-item p {

    margin: 0;

    color: var(--primary);

    font-size: 1.05rem;

}


/* =========================================================
   LARGE SERVICE CARDS — OTHER PAGES
========================================================= */

.service-card-large {

    height: 100%;

    padding: 40px;

    background: var(--dark-2);

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

    border-radius: 0;

    transition: .35s ease;

}

.service-card-large:hover {

    transform: translateY(-8px);

    border-color: var(--primary);

    box-shadow:
        0 25px 60px rgba(0,0,0,.3);

}

.service-card-large h3 {

    margin: 20px 0;

    color: #fff;

    font-family: 'Space Grotesk', sans-serif;

}

.service-card-large p {

    color: var(--text);

}

.service-card-large ul {

    list-style: none;

    padding: 0;

    margin-top: 25px;

}

.service-card-large li {

    margin-bottom: 12px;

    color: var(--text);

}

.service-card-large li::before {

    content: "✓ ";

    color: var(--primary);

    font-weight: 800;

}


/* =========================================================
   TECHNOLOGIES
========================================================= */

.technologies-section {

    background: var(--dark-3);

}

.technology-grid {

    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    gap: 12px;

}

.technology-item {

    padding: 14px 24px;

    background: var(--dark-2);

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

    border-radius: 3px;

    color: #fff;

    font-size: .82rem;

    font-weight: 600;

    transition: .3s ease;

}

.technology-item:hover {

    color: var(--primary);

    border-color: var(--primary);

    transform: translateY(-4px);

}


/* =========================================================
   PROJECTS
========================================================= */

.projects-section {

    background: var(--dark);

}

.project-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    align-items: center;

    margin-bottom: 90px;

}

.project-row.reverse {

    direction: rtl;

}

.project-row.reverse > * {

    direction: ltr;

}

.project-image img {

    width: 100%;

    border-radius: 0;

    display: block;

}

.project-category {

    display: inline-block;

    margin-bottom: 15px;

    color: var(--primary);

    font-size: .7rem;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;

}

.project-content h3 {

    margin-bottom: 20px;

    font-family: 'Space Grotesk', sans-serif;

}

.project-tags {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 25px;

}

.project-tags span {

    padding: 7px 13px;

    background: rgba(22,139,255,.07);

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

    color: var(--text);

    font-size: .7rem;

}


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

.process-section {

    background: var(--dark);

}

.process-grid {

    display: grid;

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

    gap: 20px;

}

.process-card {

    padding: 35px;

    background: var(--dark-3);

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

}

.process-number {

    width: 55px;
    height: 55px;

    display: flex;

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

    margin-bottom: 25px;

    background: var(--primary);

    color: #fff;

    font-weight: 800;

}

.process-card h3 {

    margin-bottom: 15px;

    font-family: 'Space Grotesk', sans-serif;

}

.process-card p {

    margin: 0;

    color: var(--text);

}


/* =========================================================
   FEATURED PROJECT
========================================================= */

.featured-projects {

    background: var(--dark-3);

}

.project-card {

    display: grid;

    grid-template-columns: 45% 55%;

    align-items: stretch;

    background: var(--dark);

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

    overflow: hidden;

}

.project-image {

    width: 100%;
    height: 100%;

    object-fit: cover;

}

.project-right {

    padding: 50px;

}

.project-label {

    color: var(--primary);

    font-size: .7rem;

    font-weight: 800;

    letter-spacing: 2px;

}

.project-right h3 {

    margin: 20px 0;

    font-family: 'Space Grotesk', sans-serif;

}

.project-info {

    display: grid;

    gap: 25px;

    margin-top: 35px;

}

.project-info strong {

    display: block;

    margin-bottom: 7px;

    color: #fff;

}

.project-info span {

    color: var(--text);

}


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

.faq-section {

    background: var(--dark);

}

.accordion-item {

    margin-bottom: 15px;

    background: var(--dark-3);

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

    border-radius: 0 !important;

    overflow: hidden;

}

.accordion-button {

    padding: 23px;

    background: var(--dark-3);

    color: #fff;

    font-weight: 600;

    box-shadow: none;

}

.accordion-button:not(.collapsed) {

    background: rgba(22,139,255,.10);

    color: #fff;

}

.accordion-button:focus {

    box-shadow: none;

}

.accordion-body {

    padding: 23px;

    background: var(--dark-2);

    color: var(--text);

}


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

.form-control,
.form-select {

    min-height: 50px;

    background-color: var(--dark-3);

    color: var(--light);

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

    border-radius: 3px;

}

.form-control::placeholder {

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

}

.form-control:focus,
.form-select:focus {

    background-color: var(--dark-3);

    color: var(--light);

    border-color: var(--primary);

    box-shadow:
        0 0 0 .2rem rgba(22,139,255,.10);

}

.form-select option {

    background-color: var(--dark-3);

    color: var(--light);

}


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

.nav-link.active {

    color: var(--primary) !important;

    font-weight: 700;

}

.nav-link.active::after {

    transform: scaleX(1);

}


/* =========================================================
   RESPONSIVE — 1200
========================================================= */

@media (max-width: 1200px) {

    .navbar-nav .nav-link {

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

        font-size: .78rem;

    }

    .services-grid {

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

    }

    .why-grid {

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

    }

    .about-content {

        gap: 50px;

    }

}


/* =========================================================
   RESPONSIVE — 991
========================================================= */

@media (max-width: 991px) {

    .custom-navbar {

        height: 82px;

    }

    .logo {

        height: 58px;

    }

    .navbar-collapse {

        margin-top: 10px;

        padding: 15px;

        background: rgba(3,8,17,.97);

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

    }

    .navbar-nav {

        align-items: stretch !important;

    }

    .navbar-nav .nav-link {

        margin: 0;

    }

    .nav-cta {

        margin: 8px 0 0;

        text-align: center;

    }

    .language-link {

        margin: 8px 0;

        width: 48px;

    }

    .hero-section {

        min-height: auto;

    }

    .hero-container {

        padding-top: 100px;
        padding-bottom: 60px;

    }

    .hero-title {

        font-size: clamp(3rem, 8vw, 5rem);

    }

    .hero-stats {

        margin-top: 60px;

    }

    .section-heading-row {

        grid-template-columns: 1fr;

        gap: 20px;

    }

    .about-content {

        grid-template-columns: 1fr;

    }

    .experience-grid {

        grid-template-columns: 1fr;

    }

    .experience-card-large {

        min-height: 500px;

    }

    .experience-strip {

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

    }

    .experience-strip > div:nth-child(2) {

        border-right: 0;

    }

    .experience-strip > div:nth-child(-n+3) {

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

    }

    .cta-box {

        flex-direction: column;

        align-items: flex-start;

    }

    .footer-grid {

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

        gap: 50px;

    }

}


/* =========================================================
   RESPONSIVE — 768
========================================================= */

@media (max-width: 768px) {

    .about-section,
    .services-section,
    .experience-section,
    .why-section {

        padding: 90px 0;

    }

    .cta-section {

        padding: 60px 0 80px;

    }

    .hero-section {

        background: var(--dark);

    }

    .hero-background {

        background-position: 67% center;

    }

    .hero-overlay {

        background:

            linear-gradient(
                90deg,
                rgba(3,8,17,.98),
                rgba(3,8,17,.78)
            ),

            linear-gradient(
                180deg,
                rgba(3,8,17,.5),
                rgba(3,8,17,.9)
            );

    }

    .hero-title {

        font-size: 3.2rem;

        letter-spacing: -2px;

    }

    .hero-description {

        font-size: .95rem;

    }

    .hero-features {

        gap: 7px;

    }

    .hero-features span {

        font-size: .7rem;

    }

    .hero-stats {

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

        margin-top: 50px;

    }

    .hero-stat:nth-child(2)::after {

        display: none;

    }

    .hero-stat:nth-child(-n+2) {

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

    }

    .hero-stat {

        padding: 20px;

    }

    .hero-stat-number {

        font-size: 1.7rem;

    }

    .section-title {

        font-size: 2.5rem;

    }

    .stats-grid {

        grid-template-columns: 1fr;

    }

    .services-grid {

        grid-template-columns: 1fr;

    }

    .service-card {

        min-height: 380px;

    }

    .why-grid {

        grid-template-columns: 1fr;

    }

    .why-card {

        min-height: 280px;

    }

    .experience-strip {

        grid-template-columns: 1fr;

    }

    .experience-strip > div {

        border-right: 0;

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

    }

    .experience-strip > div:last-child {

        border-bottom: 0;

    }

    .cta-box {

        padding: 45px 30px;

    }

    .footer-grid {

        grid-template-columns: 1fr;

        gap: 40px;

    }

    .footer-bottom {

        flex-direction: column;

        gap: 10px;

    }

}


/* =========================================================
   RESPONSIVE — 576
========================================================= */

@media (max-width: 576px) {

    .container {

        width: 100%;

        padding-left: 18px;

        padding-right: 18px;

    }

    .hero-container {

        padding-top: 90px;

    }

    .hero-title {

        font-size: 2.65rem;

    }

    .hero-eyebrow {

        font-size: .62rem;

        letter-spacing: 2px;

    }

    .hero-buttons {

        flex-direction: column;

        align-items: stretch;

    }

    .hero-primary-btn,
    .hero-secondary-btn {

        justify-content: center;

        width: 100%;

    }

    .hero-stats {

        width: 100%;

    }

    .hero-stat {

        padding: 18px 12px;

    }

    .hero-stat-number {

        font-size: 1.5rem;

    }

    .hero-stat-text {

        font-size: 1.3rem;

    }

    .hero-stat-label {

        font-size: .56rem;

        letter-spacing: .8px;

    }

    .section-title {

        font-size: 2.15rem;

    }

    .service-card {

        padding: 28px;

    }

    .experience-card-content {

        padding: 28px;

    }

    .experience-card a {

        left: 28px;

        bottom: 28px;

    }

    .cta-button {

        width: 100%;

        justify-content: center;

    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

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

    html {

        scroll-behavior: auto;

    }

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

        animation-duration: .01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: .01ms !important;

    }

}

/* =========================================================
   CONTACT — EMAIL POSITION
========================================================= */

.experience-card-content a[href^="mailto:"] {
    position: static !important;
    left: auto !important;
    bottom: auto !important;

    display: inline-block;

    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;

    margin: 0;
}

.experience-card-content a[href^="mailto:"]:hover {
    color: var(--primary);
}