/* ==========================================================================
   DESIGN SYSTEM — NAVY BLUE & ORANGE THEME
   Ref: navbardigital.com layout
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,600;12..96,700;12..96,800&family=Hanken+Grotesk:wght@300;400;500;600&family=JetBrains+Mono:wght@400;500&display=swap');

/* --------------------------------------------------------------------------
   CSS Variables
   -------------------------------------------------------------------------- */
:root {
    --ink: #06091a;
    --ink-90: #0c1130;
    --paper: #f2f0eb;
    --fog: #8a93b0;
    --fog-2: #4a5480;
    --lime: #f97316;
    --lime-bright: #fb923c;
    --navy: #1e40af;
    --navy-bright: #3b82f6;
    --border: rgba(100, 130, 255, 0.10);
    --border-h: rgba(100, 130, 255, 0.20);
    --font-display: 'Bricolage Grotesque', sans-serif;
    --font-body: 'Hanken Grotesk', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --dur-fast: 200ms;
    --dur-med: 400ms;
    --dur-slow: 700ms;
}

/* --------------------------------------------------------------------------
   Reset & Base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    overflow-x: clip !important;
    max-width: 100% !important;
    width: 100%;
    touch-action: pan-y pinch-zoom !important;
}

body {
    background-color: #050714;
    background-image: linear-gradient(135deg, #050714 0%, #150507 30%, #031524 65%, #180c05 100%);
    background-attachment: fixed;
    color: var(--paper);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip !important;
    max-width: 100% !important;
    position: relative;
    touch-action: pan-y pinch-zoom !important;
}

#main-content {
    width: 100%;
    overflow-x: clip !important;
    max-width: 100% !important;
    position: relative;
}

/* Subtle Parallax Orange Grid Background */
.parallax-grid-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.parallax-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 115%;
    /* Stretches past bottom for upward scroll translation offset */
    pointer-events: none;
    background-image:
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center;
    will-change: transform;
}

/* Force section backgrounds to transparent to reveal the global fixed grid */
.partners-section,
.about-bento-section,
.products-sticky-section,
.why-split-section,
.services-section,
.gallery-section,
.projects-section,
.testimonials-section,
.blog-section,
.cta-section,
.contact-section {
    background-color: transparent !important;
    background: transparent !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

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

p {
    color: var(--fog);
    line-height: 1.7;
}

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

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

::-webkit-scrollbar-track {
    background: var(--ink);
}

::-webkit-scrollbar-thumb {
    background: var(--fog-2);
    border-radius: 99px;
}

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

/* --------------------------------------------------------------------------
   Utilities
   -------------------------------------------------------------------------- */
.text-lime {
    color: var(--lime);
}

.text-fog {
    color: var(--fog);
}

.text-paper {
    color: var(--paper);
}

.text-navy {
    color: var(--navy-bright);
}

.bg-lime {
    background: var(--lime);
}

.font-mono {
    font-family: var(--font-mono);
}

.font-display {
    font-family: var(--font-display);
}

.tracking-widest {
    letter-spacing: 0.2em;
}

/* --------------------------------------------------------------------------
   Page Loader
   -------------------------------------------------------------------------- */
#page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--ink);
    transition: opacity 0.6s var(--ease-smooth), visibility 0.6s;
}

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

.loader-glow {
    position: absolute;
    top: 33%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50vw;
    height: 30vh;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.18) 0%, rgba(30, 64, 175, 0.12) 50%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
}

.loader-logo {
    position: relative;
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}

#page-loader.logo-in .loader-logo {
    opacity: 1;
    transform: scale(1);
}

.loader-count {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--paper);
    line-height: 1;
    margin-top: 2rem;
    font-variant-numeric: tabular-nums;
}

.loader-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.35em;
    color: var(--fog);
    margin-top: 0.75rem;
    text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   Custom Cursor
   -------------------------------------------------------------------------- */
.cursor-ring {
    pointer-events: none;
    position: fixed;
    z-index: 9998;
    top: 0;
    left: 0;
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(249, 115, 22, 0.7);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s var(--ease-smooth), height 0.3s var(--ease-smooth),
        background 0.3s var(--ease-smooth), border-color 0.2s;
}

.cursor-dot {
    pointer-events: none;
    position: fixed;
    z-index: 9998;
    top: 0;
    left: 0;
    width: 5px;
    height: 5px;
    background: var(--lime);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.cursor-ring.is-hover {
    width: 60px;
    height: 60px;
    background: rgba(249, 115, 22, 0.08);
    border-color: var(--lime);
}

@media (hover: none) {

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

/* --------------------------------------------------------------------------
   Navbar
   -------------------------------------------------------------------------- */
.site-header {
    position: fixed;
    inset-inline: 0;
    top: 0;
    z-index: 50;
    background: transparent;
    /* Fully transparent navbar at top */
    border-bottom: 1px solid transparent;
    transition: background 0.4s var(--ease-smooth), border-color 0.4s var(--ease-smooth);
}

.site-header.scrolled {
    background: rgba(6, 9, 26, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-pill {
    display: flex;
    width: 100%;
    max-width: 90rem;
    margin-inline: auto;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 2rem;
    background: transparent;
}

.nav-logo-wrap {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
}

.nav-logo-icon {
    display: flex;
    height: 3.5rem;
    /* Larger area for logo */
    align-items: center;
    justify-content: flex-start;
}

.nav-logo-icon img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.nav-brand-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--paper);
    line-height: 1;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
    }
}

.nav-links a {
    position: relative;
    border-radius: 9999px;
    padding: 0.5rem 0.85rem;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: rgba(242, 240, 235, 0.75);
    transition: color var(--dur-fast);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--paper);
}

/* CTA button */
.btn-lime {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 9999px;
    background: var(--lime);
    color: #fff;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: -0.01em;
    padding: 0.6rem 1.25rem;
    border: none;
    cursor: pointer;
    transition: background var(--dur-fast), transform 0.2s var(--ease-smooth), box-shadow 0.2s;
    text-decoration: none;
}

.btn-lime:hover {
    background: var(--lime-bright);
    color: #fff;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.4);
    transform: translateY(-1px);
}

.btn-lime svg {
    transition: transform 0.25s var(--ease-smooth);
}

.btn-lime:hover svg {
    transform: translate(2px, -2px);
}

/* Outline button */
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 9999px;
    background: transparent;
    color: var(--paper);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.875rem;
    padding: 0.6rem 1.25rem;
    border: 1px solid var(--border-h);
    cursor: pointer;
    transition: border-color var(--dur-fast), background var(--dur-fast), color var(--dur-fast);
    text-decoration: none;
}

.btn-outline:hover {
    border-color: var(--lime);
    background: rgba(249, 115, 22, 0.08);
    color: var(--lime);
}

/* Hamburger */
.nav-toggle {
    display: flex;
    width: 2.75rem;
    height: 2.75rem;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--paper);
    cursor: pointer;
    transition: border-color var(--dur-fast), background var(--dur-fast);
}

.nav-toggle:hover {
    border-color: var(--lime);
    background: rgba(249, 115, 22, 0.08);
    color: var(--lime);
}

@media (min-width: 1024px) {
    .nav-toggle {
        display: none;
    }
}

/* Mobile drawer */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 49;
    background: var(--ink);
    display: flex;
    flex-direction: column;
    padding: 6rem 2rem 3rem;
    transform: translateX(100%);
    transition: transform 0.45s var(--ease-smooth), visibility 0.45s var(--ease-smooth);
    border-left: 1px solid var(--border);
    visibility: hidden;
    pointer-events: none;
}

.mobile-menu.open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu a {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--paper);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color var(--dur-fast);
}

.mobile-menu a:hover {
    color: var(--lime);
}

.mobile-menu .mobile-cta {
    margin-top: auto;
    padding-top: 3rem;
}

/* --------------------------------------------------------------------------
   Reveal Helpers (GSAP controls, CSS just hides initially)
   -------------------------------------------------------------------------- */
.reveal {
    opacity: 0;
}

/* Stagger delay helpers */
.d-50 {
    transition-delay: 50ms;
}

.d-100 {
    transition-delay: 100ms;
}

.d-150 {
    transition-delay: 150ms;
}

.d-200 {
    transition-delay: 200ms;
}

.d-300 {
    transition-delay: 300ms;
}

.d-400 {
    transition-delay: 400ms;
}

.d-500 {
    transition-delay: 500ms;
}

/* --------------------------------------------------------------------------
   Section base
   -------------------------------------------------------------------------- */
section {
    padding: 2rem 0;
}

.container-xl {
    width: 100%;
    max-width: 72rem;
    margin-inline: auto;
    padding-inline: 1.5rem;
}

@media (min-width: 640px) {
    .container-xl {
        padding-inline: 2rem;
    }
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 9999px;
    border: 1px solid rgba(249, 115, 22, 0.25);
    background: rgba(249, 115, 22, 0.06);
    padding: 0.35rem 0.9rem;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: rgba(249, 115, 22, 0.85);
    text-transform: uppercase;
    margin-bottom: 1.75rem;
}

.section-badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 10px 3px rgba(249, 115, 22, 0.55);
    flex-shrink: 0;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.08;
    color: var(--paper);
    margin-bottom: 1.25rem;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--fog);
    max-width: 560px;
    line-height: 1.7;
}

/* --------------------------------------------------------------------------
   HERO SECTION — navbardigital.com layout
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background: transparent;
    padding-top: 7rem;
    padding-bottom: 4rem;
}

/* Background layer stack */
.hero-bg-layers {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* Spotlight Video Layer (Revealed on hover) */
.hero-spotlight-video {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 1;
    --x: 15vw;
    --y: 15vh;
    mask-image: radial-gradient(circle 500px at var(--x) var(--y), rgba(0, 0, 0, 1) 0%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle 500px at var(--x) var(--y), rgba(0, 0, 0, 1) 0%, transparent 100%);
    pointer-events: none;
}

.hero-spotlight-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) contrast(1.1);
}

/* Navy Blue & Orange Gradient Tint Overlay */
.hero-color-tint {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(135deg, rgba(10, 14, 41, 0.6) 0%, rgba(59, 14, 18, 0.6) 35%, rgba(11, 54, 82, 0.6) 70%, rgba(66, 30, 9, 0.6) 100%);
    mix-blend-mode: overlay;
    pointer-events: none;
}

/* 1. Canvas particle field */
.hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* 2. Racking & Shelving Pattern Overlay */
.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 2px, transparent 2px),
        linear-gradient(0deg, rgba(249, 115, 22, 0.15) 4px, transparent 4px);
    background-size: 100px 140px;
    background-position: center;
    opacity: 1;
    mix-blend-mode: normal;
    pointer-events: none;
}

/* 4. Left-to-right gradient (from-ink/85 via-ink/45 to-transparent) */
.hero-grad-lr {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(5, 7, 20, 0.92) 0%,
            rgba(5, 7, 20, 0.75) 28%,
            rgba(5, 7, 20, 0.38) 55%,
            transparent 78%);
}

/* 5. Bottom fade */
.hero-grad-bottom {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    height: 40%;
    background: linear-gradient(to top, #050714 0%, transparent 100%);
}

/* Content above layers */
.hero-content {
    position: relative;
    z-index: 2;
}

/* Badge pill — exact navbardigital.com look */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0.375rem 1rem;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: rgba(242, 240, 235, 0.70);
    text-transform: uppercase;
    margin-bottom: 1.75rem;
    opacity: 0;
}

.hero-badge .badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 12px 2px rgba(249, 115, 22, 0.7);
    flex-shrink: 0;
    animation: dotPulse 2.5s ease-in-out infinite;
}

@keyframes dotPulse {

    0%,
    100% {
        box-shadow: 0 0 10px 2px rgba(249, 115, 22, 0.6);
    }

    50% {
        box-shadow: 0 0 20px 5px rgba(249, 115, 22, 0.9);
    }
}

/* Mega headline */
.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: 0.95;
    color: var(--paper);
    margin-bottom: 1.5rem;
    max-width: 55rem;
}

.hero-line {
    display: block;
    margin-bottom: 0.08em;
}

.hero-headline .word {
    display: inline-block;
    white-space: nowrap;
    margin-right: 0.18em;
}

.hero-headline .char-wrap {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    padding-bottom: 0.08em;
    margin-bottom: -0.08em;
}

.hero-headline .char {
    display: inline-block;
    transform: translateY(110%);
}

.hero-headline .accent-char {
    color: var(--lime);
}

.accent-char-wrap {
    color: var(--lime);
}

/* Sub text */
.hero-sub {
    font-size: 1rem;
    color: var(--fog);
    max-width: 55rem;
    line-height: 1.6;
    margin-bottom: 2.25rem;
    opacity: 0;
}

/* CTA row */
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 3.5rem;
    opacity: 0;
}

.btn-lg {
    padding: 0.9rem 1.75rem !important;
    font-size: 1rem !important;
}

/* ===================================================================
   ABOUT BENTO GRID
   =================================================================== */
.about-bento-section {
    padding: 6rem 0;
    position: relative;
    z-index: 10;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(180px, auto);
    gap: 1.5rem;
}

.bento-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1.5rem;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.4s var(--ease-smooth), border-color 0.4s ease;
}

.bento-box:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
}

/* Grid Spans */
.bento-large {
    grid-column: span 8;
    grid-row: span 2;
}

.bento-img-v {
    grid-column: span 4;
    grid-row: span 2;
    padding: 0;
}

.bento-stat {
    grid-column: span 4;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.stat-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
    width: 100%;
    justify-content: center;
}

.stat-num-masked {
    font-family: var(--font-display);
    font-size: clamp(5.8rem, 8vw, 8rem);
    font-weight: 800;
    line-height: 0.9;
    background-image: linear-gradient(135deg, rgba(249, 115, 22, 0.95) 0%, rgba(255, 237, 227, 0.95) 100%), url('/static/assets/images/why_us_2.png');
    background-blend-mode: multiply;
    background-size: cover;
    background-position: center;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    flex-shrink: 0;
}

.stat-num-gradient {
    font-family: var(--font-display);
    font-size: clamp(5.8rem, 8vw, 8rem);
    font-weight: 800;
    line-height: 0.9;
    background-image: linear-gradient(135deg, #f97316 0%, #ffedd5 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    flex-shrink: 0;
}

.stat-text-side {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.stat-text-side .text-years {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 1.8vw, 1.6rem);
    font-weight: 800;
    color: var(--lime);
    letter-spacing: 0.05em;
    margin-bottom: 0.2rem;
}

.stat-text-side .text-expertise {
    font-family: var(--font-display);
    font-size: clamp(0.95rem, 1.5vw, 1.25rem);
    font-weight: 800;
    color: var(--paper);
    letter-spacing: -0.01em;
}

.bento-wide {
    grid-column: span 5;
}

.bento-img-h {
    grid-column: span 3;
    padding: 0;
}

/* Mobile fallback */
@media (max-width: 991px) {

    .bento-large,
    .bento-img-v,
    .bento-stat,
    .bento-wide,
    .bento-img-h {
        grid-column: span 12;
        grid-row: auto;
    }

    .bento-img-v {
        height: 350px;
    }

    .bento-img-h {
        height: 250px;
    }
}

/* Internal elements */
.bento-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-family: var(--font-mono);
    letter-spacing: 0.1em;
    color: var(--lime);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.bento-badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 10px rgba(249, 115, 22, 0.8);
}

.bento-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--paper);
}

.bento-text {
    font-size: 1.125rem;
    color: var(--fog);
    line-height: 1.6;
    max-width: 32rem;
    margin-bottom: 2rem;
}

.bento-text-sm {
    font-size: 0.95rem;
    color: white;
    line-height: 1.6;
}

.bento-subtitle {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--paper);
    margin-bottom: 0.75rem;
}

.bento-link {
    font-weight: 600;
    color: var(--paper);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 0.95rem;
}

.bento-link:hover .arrow {
    transform: translate(2px, -2px);
}

.bento-link .arrow {
    transition: transform 0.3s ease;
    color: var(--lime);
}

.stat-num {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
    color: #fff;
    margin-bottom: 0.25rem;
}

.stat-num .accent {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.7);
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bento-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-smooth);
}

.bento-box:hover .bento-bg-img {
    transform: scale(1.05);
}

.bento-overlay {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: rgba(6, 9, 26, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--paper);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bento-overlay .icon {
    color: var(--lime);
}

/* ===================================================================
   PRODUCTS STICKY SCROLL
   =================================================================== */
.products-sticky-section {
    padding: 2rem 0;
    position: relative;
    z-index: 10;
}

.sticky-product-header {
    position: sticky;
    top: 15vh;
    /* Sticks nicely near the top */
    padding-right: 2rem;
}

@media (max-width: 991px) {
    .sticky-product-header {
        position: relative;
        top: 0;
        padding-right: 0;
        margin-bottom: 3rem;
    }
}

.product-story-list {
    display: flex;
    flex-direction: column;
    gap: 15vh;
    /* Massive spacing between products for cinematic scroll */
}

.product-story-card {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: border-color 0.3s ease, background 0.3s ease;
}

.product-story-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.product-img-wrap {
    width: 100%;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
    position: relative;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-smooth);
}

.product-story-card:hover .product-img {
    transform: scale(1.05);
}

.product-content.glass-panel {
    background: rgba(6, 9, 26, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.product-content h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--paper);
    margin-bottom: 1rem;
}

.product-content p {
    font-size: 1.1rem;
    color: var(--fog);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.product-content .btn-link {
    color: var(--lime);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
}

.product-content .btn-link .arrow {
    transition: transform 0.3s ease;
}

.product-content .btn-link:hover .arrow {
    transform: translateX(4px);
}

/* ===================================================================
   CTA SECTION
   =================================================================== */
.cta-section {
    padding: 2rem 0 4rem 0;
    position: relative;
    z-index: 10;
}

.cta-card {
    position: relative;
    background: rgba(6, 9, 26, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2rem;
    padding: 5rem 2rem;
    text-align: center;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.cta-title {
    position: relative;
    z-index: 1;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--paper);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-sub {
    position: relative;
    z-index: 1;
    font-size: 1.15rem;
    color: var(--fog);
    max-width: 45rem;
    margin: 0 auto 3rem auto;
    line-height: 1.7;
}

.cta-actions {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ===================================================================
   SERVICES ACCORDION GALLERY
   =================================================================== */
.services-accordion-gallery {
    display: flex;
    gap: 1rem;
    height: 60vh;
    min-height: 500px;
    width: 100%;
}

@media (max-width: 991px) {
    .services-accordion-gallery {
        flex-direction: column;
        height: clamp(550px, 80vh, 700px);
    }
}

.service-panel {
    position: relative;
    flex: 1;
    border-radius: 2rem;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-panel:hover,
.service-panel.active {
    flex: 5;
}

.panel-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.service-panel:hover .panel-bg,
.service-panel.active .panel-bg {
    transform: scale(1.05);
}

.panel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(6, 9, 26, 0.95) 0%, rgba(6, 9, 26, 0.4) 50%, rgba(6, 9, 26, 0.1) 100%);
    transition: background 0.6s ease;
}

.service-panel:hover .panel-overlay,
.service-panel.active .panel-overlay {
    background: linear-gradient(to top, rgba(6, 9, 26, 0.95) 0%, rgba(6, 9, 26, 0.6) 100%);
}

.panel-content {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    transition-delay: 0s;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-panel:hover .panel-content,
.service-panel.active .panel-content {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
    pointer-events: auto;
}

.panel-icon {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    color: var(--lime);
    margin-bottom: 0.5rem;
}

.panel-text h3 {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.5vw, 2rem);
    color: var(--paper);
    margin-bottom: 0.5rem;
    white-space: normal;
}

.panel-text p {
    font-size: clamp(0.85rem, 1.1vw, 1.05rem);
    color: var(--fog);
    margin-bottom: clamp(0.75rem, 2vw, 1.5rem);
    max-width: 95%;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-panel .btn-link {
    color: var(--lime);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: clamp(0.75rem, 1vw, 0.9rem);
    padding: clamp(0.4rem, 0.8vw, 0.6rem) clamp(0.8rem, 1.5vw, 1.25rem);
    background: rgba(249, 115, 22, 0.05);
    border: 1px solid rgba(249, 115, 22, 0.15);
    border-radius: 9999px;
    transition: all 0.3s ease;
    width: max-content;
}

.service-panel .btn-link:hover {
    background: var(--lime);
    color: #fff;
    border-color: var(--lime);
}

.service-panel .btn-link .arrow {
    transition: transform 0.3s ease;
}

.service-panel .btn-link:hover .arrow {
    transform: translateX(4px);
}

.panel-title-vertical {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) rotate(-90deg);
    transform-origin: left bottom;
    white-space: nowrap;
    font-weight: 700;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--paper);
    opacity: 1;
    transition: opacity 0.3s ease;
}

.service-panel:hover .panel-title-vertical,
.service-panel.active .panel-title-vertical {
    opacity: 0;
}

@media (max-width: 991px) {
    .panel-title-vertical {
        bottom: 50%;
        left: 50%;
        transform: translate(-50%, 50%);
        font-size: 0.8rem;
        letter-spacing: 0.05em;
    }
}

@media (max-width: 767px) {

    .service-panel:hover,
    .service-panel.active {
        flex: 8;
    }

    .panel-content {
        bottom: 1.25rem;
        left: 1.25rem;
        right: 1.25rem;
        gap: 0.5rem;
    }

    .panel-icon {
        font-size: 2rem;
        margin-bottom: 0.25rem;
    }

    .panel-text h3 {
        font-size: 1.4rem;
        margin-bottom: 0.35rem;
        white-space: normal;
    }

    .panel-text p {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
        max-width: 100%;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}

/* ===================================================================
   WHY CHOOSE US SECTION - SPLIT LAYOUT
   =================================================================== */
.why-split-section {
    padding: 2rem 0;
    position: relative;
    z-index: 10;
}

.why-image-panel {
    position: sticky;
    top: 15vh;
    height: 70vh;
    min-height: 500px;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

@media (max-width: 991px) {
    .why-image-panel {
        position: relative;
        top: 0;
        height: 50vh;
    }
}

.why-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.why-image-panel:hover .why-bg-img {
    transform: scale(1.05);
}

.why-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 9, 26, 0.9) 0%, rgba(6, 9, 26, 0.2) 100%);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.why-image-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--paper);
    line-height: 1.1;
    margin: 0;
}

.why-feature-list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding: 2rem 0;
}

.why-editorial-item {
    position: relative;
    padding-left: 2rem;
    border-left: 2px solid rgba(255, 255, 255, 0.08);
    transition: border-color 0.4s ease;
}

.why-editorial-item:hover {
    border-left-color: var(--lime);
}

.editorial-num {
    position: absolute;
    top: -1rem;
    left: -1rem;
    font-family: var(--font-display);
    font-size: 8rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    z-index: 0;
    pointer-events: none;
    transition: color 0.4s ease, transform 0.4s ease;
}

.why-editorial-item:hover .editorial-num {
    color: rgba(249, 115, 22, 0.08);
    transform: translateX(10px);
}

.editorial-content {
    position: relative;
    z-index: 1;
}

.editorial-content h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--paper);
    margin-bottom: 1rem;
}

.editorial-content p {
    font-size: 1.1rem;
    color: var(--fog);
    line-height: 1.7;
    margin: 0;
}

/* ===================================================================
   GALLERY SECTION - INFINITE MARQUEE
   =================================================================== */
.gallery-section {
    padding: 6rem 0;
    background: var(--ink-95);
    position: relative;
    z-index: 10;
}

.marquee-wrapper {
    position: relative;
    width: 100%;
    /* Full bleed */
    overflow: hidden;
    display: flex;
}

.marquee-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
}

.marquee-item {
    width: 400px;
    height: 300px;
    border-radius: 1.5rem;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: grayscale(40%) brightness(0.8);
}

.marquee-item:hover img {
    transform: scale(1.05);
    filter: grayscale(0%) brightness(1.1);
}

/* Animations */
/* Scroll-Scrub classes (GSAP controlled) */
.scroll-scrub-left,
.scroll-scrub-right {
    will-change: transform;
}

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

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

    /* Moves half the duplicated content */
}

@keyframes scrollRight {
    from {
        transform: translateX(calc(-50% - 0.75rem));
    }

    to {
        transform: translateX(0);
    }
}

@media (max-width: 991px) {
    .marquee-item {
        width: 280px;
        height: 200px;
    }
}

/* ===================================================================
   FEATURED PROJECTS - STAGGERED GRID
   =================================================================== */
.projects-section {
    padding: 8rem 0;
    position: relative;
    z-index: 10;
}

@media (min-width: 992px) {
    .project-col-staggered {
        margin-top: 8rem;
    }
}

.project-card {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    margin-bottom: 2rem;
    cursor: pointer;
}

.project-card:hover .project-img {
    transform: scale(1.05);
}

.project-img-wrapper {
    position: relative;
    width: 100%;
    padding-top: 110%;
    /* Makes image tall/vertical */
    overflow: hidden;
    border-radius: 1.5rem;
}

.project-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    filter: brightness(0.85);
}

.project-content {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    padding: 2rem;
    border-radius: 1.25rem;
    background: rgba(6, 9, 26, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.4s ease, border-color 0.4s ease;
}

.project-card:hover .project-content {
    background: rgba(6, 9, 26, 0.85);
    border-color: rgba(249, 115, 22, 0.3);
}

.project-meta {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--lime);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.project-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--paper);
    margin: 0;
}

/* ===================================================================
   TESTIMONIALS SECTION - GLASS GRID
   =================================================================== */
.testimonials-section {
    padding: 8rem 0;
    position: relative;
    z-index: 10;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1.5rem;
    padding: 3rem 2.5rem;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s var(--ease-smooth), border-color 0.4s ease, background 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(249, 115, 22, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

.quote-icon {
    position: absolute;
    top: -1rem;
    right: 2rem;
    font-family: var(--font-display);
    font-size: 8rem;
    color: rgba(249, 115, 22, 0.15);
    line-height: 1;
    pointer-events: none;
    transition: color 0.4s ease;
}

.testimonial-card:hover .quote-icon {
    color: rgba(249, 115, 22, 0.3);
}

.testi-rating {
    color: var(--lime);
    font-size: 1.25rem;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.testi-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--paper);
    font-style: italic;
    margin-bottom: 2.5rem;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
}

.author-avatar {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background-color: var(--ink-80);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.author-info h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--paper);
    margin: 0 0 0.25rem 0;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--fog);
}

/* ===================================================================
   FINAL CTA SECTION - MASSIVE TYPOGRAPHY
   =================================================================== */
.final-cta-section {
    padding: 2rem 0;
    position: relative;
    z-index: 10;
    background: radial-gradient(circle at center, rgba(249, 115, 22, 0.03) 0%, transparent 60%);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.final-cta-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5.5rem);
    color: var(--paper);
    line-height: 1.05;
    margin: 0;
    letter-spacing: -0.02em;
}

.final-cta-text {
    font-size: 1.25rem;
    color: var(--fog);
    line-height: 1.6;
    margin: 0;
}

/* ===================================================================
   CONTACT SECTION - FLOATING COMMAND CENTER
   =================================================================== */
.contact-section {
    position: relative;
    padding: 2rem 0;
    overflow: hidden;
}

.contact-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.contact-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(6, 9, 26, 0.85);
    /* Dark overlay */
    z-index: 1;
}

.contact-glass-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2rem;
    padding: 5rem;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

@media (max-width: 991px) {
    .contact-glass-card {
        padding: 3rem 2rem;
    }
}

.contact-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--paper);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.contact-desc {
    font-size: 1.15rem;
    color: var(--fog);
    line-height: 1.6;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    padding: 2.5rem 1.5rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg, rgba(249, 115, 22, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(249, 115, 22, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(249, 115, 22, 0.1);
}

.contact-info-card:hover::before {
    opacity: 1;
}

.contact-info-card .info-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.1);
    color: var(--lime);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease, background 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-info-card:hover .info-icon {
    transform: scale(1.1) translateY(-5px);
    background: rgba(249, 115, 22, 0.25);
}

.contact-info-card .info-label {
    display: block;
    font-size: 0.85rem;
    color: var(--fog);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
    font-weight: 500;
}

.contact-info-card .info-value {
    display: block;
    font-size: 1.15rem;
    color: var(--paper);
    font-weight: 600;
    position: relative;
    z-index: 2;
    line-height: 1.4;
}

.glass-input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--paper);
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
    font-size: 1.05rem;
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.glass-input:focus {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(249, 115, 22, 0.5);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
    color: var(--paper);
    outline: none;
}

.glass-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

/* ===================================================================
   PARTNERS SECTION - LOGO MARQUEE
   =================================================================== */
.partners-section {
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: var(--ink-100);
}

.partners-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
}

.partners-track {
    display: flex;
    gap: 6rem;
    align-items: center;
    width: max-content;
    animation: scrollLogos 30s linear infinite;
}

.partner-logo {
    height: 40px;
    width: auto;
    flex-shrink: 0;
    transition: opacity 0.4s ease, filter 0.4s ease, transform 0.4s ease;
    cursor: pointer;
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

.partners-wrapper:hover .partners-track {
    animation-play-state: paused;
}

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

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

    /* Moves exactly half to loop seamlessly */
}

@media (max-width: 991px) {
    .partners-track {
        gap: 3rem;
    }

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

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

/* ===================================================================
   BLOG & INSIGHTS - EDITORIAL GLASS GRID
   =================================================================== */
.blog-section {
    padding: 8rem 0;
    position: relative;
    z-index: 10;
}

.blog-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(249, 115, 22, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

.blog-img-wrapper {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.85);
}

.blog-card:hover .blog-img {
    transform: scale(1.05);
}

.blog-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-cat {
    color: var(--lime);
    font-weight: 600;
}

.blog-date {
    color: var(--fog);
}

.blog-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--paper);
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

/* Metrics row */
.hero-metrics {
    display: flex;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    flex-wrap: wrap;
}

.hero-metric {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.hero-metric-num {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--paper);
    line-height: 1;
}

.hero-metric-accent {
    color: var(--lime);
}

.hero-metric-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--fog);
}

.hero-metric-divider {
    width: 1px;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

/* Scroll cue */
.scroll-cue {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
}

.scroll-cue span {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    color: var(--fog);
    text-transform: uppercase;
}

.scroll-arrow {
    width: 1.25rem;
    height: 1.25rem;
    border-right: 1.5px solid var(--fog);
    border-bottom: 1.5px solid var(--fog);
    transform: rotate(45deg);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: rotate(45deg) translate(0, 0);
    }

    50% {
        transform: rotate(45deg) translate(4px, 4px);
    }
}

/* --------------------------------------------------------------------------
   Marquee Strips
   -------------------------------------------------------------------------- */
.marquee-strip {
    overflow: hidden;
    padding: 1.25rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(249, 115, 22, 0.04);
}

.marquee-strip.accent {
    background: var(--lime);
    border-color: transparent;
    transform: rotate(-1.2deg) scaleX(1.05);
    margin: 3rem 0;
    position: relative;
    z-index: 1;
}

.marquee-track {
    display: flex;
    width: max-content;
    align-items: center;
    animation: marqueeSlide 30s linear infinite;
}

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

.marquee-track.reverse {
    animation-direction: reverse;
    animation-duration: 35s;
}

.marquee-strip.accent .marquee-item {
    white-space: nowrap;
    padding: 0 1.5rem;
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
}

.marquee-strip:not(.accent) .marquee-item {
    white-space: nowrap;
    padding: 0 1.5rem;
    color: var(--fog);
    font-size: clamp(0.8rem, 1.2vw, 1rem);
    font-family: var(--font-mono);
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

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

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

/* --------------------------------------------------------------------------
   Stats Section
   -------------------------------------------------------------------------- */
.stats-section {
    background: var(--ink-90);
}

.stat-card {
    padding: 2.5rem 2rem;
    border: 1px solid var(--border);
    border-radius: 1.25rem;
    background: rgba(30, 64, 175, 0.04);
    transition: border-color var(--dur-med) var(--ease-smooth),
        transform var(--dur-med) var(--ease-smooth),
        box-shadow var(--dur-med) var(--ease-smooth);
    text-align: center;
}

.stat-card:hover {
    border-color: rgba(249, 115, 22, 0.35);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(249, 115, 22, 0.12);
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(11.5rem, 5vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.05em;
    color: var(--paper);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-suffix {
    color: var(--lime);
}

.stat-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--fog);
}

/* --------------------------------------------------------------------------
   Services Section
   -------------------------------------------------------------------------- */
.service-item {
    display: grid;
    grid-template-columns: 3rem 1fr auto;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border);
    transition: padding var(--dur-med) var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(249, 115, 22, 0.03) 0%, transparent 100%);
    opacity: 0;
    transition: opacity var(--dur-med);
    pointer-events: none;
}

.service-item:hover::before {
    opacity: 1;
}

.service-num {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--lime);
    letter-spacing: 0.05em;
}

.service-name {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.5vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--paper);
    position: relative;
    display: inline-block;
}

.service-name::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--lime), var(--navy-bright));
    transition: width 0.5s var(--ease-smooth);
}

.service-item:hover .service-name::after {
    width: 100%;
}

.service-item:hover .service-name {
    color: var(--lime);
    transition: color var(--dur-fast);
}

.service-arrow {
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fog);
    transition: border-color var(--dur-fast), color var(--dur-fast),
        transform var(--dur-med) var(--ease-smooth), background var(--dur-fast);
    flex-shrink: 0;
}

.service-item:hover .service-arrow {
    border-color: var(--lime);
    color: #fff;
    background: var(--lime);
    transform: rotate(45deg);
}

.service-desc {
    color: var(--fog);
    font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   Process Cards
   -------------------------------------------------------------------------- */
.process-card {
    position: relative;
    padding: 2.5rem;
    border: 1px solid var(--border);
    border-radius: 1.25rem;
    background: rgba(30, 64, 175, 0.05);
    height: 100%;
    overflow: hidden;
    transition: border-color var(--dur-med) var(--ease-smooth),
        transform var(--dur-med) var(--ease-smooth), box-shadow var(--dur-med);
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, var(--lime), var(--navy-bright), transparent);
    opacity: 0;
    transition: opacity var(--dur-med);
}

.process-card:hover {
    border-color: rgba(249, 115, 22, 0.25);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(249, 115, 22, 0.10);
}

.process-card:hover::before {
    opacity: 1;
}

.process-step-num {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 800;
    letter-spacing: -0.06em;
    color: rgba(100, 130, 255, 0.06);
    line-height: 1;
    margin-bottom: 2rem;
    transition: color var(--dur-med);
}

.process-card:hover .process-step-num {
    color: rgba(249, 115, 22, 0.14);
}

.process-card-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--paper);
    margin-bottom: 0.75rem;
}

.process-card p {
    font-size: 0.92rem;
    color: var(--fog);
}

/* --------------------------------------------------------------------------
   Portfolio Grid
   -------------------------------------------------------------------------- */
.work-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

@media (max-width: 767px) {
    .work-grid {
        grid-template-columns: 1fr;
    }
}

.work-grid .span-2 {
    grid-column: span 2;
}

@media (max-width: 767px) {
    .work-grid .span-2 {
        grid-column: span 1;
    }
}

.work-card {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 1px solid var(--border);
}

.work-card.tall {
    aspect-ratio: 3/4;
}

.work-card-img {
    width: 100%;
    height: 112%;
    margin-top: -6%;
    object-fit: cover;
}

.work-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 9, 26, 0.95) 0%, rgba(6, 9, 26, 0.5) 45%, transparent 100%);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    transition: opacity 0.4s var(--ease-smooth);
}

.work-card:hover .work-card-overlay {
    opacity: 1;
}

.work-card-content {
    transform: translateY(16px);
    transition: transform 0.5s var(--ease-smooth);
}

.work-card:hover .work-card-content {
    transform: translateY(0);
}

.work-card-cat {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 0.4rem;
}

.work-card-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--paper);
    line-height: 1.1;
}

/* --------------------------------------------------------------------------
   Testimonial
   -------------------------------------------------------------------------- */
.testimonial-section {
    background: var(--ink-90);
}

.testimonial-inner {
    max-width: 860px;
    margin-inline: auto;
    text-align: center;
}

.testimonial-quote {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3.5vw, 2.25rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.35;
    color: var(--paper);
    margin-bottom: 2.5rem;
}

.testimonial-avatar {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--lime);
    margin-bottom: 0.75rem;
}

.testimonial-name {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--paper);
    letter-spacing: -0.02em;
}

.testimonial-role {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    color: var(--fog);
    text-transform: uppercase;
    margin-top: 0.25rem;
}

/* --------------------------------------------------------------------------
   CTA Band
   -------------------------------------------------------------------------- */
.cta-section {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 2rem 0;
}

.cta-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 70% at 30% 50%, rgba(249, 115, 22, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse 50% 70% at 70% 50%, rgba(30, 64, 175, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 1.02;
    color: var(--paper);
    margin-bottom: 2rem;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

/* --------------------------------------------------------------------------
   Contact Section
   -------------------------------------------------------------------------- */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    border: 1px solid var(--border);
    border-radius: 1rem;
    background: rgba(30, 64, 175, 0.03);
    transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}

.contact-info-item:hover {
    border-color: rgba(249, 115, 22, 0.3);
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.08);
}

.contact-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background: rgba(249, 115, 22, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lime);
    flex-shrink: 0;
}

.contact-info-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--fog);
    margin-bottom: 0.25rem;
}

.contact-info-value {
    color: var(--paper);
    font-weight: 500;
    font-size: 0.95rem;
}

.contact-info-value a {
    color: var(--paper);
    text-decoration: none;
    transition: color var(--dur-fast);
}

.contact-info-value a:hover {
    color: var(--lime);
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--fog);
}

.form-control-custom {
    width: 100%;
    background: rgba(30, 64, 175, 0.05);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 0.85rem 1rem;
    color: var(--paper);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: border-color var(--dur-fast), background var(--dur-fast), box-shadow var(--dur-fast);
}

.form-control-custom::placeholder {
    color: var(--fog-2);
}

.form-control-custom:focus {
    border-color: rgba(249, 115, 22, 0.5);
    background: rgba(30, 64, 175, 0.08);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.10);
}

select.form-control-custom option {
    background: var(--ink-90);
}

textarea.form-control-custom {
    resize: none;
}

.form-alert {
    border-radius: 0.75rem;
    padding: 0.85rem 1rem;
    font-size: 0.9rem;
    display: none;
}

.form-alert.success {
    background: rgba(249, 115, 22, 0.10);
    border: 1px solid rgba(249, 115, 22, 0.35);
    color: var(--lime);
}

.form-alert.error {
    background: rgba(220, 38, 38, 0.10);
    border: 1px solid rgba(220, 38, 38, 0.35);
    color: #f87171;
}

.form-alert.show {
    display: block;
}

/* --------------------------------------------------------------------------
   Footer (Glass Border Classic)
   -------------------------------------------------------------------------- */
.site-footer {
    background: #06091a;
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-top: none;
}

.footer-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(249, 115, 22, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.4);
}

.footer-logo-wrap {
    display: inline-flex;
    align-items: center;
}

.footer-blurb {
    font-size: 1.05rem;
    color: var(--fog);
    line-height: 1.6;
    max-width: 320px;
    margin-bottom: 0;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    color: var(--paper);
    border: none;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
    background: rgba(249, 115, 22, 0.15);
    color: var(--lime);
    transform: translateY(-3px);
}

.footer-col-heading {
    font-family: var(--font-display);
    color: var(--paper);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    text-transform: none;
    letter-spacing: normal;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links li a {
    font-size: 0.95rem;
    color: var(--fog);
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links li a:hover {
    color: var(--lime);
    padding-left: 0.5rem;
}

.footer-bottom {
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer-copy {
    font-size: 0.9rem;
    color: var(--fog);
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    font-size: 0.9rem;
    color: var(--fog);
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-legal a:hover {
    color: var(--lime);
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }
}

/* ===================================================================
   PARTNERS SECTION - LOGO MARQUEE
   =================================================================== */
.partners-section {
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: var(--ink-100);
}

.partners-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
}

.partners-track {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    width: max-content;
    animation: scrollLogos 35s linear infinite;
}

.partner-card {
    background: rgb(255, 255, 255);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease, border-color 0.4s ease, background 0.4s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.partner-card:hover {
    transform: translateY(-5px);
    border-color: rgb(255, 145, 0);
    background: rgb(255, 255, 255);
}

.partner-logo {
    height: 50px;
    width: auto;
    flex-shrink: 0;
}

.partners-wrapper:hover .partners-track {
    animation-play-state: paused;
}

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

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

    /* gap is 2.5rem, half gap is 1.25rem */
}

@media (max-width: 991px) {
    .partners-track {
        gap: 1.5rem;
    }

    .partner-card {
        padding: 1rem 1.5rem;
    }

    .partner-logo {
        height: 40px;
    }

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

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

/* ===================================================================
   ABOUT PAGE & SUBPAGES DESIGN SYSTEM
   =================================================================== */

/* Subpage Header */
.subpage-header {
    position: relative;
    padding: 8rem 0 4rem 0;
    background: radial-gradient(circle at 50% 100%, rgba(249, 115, 22, 0.05) 0%, transparent 60%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.subpage-header-container {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.subpage-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--paper);
    margin-bottom: 1rem;
    letter-spacing: -0.04em;
}

.breadcrumb-nav {
    display: inline-flex;
    justify-content: center;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.breadcrumb-link {
    color: var(--fog);
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: var(--lime);
}

.breadcrumb-item.active {
    color: var(--lime);
}

/* About Intro Section */
.about-section {
    padding: 6rem 0;
}

.about-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (max-width: 991px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
}

.about-text-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-description {
    margin-bottom: 2.5rem;
}

.about-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--fog);
    margin-bottom: 1.5rem;
}

.about-lead {
    font-size: 1.25rem !important;
    color: var(--paper) !important;
}

.about-highlights {
    display: flex;
    gap: 1.5rem;
    width: 100%;
}

@media (max-width: 576px) {
    .about-highlights {
        flex-direction: column;
    }
}

.highlight-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1.25rem;
    padding: 2rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.highlight-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(249, 115, 22, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(249, 115, 22, 0.1);
}

.highlight-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.highlight-icon-wrapper {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.1);
    color: var(--lime);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.4s ease;
}

.highlight-card:hover .highlight-icon-wrapper {
    transform: scale(1.1);
    background: rgba(249, 115, 22, 0.2);
}

.highlight-num {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--paper);
    line-height: 1;
}

.highlight-label {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--fog);
    font-weight: 500;
}

/* Image content */
.about-image-content {
    position: relative;
    width: 100%;
}

.about-image-content .image-wrapper {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    aspect-ratio: 4 / 3;
}

.about-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.about-image-content:hover .about-main-img {
    transform: scale(1.03);
}

/* Why Choose Us Section (Mission, Vision, Values) */
.why-choose-section {
    padding: 6rem 0;
    position: relative;
    z-index: 10;
}

.why-choose-container {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.why-choose-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

@media (max-width: 991px) {
    .why-choose-top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.why-choose-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.why-choose-heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--paper);
    margin-bottom: 2rem;
}

.why-choose-heading .highlight-text {
    color: var(--lime);
}

.why-choose-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 9999px;
    border: 1px solid var(--border-h);
    background: transparent;
    color: var(--paper);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.why-choose-btn:hover {
    border-color: var(--lime);
    background: rgba(249, 115, 22, 0.08);
    color: var(--lime);
}

.why-choose-images {
    display: flex;
    gap: 1.5rem;
}

.why-img-card {
    flex: 1;
    border-radius: 1.5rem;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.why-img-styled {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.why-img-card:hover .why-img-styled {
    transform: scale(1.05);
}

.why-choose-cards {
    display: flex;
    gap: 1.5rem;
}

@media (max-width: 991px) {
    .why-choose-cards {
        flex-direction: column;
    }
}

.why-val-card {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-radius: 1.5rem;
    padding: 3rem 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.why-val-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.04) !important;
    border-color: rgba(249, 115, 22, 0.35) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(249, 115, 22, 0.1);
}

.why-val-icon-box {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.1);
    color: var(--lime);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.why-val-card:hover .why-val-icon-box {
    transform: scale(1.1);
    background: rgba(249, 115, 22, 0.25);
}

.why-val-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--paper);
    margin-bottom: 0.5rem;
}

.why-val-desc {
    font-size: 1.025rem;
    color: var(--fog);
    line-height: 1.6;
    margin: 0;
}

/* Benefits Casual Section */
.benefits-casual-section {
    padding: 6rem 0;
}

.section-header-centered {
    text-align: center;
    max-width: 45rem;
    margin: 0 auto 4rem auto;
    padding: 0 1.5rem;
}

.section-header-centered .section-desc {
    font-size: 1.15rem;
    color: var(--fog);
    line-height: 1.6;
    margin-top: 1.25rem;
}

.benefit-casual-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.benefit-casual-item:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(249, 115, 22, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.benefit-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(249, 115, 22, 0.15);
    line-height: 1;
    letter-spacing: -0.05em;
    transition: color 0.4s ease;
}

.benefit-casual-item:hover .benefit-number {
    color: var(--lime);
}

.benefit-title-casual {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--paper);
    margin-bottom: 0.75rem;
}

.benefit-desc-casual {
    font-size: 1rem;
    color: var(--fog);
    line-height: 1.6;
    margin: 0;
}

/* Certificate Showcase */
.cert-showcase-section {
    padding: 6rem 0;
}

.cert-showcase-container {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.cert-showcase-header {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

@media (max-width: 991px) {
    .cert-showcase-header {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.cert-showcase-header-right {
    display: flex;
    gap: 3rem;
    justify-content: flex-end;
}

@media (max-width: 991px) {
    .cert-showcase-header-right {
        justify-content: flex-start;
    }
}

.cert-showcase-stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cert-stat-num {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--paper);
    line-height: 1;
}

.cert-stat-label {
    font-size: 0.85rem;
    color: var(--fog);
    line-height: 1.4;
    max-width: 150px;
}

.cert-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

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

@media (max-width: 576px) {
    .cert-gallery-grid {
        grid-template-columns: 1fr;
    }
}

.cert-gallery-item {
    width: 100%;
}

.cert-frame {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    aspect-ratio: 3 / 4;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.cert-frame:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(249, 115, 22, 0.35);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4), 0 0 25px rgba(249, 115, 22, 0.1);
}

.cert-frame-img {
    width: 100%;
    height: 75%;
    object-fit: cover;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cert-frame-placeholder {
    width: 100%;
    height: 75%;
    background: radial-gradient(circle at center, #111827 0%, #030712 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-placeholder-inner {
    width: 100%;
    height: 100%;
    border: 1.5px double rgba(249, 115, 22, 0.3);
    border-radius: 0.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.cert-placeholder-ribbon {
    position: absolute;
    top: 0;
    left: 1.5rem;
    width: 1.5rem;
    height: 3rem;
    background: var(--lime);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 80%, 0 100%);
}

.cert-placeholder-text {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--paper);
    text-align: center;
    line-height: 1.2;
}

.cert-placeholder-seal {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.15);
    border: 1px dashed var(--lime);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-placeholder-seal span {
    font-size: 0.35rem;
    font-family: var(--font-mono);
    color: var(--lime);
    font-weight: 700;
}

.cert-frame-label {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    background: rgba(6, 9, 26, 0.4);
    height: 25%;
    justify-content: center;
}

.cert-label-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--paper);
    line-height: 1.2;
}

.cert-label-sub {
    font-size: 0.85rem;
    color: var(--fog);
}

.cert-frame-overlay {
    position: absolute;
    inset: 0;
    background: rgba(6, 9, 26, 0.95);
    display: flex;
    align-items: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s var(--ease-smooth);
    pointer-events: none;
}

.cert-frame:hover .cert-frame-overlay {
    opacity: 1;
    pointer-events: auto;
}

.cert-overlay-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transform: translateY(15px);
    transition: transform 0.4s var(--ease-smooth);
}

.cert-frame:hover .cert-overlay-content {
    transform: translateY(0);
}

.cert-overlay-badge {
    align-self: flex-start;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: var(--lime);
    text-transform: uppercase;
}

.cert-overlay-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--paper);
}

.cert-overlay-desc {
    font-size: 0.925rem;
    color: var(--fog);
    line-height: 1.5;
    margin: 0;
}

.cert-overlay-btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--lime);
    text-decoration: none;
    margin-top: 0.5rem;
}

.cert-overlay-btn svg {
    transition: transform 0.25s ease;
}

.cert-overlay-btn:hover svg {
    transform: translate(2px, -2px);
}

/* Bento Column Spans Utility */
.bento-col-12 {
    grid-column: span 12;
}

.bento-col-8 {
    grid-column: span 8;
}

.bento-col-6 {
    grid-column: span 6;
}

.bento-col-4 {
    grid-column: span 4;
}

@media (max-width: 991px) {

    .bento-col-12,
    .bento-col-8,
    .bento-col-6,
    .bento-col-4 {
        grid-column: span 12 !important;
    }
}

/* Bento Presence Wide Layout */
.bento-presence-wide {
    grid-column: span 12;
    padding: 3rem !important;
}

.presence-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

@media (max-width: 991px) {
    .presence-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.presence-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.presence-right {
    width: 100%;
}

.presence-details-grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
}

.presence-detail-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 1.25rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.presence-detail-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(249, 115, 22, 0.3);
    transform: translateX(6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.presence-detail-card .icon-wrap {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.1);
    color: var(--lime);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.presence-detail-card:hover .icon-wrap {
    transform: scale(1.1);
    background: rgba(249, 115, 22, 0.2);
}

.presence-detail-card .detail-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--fog);
    margin-bottom: 0.25rem;
}

.presence-detail-card .detail-val {
    display: block;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--paper);
}

/* Bento Color Modifier Classes */
.bento-orange-grad {
    background: linear-gradient(135deg, #c2410c 0%, #f97316 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.15);
}

.bento-orange-grad .bento-badge {

    color: #ffffff !important;
}

.bento-orange-grad .bento-badge .dot {
    background-color: #ffffff !important;
}

.bento-orange-grad .bento-title,
.bento-orange-grad .bento-subtitle,
.bento-orange-grad p,
.bento-orange-grad .bento-text-sm {
    color: #ffffff !important;
}

.bento-navy-grad {
    background: linear-gradient(135deg, #020617 0%, #1e3a8a 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 15px 35px rgba(30, 58, 138, 0.15);
}

.bento-navy-grad .bento-badge {

    color: var(--lime) !important;
}

.bento-navy-grad .bento-badge .dot {
    background-color: var(--lime) !important;
}

.bento-navy-grad .bento-title,
.bento-navy-grad .bento-subtitle,
.bento-navy-grad p,
.bento-navy-grad .bento-text-sm {
    color: #ffffff !important;
}

/* Cert Frame Bento Override */
.cert-gallery-item .cert-frame {
    aspect-ratio: auto !important;
    min-height: 250px;
    height: 100%;
}

/* Certificate Hover Overlay Colors */
.cert-frame-overlay.overlay-orange {
    background: linear-gradient(135deg, rgba(194, 65, 12, 0.96) 0%, rgba(249, 115, 22, 0.96) 100%) !important;
}

.cert-frame-overlay.overlay-orange .cert-overlay-badge {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.2) !important;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
}

.cert-frame-overlay.overlay-orange .cert-overlay-btn {
    color: #ffffff !important;
}

.cert-frame-overlay.overlay-navy {
    background: linear-gradient(135deg, rgba(2, 6, 23, 0.96) 0%, rgba(30, 58, 138, 0.96) 100%) !important;
}

.cert-frame-overlay.overlay-navy .cert-overlay-badge {
    color: var(--lime) !important;
    background: rgba(255, 255, 255, 0.1) !important;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
}

/* Service Bento Hover Effects */
.bento-box:hover .service-arrow-btn {
    background: var(--lime) !important;
    border-color: var(--lime) !important;
    color: var(--navy) !important;
    transform: scale(1.05);
}

.bento-box:hover .service-arrow-btn svg {
    transform: translateX(3px);
}

.bento-box:hover .service-link-text {
    color: #ffffff !important;
}

.bento-box.bento-orange-grad:hover .service-link-text,
.bento-box.bento-navy-grad:hover .service-link-text {
    color: var(--paper) !important;
}

.bento-box.bento-orange-grad:hover .service-arrow-btn,
.bento-box.bento-navy-grad:hover .service-arrow-btn {
    background: #ffffff !important;
    border-color: #ffffff !important;
    color: var(--navy) !important;
}

/* Bento Background Image Styling */
.bento-bg-img-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.bento-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.bento-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgb(0 0 0 / 68%) 0%, rgba(6, 9, 26, 0.94) 80%);
    transition: background 0.4s ease;
}

.bento-box:hover .bento-bg-img {
    transform: scale(1.06);
}

.bento-box:hover .bento-bg-overlay {
    background: linear-gradient(to bottom, rgba(6, 9, 26, 0.35) 0%, rgba(6, 9, 26, 0.88) 80%);
}

/* Color-Tinted Bento Background Overlays */
.bento-box.bento-navy-grad .bento-bg-overlay {
    background: linear-gradient(to bottom, rgba(2, 6, 23, 0.3) 0%, rgba(30, 58, 138, 0.94) 80%) !important;
}

.bento-box.bento-navy-grad:hover .bento-bg-overlay {
    background: linear-gradient(to bottom, rgba(2, 6, 23, 0.25) 0%, rgba(30, 58, 138, 0.88) 80%) !important;
}

.bento-box.bento-orange-grad .bento-bg-overlay {
    background: linear-gradient(to bottom, rgba(194, 65, 12, 0.3) 0%, rgba(249, 115, 22, 0.94) 80%) !important;
}

.bento-box.bento-orange-grad:hover .bento-bg-overlay {
    background: linear-gradient(to bottom, rgba(194, 65, 12, 0.25) 0%, rgba(249, 115, 22, 0.88) 80%) !important;
}

/* ===================================================================
   HOMEPAGE MOBILE RESPONSIVE TWEAKS & REFINEMENTS
   =================================================================== */
@media (max-width: 767px) {

    /* 1. Hero Section Sizing */
    .hero {
        padding-top: 5.5rem !important;
        padding-bottom: 3rem !important;
        min-height: auto !important;
    }

    .hero-content {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .hero-headline {
        font-size: clamp(2rem, 8vw, 2.6rem) !important;
        line-height: 1.05 !important;
        letter-spacing: -0.03em !important;
        margin-bottom: 1.25rem !important;
    }

    .hero-sub {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        margin-bottom: 1.75rem !important;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .hero-actions .btn-lime,
    .hero-actions .btn-outline {
        width: 100%;
        justify-content: center;
        padding: 0.85rem 1.5rem !important;
    }

    /* 2. Partners Marquee */
    .partner-logo {
        max-height: 28px !important;
    }

    /* 3. About Bento Grid Cards Padding */
    .bento-box {
        padding: 1.75rem !important;
        border-radius: 1.25rem !important;
    }

    .bento-large .bento-title {
        font-size: 1.6rem !important;
        line-height: 1.2 !important;
    }

    .stat-num-masked,
    .stat-num-gradient {
        font-size: 5rem !important;
    }

    .text-years {
        font-size: 1.1rem !important;
    }

    .text-expertise {
        font-size: 0.85rem !important;
    }

    /* 4. Products Sticky Scroll */
    .sticky-product-header {
        margin-bottom: 2rem !important;
    }

    .product-story-list {
        gap: 2.5rem !important;
    }

    .product-img-wrap {
        height: 260px !important;
        min-height: auto !important;
    }

    .product-content.glass-panel {
        padding: 1.75rem !important;
    }

    .product-content h3 {
        font-size: 1.6rem !important;
    }

    .product-content p {
        font-size: 0.95rem !important;
        margin-bottom: 1.5rem !important;
    }

    /* 6. Why Choose Us editorial feature list */
    .why-bg-img {
        height: 100% !important;
    }

    .why-editorial-item {
        padding: 1.5rem 0 !important;
        gap: 16px !important;
    }

    .editorial-num {
        font-size: 1.75rem !important;
    }

    .editorial-content h3 {
        font-size: 1.25rem !important;
    }

    .editorial-content p {
        font-size: 0.92rem !important;
    }

    /* 7. Gallery Marquee */
    .marquee-item {
        width: 180px !important;
        height: 120px !important;
    }

    /* 8. Featured Projects Staggered Grid items spacing */
    .project-card {
        margin-top: 1.5rem !important;
    }

    .project-img-wrapper {
        padding-top: 75% !important;
    }

    .project-content.glass-panel {
        padding: 1.5rem !important;
    }

    /* 9. Swiper Slide Testimonial cards */
    .testimonial-card {
        padding: 2rem 1.5rem !important;
    }

    .testi-text {
        font-size: 1rem !important;
    }

    /* 10. Contact Us command center section styling */
    .contact-glass-card {
        padding: 2rem 1rem !important;
        border-radius: 1.25rem !important;
    }

    .contact-title {
        font-size: 1.8rem !important;
    }

    .contact-desc {
        font-size: 0.95rem !important;
        margin-bottom: 2rem !important;
    }

    .contact-form-wrapper {
        padding: 1.5rem !important;
        border-radius: 1.25rem !important;
    }

    .glass-input {
        padding: 10px 14px !important;
        font-size: 0.92rem !important;
    }

    /* 11. Global Mobile Layout Containment Shield */
    body * {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .partners-track,
    .partners-track *,
    .marquee-track,
    .marquee-track *,
    .swiper-wrapper,
    .swiper-wrapper *,
    .parallax-grid-bg,
    .parallax-grid-wrapper,
    .hero-bg-layers,
    .hero-spotlight-video,
    .hero-spotlight-video video {
        max-width: none !important;
    }
}

@media (max-width: 480px) {

    /* Tiny screens */
    .contact-info-card {
        padding: 1.25rem 1rem !important;
    }

    .info-icon {
        width: 2.5rem !important;
        height: 2.5rem !important;
        font-size: 1.1rem !important;
    }

    .info-value {
        font-size: 0.9rem !important;
    }
}

.px-custom {
    padding-left: 5px;
    padding-right: 5px;
}