/* 
   Theme Name: Sarvix Infrastructure
   Theme URI: https://sarvix.com
   Author: Dushyant Goswami and Yash Bhardwaj
   Author URI: https://sarvix.com
   Description: A premium, high-performance WordPress theme for industrial infrastructure and logistics supply.
   Version: 1.0.0
   Text Domain: sarvix
   
   Sarvix — Main Stylesheet
   Modern industrial design system for premium infrastructure solutions.
*/


/* ============================================================
   BRAND FONTS
   ============================================================ */
@font-face {
    font-family: 'Whyte Inktrap';
    src: url('fonts/sarvix-heading-regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Whyte Inktrap';
    src: url('fonts/sarvix-heading-bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Haas Grotesk';
    src: url('fonts/sarvix-body-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Haas Grotesk';
    src: url('fonts/sarvix-body-medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Haas Grotesk';
    src: url('fonts/sarvix-body-bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
    --clr-primary: #1a1a3a;
    --clr-accent: #ff6a00;
    --clr-accent-hover: #e65c00;
    --clr-secondary: #f8f9fa;
    --clr-text: #1e1e2e;
    --clr-text-muted: #5a5a72;
    --clr-white: #ffffff;
    --clr-top-bar: #0f0f2d;

    --ff-main: 'Neue Haas Grotesk', sans-serif;
    --ff-heading: 'Whyte Inktrap', sans-serif;

    --container-width: 1180px;
    --header-height: 80px;
    /* Increased from 60px */
    --top-bar-height: 40px;
    /* Increased from 32px */

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.14);
}

/* ============================================================
   RESET
   ============================================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--ff-heading) !important;
    font-weight: 700;
    line-height: 1.1;
    color: var(--clr-primary);
}

h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    /* Responsive: 2rem mobile → 3.5rem desktop */
}

body {
    font-family: var(--ff-main) !important;
    line-height: 1.6;
    color: var(--clr-text);
    background: var(--clr-white);
    overflow-x: hidden;
}

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

/* ============================================================
   ANIMATION FOUNDATIONS
   ============================================================ */
.gs-reveal {
    opacity: 0;
    transform: translateY(15px);
    will-change: opacity, transform;
}

.gs-reveal-stagger>* {
    opacity: 0;
    transform: translateY(15px);
    will-change: opacity, transform;
}

.image-reveal-wrapper {
    overflow: hidden;
    position: relative;
}

.image-reveal-wrapper img {
    opacity: 0;
    transform: scale(1.05) translateY(10px);
    transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.8s ease;
}

.image-reveal-wrapper.active img {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* Global Typography Helpers */
.sub-heading {
    display: block;
    color: var(--clr-accent);
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 3px;
    font-size: 14px;
    margin-bottom: 20px;
}

.lead-text {
    font-family: var(--ff-main);
    color: var(--clr-text-muted);
    font-size: 18px;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    width: 100%;
    z-index: 1000;
    position: sticky;
    top: 0;
    background: var(--clr-white);
    transition: var(--transition);
}

/* Top Bar */
.top-bar {
    background: var(--clr-top-bar);
    color: var(--clr-white);
    font-size: 0.78rem;
    height: var(--top-bar-height);
    display: flex;
    align-items: center;
    font-weight: 400;
    /* Removed bold */
    letter-spacing: 0.2px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.top-left {
    font-weight: 400;
}

.top-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-separator {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.2);
}

.top-left span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-phone {
    font-weight: 400;
    color: var(--clr-white) !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-left i,
.top-phone i {
    color: var(--clr-accent);
}

.top-socials {
    display: flex;
    gap: 14px;
}

.top-socials i {
    color: var(--clr-white);
}

.top-socials a:hover i {
    color: var(--clr-accent);
}

/* Main Nav - V18 Pure Fixed Sync */
.main-nav {
    background: var(--clr-white);
    height: var(--header-height);
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    padding: 15px 0;
}

.is-sticky .main-nav {
    height: 65px;
    padding: 0;
    box-shadow: var(--shadow);
    border-bottom: none;
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    height: 52px;
    width: auto;
    max-width: 190px;
    image-rendering: -webkit-optimize-contrast;
    transition: var(--transition);
}

.is-sticky .logo img {
    height: 44px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    font-family: var(--ff-heading);
    font-weight: 600;
    font-size: 1.08rem;
    color: var(--clr-primary);
    padding: 10px 0;
}

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

/* Dropdown */
.has-dropdown>a::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 9px;
    margin-left: 6px;
    transition: var(--transition);
    display: inline-block;
}

.has-dropdown:hover>a::after {
    transform: rotate(180deg);
}

.dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: var(--clr-white);
    min-width: 210px;
    box-shadow: var(--shadow-lg);
    padding: 12px 0;
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition);
    z-index: 100;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    padding: 10px 22px;
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    font-family: var(--ff-main);
    color: var(--clr-primary);
}

.dropdown li a:hover {
    background: var(--clr-secondary);
    color: var(--clr-accent);
    padding-left: 28px;
}

/* Sticky header */
/* Removed redundant site-header block */

.site-header.is-sticky {
    box-shadow: var(--shadow);
    padding: 0;
    animation: slideDown 0.35s ease-out;
}

.site-header.is-sticky .top-bar {
    display: none;
}

main {
    padding-top: 0; 
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

/* Premium Ripple Button */
.contactButton,
.btn-primary {
    --btn-color: var(--clr-accent);
    --color: var(--clr-accent);
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 45px;
    height: 58px;
    line-height: 1;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border: 1px solid var(--clr-accent);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    font-size: 15px;
    border-radius: 50px;
    font-weight: 700;
    color: var(--clr-accent);
    text-transform: uppercase;
    background: transparent;
    width: auto;
    min-width: 200px;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.contactButton:before,
.btn-primary:before {
    content: "";
    position: absolute;
    z-index: -1;
    background: var(--btn-color);
    height: 200px;
    width: 200px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.contactButton:hover,
.btn-primary:hover {
    color: var(--clr-white) !important;
}

.contactButton:hover:before,
.btn-primary:hover:before {
    transform: translate(-50%, -50%) scale(4);
}

.contactButton:active:before,
.btn-primary:active:before {
    background: var(--clr-accent-hover);
    transition: background 0s;
}


.mobile-toggle {
    display: none;
}

/* ============================================================
   HERO SECTION
   Layout: white top half (text) + image bottom half + stats bar
   ============================================================ */
.hero {
    position: relative;
    background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.7)), url('../images/hero-natural.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    height: 92vh;
    min-height: 650px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Text area: upper section, dark text on white/faded bg */
.hero-body {
    position: relative;
    z-index: 3;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 100px 0 80px;
    /* Increased padding for more height */
    min-height: 480px;
    /* Increased min-height */
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Tag pill styling */

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--clr-white);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out both;
}

.hero-badge i {
    color: var(--clr-accent);
    font-size: 14px;
}

/* H1 — dark navy, accent word in orange */
.hero-content h1 {
    font-size: clamp(2.4rem, 6vw, 4.06rem);
    /* Matches 65px desktop / 45px mobile */
    color: var(--clr-white) !important;
    line-height: 1.1;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.hero-content h1 .accent {
    color: var(--clr-accent);
}

/* Subtext */
.hero-content p {
    font-size: clamp(0.9rem, 1.1vw, 1.05rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 32px;
}

/* Buttons */
.hero-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Removed previous btn-primary as it's now unified with contactButton styles */



/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes subtleZoom {
    from {
        transform: scale(1.05);
    }

    to {
        transform: scale(1.0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {

    .nav-links,
    .nav-cta,
    .top-bar {
        display: none;
    }

    .mobile-toggle {
        display: block;
        font-size: 1.4rem;
        cursor: pointer;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        border-radius: 12px 12px 0 0;
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }

    .stat-item:nth-child(3) {
        border-top: 1px solid rgba(0, 0, 0, 0.07);
    }

    .stat-item:nth-child(4) {
        border-top: 1px solid rgba(0, 0, 0, 0.07);
        border-right: none;
    }

    .hero-body {
        padding-top: 48px;
        padding-bottom: 120px;
    }

}

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

    .stat-item {
        padding: 24px 14px;
    }

    .hero-content h1 {
        font-size: 1.9rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

}

/* ============================================================
   STATS OVERLAP
   ============================================================ */
.stats-overlap {
    position: relative;
    z-index: 10;
    margin-top: -65px;
    /* Pulls half into hero */
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--clr-white);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
}

.stat-item {
    padding: 35px 20px;
    text-align: center;
    border-right: 1px solid #f0f0f0;
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: var(--ff-heading);
    line-height: 1;
    margin-bottom: 10px;
    /* Premium Outlined Style */
    color: transparent;
    -webkit-text-stroke: 1.5px var(--clr-accent);
}

.stat-label {
    font-size: 14px;
    color: var(--clr-text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* ============================================================
   ABOUT PREMIUM SECTION
   ============================================================ */
.about-premium {
    padding: 80px 0;
    overflow: hidden;
}

/* Header Row */
.about-header-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Center alignment for better balance */
    margin-bottom: 60px;
    border-bottom: 2px solid #f0f0f0;
    /* Subtle divider for alignment reference */
    padding-bottom: 30px;
}

.about-header-left span {
    display: block;
    color: var(--clr-accent);
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 3px;
    font-size: 14px;
    margin-bottom: 20px;
}

.about-header-left h2 {
    color: var(--clr-primary);
    max-width: 1000px;
}

/* Main Content Grid (12 Columns) */
.about-main-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 40px;
    /* Increased gap for breathing room */
    align-items: stretch;
    /* Match height of image and text area */
}

/* Left Column - Large Vertical Image */
.about-image-primary {
    grid-column: span 4;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    /* Ensure it matches the content side height if possible */
}

.about-image-primary img {
    width: 100%;
    height: 100%;
    /* Force height to match container */
    object-fit: cover;
    display: block;
}

/* Right Column - Multi-Grid Content */
.about-content-complex {
    grid-column: span 8;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}


.complex-text-area {
    grid-column: span 2;
    /* Occupy full width since image is removed */
}

.complex-text-area h3 {
    font-size: 1.75rem;
    color: var(--clr-primary);
    margin-bottom: 20px;
}

.complex-text-area p {
    color: var(--clr-text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Feature Checklist */
.premium-checklist {
    list-style: none;
}

.premium-checklist li {
    display: flex;
    align-items: flex-start;
    /* Better for multi-line points */
    gap: 15px;
    margin-bottom: 15px;
    font-weight: 500;
    color: var(--clr-primary);
    font-size: 17px;
}

.premium-checklist li i {
    color: var(--clr-accent);
    font-size: 18px;
    margin-top: 2px;
    /* Precise icon alignment with first line */
}

/* Quote/Bold Text Area */
.premium-summary {
    grid-column: span 2;
    margin-top: 20px;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--clr-primary);
}

.premium-summary .accent {
    color: var(--clr-accent);
}

/* Leaders Counter (Repositioned to Content Side) */
.leaders-overlay {
    background: #f8f9fa;
    padding: 15px 25px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.avatar-group {
    display: flex;
}

.avatar-group img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid #fff;
    margin-right: -15px;
}

.avatar-plus {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--clr-accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #fff;
    font-size: 18px;
}

.leaders-text span {
    display: block;
}

.leaders-text .number {
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--clr-accent);
}

.leaders-text .label {
    font-size: 12px;
    color: var(--clr-text-muted);
}

/* Partners Logo Grid */
.partners-grid {
    grid-column: span 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 40px;
}

.partner-box {
    background: #f8f9fa;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: var(--transition);
    padding: 10px;
}

.partner-box img {
    max-width: 80%;
    max-height: 30px;
    filter: grayscale(1);
    opacity: 0.6;
}

.partner-box:hover {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.partner-box:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .about-main-grid {
        grid-template-columns: 1fr;
    }

    .about-image-primary,
    .about-content-complex {
        grid-column: span 1;
    }

    .about-header-grid {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .about-content-complex {
        grid-template-columns: 1fr;
    }

    .complex-top-left-img,
    .complex-text-area,
    .premium-summary,
    .partners-grid {
        grid-column: span 1;
    }

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

/* ============================================================
   CREATIVE SOLUTIONS WALL (REPLACES PRODUCTS GRID)
   ============================================================ */
.products-section {
    padding: 80px 0;
    background: #fff;
}

.bento-grid {
    display: flex;
    gap: 25px;
    height: 650px;
}

.bento-large {
    flex: 1.6;
    height: 100%;
}

.bento-stack {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.bento-tile {
    position: relative;
    background: #0a0a0f;
    border-radius: 35px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.bento-small {
    flex: 1;
}

.bento-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1), opacity 0.5s;
    filter: grayscale(20%);
}

.bento-tile:hover .bento-bg {
    transform: scale(1.1);
    opacity: 0.9;
    filter: grayscale(0%);
}

/* Glass Overlay */
.bento-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 10, 15, 0) 0%, rgba(10, 10, 15, 0.8) 100%);
    z-index: 2;
}

/* Tech Scan Animation */
.bento-scan-line {
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--clr-accent), transparent);
    opacity: 0;
    z-index: 3;
    pointer-events: none;
}

.bento-tile:hover .bento-scan-line {
    animation: techScan 2s infinite linear;
    opacity: 0.2;
}

@keyframes techScan {
    0% {
        top: -20%;
    }

    100% {
        top: 120%;
    }
}

/* Corner Markers Shared Style */
.corner-marker,
.tile-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid var(--clr-accent);
    z-index: 4;
    opacity: 0.4;
    transition: var(--transition);
}

.top-left {
    top: 30px;
    left: 30px;
    border-right: 0 !important;
    border-bottom: 0 !important;
}

.bottom-right {
    bottom: 30px;
    right: 30px;
    border-left: 0 !important;
    border-top: 0 !important;
}

/* Refined Hover: No glowing squares */
.bento-tile:hover .corner-marker,
.holdings-tile:hover .tile-corner {
    opacity: 1;
    width: 40px;
    height: 40px;
    /* Removed box-shadow */
}

/* Metadata & Content */
.bento-number {
    position: absolute;
    top: 40px;
    right: 40px;
    font-family: var(--ff-heading);
    font-size: 5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    z-index: 3;
    line-height: 1;
}

.bento-metadata {
    position: absolute;
    top: 40px;
    left: 40px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.meta-item span {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    color: var(--clr-accent);
    letter-spacing: 2px;
    margin-bottom: 4px;
    font-family: monospace;
}

.meta-item strong {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.bento-content {
    position: absolute;
    bottom: 45px;
    left: 45px;
    right: 45px;
    z-index: 5;
}

.bento-small .bento-content {
    bottom: 30px;
    left: 30px;
    right: 30px;
}

.category {
    color: var(--clr-accent);
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 15px;
}

.bento-tile h3 {
    color: #fff;
    font-size: 2.2rem;
    line-height: 1.1;
    margin-bottom: 25px;
    max-width: 400px;
}

.bento-small h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.bento-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bento-cta i {
    color: var(--clr-accent);
    transition: transform 0.3s;
}

.bento-cta:hover i {
    transform: translateX(8px);
}

.bento-link {
    width: 45px;
    height: 45px;
    background: var(--clr-accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    position: absolute;
    bottom: 30px;
    right: 30px;
}

.bento-mini-meta {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-family: monospace;
}

/* Corporate Holdings Dashboard - High-End Bento Redesign */
.holdings-section {
    padding: 80px 0;
    background-color: var(--clr-secondary);
    background-image:
        radial-gradient(circle at 2px 2px, rgba(0, 0, 0, 0.05) 1px, transparent 0);
    background-size: 30px 30px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.holdings-dashboard {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: auto auto;
    gap: 30px;
    margin-top: 60px;
}

.holdings-tile {
    position: relative;
    border-radius: 35px;
    padding: 60px 50px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Tile Layout Specifics */
.tile-featured {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tile-navy {
    background-color: var(--clr-primary);
    background-size: cover;
    background-position: center;
    color: #fff;
    box-shadow: 0 30px 60px rgba(26, 26, 58, 0.2);
    position: relative;
    z-index: 1;
}

.tile-navy::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 58, 0.95), rgba(26, 26, 58, 0.6));
    z-index: -1;
}

.tile-white {
    background: #fff;
    color: var(--clr-text);
    box-shadow: var(--shadow);
}

.tile-compliance {
    background: #fff;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    border: 1px solid var(--clr-primary);
    box-shadow: inset 0 0 40px rgba(26, 26, 58, 0.02);
}

/* Shared Tile Elements */
.tile-scan-line {
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to bottom, transparent, var(--clr-accent), transparent);
    opacity: 0;
    z-index: 3;
}

.holdings-tile:hover .tile-scan-line {
    animation: techScan 2.5s infinite linear;
    opacity: 0.15;
}

/* Metadata Styling */
.tile-meta {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.meta-bit span {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    color: var(--clr-accent);
    letter-spacing: 2px;
    font-weight: 800;
    margin-bottom: 5px;
}

.meta-bit strong {
    font-size: 14px;
    font-family: monospace;
    opacity: 0.9;
}

.tile-navy h3 {
    color: #fff;
    font-size: 3rem;
    font-family: var(--ff-heading);
    margin-bottom: 25px;
    letter-spacing: -1.5px;
}

.tile-white h3 {
    font-size: 2.2rem;
    font-family: var(--ff-heading);
    margin-bottom: 20px;
    color: var(--clr-primary);
}

.tile-content p {
    font-size: 17px;
    line-height: 1.7;
    opacity: 0.8;
}

.tile-tags {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.tile-tags span {
    font-size: 12px;
    font-family: monospace;
    color: var(--clr-accent);
    background: rgba(255, 106, 0, 0.1);
    padding: 5px 12px;
    border-radius: 4px;
}

.tile-list {
    list-style: none;
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tile-list li {
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tile-list li i {
    color: var(--clr-accent);
}

/* Compliance Ledger Styling */
.legal-header {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--clr-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 20px;
}

.ledger-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ledger-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    padding-bottom: 8px;
}

.ledger-row .label {
    color: var(--clr-text-muted);
    font-weight: 600;
}

.ledger-row .val {
    color: var(--clr-primary);
    font-weight: 700;
    text-align: right;
}

.ledger-stamp {
    margin-top: auto;
    background: #f0f7ff;
    color: #2b7fff;
    padding: 15px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 800;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px dashed rgba(43, 127, 255, 0.3);
}

@media (max-width: 1100px) {
    .holdings-dashboard {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .bento-grid {
        flex-direction: column;
        height: auto;
    }

    .bento-large {
        height: 500px;
    }

    .bento-small {
        height: 350px;
    }
}

/* ============================================================
   SYSTEMATIC RELIABILITY (SARVIX HYBRID GRID)
   ============================================================ */
.protocol-section {
    padding: 80px 0;
    background: #f3f5f7;
    /* Matching the screenshot's light bg */
    color: var(--clr-text);
    position: relative;
    overflow: hidden;
}

.protocol-hybrid-parent {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    align-items: stretch;
}

/* Side Cards Grid (2x2) */
.protocol-mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.protocol-mini-card {
    padding: 50px 40px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.protocol-mini-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.protocol-mini-card .card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
}

.protocol-mini-card h4 {
    font-family: var(--ff-heading);
    font-size: 2.2rem;
    font-weight: 700;
}

.protocol-mini-card p {
    font-family: var(--ff-main);
    font-size: 16px;
    line-height: 1.6;
}

.protocol-mini-card a.read-more {
    font-family: var(--ff-heading);
    color: var(--clr-accent);
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: auto;
}

/* Color Variants */
.card-white {
    background: #fff;
    color: var(--clr-primary);
}

.card-navy {
    background: var(--clr-primary);
    color: #fff;
    border: none;
}

.card-navy h4 {
    color: #fff;
}

.card-navy p {
    color: rgba(255, 255, 255, 0.7);
}

/* Featured Side Card (Tall) */
.protocol-featured-tall {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.protocol-featured-tall .featured-content {
    padding: 60px 50px;
    position: relative;
    z-index: 5;
}

.protocol-featured-tall .sub-heading {
    margin-bottom: 20px;
}

.protocol-featured-tall h2 {
    font-family: var(--ff-heading);
    font-size: 2.8rem;
    line-height: 1.1;
    color: var(--clr-primary);
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.protocol-featured-tall p {
    font-family: var(--ff-main);
    font-size: 17px;
    color: var(--clr-text-muted);
    margin-bottom: 35px;
}

.protocol-featured-tall .featured-img-wrap {
    margin-top: auto;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.protocol-featured-tall img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================================
   ENGINEERED PROJECTS (IMAGE ACCORDION)
   ============================================================ */
.projects-section {
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
}

.projects-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Centering solves the 'odd' hanging button issue */
    margin-bottom: 80px;
    gap: 60px;
}

.projects-header-left {
    flex: 1;
    max-width: 600px;
}

.projects-header-left .sub-heading {
    color: var(--clr-accent);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 20px;
}

.projects-header-left h2 {
    color: var(--clr-primary);
}

.projects-header-right {
    flex: 1.5;
    max-width: 750px;
}

.projects-header-right p {
    font-family: var(--ff-main);
    color: var(--clr-text-muted);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
    margin-top: 0;
    /* Centering will handle vertical positioning now */
}

/* Local smaller button override */
.projects-header-right .contactButton {
    height: 46px;
    padding: 0 24px;
    font-size: 13px;
    min-width: 120px;
}

/* Testimonials Header Specifics to keep heading on one line */
.testimonials-section .projects-header-left {
    flex: 2;
    max-width: none;
}

.testimonials-section .projects-header-left h2 {
    font-size: 3rem;
    /* Slightly smaller to fit in one line */
    white-space: nowrap;
}

.testimonials-section .projects-header-right {
    flex: 1;
}

/* Accordion Logic */
.projects-accordion {
    display: flex;
    width: 100%;
    height: 650px;
    gap: 15px;
}

.accordion-item {
    position: relative;
    flex: 1;
    height: 100%;
    overflow: hidden;
    border-radius: 40px;
    background-size: cover;
    background-position: center;
    transition: all 0.7s cubic-bezier(0.25, 1, 0.45, 1);
    cursor: pointer;
}

.accordion-item:hover {
    flex: 5;
}

/* Content Overlay */
.accordion-item .accordion-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 60px 50px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    opacity: 1;
    transition: all 0.5s ease;
}

.accordion-item .accordion-content {
    opacity: 0;
    visibility: hidden;
    /* Added visibility for cleaner removal */
    transform: translateY(30px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    /* Faster exit, no delay */
    max-width: 450px;
    pointer-events: none;
}

.accordion-item:hover .accordion-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.5s ease 0.3s, transform 0.5s ease 0.3s, visibility 0.5s 0.3s;
    /* Delay only for entry */
    pointer-events: auto;
}

.accordion-item h3 {
    font-family: var(--ff-heading);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
    color: #fff;
}

.accordion-item .read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--clr-accent);
    font-family: var(--ff-heading);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    text-decoration: none;
    margin-top: 15px;
}

/* Background Zoom Effect */
.accordion-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    transition: transform 1.2s cubic-bezier(0.25, 1, 0.45, 1);
    z-index: -1;
}

.accordion-item:hover::before {
    transform: scale(1.1);
}

/* Mobile Responsiveness */
/* ============================================================
   TESTIMONIALS (VOICES OF EXCELLENCE)
   ============================================================ */
.testimonials-section {
    padding: 80px 0;
    background: #f3f5f7;
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: #fff;
    padding: 60px 45px;
    border-radius: 40px;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.45, 1);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.testimonial-card .quote-icon {
    font-size: 50px;
    color: rgba(0, 0, 0, 0.05);
    position: absolute;
    top: 40px;
    right: 40px;
}

.testimonial-card .rating-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 25px;
}

.testimonial-card .rating-stars i {
    color: var(--clr-accent);
    font-size: 14px;
}

.testimonial-card p {
    font-family: var(--ff-main);
    font-size: 18px;
    line-height: 1.7;
    color: var(--clr-text-muted);
    margin-bottom: 40px;
    font-style: italic;
}

.testimonial-card .bio-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: auto;
}

.testimonial-card .profile-img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    overflow: hidden;
    background: #eee;
}

.testimonial-card .profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card .profile-info h4 {
    font-family: var(--ff-heading);
    font-size: 1.2rem;
    color: var(--clr-primary);
    font-weight: 700;
    margin-bottom: 4px;
}

.testimonial-card .profile-info span {
    font-size: 14px;
    color: var(--clr-accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

    .testimonial-card {
        padding: 50px 35px;
    }
}

/* ============================================================
   PROJECT INQUIRY (CTA + CONTACT FORM)
   ============================================================ */

/* Refined Project Inquiry Section */
.inquiry-section {
    padding: 80px 0;
    position: relative;
    background-image: url('../images/project-urban.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    overflow: hidden;
}

.inquiry-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 15, 30, 0.95) 0%, rgba(0, 15, 30, 0.8) 100%);
    z-index: 1;
}

.inquiry-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.inquiry-content .sub-heading {
    margin-bottom: 20px;
}

.inquiry-content h2 {
    color: #ffffff !important;
    margin-bottom: 30px;
}

.inquiry-content p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    /* Improved contrast */
    margin-bottom: 50px;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.benefit-item i {
    color: var(--clr-accent);
    font-size: 24px;
    margin-top: 5px;
}

.benefit-item h5 {
    font-family: var(--ff-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #ffffff !important;
    /* Force visibility */
}

.benefit-item p {
    margin-bottom: 0;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    /* Improved contrast */
}

/* Glassmorphism Form Card */
.inquiry-form-card {
    background: rgba(15, 23, 42, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 60px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.inquiry-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group-full {
    grid-column: span 2;
}

.inquiry-form label {
    display: block;
    font-family: var(--ff-heading);
    font-weight: 700;
    color: #ffffff;
    /* Explicit white labels */
    font-size: 13px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
    width: 100%;
    padding: 18px 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    font-family: var(--ff-main);
    font-size: 15px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
    outline: none;
    border-color: var(--clr-accent);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(253, 156, 0, 0.1);
}

.inquiry-form select option {
    background: #000f1e;
    color: #fff;
}

.inquiry-form .contactButton {
    grid-column: span 2;
    padding: 22px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    width: 100%;
    margin-top: 15px;
    border: none;
    cursor: pointer;
    background-color: var(--clr-accent);
    /* Make it a solid action button */
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}

.inquiry-form .contactButton:hover {
    background-color: var(--clr-accent-hover);
    transform: translateY(-2px);
}

@media (max-width: 1100px) {
    .inquiry-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .inquiry-content h2 {
        font-size: 45px;
    }
}

@media (max-width: 768px) {
    .inquiry-content h2 {
        font-size: 38px;
    }

    .inquiry-form-card {
        padding: 40px 30px;
    }

    .inquiry-form {
        grid-template-columns: 1fr;
    }

    .form-group-full {
        grid-column: span 1;
    }

    .inquiry-form .contactButton {
        grid-column: span 1;
    }
}

/* ============================================================
   MEET THE EXPERTS (TEAM SECTION)
   ============================================================ */
.team-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.team-intro .sub-heading {
    margin-bottom: 20px;
}

.team-intro h2 {
    margin-bottom: 20px;
}

.team-intro p {
    font-size: 18px;
    color: var(--clr-text-muted);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.team-img-wrap {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 20px;
}

.team-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* Social Overlay */
.team-overlay {
    position: absolute;
    bottom: -80px;
    left: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.45, 1);
    opacity: 0;
}

.team-card:hover .team-overlay {
    bottom: 0;
    opacity: 1;
}

.team-overlay a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition);
}

.team-overlay a:hover {
    background: var(--clr-accent);
    transform: translateY(-3px);
}

.team-info {
    padding: 25px 0 10px;
    text-align: center;
}

.team-info h4 {
    font-family: var(--ff-heading);
    font-size: 24px;
    color: var(--clr-primary);
    margin-bottom: 5px;
}

.team-info span {
    font-size: 15px;
    color: var(--clr-accent);
    font-weight: 600;
}

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

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

    .team-intro h2 {
        font-size: 36px;
    }
}

/* ============================================================
   GLOBAL FOOTER (COMPACT & LIGHT THEME)
   ============================================================ */
.footer-section {
    background-color: #f4f7fa;
    padding: 40px 0 0;
    color: var(--clr-primary);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 30px;
    padding-bottom: 30px;
}

.footer-widget .footer-logo {
    max-width: 180px;
    /* Slightly smaller for compactness */
    margin-bottom: 20px;
}

.footer-widget p {
    color: var(--clr-text-muted);
    line-height: 1.6;
    font-size: 14px;
    margin-bottom: 15px;
}

.footer-widget h4 {
    font-family: var(--ff-heading);
    font-size: 18px;
    color: var(--clr-primary);
    margin-bottom: 18px;
    font-weight: 700;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--clr-text-muted);
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--clr-accent);
    transform: translateX(5px);
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
    color: var(--clr-text-muted);
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(15, 23, 42, 0.08);
    color: var(--clr-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--clr-accent);
    color: #fff;
    transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #dce4ee;
    padding: 18px 0;
    background: #edf1f5;
}

.footer-bottom-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
}

.footer-copy {
    text-align: left;
}

.footer-dev {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.footer-dev span {
    font-size: 13px;
    color: var(--clr-text-muted);
    font-weight: 500;
}

.footer-dev img {
    height: 40px;
    width: auto;
    transition: var(--transition);
}

.footer-dev a:hover img {
    transform: scale(1.05);
}

.footer-extra {
    text-align: right;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: var(--clr-text-muted);
    text-decoration: none;
    font-size: 13px;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--clr-accent);
}

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

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

    .footer-bottom-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 15px;
    }

    .footer-copy, .footer-extra {
        text-align: center;
    }

    .footer-dev {
        order: -1;
        margin-bottom: 5px;
    }
}


/* ============================================================
   PREMIUM ANIMATION SYSTEM
   ============================================================ */
:root {
    --anim-duration: 0.8s;
    --anim-ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

[data-reveal] {
    opacity: 0;
    transition: transform var(--anim-duration) var(--anim-ease),
        opacity var(--anim-duration) var(--anim-ease),
        filter var(--anim-duration) var(--anim-ease);
    will-change: transform, opacity;
}

[data-reveal="up"] {
    transform: translateY(40px);
}

[data-reveal="left"] {
    transform: translateX(-40px);
}

[data-reveal="right"] {
    transform: translateX(40px);
}

[data-reveal="zoom"] {
    transform: scale(0.9);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translate(0) scale(1);
    filter: blur(0);
}

/* Staggered Delay Utilities (supports up to 12 items) */
[data-reveal-stagger]>* {
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.6s var(--anim-ease),
        opacity 0.6s var(--anim-ease);
}

[data-reveal-stagger].revealed>* {
    opacity: 1;
    transform: translateY(0);
}

[data-reveal-stagger].revealed>*:nth-child(1) {
    transition-delay: 0.1s;
}

[data-reveal-stagger].revealed>*:nth-child(2) {
    transition-delay: 0.2s;
}

[data-reveal-stagger].revealed>*:nth-child(3) {
    transition-delay: 0.3s;
}

[data-reveal-stagger].revealed>*:nth-child(4) {
    transition-delay: 0.4s;
}

[data-reveal-stagger].revealed>*:nth-child(5) {
    transition-delay: 0.5s;
}

[data-reveal-stagger].revealed>*:nth-child(6) {
    transition-delay: 0.6s;
}

[data-reveal-stagger].revealed>*:nth-child(7) {
    transition-delay: 0.7s;
}

[data-reveal-stagger].revealed>*:nth-child(8) {
    transition-delay: 0.8s;
}

/* Hero Entrance Animation */
.hero-reveal {
    animation: heroReveal 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes heroReveal {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(1.02);
        filter: blur(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

/* ============================================================
   ADVANCED MOTION REVEALS (GSAP Support)
   ============================================================ */

/* Hide elements initially for GSAP to reveal */
.gsap-reveal {
    opacity: 0;
    visibility: hidden;
}

/* Skew class for containers */
.skew-container {
    transform-origin: center center;
    transition: transform 0.3s ease-out;
}

/* Section push-in effect base */
.section-entry {
    transform: scale(0.95);
    border-radius: 40px;
    overflow: hidden;
    transition: border-radius 1s ease-out;
}

.section-entry.active {
    border-radius: 0;
}

/* Lenis Recommended CSS */
html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

/* ============================================================
   NEW HOMEPAGE SECTIONS (TIMELINE, SOLUTIONS, MARQUEE, BIO)
   ============================================================ */

/* ============================================================
   CONCEPT A - PREMIUM VERTICAL TIMELINE
   ============================================================ */
.journey-timeline-concept-a {
    padding: 120px 0;
    background: #fdfdfd;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Faint background grid to match mockup */
.journey-timeline-concept-a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
    pointer-events: none;
}

.concept-a-header {
    text-align: center;
    position: relative;
    z-index: 2;
    margin-bottom: 80px;
}

.concept-a-header h2 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    color: var(--clr-primary);
    line-height: 1.1;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 15px;
}

.concept-a-header .sub-heading {
    display: block;
    color: var(--clr-text-muted);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.concept-a-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    z-index: 2;
    padding: 20px 0;
}

.concept-a-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--clr-accent);
}

.concept-a-item {
    display: flex;
    width: 100%;
    align-items: center;
    margin-bottom: 70px;
    position: relative;
}

.concept-a-item:last-child {
    margin-bottom: 0;
}

.concept-a-item.left-item {
    justify-content: flex-end;
    padding-right: 50%;
}

.concept-a-item.right-item {
    justify-content: flex-start;
    padding-left: 50%;
}

/* Data Card Styling */
.concept-a-card {
    background: var(--clr-white);
    border: 2px solid var(--clr-primary);
    border-radius: 12px;
    padding: 35px 40px;
    width: 85%;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    overflow: hidden;
}

.concept-a-item.left-item .concept-a-card {
    margin-right: 60px;
}

.concept-a-item.right-item .concept-a-card {
    margin-left: 60px;
}

.concept-a-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

/* Arrows pointing to the line */
.arrow-right,
.arrow-left {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--clr-accent);
    font-size: 20px;
}

.arrow-right {
    right: -35px;
}

.arrow-left {
    left: -35px;
}

/* Card Content Typography */
.concept-year {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    font-family: var(--ff-heading);
    color: var(--clr-accent);
    line-height: 1;
    margin-bottom: 10px;
}

.concept-a-card h3 {
    font-size: 1.4rem;
    color: var(--clr-primary);
    margin-bottom: 12px;
}

.concept-a-card p {
    color: var(--clr-text-muted);
    font-size: 15px;
    line-height: 1.6;
    position: relative;
    z-index: 2;
    padding-right: 20px;
}

/* Ambient Icon inside card */
.card-icon-bg {
    position: absolute;
    right: -10px;
    bottom: -15px;
    font-size: 100px;
    color: var(--clr-primary);
    opacity: 0.04;
    transform: rotate(-10deg);
    z-index: 1;
    pointer-events: none;
}

/* Center Nodes */
.concept-a-node {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background: var(--clr-secondary);
    border: 3px solid var(--clr-accent);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.node-inner {
    width: 8px;
    height: 8px;
    background: var(--clr-primary);
    border-radius: 50%;
    transition: var(--transition);
}

.concept-a-item:hover .concept-a-node {
    transform: translate(-50%, -50%) scale(1.15);
    background: var(--clr-white);
    border-color: var(--clr-primary);
}

.concept-a-item:hover .node-inner {
    background: var(--clr-accent);
}

/* Mobile Responsiveness for Concept A */
@media (max-width: 768px) {
    .concept-a-line {
        left: 40px;
        transform: none;
    }

    .concept-a-item {
        margin-bottom: 50px;
    }

    .concept-a-item.left-item,
    .concept-a-item.right-item {
        justify-content: flex-start;
        padding-left: 80px;
        padding-right: 0;
    }

    .concept-a-node {
        left: 40px;
        transform: translate(-50%, -50%);
    }

    .concept-a-item:hover .concept-a-node {
        transform: translate(-50%, -50%) scale(1.15);
    }

    .concept-a-card {
        width: 100%;
        padding: 25px 20px;
    }

    .concept-a-item.left-item .concept-a-card,
    .concept-a-item.right-item .concept-a-card {
        margin-left: 0;
        margin-right: 0;
    }

    .arrow-right,
    .arrow-left {
        display: none;
        /* Hide arrows on mobile for cleaner look */
    }
}

/* ============================================================
   TIMELINE OPTION 1 — HORIZONTAL FILM STRIP
   ============================================================ */
.tl-opt1-section {
    padding: 120px 0;
    background: #fdfdfd;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.tl-opt1-header {
    text-align: center;
    margin-bottom: 80px;
}

.tl-opt1-header span {
    display: inline-block;
    color: var(--clr-accent);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: rgba(255, 106, 0, 0.08);
    padding: 5px 16px;
    border-radius: 50px;
    margin-bottom: 18px;
}

.tl-opt1-header h2 {
    font-family: var(--ff-heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--clr-primary);
    line-height: 1.1;
    margin-bottom: 14px;
}

.tl-opt1-header p {
    font-size: 16px;
    color: var(--clr-text-muted);
}

.tl-opt1-track {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 0 20px;
}

.tl-opt1-line {
    position: absolute;
    top: 52px;
    left: 60px;
    right: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--clr-accent), rgba(255, 106, 0, 0.2));
    border-radius: 10px;
    z-index: 1;
}

.tl-opt1-station {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.tl-opt1-year {
    font-family: var(--ff-heading);
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--clr-accent);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.tl-opt1-node {
    width: 28px;
    height: 28px;
    background: #fff;
    border: 4px solid var(--clr-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    box-shadow: 0 0 0 6px rgba(255, 106, 0, 0.1);
}

.tl-opt1-node span {
    width: 8px;
    height: 8px;
    background: var(--clr-accent);
    border-radius: 50%;
}

.tl-opt1-node.active-node {
    background: var(--clr-accent);
    box-shadow: 0 0 0 8px rgba(255, 106, 0, 0.15), 0 0 20px rgba(255, 106, 0, 0.3);
}

.tl-opt1-node.active-node span {
    background: #fff;
}

.tl-opt1-station:hover .tl-opt1-node {
    transform: scale(1.2);
    box-shadow: 0 0 0 8px rgba(255, 106, 0, 0.2);
}

.tl-opt1-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    padding: 30px 22px;
    text-align: center;
    max-width: 240px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.45, 1);
}

.tl-opt1-station:hover .tl-opt1-card {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 106, 0, 0.2);
}

.tl-opt1-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 106, 0, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.tl-opt1-icon i {
    font-size: 20px;
    color: var(--clr-accent);
}

.tl-opt1-card h4 {
    font-family: var(--ff-heading);
    font-size: 1rem;
    color: var(--clr-primary);
    font-weight: 800;
    margin-bottom: 10px;
}

.tl-opt1-card p {
    font-size: 13px;
    color: var(--clr-text-muted);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .tl-opt1-track {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .tl-opt1-line {
        display: none;
    }
}

/* ============================================================
   TIMELINE OPTION 2 — STACKED MILESTONE CARDS
   ============================================================ */
.tl-opt2-section {
    padding: 120px 0;
    background: #f8f9fb;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.tl-opt2-header {
    text-align: center;
    margin-bottom: 70px;
}

.tl-opt2-header span {
    display: inline-block;
    color: var(--clr-accent);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: rgba(255, 106, 0, 0.08);
    padding: 5px 16px;
    border-radius: 50px;
    margin-bottom: 18px;
}

.tl-opt2-header h2 {
    font-family: var(--ff-heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--clr-primary);
    line-height: 1.1;
    margin-bottom: 14px;
}

.tl-opt2-header p {
    font-size: 16px;
    color: var(--clr-text-muted);
}

.tl-opt2-stack {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
}

.tl-opt2-card {
    display: grid;
    grid-template-columns: 140px 1fr;
    align-items: center;
    padding: 50px 60px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    border-radius: 0;
}

.tl-opt2-card:first-child {
    border-radius: 20px 20px 0 0;
}

.tl-opt2-card:last-child {
    border-radius: 0 0 20px 20px;
}

.tl-opt2-card:hover {
    transform: scale(1.01);
    z-index: 2;
}

.tl-opt2-card.card-light {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.tl-opt2-card.card-dark {
    background: var(--clr-primary);
}

.tl-opt2-card.card-dark h3,
.tl-opt2-card.card-dark .tl-opt2-year {
    color: #fff;
}

.tl-opt2-card.card-dark p {
    color: rgba(255, 255, 255, 0.65);
}

/* Year Block */
.tl-opt2-year-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.tl-opt2-year {
    font-family: var(--ff-heading);
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--clr-accent);
    line-height: 1;
}

.tl-opt2-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--clr-accent);
    opacity: 0.4;
}

.tl-opt2-dot.dot-active {
    opacity: 1;
    box-shadow: 0 0 0 6px rgba(255, 106, 0, 0.2), 0 0 15px rgba(255, 106, 0, 0.4);
}

/* Content */
.tl-opt2-content {
    padding-left: 40px;
    border-left: 2px solid rgba(255, 106, 0, 0.2);
}

.tl-opt2-content h3 {
    font-family: var(--ff-heading);
    font-size: 1.5rem;
    color: var(--clr-primary);
    font-weight: 800;
    margin-bottom: 10px;
}

.tl-opt2-content p {
    font-size: 15px;
    color: var(--clr-text-muted);
    line-height: 1.7;
    max-width: 500px;
}

/* Watermark Icon */
.tl-opt2-watermark {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 120px;
    opacity: 0.04;
    pointer-events: none;
    color: var(--clr-primary);
}

.tl-opt2-card.card-dark .tl-opt2-watermark {
    color: #fff;
    opacity: 0.06;
}

@media (max-width: 768px) {
    .tl-opt2-card {
        grid-template-columns: 80px 1fr;
        padding: 30px 25px;
    }

    .tl-opt2-year {
        font-size: 1.8rem;
    }

    .tl-opt2-content {
        padding-left: 20px;
    }

    .tl-opt2-watermark {
        display: none;
    }
}

/* ============================================================
   TIMELINE OPTION 3 — DARK INDUSTRIAL ROADMAP
   ============================================================ */
.tl-opt3-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0d0d28 0%, #14142e 50%, #0f0f2a 100%);
    position: relative;
    overflow: hidden;
}

/* Dot pattern overlay */
.tl-opt3-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1.5px 1.5px, rgba(255, 255, 255, 0.03) 1px, transparent 0);
    background-size: 30px 30px;
    pointer-events: none;
}

.tl-opt3-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.tl-opt3-header span {
    display: inline-block;
    color: var(--clr-accent);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: rgba(255, 106, 0, 0.1);
    padding: 5px 16px;
    border-radius: 50px;
    margin-bottom: 18px;
}

.tl-opt3-header h2 {
    font-family: var(--ff-heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: #fff;
    line-height: 1.1;
    margin-bottom: 14px;
}

.tl-opt3-header p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
}

.tl-opt3-roadmap {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 0 30px;
    z-index: 2;
}

/* Horizontal rail */
.tl-opt3-rail {
    position: absolute;
    top: 32px;
    left: 80px;
    right: 80px;
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    z-index: 1;
}

.tl-opt3-rail-glow {
    position: absolute;
    top: 30px;
    left: 80px;
    right: 80px;
    height: 8px;
    background: linear-gradient(90deg, var(--clr-accent), rgba(255, 106, 0, 0.1));
    border-radius: 10px;
    z-index: 1;
    filter: blur(8px);
    opacity: 0.5;
}

.tl-opt3-milestone {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 3;
}

/* Beacon (glowing node) */
.tl-opt3-beacon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 106, 0, 0.12);
    border: 2px solid rgba(255, 106, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    position: relative;
    transition: all 0.4s ease;
}

.tl-opt3-beacon span {
    font-family: var(--ff-heading);
    font-size: 18px;
    font-weight: 900;
    color: var(--clr-accent);
    z-index: 3;
}

.tl-opt3-beacon-ring {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px solid rgba(255, 106, 0, 0.15);
    animation: beaconPulse 3s ease-in-out infinite;
}

@keyframes beaconPulse {

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

    50% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.tl-opt3-milestone:hover .tl-opt3-beacon {
    background: var(--clr-accent);
    border-color: var(--clr-accent);
    box-shadow: 0 0 30px rgba(255, 106, 0, 0.5);
    transform: scale(1.1);
}

.tl-opt3-milestone:hover .tl-opt3-beacon span {
    color: #fff;
}

.active-milestone .tl-opt3-beacon {
    background: var(--clr-accent);
    border-color: var(--clr-accent);
    box-shadow: 0 0 25px rgba(255, 106, 0, 0.4);
}

.active-milestone .tl-opt3-beacon span {
    color: #fff;
}

/* Info Card */
.tl-opt3-info {
    text-align: center;
    max-width: 230px;
}

.tl-opt3-badge {
    display: inline-block;
    font-family: var(--ff-heading);
    font-size: 13px;
    font-weight: 800;
    color: var(--clr-accent);
    background: rgba(255, 106, 0, 0.1);
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
    letter-spacing: 1px;
}

.tl-opt3-badge.badge-active {
    background: var(--clr-accent);
    color: #fff;
}

.tl-opt3-info h4 {
    font-family: var(--ff-heading);
    font-size: 1.1rem;
    color: #fff;
    font-weight: 800;
    margin-bottom: 10px;
}

.tl-opt3-info p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .tl-opt3-roadmap {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .tl-opt3-rail,
    .tl-opt3-rail-glow {
        display: none;
    }
}

/* ============================================================
   COMPACT HORIZONTAL TECH TIMELINE
   ============================================================ */
.imm-timeline-section {
    background: #ffffff;
    overflow: hidden;
    padding: 80px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.imm-timeline-header {
    text-align: center;
    padding: 0 0 70px;
}

.imm-timeline-header .sub-heading {
    margin-bottom: 20px;
}

.imm-timeline-header h2 {
    color: var(--clr-primary);
    margin-bottom: 20px;
}

.imm-timeline-header .lead-text {
    max-width: 550px;
    margin: 0 auto;
}

/* Horizontal Track Wrapper */
.timeline-horizontal-track {
    position: relative;
    max-width: 1240px;
    margin: 0 auto;
    padding-top: 40px;
    /* Reduced gap from header */
}

/* Central Progress Rail - Positioned behind markers */
.timeline-progress-rail {
    position: absolute;
    top: 75px;
    /* Aligned with node markers (Marker is 70px, Track padding-top is 40px) */
    left: 12.5%;
    right: 12.5%;
    height: 4px;
    background: #f0f3f6;
    border-radius: 10px;
    z-index: 1;
}

.timeline-progress-active {
    height: 100%;
    background: linear-gradient(90deg, var(--clr-accent), #ff8c00);
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 106, 0, 0.3);
    position: relative;
}

.timeline-nodes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 10;
}

/* 5 Column Override for Methodology */
.track-5-cols .timeline-nodes-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

.track-5-cols .timeline-progress-rail {
    left: 10%;
    right: 10%;
}

/* Individual Node Card */
.timeline-node-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.node-marker {
    background: #ffffff;
    border: 3px solid #f0f3f6;
    color: var(--clr-primary);
    font-family: var(--ff-heading);
    font-size: 14px;
    font-weight: 800;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
    position: relative;
    z-index: 20;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.45, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.marker-live {
    border-color: var(--clr-accent);
    color: var(--clr-accent);
    background: #fff;
}



.timeline-node-card:hover .node-marker {
    transform: scale(1.1) translateY(-5px);
    border-color: var(--clr-accent);
    box-shadow: 0 15px 35px rgba(255, 106, 0, 0.2);
}

/* Compact Image Box */
.node-img-box {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 16/10;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 25px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

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

.timeline-node-card:hover .node-img-box img {
    transform: scale(1.1);
}

/* Content Text */
.node-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    align-items: center;
}

.node-content h3 {
    font-family: var(--ff-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--clr-primary);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.node-content p {
    font-size: 14px;
    color: var(--clr-text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    padding: 0 15px;
}

.node-badge {
    display: inline-block;
    padding: 5px 16px;
    background: #f4f6f9;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 800;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: background 0.3s ease;
    margin-top: auto;
    /* Push to bottom of flex container */
}

.node-is-live .node-badge {
    background: rgba(255, 106, 0, 0.08);
    color: var(--clr-accent);
    border: 1px solid rgba(255, 106, 0, 0.2);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .timeline-horizontal-track {
        padding-top: 20px;
    }

    .timeline-progress-rail {
        display: none;
    }

    .timeline-nodes-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .timeline-node-card {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        gap: 25px;
    }

    .node-marker {
        width: 60px;
        height: 60px;
        min-width: 60px;
        margin-bottom: 0;
    }

    /* Methodology Specific Styling */
    .methodology-horizontal-track {
        margin-bottom: 40px;
    }

    .methodology-horizontal-track .node-marker {
        background: #f8fafc;
        border-color: #e2e8f0;
    }

    .methodology-horizontal-track .timeline-node-card:hover .node-marker {
        background: #ffffff;
        border-color: var(--clr-accent);
    }

    .node-img-box {
        max-width: 160px;
        margin-bottom: 0;
    }

    .node-content p {
        padding: 0;
    }
}




/* Supply Solutions Section (Centerpiece Radial Hub) */
.supply-solutions-section {
    padding: 80px 0;
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.solutions-radial-hub {
    display: grid;
    grid-template-columns: 1fr 400px 1fr;
    grid-template-rows: auto auto;
    gap: 30px;
    margin-top: 60px;
    align-items: center;
    position: relative;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.hub-center-image {
    grid-column: 2;
    grid-row: 1 / 3;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hub-center-image img {
    max-width: 100%;
    height: auto;
    mix-blend-mode: multiply;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.05));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

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

    100% {
        transform: translateY(0px);
    }
}

.hub-card {
    background: var(--clr-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.hub-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(255, 106, 0, 0.08);
    border-color: rgba(255, 106, 0, 0.2);
}

.tl-card {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 20px;
}

.tr-card {
    grid-column: 3;
    grid-row: 1;
    margin-bottom: 20px;
}

.bl-card {
    grid-column: 1;
    grid-row: 2;
    margin-top: 20px;
}

.br-card {
    grid-column: 3;
    grid-row: 2;
    margin-top: 20px;
}

/* Dotted connection paths (desktop only) */
.hub-card::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 2px;
    border-bottom: 2px dashed rgba(255, 106, 0, 0.3);
    top: 50%;
    z-index: 0;
    transition: var(--transition);
}

.tl-card::after {
    right: -60px;
}

.bl-card::after {
    right: -60px;
}

.tr-card::after {
    left: -60px;
}

.br-card::after {
    left: -60px;
}

.hub-card:hover::after {
    border-bottom: 2px solid var(--clr-accent);
}

.icon-accent {
    font-size: 36px;
    color: var(--clr-accent);
    margin-bottom: 20px;
    display: inline-block;
}

.hub-card h3 {
    font-size: 1.4rem;
    color: var(--clr-primary);
    margin-bottom: 12px;
}

.hub-card p {
    color: var(--clr-text-muted);
    font-size: 15px;
    line-height: 1.6;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

@media (max-width: 992px) {
    .solutions-radial-hub {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .hub-center-image {
        grid-column: 1;
        grid-row: 1;
        margin-bottom: 30px;
    }

    .tl-card,
    .tr-card,
    .bl-card,
    .br-card {
        grid-column: 1;
        grid-row: auto;
        margin: 0;
    }

    .hub-card::after {
        display: none;
    }

    .text-right,
    .text-left {
        text-align: left;
    }
}

/* Trusted By Marquee */
.marquee-section {
    padding: 80px 0;
    background: linear-gradient(rgba(10, 15, 30, 0.9), rgba(10, 15, 30, 0.9)), url('../images/marquee-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--clr-white);
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.marquee-title {
    display: block;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

.marquee-wrapper {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: scrollMarquee 30s linear infinite;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--ff-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    padding: 0 40px;
    white-space: nowrap;
}

.marquee-item i {
    color: var(--clr-accent);
    font-size: 1.2rem;
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }

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

/* Leadership Bio */
.team-bio {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.team-bio p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--clr-text-muted);
}

/* All 3 Concepts for Methodology Phase Options */
.approach-section {
    padding: 120px 0;
    background: var(--clr-secondary);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Premium Vertical Methodology Hub */
.methodology-tower-setup {
    display: grid;
    grid-template-columns: 1fr 400px 1fr;
    grid-auto-rows: 150px;
    /* Force rows to be consistently spaced */
    gap: 30px;
    align-items: center;
    position: relative;
    padding: 60px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.tower-center-graphic {
    grid-column: 2;
    grid-row: 1 / 6;
    /* Span 5 rows */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 5;
}

.tower-center-graphic img {
    width: 100%;
    height: 100%;
    max-height: 850px;
    object-fit: contain;
    animation: floatHub 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.08));
}

@keyframes floatHub {

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

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

.method-card {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--clr-white);
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 10;
    transition: all 0.4s ease;
}

.method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(255, 106, 0, 0.3);
}

.card-left {
    grid-column: 1;
}

.card-right {
    grid-column: 3;
}

/* Hardcode grid row positioning for ZigZag effect */
.methodology-tower-setup .method-card:nth-child(2) {
    grid-row: 1;
}

/* card 01 left */
.methodology-tower-setup .method-card:nth-child(3) {
    grid-row: 2;
}

/* card 02 right */
.methodology-tower-setup .method-card:nth-child(4) {
    grid-row: 3;
}

/* card 03 left */
.methodology-tower-setup .method-card:nth-child(5) {
    grid-row: 4;
}

/* card 04 right */
.methodology-tower-setup .method-card:nth-child(6) {
    grid-row: 5;
}

/* card 05 left */

/* Dashed Trace Lines */
.connector-trace {
    position: absolute;
    width: 50px;
    border-top: 2px dashed var(--clr-accent);
    top: 50%;
    opacity: 0.5;
    z-index: 1;
}

.left-trace {
    right: -50px;
}

.right-trace {
    left: -50px;
}

/* Content inside card */
.methodology-tower-setup .card-wrapper {
    display: flex;
    padding: 30px;
    width: 100%;
}

.methodology-tower-setup .card-icon-box {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(255, 106, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-accent);
    font-size: 20px;
    margin-right: 20px;
}

.methodology-tower-setup .card-content h4 {
    font-family: var(--ff-heading);
    font-size: 1.15rem;
    color: var(--clr-primary);
    font-weight: 800;
    margin-bottom: 8px;
}

.methodology-tower-setup .card-content p {
    font-size: 14px;
    color: var(--clr-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Responsiveness */
@media (max-width: 992px) {
    .methodology-tower-setup {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .tower-center-graphic {
        grid-column: 1;
        grid-row: 1;
        /* Center image on top for mobile */
        margin-bottom: 40px;
    }

    .tower-center-graphic img {
        max-height: 400px;
    }

    .method-card {
        grid-column: 1 !important;
        grid-row: auto !important;
        margin-bottom: 20px;
    }

    .connector-trace {
        display: none;
    }
}

/* ============================================================
   WHY CHOOSE SARVIX — CENTER IMAGE HUB LAYOUT
   ============================================================ */
.why-choose-section {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.why-choose-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
    position: relative;
    z-index: 2;
}

.why-choose-header .sub-heading {
    margin-bottom: 20px;
}

.why-choose-header h2 {
    color: var(--clr-primary);
    margin-bottom: 20px;
}

.why-choose-header .lead-text {
    max-width: 580px;
    margin: 0 auto;
}

/* 3-Column Hub Grid */
.wc-hub-layout {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 30px;
    align-items: center;
    max-width: 1500px;
    margin: 0 auto;
}

/* Feature Columns */
.wc-feature-col {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.wc-left .wc-feature-item {
    text-align: right;
}

.wc-right .wc-feature-item {
    text-align: left;
}

/* Feature Item */
.wc-feature-item {
    position: relative;
    transition: transform 0.3s ease;
    padding: 10px;
}

.wc-feature-item:hover {
    transform: translateY(-4px);
}

/* Feature Icon */
.wc-feat-icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.wc-feat-icon i {
    font-size: 32px;
    color: var(--clr-accent);
    transition: transform 0.3s ease;
}

.wc-feature-item:hover .wc-feat-icon i {
    transform: scale(1.2) rotate(5deg);
}

.wc-feature-item h4 {
    font-family: var(--ff-heading);
    font-size: 1.25rem;
    color: var(--clr-primary);
    font-weight: 800;
    margin-bottom: 10px;
}

.wc-feature-item p {
    font-size: 14px;
    color: var(--clr-text-muted);
    line-height: 1.7;
    max-width: 300px;
}

.wc-left .wc-feature-item p {
    margin-left: auto;
}

/* Center 3D Image */
.wc-center-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 5;
}

.wc-center-image img {
    max-width: 100%;
    max-height: 800px;
    object-fit: contain;
    filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.2));
    animation: floatTower 6s ease-in-out infinite;
    transform: scale(1.05);
}

@keyframes floatTower {

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

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

/* Responsive */
@media (max-width: 992px) {
    .wc-hub-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .wc-center-image {
        order: -1;
    }

    .wc-center-image img {
        max-height: 400px;
    }

    .wc-left .wc-feature-item,
    .wc-right .wc-feature-item {
        text-align: center;
    }

    .wc-left .wc-feature-item p {
        margin-left: auto;
        margin-right: auto;
    }

    .wc-feature-item p {
        margin: 0 auto;
    }
}


/* ============================================================
   OUR METHODOLOGY — HORIZONTAL STEPPED PIPELINE
   ============================================================ */
.methodology-section {
    padding: 80px 0;
    background: var(--clr-secondary);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.methodology-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.methodology-header .sub-heading {
    margin-bottom: 20px;
}

.methodology-header h2 {
    color: var(--clr-primary);
    margin-bottom: 20px;
}

.methodology-header .lead-text {
    max-width: 550px;
    margin: 0 auto;
}

/* Pipeline Track */
.pipeline-track {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 0 10px;
}

/* Connecting horizontal line */
.pipeline-line {
    position: absolute;
    top: 28px;
    left: 40px;
    right: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-accent) 0%, rgba(255, 106, 0, 0.3) 100%);
    border-radius: 10px;
    z-index: 1;
}

/* Each Step */
.pipeline-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Numbered Circle */
.step-circle {
    width: 56px;
    height: 56px;
    background: #fff;
    border: 3px solid var(--clr-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.45, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 5;
}

.step-circle span {
    font-family: var(--ff-heading);
    font-size: 16px;
    font-weight: 900;
    color: var(--clr-accent);
    transition: color 0.3s ease;
}

.pipeline-step:hover .step-circle {
    background: var(--clr-accent);
    border-color: var(--clr-accent);
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(255, 106, 0, 0.35);
}

.pipeline-step:hover .step-circle span {
    color: #fff;
}

/* Step Card */
.step-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.45, 1);
    max-width: 220px;
    width: 100%;
}

.pipeline-step:hover .step-card {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 106, 0, 0.2);
}

.step-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 106, 0, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.step-icon i {
    font-size: 20px;
    color: var(--clr-accent);
}

.step-card h4 {
    font-family: var(--ff-heading);
    font-size: 1.05rem;
    color: var(--clr-primary);
    font-weight: 800;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 13px;
    color: var(--clr-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Responsive: stack vertically on tablet/mobile */
@media (max-width: 992px) {
    .pipeline-track {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .pipeline-line {
        top: 0;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 3px;
        height: 100%;
        background: linear-gradient(180deg, var(--clr-accent) 0%, rgba(255, 106, 0, 0.3) 100%);
    }

    .step-card {
        max-width: 350px;
    }

    .pipeline-step {
        flex-direction: row;
        gap: 20px;
    }

    .step-circle {
        margin-bottom: 0;
        min-width: 56px;
    }

    .step-card {
        text-align: left;
    }

    .step-icon {
        margin: 0 0 12px 0;
    }
}

/* ============================================================
   FOOTER BOTTOM — NO WHITE SPACE BELOW
   ============================================================ */
.footer-bottom {
    border-top: 1px solid #dce4ee;
    padding: 18px 0;
    background: #edf1f5;
}

/* ============================================================
   INNER PAGE DESIGN SYSTEM
   Premium redesign components for About, Products, Projects, Contact
   ============================================================ */

/* --- Immersive Inner Hero --- */
.inner-hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}
.inner-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,15,30,0.4) 0%, rgba(10,15,30,0.92) 100%);
    z-index: 1;
}
.inner-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--clr-primary), transparent);
    z-index: 1;
    opacity: 0.5;
}
.inner-hero .container { position: relative; z-index: 5; }
.inner-hero .hero-ghost-text {
    position: absolute;
    bottom: 40px; right: -5%;
    font-size: clamp(6rem, 15vw, 14rem);
    font-family: var(--ff-heading);
    font-weight: 900;
    color: rgba(255,255,255,0.03);
    line-height: 1;
    pointer-events: none;
    z-index: 2;
    text-transform: uppercase;
}
.inner-hero .hero-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}
.inner-hero .hero-breadcrumb a { color: rgba(255,255,255,0.5); }
.inner-hero .hero-breadcrumb a:hover { color: var(--clr-accent); }
.inner-hero .hero-breadcrumb .sep { color: var(--clr-accent); }
.inner-hero h1 {
    color: #fff !important;
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.05;
    letter-spacing: -1.5px;
}
.inner-hero .hero-subtitle {
    color: rgba(255,255,255,0.75);
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    line-height: 1.7;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}
.inner-hero .hero-stats-row {
    display: flex;
    gap: 50px;
    margin-top: 40px;
}
.inner-hero .hero-stat {
    text-align: left;
}
.inner-hero .hero-stat .stat-val {
    font-family: var(--ff-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--clr-accent);
    line-height: 1;
}
.inner-hero .hero-stat .stat-lbl {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 8px;
}

/* --- Editorial Split Section --- */
.editorial-split {
    padding: 100px 0;
    overflow: hidden;
}
.editorial-split .split-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: stretch;
}
.editorial-split.reverse .split-grid {
    grid-template-columns: 1.1fr 0.9fr;
    direction: rtl;
}
.editorial-split.reverse .split-grid > * {
    direction: ltr;
}
.editorial-split .split-visual {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}
.editorial-split .split-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
    transition: transform 1.5s cubic-bezier(0.165,0.84,0.44,1);
}
.editorial-split .split-visual:hover img { transform: scale(1.05); }
.editorial-split .split-step-num {
    font-family: var(--ff-heading);
    font-size: 6rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--clr-accent);
    line-height: 1;
    margin-bottom: 20px;
    opacity: 0.4;
}
.editorial-split .split-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
}
.editorial-split .split-content .sub-heading { margin-bottom: 15px; }
.editorial-split .split-content h2 {
    font-size: clamp(2.4rem, 5vw, 3.5rem);
    margin-bottom: 25px;
    line-height: 1.1;
}
.editorial-split .split-content p {
    color: var(--clr-text-muted);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 650px;
}

@media (max-width: 992px) {
    .editorial-split .split-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .editorial-split.reverse .split-grid { direction: ltr; }
}

/* --- Sector Showcase Cards --- */
.sector-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.sector-card {
    position: relative;
    height: 420px;
    border-radius: 32px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.6s cubic-bezier(0.165,0.84,0.44,1);
}
.sector-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s ease;
    z-index: 1;
}
.sector-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,15,30,0.95) 10%, rgba(10,15,30,0.3) 100%);
    z-index: 2;
}
.sector-card:hover img { transform: scale(1.1); }
.sector-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.3);
}
.sector-card .sector-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 40px;
    z-index: 5;
    color: #fff;
}
.sector-card .sector-label {
    display: inline-block;
    padding: 5px 14px;
    background: var(--clr-accent);
    color: #fff;
    border-radius: 30px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.sector-card .sector-content h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.1;
}
.sector-card .sector-content p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 90%;
}
.sector-card .sector-metrics {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}
.sector-card .sector-metric {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--clr-accent);
    font-family: monospace;
}
.sector-card .scan-line {
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--clr-accent), transparent);
    opacity: 0;
    z-index: 3;
    pointer-events: none;
}
.sector-card:hover .scan-line {
    animation: techScan 2s infinite linear;
    opacity: 0.15;
}
.sector-card .corner-mark {
    position: absolute;
    width: 25px;
    height: 25px;
    border: 2px solid rgba(255,255,255,0.2);
    z-index: 4;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.sector-card:hover .corner-mark { opacity: 1; }
.sector-card .corner-mark.tl { top: 25px; left: 25px; border-right: 0; border-bottom: 0; }
.sector-card .corner-mark.br { bottom: 25px; right: 25px; border-left: 0; border-top: 0; }

@media (max-width: 768px) {
    .sector-grid { grid-template-columns: 1fr; }
    .sector-card { height: 350px; }
}

/* --- Industries Sectors Section --- */
.industries-sectors-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.industries-sectors-section .about-header-grid {
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 30px;
}
.ind-bento-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    align-items: stretch;
}
.ind-bento-featured {
    height: 100%;
    min-height: 520px;
}
.ind-bento-stack {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.ind-bento-stack .bento-tile {
    flex: 1;
}

@media (max-width: 768px) {
    .ind-bento-grid { grid-template-columns: 1fr; }
    .ind-bento-featured { min-height: 400px; }
}

/* --- Metric Counter Band --- */
.metrics-band {
    padding: 80px 0;
    background: linear-gradient(135deg, #0d0d28, #14142e);
    position: relative;
    overflow: hidden;
}
.metrics-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1.5px 1.5px, rgba(255,255,255,0.03) 1px, transparent 0);
    background-size: 30px 30px;
    pointer-events: none;
}
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}
.metric-item {
    text-align: center;
    padding: 40px 20px;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 24px;
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}
.metric-item:hover {
    border-color: rgba(255,106,0,0.3);
    background: rgba(255,255,255,0.04);
    transform: translateY(-8px);
}
.metric-item .metric-val {
    font-family: var(--ff-heading);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--clr-accent);
    line-height: 1;
    margin-bottom: 12px;
}
.metric-item .metric-lbl {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

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

/* --- Premium Contact Hub (Bento Layout) --- */
.contact-hub-section {
    padding: 80px 0;
    background: #fff;
}
.contact-hub-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 30px;
    align-items: stretch;
}

/* Featured Call Card */
.hub-featured-card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    min-height: 340px;
    display: flex;
    align-items: flex-end;
    text-decoration: none;
    color: #fff;
    transition: all 0.5s ease;
}
.hub-featured-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}
.hub-featured-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 1.2s ease;
}
.hub-featured-card:hover .hub-featured-bg {
    transform: scale(1.06);
}
.hub-featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26,26,58,0.3) 0%, rgba(26,26,58,0.92) 100%);
}
.hub-featured-content {
    position: relative;
    z-index: 5;
    padding: 45px;
    display: flex;
    align-items: center;
    gap: 25px;
    width: 100%;
}
.hub-icon-circle {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-accent), #ff8533);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    box-shadow: 0 12px 30px rgba(255,106,0,0.4);
}
.hub-featured-meta {
    flex: 1;
}
.hub-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 700;
    color: var(--clr-accent);
    margin-bottom: 8px;
}
.hub-featured-meta h3 {
    font-family: var(--ff-heading);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
    line-height: 1.1;
}
.hub-featured-meta p {
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
}
.hub-cta-arrow {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.4s ease;
}
.hub-featured-card:hover .hub-cta-arrow {
    background: var(--clr-accent);
    border-color: var(--clr-accent);
    transform: translateX(6px);
    box-shadow: 0 8px 20px rgba(255,106,0,0.4);
}

/* Corner markers (reusing homepage pattern) */
.hub-featured-card .corner-marker { position: absolute; z-index: 6; }

/* Stacked Right Cards */
.hub-stack {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.hub-glass-card {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 35px 32px;
    background: var(--clr-secondary);
    border-radius: 24px;
    border: 1px solid rgba(0,0,0,0.04);
    text-decoration: none;
    color: var(--clr-text);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.hub-glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-accent), #ff8533);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.hub-glass-card:hover::before {
    opacity: 1;
}
.hub-glass-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
    border-color: rgba(255,106,0,0.12);
}
.hub-icon-sm {
    width: 54px;
    height: 54px;
    min-width: 54px;
    font-size: 1.2rem;
}
.hub-card-body {
    flex: 1;
}
.hub-card-body .hub-label {
    color: var(--clr-accent);
    margin-bottom: 5px;
}
.hub-card-body h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--clr-primary);
    margin-bottom: 4px;
}
.hub-card-body p {
    color: var(--clr-text-muted);
    font-size: 0.85rem;
}
.hub-arrow-sm {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-text-muted);
    font-size: 0.85rem;
    transition: all 0.4s ease;
}
.hub-glass-card:hover .hub-arrow-sm {
    border-color: var(--clr-accent);
    color: var(--clr-accent);
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .contact-hub-grid {
        grid-template-columns: 1fr;
    }
    .hub-featured-card { min-height: 280px; }
    .hub-featured-content { padding: 30px; flex-wrap: wrap; }
    .hub-glass-card { padding: 25px 20px; }
}

/* --- Premium Contact Form --- */
.premium-form-section {
    padding: 100px 0;
    background: var(--clr-secondary);
}
.premium-form-wrap {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    background: #fff;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.04);
}
.form-trust-panel {
    background: linear-gradient(160deg, #0f1025, #1a1a3a);
    padding: 60px;
    color: #fff;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
.form-trust-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1.5px 1.5px, rgba(255,255,255,0.03) 1px, transparent 0);
    background-size: 25px 25px;
}
.form-trust-panel .trust-content { position: relative; z-index: 2; }
.form-trust-panel h3 {
    font-size: 2.2rem;
    color: #fff !important;
    margin-bottom: 20px;
}
.form-trust-panel > p,
.form-trust-panel .trust-content > p {
    color: rgba(255,255,255,0.6) !important;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 40px;
}
.trust-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}
.trust-info-item .info-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(255,106,0,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-accent);
    font-size: 1rem;
}
.trust-info-item h5 {
    color: #fff !important;
    font-size: 1.05rem;
    margin-bottom: 4px;
}
.trust-info-item p {
    color: rgba(255,255,255,0.5) !important;
    font-size: 0.9rem;
    margin: 0;
}
.trust-compliance {
    margin-top: auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    gap: 8px;
}
.trust-compliance i { color: var(--clr-accent); }

.form-input-panel {
    padding: 60px;
}
.form-input-panel h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}
.form-input-panel .form-subtitle {
    color: var(--clr-text-muted);
    margin-bottom: 35px;
    font-size: 0.95rem;
}
.sarvix-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 22px;
}
.sarvix-form .form-field {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.sarvix-form .form-field.full-width {
    flex-basis: 100%;
}
.sarvix-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--clr-primary);
    font-weight: 600;
    font-size: 0.9rem;
}
.sarvix-form label .req { color: var(--clr-accent); }
.sarvix-form input,
.sarvix-form select,
.sarvix-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    color: var(--clr-text);
    font-size: 0.95rem;
    font-family: var(--ff-main);
    transition: all 0.3s ease;
}
.sarvix-form input:focus,
.sarvix-form select:focus,
.sarvix-form textarea:focus {
    outline: none;
    border-color: var(--clr-accent);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255,106,0,0.08);
}
.sarvix-form textarea { resize: vertical; min-height: 120px; }
.sarvix-form .form-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

@media (max-width: 992px) {
    .premium-form-wrap { grid-template-columns: 1fr; }
    .sarvix-form .form-row { flex-direction: column; gap: 16px; }
}

/* --- Product Showcase Tile (Dark) --- */
.product-showcase-dark {
    padding: 100px 0;
    background: #0f1025;
    position: relative;
    overflow: hidden;
}
.product-showcase-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1.5px 1.5px, rgba(255,255,255,0.025) 1px, transparent 0);
    background-size: 30px 30px;
}
.product-showcase-dark .sub-heading { color: var(--clr-accent) !important; }
.product-showcase-dark h2 { color: #fff !important; }
.product-showcase-dark .lead-text { color: rgba(255,255,255,0.6) !important; }

.product-bento-dark {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 60px;
}
.product-dark-tile {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    height: 450px;
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.5s ease;
    cursor: pointer;
}
.product-dark-tile img.tile-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: transform 1.2s ease, opacity 0.5s;
}
.product-dark-tile:hover img.tile-bg {
    transform: scale(1.1);
    opacity: 0.8;
}
.product-dark-tile::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,16,37,0.95) 15%, rgba(15,16,37,0.2) 100%);
    z-index: 2;
}
.product-dark-tile .tile-inner {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 40px;
    z-index: 5;
    color: #fff;
}
.product-dark-tile .tile-num {
    position: absolute;
    top: 30px; right: 30px;
    font-family: var(--ff-heading);
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255,255,255,0.04);
    z-index: 3;
    line-height: 1;
}
.product-dark-tile .tile-inner .category {
    color: var(--clr-accent);
    font-size: 11px;
    margin-bottom: 12px;
}
.product-dark-tile .tile-inner h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 12px;
}
.product-dark-tile .tile-inner p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.6;
}
.product-dark-tile .tile-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}
.product-dark-tile .spec-tag {
    background: rgba(255,106,0,0.1);
    color: var(--clr-accent);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-family: monospace;
    font-weight: 700;
}
.product-dark-tile:hover {
    transform: translateY(-10px);
    border-color: rgba(255,106,0,0.2);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

@media (max-width: 992px) {
    .product-bento-dark { grid-template-columns: 1fr; }
    .product-dark-tile { height: 380px; }
}

/* --- Material Spec Ledger --- */
.spec-ledger {
    background: #fff;
    border: 1px solid var(--clr-primary);
    border-radius: 24px;
    padding: 40px;
    box-shadow: inset 0 0 40px rgba(26,26,58,0.02);
}
.spec-ledger .ledger-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--clr-primary);
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    margin-bottom: 20px;
}
.spec-ledger .ledger-title i { color: var(--clr-accent); }
.spec-ledger .spec-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.03);
    font-size: 13px;
}
.spec-ledger .spec-row .spec-key {
    color: var(--clr-text-muted);
    font-weight: 600;
}
.spec-ledger .spec-row .spec-val {
    color: var(--clr-primary);
    font-weight: 700;
    text-align: right;
}

/* --- CTA Bridge Section --- */
.cta-bridge {
    padding: 100px 0;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}
.cta-bridge::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,15,30,0.95), rgba(10,15,30,0.85));
    z-index: 1;
}
.cta-bridge .container { position: relative; z-index: 5; }
.cta-bridge .cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.cta-bridge .cta-content h2 {
    color: #fff !important;
    margin-bottom: 20px;
}
.cta-bridge .cta-content p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 35px;
}

/* --- Inner page utility classes --- */
.bg-surface { background: var(--clr-secondary); }
.bg-dark { background: #0f1025; }
.pb-0 { padding-bottom: 0 !important; }
.text-center { text-align: center; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 2rem; }
.mt-5 { margin-top: 2rem; }


/* --- Inner hero responsive --- */
@media (max-width: 768px) {
    .inner-hero { min-height: 60vh; padding-bottom: 60px; }
    .inner-hero .hero-stats-row { flex-direction: column; gap: 20px; }
    .inner-hero .hero-ghost-text { display: none; }
}

/* ============================================================
   ABOUT PAGE — PILLAR HERO CARDS & MARQUEE
   ============================================================ */

/* Platform Hero Section */
.about-platform-hero {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.about-platform-hero .about-header-grid { position: relative; z-index: 2; }
.about-platform-hero .about-header-left span { color: var(--clr-accent); }
.about-platform-hero .about-header-left h2 { color: #fff !important; }
.about-platform-hero .lead-text { color: rgba(255,255,255,0.6) !important; }

/* Pillar Hero Grid */
.pillar-hero-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
    margin-top: 50px;
}
.hero-pillar-card {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    height: 500px;
    background: #0a0a0f;
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.6s ease;
    cursor: pointer;
}
.hero-pillar-card .pillar-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    transition: transform 1.5s ease, opacity 0.5s;
}
.hero-pillar-card:hover .pillar-bg-img {
    transform: scale(1.1);
    opacity: 0.7;
}
.hero-pillar-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,15,0.95) 15%, rgba(10,10,15,0.2) 100%);
    z-index: 2;
}
.hero-pillar-card .pillar-year-ghost {
    position: absolute;
    top: 30px;
    right: 30px;
    font-family: var(--ff-heading);
    font-size: 5rem;
    font-weight: 900;
    color: rgba(255,255,255,0.04);
    z-index: 3;
    line-height: 1;
}
.hero-pillar-card .pillar-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 45px;
    z-index: 5;
    color: #fff;
}
.hero-pillar-card .pillar-label {
    display: inline-block;
    color: var(--clr-accent);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.hero-pillar-card .pillar-title {
    font-size: 2.4rem;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.1;
}
.hero-pillar-card .pillar-desc {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    line-height: 1.7;
}
.hero-pillar-card .bento-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid var(--clr-accent);
    z-index: 4;
    opacity: 0.3;
    transition: all 0.4s ease;
}
.hero-pillar-card .bento-corner.top-left {
    top: 30px;
    left: 30px;
    border-right: 0;
    border-bottom: 0;
}
.hero-pillar-card .bento-corner.bottom-right {
    bottom: 30px;
    right: 30px;
    border-left: 0;
    border-top: 0;
}
.hero-pillar-card:hover .bento-corner {
    opacity: 1;
    width: 40px;
    height: 40px;
}
.hero-pillar-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255,106,0,0.2);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

@media (max-width: 768px) {
    .pillar-hero-grid { grid-template-columns: 1fr; }
    .hero-pillar-card { height: 400px; }
}

/* Industrial Marquee Bridge */
.industrial-marquee-bridge {
    background: #0a0a0f;
    padding: 18px 0;
    position: relative;
    overflow: hidden;
}
.industrial-marquee-bridge .laser-divider {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--clr-accent), transparent);
    opacity: 0.4;
}
.industrial-marquee-bridge .laser-divider.top { top: 0; }
.industrial-marquee-bridge .laser-divider.bottom { bottom: 0; }
.industrial-marquee-bridge .marquee-track {
    display: flex;
    width: max-content;
    animation: scrollMarquee 25s linear infinite;
}
.industrial-marquee-bridge .marquee-item {
    font-family: var(--ff-heading);
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255,255,255,0.3);
    padding: 0 15px;
    white-space: nowrap;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.industrial-marquee-bridge .marquee-item span {
    color: var(--clr-accent);
    margin: 0 8px;
}

/* ============================================================
   ABOUT PAGE — APPROACH BENTO GRID
   ============================================================ */
.approach-bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.approach-card {
    background: var(--clr-secondary);
    border-radius: 24px;
    padding: 45px 40px;
    position: relative;
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}
.approach-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}
.approach-card-dark {
    background: var(--clr-primary);
    border: 1px solid rgba(255,255,255,0.06);
}
.approach-card-dark:hover {
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}
.approach-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--clr-accent), #ff8533);
    color: #fff;
}
.approach-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--clr-primary);
}
.approach-card-dark h3 {
    color: #fff;
}
.approach-card p {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}
.approach-card-dark p {
    color: rgba(255,255,255,0.6);
}
.approach-card .premium-checklist li {
    color: var(--clr-text);
}
.approach-card-dark .premium-checklist li {
    color: rgba(255,255,255,0.75);
}
.approach-card-dark .premium-checklist i {
    color: var(--clr-accent);
}
.approach-card-img {
    margin-top: 25px;
    border-radius: 16px;
    overflow: hidden;
    height: 180px;
}
.approach-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.approach-card:hover .approach-card-img img {
    transform: scale(1.08);
}

@media (max-width: 768px) {
    .approach-bento-grid { grid-template-columns: 1fr; }
    .approach-card { padding: 30px 25px; }
}


/* ============================================================
   MOBILE NAVIGATION DRAWER
   ============================================================ */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}
.mobile-nav-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    height: 100dvh;
    background: #fff;
    z-index: 9999;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
}
.mobile-nav-drawer.is-open {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #f0f0f0;
    min-height: 70px;
}
.mobile-nav-header .logo img {
    height: 36px;
}
.mobile-nav-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f8f9fa;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--clr-primary);
    transition: all 0.3s ease;
}
.mobile-nav-close:hover {
    background: var(--clr-accent);
    color: #fff;
}

.mobile-nav-links {
    list-style: none;
    padding: 15px 0;
    flex: 1;
}
.mobile-nav-links li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px;
    font-family: var(--ff-heading);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--clr-primary);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}
.mobile-nav-links li a:hover,
.mobile-nav-links li a:active {
    color: var(--clr-accent);
    background: rgba(255, 106, 0, 0.04);
    padding-left: 30px;
}
.mobile-nav-links li a i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    color: var(--clr-text-muted);
}
.mobile-has-dropdown.is-expanded > a i {
    transform: rotate(180deg);
    color: var(--clr-accent);
}

.mobile-dropdown {
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #f8f9fa;
}
.mobile-has-dropdown.is-expanded .mobile-dropdown {
    max-height: 300px;
}
.mobile-dropdown li a {
    padding: 12px 24px 12px 40px;
    font-size: 0.9rem;
    font-family: var(--ff-main);
    font-weight: 500;
    color: var(--clr-text-muted);
}
.mobile-dropdown li a:hover {
    color: var(--clr-accent);
}

.mobile-nav-cta {
    padding: 15px 24px;
    border-top: 1px solid #f0f0f0;
}
.mobile-nav-cta .contactButton {
    display: flex;
    justify-content: center;
    border-color: var(--clr-accent);
    color: var(--clr-accent);
    height: 52px;
    font-size: 14px;
}

.mobile-nav-contact {
    padding: 15px 24px 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.mobile-nav-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--clr-text-muted);
}
.mobile-nav-contact a i {
    color: var(--clr-accent);
    width: 16px;
    text-align: center;
}


/* ============================================================
   iOS PARALLAX FIX
   background-attachment: fixed is broken on iOS Safari
   ============================================================ */
@supports (-webkit-touch-callout: none) {
    .hero,
    .inner-hero,
    .cta-bridge,
    .marquee-section,
    .inquiry-section,
    .industries-sectors-section,
    .metrics-band {
        background-attachment: scroll !important;
    }
}


/* ============================================================
   COMPREHENSIVE RESPONSIVE: TABLET (768px – 1024px)
   ============================================================ */
@media (max-width: 1024px) and (min-width: 769px) {

    /* Sections: reduce padding */
    .about-premium,
    .products-section,
    .protocol-section,
    .holdings-section,
    .inquiry-section,
    .why-choose-section,
    .methodology-section,
    .approach-section,
    .industries-sectors-section,
    .about-platform-hero,
    .editorial-split,
    .product-showcase-dark {
        padding: 70px 0;
    }

    /* Hero height */
    .hero {
        height: 80vh;
        min-height: 550px;
    }

    /* Stat numbers */
    .stat-number {
        font-size: 2.5rem;
    }

    /* Bento grid: stack */
    .bento-grid {
        flex-direction: column;
        height: auto;
    }
    .bento-large { height: 450px; }
    .bento-small { height: 300px; }

    /* Protocol hybrid: single column */
    .protocol-hybrid-parent {
        grid-template-columns: 1fr;
    }

    /* Product dark tiles: 2 columns */
    .product-bento-dark {
        grid-template-columns: repeat(2, 1fr);
    }
    .product-dark-tile { height: 380px; }

    /* Industries bento grid */
    .ind-bento-grid {
        grid-template-columns: 1fr;
    }
    .ind-bento-featured { min-height: 400px; }

    /* Contact hub grid */
    .contact-hub-grid {
        grid-template-columns: 1fr;
    }

    /* Premium form wrap */
    .premium-form-wrap {
        grid-template-columns: 1fr;
    }

    /* Inner hero */
    .inner-hero {
        min-height: 55vh;
        padding: 80px 0;
        background-attachment: scroll;
    }
    .inner-hero h1 {
        font-size: clamp(2rem, 5vw, 3rem);
    }

    /* Hero ghost text */
    .hero-ghost-text {
        font-size: 10vw;
    }

    /* Pillar hero cards */
    .hero-pillar-card { height: 420px; }
    .hero-pillar-card .pillar-title { font-size: 1.8rem; }
    .hero-pillar-card .pillar-content { padding: 35px; }

    /* Tile navy heading */
    .tile-navy h3 { font-size: 2.2rem; }

    /* CTA bridge */
    .cta-bridge { padding: 80px 0; background-attachment: scroll; }
}


/* ============================================================
   COMPREHENSIVE RESPONSIVE: MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {

    /* Container padding */
    .container {
        padding: 0 18px;
    }

    /* All major sections: reduce vertical padding */
    .about-premium,
    .products-section,
    .protocol-section,
    .holdings-section,
    .inquiry-section,
    .why-choose-section,
    .methodology-section,
    .approach-section,
    .industries-sectors-section,
    .about-platform-hero,
    .editorial-split,
    .product-showcase-dark,
    .contact-hub-section {
        padding: 60px 0;
    }

    /* Hero */
    .hero {
        height: 85vh;
        min-height: 500px;
        background-attachment: scroll;
    }
    .hero-body {
        padding: 60px 0 100px;
        min-height: auto;
    }
    .hero-badge {
        font-size: 11px;
        padding: 6px 14px;
        gap: 8px;
    }
    .hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .hero-btns .contactButton,
    .hero-btns .btn-primary {
        width: 100%;
        max-width: 280px;
    }

    /* Stats overlap */
    .stats-overlap {
        margin-top: -50px;
    }
    .stat-number {
        font-size: 2rem;
        -webkit-text-stroke: 1px var(--clr-accent);
    }
    .stat-item {
        padding: 24px 14px;
    }
    .stat-label {
        font-size: 11px;
    }

    /* About header grid */
    .about-header-grid {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 40px;
    }

    /* About main grid */
    .about-main-grid {
        gap: 25px;
    }
    .about-image-primary {
        height: 300px;
    }
    .complex-text-area h3 {
        font-size: 1.4rem;
    }

    /* Bento grid */
    .bento-grid {
        flex-direction: column;
        height: auto;
    }
    .bento-large { height: 400px; }
    .bento-small { height: 280px; }
    .bento-tile { border-radius: 20px; }
    .bento-content {
        bottom: 25px;
        left: 25px;
        right: 25px;
    }
    .bento-tile h3 {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }
    .bento-small h3 { font-size: 1.2rem; }
    .bento-metadata {
        top: 25px;
        left: 25px;
    }
    .bento-number {
        top: 25px;
        right: 25px;
        font-size: 3.5rem;
    }
    .corner-marker,
    .tile-corner {
        width: 20px;
        height: 20px;
    }
    .top-left { top: 20px; left: 20px; }
    .bottom-right { bottom: 20px; right: 20px; }

    /* Holdings dashboard */
    .holdings-dashboard { gap: 20px; }
    .holdings-tile {
        padding: 35px 25px;
        border-radius: 20px;
    }
    .tile-navy h3 { font-size: 1.8rem; }
    .tile-white h3 { font-size: 1.6rem; }
    .tile-meta { gap: 20px; }
    .tile-content p { font-size: 15px; }
    .tile-compliance { padding: 30px 20px; }

    /* Protocol section */
    .protocol-hybrid-parent {
        grid-template-columns: 1fr;
    }
    .protocol-mini-grid {
        grid-template-columns: 1fr;
    }

    /* Inquiry form */
    .inquiry-grid { gap: 40px; }
    .inquiry-form-card {
        padding: 30px 20px;
        border-radius: 24px;
    }
    .inquiry-content h2 {
        font-size: clamp(1.8rem, 6vw, 2.5rem) !important;
    }

    /* Team section */
    .team-grid {
        grid-template-columns: 1fr;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .testimonial-card { padding: 40px 25px; }

    /* Why choose hub */
    .wc-hub-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .wc-center-image { order: -1; }
    .wc-center-image img { max-height: 300px; }
    .wc-feature-item h4 { font-size: 1.1rem; }

    /* Pipeline methodology */
    .pipeline-track {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .pipeline-line {
        top: 0; bottom: 0;
        left: 50%; transform: translateX(-50%);
        width: 3px; height: 100%;
        background: linear-gradient(180deg, var(--clr-accent) 0%, rgba(255,106,0,0.3) 100%);
    }
    .pipeline-step {
        flex-direction: row;
        gap: 20px;
    }
    .step-circle { margin-bottom: 0; min-width: 48px; width: 48px; height: 48px; }
    .step-card { max-width: 100%; text-align: left; }
    .step-icon { margin: 0 0 12px 0; }

    /* Methodology tower */
    .methodology-tower-setup {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }
    .tower-center-graphic {
        grid-column: 1;
        grid-row: 1;
        margin-bottom: 30px;
    }
    .tower-center-graphic img { max-height: 300px; }
    .method-card {
        grid-column: 1 !important;
        grid-row: auto !important;
    }

    /* Inner hero */
    .inner-hero {
        min-height: 55vh;
        padding: 80px 0 60px;
        background-attachment: scroll;
    }
    .inner-hero h1 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    .inner-hero .hero-subtitle {
        font-size: 0.95rem;
    }
    .hero-ghost-text {
        font-size: 15vw;
    }

    /* Editorial splits */
    .editorial-split .split-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .editorial-split .split-visual {
        height: 300px;
    }
    .editorial-split .split-visual img {
        aspect-ratio: auto;
    }
    .editorial-split .split-content h2 {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
    }
    .editorial-split.reverse .split-grid {
        direction: ltr;
    }

    /* Sector grid */
    .sector-grid { grid-template-columns: 1fr; }
    .sector-card { height: 320px; }

    /* Industries bento */
    .ind-bento-grid { grid-template-columns: 1fr; }
    .ind-bento-featured { min-height: 350px; }

    /* Product dark tiles */
    .product-bento-dark {
        grid-template-columns: 1fr;
    }
    .product-dark-tile { height: 350px; }

    /* Contact hub */
    .contact-hub-grid { grid-template-columns: 1fr; }
    .hub-featured-card { min-height: 260px; }
    .hub-featured-content {
        padding: 25px;
        flex-wrap: wrap;
        gap: 15px;
    }
    .hub-icon-circle {
        width: 56px;
        height: 56px;
        min-width: 56px;
        font-size: 1.3rem;
    }
    .hub-glass-card { padding: 25px 20px; gap: 15px; }

    /* Premium form */
    .premium-form-wrap { grid-template-columns: 1fr; }
    .form-input-panel { padding: 35px 20px; }
    .sarvix-form .form-row { flex-direction: column; gap: 16px; }

    /* Pillar hero */
    .pillar-hero-grid { grid-template-columns: 1fr; }
    .hero-pillar-card {
        height: 350px;
    }
    .hero-pillar-card .pillar-title { font-size: 1.6rem; }
    .hero-pillar-card .pillar-content { padding: 25px; }
    .hero-pillar-card .pillar-desc { font-size: 0.85rem; }
    .hero-pillar-card .pillar-year-ghost { font-size: 3rem; }

    /* Approach bento */
    .approach-bento-grid { grid-template-columns: 1fr; }
    .approach-card { padding: 30px 22px; }

    /* CTA bridge */
    .cta-bridge {
        padding: 70px 0;
        background-attachment: scroll;
    }
    .cta-bridge .cta-content p {
        font-size: 0.95rem;
    }

    /* Metrics band */
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .metric-item { padding: 30px 15px; }
    .metric-val { font-size: 2rem; }

    /* Buttons: full width on mobile for consistency */
    .contactButton,
    .btn-primary {
        min-width: unset;
        padding: 0 30px;
        height: 52px;
        font-size: 13px;
    }

    /* Premium checklist */
    .premium-checklist li {
        font-size: 15px;
        gap: 12px;
    }

    /* Sub heading */
    .sub-heading {
        font-size: 12px;
        letter-spacing: 2px;
    }

    /* Lead text */
    .lead-text {
        font-size: 16px;
    }

    /* Leaders overlay: stack */
    .leaders-overlay {
        flex-direction: column;
        border-radius: 16px;
        text-align: center;
        padding: 20px;
    }

    /* Partners grid */
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Marquee */
    .marquee-section { padding: 50px 0; }
    .marquee-item {
        font-size: 1.1rem;
        padding: 0 25px;
    }

    /* Footer */
    .footer-section { padding: 60px 0 0; }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .footer-bottom-flex {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    .footer-brand-line {
        position: static;
        transform: none;
    }

    /* Solutions radial hub */
    .solutions-radial-hub {
        grid-template-columns: 1fr;
    }
    .hub-center-image { grid-column: 1; grid-row: 1; }
    .tl-card, .tr-card, .bl-card, .br-card {
        grid-column: 1; grid-row: auto;
    }
    .hub-card::after { display: none; }
    .text-right { text-align: left; }

    /* Spec ledger */
    .spec-ledger { padding: 25px; }
}


/* ============================================================
   MOBILE SMALL (≤ 375px) — Fine-tuning
   ============================================================ */
@media (max-width: 400px) {
    .container { padding: 0 15px; }
    .hero { height: 100vh; min-height: 500px; }
    .stat-number { font-size: 1.6rem; }
    .stat-item { padding: 18px 10px; }
    .bento-large { height: 350px; }
    .bento-small { height: 240px; }
    .bento-tile h3 { font-size: 1.3rem; }
    .holdings-tile { padding: 25px 18px; }
    .tile-navy h3 { font-size: 1.5rem; }
    .inquiry-form-card { padding: 25px 16px; }
    .hero-pillar-card { height: 300px; }
    .product-dark-tile { height: 300px; }
    .editorial-split .split-visual { height: 250px; }
    .hub-featured-card { min-height: 240px; }
    .sector-card { height: 280px; }
    .ind-bento-featured { min-height: 300px; }
    .contactButton, .btn-primary { height: 48px; font-size: 12px; padding: 0 24px; }
}


/* ============================================================
   TOUCH DEVICE OPTIMIZATIONS
   ============================================================ */
@media (hover: none) and (pointer: coarse) {
    /* Disable parallax on touch — it's jittery */
    .hero,
    .inner-hero,
    .cta-bridge,
    .marquee-section,
    .inquiry-section,
    .industries-sectors-section,
    .metrics-band {
        background-attachment: scroll !important;
    }

    /* Ensure all interactive elements meet 44px minimum touch target */
    .nav-links a,
    .footer-links a,
    .mobile-nav-links li a {
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    /* Disable hover transforms on touch (prevent sticky states) */
    .bento-tile:hover .bento-bg { transform: none; }
    .holdings-tile:hover { transform: none; }
    .hero-pillar-card:hover { transform: none; }
    .product-dark-tile:hover { transform: none; }
    .approach-card:hover { transform: none; }
    .hub-glass-card:hover { transform: none; }

    /* Form elements: larger padding for fat fingers */
    .sarvix-form input,
    .sarvix-form select,
    .sarvix-form textarea,
    .inquiry-form input,
    .inquiry-form select,
    .inquiry-form textarea {
        padding: 16px 18px;
        font-size: 16px; /* Prevents iOS zoom on focus */
    }
}