/* ============================================================
   LEEHWA North America — Main Page Styles (index.html)
   CSS Variables, Nav, Hero, Sections, Footer, Responsive
   ============================================================ */

/* ─── Variables ─── */
:root {
    --blue-50: #e8f2fc;
    --blue-100: #cce2f9;
    --blue-200: #99c5f3;
    --blue-300: #5ca3e8;
    --blue-400: #2e8bdd;
    --blue-500: #0073CF;
    --blue-600: #0061b0;
    --blue-700: #004f91;
    --blue-800: #003e72;
    --blue-900: #002e54;
    --dark: #0f172a;
    --dark-700: #1e293b;
    --dark-600: #334155;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --white: #f7f8fa;
    --scm-color: #0073CF;
    --america-color: #10b981;
    --mexico-color: #f59e0b;
    --lci-color: #8b5cf6;
}

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

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden
}

/* ─── STICKY VISION BAR ─── */
.vision-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: linear-gradient(90deg, var(--dark), #0a1628);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 8px 20px;
    font-size: 13px;
    letter-spacing: 0.5px
}

.vision-bar-label {
    background: rgba(0, 115, 207, .25);
    border: 1px solid rgba(0, 115, 207, .4);
    color: var(--blue-300);
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px
}

.vision-bar-text {
    font-weight: 600;
    color: rgba(255, 255, 255, .85)
}

/* ─── NAV ─── */
nav {
    position: fixed;
    top: 36px;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    transition: all .3s
}

nav.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, .08)
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none
}

.logo img {
    height: 40px;
    display: block
}

.logo-text {
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -1px;
    color: var(--dark)
}

.logo-text span {
    color: var(--blue-500)
}

.logo-sub {
    font-size: 10px;
    color: var(--gray-400);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center
}

.nav-links a {
    text-decoration: none;
    color: var(--gray-600);
    font-weight: 500;
    font-size: 15px;
    transition: color .2s;
    position: relative
}

.nav-links a:hover {
    color: var(--blue-600)
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blue-500);
    transition: width .3s
}

.nav-links a:hover::after {
    width: 100%
}

.nav-cta {
    background: var(--blue-600) !important;
    color: white !important;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all .2s
}

.nav-cta:hover {
    background: var(--blue-700) !important;
    transform: translateY(-1px)
}

.nav-cta::after {
    display: none !important
}

/* ─── Language Switcher ─── */
.lang-switcher {
    position: relative;
    margin-left: 4px
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .08);
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, .8);
    cursor: pointer;
    transition: all .2s;
    letter-spacing: .5px
}

.lang-btn:hover {
    border-color: var(--blue-400);
    color: white
}

.lang-btn svg {
    width: 10px;
    height: 10px;
    transition: transform .2s
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .1);
    min-width: 100px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: all .2s;
    z-index: 300
}

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

.lang-option {
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
    transition: all .15s;
    display: flex;
    align-items: center;
    gap: 8px
}

.lang-option:first-child {
    border-radius: 7px 7px 0 0
}

.lang-option:last-child {
    border-radius: 0 0 7px 7px
}

.lang-option:hover {
    background: var(--gray-50);
    color: var(--blue-600)
}

.lang-option.active {
    color: var(--blue-600);
    font-weight: 700
}

.lang-option.active::after {
    content: '✓';
    margin-left: auto;
    font-size: 11px
}

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(10, 15, 30, .85) 0%, rgba(15, 29, 58, .8) 40%, rgba(11, 40, 84, .85) 100%), url('images/hero-bg.jpg') center/cover no-repeat;
    padding: 140px 40px 80px;
    position: relative;
    overflow: hidden;
    color: white
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -100px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 115, 207, .2) 0%, transparent 60%);
    border-radius: 50%
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16, 185, 129, .1) 0%, transparent 60%);
    border-radius: 50%
}

.hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 115, 207, .15);
    border: 1px solid rgba(0, 115, 207, .3);
    color: var(--blue-300);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 32px;
    letter-spacing: 1px;
    text-transform: uppercase
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--blue-400);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1) }
    50% { opacity: .5; transform: scale(1.5) }
}

.hero h1 {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -1.5px;
    margin-bottom: 24px
}

.hero h1 .gradient-text {
    background: linear-gradient(135deg, var(--blue-300), var(--blue-500), #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.hero-slogan {
    font-size: 22px;
    font-weight: 700;
    color: var(--blue-300);
    letter-spacing: 0.5px;
    margin-bottom: 12px !important
}

.hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, .55);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center
}

/* Hero Animated Orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .4;
    animation: orbFloat 8s ease-in-out infinite alternate;
    pointer-events: none
}

.hero-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 115, 207, .35), transparent 70%);
    top: -10%;
    right: -5%;
    animation-duration: 10s
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, .2), transparent 70%);
    bottom: -5%;
    left: -5%;
    animation-duration: 12s;
    animation-delay: -4s
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(92, 163, 232, .2), transparent 70%);
    top: 30%;
    left: 40%;
    animation-duration: 14s;
    animation-delay: -2s
}

@keyframes orbFloat {
    0%   { transform: translate(0, 0) scale(1) }
    33%  { transform: translate(30px, -40px) scale(1.1) }
    66%  { transform: translate(-20px, 30px) scale(.95) }
    100% { transform: translate(15px, -20px) scale(1.05) }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
    animation: scrollBounce 2s ease-in-out infinite
}

.scroll-indicator span {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
    font-weight: 500
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, .3);
    border-radius: 12px;
    position: relative
}

.scroll-mouse::after {
    content: '';
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, .5);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0) }
    50%       { transform: translateX(-50%) translateY(8px) }
}

@keyframes scrollWheel {
    0%   { opacity: 1; transform: translateX(-50%) translateY(0) }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px) }
}

/* ─── BUTTONS ─── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue-500);
    color: white;
    padding: 16px 36px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all .3s;
    border: none;
    cursor: pointer
}

.btn-primary:hover {
    background: var(--blue-600);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 115, 207, .4)
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .08);
    color: white;
    padding: 16px 36px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, .15);
    transition: all .3s
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, .15);
    border-color: rgba(255, 255, 255, .3)
}

.btn-white {
    background: white;
    color: var(--blue-700);
    padding: 16px 36px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all .3s
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .2)
}

.btn-outline-w {
    background: transparent;
    color: white;
    padding: 16px 36px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, .25);
    transition: all .3s
}

.btn-outline-w:hover {
    background: rgba(255, 255, 255, .1);
    border-color: white
}

/* ─── LOGOS BAR ─── */
.logos-bar {
    background: #fff;
    padding: 48px 40px;
    border-bottom: 1px solid var(--gray-100)
}

.logos-bar-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 64px;
    flex-wrap: wrap
}

.logos-bar-label {
    font-size: 13px;
    color: var(--gray-400);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap
}

.logos-bar-items {
    display: flex;
    gap: 48px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center
}

.logos-bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 24px;
    border-radius: 12px;
    transition: all .4s cubic-bezier(.16, 1, .3, 1);
    position: relative
}

.logos-bar-item::after {
    content: '';
    position: absolute;
    right: -24px;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--gray-200)
}

.logos-bar-item:last-child::after {
    display: none
}

.logos-bar-item img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: grayscale(40%);
    transition: filter .3s;
    mix-blend-mode: multiply
}

.logos-bar-item:hover {
    background: rgba(0, 115, 207, .06);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 115, 207, .1)
}

.logos-bar-item:hover img {
    filter: grayscale(0%) drop-shadow(0 2px 8px rgba(0, 0, 0, .15))
}

.logos-bar-item span {
    font-weight: 400;
    font-size: 12px;
    display: block;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 2px
}

/* ─── STATS BAR ─── */
.stats-bar {
    background: var(--dark);
    padding: 60px 40px
}

.stats-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px
}

.stat-item {
    text-align: center;
    color: white;
    transition: transform .3s
}

.stat-item:hover {
    transform: translateY(-4px)
}

.stat-number {
    font-size: 52px;
    font-weight: 900;
    letter-spacing: -2px;
    background: linear-gradient(135deg, var(--blue-300), var(--blue-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all .3s
}

.stat-item:hover .stat-number {
    text-shadow: 0 0 40px rgba(0, 115, 207, .3)
}

.stat-label {
    font-size: 14px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 8px;
    font-weight: 500
}

/* ─── SECTION COMMON ─── */
.section-header {
    text-align: center;
    margin-bottom: 64px
}

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--blue-600);
    margin-bottom: 16px
}

.section-title {
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -1.5px;
    color: var(--dark);
    margin-bottom: 16px
}

.section-desc {
    font-size: 18px;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto
}

/* ─── OUR COMPANIES (SUBSIDIARIES) ─── */
.subsidiaries {
    padding: 120px 40px;
    background: var(--white)
}

.subs-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px
}

.sub-card {
    border-radius: 20px;
    overflow: hidden;
    transition: all .4s cubic-bezier(.16, 1, .3, 1);
    cursor: pointer;
    position: relative;
    background: var(--gray-50);
    border: 1px solid var(--gray-100)
}

.sub-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .1)
}

.sub-card:nth-child(1):hover { box-shadow: 0 24px 60px rgba(0, 115, 207, .15), 0 0 0 1px rgba(0, 115, 207, .2) }
.sub-card:nth-child(2):hover { box-shadow: 0 24px 60px rgba(16, 185, 129, .15), 0 0 0 1px rgba(16, 185, 129, .2) }
.sub-card:nth-child(3):hover { box-shadow: 0 24px 60px rgba(245, 158, 11, .15), 0 0 0 1px rgba(245, 158, 11, .2) }
.sub-card:nth-child(4):hover { box-shadow: 0 24px 60px rgba(139, 92, 246, .15), 0 0 0 1px rgba(139, 92, 246, .2) }

.sub-card-img {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden
}

.sub-card-img svg {
    width: 72px;
    height: 72px;
    opacity: .6
}

.sub-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform .6s cubic-bezier(.16, 1, .3, 1)
}

.sub-card:hover .sub-card-img img {
    transform: scale(1.08)
}

.sub-card-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, .4), transparent);
    z-index: 1;
    pointer-events: none
}

.sub-card:nth-child(1) .sub-card-img { background: linear-gradient(135deg, #0061b0, #0073CF) }
.sub-card:nth-child(2) .sub-card-img { background: linear-gradient(135deg, #059669, #10b981) }
.sub-card:nth-child(3) .sub-card-img { background: linear-gradient(135deg, #d97706, #f59e0b) }
.sub-card:nth-child(4) .sub-card-img { background: linear-gradient(135deg, #7c3aed, #8b5cf6) }

.sub-card-body {
    padding: 28px
}

.sub-card-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px
}

.sub-card-tag img {
    height: 22px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply
}

.sub-card:nth-child(1) .sub-card-tag { color: var(--scm-color) }
.sub-card:nth-child(2) .sub-card-tag { color: var(--america-color) }
.sub-card:nth-child(3) .sub-card-tag { color: var(--mexico-color) }
.sub-card:nth-child(4) .sub-card-tag { color: var(--lci-color) }

.sub-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.5px
}

.sub-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7
}

.sub-card .sub-services {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 16px
}

.sub-card .sub-tag {
    font-size: 11px;
    background: var(--gray-100);
    color: var(--gray-600);
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 500
}

.sub-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s
}

.sub-card-link:hover { gap: 10px }

.sub-card:nth-child(1) .sub-card-link { color: var(--scm-color) }
.sub-card:nth-child(2) .sub-card-link { color: var(--america-color) }
.sub-card:nth-child(3) .sub-card-link { color: var(--mexico-color) }
.sub-card:nth-child(4) .sub-card-link { color: var(--lci-color) }

/* ─── GROUP NETWORK ─── */
.group-header {
    text-align: center;
    margin-top: 80px;
    padding-top: 48px;
    border-top: 1px solid var(--gray-200)
}

.group-header .section-label { margin-bottom: 8px }

.group-header h3 {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 8px
}

.group-header p {
    font-size: 14px;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto
}

.group-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-top: 32px
}

.group-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all .3s
}

.group-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .06)
}

.group-card-icon { font-size: 28px; margin-bottom: 10px }

.group-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px }

.group-card p { font-size: 12px; color: var(--gray-400); line-height: 1.5 }

.group-card a {
    display: inline-block;
    margin-top: 8px;
    font-size: 11px;
    color: var(--blue-600);
    font-weight: 600;
    text-decoration: none
}

.group-card a:hover { text-decoration: underline }

/* ─── VISION & MISSION ─── */
.vision-section {
    padding: 120px 40px;
    background: linear-gradient(160deg, #050d1a 0%, #0a1628 40%, #0f1d3a 100%);
    color: white;
    position: relative;
    overflow: hidden
}

.vision-section::before {
    content: '';
    position: absolute;
    top: -300px;
    right: -200px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 115, 207, .08) 0%, transparent 60%);
    border-radius: 50%
}

/* Vision Particles */
.vision-section .vision-particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(92, 163, 232, .4);
    border-radius: 50%;
    animation: particleTwinkle 3s ease-in-out infinite
}

@keyframes particleTwinkle {
    0%, 100% { opacity: .2; transform: scale(1) }
    50%       { opacity: .8; transform: scale(1.5) }
}

.vision-inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.vision-top {
    text-align: center;
    margin-bottom: 80px
}

.vision-year {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue-400);
    margin-bottom: 24px
}

.vision-year::before, .vision-year::after {
    content: '';
    width: 40px;
    height: 1px;
    background: rgba(0, 115, 207, .4)
}

.vision-statement {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.3;
    margin-bottom: 16px
}

.vision-statement-en {
    font-size: 16px;
    color: var(--gray-400);
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7
}

.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 64px
}

.vision-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
    padding: 40px;
    transition: all .4s
}

.vision-card:hover {
    background: rgba(0, 115, 207, .08);
    border-color: rgba(0, 115, 207, .25);
    transform: translateY(-4px)
}

.vision-card-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue-400);
    margin-bottom: 8px
}

.vision-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px
}

.vision-card p { font-size: 14px; color: var(--gray-400); line-height: 1.7 }

.values-section { margin-bottom: 64px }

.values-label {
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue-400);
    margin-bottom: 32px
}

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

.value-card {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all .4s;
    position: relative;
    overflow: hidden
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue-500), var(--blue-300));
    transform: scaleX(0);
    transition: transform .4s
}

.value-card:hover {
    background: rgba(255, 255, 255, .06);
    border-color: rgba(0, 115, 207, .2);
    transform: translateY(-4px)
}

.value-card:hover::before { transform: scaleX(1) }

.value-num {
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--blue-300), var(--blue-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px
}

.value-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.3px }

.value-card p { font-size: 13px; color: var(--gray-400); line-height: 1.6 }

/* ─── SERVICES ─── */
.services {
    padding: 120px 40px;
    background: var(--gray-50)
}

.services-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    counter-reset: svc
}

.svc-card {
    background: white;
    border: 1px solid var(--gray-100);
    border-radius: 20px;
    padding: 36px;
    transition: all .4s;
    position: relative;
    overflow: hidden;
    counter-increment: svc
}

.svc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--blue-500);
    transform: scaleX(0);
    transition: transform .4s
}

.svc-card::after {
    content: '0' counter(svc);
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 48px;
    font-weight: 900;
    color: var(--gray-100);
    line-height: 1;
    pointer-events: none;
    transition: color .4s
}

.svc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .06);
    border-color: var(--blue-200)
}

.svc-card:hover::before { transform: scaleX(1) }
.svc-card:hover::after  { color: var(--blue-50) }

.svc-icon {
    width: 56px;
    height: 56px;
    background: var(--blue-50);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all .4s
}

.svc-icon svg { width: 28px; height: 28px; color: var(--blue-600) }

.svc-card:hover .svc-icon { background: var(--blue-500); transform: scale(1.05) }
.svc-card:hover .svc-icon svg { color: white }

.svc-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px }
.svc-card p  { font-size: 14px; color: var(--gray-500); line-height: 1.7 }

/* ─── TECHNOLOGY ─── */
.tech-section {
    padding: 120px 40px;
    background: linear-gradient(135deg, var(--dark) 0%, #0b1a33 100%);
    color: white
}

.tech-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

.tech-section .section-label { color: var(--blue-400) }
.tech-section .section-title { color: white; text-align: left; font-size: 40px }
.tech-section .section-desc  { color: var(--gray-400); text-align: left; margin: 0 }

.tech-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 36px
}

.tech-feat {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    padding: 24px;
    transition: all .3s
}

.tech-feat:hover { background: rgba(0, 115, 207, .12); border-color: var(--blue-500) }
.tech-feat h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px }
.tech-feat p  { font-size: 13px; color: var(--gray-400); line-height: 1.5 }

.tech-visual {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(0, 115, 207, .15);
    border-radius: 24px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 40px;
    transition: all .5s
}

.tech-visual:hover {
    border-color: rgba(0, 115, 207, .35);
    box-shadow: 0 0 60px rgba(0, 115, 207, .1), inset 0 0 40px rgba(0, 115, 207, .03)
}

.tech-mockup {
    width: 100%;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 115, 207, .15), rgba(16, 185, 129, .1));
    border: 1px solid rgba(255, 255, 255, .1);
    padding: 24px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.mockup-header {
    display: flex;
    gap: 6px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.mockup-dot { width: 10px; height: 10px; border-radius: 50% }

.mockup-bar {
    flex: 1;
    height: 10px;
    background: rgba(255, 255, 255, .08);
    border-radius: 4px;
    margin-left: 16px
}

.mockup-row { display: flex; gap: 12px }

.mockup-sidebar { width: 30%; display: flex; flex-direction: column; gap: 8px }

.mockup-sidebar-item { height: 12px; background: rgba(255, 255, 255, .06); border-radius: 4px }
.mockup-sidebar-item.active { background: rgba(0, 115, 207, .3) }

.mockup-content { flex: 1; display: flex; flex-direction: column; gap: 10px }

.mockup-content-line { height: 10px; background: rgba(255, 255, 255, .05); border-radius: 3px }
.mockup-content-line:nth-child(1) { width: 60% }
.mockup-content-line:nth-child(2) { width: 80% }
.mockup-content-line:nth-child(3) { width: 45% }

.mockup-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 8px }

.mockup-card {
    height: 60px;
    background: rgba(0, 115, 207, .1);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .05)
}

/* ─── LOCATIONS ─── */
.locations {
    padding: 120px 40px;
    background: var(--white)
}

/* Company location groups */
.company-loc-wrap {
    max-width: 1280px;
    margin: 48px auto 0
}

.company-loc-group { margin-bottom: 40px }

.company-loc-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-left: 4px solid;
    background: var(--gray-50);
    border-radius: 0 10px 10px 0;
    margin-bottom: 20px
}

.company-loc-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0 }
.company-loc-name { font-size: 15px; font-weight: 700 }
.company-loc-count { font-size: 12px; color: var(--gray-400); margin-left: auto }

.loc-inner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px
}

/* Location cards */
.loc-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: 16px;
    overflow: hidden;
    padding: 28px;
    transition: all .4s cubic-bezier(.16, 1, .3, 1)
}

.loc-card:has(.loc-card-img) { padding: 0 }

.loc-card-img { width: 100%; height: 160px; overflow: hidden }

.loc-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease
}

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

.loc-card-body { padding: 20px 24px 24px }

.loc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
    border-color: var(--blue-300)
}

.loc-card h4 { font-size: 17px; font-weight: 700; margin-bottom: 4px }

.loc-card .loc-region { font-size: 13px; color: var(--gray-400); margin-bottom: 12px }

.loc-card .loc-company {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    margin-right: 4px;
    margin-bottom: 4px
}

.loc-card .loc-address {
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 10px;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 6px
}

.loc-card .loc-address svg { flex-shrink: 0; margin-top: 2px; color: var(--gray-400) }

/* ─── CTA ─── */
.cta-section {
    padding: 120px 40px;
    background: var(--gray-50)
}

.cta-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, var(--blue-600), var(--dark));
    border-radius: 32px;
    padding: 80px 60px;
    position: relative;
    overflow: hidden
}

.cta-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, .04);
    border-radius: 50%
}

.cta-inner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, .03);
    border-radius: 50%
}

.cta-inner h2 {
    font-size: 40px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    letter-spacing: -1px;
    position: relative
}

.cta-inner p {
    font-size: 18px;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 40px;
    position: relative
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    position: relative
}

/* ─── FOOTER ─── */
footer {
    background: var(--dark);
    color: var(--gray-400);
    padding: 80px 40px 40px
}

.footer-inner { max-width: 1280px; margin: 0 auto }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px
}

.footer-brand .logo-text { color: white; font-size: 22px }

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray-500);
    max-width: 280px;
    margin-top: 12px
}

.footer-col h4 {
    color: white;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px
}

.footer-col ul { list-style: none }
.footer-col li { margin-bottom: 10px }

.footer-col a {
    color: var(--gray-500);
    text-decoration: none;
    font-size: 14px;
    transition: color .2s
}

.footer-col a:hover { color: var(--blue-400) }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px
}

/* ─── CUSTOM SCROLLBAR ─── */
::-webkit-scrollbar { width: 8px }
::-webkit-scrollbar-track { background: var(--dark) }
::-webkit-scrollbar-thumb { background: var(--blue-600); border-radius: 4px }
::-webkit-scrollbar-thumb:hover { background: var(--blue-500) }

/* ─── ANIMATIONS ─── */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all .8s cubic-bezier(.16, 1, .3, 1)
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0)
}

/* Slogan bar */
.slogan-bar { transition: all .4s }
.slogan-bar:hover {
    background: rgba(0, 115, 207, .12);
    border-color: rgba(0, 115, 207, .25);
    transform: translateY(-2px)
}

/* ─── RESPONSIVE ─── */
@media(max-width:1024px) {
    .hero h1 { font-size: 36px }
    .subs-grid, .stats-inner { grid-template-columns: repeat(2, 1fr) }
    .services-grid { grid-template-columns: repeat(2, 1fr) }
    .tech-inner { grid-template-columns: 1fr }
    .vision-grid { grid-template-columns: 1fr }
    .footer-grid { grid-template-columns: repeat(2, 1fr) }
}

@media(max-width:768px) {
    .hero h1 { font-size: 28px; letter-spacing: -1px }
    .hero-buttons, .cta-buttons { flex-direction: column; align-items: center }
    .subs-grid, .stats-inner, .services-grid { grid-template-columns: 1fr }
    .vision-grid, .values-grid { grid-template-columns: 1fr }
    .vision-statement { font-size: 26px }
    .section-title { font-size: 32px }
    .nav-links { display: none }
    .cta-inner { padding: 48px 24px }
    .cta-inner h2 { font-size: 28px }
    .footer-grid { grid-template-columns: 1fr }
    .logos-bar-items { gap: 24px }
    .tech-features { grid-template-columns: 1fr }
    .vision-bar { font-size: 11px; gap: 8px }
}
