:root {
    --navy: #0B1736;
    --blue: #2563EB;
    --blue-dark: #1D4ED8;
    --blue-soft: #EFF6FF;

    --text: #172033;
    --muted: #64748B;

    --white: #FFFFFF;
    --section: #F8FAFC;

    --border: #E2E8F0;

    --container: 1180px;
}


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


html {
    scroll-behavior: smooth;
}


body {
    font-family: "Inter", sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}


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


.container {
    width: min(
        calc(100% - 48px),
        var(--container)
    );

    margin: 0 auto;
}


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

.site-header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

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

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

    border-bottom: 1px solid rgba(226, 232, 240, 0.7);
}


.nav-container {
    height: 78px;

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


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

    line-height: 1;
}


.brand-name {
    font-family: "Plus Jakarta Sans", sans-serif;

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

    letter-spacing: -1px;

    color: var(--navy);
}


.brand-subtitle {
    margin-top: 5px;

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

    letter-spacing: 1.5px;

    color: var(--muted);
    text-transform: uppercase;
}


.main-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}


.main-nav > a {
    font-size: 14px;
    font-weight: 600;

    color: #475569;

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


.main-nav > a:hover {
    color: var(--blue);
}


.main-nav .nav-cta {
    display: inline-flex;

    align-items: center;
    gap: 10px;

    padding: 12px 20px;

    border-radius: 999px;

    color: white;
    background: var(--blue);

    box-shadow:
        0 8px 24px rgba(37, 99, 235, .20);
}


.main-nav .nav-cta:hover {
    color: white;

    background: var(--blue-dark);

    transform: translateY(-1px);
}


.mobile-menu-button {
    display: none;

    width: 42px;
    height: 42px;

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

    background: white;

    cursor: pointer;
}


.mobile-menu-button span {
    display: block;

    width: 19px;
    height: 2px;

    margin: 4px auto;

    background: var(--navy);
}


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

.hero {
    position: relative;

    min-height: 780px;

    padding-top: 78px;

    overflow: hidden;

    background:
        linear-gradient(
            120deg,
            #ffffff 0%,
            #f8fbff 48%,
            #eef6ff 100%
        );
}


.hero-background {
    position: absolute;

    width: 800px;
    height: 800px;

    right: -220px;
    top: 50px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(37, 99, 235, .13),
            rgba(37, 99, 235, 0) 68%
        );
}


.hero-grid {
    position: relative;

    min-height: 702px;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(480px, .9fr);

    align-items: center;

    gap: 40px;
}


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

.hero-content {
    position: relative;

    z-index: 5;

    padding-top: 35px;
}


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

    margin-bottom: 20px;

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

    letter-spacing: 3px;

    color: #6B8ED8;
}


.eyebrow span {
    color: var(--blue);
}


.hero h1 {
    max-width: 680px;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: clamp(
        48px,
        5vw,
        76px
    );

    line-height: 1.04;

    letter-spacing: -3.5px;

    color: var(--navy);

    font-weight: 800;
}


.hero h1 span,
.hero h1 strong {
    display: block;
}


.hero h1 strong {
    color: var(--blue);
}


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

    margin-top: 28px;

    font-size: 18px;

    line-height: 1.75;

    color: var(--muted);
}


.hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 14px;

    margin-top: 32px;
}


.btn {
    display: inline-flex;

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

    gap: 12px;

    min-height: 54px;

    padding: 0 27px;

    border-radius: 999px;

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

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


.btn span {
    font-size: 20px;
    line-height: 1;
}


.btn-primary {
    color: white;
    background: var(--blue);

    box-shadow:
        0 12px 28px rgba(37, 99, 235, .23);
}


.btn-primary:hover {
    background: var(--blue-dark);

    transform: translateY(-2px);

    box-shadow:
        0 16px 32px rgba(37, 99, 235, .27);
}


.btn-secondary {
    color: var(--blue);

    background: white;

    border: 1.5px solid #93B4F4;
}


.btn-secondary:hover {
    background: var(--blue-soft);

    transform: translateY(-2px);
}


.hero-highlights {
    display: flex;

    gap: 28px;

    margin-top: 42px;
}


.hero-highlight {
    display: flex;

    align-items: center;

    gap: 11px;
}


.highlight-icon {
    width: 38px;
    height: 38px;

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

    border-radius: 50%;

    color: var(--blue);

    background: var(--blue-soft);

    font-size: 17px;
}


.hero-highlight strong {
    display: block;

    font-size: 14px;
}


.hero-highlight span {
    display: block;

    margin-top: 1px;

    font-size: 11px;

    color: #94A3B8;
}


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

.hero-visual {
    position: relative;

    width: 100%;
    height: 610px;

    margin-top: 25px;
}


.visual-glow {
    position: absolute;

    width: 510px;
    height: 510px;

    left: 50%;
    top: 50%;

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

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(37, 99, 235, .15),
            rgba(37, 99, 235, 0) 67%
        );
}


.visual-orbit {
    position: absolute;

    left: 50%;
    top: 50%;

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

    border: 1px dashed rgba(37, 99, 235, .20);

    border-radius: 50%;
}


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


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


/* Nodes */

.business-node,
.platform-node,
.api-node,
.data-node {
    position: absolute;

    z-index: 5;

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

    border: 1px solid rgba(148, 163, 184, .20);

    box-shadow:
        0 18px 45px rgba(15, 23, 42, .10);

    backdrop-filter: blur(10px);
}


.business-node {
    left: 50%;
    top: 4%;

    transform: translateX(-50%);

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 16px 22px;

    min-width: 210px;

    border-radius: 18px;
}


.node-icon {
    width: 42px;
    height: 42px;

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

    border-radius: 12px;

    color: white;

    background:
        linear-gradient(
            135deg,
            #3B82F6,
            #1D4ED8
        );

    font-size: 20px;
}


.business-node strong,
.platform-node strong,
.api-node strong,
.data-node strong {
    display: block;

    font-size: 12px;

    letter-spacing: .5px;

    color: var(--navy);
}


.business-node span,
.platform-node span,
.api-node span,
.data-node span {
    display: block;

    margin-top: 2px;

    font-size: 10px;

    color: var(--muted);
}


.platform-node {
    width: 145px;

    padding: 15px;

    border-radius: 17px;

    text-align: center;
}


.web-node {
    left: 4%;
    top: 39%;
}


.mobile-node {
    right: 3%;
    top: 39%;
}


.platform-icon {
    width: 42px;
    height: 42px;

    margin: 0 auto 9px;

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

    border-radius: 12px;

    color: white;

    background: var(--blue);

    font-size: 20px;
}


.api-node {
    left: 50%;
    top: 47%;

    transform: translateX(-50%);

    width: 115px;

    padding: 14px;

    text-align: center;

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            #0B1736,
            #143D8F
        );

    border: none;

    box-shadow:
        0 20px 45px rgba(11, 23, 54, .25);
}


.api-node strong {
    color: white;
}


.api-node span {
    color: #BFDBFE;
}


.api-icon {
    display: inline-flex;

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

    width: 48px;
    height: 48px;

    margin-bottom: 8px;

    border-radius: 12px;

    color: #60A5FA;

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

    font-size: 13px;

    font-weight: 800;
}


.data-node {
    left: 50%;
    bottom: 4%;

    transform: translateX(-50%);

    width: 165px;

    padding: 15px;

    text-align: center;

    border-radius: 17px;
}


.data-icon {
    width: 42px;
    height: 42px;

    margin: 0 auto 8px;

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

    border-radius: 50%;

    color: white;

    background: var(--blue);

    font-size: 20px;
}


/* Connections */

.connection {
    position: absolute;

    z-index: 1;

    height: 2px;

    transform-origin: left center;

    background:
        linear-gradient(
            90deg,
            rgba(37, 99, 235, .08),
            rgba(37, 99, 235, .70),
            rgba(37, 99, 235, .08)
        );
}


.connection-one {
    width: 150px;

    left: 33%;
    top: 31%;

    transform:
        rotate(65deg);
}


.connection-two {
    width: 150px;

    left: 59%;
    top: 31%;

    transform:
        rotate(115deg);
}


.connection-three {
    width: 105px;

    left: 50%;
    top: 57%;

    transform:
        rotate(90deg);
}


.connection-four {
    width: 120px;

    left: 42%;
    top: 72%;

    transform:
        rotate(55deg);
}


/* =========================
   PLACEHOLDER
========================= */

.placeholder-section {
    min-height: 220px;

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

    background: var(--section);
}


.placeholder-section p {
    color: #94A3B8;

    font-size: 13px;
}


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

@media (max-width: 1050px) {

    .main-nav {
        gap: 20px;
    }

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

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

    .hero-visual {
        height: 520px;
    }

}


@media (max-width: 820px) {

    .main-nav {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }

    .hero {
        min-height: auto;

        padding-bottom: 70px;
    }

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

        padding-top: 55px;
    }

    .hero-content {
        text-align: center;

        padding-top: 20px;
    }

    .eyebrow {
        justify-content: center;
    }

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

        letter-spacing: -2.5px;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;

        font-size: 16px;
    }

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

    .hero-highlights {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-visual {
        max-width: 620px;

        margin: 0 auto;

        height: 520px;
    }

}


@media (max-width: 560px) {

    .container {
        width: min(
            calc(100% - 32px),
            var(--container)
        );
    }

    .nav-container {
        height: 70px;
    }

    .brand-name {
        font-size: 22px;
    }

    .hero {
        padding-top: 70px;
    }

    .hero-grid {
        padding-top: 35px;
    }

    .eyebrow {
        font-size: 9px;
        letter-spacing: 2px;
    }

    .hero h1 {
        font-size: 42px;

        letter-spacing: -2px;
    }

    .hero-description {
        font-size: 15px;
        line-height: 1.7;
    }

    .btn {
        width: 100%;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-highlights {
        display: grid;

        grid-template-columns: 1fr;

        width: fit-content;

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

        text-align: left;
    }

    .hero-visual {
        height: 440px;

        transform: scale(.85);

        transform-origin: top center;

        margin-bottom: -60px;
    }

    .business-node {
        top: 0;
    }

    .web-node {
        left: 0;
    }

    .mobile-node {
        right: 0;
    }

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

.about-section {
    position: relative;

    padding: 120px 0 115px;

    background: #FFFFFF;
}


.about-intro {
    position: relative;
}


.about-label {
    margin-bottom: 32px;

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

    letter-spacing: 3px;

    color: var(--blue);
}


.about-grid {
    display: grid;

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

    gap: 90px;

    align-items: start;
}


.about-heading h2 {
    max-width: 580px;

    margin: 0;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: clamp(
        38px,
        4vw,
        58px
    );

    line-height: 1.08;

    letter-spacing: -2.5px;

    color: var(--navy);

    font-weight: 800;
}


.about-heading h2 span {
    display: block;

    color: var(--blue);
}


.about-copy {
    max-width: 570px;

    padding-top: 5px;
}


.about-copy p {
    margin: 0;

    font-size: 16px;

    line-height: 1.8;

    color: var(--muted);
}


.about-copy .about-lead {
    margin-bottom: 24px;

    font-size: 20px;

    line-height: 1.7;

    color: #334155;

    font-weight: 500;
}


/* VALUES */

.about-values {
    display: grid;

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

    gap: 24px;

    margin-top: 85px;

    padding-top: 42px;

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


.value-card {
    display: flex;

    gap: 22px;

    padding: 8px 10px;
}


.value-number {
    flex-shrink: 0;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 13px;

    font-weight: 800;

    color: var(--blue);
}


.value-content h3 {
    margin: 0 0 8px;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 17px;

    font-weight: 700;

    color: var(--navy);
}


.value-content p {
    max-width: 250px;

    margin: 0;

    font-size: 13px;

    line-height: 1.7;

    color: var(--muted);
}


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

@media (max-width: 820px) {

    .about-section {
        padding: 90px 0;
    }

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

        gap: 35px;
    }

    .about-copy {
        max-width: 700px;
    }

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

        gap: 30px;

        margin-top: 60px;
    }

    .value-content p {
        max-width: 500px;
    }

}


@media (max-width: 560px) {

    .about-section {
        padding: 75px 0;
    }

    .about-label {
        margin-bottom: 24px;
    }

    .about-heading h2 {
        font-size: 38px;

        letter-spacing: -1.8px;
    }

    .about-copy .about-lead {
        font-size: 18px;
    }

    .about-copy p {
        font-size: 15px;
    }

    .about-values {
        margin-top: 50px;

        padding-top: 35px;
    }

}
/* =========================
   SOLUTIONS
========================= */

.solutions-section {
    position: relative;

    padding: 120px 0 125px;

    background: var(--section);

    overflow: hidden;
}


.solutions-section::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    top: -250px;
    right: -180px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(37, 99, 235, .08),
            rgba(37, 99, 235, 0) 70%
        );

    pointer-events: none;
}


.solutions-header {
    position: relative;

    display: grid;

    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(300px, .7fr);

    gap: 80px;

    align-items: end;

    margin-bottom: 58px;
}


.section-label {
    margin-bottom: 24px;

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

    letter-spacing: 3px;

    color: var(--blue);
}


.solutions-header h2 {
    max-width: 800px;

    margin: 0;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: clamp(
        38px,
        3.7vw,
        52px
    );

    line-height: 1.08;

    letter-spacing: -2.5px;

    color: var(--navy);

    font-weight: 800;
}


.solutions-header h2 span {
    display: block;

    color: var(--blue);
}


.solutions-header > p {
    max-width: 470px;

    margin: 0;

    font-size: 16px;

    line-height: 1.8;

    color: var(--muted);
}


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

.solutions-grid {
    position: relative;

    display: grid;

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

    gap: 20px;
}


.solution-card {
    position: relative;

    min-height: 350px;

    display: flex;

    flex-direction: column;

    padding: 34px;

    border-radius: 22px;

    background: white;

    border: 1px solid #E2E8F0;

    box-shadow:
        0 8px 30px rgba(15, 23, 42, .035);

    overflow: hidden;

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


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

    border-color: #C7D7F5;

    box-shadow:
        0 20px 45px rgba(15, 23, 42, .08);
}


.solution-large {
    min-height: 340px;
}


.solution-wide {
    grid-column: 1 / -1;

    min-height: 270px;

    flex-direction: row;

    align-items: center;

    gap: 35px;
}


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

.solution-icon {
    width: 52px;
    height: 52px;

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

    margin-bottom: 32px;

    border-radius: 15px;

    color: white;

    background:
        linear-gradient(
            135deg,
            #3B82F6,
            #1D4ED8
        );

    box-shadow:
        0 10px 24px rgba(37, 99, 235, .18);

    font-size: 22px;
}


.solution-wide .solution-icon {
    flex-shrink: 0;

    margin-bottom: 0;
}


.solution-content {
    flex: 1;
}


.solution-number {
    margin-bottom: 8px;

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

    letter-spacing: 2px;

    color: #94A3B8;
}


.solution-card h3 {
    margin: 0 0 14px;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 23px;

    line-height: 1.25;

    letter-spacing: -.5px;

    color: var(--navy);

    font-weight: 700;
}


.solution-card p {
    max-width: 520px;

    margin: 0;

    font-size: 14px;

    line-height: 1.75;

    color: var(--muted);
}


/* =========================
   TAGS
========================= */

.solution-tags {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-top: 25px;
}


.solution-tags span {
    display: inline-flex;

    align-items: center;

    min-height: 28px;

    padding: 0 11px;

    border-radius: 999px;

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

    color: #49617F;

    background: #F1F5F9;

    border: 1px solid #E2E8F0;
}


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

.solution-arrow {
    position: absolute;

    right: 28px;
    bottom: 25px;

    width: 38px;
    height: 38px;

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

    border-radius: 50%;

    color: var(--blue);

    background: var(--blue-soft);

    font-size: 19px;

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


.solution-card:hover .solution-arrow {
    transform: translateX(4px);

    background: #DBEAFE;
}


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

@media (max-width: 900px) {

    .solutions-section {
        padding: 95px 0;
    }

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

        gap: 25px;
    }

    .solution-wide {
        flex-direction: column;

        align-items: flex-start;

        min-height: 350px;
    }

    .solution-wide .solution-icon {
        margin-bottom: 28px;
    }

}


@media (max-width: 680px) {

    .solutions-section {
        padding: 80px 0;
    }

    .solutions-header h2 {
        font-size: 38px;

        letter-spacing: -1.8px;
    }

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

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

    .solution-card,
    .solution-large {
        min-height: 320px;

        padding: 28px;
    }

    .solution-wide {
        grid-column: auto;

        min-height: 350px;
    }

}
/* =========================
   OUR WORK
========================= */

.work-section {
    position: relative;

    padding: 125px 0;

    background: #FFFFFF;
}


.work-header {
    display: grid;

    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(300px, .7fr);

    gap: 80px;

    align-items: end;

    margin-bottom: 60px;
}


.work-header h2 {
    max-width: 700px;

    margin: 0;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: clamp(
        38px,
        4vw,
        55px
    );

    line-height: 1.08;

    letter-spacing: -2.5px;

    color: var(--navy);

    font-weight: 800;
}


.work-header h2 span {
    display: block;

    color: var(--blue);
}


.work-header > p {
    max-width: 470px;

    margin: 0;

    font-size: 16px;

    line-height: 1.8;

    color: var(--muted);
}


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

.featured-project {
    display: grid;

    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(360px, .8fr);

    min-height: 600px;

    overflow: hidden;

    border-radius: 28px;

    background: var(--navy);

    box-shadow:
        0 25px 70px rgba(15, 23, 42, .13);
}


.project-visual {
    position: relative;

    min-height: 600px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 60% 45%,
            rgba(37, 99, 235, .38),
            transparent 48%
        ),
        linear-gradient(
            145deg,
            #0F1E46,
            #071127
        );
}


/* Browser mockup */

.project-browser {
    position: absolute;

    width: 78%;

    left: 8%;
    top: 14%;

    border-radius: 14px;

    overflow: hidden;

    background: #FFFFFF;

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

    transform:
        perspective(1200px)
        rotateY(-5deg)
        rotateX(2deg);
}


.browser-bar {
    height: 38px;

    display: flex;
    align-items: center;

    gap: 20px;

    padding: 0 15px;

    background: #F1F5F9;

    border-bottom: 1px solid #E2E8F0;
}


.browser-dots {
    display: flex;

    gap: 5px;
}


.browser-dots span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #CBD5E1;
}


.browser-address {
    flex: 1;

    height: 20px;

    display: flex;
    align-items: center;

    padding-left: 12px;

    border-radius: 5px;

    background: #FFFFFF;

    color: #94A3B8;

    font-size: 7px;
}


.browser-content {
    display: flex;

    height: 355px;
}


.mock-sidebar {
    width: 105px;

    padding: 20px 10px;

    background: #0B1736;
}


.mock-logo {
    margin-bottom: 24px;

    padding-left: 7px;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;

    color: #FFFFFF;
}


.mock-menu {
    margin-bottom: 13px;

    padding: 7px;

    border-radius: 5px;

    color: #94A3B8;

    font-size: 6px;
}


.mock-menu.active {
    color: #FFFFFF;

    background: #2563EB;
}


.mock-dashboard {
    flex: 1;

    padding: 22px;

    background: #F8FAFC;
}


.mock-title {
    margin-bottom: 20px;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 13px;

    font-weight: 700;

    color: #0B1736;
}


.mock-stats {
    display: grid;

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

    gap: 10px;
}


.mock-stats > div {
    padding: 13px;

    border-radius: 7px;

    background: white;

    border: 1px solid #E2E8F0;
}


.mock-stats small {
    display: block;

    margin-bottom: 4px;

    font-size: 6px;

    color: #94A3B8;
}


.mock-stats strong {
    font-size: 11px;

    color: #0B1736;
}


.mock-chart {
    position: relative;

    height: 170px;

    margin-top: 14px;

    padding: 15px;

    overflow: hidden;

    border-radius: 8px;

    background: #FFFFFF;

    border: 1px solid #E2E8F0;
}


.chart-bars {
    position: absolute;

    left: 18px;
    right: 18px;
    bottom: 18px;

    height: 95px;

    display: flex;

    align-items: end;

    justify-content: space-around;

    gap: 8px;
}


.chart-bars span {
    flex: 1;

    max-width: 20px;

    border-radius: 4px 4px 0 0;

    background:
        linear-gradient(
            to top,
            #2563EB,
            #60A5FA
        );
}


.chart-bars span:nth-child(1) {
    height: 40%;
}

.chart-bars span:nth-child(2) {
    height: 60%;
}

.chart-bars span:nth-child(3) {
    height: 45%;
}

.chart-bars span:nth-child(4) {
    height: 72%;
}

.chart-bars span:nth-child(5) {
    height: 55%;
}

.chart-bars span:nth-child(6) {
    height: 82%;
}

.chart-bars span:nth-child(7) {
    height: 70%;
}


/* Mobile mockup */

.project-mobile {
    position: absolute;

    width: 155px;
    height: 305px;

    right: 7%;
    bottom: 7%;

    padding: 8px;

    border-radius: 25px;

    background: #111827;

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

    transform:
        rotate(4deg);
}


.mobile-notch {
    position: absolute;

    z-index: 3;

    width: 52px;
    height: 12px;

    top: 8px;
    left: 50%;

    transform: translateX(-50%);

    border-radius: 0 0 10px 10px;

    background: #111827;
}


.mobile-screen {
    height: 100%;

    padding: 32px 13px 15px;

    border-radius: 19px;

    background:
        linear-gradient(
            160deg,
            #F8FAFC,
            #E0ECFF
        );
}


.mobile-brand {
    font-size: 8px;

    font-weight: 800;

    color: #0B1736;
}


.mobile-greeting {
    margin-top: 22px;

    font-size: 7px;

    color: #64748B;
}


.mobile-card {
    margin-top: 12px;

    padding: 12px;

    border-radius: 10px;

    color: #FFFFFF;

    background:
        linear-gradient(
            135deg,
            #2563EB,
            #143D8F
        );
}


.mobile-card small {
    display: block;

    margin-bottom: 6px;

    font-size: 6px;

    opacity: .75;
}


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


.mobile-items {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 6px;

    margin-top: 10px;
}


.mobile-items span {
    padding: 9px 5px;

    border-radius: 7px;

    text-align: center;

    font-size: 5px;

    color: #334155;

    background: #FFFFFF;
}


/* Project info */

.project-info {
    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 65px 60px;

    color: white;
}


.project-topline {
    display: flex;

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

    gap: 20px;

    margin-bottom: 25px;
}


.project-label {
    font-size: 9px;
    font-weight: 800;

    letter-spacing: 2px;

    color: #60A5FA;
}


.project-year {
    font-size: 10px;

    color: #64748B;
}


.project-info h3 {
    margin: 0;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 46px;

    line-height: 1;

    letter-spacing: -2px;

    font-weight: 800;
}


.project-info h4 {
    max-width: 380px;

    margin: 17px 0 22px;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 22px;

    line-height: 1.35;

    color: #FFFFFF;
}


.project-info > p {
    max-width: 430px;

    margin: 0;

    font-size: 14px;

    line-height: 1.8;

    color: #AFC1DF;
}


.project-tags {
    display: flex;

    flex-wrap: wrap;

    gap: 7px;

    margin-top: 28px;
}


.project-tags span {
    padding: 7px 11px;

    border-radius: 999px;

    font-size: 9px;

    color: #BFDBFE;

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

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


.project-link {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    width: fit-content;

    margin-top: 35px;

    padding-bottom: 5px;

    border-bottom: 1px solid rgba(96,165,250,.5);

    font-size: 13px;

    font-weight: 700;

    color: #FFFFFF;
}


.project-link span {
    color: #60A5FA;

    font-size: 18px;

    transition:
        transform .25s ease;
}


.project-link:hover span {
    transform: translateX(4px);
}


/* =========================
   SECOND PROJECT
========================= */

.secondary-project {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    margin-top: 22px;

    overflow: hidden;

    border-radius: 25px;

    background: #F8FAFC;

    border: 1px solid #E2E8F0;
}


.secondary-project-visual {
    min-height: 390px;

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

    padding: 45px;

    background:
        linear-gradient(
            145deg,
            #EAF2FF,
            #F8FAFC
        );
}


.erp-window {
    width: 92%;

    overflow: hidden;

    border-radius: 13px;

    background: white;

    box-shadow:
        0 22px 50px rgba(15,23,42,.12);
}


.erp-window-top {
    height: 34px;

    display: flex;
    align-items: center;

    gap: 15px;

    padding: 0 13px;

    color: #64748B;

    font-size: 7px;

    background: #F1F5F9;

    border-bottom: 1px solid #E2E8F0;
}


.erp-layout {
    display: flex;

    height: 245px;
}


.erp-sidebar {
    width: 70px;

    padding: 18px 10px;

    background: #0B1736;
}


.erp-logo {
    margin-bottom: 23px;

    color: white;

    font-size: 8px;

    font-weight: 800;
}


.erp-sidebar div:not(.erp-logo) {
    height: 5px;

    margin-bottom: 13px;

    border-radius: 3px;

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


.erp-main {
    flex: 1;

    padding: 20px;

    background: #F8FAFC;
}


.erp-heading {
    margin-bottom: 15px;

    font-size: 11px;

    font-weight: 700;

    color: #0B1736;
}


.erp-summary {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 8px;
}


.erp-summary div {
    padding: 11px;

    border-radius: 6px;

    background: white;

    border: 1px solid #E2E8F0;
}


.erp-summary small {
    display: block;

    margin-bottom: 4px;

    font-size: 5px;

    color: #94A3B8;
}


.erp-summary strong {
    font-size: 9px;

    color: #0B1736;
}


.erp-table {
    display: grid;

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

    gap: 5px;

    margin-top: 13px;
}


.erp-table span {
    height: 7px;

    border-radius: 2px;

    background: #E2E8F0;
}


.secondary-project-info {
    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 55px;
}


.secondary-project-info h3 {
    margin: 0 0 15px;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 32px;

    letter-spacing: -1px;

    color: var(--navy);
}


.secondary-project-info > p {
    max-width: 500px;

    margin: 0;

    font-size: 14px;

    line-height: 1.8;

    color: var(--muted);
}


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

@media (max-width: 950px) {

    .work-section {
        padding: 95px 0;
    }

    .work-header {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .featured-project {
        grid-template-columns: 1fr;
    }

    .project-visual {
        min-height: 500px;
    }

    .project-info {
        padding: 50px 40px;
    }

    .secondary-project {
        grid-template-columns: 1fr;
    }

    .secondary-project-visual {
        min-height: 330px;
    }

}


@media (max-width: 680px) {

    .work-section {
        padding: 80px 0;
    }

    .work-header h2 {
        font-size: 38px;

        letter-spacing: -1.8px;
    }

    .featured-project {
        border-radius: 20px;
    }

    .project-visual {
        min-height: 430px;
    }

    .project-browser {
        width: 88%;

        left: 4%;
        top: 12%;
    }

    .project-mobile {
        width: 125px;
        height: 245px;

        right: 3%;
        bottom: 5%;
    }

    .project-info {
        padding: 40px 28px;
    }

    .project-info h3 {
        font-size: 38px;
    }

    .project-info h4 {
        font-size: 19px;
    }

    .secondary-project {
        border-radius: 20px;
    }

    .secondary-project-visual {
        min-height: 280px;

        padding: 25px;
    }

    .secondary-project-info {
        padding: 35px 28px;
    }

}
/* =========================
   SECONDARY PROJECT POLISH
========================= */

.secondary-project-info .project-label {
    color: var(--blue);
}

.secondary-project-info .project-year {
    color: #64748B;
}

.secondary-project-info .project-tags span {
    color: #49617F;

    background: #FFFFFF;

    border-color: #E2E8F0;
}

.secondary-project-info .project-link {
    color: var(--blue);

    border-bottom-color: #93B4F4;
}

.secondary-project-info .project-link span {
    color: var(--blue);
}
/* =========================
   HOW WE WORK
========================= */

.process-section {
    position: relative;

    padding: 125px 0 130px;

    background: var(--section);

    overflow: hidden;
}


.process-section::after {
    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    right: -260px;
    bottom: -280px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(37, 99, 235, .08),
            rgba(37, 99, 235, 0) 70%
        );

    pointer-events: none;
}


.process-header {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(300px, .7fr);

    gap: 80px;

    align-items: end;

    margin-bottom: 70px;
}


.process-header h2 {
    max-width: 650px;

    margin: 0;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: clamp(
        38px,
        4vw,
        55px
    );

    line-height: 1.08;

    letter-spacing: -2.5px;

    color: var(--navy);

    font-weight: 800;
}


.process-header h2 span {
    display: block;

    color: var(--blue);
}


.process-header > p {
    max-width: 470px;

    margin: 0;

    font-size: 16px;

    line-height: 1.8;

    color: var(--muted);
}


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

.process-track {
    position: relative;

    z-index: 2;

    display: grid;

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

    gap: 0;
}


.process-step {
    position: relative;

    padding-right: 40px;
}


.process-top {
    height: 30px;

    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 28px;
}


.process-number {
    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1px;

    color: var(--blue);
}


.process-line {
    flex: 1;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            #CBD5E1,
            rgba(203, 213, 225, 0)
        );
}


.process-icon {
    width: 56px;
    height: 56px;

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

    margin-bottom: 25px;

    border-radius: 16px;

    color: white;

    background:
        linear-gradient(
            135deg,
            #3B82F6,
            #1D4ED8
        );

    box-shadow:
        0 12px 28px rgba(37, 99, 235, .18);

    font-size: 21px;

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


.process-step:hover .process-icon {
    transform: translateY(-4px);

    box-shadow:
        0 17px 34px rgba(37, 99, 235, .24);
}


.process-step h3 {
    margin: 0 0 13px;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 23px;

    line-height: 1.25;

    letter-spacing: -.5px;

    color: var(--navy);

    font-weight: 700;
}


.process-step p {
    max-width: 250px;

    margin: 0;

    font-size: 14px;

    line-height: 1.75;

    color: var(--muted);
}


.process-keyword {
    display: inline-flex;

    align-items: center;

    margin-top: 25px;

    padding: 7px 12px;

    border-radius: 999px;

    color: #49617F;

    background: #FFFFFF;

    border: 1px solid #E2E8F0;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .4px;
}


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

@media (max-width: 900px) {

    .process-section {
        padding: 95px 0;
    }

    .process-header {
        grid-template-columns: 1fr;

        gap: 25px;

        margin-bottom: 55px;
    }

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

        row-gap: 55px;
    }

    .process-step {
        padding-right: 30px;
    }

    .process-step:nth-child(2) .process-line {
        display: none;
    }

}


@media (max-width: 600px) {

    .process-section {
        padding: 80px 0;
    }

    .process-header h2 {
        font-size: 38px;

        letter-spacing: -1.8px;
    }

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

    .process-track {
        grid-template-columns: 1fr;

        row-gap: 45px;
    }

    .process-step {
        padding-right: 0;
    }

    .process-line {
        display: none;
    }

    .process-step p {
        max-width: 500px;
    }

}
/* =========================
   WHY BRIWENA
========================= */

.why-section {
    position: relative;

    padding: 125px 0 130px;

    background: #FFFFFF;

    overflow: hidden;
}


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

    position: absolute;

    width: 600px;
    height: 600px;

    left: -350px;
    top: 30%;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(37, 99, 235, .055),
            rgba(37, 99, 235, 0) 70%
        );

    pointer-events: none;
}


.why-header {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(300px, .7fr);

    gap: 80px;

    align-items: end;

    margin-bottom: 65px;
}


.why-header h2 {
    max-width: 700px;

    margin: 0;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: clamp(
        38px,
        4vw,
        55px
    );

    line-height: 1.08;

    letter-spacing: -2.5px;

    color: var(--navy);

    font-weight: 800;
}


.why-header h2 span {
    display: block;

    color: var(--blue);
}


.why-header > p {
    max-width: 470px;

    margin: 0;

    font-size: 16px;

    line-height: 1.8;

    color: var(--muted);
}


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

.why-grid {
    position: relative;

    z-index: 2;

    display: grid;

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

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

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


.why-card {
    position: relative;

    min-height: 330px;

    padding: 35px 30px 40px;

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

    transition:
        background .3s ease;
}


.why-card:first-child {
    padding-left: 0;
}


.why-card:last-child {
    padding-right: 0;

    border-right: none;
}


.why-card:hover {
    background: #F8FAFC;
}


.why-number {
    margin-bottom: 30px;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

    color: var(--blue);
}


.why-icon {
    width: 48px;
    height: 48px;

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

    margin-bottom: 25px;

    border-radius: 14px;

    color: white;

    background:
        linear-gradient(
            135deg,
            #3B82F6,
            #1D4ED8
        );

    box-shadow:
        0 10px 25px rgba(37, 99, 235, .16);

    font-size: 18px;
}


.why-card h3 {
    margin: 0 0 13px;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 19px;

    line-height: 1.3;

    color: var(--navy);

    font-weight: 700;
}


.why-card p {
    max-width: 235px;

    margin: 0;

    font-size: 13px;

    line-height: 1.75;

    color: var(--muted);
}


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

.why-statement {
    position: relative;

    z-index: 2;

    display: flex;

    align-items: flex-start;

    gap: 25px;

    max-width: 850px;

    margin: 75px auto 0;

    padding: 0 20px;
}


.why-statement-mark {
    flex-shrink: 0;

    font-family: Georgia, serif;

    font-size: 70px;

    line-height: .7;

    color: var(--blue);
}


.why-statement p {
    margin: 0 0 8px;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 22px;

    line-height: 1.5;

    letter-spacing: -.4px;

    color: var(--navy);

    font-weight: 600;
}


.why-statement strong {
    font-size: 13px;

    color: var(--muted);

    font-weight: 500;
}


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

@media (max-width: 950px) {

    .why-section {
        padding: 95px 0;
    }

    .why-header {
        grid-template-columns: 1fr;

        gap: 25px;

        margin-bottom: 55px;
    }

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

    .why-card {
        min-height: 300px;

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

    .why-card:nth-child(2) {
        border-right: none;
    }

    .why-card:nth-child(3),
    .why-card:nth-child(4) {
        border-bottom: none;
    }

    .why-card:nth-child(4) {
        border-right: none;
    }

    .why-card:first-child {
        padding-left: 30px;
    }

    .why-card:last-child {
        padding-right: 30px;
    }

}


@media (max-width: 600px) {

    .why-section {
        padding: 80px 0;
    }

    .why-header h2 {
        font-size: 38px;

        letter-spacing: -1.8px;
    }

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

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

    .why-card,
    .why-card:first-child,
    .why-card:last-child {
        min-height: auto;

        padding: 30px 0;

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

    .why-card:last-child {
        border-bottom: none;
    }

    .why-card p {
        max-width: 500px;
    }

    .why-statement {
        gap: 15px;

        margin-top: 55px;

        padding: 0;
    }

    .why-statement-mark {
        font-size: 52px;
    }

    .why-statement p {
        font-size: 18px;
    }

}
