/* ============================================
   NEXUS INTERNATIONAL — PREMIUM CSS
   Design: Bold Editorial + World Exhibition
   ============================================ */

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

/* ============================================
   GLOBAL TEXT ANIMATIONS
   ============================================ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes shimmer {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}
@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(232,98,42,0.3); }
    50%       { box-shadow: 0 0 40px rgba(232,98,42,0.6); }
}
@keyframes underline-grow {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
}
@keyframes border-spin {
    to { transform: rotate(360deg); }
}

:root {
    /* Core Palette */
    --ink: #0a0a0f;
    --ink-soft: #16161e;
    --surface: #f5f4f0;
    --white: #ffffff;
    --accent: #e8622a;        /* Burnt orange — cargo / energy */
    --accent-dark: #c44e1c;
    --accent-gold: #c9a84c;
    --ocean: #1a4a6b;
    --ocean-light: #2c6e9e;
    --sky: #d4e9f7;

    /* Typography */
    --font-display: 'Bebas Neue', sans-serif;
    --font-serif: 'DM Serif Display', serif;
    --font-syne: 'Syne', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --nav-h: 76px;
    --section-pad: clamp(80px, 10vw, 140px);
    --max-w: 1280px;
    --gutter: clamp(20px, 5vw, 60px);

    /* Transitions */
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--surface);
    color: var(--ink);
    overflow-x: hidden;
    cursor: none;
}

body.loaded { cursor: auto; }

/* --- SCROLLBAR --- */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 4px; }

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.cursor-dot {
    position: fixed;
    top: 0; left: 0;
    width: 10px; height: 10px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s, background 0.2s;
}
.cursor-ring {
    position: fixed;
    top: 0; left: 0;
    width: 36px; height: 36px;
    border: 1.5px solid var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.3s var(--ease), width 0.3s, height 0.3s, opacity 0.3s;
}
a:hover ~ .cursor-ring, button:hover ~ .cursor-ring {
    width: 60px; height: 60px;
}

/* ============================================
   PRELOADER
   ============================================ */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--ink);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    transition: opacity 0.6s var(--ease), visibility 0.6s;
}
#preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }

.pre-logo {
    font-family: var(--font-display);
    font-size: clamp(52px, 10vw, 100px);
    color: var(--white);
    letter-spacing: 8px;
    line-height: 1;
}
.pre-logo span { color: var(--accent); }

.pre-bar {
    width: min(380px, 80vw);
    height: 2px;
    background: rgba(255,255,255,0.12);
    border-radius: 2px;
    overflow: hidden;
}
.pre-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent-gold));
    width: 0%;
    border-radius: 2px;
    transition: width 0.1s linear;
}
.pre-tagline {
    font-family: var(--font-syne);
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}

/* ============================================
   NAVIGATION
   ============================================ */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-h);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--gutter);
    transition: background 0.4s var(--ease), box-shadow 0.4s;
}
.main-nav.scrolled {
    background: rgba(10,10,15,0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.nav-logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.nav-logo-icon {
    width: 40px; height: 40px;
    background: var(--accent);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}
.nav-logo-text {
    font-family: var(--font-syne);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--white);
    line-height: 1.2;
}
.nav-logo-text span { color: rgba(255,255,255,0.5); font-weight: 400; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-link {
    font-family: var(--font-syne);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 40px;
    transition: color 0.25s, background 0.25s;
}
.nav-link:hover, .nav-link.active {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}

.nav-cta {
    background: var(--accent);
    color: var(--white);
    font-family: var(--font-syne);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 10px 24px;
    border-radius: 40px;
    text-decoration: none;
    transition: background 0.25s, transform 0.25s;
}
.nav-cta:hover { background: var(--accent-dark); transform: translateY(-1px); }

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-burger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    height: 100svh;
    min-height: 700px;
    overflow: hidden;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg-img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    transform-origin: center;
    will-change: transform;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10,10,15,0.25) 0%,
        rgba(10,10,15,0.15) 40%,
        rgba(10,10,15,0.75) 80%,
        rgba(10,10,15,0.96) 100%
    );
}

.hero-content {
    position: absolute;
    bottom: clamp(50px, 6vw, 90px);
    left: 0;
    right: 0;
    z-index: 2;
    max-width: var(--max-w);
    width: 100%;
    padding: 0 var(--gutter);
    /* Guard: never let content rise above nav + 60px comfortable gap */
    max-height: calc(100svh - var(--nav-h) - 60px);
    overflow: visible;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.85);
    font-family: var(--font-syne);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 40px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    width: fit-content;
}
.badge-dot {
    width: 8px; height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.7); }
}

.hero-title {
    font-family: var(--font-display);
    /* Smaller clamp so 3 lines + badge + desc + buttons fit below the nav */
    font-size: clamp(48px, 7.5vw, 108px);
    line-height: 0.92;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 22px;
    display: flex;
    flex-direction: column;
}
.ht-line { display: block; opacity: 0; transform: translateY(60px); }
.ht-line-2 em {
    font-style: italic;
    color: var(--accent);
}

.hero-desc {
    max-width: 520px;
    color: rgba(255,255,255,0.7);
    font-size: clamp(14px, 1.3vw, 16px);
    line-height: 1.7;
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(20px);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    opacity: 0;
    transform: translateY(20px);
}
.btn-primary-hero {
    background: var(--accent);
    color: var(--white);
    font-family: var(--font-syne);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 8px 30px rgba(232,98,42,0.4);
    position: relative;
    overflow: hidden;
}
.btn-primary-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.25) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.5s;
}
.btn-primary-hero:hover::after { transform: translateX(100%); }
.btn-primary-hero:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(232,98,42,0.55);
    animation: glow-pulse 2s ease-in-out infinite;
}
.btn-ghost-hero {
    color: var(--white);
    font-family: var(--font-syne);
    font-weight: 600;
    font-size: 14px;
    padding: 16px 28px;
    border: 1.5px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.btn-ghost-hero:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
}
.btn-ghost-hero i { transition: transform 0.25s; }
.btn-ghost-hero:hover i { transform: translateX(4px); }

/* Hero Stats */
.hero-stats {
    position: absolute;
    right: var(--gutter);
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 3;
    opacity: 0;
    animation: float 4s ease-in-out infinite;
}
.hstat-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 20px 28px;
    text-align: center;
    min-width: 130px;
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.hstat-card:hover {
    background: rgba(232,98,42,0.18);
    border-color: rgba(232,98,42,0.5);
    transform: scale(1.06);
}
.hstat-num {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--white);
    line-height: 1;
}
.hstat-label {
    font-size: 11px;
    font-family: var(--font-syne);
    letter-spacing: 1px;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    margin-top: 4px;
}

/* Scroll hint */
.hero-scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.45);
    font-size: 10px;
    letter-spacing: 3px;
    font-family: var(--font-syne);
    text-transform: uppercase;
    opacity: 0;
}
.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, rgba(255,255,255,0.5), transparent);
    animation: scroll-line-anim 1.8s ease-in-out infinite;
}
@keyframes scroll-line-anim {
    0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
    50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
    51% { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
    100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ============================================
   EYEBROW ANIMATED UNDERLINE
   ============================================ */
.eyebrow {
    position: relative;
    cursor: default;
}
.eyebrow::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
}
.eyebrow:hover::after { transform: scaleX(1); }

/* ============================================
   TICKER MARQUEE
   ============================================ */
.ticker-wrap {
    background: var(--accent);
    overflow: hidden;
    padding: 14px 0;
}
.ticker-track {
    display: flex;
    gap: 40px;
    white-space: nowrap;
    animation: ticker 30s linear infinite;
    width: max-content;
}
.ticker-track span {
    font-family: var(--font-syne);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white);
}
.ticker-dot { color: rgba(255,255,255,0.5) !important; font-size: 10px; }
@keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ============================================
   ABOUT
   ============================================ */
.about-section {
    background: var(--surface);
    padding: var(--section-pad) var(--gutter);
}
.about-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: center;
}

/* Image Stack */
.about-img-stack {
    position: relative;
    height: 540px;
}
.ab-img { position: absolute; overflow: hidden; border-radius: 16px; }
.ab-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s var(--ease); }
.ab-img:hover img { transform: scale(1.04); }

.ab-img-main {
    width: 75%;
    height: 420px;
    bottom: 0; left: 0;
    box-shadow: 0 24px 60px rgba(0,0,0,0.18);
}
.ab-img-sec {
    width: 52%;
    height: 250px;
    top: 0; right: 0;
    box-shadow: 0 16px 40px rgba(0,0,0,0.14);
}
.ab-float-chip {
    position: absolute;
    bottom: 30px;
    right: 10px;
    background: var(--ink);
    color: var(--white);
    padding: 16px 20px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    z-index: 2;
}
.ab-float-chip i { font-size: 22px; color: var(--accent); }
.ab-float-chip strong { display: block; font-size: 15px; font-weight: 700; }
.ab-float-chip span { display: block; font-size: 11px; color: rgba(255,255,255,0.55); margin-top: 2px; }

/* About Text */
.eyebrow {
    display: inline-block;
    font-family: var(--font-syne);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}
.eyebrow-light { color: rgba(255,255,255,0.6); }

.about-title {
    font-family: var(--font-serif);
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}
/* Animated highlight bar on scroll */
.about-title::before {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 0%;
    height: 6px;
    background: rgba(232,98,42,0.18);
    border-radius: 4px;
    transition: width 0.9s var(--ease) 0.3s;
    z-index: -1;
}
.about-right.visible .about-title::before { width: 100%; }
.about-body {
    font-size: 16px;
    line-height: 1.78;
    color: #4a4a5a;
    margin-bottom: 18px;
}

.about-pillars {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}
.pillar {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.06);
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}
.pillar::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--accent);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s var(--ease);
}
.pillar:hover { border-color: var(--accent); transform: translateX(6px); box-shadow: 4px 0 16px rgba(232,98,42,0.1); }
.pillar:hover::before { transform: scaleY(1); }
.pillar-icon {
    width: 44px; height: 44px;
    background: rgba(232,98,42,0.1);
    color: var(--accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.pillar strong { display: block; font-size: 14px; font-weight: 700; color: var(--ink); }
.pillar span { display: block; font-size: 12px; color: #7a7a8a; margin-top: 2px; }

/* ============================================
   SERVICES
   ============================================ */
.services-section {
    background: var(--ink);
    padding: var(--section-pad) var(--gutter);
}
.services-head {
    max-width: var(--max-w);
    margin: 0 auto 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.services-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 7vw, 96px);
    line-height: 0.92;
    color: var(--white);
    letter-spacing: 1px;
    /* Shimmer text animation */
    background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.7) 40%, var(--accent) 50%, rgba(255,255,255,0.7) 60%, #fff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

.services-grid {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
/* Remove large span — all cards equal */
.srv-card-large { grid-column: span 1; }

.srv-card {
    background: var(--ink-soft);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.35s, transform 0.35s var(--ease-spring), box-shadow 0.35s;
    opacity: 0;
    transform: translateY(30px);
    position: relative;
}
.srv-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(232,98,42,0.05), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}
.srv-card.visible { opacity: 1; transform: translateY(0); }
.srv-card:hover { border-color: rgba(232,98,42,0.7); transform: translateY(-8px) !important; box-shadow: 0 20px 50px rgba(232,98,42,0.15); }
.srv-card:hover::after { opacity: 1; }

.srv-card-img {
    width: 100%;
    height: 210px;
    overflow: hidden;
    flex-shrink: 0;
}
.srv-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.srv-card:hover .srv-card-img img { transform: scale(1.06); }

.srv-card-body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.srv-icon {
    width: 46px; height: 46px;
    background: rgba(232,98,42,0.15);
    border: 1px solid rgba(232,98,42,0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    color: var(--accent);
    margin-bottom: 18px;
}
.srv-card-body h3 {
    font-family: var(--font-syne);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
    transition: color 0.3s;
}
.srv-card:hover .srv-card-body h3 { color: var(--accent); }
.srv-card-body h3::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 2px;
    background: var(--accent);
    transition: width 0.4s var(--ease);
}
.srv-card:hover .srv-card-body h3::after { width: 100%; }
.srv-card-body p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
    margin-bottom: 20px;
    flex: 1;
}
.srv-feat {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.srv-feat li {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    padding-left: 14px;
    position: relative;
    font-family: var(--font-syne);
    letter-spacing: 0.3px;
}
.srv-feat li::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 5px; height: 5px;
    background: var(--accent);
    border-radius: 50%;
}

/* ============================================
   NETWORK NAV LINK HOVER
   ============================================ */
.nav-link {
    position: relative;
    overflow: hidden;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 50%;
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--accent);
    transform: translate(-50%, 0) scale(0);
    transition: transform 0.3s var(--ease-spring);
}
.nav-link.active::after,
.nav-link:hover::after { transform: translate(-50%, 0) scale(1); }

/* ============================================
   GLOBAL NETWORK
   ============================================ */
.network-section {
    background: var(--white);
    padding: var(--section-pad) var(--gutter);
}
.network-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

.network-title {
    font-family: var(--font-serif);
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: 20px;
}
.network-title em {
    color: var(--accent);
    font-style: italic;
    position: relative;
    display: inline-block;
}
.network-title em::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-gold));
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.7s var(--ease) 0.4s;
}
.network-text.visible .network-title em::after { transform: scaleX(1); }
.network-text > p {
    font-size: 16px;
    line-height: 1.75;
    color: #5a5a6a;
    margin-bottom: 40px;
    max-width: 480px;
}

.network-hubs {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.hub-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.07);
    background: var(--surface);
    transition: border-color 0.3s, transform 0.35s var(--ease-spring), box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}
.hub-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(232,98,42,0.06), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}
.hub-item:hover { border-color: var(--accent); transform: translateX(8px); box-shadow: 0 4px 20px rgba(232,98,42,0.12); }
.hub-item:hover::before { opacity: 1; }
.hub-flag { font-size: 28px; }
.hub-info strong { display: block; font-size: 14px; font-weight: 700; color: var(--ink); }
.hub-info span { display: block; font-size: 12px; color: #8a8a9a; margin-top: 2px; }

/* Globe Visual */
.network-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}
.globe-container {
    position: relative;
    width: min(460px, 85vw);
    height: min(460px, 85vw);
    display: flex;
    align-items: center;
    justify-content: center;
}
.globe-core {
    width: 64%;
    height: 64%;
    border-radius: 50%;
    overflow: hidden;
    z-index: 2;
    position: relative;
    box-shadow: 0 0 60px rgba(44,110,158,0.25);
}
.globe-core img { width: 100%; height: 100%; object-fit: cover; }

.globe-ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid rgba(44,110,158,0.18);
    animation: globe-spin 20s linear infinite;
}
.r1 { width: 75%; height: 75%; animation-duration: 22s; }
.r2 { width: 90%; height: 90%; animation-duration: 32s; animation-direction: reverse; }
.r3 { width: 100%; height: 100%; animation-duration: 45s; border-style: dashed; border-color: rgba(232,98,42,0.12); }
@keyframes globe-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.globe-pin {
    position: absolute;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    cursor: default;
}
.globe-pin::before {
    content: '';
    width: 10px; height: 10px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(232,98,42,0.25);
    animation: pin-pulse 2s ease-in-out infinite;
}
.globe-pin span {
    background: var(--ink);
    color: var(--white);
    font-size: 9px;
    font-family: var(--font-syne);
    font-weight: 700;
    letter-spacing: 1px;
    padding: 2px 6px;
    border-radius: 4px;
    white-space: nowrap;
}
@keyframes pin-pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(232,98,42,0.25); }
    50% { box-shadow: 0 0 0 8px rgba(232,98,42,0.08); }
}
.gp1 { animation-delay: 0s; }
.gp2 { animation-delay: 0.3s; }
.gp3 { animation-delay: 0.6s; }
.gp4 { animation-delay: 0.9s; }
.gp5 { animation-delay: 1.2s; }

/* ============================================
   WHY US — IMMERSIVE PARALLAX
   ============================================ */
.whyus-section {
    position: relative;
    padding: var(--section-pad) var(--gutter);
    overflow: hidden;
    min-height: 700px;
}
.whyus-bg-img {
    position: absolute;
    inset: -80px;
    z-index: 0;
}
.whyus-bg-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    will-change: transform;
}
.whyus-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,10,15,0.92) 0%, rgba(26,74,107,0.85) 100%);
    z-index: 1;
}
.whyus-content {
    position: relative;
    z-index: 2;
    max-width: var(--max-w);
    margin: 0 auto;
}
.whyus-title {
    font-family: var(--font-display);
    font-size: clamp(52px, 9vw, 120px);
    color: var(--white);
    line-height: 0.9;
    letter-spacing: 1px;
    margin-bottom: clamp(40px, 5vw, 80px);
}

.whyus-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.wc-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 32px;
    transition: border-color 0.35s, background 0.35s, transform 0.35s var(--ease-spring), box-shadow 0.35s;
    position: relative;
    overflow: hidden;
}
.wc-card::before {
    content: attr(data-num);
    position: absolute;
    top: -10px; right: 16px;
    font-family: var(--font-display);
    font-size: 90px;
    color: rgba(255,255,255,0.03);
    line-height: 1;
    pointer-events: none;
    transition: color 0.4s;
}
.wc-card:hover {
    border-color: var(--accent);
    background: rgba(255,255,255,0.1);
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}
.wc-card:hover::before { color: rgba(232,98,42,0.06); }
.wc-num {
    font-family: var(--font-display);
    font-size: 52px;
    color: rgba(255,255,255,0.12);
    line-height: 1;
    margin-bottom: 12px;
    transition: color 0.3s;
}
.wc-card:hover .wc-num { color: rgba(232,98,42,0.35); }
.wc-card h4 {
    font-family: var(--font-syne);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.3;
}
.wc-card p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
    background: var(--surface);
    padding: var(--section-pad) var(--gutter);
}
.testi-inner {
    max-width: var(--max-w);
    margin: 0 auto;
}
.testi-header {
    margin-bottom: 52px;
}
.testi-header h2 {
    font-family: var(--font-serif);
    font-size: clamp(32px, 4vw, 52px);
    color: var(--ink);
}

.testi-carousel { overflow: hidden; }
.testi-track {
    display: flex;
    gap: 24px;
    transition: transform 0.6s var(--ease);
}
.testi-card {
    flex: 0 0 calc(50% - 12px);
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 20px;
    padding: 36px;
    transition: border-color 0.3s, transform 0.3s var(--ease-spring), box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}
.testi-card::before {
    content: '\201C';
    position: absolute;
    top: 10px; right: 24px;
    font-family: var(--font-serif);
    font-size: 100px;
    line-height: 1;
    color: rgba(232,98,42,0.06);
    pointer-events: none;
}
.testi-card:hover { border-color: var(--accent); transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.1); }
.testi-card:hover::before { color: rgba(232,98,42,0.12); }
.testi-stars {
    color: var(--accent-gold);
    font-size: 16px;
    letter-spacing: 3px;
    margin-bottom: 20px;
}
.testi-quote {
    font-size: 16px;
    line-height: 1.8;
    color: #3a3a4a;
    font-style: italic;
    margin-bottom: 28px;
}
.testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.ta-avatar {
    width: 46px; height: 46px;
    background: var(--ink);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-syne);
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 15px; font-weight: 700; color: var(--ink); }
.testi-author span { display: block; font-size: 12px; color: #8a8a9a; margin-top: 2px; }

.testi-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 32px;
}
.tn-btn {
    width: 46px; height: 46px;
    border-radius: 50%;
    border: 1.5px solid rgba(0,0,0,0.15);
    background: var(--white);
    color: var(--ink);
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.tn-btn:hover { background: var(--accent); border-color: var(--accent); color: var(--white); }
.testi-dots {
    display: flex;
    gap: 8px;
}
.testi-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(0,0,0,0.18);
    cursor: pointer;
    transition: background 0.25s, transform 0.25s;
}
.testi-dot.active { background: var(--accent); transform: scale(1.3); }

/* ============================================
   CONTACT
   ============================================ */
.contact-section {
    background: var(--ink);
    padding: var(--section-pad) var(--gutter);
}
.contact-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: flex-start;
}
.contact-title {
    font-family: var(--font-serif);
    font-size: clamp(36px, 5vw, 64px);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 18px;
}
.contact-title em { color: var(--accent); font-style: italic; }
.contact-sub {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
    margin-bottom: 44px;
    max-width: 380px;
}

.contact-details { display: flex; flex-direction: column; gap: 22px; }
.cd-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.cd-icon {
    width: 42px; height: 42px;
    background: rgba(232,98,42,0.15);
    border: 1px solid rgba(232,98,42,0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 4px;
}
.cd-text strong { display: block; font-size: 12px; font-family: var(--font-syne); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 4px; }
.cd-text span, .cd-text a { font-size: 15px; color: rgba(255,255,255,0.8); text-decoration: none; line-height: 1.5; }
.cd-text a:hover { color: var(--accent); }

/* Form */
.contact-form {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: clamp(28px, 4vw, 44px);
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.cf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.cf-group {
    position: relative;
}
.cf-group input, .cf-group select, .cf-group textarea {
    width: 100%;
    background: rgba(255,255,255,0.06);
    border: 1.5px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 18px 16px 8px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 15px;
    outline: none;
    transition: border-color 0.25s, background 0.25s;
    -webkit-appearance: none;
}
.cf-group select option { background: var(--ink-soft); color: var(--white); }
.cf-group textarea { resize: vertical; min-height: 90px; }
.cf-group input:focus, .cf-group select:focus, .cf-group textarea:focus {
    border-color: var(--accent);
    background: rgba(255,255,255,0.09);
}
.cf-group label {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    pointer-events: none;
    transition: all 0.25s var(--ease);
}
.cf-group textarea ~ label { top: 18px; transform: none; }
.cf-group input:not(:placeholder-shown) ~ label,
.cf-group input:focus ~ label,
.cf-group select:not([value=""]) ~ label,
.cf-group select:focus ~ label,
.cf-group textarea:not(:placeholder-shown) ~ label,
.cf-group textarea:focus ~ label {
    top: 8px;
    transform: none;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent);
}

.cf-submit {
    width: 100%;
    background: var(--accent);
    color: var(--white);
    font-family: var(--font-syne);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 18px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.25s, transform 0.25s;
    margin-top: 4px;
}
.cf-submit:hover { background: var(--accent-dark); transform: translateY(-2px); }
.cf-status {
    font-size: 14px;
    text-align: center;
    color: rgba(255,255,255,0.5);
    min-height: 20px;
}
.cf-status.success { color: #5adf8a; }
.cf-status.error { color: #f05a7e; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: #0a0a0f;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 60px var(--gutter) 32px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 48px;
}
.footer-logo {
    font-family: var(--font-display);
    font-size: 28px;
    letter-spacing: 3px;
    color: var(--white);
    margin-bottom: 16px;
    display: inline-block;
}
.footer-logo span { color: var(--accent); }
.fg-brand p {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255,255,255,0.65);
    max-width: 300px;
    margin-bottom: 24px;
}
.footer-socials {
    display: flex;
    gap: 10px;
}
.footer-socials a {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    text-decoration: none;
    transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.footer-socials a:hover { background: var(--accent); border-color: var(--accent); color: var(--white); }

.fg-col h4 {
    font-family: var(--font-syne);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.fg-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.fg-col ul li a {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.25s, transform 0.25s, padding-left 0.25s;
    display: inline-block;
}
.fg-col ul li a:hover { color: var(--accent); padding-left: 6px; }

.fg-contact .fc-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 16px;
    padding: 10px 12px;
    border-radius: 10px;
    transition: background 0.25s;
}
.fg-contact .fc-item:hover { background: rgba(255,255,255,0.05); }
.fg-contact .fc-item i { color: var(--accent); font-size: 15px; margin-top: 2px; flex-shrink: 0; }
.fg-contact .fc-item span, .fg-contact .fc-item a {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    line-height: 1.55;
}
.fg-contact .fc-item a:hover { color: var(--accent); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.5); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.25s;
}
.footer-bottom-links a:hover { color: var(--accent); }

/* ============================================
   MOBILE MENU
   ============================================ */
@media (max-width: 900px) {
    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        height: 100vh;
        width: 280px;
        background: var(--ink);
        flex-direction: column;
        padding: 100px 32px 40px;
        gap: 8px;
        transition: right 0.4s var(--ease);
        border-left: 1px solid rgba(255,255,255,0.08);
    }
    .nav-links.open { right: 0; }
    .nav-link { font-size: 15px; padding: 12px 16px; border-radius: 8px; }
    .nav-burger { display: flex; }
    .nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-burger.open span:nth-child(2) { opacity: 0; }
    .nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
    .hero-stats { display: none; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
    .services-grid { grid-template-columns: 1fr 1fr; }
    .srv-card-large { grid-column: span 1; }
    .whyus-cards { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    :root { --section-pad: 70px; }
    .about-inner,
    .network-inner,
    .contact-inner { grid-template-columns: 1fr; }
    .about-img-stack { height: 340px; margin-bottom: 0; }
    .ab-img-main { width: 70%; height: 280px; }
    .ab-img-sec { width: 50%; height: 170px; }
    .services-grid { grid-template-columns: 1fr; }
    .srv-card-large { grid-column: span 1; }
    .whyus-cards { grid-template-columns: 1fr; }
    .testi-card { flex: 0 0 100%; }
    .cf-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .network-visual { display: none; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .hero-title { font-size: clamp(42px, 13vw, 72px); }
    .hero-actions { flex-direction: column; }
    .btn-primary-hero, .btn-ghost-hero { justify-content: center; }
    .hero-content { bottom: 30px; }
}
