﻿/*
 * ============================================================
 * SANJUN TECH TRADING - Main Stylesheet
 * ============================================================
 *
 * TABLE OF CONTENTS:
 * ------------------
 * 1.  GLOBAL VARIABLES & RESET ............. (ligne ~30)
 * 2.  HEADER / NAVIGATION .................. (ligne ~51)
 *     - Logo, nav links, CTA button
 *     - Hamburger menu icon
 * 3.  HERO SECTION ......................... (ligne ~169)
 *     - Isometric container & layout
 *     - Hero text, logo, subtitle
 *     - Isometric grid (nodes, connectors, packet animation)
 *     - Background effects (orbs, particles, glass)
 *     - Positioning card (overlapping section)
 * 4.  CTA BUTTONS & HERO STATS ............ (ligne ~623)
 * 5.  RESPONSIVE (main breakpoints) ........ (ligne ~723)
 *     - Tablet (1024px)
 *     - Mobile (768px) — hero overflow fixes, grid scale
 * 6.  EXECUTIVE OVERVIEW SECTION ........... (ligne ~878)
 *     - Company description, logo, differentiators
 * 7.  VISION & MISSION ..................... (ligne ~1098)
 *     - Vision block (matching mission style)
 *     - Mission strip (3-column with icons)
 * 8.  KEY VERTICALS (DARK THEME) ........... (ligne ~1319)
 *     - Dark card grid (5 columns → 2 → 1)
 * 9.  GLOBAL NETWORK & COMPLIANCE ......... (ligne ~1486)
 * 10. HIGHLIGHT STATS BAR .................. (ligne ~1700)
 *     - Semi-transparent bar with scroll animation
 * 11. CONTACT US SECTION ................... (ligne ~1799)
 *     - Contact cards, form
 * 12. FOOTER ................................ (ligne ~2028)
 *
 * ============================================================
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap');


:root {
    --primary: #384aa3;
    /* Bleu principal (nav, boutons, accents) */
    --primary-light: #4a5fc7;
    /* Bleu clair (hover states) */
    --primary-dark: #2a3a7f;
    /* Bleu foncé (textes accentués) */
    --accent: #5f72ff;
    /* Bleu accent vif (gradients, CTA) */
    --accent-glow: #7b8dff;
    /* Bleu glow (effets de lueur) */
    --success: #34d399;
    /* Vert (indicateurs positifs) */
    --warning: #f59e0b;
    /* Orange/jaune (alertes) */
    --dark: #1e293b;
    /* Texte principal foncé */
    --dark-secondary: #0f172a;
    /* Fond très foncé (sections dark) */
    --dark-tertiary: #334155;
    /* Texte secondaire foncé */
    --light: #f8fafc;
    /* Fond clair */
    --light-secondary: #e2e8f0;
    /* Bordures et séparateurs */
    --glass-bg: rgba(255, 255, 255, 0.7);
    /* Fond glassmorphism */
    --glass-border: rgba(56, 74, 163, 0.15);
    /* Bordure glassmorphism */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    /* Ombre légère */
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #ffffff;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

/******************************************** HEADER / NAVIGATION **********************************/

#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(56, 74, 163, 0.08);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
}

#header.scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 220px;
    height: auto;
    display: block;
    transition: all 0.4s ease;
    filter: drop-shadow(0 2px 8px rgba(56, 74, 163, 0.15));
}

.logo:hover {
    filter: drop-shadow(0 4px 12px rgba(56, 74, 163, 0.25));
    transform: scale(1.03);
}

#header.scrolled .logo {
    width: 180px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 45px;
    align-items: center;
}

.main-nav a {
    position: relative;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.3px;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.main-nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.main-nav a:hover {
    color: var(--accent);
}

.main-nav a:hover::before {
    width: 100%;
}

.nav-cta {
    padding: 12px 28px !important;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    border-radius: 50px;
    color: white !important;
    box-shadow: 0 4px 20px rgba(95, 114, 255, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(95, 114, 255, 0.4);
}

.nav-cta::before {
    display: none;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--dark);
    transition: all 0.3s ease;
}


/******************************************** HERO SECTION **********************************/

/* Isometric Hero Section - Main Theme */


/* Isometric Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
    padding: 120px 0 60px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    /* Square Grid Background Pattern (Technical/Architectural) - EXTREMELY SUBTLE */
    background-image:
        linear-gradient(to right, rgba(203, 213, 225, 0.15) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(203, 213, 225, 0.15) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center top;
}

/* Layout Container */
.hero-iso-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    align-items: center;
    position: relative;
    z-index: 10;
}

/* LEFT COLUMN: Typography */
.hero-text {
    max-width: 700px;
}

.iso-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 24px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: #4f46e5;
    border-radius: 50%;
}

.iso-title {
    font-size: clamp(48px, 4vw, 72px);
    font-weight: 700;
    /* Bold/Heavy like MoonPay */
    line-height: 1.05;
    color: #0f172a;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -2px;
    margin-bottom: 30px;
}

.text-accent {
    color: #4f46e5;
    /* Primary Blue/Indigo */
}

.iso-subtitle {
    font-size: 22px;
    /* Slightly larger for balance */
    line-height: 1.6;
    color: #475569;
    /* Slightly darker for readability */
    margin-bottom: 40px;
    font-weight: 400;
    max-width: 600px;
    /* Wider to allow text to flow better */
    margin-top: 20px;
    /* Add space between logo and text */
}

/* Buttons */
.iso-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn-iso-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #384aa3;
    /* SanJun Brand Blue */
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-iso-primary:hover {
    background: #1d4ed8;
    /* Darker Blue on Hover */
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(37, 99, 235, 0.4);
    /* Blue glow */
}

.btn-iso-secondary {
    padding: 16px 32px;
    background: #f1f5f9;
    color: #0f172a;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-iso-secondary:hover {
    background: #e2e8f0;
}

/* RIGHT COLUMN: Isometric Visual */
.hero-visual-iso {
    position: relative;
    height: 600px;
    perspective: 2000px;
    /* Essential for 3D effect */
    display: flex;
    align-items: center;
    justify-content: center;
}

.iso-grid-plane {
    position: relative;
    width: 600px;
    height: 600px;
    transform: scale(0.7) rotateX(55deg) rotateZ(-45deg);
    /* Scaled down significantly */
    /* Isometric Projection */
    transform-style: preserve-3d;
}

/* Nodes */
/* Nodes - 3D Extrusion */
/* Nodes - Standing Up (Billboard) */
/* Nodes - Standing Up (Billboard) with Premium Polish */
.iso-node {
    position: absolute;
    width: 150px;
    /* Slightly larger for presence */
    height: 150px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 32px;
    /* Smoother, hyper-rounded */
    border: 1px solid rgba(255, 255, 255, 0.6);
    /* Specular Edge Highlight Effect handled by pseudo */
    box-shadow:
        /* Contact/Depth Shadow */
        -10px 10px 20px rgba(0, 0, 0, 0.05),
        /* Large Ambient Levitation Glow */
        -20px 20px 40px rgba(56, 74, 163, 0.12),
        /* Precision Inner Glow */
        inset 0 0 15px rgba(255, 255, 255, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: rotateZ(45deg) rotateX(-55deg) translateZ(40px);
    transform-style: preserve-3d;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    /* Apple-style ease-out */
    z-index: 2;
    animation: isoFloat 8s ease-in-out infinite;
    backdrop-filter: blur(24px);
    /* Deep frosted glass */
    overflow: visible;
}

/* Specular Highlight (Reflective Edge) */
.iso-node::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 32px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0.3) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.iso-node:hover {
    transform: rotateZ(45deg) rotateX(-55deg) translateZ(60px) scale(1.02);
    box-shadow:
        -15px 15px 30px rgba(0, 0, 0, 0.08),
        -25px 25px 50px rgba(56, 74, 163, 0.18),
        inset 0 0 20px rgba(255, 255, 255, 0.6);
    border-color: rgba(255, 255, 255, 0.1);
}

.node-icon {
    width: 44px;
    /* Slightly smaller for elegance */
    height: 44px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(56, 74, 163, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(56, 74, 163, 0.05);
    position: relative;
    transition: all 0.3s ease;
}

.iso-node:hover .node-icon {
    background: rgba(56, 74, 163, 0.08);
    transform: scale(1.1);
}

.node-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    border-radius: 16px;
    z-index: -1;
    opacity: 0.5;
}

.node-icon svg {
    width: 28px;
    height: 28px;
}

.node-label {
    font-size: 11px;
    /* Smaller, precise */
    font-weight: 800;
    color: #1e293b;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    /* Premium tracking */
    opacity: 0.9;
    margin-top: 6px;
    font-family: 'Outfit', sans-serif;
    transform: none;
}

/* Node Positions (Grid Coordinates) */
.node-sourcing {
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.node-logistics {
    top: 0;
    right: 0;
    animation-delay: 1s;
}

.node-regulatory {
    bottom: 0;
    left: 0;
    animation-delay: 2s;
}

.node-market {
    bottom: 0;
    right: 0;
    animation-delay: 3s;
}

/* Connectors (CSS Lines) */
.iso-connector {
    position: absolute;
    background: rgba(56, 74, 163, 0.15);
    /* Solid Brand-Tinted Gray */
    z-index: 1;
}

/* Horizontal top line */
.c1 {
    top: 74px;
    /* Centered on 150px node */
    left: 150px;
    /* Start at border */
    width: 300px;
    /* Exact distance between 150px nodes on 600px plane */
    height: 2px;
}

/* Vertical left line */
.c2 {
    top: 150px;
    /* Start at border */
    left: 74px;
    /* Centered on 150px node */
    width: 2px;
    height: 300px;
}

/* Bottom line */
.c3 {
    bottom: 74px;
    /* Centered on 150px node */
    left: 150px;
    /* Start at border */
    width: 300px;
    height: 2px;
}

@keyframes isoFloat {

    0%,
    100% {
        transform: translateZ(0px);
    }

    50% {
        transform: translateZ(20px);
        box-shadow: -20px 20px 50px rgba(0, 0, 0, 0.15);
    }
}

/* Partners Strip */
/* Partners Strip */
/* Positioning Section (Replaces Partners) */
.positioning-section {
    margin-top: -60px;
    /* Pull up into hero padding */
    padding: 40px 0;
    border-top: 1px solid rgba(241, 245, 249, 0.8);
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    width: 100%;
}

.positioning-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 90%;
}

.positioning-header {
    font-size: 12px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
    font-weight: 700;
    text-align: center;
    /* Or left aligned? Let's try Center for balance */
}

.positioning-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: flex-start;
}

.pos-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 24px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.pos-item:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(56, 74, 163, 0.08);
    border-color: rgba(56, 74, 163, 0.1);
    transform: translateY(-4px);
}

.pos-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #f1f5f9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #384aa3;
    /* Brand Color */
}


.pos-icon svg {
    stroke: #384aa3;
}

.pos-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.pos-content p {
    font-size: 14px;
    line-height: 1.5;
    color: #64748b;
}

@media (max-width: 768px) {
    .positioning-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .positioning-section {
        margin-top: 0;
        text-align: left;
    }

    .positioning-header {
        text-align: left;
    }
}


/******************************************** CTA BUTTONS & HERO STATS **********************************/


.hero-stats::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 20%;
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.stat-card {
    text-align: center;
    position: relative;
    z-index: 101;
}

.stat-icon {
    font-size: 36px;
    margin-bottom: 10px;
    display: block;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.15);
}



/* Scroll Indicator - Hidden */
.scroll-indicator {
    display: none;
}

.scroll-mouse {
    width: 32px;
    height: 52px;
    border: 2px solid rgba(56, 74, 163, 0.4);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

.scroll-wheel {
    width: 3px;
    height: 10px;
    background: var(--primary);
    border-radius: 3px;
    animation: scrollWheel 2.5s infinite;
}

@keyframes scrollWheel {

    0%,
    100% {
        opacity: 0;
        transform: translateY(0);
    }

    40% {
        opacity: 1;
    }

    80% {
        opacity: 0;
        transform: translateY(20px);
    }
}

.scroll-text {
    font-size: 11px;
    color: rgba(56, 74, 163, 0.7);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.scroll-arrow {
    color: rgba(56, 74, 163, 0.6);
    animation: scrollArrow 2s infinite;
}

@keyframes scrollArrow {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.6;
    }

    50% {
        transform: translateY(8px);
        opacity: 1;
    }
}

/******************************************** RESPONSIVE **********************************/

@media (max-width: 1024px) {
    .hero-title {
        font-size: 72px;
    }

    .hero-stats {
        padding: 30px 40px;
    }
}

@media (max-width: 768px) {
    #header {
        padding: 15px 0;
    }

    .logo {
        width: 160px;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 999;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .main-nav.active {
        opacity: 1;
        pointer-events: auto;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        text-align: center;
    }

    .main-nav ul li {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .main-nav.active ul li {
        opacity: 1;
        transform: translateY(0);
    }

    .main-nav.active ul li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .main-nav.active ul li:nth-child(2) {
        transition-delay: 0.2s;
    }

    .main-nav.active ul li:nth-child(3) {
        transition-delay: 0.3s;
    }

    .main-nav.active ul li:nth-child(4) {
        transition-delay: 0.4s;
    }

    .main-nav a {
        font-size: 24px;
        padding: 20px 0;
        display: block;
        color: var(--dark);
    }

    .main-nav a:hover {
        color: var(--primary);
    }

    .nav-cta {
        margin-top: 16px;
        font-size: 18px !important;
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
    }

    .hero-title {
        font-size: 52px;
        letter-spacing: -2px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 25px;
        padding: 30px;
        border-radius: 30px;
    }

    .stat-divider {
        width: 80px;
        height: 1px;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 140px;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 38px;
        letter-spacing: -1px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 10px 20px;
    }

    .btn-primary,
    .btn-outline {
        padding: 14px 28px;
        font-size: 14px;
    }
}


/******************************************** OVERVIEW  **********************************/

/* Overview Section */
.overview-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
    position: relative;
}

/* Remove animated background /
.overview-bg {
    display: none;
}


/* Container */
.overview-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header*/
.overview-header {
    margin-bottom: 60px;
    border-left: 4px solid var(--primary);
    padding-left: 24px;
}

.overview-badge {
    display: inline-block;
    padding: 6px 16px;
    background: transparent;
    border: 1.5px solid var(--primary);
    border-radius: 4px;
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.overview-title {
    font-size: 42px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 0;
    letter-spacing: -0.5px;
}

/* Description Wrapper - 2 Column Layout */
.overview-description-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 60px;
}

/* Description*/
.overview-description {
    margin-bottom: 60px;
    max-width: 900px;
}

.overview-intro {
    font-size: 20px;
    line-height: 1.7;
    color: #1e293b;
    font-weight: 500;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid #e2e8f0;
}

.overview-intro strong {
    color: var(--primary);
    font-weight: 700;
}

.overview-text {
    font-size: 17px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 24px;
}

.overview-text strong {
    color: #1e293b;
    font-weight: 600;
}

/* Logo Section */
.overview-logo {
    flex-shrink: 0;
    width: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: 160px;
}

.logo-container {
    position: relative;
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(56, 74, 163, 0.03) 0%, rgba(95, 114, 255, 0.03) 100%);
    border-radius: 50%;
    border: 2px solid rgba(56, 74, 163, 0.1);
}

.logo-image {
    width: 90%;
    height: 90%;
    object-fit: contain;
    animation: logoFloat 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(56, 74, 163, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .overview-section {
        padding: 80px 0;
    }

    .overview-title {
        font-size: 36px;
    }

    .overview-description-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .overview-logo {
        width: 100%;
        margin: 0 auto;
    }

    .logo-container {
        width: 220px;
        height: 220px;
    }

    .differentiators-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .overview-section {
        padding: 60px 0;
    }

    .overview-title {
        font-size: 28px;
    }

    .overview-intro {
        font-size: 18px;
    }

    .overview-text {
        font-size: 16px;
    }

    .differentiators-title {
        font-size: 22px;
    }
}





/******************************************** VISION & MISSION **********************************/

.vision-section {
    padding: 120px 0;
    background: #fafbfd;
    position: relative;
    overflow: hidden;
}

.vision-section::before,
.vision-section::after {
    display: none;
}

.vision-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

/* ===== SECTION HEADER ===== */
.vm-section-header {
    margin-bottom: 72px;
    border-left: 4px solid var(--primary);
    padding-left: 24px;
}

.vm-section-header .overview-badge {
    margin-bottom: 16px;
}

.vm-section-header .overview-title {
    margin-bottom: 0;
}

/* ===== SHARED LABEL ===== */
.vm-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 32px;
}

.vm-label::before {
    content: '';
    width: 24px;
    height: 1.5px;
    background: var(--primary);
}

/* ===== VISION BLOCK ===== */
.vm-vision-block {
    text-align: center;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid #e2e8f0;
}

.vm-vision-area {
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #e2e8f0;
}

.vm-vision-area .vm-mission-title strong {
    color: var(--primary);
    font-weight: 600;
}

.vm-vision-block .vm-label {
    justify-content: center;
}

.vm-vision-block .vm-label::before {
    display: none;
}

.vm-quote {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 400;
    color: #334155;
    line-height: 1.5;
    letter-spacing: -0.5px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
    border: none;
}

.vm-highlight {
    color: var(--primary);
    font-weight: 700;
}

/* ===== MISSION BLOCK ===== */
.vm-mission-block {
    position: relative;
}

.vm-label-mission {
    margin-bottom: 48px;
}

/* Mission Strip - 3 columns with dividers */
.vm-mission-strip {
    display: flex;
    align-items: stretch;
    gap: 0;
}

.vm-mission-item {
    flex: 1;
    padding: 0 40px;
}

.vm-mission-item:first-child {
    padding-left: 0;
}

.vm-mission-item:last-child {
    padding-right: 0;
}

.vm-mission-divider {
    width: 1px;
    background: #e2e8f0;
    flex-shrink: 0;
    align-self: stretch;
}

.vm-mission-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.vm-mission-num {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
}

.vm-mission-icon {
    width: 44px;
    height: 44px;
    background: rgba(56, 74, 163, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s ease;
}

.vm-mission-item:hover .vm-mission-icon {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 16px rgba(56, 74, 163, 0.2);
}

.vm-mission-title {
    font-size: 16px;
    font-weight: 500;
    color: #1e293b;
    line-height: 1.65;
    letter-spacing: -0.1px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .vm-mission-strip {
        flex-direction: column;
        gap: 0;
    }

    .vm-mission-item {
        padding: 28px 0;
    }

    .vm-mission-item:first-child {
        padding-top: 0;
    }

    .vm-mission-item:last-child {
        padding-bottom: 0;
    }

    .vm-mission-divider {
        width: 100%;
        height: 1px;
    }
}

@media (max-width: 768px) {
    .vision-section {
        padding: 80px 0;
    }

    .vm-quote {
        font-size: 24px;
    }

    .vm-vision-block {
        margin-bottom: 48px;
        padding-bottom: 48px;
    }
}



/******************************************** KEY VERTICALS **********************************/

.verticals-section {
    padding: 120px 0;
    background: #020617;
    /* Very dark blue/black */
    position: relative;
    overflow: hidden;
}

/* Subtle Grid Background */
.verticals-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    pointer-events: none;
}

.verticals-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

/* Header  */

.verticals-header {
    margin-bottom: 80px;
    border-left: 4px solid #ffffff;
    padding-left: 24px;
    max-width: 800px;
}

.verticals-badge {
    display: inline-block;
    padding: 6px 16px;
    background: transparent;
    border: 1.5px solid #ffffff;
    border-radius: 4px;
    color: white;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.verticals-title {
    font-size: 48px;
    font-weight: 500;
    color: white;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.verticals-subtitle {
    font-size: 16px;
    color: #94a3b8;
    line-height: 1.6;
    max-width: 600px;
}

/* Grid Layout */
.verticals-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    align-items: stretch;
}

/* Card Design */
.vertical-card {
    background: #0f172a;
    /* Dark Slate */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: all 0.3s ease;
    min-height: 380px;
}

.vertical-card:hover {
    background: #1e293b;
    border-color: rgba(56, 74, 163, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.v-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    /* Icon Box */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    color: #e2e8f0;
    transition: all 0.3s ease;
}

.vertical-card:hover .v-card-icon {
    background: var(--primary);
    color: white;
}

.v-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.v-card-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    text-align: left;
    line-height: 1.3;
}

.v-card-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #94a3b8;
    text-align: left;
}

/* Responsive */
@media (max-width: 1200px) {
    .verticals-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .verticals-grid {
        grid-template-columns: 1fr;
    }

    .verticals-title {
        font-size: 36px;
    }

    .verticals-header {
        padding-left: 20px;
    }

    .verticals-section {
        padding: 80px 0;
    }
}

/******************************************** GLOBAL NETWORK (MARKET ACCESS) **********************************/

.network-section {
    padding: 100px 0;
    background: #f8fafc;
    overflow: hidden;
}

.network-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 40px;
}

.network-header {
    margin-bottom: 40px;
    border-left: 4px solid var(--primary);
    padding-left: 24px;
}

.network-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left Content */
.network-badge {
    display: inline-block;
    padding: 6px 16px;
    background: transparent;
    border: 1.5px solid var(--primary);
    border-radius: 4px;
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.network-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark-secondary);
    line-height: 1.2;
    margin-bottom: 24px;
}

.network-text {
    font-size: 17px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 40px;
}

/* Stats Grid - Clean */
.network-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid #e2e8f0;
}

.network-stat-item {
    text-align: left;
}

.stat-val {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* List with Icons */
.network-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.network-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--dark-secondary);
    font-weight: 500;
}

.network-list li svg {
    color: var(--success);
    flex-shrink: 0;
}

/* Right Visual - Isometric Hub */
.network-visual {
    position: relative;
    height: 500px;
    background: #f8fafc;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Right Visual - Simple Advantage Cards */
.network-visual.simplified {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 20px;
    background: transparent;
    border: none;
    box-shadow: none;
    height: auto;
    overflow: visible;
}

.advantage-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.advantage-card:hover {
    transform: translateX(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.card-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.card-icon {
    width: 40px;
    height: 40px;
    background: rgba(56, 74, 163, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.card-desc {
    font-size: 15px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .network-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .network-visual {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .network-section {
        padding: 80px 0;
    }

    .network-title {
        font-size: 32px;
    }

    .network-stats-grid {
        gap: 32px;
    }

    .stat-val {
        font-size: 28px;
    }
}

/******************************************** HIGHLIGHT STATS BAR **********************************/

.highlight-bar {
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 60px 0;
    position: relative;
    z-index: 5;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.stat-item {
    text-align: center;
    flex: 1;
    opacity: 0;
    transform: translateY(30px);
    animation: statFadeIn 0.7s ease forwards;
    animation-play-state: paused;
}

.highlight-bar.visible .stat-item {
    animation-play-state: running;
}

.stat-item:nth-child(1) {
    animation-delay: 0.1s;
}

.stat-item:nth-child(3) {
    animation-delay: 0.3s;
}

.stat-item:nth-child(5) {
    animation-delay: 0.5s;
}

.stat-item:nth-child(7) {
    animation-delay: 0.7s;
}

@keyframes statFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.stat-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    opacity: 0;
    animation: statFadeIn 0.5s ease forwards 0.9s;
    animation-play-state: paused;
}

.highlight-bar.visible .stat-divider {
    animation-play-state: running;
}

@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        gap: 40px;
    }

    .stat-divider {
        display: none;
    }
}

/******************************************** CONTACT US SECTION **********************************/

.contact-section {
    padding: 120px 0;
    background: white;
    position: relative;
}

.contact-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 40px;
}

.contact-header {
    text-align: left;
    max-width: 800px;
    margin: 0 0 80px 0;
    border-left: 4px solid var(--primary);
    padding-left: 24px;
}

.contact-badge {
    display: inline-block;
    padding: 6px 16px;
    background: transparent;
    border: 1.5px solid var(--primary);
    border-radius: 4px;
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.contact-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark-secondary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-subtitle {
    font-size: 18px;
    color: #64748b;
    line-height: 1.6;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
}

/* Contact Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: white;
    padding: 24px;
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.info-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.info-icon {
    width: 48px;
    height: 48px;
    background: #f1f5f9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.info-card:hover .info-icon {
    background: var(--primary);
    color: white;
}

.info-details h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-secondary);
    margin-bottom: 8px;
}

.info-details p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.5;
}

.info-details p a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

.info-details p a:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    border-radius: 20px;
    padding: 10px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.05);
    /* Very subtle depth */
}

.glass-form {
    background: #f8fafc;
    padding: 40px;
    border-radius: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--dark-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    color: var(--dark);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(56, 74, 163, 0.08);
    /* Clean brand ring */
}

.btn-submit {
    width: auto;
    /* Not full width for more "premium" look */
    min-width: 200px;
    padding: 16px 32px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(56, 74, 163, 0.2);
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 80px 0;
    }

    .contact-title {
        font-size: 36px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}


/******************************************** FOOTER **********************************/

.footer {
    background: #0f172a;
    color: white;
    padding: 80px 0 0;
    margin-bottom: 0;
    border-top: 1px solid #1e293b;
    position: relative;
    z-index: 100;
    display: block;
}

.footer-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 60px;
    border-bottom: 1px solid #1e293b;
    gap: 60px;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    width: 180px;
    margin-bottom: 24px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-tagline {
    color: #94a3b8;
    line-height: 1.6;
    font-size: 15px;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-col h4 {
    color: white;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col li {
    margin-bottom: 16px;
}

.footer-col a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.footer-col a:hover {
    color: white;
    padding-left: 4px;
}

/* Footer Contact Styles */
.footer-contact li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-contact .footer-icon {
    flex-shrink: 0;
    color: var(--primary);
    margin-top: 2px;
}

.footer-contact a {
    color: #94a3b8;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: white;
    padding-left: 0;
}

/* Footer Bottom */
.footer-bottom {
    padding: 30px 0;
    margin-top: 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: #64748b;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.footer-bottom p span {
    color: #94a3b8;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 40px;
        width: 100%;
        justify-content: space-between;
    }

    .footer-bottom {
        flex-direction: column-reverse;
        gap: 24px;
        text-align: center;
    }
}


/* Isometric Hero Responsive */
@media (max-width: 1024px) {
    .hero-iso-container {
        grid-template-columns: 1fr;
        padding-top: 40px;
        gap: 40px;
    }

    .hero-text {
        text-align: center;
        margin: 0 auto;
    }

    .hero-main-logo {
        max-width: 200px;
        margin-left: auto;
        margin-right: auto;
    }

    .iso-subtitle {
        font-size: 16px;
        max-width: 85%;
        margin-left: auto;
        margin-right: auto;
    }

    .iso-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        max-width: 320px;
        margin: 0 auto;
    }

    .btn-iso-primary,
    .btn-iso-secondary {
        width: 100%;
        justify-content: center;
        text-align: center;
        font-size: 14px;
        padding: 14px 24px;
        box-sizing: border-box;
    }

  
    .hero-visual-iso {
        height: 380px;
        margin-top: -30px;
    }

    .iso-grid-plane {
        transform: scale(0.55) rotateX(55deg) rotateZ(-45deg);
    }
}

@media (max-width: 768px) {

    html,
    body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }

    .hero {
        overflow: hidden !important;
        padding: 80px 0 10px !important;
        max-width: 100vw !important;
    }

    .hero-iso-container {
        padding: 0 20px !important;
        padding-top: 10px !important;
        overflow: hidden !important;
        max-width: 100% !important;
    }

    .hero-text {
        max-width: 100% !important;
        overflow: hidden !important;
        padding: 0 !important;
    }

    .hero-main-logo {
        max-width: 140px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        margin-bottom: 12px !important;
    }

    .iso-subtitle {
        font-size: 13px !important;
        line-height: 1.5 !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-bottom: 20px !important;
        margin-top: 10px !important;
    }

    .iso-buttons {
        flex-direction: column !important;
        width: 100% !important;
        gap: 10px !important;
        padding: 0 !important;
        max-width: 280px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .btn-iso-primary,
    .btn-iso-secondary {
        width: 100% !important;
        justify-content: center !important;
        text-align: center !important;
        font-size: 13px !important;
        padding: 12px 16px !important;
        box-sizing: border-box !important;
    }

    /* Visual: constrain to viewport width */
    .hero-visual-iso {
        width: 100% !important;
        max-width: 100% !important;
        height: 300px !important;
        overflow: visible !important;
        margin: 0 auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .iso-grid-plane {
        transform: scale(0.35) rotateX(55deg) rotateZ(-45deg) !important;
        margin: -195px !important;
    }

    .node-label {
        font-size: 18px !important;
        letter-spacing: 0.12em !important;
    }

    .node-icon {
        width: 55px !important;
        height: 55px !important;
    }

    .node-icon svg {
        width: 32px !important;
        height: 32px !important;
    }

    .iso-packet {
        display: none !important;
    }

    .iso-title {
        font-size: 28px !important;
        letter-spacing: -1px !important;
    }

    .positioning-grid {
        grid-template-columns: 1fr !important;
    }

    .positioning-container {
        padding: 24px 16px !important;
    }
}


.iso-packet {
    position: absolute;
    width: 48px;
    /* Enlarged as requested */
    height: 48px;
    object-fit: contain;
    z-index: 10;
    will-change: top, left, opacity, transform;
    filter: drop-shadow(0 0 12px rgba(56, 114, 255, 0.5));
    animation:
        movePacket 15s linear infinite,
        packetPulse 2s ease-in-out infinite alternate;
}

@keyframes packetPulse {
    from {
        scale: 0.9;
        filter: drop-shadow(0 0 8px rgba(56, 114, 255, 0.3));
    }

    to {
        scale: 1.1;
        filter: drop-shadow(0 0 15px rgba(56, 114, 255, 0.7));
    }
}

@keyframes flowPulse {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

@keyframes movePacket {
    0% {
        top: 51px;
        left: 501px;
        opacity: 0;
        transform: rotateZ(45deg) rotateX(-55deg) translateZ(30px);
    }

    5% {
        opacity: 1;
    }

    30% {
        top: 51px;
        left: 51px;
        transform: rotateZ(45deg) rotateX(-55deg) translateZ(30px);
    }

    60% {
        top: 501px;
        left: 51px;
        transform: rotateZ(45deg) rotateX(-55deg) translateZ(30px);
    }

    90% {
        top: 501px;
        left: 501px;
        opacity: 1;
        transform: rotateZ(45deg) rotateX(-55deg) translateZ(30px);
    }

    100% {
        top: 501px;
        left: 501px;
        opacity: 0;
        transform: rotateZ(45deg) rotateX(-55deg) translateZ(30px);
    }
}

@keyframes isoFloat {

    0%,
    100% {
        transform: rotateZ(45deg) rotateX(-55deg) translateZ(40px);
    }

    50% {
        transform: rotateZ(45deg) rotateX(-55deg) translateZ(55px);
    }
}

/* Hero Main Logo  */
.hero-main-logo {
    max-width: 380px;
    /* Adjusted size */
    height: auto;
    display: block;
    margin-bottom: 20px;
    /* Reduced margin to group with subtitle */
    /* Depth Effect */
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
    transform: translateZ(10px);
    /* Subtle 3D lift hint */
}

