/* =========================================================
   SOFTAXES TECHNOLOGY LLC
   PREMIUM DIGITAL EXPERIENCE
   STYLE SHEET
========================================================= */


/* =========================================================
   01. ROOT / VARIABLES
========================================================= */

:root {

    --orange: #f1931d;
    --orange-dark: #d97d0b;

    --black: #111111;
    --black-soft: #171717;
    --black-light: #222222;

    --white: #ffffff;
    --off-white: #f8f8f6;

    --gray: #b2b2b2;
    --gray-dark: #696969;
    --gray-light: #e7e7e3;

    --border: rgba(17, 17, 17, 0.10);
    --border-light: rgba(255, 255, 255, 0.12);

    --container: 1380px;

    --font-heading: "Manrope", sans-serif;
    --font-body: "DM Sans", sans-serif;

    --transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);

}


/* =========================================================
   02. RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}


body {

    font-family: var(--font-body);

    background: var(--off-white);

    color: var(--black);

    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;

}


body.menu-open {
    overflow: hidden;
}


a {
    color: inherit;
    text-decoration: none;
}


button,
input,
textarea,
select {
    font: inherit;
}


button {
    border: 0;
    cursor: pointer;
}


img {
    max-width: 100%;
    display: block;
}


ul {
    list-style: none;
}


/* =========================================================
   03. CONTAINER
========================================================= */

.container {

    width: min(
        calc(100% - 80px),
        var(--container)
    );

    margin-inline: auto;

}


/* =========================================================
   04. CURSOR
========================================================= */

.cursor-dot,
.cursor-outline {

    position: fixed;

    pointer-events: none;

    z-index: 99999;

    border-radius: 50%;

    transform: translate(-50%, -50%);

}


.cursor-dot {

    width: 7px;
    height: 7px;

    background: var(--orange);

}


.cursor-outline {

    width: 34px;
    height: 34px;

    border: 1px solid rgba(241, 147, 29, 0.55);

    transition:
        width .25s ease,
        height .25s ease,
        background .25s ease;

}


body.cursor-hover .cursor-outline {

    width: 60px;
    height: 60px;

    background: rgba(241, 147, 29, 0.08);

}


/* =========================================================
   05. PAGE LOADER
========================================================= */

.page-loader {

    position: fixed;

    inset: 0;

    z-index: 100000;

    background: var(--black);

    display: flex;

    align-items: center;

    justify-content: center;

    transition:
        opacity .8s ease,
        visibility .8s ease;

}


.page-loader.loaded {

    opacity: 0;

    visibility: hidden;

}


.loader-inner {

    width: min(280px, 80vw);

    text-align: center;

}


.loader-logo {

    width: 58px;
    height: 58px;

    margin: 0 auto 25px;

    display: grid;

    place-items: center;

    border: 1px solid rgba(241, 147, 29, .5);

    color: var(--orange);

    font-family: var(--font-heading);

    font-size: 25px;

    font-weight: 800;

}


.loader-line {

    width: 100%;
    height: 1px;

    background: rgba(255,255,255,.12);

    overflow: hidden;

}


.loader-line span {

    display: block;

    width: 0;
    height: 100%;

    background: var(--orange);

    animation: loaderProgress 1.6s ease forwards;

}


.loader-inner p {

    margin-top: 14px;

    color: var(--gray);

    font-size: 9px;

    letter-spacing: 3px;

}


@keyframes loaderProgress {

    to {
        width: 100%;
    }

}


/* =========================================================
   06. HEADER
========================================================= */

.site-header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    transition:
        background var(--transition),
        border-color var(--transition),
        backdrop-filter var(--transition);

}


.site-header.scrolled {

    background: rgba(17,17,17,.88);

    backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(255,255,255,.08);

}


.header-inner {

    height: 90px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


/* BRAND */

.brand {

    display: inline-flex;

    align-items: center;

    gap: 12px;

}


.brand-symbol {

    width: 38px;
    height: 38px;

    display: grid;

    place-items: center;

    border: 1px solid var(--orange);

    color: var(--orange);

    font-family: var(--font-heading);

    font-weight: 800;

    font-size: 17px;

}


.brand-name {

    display: flex;

    flex-direction: column;

    line-height: 1;

}


.brand-name strong {

    color: var(--white);

    font-family: var(--font-heading);

    font-size: 16px;

    font-weight: 800;

    letter-spacing: 1px;

}


.brand-name small {

    margin-top: 5px;

    color: var(--gray);

    font-size: 7px;

    letter-spacing: 2px;

}


/* DESKTOP NAV */

.desktop-nav {

    display: flex;

    align-items: center;

    gap: 34px;

}


.desktop-nav > a {

    position: relative;

    color: rgba(255,255,255,.65);

    font-size: 13px;

    font-weight: 500;

    transition: color .3s ease;

}


.desktop-nav > a:hover,
.desktop-nav > a.active {

    color: var(--white);

}


.desktop-nav > a:not(.nav-cta)::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 1px;

    background: var(--orange);

    transition: width .3s ease;

}


.desktop-nav > a:not(.nav-cta):hover::after,
.desktop-nav > a.active:not(.nav-cta)::after {

    width: 100%;

}


.nav-cta {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 12px 17px;

    border: 1px solid rgba(241,147,29,.45);

    color: var(--white) !important;

    transition:
        background .3s ease,
        border-color .3s ease,
        color .3s ease;

}


.nav-cta i {

    color: var(--orange);

    font-size: 10px;

}


.nav-cta:hover {

    background: var(--orange);

    border-color: var(--orange);

}


.nav-cta:hover i {

    color: var(--black);

}


/* MOBILE TOGGLE */

.mobile-toggle {

    display: none;

    width: 44px;
    height: 44px;

    background: transparent;

    border: 1px solid rgba(255,255,255,.18);

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 6px;

}


.mobile-toggle span {

    width: 17px;
    height: 1px;

    background: white;

    transition: transform .3s ease;

}


.mobile-navigation {

    display: none;

}


/* =========================================================
   07. HERO
========================================================= */

.hero {

    position: relative;

    min-height: 100vh;

    background: var(--black);

    color: var(--white);

    overflow: hidden;

    display: flex;

    align-items: center;

}


.hero-background {

    position: absolute;

    inset: 0;

    pointer-events: none;

}


.hero-grid {

    position: absolute;

    inset: 0;

    opacity: .25;

    background-image:

        linear-gradient(
            rgba(255,255,255,.035) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,.035) 1px,
            transparent 1px
        );

    background-size: 80px 80px;

    mask-image: linear-gradient(
        to right,
        transparent,
        black 30%,
        black 70%,
        transparent
    );

}


.hero-glow {

    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    filter: blur(100px);

    opacity: .08;

}


.glow-one {

    background: var(--orange);

    right: 5%;
    top: 10%;

}


.glow-two {

    background: #ffffff;

    left: 20%;
    bottom: -30%;

    opacity: .035;

}


.hero-container {

    min-height: 100vh;

    display: grid;

    grid-template-columns: 1.05fr .95fr;

    align-items: center;

    gap: 30px;

    padding-top: 100px;

}


.hero-content {

    position: relative;

    z-index: 2;

    padding-bottom: 30px;

}


.hero-kicker {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 30px;

    color: var(--gray);

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 3px;

}


.kicker-line {

    width: 35px;
    height: 1px;

    background: var(--orange);

}


.hero h1 {

    max-width: 800px;

    font-family: var(--font-heading);

    font-size: clamp(
        65px,
        7.1vw,
        118px
    );

    line-height: .91;

    font-weight: 800;

    letter-spacing: -6px;

}


.outline-text {

    color: transparent;

    -webkit-text-stroke: 1px rgba(255,255,255,.65);

}


.orange-text {

    color: var(--orange);

}


.hero-description {

    max-width: 590px;

    margin-top: 38px;

    color: rgba(255,255,255,.58);

    font-size: 16px;

    line-height: 1.8;

}


.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    align-items: center;

    gap: 14px;

    margin-top: 38px;

}


.hero-button {

    min-height: 52px;

    padding: 0 20px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    font-size: 13px;

    font-weight: 600;

    letter-spacing: .4px;

    transition:
        transform .35s ease,
        background .35s ease,
        color .35s ease;

}


.hero-button.primary {

    background: var(--orange);

    color: var(--black);

}


.hero-button.primary:hover {

    transform: translateY(-4px);

    background: #ffa532;

}


.hero-button.secondary {

    border: 1px solid rgba(255,255,255,.18);

    color: rgba(255,255,255,.75);

}


.hero-button.secondary:hover {

    transform: translateY(-4px);

    border-color: var(--orange);

    color: var(--white);

}


.hero-button i {

    font-size: 10px;

}


.hero-meta {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 75px;

    color: rgba(255,255,255,.28);

    font-size: 13px;

    letter-spacing: 2px;

}


.hero-meta i {

    width: 3px;
    height: 3px;

    background: var(--orange);

    border-radius: 50%;

}


/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {

    position: relative;

    width: min(650px, 100%);

    aspect-ratio: 1 / 1;

    justify-self: end;

}


.visual-orbit {

    position: absolute;

    left: 50%;
    top: 50%;

    border: 1px solid rgba(255,255,255,.09);

    border-radius: 50%;

    transform: translate(-50%, -50%);

}


.orbit-one {

    width: 82%;
    height: 82%;

    animation: rotateOrbit 25s linear infinite;

}


.orbit-two {

    width: 62%;
    height: 62%;

    border-color: rgba(241,147,29,.24);

    animation: rotateOrbitReverse 18s linear infinite;

}


.orbit-three {

    width: 42%;
    height: 42%;

    border-style: dashed;

    animation: rotateOrbit 12s linear infinite;

}


.orbit-dot {

    position: absolute;

    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: var(--orange);

    box-shadow:
        0 0 15px var(--orange),
        0 0 40px rgba(241,147,29,.45);

}


.dot-a {

    top: 10%;
    left: 20%;

}


.dot-b {

    right: -4%;
    top: 50%;

}


.dot-c {

    bottom: 0;
    left: 30%;

}


@keyframes rotateOrbit {

    from {
        transform: translate(-50%, -50%) rotate(0);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }

}


@keyframes rotateOrbitReverse {

    from {
        transform: translate(-50%, -50%) rotate(360deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(0);
    }

}


.visual-core {

    position: absolute;

    top: 50%;
    left: 50%;

    width: 220px;
    height: 220px;

    transform: translate(-50%, -50%);

    display: grid;

    place-items: center;

}


.core-ring {

    width: 100%;
    height: 100%;

    padding: 15px;

    border-radius: 50%;

    border: 1px solid rgba(241,147,29,.35);

    box-shadow:
        0 0 70px rgba(241,147,29,.07),
        inset 0 0 60px rgba(241,147,29,.05);

    animation: corePulse 4s ease-in-out infinite;

}


.core-inner {

    width: 100%;
    height: 100%;

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 35% 30%,
            #292929,
            #111111 70%
        );

    display: grid;

    place-items: center;

    border: 1px solid rgba(255,255,255,.08);

}


.core-inner span {

    font-family: var(--font-heading);

    color: var(--orange);

    font-size: 70px;

    font-weight: 800;

}


@keyframes corePulse {

    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.04);
    }

}


/* FLOATING TECH */

.tech-float {

    position: absolute;

    display: flex;

    align-items: center;

    gap: 9px;

    padding: 10px 13px;

    background: rgba(255,255,255,.035);

    border: 1px solid rgba(255,255,255,.10);

    backdrop-filter: blur(12px);

    color: rgba(255,255,255,.7);

    font-size: 13px;

    letter-spacing: 1px;

    animation: floatTech 5s ease-in-out infinite;

}


.tech-float i {

    color: var(--orange);

    font-size: 15px;

}


.tech-php {

    top: 14%;
    right: 8%;

}


.tech-react {

    top: 37%;
    left: 3%;

    animation-delay: -1s;

}


.tech-node {

    bottom: 22%;
    right: 6%;

    animation-delay: -2s;

}


.tech-mobile {

    bottom: 11%;
    left: 13%;

    animation-delay: -3s;

}


@keyframes floatTech {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

}


.visual-caption {

    position: absolute;

    right: 1%;
    bottom: 4%;

    display: flex;

    align-items: flex-start;

    gap: 12px;

    color: rgba(255,255,255,.3);

}


.visual-caption > span {

    color: var(--orange);

    font-size: 10px;

}


.visual-caption p {

    font-size: 8px;

    line-height: 1.5;

    letter-spacing: 2px;

}


/* HERO SCROLL */

.hero-scroll {

    position: absolute;

    bottom: 25px;
    left: 50%;

    transform: translateX(-50%);

    display: flex;

    align-items: center;

    gap: 18px;

    color: rgba(255,255,255,.3);

    font-size: 13px;

    letter-spacing: 3px;

}


.scroll-line {

    width: 65px;
    height: 1px;

    background: rgba(255,255,255,.15);

    overflow: hidden;

}


.scroll-line span {

    display: block;

    width: 35%;

    height: 100%;

    background: var(--orange);

    animation: scrollMove 2s ease-in-out infinite;

}


@keyframes scrollMove {

    0% {
        transform: translateX(-100%);
    }

    50% {
        transform: translateX(200%);
    }

    100% {
        transform: translateX(200%);
    }

}


/* =========================================================
   08. SHARED SECTION STYLES
========================================================= */

.section-light {

    background: var(--off-white);

}


.section-top-row {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding-top: 110px;

}


.section-eyebrow {

    display: flex;

    align-items: center;

    gap: 10px;

    color: var(--gray-dark);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 3px;

}


.section-eyebrow::before {

    content: "";

    width: 25px;
    height: 1px;

    background: var(--orange);

}


.section-eyebrow.light,
.section-eyebrow.light-gray {

    color: rgba(255,255,255,.38);

}


.section-index {

    color: var(--gray);

    font-size: 10px;

    letter-spacing: 2px;

}


/* =========================================================
   09. STATEMENT
========================================================= */

.statement-section {

    position: relative;

    padding: 145px 0;

    background: var(--black);

    color: var(--white);

    overflow: hidden;

}


.statement-grid {

    position: absolute;

    inset: 0;

    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: 100px 100px;

}


.statement-container {

    position: relative;

}


.statement-section h2 {

    max-width: 1100px;

    margin-top: 55px;

    font-family: var(--font-heading);

    font-size: clamp(
        55px,
        7vw,
        110px
    );

    line-height: .98;

    letter-spacing: -5px;

    font-weight: 800;

}


.statement-section h2 span {

    color: var(--orange);

}


.statement-bottom {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    margin-top: 70px;

}


.statement-bottom p {

    max-width: 490px;

    color: rgba(255,255,255,.42);

    font-size: 17px;

    line-height: 1.8;

}


.statement-mark {

    color: var(--orange);

    font-family: var(--font-heading);

    font-size: 80px;

    font-weight: 200;

}


/* =========================================================
   10. ABOUT
========================================================= */

.about-section {

    padding-bottom: 130px;

}


.about-layout {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    padding-top: 100px;

}


.about-title h2 {

    font-family: var(--font-heading);

    font-size: clamp(
        50px,
        6vw,
        88px
    );

    line-height: .98;

    letter-spacing: -4px;

}


.about-title h2 span {

    color: var(--orange);

}


.about-content {

    max-width: 600px;

    padding-top: 8px;

}


.about-content p {

    color: var(--gray-dark);

    font-size: 17px;

    line-height: 1.9;

}


.about-content .about-lead {

    margin-bottom: 25px;

    color: var(--black);

    font-size: 20px;

    line-height: 1.65;

}


.text-link {

    display: inline-flex;

    align-items: center;

    gap: 15px;

    margin-top: 35px;

    padding-bottom: 10px;

    border-bottom: 1px solid var(--black);

      font-size: 13px;

    font-weight: 700;

}


.text-link span {

    width: 27px;
    height: 27px;

    display: grid;

    place-items: center;

    border: 1px solid var(--black);

    border-radius: 50%;

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;

}


.text-link:hover span {

    background: var(--orange);

    border-color: var(--orange);

    transform: translateX(4px);

}


.about-stats {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid var(--border);

    margin-top: 110px;

}


.stat {

    padding: 35px 20px 10px 0;

    border-right: 1px solid var(--border);

}


.stat:not(:first-child) {

    padding-left: 25px;

}


.stat:last-child {

    border-right: 0;

}


.stat strong {

    display: block;

    font-family: var(--font-heading);

    font-size: 52px;

    font-weight: 700;

    letter-spacing: -3px;

}


.stat strong::after {

    content: "+";

    color: var(--orange);

    font-size: 25px;

}


.stat:last-child strong::after {

    content: "%";

}


.stat span {

    display: block;

    margin-top: 7px;

    color: var(--gray-dark);

    font-size: 12px;

    letter-spacing: 1.5px;

}


/* =========================================================
   11. SERVICES
========================================================= */

.services-section {

    background: var(--black);

    color: var(--white);

    padding-bottom: 130px;

}


.dark-row {

    border-color: rgba(255,255,255,.1);

}


.services-intro {

    display: grid;

    grid-template-columns: 1.4fr .6fr;

    gap: 80px;

    align-items: end;

    padding: 100px 0 80px;

}


.services-intro h2 {

    font-family: var(--font-heading);

    font-size: clamp(
        45px,
        6vw,
        85px
    );

    line-height: 1;

    letter-spacing: -4px;

}


.services-intro h2 span {

    color: var(--orange);

}


.services-intro p {
    color: rgba(255,255,255,.42);
    font-size: 16px;
    line-height: 1.8;
    padding-bottom: 5px;
}


/* SERVICE ITEM */

.services-list {

    border-top: 1px solid var(--border-light);

}


.service-item {

    position: relative;

    display: grid;

    grid-template-columns: 70px 60px 1fr 40px;

    align-items: center;

    gap: 25px;

    min-height: 190px;

    padding: 30px 0;

    border-bottom: 1px solid var(--border-light);

    transition:
        padding .5s ease,
        background .5s ease;

}


.service-item::before {

    content: "";

    position: absolute;

    left: -40px;
    right: -40px;

    top: 0;
    bottom: 0;

    background: var(--orange);

    transform: scaleY(0);

    transform-origin: bottom;

    transition: transform .5s cubic-bezier(.22,1,.36,1);

    z-index: 0;

}


.service-item:hover::before {

    transform: scaleY(1);

}


.service-item > * {

    position: relative;

    z-index: 1;

}


.service-number {

    color: rgba(255,255,255,.28);

   font-size: 12px;

}


.service-icon {

    width: 48px;
    height: 48px;

    display: grid;

    place-items: center;

    border: 1px solid rgba(255,255,255,.14);

    color: var(--orange);

    transition:
        background .4s ease,
        color .4s ease,
        border-color .4s ease;

}


.service-content h3 {

    font-family: var(--font-heading);

    font-size: 27px;

    font-weight: 600;

    letter-spacing: -.8px;

    transition: color .4s ease;

}


.service-content p {
    max-width: 650px;
    margin-top: 12px;
    color: rgba(255,255,255,.4);
     font-size: 15px;
    line-height: 1.7;
    transition: color .4s ease;
}


.service-tags {

    display: flex;

    flex-wrap: wrap;

    gap: 7px;

    margin-top: 15px;

}


.service-tags span {

    padding: 5px 9px;

    border: 1px solid rgba(255,255,255,.12);

    color: rgba(255,255,255,.35);

    font-size: 12px;

    transition:
        color .4s ease,
        border-color .4s ease;

}


.service-arrow {

    width: 34px;
    height: 34px;

    display: grid;

    place-items: center;

    border: 1px solid rgba(255,255,255,.15);

    color: var(--gray);

    transition:
        transform .4s ease,
        background .4s ease;

}


.service-item:hover .service-arrow {

    transform: rotate(45deg);

    background: var(--black);

    color: var(--orange);

}


.service-item:hover .service-icon {

    background: var(--black);

    border-color: var(--black);

}


.service-item:hover .service-content p {

    color: rgba(17,17,17,.62);

}


.service-item:hover .service-content h3 {

    color: var(--black);

}


.service-item:hover .service-number {

    color: rgba(17,17,17,.45);

}


.service-item:hover .service-tags span {

    color: rgba(17,17,17,.65);

    border-color: rgba(17,17,17,.18);

}


/* =========================================================
   12. TECHNOLOGY
========================================================= */

.technology-section {

    padding-bottom: 0;

    overflow: hidden;

}


.technology-intro {

    display: grid;

    grid-template-columns: 1fr .7fr;

    gap: 100px;

    align-items: end;

    padding: 100px 0 75px;

}


.technology-intro h2 {

    font-family: var(--font-heading);

    font-size: clamp(
        50px,
        6vw,
        88px
    );

    line-height: 1;

    letter-spacing: -4px;

}


.technology-intro h2 span {

    color: var(--orange);

}


.technology-intro p {

    color: var(--gray-dark);

    font-size: 17px;

    line-height: 1.8;

}


/* TECHNOLOGY WALL */

.technology-wall {

    display: grid;

    grid-template-columns: repeat(5, 1fr);

    border-top: 1px solid var(--border);

    border-left: 1px solid var(--border);

}


.technology-item {

    min-height: 150px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 15px;

    border-right: 1px solid var(--border);

    border-bottom: 1px solid var(--border);

    color: var(--gray-dark);

    transition:
        background .35s ease,
        color .35s ease,
        transform .35s ease;

}


.technology-item i {

    font-size: 50px;

    color: #999;

    transition:
        color .35s ease,
        transform .35s ease;

}


.technology-item span {

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 1px;

}


.technology-item:hover {

    background: var(--black);

    color: var(--white);

    transform: translateY(-3px);

}


.technology-item:hover i {

    color: var(--orange);

    transform: scale(1.12);

}


/* MARQUEE */

.tech-marquee {

    width: 100%;

    overflow: hidden;

    margin-top: 100px;

    border-top: 1px solid var(--border);

    border-bottom: 1px solid var(--border);

}


.marquee-track {

    width: max-content;

    display: flex;

    align-items: center;

    gap: 30px;

    padding: 25px 0;

    color: var(--gray);

    font-family: var(--font-heading);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

    animation: marquee 25s linear infinite;

}


.marquee-track b {

    color: var(--orange);

    font-weight: 400;

}


@keyframes marquee {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-35%);
    }

}


/* =========================================================
   13. WHY SOFTAXES
========================================================= */

.why-section {

    position: relative;

    padding-bottom: 140px;

    background: var(--black);

    color: var(--white);

    overflow: hidden;

}


.why-heading {

    padding: 100px 0 80px;

}


.why-heading h2 {

    font-family: var(--font-heading);

    font-size: clamp(
        60px,
        7vw,
        105px
    );

    line-height: .95;

    letter-spacing: -5px;

}


.why-heading h2 span {

    color: var(--orange);

}


.why-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid var(--border-light);

}


.why-card {

    min-height: 320px;

    padding: 28px;

    border-right: 1px solid var(--border-light);

    transition:
        background .4s ease,
        transform .4s ease;

}


.why-card:last-child {

    border-right: 0;

}


.why-card > span {

    color: rgba(255,255,255,.28);

      font-size: 12px;

}


.why-card i {

    display: block;

    margin-top: 55px;

    color: var(--orange);

    font-size: 25px;

}


.why-card h3 {

    margin-top: 28px;

    font-family: var(--font-heading);

    font-size: 20px;

}


.why-card p {

    margin-top: 12px;

    color: rgba(255,255,255,.4);

    font-size: 16px;

    line-height: 1.75;

}


.why-card:hover {

    background: #1a1a1a;

    transform: translateY(-5px);

}


/* =========================================================
   14. WORK
========================================================= */

.work-section {

    padding-bottom: 150px;

}


.work-heading {

    display: flex;

    align-items: end;

    justify-content: space-between;

    gap: 60px;

    padding: 100px 0 80px;

}


.work-heading h2 {

    max-width: 850px;

    font-family: var(--font-heading);

    font-size: clamp(
        50px,
        6vw,
        85px
    );

    line-height: .98;

    letter-spacing: -4px;

}


.work-heading h2 span {

    color: var(--orange);

}


.work-heading p {

    max-width: 320px;

    color: var(--gray-dark);

   font-size: 15px;

    line-height: 1.8;

}


/* PROJECT */

.project {

    min-height: 670px;

    display: grid;

    grid-template-columns: .75fr 1.25fr;

    margin-bottom: 40px;

    overflow: hidden;

}


.project-info {

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    padding: 50px;

}


.project-dark {

    background: var(--black);

    color: var(--white);

}


.project-orange {

    grid-template-columns: 1.25fr .75fr;

    background: var(--orange);

    color: var(--black);

}


.project-orange .project-info {

    order: 2;

}


.project-orange .project-visual {

    order: 1;

}


.project-number {

    font-family: var(--font-heading);

    color: var(--orange);

    font-size: 12px;

    font-weight: 700;

}


.project-orange .project-number {

    color: var(--black);

}


.project-info small {

    color: rgba(255,255,255,.4);

    font-size: 11px;

    letter-spacing: 2px;

}


.project-orange .project-info small {

    color: rgba(17,17,17,.55);

}


.project-info h3 {

    max-width: 420px;

    margin-top: 18px;

    font-family: var(--font-heading);

    font-size: clamp(
        38px,
        4vw,
        60px
    );

    line-height: .98;

    letter-spacing: -3px;

}


.project-info p {

    max-width: 400px;

    margin-top: 25px;

    color: rgba(255,255,255,.4);

     font-size: 15px;

    line-height: 1.8;

}


.project-orange .project-info p {

    color: rgba(17,17,17,.6);

}


.project-link {

    display: inline-flex;

    align-items: center;

    gap: 14px;

    width: fit-content;

    padding-bottom: 9px;

    border-bottom: 1px solid rgba(255,255,255,.25);

    color: rgba(255,255,255,.7);

    font-size: 13px;

    font-weight: 600;

}


.project-orange .project-link {

    border-color: rgba(17,17,17,.25);

    color: var(--black);

}


.project-link i {

    transition: transform .3s ease;

}


.project-link:hover i {

    transform: translate(3px, -3px);

}


/* PROJECT VISUAL */

.project-visual {

    position: relative;

    min-height: 600px;

    display: grid;

    place-items: center;

    overflow: hidden;

}


.project-dark .project-visual {

    background:
        radial-gradient(
            circle at 70% 40%,
            rgba(241,147,29,.12),
            transparent 35%
        ),
        #1b1b1b;

}


.project-orange .project-visual {

    background: #e7830d;

}


/* BROWSER */

.browser-frame {

    width: 74%;

    transform: perspective(1000px) rotateY(-8deg) rotateX(4deg);

    box-shadow:
        0 40px 80px rgba(0,0,0,.35);

    transition: transform .8s ease;

}


.project:hover .browser-frame {

    transform:
        perspective(1000px)
        rotateY(-3deg)
        rotateX(2deg)
        translateY(-8px);

}


.browser-top {

    height: 30px;

    display: flex;

    align-items: center;

    gap: 5px;

    padding-left: 12px;

    background: #292929;

}


.browser-top span {

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #555;

}


.browser-top span:first-child {

    background: #e65d4d;

}


.browser-screen {

    min-height: 390px;

    position: relative;

    padding: 35px;

    background: #f7f7f5;

    color: var(--black);

    overflow: hidden;

}


.mock-header {

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 2px;

}


.mock-title {

    margin-top: 70px;

    font-family: var(--font-heading);

    font-size: 45px;

    font-weight: 800;

    line-height: .9;

    letter-spacing: -3px;

}


.mock-orange-box {

    position: absolute;

    right: 35px;
    bottom: 35px;

    width: 90px;
    height: 90px;

    display: grid;

    place-items: center;

    background: var(--orange);

}


.mock-orange-box i {

    font-size: 20px;

}


.mock-lines {

    position: absolute;

    left: 35px;
    bottom: 38px;

    display: flex;

    gap: 6px;

}


.mock-lines span {

    width: 45px;
    height: 3px;

    background: #d5d5d0;

}


/* DASHBOARD */

.dashboard-mockup {

    width: 78%;

    min-height: 440px;

    display: grid;

    grid-template-columns: 65px 1fr;

    background: #f6f6f3;

    box-shadow:
        0 40px 80px rgba(0,0,0,.2);

    transform:
        perspective(1000px)
        rotateY(8deg)
        rotateX(4deg);

    transition: transform .8s ease;

}


.project:hover .dashboard-mockup {

    transform:
        perspective(1000px)
        rotateY(3deg)
        rotateX(2deg)
        translateY(-8px);

}


.dashboard-sidebar {

    padding: 25px 15px;

    background: #181818;

}


.dashboard-sidebar span {

    display: block;

    width: 35px;
    height: 4px;

    margin-bottom: 25px;

    background: #444;

}


.dashboard-sidebar span:first-child {

    background: var(--orange);

}


.dashboard-main {

    padding: 30px;

}


.dash-top {

    display: flex;

    justify-content: space-between;

}


.dash-top span {

    width: 80px;
    height: 7px;

    background: #ddd;

}


.dash-top span:last-child {

    width: 30px;

}


.dash-chart {

    height: 180px;

    margin-top: 50px;

    display: flex;

    align-items: flex-end;

    gap: 13px;

    border-bottom: 1px solid #ddd;

}


.dash-chart i {

    flex: 1;

    background: var(--orange);

    opacity: .85;

}


.dash-chart i:nth-child(1) {
    height: 25%;
}

.dash-chart i:nth-child(2) {
    height: 45%;
}

.dash-chart i:nth-child(3) {
    height: 32%;
}

.dash-chart i:nth-child(4) {
    height: 68%;
}

.dash-chart i:nth-child(5) {
    height: 55%;
}

.dash-chart i:nth-child(6) {
    height: 90%;
}


.dash-cards {

    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 12px;

    margin-top: 25px;

}


.dash-cards span {

    height: 45px;

    background: #e5e5e0;

}


/* =========================================================
   15. PROCESS
========================================================= */

.process-section {

    padding-bottom: 145px;

    background: var(--black);

    color: var(--white);

}


.process-heading {

    padding: 100px 0 90px;

}


.process-heading h2 {

    font-family: var(--font-heading);

    font-size: clamp(
        55px,
        7vw,
        100px
    );

    line-height: .95;

    letter-spacing: -5px;

}


.process-heading h2 span {

    color: var(--orange);

}


.process-grid {

    position: relative;

    display: grid;

    grid-template-columns: repeat(5,1fr);

}


.process-line {

    height: 1px;

    background: rgba(255,255,255,.15);

    margin-bottom: -1px;

}


.process-step {

    position: relative;

    min-height: 270px;

    padding: 28px 25px;

    border-right: 1px solid var(--border-light);

}


.process-step:first-child {

    border-left: 1px solid var(--border-light);

}


.process-step > span {

    color: var(--orange);

    font-size: 13px;

}


.process-step i {

    display: block;

    margin-top: 60px;

    color: rgba(255,255,255,.35);

    font-size: 40px;

    transition: color .3s ease;

}


.process-step:hover i {

    color: var(--orange);

}


.process-step h3 {

    margin-top: 20px;

    font-family: var(--font-heading);

    font-size: 20px;

}


.process-step p {

    max-width: 190px;

    margin-top: 10px;

    color: rgba(255,255,255,.35);

    font-size: 15px;

    line-height: 1.7;

}


/* =========================================================
   16. CONTACT
========================================================= */

.contact-section {

    position: relative;

    padding: 145px 0;

    background: var(--black);

    color: var(--white);

    overflow: hidden;

}


.contact-background {

    position: absolute;

    inset: 0;

}


.contact-grid {

    position: absolute;

    inset: 0;

    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: 100px 100px;

}


.contact-glow {

    position: absolute;

    width: 600px;
    height: 600px;

    right: -250px;
    top: -100px;

    border-radius: 50%;

    background: var(--orange);

    opacity: .07;

    filter: blur(100px);

}


.contact-container {

    position: relative;

    display: grid;

    grid-template-columns: .85fr 1.15fr;

    gap: 100px;

    align-items: start;

}


.contact-intro h2 {

    margin-top: 50px;

    font-family: var(--font-heading);

    font-size: clamp(
        55px,
        6.2vw,
        90px
    );

    line-height: .95;

    letter-spacing: -5px;

}


.contact-intro h2 span {

    color: var(--orange);

}


.contact-intro > p {

    max-width: 440px;

    margin-top: 35px;

    color: rgba(255,255,255,.42);

    font-size: 17px;

    line-height: 1.8;

}


.contact-direct {

    margin-top: 65px;

}


.contact-direct > span {

    display: block;

    color: rgba(255,255,255,.3);

    font-size: 11px;

    letter-spacing: 2px;

}


.contact-direct a {

    display: inline-block;

    margin-top: 12px;

    color: var(--orange);

    font-family: var(--font-heading);

    font-size: 19px;

    font-weight: 600;

}


/* FORM */

.contact-form-wrapper {

    padding: 1px;

    background: linear-gradient(
        135deg,
        rgba(241,147,29,.6),
        rgba(255,255,255,.08),
        rgba(255,255,255,.02)
    );

}


.contact-form {

    padding: 48px;

    background: #161616;

}


.form-heading {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding-bottom: 25px;

    margin-bottom: 25px;

    border-bottom: 1px solid rgba(255,255,255,.1);

}


.form-heading span {

    color: rgba(255,255,255,.5);

      font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

}


.form-heading i {

    color: var(--orange);

    font-size: 11px;

}


.form-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;

}


.form-group {

    margin-bottom: 24px;

}


.form-group label {

    display: block;

    margin-bottom: 10px;

    color: rgba(255,255,255,.35);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1.5px;

}


.form-group input,
.form-group select,
.form-group textarea {

    width: 100%;

    border: 0;

    border-bottom: 1px solid rgba(255,255,255,.15);

    outline: 0;

    background: transparent;

    color: var(--white);

    padding: 12px 0;

    font-size: 13px;

    transition: border-color .3s ease;

}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

    border-color: var(--orange);

}


.form-group input::placeholder,
.form-group textarea::placeholder {

    color: rgba(255,255,255,.18);

}


.form-group select {

    appearance: none;

    cursor: pointer;

}


.form-group select option {

    background: var(--black);

    color: var(--white);

}


.form-group textarea {

    min-height: 120px;

    resize: vertical;

}


.form-submit {

    width: 100%;

    min-height: 58px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 0 20px;

    background: var(--orange);

    color: var(--black);

    font-size: 15px;

    font-weight: 800;

    letter-spacing: .5px;

    transition:
        background .3s ease,
        transform .3s ease;

}


.form-submit:hover {

    background: #ffa532;

    transform: translateY(-3px);

}


.form-submit i {

    font-size: 11px;

}


.form-message {

    min-height: 20px;

    margin-bottom: 10px;

    color: var(--orange);

    font-size: 11px;

}


/* =========================================================
   17. FOOTER
========================================================= */

.site-footer {

    background: var(--black);

    color: var(--white);

}


.footer-top {

    padding: 145px 0;

    border-top: 1px solid rgba(255,255,255,.08);

    border-bottom: 1px solid rgba(255,255,255,.08);

}


.footer-cta > span {

    color: var(--orange);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 3px;

}


.footer-cta h2 {

    max-width: 1100px;

    margin-top: 35px;

    font-family: var(--font-heading);

    font-size: clamp(
        60px,
        9vw,
        145px
    );

    line-height: .86;

    letter-spacing: -7px;

}


.footer-cta h2 em {

    color: var(--orange);

    font-style: normal;

}


.footer-button {

    display: inline-flex;

    align-items: center;

    gap: 25px;

    margin-top: 65px;

    padding-bottom: 13px;

    border-bottom: 1px solid rgba(255,255,255,.35);

    color: rgba(255,255,255,.75);

    font-size: 13px;

    font-weight: 600;

}


.footer-button span {

    width: 34px;
    height: 34px;

    display: grid;

    place-items: center;

    border: 1px solid var(--orange);

    border-radius: 50%;

    color: var(--orange);

    transition:
        background .3s ease,
        color .3s ease;

}


.footer-button:hover span {

    background: var(--orange);

    color: var(--black);

}


/* FOOTER MAIN */

.footer-main {

    padding: 75px 0;

}


.footer-grid {

    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1fr;

    gap: 60px;

}


.footer-logo .brand-name strong {

    color: var(--white);

}


.footer-brand > p {

    max-width: 310px;

    margin-top: 25px;

    color: rgba(255,255,255,.35);

     font-size: 17px;

    line-height: 1.8;

}


.footer-socials {

    display: flex;

    gap: 8px;

    margin-top: 25px;

}


.footer-socials a {

    width: 34px;
    height: 34px;

    display: grid;

    place-items: center;

    border: 1px solid rgba(255,255,255,.13);

    color: rgba(255,255,255,.45);

   font-size: 15px;

    transition:
        background .3s ease,
        color .3s ease,
        border-color .3s ease;

}


.footer-socials a:hover {

    background: var(--orange);

    border-color: var(--orange);

    color: var(--black);

}


.footer-column {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 14px;

}


.footer-column > span:first-child {

    margin-bottom: 8px;

    color: rgba(255,255,255,.25);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;

}


.footer-column a {

    color: rgba(255,255,255,.5);

       font-size: 15px;

    transition: color .3s ease;

}


.footer-column a:hover {

    color: var(--orange);

}


.footer-location {

    color: rgba(255,255,255,.5) !important;

    font-size: 11px;

}


/* FOOTER BOTTOM */

.footer-bottom {

    border-top: 1px solid rgba(255,255,255,.08);

}


.footer-bottom-inner {

    min-height: 70px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    color: rgba(255,255,255,.2);

     font-size: 15px;

    letter-spacing: 1px;

}


/* =========================================================
   18. REVEAL ANIMATION
========================================================= */

.reveal {

    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity .8s ease,
        transform .8s cubic-bezier(.22,1,.36,1);

}


.reveal.visible {

    opacity: 1;

    transform: translateY(0);

}


/* =========================================================
   19. RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1100px) {


    .container {

        width: min(
            calc(100% - 50px),
            var(--container)
        );

    }


    .desktop-nav {

        gap: 20px;

    }


    .hero-container {

        grid-template-columns: 1fr;

        padding-top: 130px;

        padding-bottom: 80px;

    }


    .hero-content {

        text-align: center;

    }


    .hero-kicker {

        justify-content: center;

    }


    .hero h1 {

        margin-inline: auto;

    }


    .hero-description {

        margin-inline: auto;

    }


    .hero-buttons {

        justify-content: center;

    }


    .hero-meta {

        justify-content: center;

    }


    .hero-visual {

        justify-self: center;

        width: min(580px, 90vw);

    }


    .hero {

        min-height: auto;

    }


    .hero-scroll {

        display: none;

    }


    .about-layout {

        gap: 50px;

    }


    .services-intro {

        grid-template-columns: 1fr;

        gap: 30px;

    }


    .technology-intro {

        grid-template-columns: 1fr;

        gap: 30px;

    }


    .technology-wall {

        grid-template-columns: repeat(4, 1fr);

    }


    .why-grid {

        grid-template-columns: repeat(2,1fr);

    }


    .why-card:nth-child(2) {

        border-right: 0;

    }


    .why-card:nth-child(-n+2) {

        border-bottom: 1px solid var(--border-light);

    }


    .project {

        min-height: auto;

    }


    .project-visual {

        min-height: 520px;

    }


    .contact-container {

        grid-template-columns: 1fr;

        gap: 70px;

    }


}


/* =========================================================
   20. RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 768px) {


    .container {

        width: min(
            calc(100% - 35px),
            var(--container)
        );

    }


    .cursor-dot,
    .cursor-outline {

        display: none;

    }


    .header-inner {

        height: 75px;

    }


    .desktop-nav {

        display: none;

    }


    .mobile-toggle {

        display: flex;

    }


    .mobile-navigation {

        position: fixed;

        top: 75px;
        left: 0;
        right: 0;

        height: calc(100vh - 75px);

        padding: 45px 25px;

        background: rgba(17,17,17,.98);

        backdrop-filter: blur(20px);

        display: flex;

        transform: translateX(100%);

        transition: transform .5s cubic-bezier(.22,1,.36,1);

    }


    .mobile-navigation.active {

        transform: translateX(0);

    }


    .mobile-navigation-inner {

        display: flex;

        flex-direction: column;

        width: 100%;

    }


    .mobile-navigation a {

        padding: 19px 0;

        border-bottom: 1px solid rgba(255,255,255,.1);

        color: rgba(255,255,255,.7);

        font-family: var(--font-heading);

        font-size: 30px;

        font-weight: 600;

    }


    .mobile-navigation a:hover {

        color: var(--orange);

    }


    .hero-container {

        padding-top: 110px;

        padding-bottom: 80px;

    }


    .hero h1 {

        font-size: clamp(
            50px,
            15vw,
            75px
        );

        letter-spacing: -4px;

    }


    .hero-description {

        font-size: 14px;

    }


    .hero-buttons {

        flex-direction: column;

        align-items: stretch;

    }


    .hero-button {

        width: 100%;

    }


    .hero-meta {

        flex-wrap: wrap;

        margin-top: 45px;

    }


    .hero-visual {

        width: 100%;

        margin-top: 20px;

    }


    .visual-core {

        width: 150px;
        height: 150px;

    }


    .core-inner span {

        font-size: 48px;

    }


    .tech-float {

        transform: scale(.8);

    }


    .tech-php {

        right: 0;

    }


    .tech-react {

        left: 0;

    }


    .statement-section {

        padding: 100px 0;

    }


    .statement-section h2 {

        font-size: clamp(
            45px,
            13vw,
            70px
        );

        letter-spacing: -3px;

    }


    .statement-bottom {

        align-items: flex-start;

        margin-top: 45px;

    }


    .statement-mark {

        display: none;

    }


    .section-top-row {

        padding-top: 75px;

    }


    .about-section {

        padding-bottom: 80px;

    }


    .about-layout {

        grid-template-columns: 1fr;

        gap: 45px;

        padding-top: 70px;

    }


    .about-title h2 {

        font-size: clamp(
            45px,
            13vw,
            70px
        );

    }


    .about-content .about-lead {

        font-size: 18px;

    }


    .about-stats {

        grid-template-columns: 1fr 1fr;

        margin-top: 70px;

    }


    .stat {

        padding: 25px 10px 25px 0;

        border-bottom: 1px solid var(--border);

    }


    .stat:nth-child(2) {

        border-right: 0;

        padding-left: 15px;

    }


    .stat:nth-child(3) {

        padding-left: 0;

    }


    .stat:nth-child(4) {

        border-right: 0;

        padding-left: 15px;

    }


    .stat strong {

        font-size: 42px;

    }


    .services-section {

        padding-bottom: 80px;

    }


    .services-intro {

        padding: 70px 0 50px;

    }


    .services-intro h2 {

        font-size: clamp(
            43px,
            12vw,
            65px
        );

        letter-spacing: -3px;

    }


    .service-item {

        grid-template-columns: 35px 45px 1fr;

        gap: 15px;

        min-height: auto;

        padding: 28px 0;

    }


    .service-arrow {

        display: none;

    }


    .service-content h3 {

        font-size: 20px;

    }


    .service-content p {

        font-size: 12px;

    }


    .technology-section {

        padding-bottom: 0;

    }


    .technology-intro {

        padding: 70px 0 50px;

    }


    .technology-intro h2 {

        font-size: clamp(
            45px,
            12vw,
            68px
        );

        letter-spacing: -3px;

    }


    .technology-wall {

        grid-template-columns: repeat(2,1fr);

    }


    .technology-item {

        min-height: 130px;

    }


    .tech-marquee {

        margin-top: 70px;

    }


    .why-section {

        padding-bottom: 80px;

    }


    .why-heading {

        padding: 70px 0 55px;

    }


    .why-heading h2 {

        font-size: clamp(
            50px,
            14vw,
            75px
        );

        letter-spacing: -3px;

    }


    .why-grid {

        grid-template-columns: 1fr;

    }


    .why-card,
    .why-card:nth-child(2) {

        min-height: 250px;

        border-right: 0;

        border-bottom: 1px solid var(--border-light);

    }


    .why-card:last-child {

        border-bottom: 0;

    }


    .why-card i {

        margin-top: 40px;

    }


    .work-section {

        padding-bottom: 90px;

    }


    .work-heading {

        flex-direction: column;

        align-items: flex-start;

        gap: 25px;

        padding: 70px 0 50px;

    }


    .work-heading h2 {

        font-size: clamp(
            45px,
            12vw,
            68px
        );

        letter-spacing: -3px;

    }


    .project,
    .project-orange {

        grid-template-columns: 1fr;

    }


    .project-orange .project-info {

        order: 1;

    }


    .project-orange .project-visual {

        order: 2;

    }


    .project-info {

        min-height: 480px;

        padding: 35px 25px;

    }


    .project-visual {

        min-height: 400px;

    }


    .browser-frame {

        width: 85%;

    }


    .browser-screen {

        min-height: 300px;

    }


    .mock-title {

        margin-top: 45px;

        font-size: 33px;

    }


    .dashboard-mockup {

        width: 85%;

        min-height: 330px;

    }


    .process-section {

        padding-bottom: 90px;

    }


    .process-heading {

        padding: 70px 0;

    }


    .process-heading h2 {

        font-size: clamp(
            50px,
            14vw,
            75px
        );

        letter-spacing: -3px;

    }


    .process-grid {

        grid-template-columns: 1fr;

    }


    .process-line {

        display: none;

    }


    .process-step {

        min-height: auto;

        padding: 30px 20px;

        border: 0 !important;

        border-bottom: 1px solid var(--border-light) !important;

    }


    .process-step i {

        margin-top: 35px;

    }


    .contact-section {

        padding: 90px 0;

    }


    .contact-container {

        gap: 55px;

    }


    .contact-intro h2 {

        font-size: clamp(
            50px,
            14vw,
            75px
        );

        letter-spacing: -3px;

    }


    .contact-form {

        padding: 30px 22px;

    }


    .form-row {

        grid-template-columns: 1fr;

        gap: 0;

    }


    .footer-top {

        padding: 90px 0;

    }


    .footer-cta h2 {

        font-size: clamp(
            55px,
            15vw,
            80px
        );

        letter-spacing: -4px;

    }


    .footer-button {

        margin-top: 45px;

    }


    .footer-main {

        padding: 60px 0;

    }


    .footer-grid {

        grid-template-columns: 1fr 1fr;

        gap: 50px 25px;

    }


    .footer-brand {

        grid-column: 1 / -1;

    }


    .footer-bottom-inner {

        min-height: 85px;

        flex-direction: column;

        justify-content: center;

        align-items: flex-start;

        gap: 8px;

    }

}


/* =========================================================
   21. SMALL MOBILE
========================================================= */

@media (max-width: 480px) {


    .container {

        width: calc(100% - 28px);

    }


    .brand-name {

        display: none;

    }


    .hero h1 {

        font-size: 48px;

    }


    .hero-kicker {

        font-size: 8px;

        letter-spacing: 2px;

    }


    .hero-description {

        font-size: 13px;

    }


    .hero-meta {

        font-size: 7px;

        gap: 7px;

    }


    .visual-caption {

        display: none;

    }


    .tech-float {

        padding: 7px 9px;

    }


    .tech-float span {

        font-size: 7px;

    }


    .tech-float i {

        font-size: 12px;

    }


    .service-item {

        grid-template-columns: 25px 35px 1fr;

        gap: 10px;

    }


    .service-icon {

        width: 35px;
        height: 35px;

        font-size: 12px;

    }


    .service-content h3 {

        font-size: 17px;

    }


    .service-tags {

        display: none;

    }


    .technology-item {

        min-height: 115px;

    }


    .technology-item i {

        font-size: 25px;

    }


    .technology-item span {

        font-size: 8px;

    }


    .project-info {

        min-height: 430px;

    }


    .project-info h3 {

        font-size: 38px;

    }


    .project-visual {

        min-height: 330px;

    }


    .browser-frame {

        width: 92%;

    }


    .browser-screen {

        min-height: 240px;

        padding: 25px;

    }


    .mock-title {

        font-size: 27px;

        margin-top: 35px;

    }


    .mock-orange-box {

        width: 60px;
        height: 60px;

        right: 20px;
        bottom: 20px;

    }


    .dashboard-mockup {

        width: 92%;

    }


    .dashboard-main {

        padding: 20px;

    }


    .dash-chart {

        margin-top: 30px;

        height: 120px;

    }


    .contact-form {

        padding: 25px 18px;

    }


    .footer-grid {

        grid-template-columns: 1fr;

    }


    .footer-column {

        grid-column: auto;

    }


}


/* =========================================================
   22. 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;

    }

}

/* =========================================================
   JS COMPATIBILITY / FINAL FIXES
========================================================= */

/* Prevent horizontal overflow */
html,
body {
    width: 100%;
    max-width: 100%;
}

/* Mobile menu */
.mobile-navigation {
    z-index: 999;
}

/* Mobile toggle animation */
.mobile-toggle.active span:first-child {
    transform: translateY(3.5px) rotate(45deg);
}

.mobile-toggle.active span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
}

/* Make sure preloader can disappear */
.page-loader {
    pointer-events: auto;
}

.page-loader.loaded {
    pointer-events: none;
}

/* Better mobile hero visual */
@media (max-width: 768px) {

    .hero-visual {
        transform: none !important;
    }

    .mobile-navigation {
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

    .hero-visual,
    .visual-orbit,
    .core-ring,
    .tech-float,
    .marquee-track,
    .scroll-line span {
        animation: none !important;
        transform: none !important;
    }

}