/* ============================================================
   VIZION PTE LTD
   Main Stylesheet
   ============================================================ */


/* ============================================================
   01. CSS VARIABLES
   ============================================================ */

:root {
    --navy-950: #041226;
    --navy-900: #061a33;
    --navy-850: #08203d;
    --navy-800: #0a284b;
    --navy-700: #123b66;

    --gold: #d59a32;
    --gold-light: #e8b85e;
    --gold-dark: #ad7620;

    --white: #ffffff;
    --off-white: #f8f9fb;
    --grey-50: #f5f7fa;
    --grey-100: #edf1f5;
    --grey-200: #dde3ea;
    --grey-300: #c8d0da;
    --grey-500: #7b8794;
    --grey-600: #5e6a78;
    --grey-700: #3d4854;
    --text-dark: #101828;

    --success: #4ebd8b;

    --font-heading: "Manrope", sans-serif;
    --font-body: "Inter", sans-serif;

    --container: 1240px;

    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-xl: 40px;

    --shadow-sm:
        0 8px 25px rgba(7, 25, 48, 0.06);

    --shadow-md:
        0 20px 50px rgba(7, 25, 48, 0.1);

    --shadow-lg:
        0 35px 90px rgba(0, 0, 0, 0.18);

    --transition:
        0.35s cubic-bezier(0.22, 1, 0.36, 1);
}


/* ============================================================
   02. RESET
   ============================================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--text-dark);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    display: block;
}

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

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

button {
    border: 0;
}

ul {
    list-style: none;
}

::selection {
    background: var(--gold);
    color: var(--navy-950);
}


/* ============================================================
   03. GENERAL
   ============================================================ */

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

.section {
    padding: 125px 0;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    line-height: 1.1;
    letter-spacing: -0.035em;
}

h2 {
    font-size: clamp(2.4rem, 5vw, 4.6rem);
    font-weight: 700;
}

p {
    color: var(--grey-600);
}

.section-label {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 25px;

    color: var(--navy-700);
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.section-label span {
    color: var(--gold);
}

.section-label::after {
    content: "";
    width: 42px;
    height: 1px;
    background: var(--gold);
}

.section-label.light {
    color: rgba(255, 255, 255, 0.7);
}

.section-header {
    display: grid;
    grid-template-columns: 1.5fr 0.65fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 65px;
}

.section-heading h2 {
    max-width: 760px;
}

.section-header > p {
    max-width: 440px;
    font-size: 1.03rem;
}


/* ============================================================
   04. BUTTONS
   ============================================================ */

.btn {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;

    min-height: 55px;
    padding: 0 25px;

    border-radius: 100px;

    font-size: 0.88rem;
    font-weight: 600;

    transition: var(--transition);

    overflow: hidden;
}

.btn span,
.btn i {
    position: relative;
    z-index: 2;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy-950);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(213, 154, 50, 0.25);
}

.btn-primary i,
.btn-gold i,
.btn-outline-light i {
    transition: transform var(--transition);
}

.btn-primary:hover i,
.btn-gold:hover i,
.btn-outline-light:hover i {
    transform: translateX(5px);
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(15px);
}

.btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.btn-nav {
    min-height: 44px;
    padding: 0 19px;
    background: var(--gold);
    color: var(--navy-950);
}

.btn-nav:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.btn-gold {
    background: var(--gold);
    color: var(--navy-950);
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
}

.btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--navy-950);
    transform: translateY(-3px);
}


/* ============================================================
   05. PAGE LOADER
   ============================================================ */

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;

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

    background: var(--navy-950);

    transition:
        opacity 0.7s ease,
        visibility 0.7s ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-inner {
    width: 220px;
    text-align: center;
}

.loader-logo img {
    width: 145px;
    margin: 0 auto 30px;
}

.loader-line {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.12);
    overflow: hidden;
}

.loader-line span {
    display: block;
    width: 45%;
    height: 100%;
    background: var(--gold);

    animation: loaderMove 1.2s infinite ease-in-out;
}

.loader-inner p {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.6rem;
    letter-spacing: 0.22em;
}

@keyframes loaderMove {
    0% {
        transform: translateX(-120%);
    }

    100% {
        transform: translateX(260%);
    }
}


/* ============================================================
   06. CUSTOM CURSOR
   ============================================================ */

.cursor-dot,
.cursor-outline {
    position: fixed;
    left: 0;
    top: 0;

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

    border-radius: 50%;

    pointer-events: none;
    z-index: 100000;
}

.cursor-dot {
    width: 5px;
    height: 5px;
    background: var(--gold);
}

.cursor-outline {
    width: 34px;
    height: 34px;

    border: 1px solid rgba(213, 154, 50, 0.6);

    transition:
        width 0.25s,
        height 0.25s,
        background 0.25s;
}

body.cursor-hover .cursor-outline {
    width: 52px;
    height: 52px;
    background: rgba(213, 154, 50, 0.1);
}


/* ============================================================
   07. HEADER
   ============================================================ */

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

    width: 100%;
    z-index: 1000;

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

    transition:
        background var(--transition),
        box-shadow var(--transition),
        border var(--transition);
}

.nav-container {
    height: 88px;

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

    transition: height var(--transition);
}

/* =========================
   LOGO VISIBILITY FIX
========================= */

.site-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;

    /* NO background */
    background: transparent;

    /* NO white box */
    padding: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.site-logo img {
    width: 210px;
    height: auto;
    max-height: 58px;
    object-fit: contain;
}


/* When navbar becomes smaller after scrolling */

.site-header.scrolled .site-logo {
    padding: 7px 13px;
}

.site-header.scrolled .site-logo img {
    width: 170px;
    max-height: 46px;
}
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav-link {
    position: relative;

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

    font-size: 0.84rem;
    font-weight: 500;

    transition: color var(--transition);
}

.nav-link::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -10px;

    width: 0;
    height: 1px;

    background: var(--gold);

    transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}


/* Header after scroll */

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.96);
    border-bottom-color: var(--grey-100);

    box-shadow: 0 8px 35px rgba(7, 25, 48, 0.07);

    backdrop-filter: blur(20px);
}

.site-header.scrolled .nav-container {
    height: 72px;
}

.site-header.scrolled .site-logo img {
    width: 132px;
}

.site-header.scrolled .nav-link {
    color: var(--grey-700);
}

.site-header.scrolled .nav-link:hover,
.site-header.scrolled .nav-link.active {
    color: var(--navy-900);
}


/* ============================================================
   08. MOBILE MENU
   ============================================================ */

.mobile-menu-btn {
    width: 44px;
    height: 44px;

    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;

    background: transparent;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 23px;
    height: 2px;

    background: var(--white);

    transition: var(--transition);
}

.site-header.scrolled .mobile-menu-btn span {
    background: var(--navy-950);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    inset: 0;

    z-index: -1;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 110px 30px 50px;

    background: var(--navy-950);

    opacity: 0;
    visibility: hidden;

    transform: translateY(-20px);

    transition: var(--transition);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
}

.mobile-menu nav a {
    padding: 15px 0;

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

    color: white;

    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
}

.mobile-contact {
    margin-top: 40px;

    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mobile-contact span {
    margin-bottom: 8px;

    color: var(--gold);

    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.mobile-contact a {
    color: rgba(255, 255, 255, 0.7);
}


/* ============================================================
   09. HERO
   ============================================================ */

.hero {
    position: relative;

    min-height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding-top: 120px;

    color: white;

    background:
        radial-gradient(
            circle at 75% 40%,
            rgba(25, 74, 119, 0.42),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #031021 0%,
            #061a33 52%,
            #08213e 100%
        );

    overflow: hidden;
}

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

    opacity: 0.08;

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

    background-size: 80px 80px;

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

.hero-glow {
    position: absolute;

    border-radius: 50%;

    filter: blur(100px);

    pointer-events: none;
}

.hero-glow-one {
    width: 450px;
    height: 450px;

    right: 5%;
    top: 20%;

    background: rgba(21, 90, 153, 0.18);
}

.hero-glow-two {
    width: 300px;
    height: 300px;

    left: 15%;
    bottom: -100px;

    background: rgba(213, 154, 50, 0.08);
}

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

    display: grid;
    grid-template-columns: 1.08fr 0.92fr;

    align-items: center;

    gap: 60px;

    flex: 1;

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

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

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

    margin-bottom: 30px;

    color: var(--gold-light);

    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22em;
}

.eyebrow-line {
    width: 45px;
    height: 1px;
    background: var(--gold);
}

.hero h1 {
    max-width: 780px;

    margin-bottom: 30px;

    font-size: clamp(3.5rem, 6.5vw, 6.7rem);
    font-weight: 700;
    letter-spacing: -0.06em;
}

.hero h1 span {
    display: block;

    color: var(--gold);
}

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

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

    font-size: 1.06rem;
    line-height: 1.85;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;

    margin-top: 38px;
}

.hero-trust {
    display: flex;
    align-items: center;

    gap: 25px;

    margin-top: 55px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-item strong {
    color: var(--white);

    font-family: var(--font-heading);
    font-size: 1.45rem;
}

.trust-item span {
    max-width: 90px;

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

    font-size: 0.67rem;
    line-height: 1.45;
}

.trust-divider {
    width: 1px;
    height: 35px;

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


/* ============================================================
   10. HERO PRODUCT
   ============================================================ */

.hero-visual {
    position: relative;

    min-height: 570px;

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

.hero-product-circle {
    position: absolute;

    width: 480px;
    height: 480px;

    border-radius: 50%;

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

    background:
        radial-gradient(
            circle,
            rgba(255, 255, 255, 0.06),
            rgba(255, 255, 255, 0.01) 55%,
            transparent 70%
        );
}

.hero-product-circle::before,
.hero-product-circle::after {
    content: "";

    position: absolute;
    border-radius: 50%;

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

.hero-product-circle::before {
    inset: 45px;
}

.hero-product-circle::after {
    inset: 100px;
}

.hero-product-image {
    position: relative;
    z-index: 3;

    width: 90%;

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

.hero-product-image img {
    width: 100%;
    max-height: 470px;

    object-fit: contain;

    filter:
        drop-shadow(
            0 40px 50px rgba(0, 0, 0, 0.35)
        );
}

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

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

.hero-product-label {
    position: absolute;
    z-index: 5;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 12px 16px;

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

    background: rgba(7, 27, 51, 0.65);

    backdrop-filter: blur(15px);

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.hero-product-label small,
.hero-product-name small {
    display: block;

    margin-bottom: 2px;

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

    font-size: 0.59rem;
}

.hero-product-label strong {
    display: block;

    color: white;

    font-size: 0.7rem;
}

.label-one {
    left: -15px;
    top: 25%;
}

.label-two {
    right: -10px;
    top: 43%;
}

.label-icon {
    width: 36px;
    height: 36px;

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

    border-radius: 9px;

    background: rgba(213, 154, 50, 0.14);

    color: var(--gold);
}

.status-dot {
    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: #59d39c;

    box-shadow:
        0 0 0 5px rgba(89, 211, 156, 0.12);
}

.hero-product-name {
    position: absolute;
    left: 40px;
    bottom: 35px;
    z-index: 5;

    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-product-name > span {
    color: var(--gold);

    font-size: 0.68rem;
}

.hero-product-name strong {
    font-size: 0.75rem;
}


/* ============================================================
   11. HERO MARQUEE
   ============================================================ */

.hero-marquee {
    position: absolute;
    bottom: 0;
    left: 0;

    width: 100%;

    overflow: hidden;

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

    background: rgba(0, 0, 0, 0.12);
}

.marquee-track {
    width: max-content;

    display: flex;
    align-items: center;
    gap: 32px;

    padding: 18px 0;

    animation: marquee 28s linear infinite;
}

.marquee-track span {
    color: rgba(255, 255, 255, 0.38);

    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.18em;
}

.marquee-track i {
    color: var(--gold);

    font-size: 0.25rem;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


/* ============================================================
   12. ABOUT / INTRO
   ============================================================ */

.intro-section {
    background: var(--white);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: start;
}

.intro-heading h2 {
    max-width: 700px;
}

.intro-heading h2 span {
    color: var(--grey-300);
}

.intro-content {
    padding-top: 60px;
}

.intro-content p {
    max-width: 580px;

    margin-bottom: 20px;

    font-size: 1rem;
}

.intro-content .intro-lead {
    color: var(--text-dark);

    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-top: 14px;

    color: var(--navy-900);

    font-size: 0.83rem;
    font-weight: 700;

    border-bottom: 1px solid var(--navy-900);

    padding-bottom: 5px;

    transition: var(--transition);
}

.text-link i {
    transition: transform var(--transition);
}

.text-link:hover {
    color: var(--gold-dark);
    border-color: var(--gold-dark);
}

.text-link:hover i {
    transform: translateX(5px);
}


/* ============================================================
   13. STATS
   ============================================================ */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    margin-top: 85px;

    border: 1px solid var(--grey-200);
    border-radius: var(--radius-lg);

    overflow: hidden;
}

.stat-card {
    min-height: 230px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 35px;

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

    background: white;

    transition: var(--transition);
}

.stat-card:last-child {
    border-right: 0;
}

.stat-card:hover {
    background: var(--grey-50);
}

.stat-number {
    color: var(--navy-900);

    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.06em;
}

.stat-label {
    max-width: 140px;

    color: var(--grey-600);

    font-size: 0.75rem;
}

.stat-card-dark {
    background: var(--navy-900);
}

.stat-card-dark:hover {
    background: var(--navy-800);
}

.stat-small {
    color: var(--gold);

    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.stat-vision {
    color: white;

    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 600;
    line-height: 1.25;
}


/* ============================================================
   14. SOLUTIONS
   ============================================================ */

.solutions-section {
    background: var(--grey-50);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.solution-card {
    position: relative;

    min-height: 520px;

    display: flex;
    flex-direction: column;

    padding: 35px;

    border: 1px solid var(--grey-200);
    border-radius: var(--radius-lg);

    background: var(--white);

    overflow: hidden;

    transition: var(--transition);
}

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

    border-color: transparent;

    box-shadow: var(--shadow-md);
}

.solution-card.featured {
    background:
        linear-gradient(
            145deg,
            var(--navy-900),
            #0b3158
        );

    color: white;

    border-color: transparent;
}

.featured-label {
    position: absolute;
    top: 0;
    right: 0;

    padding: 9px 15px;

    border-radius: 0 0 0 12px;

    background: var(--gold);

    color: var(--navy-950);

    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

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

    color: var(--grey-300);

    font-size: 0.68rem;
    font-weight: 700;
}

.featured .solution-number {
    color: rgba(255, 255, 255, 0.35);
}

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

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

    margin-bottom: 30px;

    border-radius: 18px;

    background: var(--grey-50);

    color: var(--navy-800);

    font-size: 1.6rem;

    transition: var(--transition);
}

.solution-card:hover .solution-icon {
    transform: rotate(-5deg) scale(1.08);

    background: var(--gold);

    color: var(--navy-950);
}

.featured .solution-icon {
    background: rgba(255, 255, 255, 0.08);
    color: var(--gold);
}

.solution-content {
    margin-top: auto;
}

.solution-content h3 {
    margin-bottom: 17px;

    font-size: 1.55rem;
}

.solution-content p {
    margin-bottom: 25px;

    font-size: 0.87rem;
}

.featured .solution-content p {
    color: rgba(255, 255, 255, 0.6);
}

.solution-content ul {
    display: flex;
    flex-direction: column;
    gap: 9px;

    margin-bottom: 30px;
}

.solution-content li {
    display: flex;
    align-items: center;
    gap: 9px;

    color: var(--grey-600);

    font-size: 0.76rem;
}

.solution-content li i {
    color: var(--gold);

    font-size: 0.65rem;
}

.featured .solution-content li {
    color: rgba(255, 255, 255, 0.66);
}

.solution-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: var(--navy-900);

    font-size: 0.78rem;
    font-weight: 700;
}

.featured .solution-link {
    color: var(--gold-light);
}

.solution-link i {
    transition: transform var(--transition);
}

.solution-link:hover i {
    transform: translateX(6px);
}


/* ============================================================
   15. PRODUCTS
   ============================================================ */

.products-section {
    position: relative;

    background:
        linear-gradient(
            160deg,
            #031020,
            #061b34 55%,
            #092746
        );

    color: white;

    overflow: hidden;
}

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

    position: absolute;
    top: -350px;
    right: -300px;

    width: 700px;
    height: 700px;

    border-radius: 50%;

    background: rgba(25, 91, 149, 0.12);

    filter: blur(100px);
}

.products-header {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1.3fr 0.55fr;

    align-items: end;
    gap: 80px;

    margin-bottom: 65px;
}

.products-header h2 {
    max-width: 780px;
}

.products-header h2 span {
    color: var(--gold);
}

.products-header > p {
    color: rgba(255, 255, 255, 0.5);
}

.products-grid {
    position: relative;
    z-index: 2;

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

    gap: 22px;
}

.product-card {
    border-radius: var(--radius-lg);

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

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

    overflow: hidden;

    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-7px);

    border-color: rgba(213, 154, 50, 0.45);

    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;

    height: 390px;

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

    padding: 40px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at center,
            rgba(255, 255, 255, 0.08),
            rgba(255, 255, 255, 0.015) 60%
        );
}

.product-card-large .product-image {
    height: 450px;
}

.product-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(2, 12, 25, 0.75),
            transparent 50%
        );

    opacity: 0;

    transition: var(--transition);
}

.product-image img {
    max-width: 88%;
    max-height: 88%;

    object-fit: contain;

    transition:
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.7s ease;

    filter:
        drop-shadow(
            0 25px 35px rgba(0, 0, 0, 0.3)
        );
}

.product-card:hover .product-image img {
    transform: scale(1.07) translateY(-8px);
}

.product-card:hover .product-image::after {
    opacity: 1;
}

.product-category {
    position: absolute;
    top: 24px;
    left: 25px;
    z-index: 5;

    padding: 7px 11px;

    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 100px;

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

    background: rgba(4, 18, 38, 0.3);

    backdrop-filter: blur(10px);

    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.product-hover {
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 24px;

    z-index: 6;

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

    opacity: 0;

    transform: translateY(15px);

    transition: var(--transition);
}

.product-hover > span {
    color: white;

    font-size: 0.78rem;
    font-weight: 600;
}

.hover-arrow {
    width: 45px;
    height: 45px;

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

    border-radius: 50%;

    background: var(--gold);

    color: var(--navy-950);
}

.product-card:hover .product-hover {
    opacity: 1;
    transform: translateY(0);
}

.product-info {
    min-height: 175px;

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

    gap: 30px;

    padding: 28px 30px 32px;

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

.product-number {
    display: block;

    margin-bottom: 8px;

    color: var(--gold);

    font-size: 0.62rem;
}

.product-info h3 {
    margin-bottom: 10px;

    color: white;

    font-size: 1.4rem;
}

.product-info p {
    max-width: 440px;

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

    font-size: 0.78rem;
}

.product-arrow {
    flex-shrink: 0;

    width: 45px;
    height: 45px;

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

    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;

    transition: var(--transition);
}

.product-card:hover .product-arrow {
    transform: translateX(5px);

    background: var(--gold);
    border-color: var(--gold);

    color: var(--navy-950);
}

.products-bottom {
    position: relative;
    z-index: 2;

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

    margin-top: 50px;
    padding-top: 35px;

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

.products-bottom p {
    color: rgba(255, 255, 255, 0.55);
}


/* ============================================================
   16. EXPERTISE
   ============================================================ */

.expertise-section {
    background: var(--white);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

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

.expertise-card {
    position: relative;

    min-height: 300px;

    padding: 35px;

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

    background: white;

    transition: var(--transition);
}

.expertise-card:hover {
    z-index: 2;

    background: var(--navy-900);

    transform: translateY(-5px);

    box-shadow: var(--shadow-md);
}

.expertise-icon {
    width: 50px;
    height: 50px;

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

    margin-bottom: 55px;

    border-radius: 13px;

    background: var(--grey-50);

    color: var(--navy-800);

    transition: var(--transition);
}

.expertise-card:hover .expertise-icon {
    background: var(--gold);

    color: var(--navy-950);

    transform: rotate(-5deg);
}

.expertise-card > span {
    position: absolute;
    top: 35px;
    right: 35px;

    color: var(--grey-300);

    font-size: 0.65rem;
}

.expertise-card h3 {
    margin-bottom: 12px;

    font-size: 1.2rem;

    transition: color var(--transition);
}

.expertise-card p {
    max-width: 290px;

    font-size: 0.78rem;

    transition: color var(--transition);
}

.expertise-card:hover h3 {
    color: white;
}

.expertise-card:hover p {
    color: rgba(255, 255, 255, 0.55);
}


/* ============================================================
   17. EXPERIENCE
   ============================================================ */

.experience-section {
    padding: 125px 0;

    color: white;

    background:
        linear-gradient(
            130deg,
            #061a33,
            #09294a
        );
}

.experience-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;

    gap: 100px;
}

.experience-title {
    position: sticky;
    top: 130px;

    align-self: start;
}

.experience-title h2 {
    max-width: 520px;

    margin-bottom: 25px;
}

.experience-title p {
    max-width: 430px;

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

.experience-list {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.experience-row {
    display: grid;
    grid-template-columns: 50px 1fr 40px;

    gap: 20px;

    align-items: center;

    min-height: 120px;

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

    transition: var(--transition);
}

.experience-row > span {
    color: var(--gold);

    font-size: 0.63rem;
}

.experience-row h3 {
    color: rgba(255, 255, 255, 0.75);

    font-size: 1.15rem;
    font-weight: 500;

    transition: var(--transition);
}

.experience-row i {
    color: rgba(255, 255, 255, 0.35);

    transition: var(--transition);
}

.experience-row:hover {
    padding-left: 15px;
}

.experience-row:hover h3 {
    color: white;
}

.experience-row:hover i {
    color: var(--gold);

    transform: translateX(5px);
}


/* ============================================================
   18. INDUSTRY
   ============================================================ */

.industry-section {
    background: var(--grey-50);
}

.industry-heading {
    display: grid;
    grid-template-columns: 1fr 0.6fr;

    align-items: end;
    gap: 80px;

    margin-bottom: 70px;
}

.industry-heading h2 {
    max-width: 650px;
}

.industry-heading > p {
    max-width: 420px;
}

.industry-list {
    border-top: 1px solid var(--grey-200);
}

.industry-item {
    display: grid;
    grid-template-columns: 100px 1fr;

    padding: 34px 10px;

    border-bottom: 1px solid var(--grey-200);

    transition: var(--transition);
}

.industry-item:hover {
    padding-left: 25px;

    background: white;
}

.industry-item > span {
    color: var(--gold);

    font-size: 0.67rem;
}

.industry-item h3 {
    margin-bottom: 7px;

    font-size: 1.35rem;
}

.industry-item p {
    font-size: 0.83rem;
}


/* ============================================================
   19. VALUES
   ============================================================ */

.values-section {
    padding: 75px 0;

    background: var(--gold);
}

.values-title {
    margin-bottom: 30px;

    text-align: center;
}

.values-title span {
    color: rgba(4, 18, 38, 0.55);

    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.2em;
}

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

.value-item {
    min-height: 130px;

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

    gap: 13px;

    border-right: 1px solid rgba(4, 18, 38, 0.15);

    color: var(--navy-950);

    transition: var(--transition);
}

.value-item:last-child {
    border-right: 0;
}

.value-item i {
    font-size: 1.35rem;

    transition: var(--transition);
}

.value-item span {
    font-family: var(--font-heading);
    font-weight: 700;
}

.value-item:hover {
    transform: translateY(-7px);
}

.value-item:hover i {
    transform: scale(1.15);
}


/* ============================================================
   20. MARKETS
   ============================================================ */

.markets-section {
    background: white;
}

.markets-heading {
    display: grid;
    grid-template-columns: 1.2fr 0.5fr;

    align-items: end;
    gap: 80px;

    margin-bottom: 70px;
}

.markets-heading h2 span {
    display: block;

    color: var(--grey-300);
}

.markets-heading > p {
    max-width: 390px;
}

.market-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

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

.market-card {
    min-height: 155px;

    display: flex;
    align-items: center;
    gap: 15px;

    padding: 30px;

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

    font-family: var(--font-heading);
    font-weight: 600;

    transition: var(--transition);
}

.market-card:hover {
    z-index: 2;

    background: var(--navy-900);

    color: white;

    transform: translateY(-5px);

    box-shadow: var(--shadow-md);
}

.flag {
    font-size: 1.7rem;

    filter: saturate(0.8);

    transition: var(--transition);
}

.market-card:hover .flag {
    transform: scale(1.2);
}


/* ============================================================
   21. CTA
   ============================================================ */

.cta-section {
    position: relative;

    padding: 130px 0;

    background:
        linear-gradient(
            135deg,
            #031020,
            #061b34 55%,
            #0a2d50
        );

    color: white;

    overflow: hidden;
}

.cta-background-text {
    position: absolute;
    left: -20px;
    bottom: -75px;

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

    font-family: var(--font-heading);
    font-size: 18vw;
    font-weight: 800;
    letter-spacing: -0.08em;

    pointer-events: none;
}

.cta-container {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1.15fr 0.65fr;

    align-items: center;

    gap: 100px;
}

.cta-content h2 {
    max-width: 800px;

    margin-bottom: 28px;
}

.cta-content h2 span {
    display: block;

    color: var(--gold);
}

.cta-content > p {
    max-width: 600px;

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

    font-size: 1rem;
}

.cta-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 28px;

    margin-top: 38px;
}

.cta-phone {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cta-phone > span {
    width: 45px;
    height: 45px;

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

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;

    color: var(--gold);
}

.cta-phone small {
    display: block;

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

    font-size: 0.6rem;
}

.cta-phone strong {
    font-size: 0.82rem;
}


/* ============================================================
   22. CONTACT CARD
   ============================================================ */

.contact-card {
    padding: 40px;

    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: var(--radius-lg);

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

    backdrop-filter: blur(18px);

    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.contact-label {
    display: block;

    margin-bottom: 35px;

    color: var(--gold);

    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.contact-person {
    padding-bottom: 25px;

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

.contact-person small {
    color: rgba(255, 255, 255, 0.4);
}

.contact-person h3 {
    margin-top: 3px;

    font-size: 1.8rem;
}

.contact-details {
    padding: 25px 0;

    display: flex;
    flex-direction: column;
    gap: 20px;

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

.contact-details > a,
.contact-details > div {
    display: flex;
    align-items: center;
    gap: 13px;
}

.contact-icon {
    flex-shrink: 0;

    width: 38px;
    height: 38px;

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

    border-radius: 9px;

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

    color: var(--gold);

    font-size: 0.75rem;
}

.contact-details small {
    display: block;

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

    font-size: 0.57rem;
}

.contact-details strong {
    color: rgba(255, 255, 255, 0.78);

    font-size: 0.73rem;
}

.contact-tagline {
    padding-top: 25px;

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

    font-family: var(--font-heading);
    font-size: 0.85rem;
}


/* ============================================================
   23. FOOTER
   ============================================================ */

.site-footer {
    padding: 85px 0 25px;

    background: #020b16;

    color: white;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 0.65fr 1fr 0.85fr;

    gap: 70px;

    padding-bottom: 65px;
}

.footer-logo img {
    width: 155px;

    margin-bottom: 25px;
}

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

    margin-bottom: 25px;

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

    font-size: 0.8rem;
}

.footer-tagline {
    color: var(--gold);

    font-size: 0.57rem;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-column h4 {
    margin-bottom: 12px;

    color: white;

    font-size: 0.75rem;
    letter-spacing: 0.04em;
}

.footer-column a,
.footer-column > div {
    color: rgba(255, 255, 255, 0.4);

    font-size: 0.73rem;

    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--gold);
    transform: translateX(4px);
}

.footer-contact a,
.footer-contact > div {
    display: flex;
    align-items: center;
    gap: 9px;
}

.footer-contact i {
    width: 14px;

    color: var(--gold);

    font-size: 0.67rem;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-top: 25px;

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

.footer-bottom p,
.footer-bottom a {
    color: rgba(255, 255, 255, 0.3);

    font-size: 0.65rem;
}

.footer-bottom > div {
    display: flex;
    gap: 25px;
}

.footer-bottom a:hover {
    color: white;
}


/* ============================================================
   24. BACK TO TOP
   ============================================================ */

.back-to-top {
    position: fixed;
    right: 25px;
    bottom: 25px;

    z-index: 900;

    width: 48px;
    height: 48px;

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

    border-radius: 50%;

    background: var(--gold);

    color: var(--navy-950);

    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);

    cursor: pointer;

    opacity: 0;
    visibility: hidden;

    transform: translateY(15px);

    transition: var(--transition);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);

    background: var(--gold-light);
}


/* ============================================================
   25. SCROLLBAR
   ============================================================ */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #e9edf1;
}

::-webkit-scrollbar-thumb {
    background: #9ca6b1;

    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}


/* ============================================================
   26. RESPONSIVE - LAPTOP
   ============================================================ */

@media (max-width: 1180px) {

    .desktop-nav {
        gap: 22px;
    }

    .nav-link {
        font-size: 0.76rem;
    }

    .hero-container {
        gap: 25px;
    }

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

    .hero-product-circle {
        width: 400px;
        height: 400px;
    }

    .label-one {
        left: 0;
    }

    .label-two {
        right: 0;
    }

    .footer-top {
        gap: 40px;
    }

}


/* ============================================================
   27. RESPONSIVE - TABLET
   ============================================================ */

@media (max-width: 980px) {

    .section {
        padding: 95px 0;
    }

    .desktop-nav {
        display: none;
    }

    .nav-actions .btn-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        min-height: auto;
    }

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

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

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

    .hero-visual {
        min-height: 500px;
        max-width: 650px;
        width: 100%;

        margin: 0 auto;
    }

    .hero-trust {
        flex-wrap: wrap;
    }

    .intro-grid,
    .section-header,
    .products-header,
    .industry-heading,
    .markets-heading {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .intro-content {
        padding-top: 0;
    }

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

    .stat-card:nth-child(2) {
        border-right: 0;
    }

    .stat-card:nth-child(-n + 2) {
        border-bottom: 1px solid var(--grey-200);
    }

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

    .solution-card {
        min-height: auto;
    }

    .solution-number {
        margin-bottom: 30px;
    }

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

    .product-card-large .product-image,
    .product-image {
        height: 420px;
    }

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

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

        gap: 55px;
    }

    .experience-title {
        position: static;
    }

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

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

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

        gap: 60px;
    }

    .contact-card {
        max-width: 600px;
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);

        gap: 55px;
    }

}


/* ============================================================
   28. RESPONSIVE - MOBILE
   ============================================================ */

@media (max-width: 680px) {

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

    .section {
        padding: 78px 0;
    }

    .nav-container {
        height: 72px;
    }

    .site-logo img {
        width: 125px;
    }

    .hero {
        padding-top: 72px;
    }

    .hero-container {
        padding-top: 70px;
        padding-bottom: 105px;
    }

    .eyebrow {
        font-size: 0.58rem;
        letter-spacing: 0.15em;
    }

    .eyebrow-line {
        width: 28px;
    }

    .hero h1 {
        font-size: clamp(3rem, 15vw, 4.8rem);
    }

    .hero-description {
        font-size: 0.92rem;
    }

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

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-trust {
        display: grid;
        grid-template-columns: repeat(3, 1fr);

        gap: 10px;

        margin-top: 40px;
    }

    .trust-item {
        flex-direction: column;
        align-items: flex-start;

        gap: 3px;
    }

    .trust-item strong {
        font-size: 1.2rem;
    }

    .trust-item span {
        max-width: none;
        font-size: 0.56rem;
    }

    .trust-divider {
        display: none;
    }

    .hero-visual {
        min-height: 380px;
    }

    .hero-product-circle {
        width: 300px;
        height: 300px;
    }

    .hero-product-image {
        width: 100%;
    }

    .hero-product-label {
        padding: 9px 10px;
    }

    .hero-product-label strong {
        font-size: 0.58rem;
    }

    .hero-product-label small {
        font-size: 0.5rem;
    }

    .label-one {
        top: 15%;
    }

    .label-two {
        top: auto;
        right: 0;
        bottom: 22%;
    }

    .hero-product-name {
        left: 0;
        bottom: 15px;
    }

    h2 {
        font-size: clamp(2.25rem, 11vw, 3.4rem);
    }

    .intro-grid {
        gap: 35px;
    }

    .intro-content .intro-lead {
        font-size: 1.05rem;
    }

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

        margin-top: 55px;
    }

    .stat-card {
        min-height: 180px;

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

    .stat-card:last-child {
        border-bottom: 0;
    }

    .stat-number {
        font-size: 3rem;
    }

    .solution-card {
        padding: 28px;
    }

    .products-header {
        margin-bottom: 45px;
    }

    .product-image,
    .product-card-large .product-image {
        height: 330px;
        padding: 25px;
    }

    .product-image img {
        max-width: 95%;
        max-height: 90%;
    }

    .product-info {
        min-height: auto;

        padding: 25px;

        align-items: flex-end;
    }

    .product-info h3 {
        font-size: 1.2rem;
    }

    .product-info p {
        font-size: 0.72rem;
    }

    .product-hover {
        display: none;
    }

    .products-bottom {
        align-items: flex-start;
        flex-direction: column;

        gap: 20px;
    }

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

    .expertise-card {
        min-height: 260px;
    }

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

    .experience-row {
        grid-template-columns: 35px 1fr 25px;

        min-height: 105px;

        gap: 10px;
    }

    .experience-row h3 {
        font-size: 0.95rem;
    }

    .industry-item {
        grid-template-columns: 45px 1fr;

        padding: 28px 5px;
    }

    .industry-item:hover {
        padding-left: 10px;
    }

    .industry-item h3 {
        font-size: 1.1rem;
    }

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

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

        gap: 0;
    }

    .value-item {
        border-right: 1px solid rgba(4, 18, 38, 0.15);
        border-bottom: 1px solid rgba(4, 18, 38, 0.15);
    }

    .value-item:nth-child(2n) {
        border-right: 0;
    }

    .value-item:last-child {
        grid-column: 1 / -1;

        border-bottom: 0;
        border-right: 0;
    }

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

    .market-card {
        min-height: 120px;

        padding: 20px;

        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }

    .cta-section {
        padding: 85px 0;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .contact-card {
        padding: 28px;
    }

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

        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;

        gap: 15px;
    }

    .back-to-top {
        right: 16px;
        bottom: 16px;

        width: 43px;
        height: 43px;
    }

    .cursor-dot,
    .cursor-outline {
        display: none;
    }

}


/* ============================================================
   29. VERY SMALL MOBILE
   ============================================================ */

@media (max-width: 420px) {

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-product-circle {
        width: 250px;
        height: 250px;
    }

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

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

    .market-card {
        flex-direction: row;
        align-items: center;
    }

}


/* ============================================================
   30. REDUCED MOTION ACCESSIBILITY
   ============================================================ */

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

}
/* ============================================================
   JAVASCRIPT ENHANCEMENTS
   ============================================================ */


/* Hide navbar when scrolling down */

.site-header {
    transform: translateY(0);
}

.site-header.header-hidden {
    transform: translateY(-110%);
}


/* Market hover focus */

.market-card {
    transition:
        opacity 0.35s ease,
        transform 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}

.market-card.market-muted {
    opacity: 0.45;
}


/* Expertise icon */

.expertise-icon.icon-active {
    transform: rotate(-6deg) scale(1.08);
}


/* Better keyboard accessibility */

.keyboard-navigation a:focus-visible,
.keyboard-navigation button:focus-visible {
    outline: 3px solid #d59a32;
    outline-offset: 5px;
}


/* Missing image */

img.image-error {
    opacity: 0.15;
}


/* Product cursor */

body.cursor-product .cursor-outline {
    width: 70px;
    height: 70px;

    background: rgba(213, 154, 50, 0.12);

    border-color: #d59a32;
}


/* Smooth product movement */

.product-card {
    transform-style: preserve-3d;
    will-change: transform;
}


/* Better animations */

.experience-row.in-view,
.industry-item.in-view {
    opacity: 1;
}


/* ============================================================
   HERO PRODUCT EXTRA POLISH
   ============================================================ */

.hero-product-image {
    transform:
        translate(
            var(--hero-x, 0px),
            var(--hero-y, 0px)
        );
}


/* ============================================================
   MOBILE - REMOVE HEAVY EFFECTS
   ============================================================ */

@media (max-width: 980px) {

    .site-header.header-hidden {
        transform: translateY(0);
    }

    .product-card {
        transform: none !important;
    }

}
/* =========================================
   HERO AMR PRODUCT
========================================= */

.hero-product-image {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 72%;
    height: 72%;

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

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

    z-index: 3;
}

.hero-product-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    /* Makes the robot look integrated
       into the circular design */
    filter:
        drop-shadow(0 28px 25px rgba(0, 0, 0, 0.28))
        drop-shadow(0 0 30px rgba(63, 146, 220, 0.12));

    animation: heroRobotFloat 4.5s ease-in-out infinite;
}


/* Gentle floating animation */

@keyframes heroRobotFloat {

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

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

}
/* =========================================
   HERO AMR - FIXED POSITION
========================================= */

.hero-product-image {
    position: absolute;
    z-index: 4;

    /* centre inside the radar circles */
    left: 50%;
    top: 50%;

    width: 68%;
    height: 68%;

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

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

    pointer-events: none;
}

.hero-product-image img {
    display: block;

    width: 100%;
    height: 100%;

    max-width: 520px;
    max-height: 390px;

    object-fit: contain;

    filter: drop-shadow(
        0 25px 25px rgba(0, 0, 0, 0.25)
    );

    animation: amrFloat 4s ease-in-out infinite;
}

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

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