/* Pishonhead Premium Fintech Design System */
:root {
    --brand-primary: #1F4591;
    --brand-dark: #0D1B2A;
    --brand-accent: #3B82F6;
    --brand-light-blue: #60A5FA;
    --brand-gradient: linear-gradient(135deg, #1F4591 0%, #3B82F6 100%);
    --accent-gradient: linear-gradient(135deg, #1F4591 0%, #60A5FA 100%);
    --black: #0A0A0A;
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;
    --space-4: 16px;
    --space-6: 24px;
    --space-8: 32px;
    --space-10: 40px;
    --space-12: 48px;
    --space-16: 64px;
    --space-20: 80px;
    --space-24: 96px;
}

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

html { 
    scroll-behavior: smooth; 
    overflow-x: hidden; /* Global spill prevention */
    width: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden; /* Double safety */
    width: 100%;
    position: relative;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); }

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

section {
    padding: var(--space-24) 0;
    position: relative;
    overflow: hidden; /* Ensure ALL sections clip their content */
    width: 100%;
}

/* Section Numbers (Zynta Style) */
.section-number {
    position: absolute;
    top: 10%;
    right: 5%;
    font-size: clamp(120px, 15vw, 220px);
    font-weight: 900;
    color: rgba(31, 69, 145, 0.05);
    line-height: 1;
    pointer-events: none;
    z-index: 0;
}

/* Decorative Elements */
.decorative-currency,
.decorative-bubbles {
    display: none; /* Temporarily hidden until proper transparent PNGs available */
    position: absolute;
    pointer-events: none;
    opacity: 0.15;
    z-index: 0;
    background: linear-gradient(135deg, #0D1B2A 0%, #1F4591 100%);
    border-radius: 20px;
    padding: 20px;
}

.decorative-currency-1 {
    top: 15%;
    left: 5%;
    width: 200px;
    animation: float 8s ease-in-out infinite;
}

.decorative-bubbles-1 {
    bottom: 10%;
    right: 8%;
    width: 180px;
    animation: float 10s ease-in-out infinite 2s;
}

.decorative-currency img,
.decorative-bubbles img {
    width: 100%;
    height: auto;
    opacity: 0.6;
    mix-blend-mode: lighten; /* Blends away dark backgrounds */
    filter: brightness(1.2) contrast(1.1);
}


/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--brand-gradient);
    color: white;
    box-shadow: 0 4px 14px rgba(31, 69, 145, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(31, 69, 145, 0.4);
}

.btn-white {
    background: var(--white);
    color: var(--brand-primary);
    box-shadow: var(--shadow-lg);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

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

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(31, 69, 145, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    color: var(--brand-primary);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-4);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-16);
}

.section-header.light {
    color: var(--white);
}

.section-header.light h2,
.section-header.light p {
    color: var(--white);
}

.section-header.light .section-tag {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.section-header h2 {
    margin-bottom: var(--space-4);
}

.section-header p {
    color: var(--gray-500);
    font-size: 1.125rem;
    line-height: 1.7;
}

/* Header - Dark Like Zynta */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 27, 42, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo img {
    height: 45px; /* Increased from 38px for better visibility of horizontal logo */
    width: auto;
}

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

.nav-links li a {
    display: block;
    padding: 8px 16px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: var(--radius-lg);
    transition: all 0.2s;
}

.nav-links li a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.nav-links li a.btn {
    color: white;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-600);
    cursor: pointer;
}

/* Hero Section with 3D Coins */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: var(--space-24);
    background: linear-gradient(135deg, #0D1B2A 0%, #1a365d 50%, #1F4591 100%);
    position: relative;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background-image: url('assets/hero_background_pattern_1770821411605.png');
    background-size: cover;
    background-position: center;
    opacity: 0.8; /* Increased visibility */
    mix-blend-mode: lighten; /* Hides the dark blue background of the pattern, showing only lines */
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(59, 130, 246, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: var(--space-6);
    color: #93C5FD;
}

.hero h1 {
    color: white;
    margin-bottom: var(--space-6);
    letter-spacing: -0.02em;
}

.hero h1 span {
    background: linear-gradient(135deg, #60A5FA 0%, #93C5FD 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: var(--space-8);
    max-width: 520px;
}

.hero-cta {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-10);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-6);
}

.hero-trust span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    opacity: 0.85;
}

.hero-trust i {
    color: #93C5FD;
}

/* 3D Floating Coins Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Hero Composition (CSS Only) */
.hero-composition {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.hero-center-globe {
    position: absolute;
    width: 250px;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 0;
}

.hero-center-globe i {
    font-size: 140px;
    background: -webkit-linear-gradient(135deg, #3B82F6, #1E40AF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 30px rgba(59, 130, 246, 0.4));
    z-index: 2;
    opacity: 0.9;
    animation: spin 20s linear infinite; /* Rotating the icon itself */
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Tech Rings / Orbits */
.globe-rings {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px dashed rgba(59, 130, 246, 0.3);
    animation: rotate-globe 40s linear infinite;
    z-index: 1;
}

.globe-rings::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border-radius: 50%;
    border: 1px dotted rgba(59, 130, 246, 0.2);
    border-left: 1px solid rgba(59, 130, 246, 0.6);
    animation: rotate-globe-reverse 30s linear infinite;
}

.globe-rings::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border-radius: 50%;
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-top: 1px solid rgba(59, 130, 246, 0.5);
    animation: rotate-globe 20s linear infinite;
}

.globe-glow {
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 60%);
    filter: blur(50px);
    z-index: -1;
    animation: pulse-glow 5s ease-in-out infinite alternate;
}

@keyframes rotate-globe {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes rotate-globe-reverse {
    0% { transform: rotate(360deg); }
    100% { transform: rotate(0deg); }
}

@keyframes rotate-globe {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-icon {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    z-index: 1;
    transition: transform 0.3s ease;
}

.hero-icon i {
    z-index: 2;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

/* Icon Specifics */
.icon-btc {
    width: 100px;
    height: 100px;
    top: 15%;
    right: 20%;
    font-size: 50px;
    color: #F7931A;
    animation: float 6s ease-in-out infinite;
}

.icon-eth {
    width: 80px;
    height: 80px;
    bottom: 25%;
    right: 15%;
    font-size: 40px;
    color: #627EEA;
    animation: float 7s ease-in-out infinite 1s; /* Delay for async float */
}

.icon-usdt {
    width: 90px;
    height: 90px;
    top: 25%;
    left: 15%;
    font-size: 45px;
    color: #26A17B;
    background: linear-gradient(135deg, rgba(38, 161, 123, 0.1), rgba(38, 161, 123, 0.05));
    animation: float 5s ease-in-out infinite 0.5s;
}

.icon-ngn {
    width: 70px;
    height: 70px;
    bottom: 20%;
    left: 25%;
    font-size: 30px;
    color: #008751; /* Nigerian Green */
    animation: float 8s ease-in-out infinite 2s;
}

/* Trading & Global Icons */
.icon-chart {
    width: 60px;
    height: 60px;
    top: 10%;
    left: 40%;
    font-size: 24px;
    color: #3B82F6; /* Brand Blue */
    animation: float 5s ease-in-out infinite 0.5s;
    background: rgba(59, 130, 246, 0.1);
}

.icon-exchange {
    width: 55px;
    height: 55px;
    bottom: 15%;
    right: 35%;
    font-size: 22px;
    color: #F59E0B; /* Amber/Warning for activity */
    animation: float-reverse 6s ease-in-out infinite 1.5s;
}

.icon-gbp {
    width: 50px;
    height: 50px;
    top: 20%;
    right: 5%;
    font-size: 20px;
    color: #A855F7; /* Purple */
    animation: float 7s ease-in-out infinite 2.5s;
    opacity: 0.8;
}

.icon-eur {
    width: 50px;
    height: 50px;
    bottom: 40%;
    left: 5%;
    font-size: 20px;
    color: #10B981; /* Emerald */
    animation: float-reverse 8s ease-in-out infinite 1s;
    opacity: 0.8;
}

/* Header TM Logo */
.header-tm-logo {
    margin-left: 20px;
    background: white;
    padding: 5px 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.header-tm-logo img {
    height: 35px; /* Match logo height roughly */
    width: auto;
    object-fit: contain;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    /* Critical Overlay Fixes */
    .section-number {
        font-size: 60px; /* Force smaller size */
        right: 0;
        top: 20px;
        opacity: 0.03; /* More subtle */
    }
    
    .hero-badge {
        white-space: normal; /* Allow wrapping */
        text-align: left;
    }

    /* Mobile Menu TM Logo */
    .header-tm-logo { 
        display: flex; 
        justify-content: center;
        margin-top: 20px;
        background: rgba(255,255,255,0.1); /* Subtle container on dark bg */
        width: fit-content;
        align-self: center;
        padding: 8px 16px;
        border-radius: 8px;
    } 
    
    .header-tm-logo img {
        height: 25px; /* Reduced size as requested */
    }

    .header-tm-logo { display: none; } /* Hide header logo on mobile */
    
    /* Reduce Header Logo on Mobile (50%) */
    .logo img {
        height: 22px; /* Was 45px on desktop */
    }
    
    .hero {
        padding-top: 100px;
        text-align: center;
        overflow: hidden; /* Prevent spill */
        width: 100%;
    }
    
    .hero .container {
        grid-template-columns: 1fr; /* Stack vertically! currently was 1fr 1fr */
        gap: var(--space-8);
    }
    
    .hero-cta {
        flex-direction: column; /* Stack buttons */
        width: 100%;
        max-width: 300px;
        margin: 0 auto var(--space-8);
    }
    
    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-composition { 
        height: 400px; 
        margin-top: 20px;
        width: 100%;
        overflow: hidden; /* Clip flying animations */
    }
    
    /* Scale down Globe */
    .hero-center-globe { width: 160px; height: 160px; }
    .hero-center-globe i { font-size: 90px; }

    /* Resize Main Icons */
    .icon-btc { width: 60px; height: 60px; font-size: 30px; top: 10%; right: 15%; }
    .icon-eth { width: 50px; height: 50px; font-size: 25px; bottom: 20%; right: 10%; }
    .icon-usdt { width: 55px; height: 55px; font-size: 28px; top: 20%; left: 10%; }
    .icon-ngn { width: 45px; height: 45px; font-size: 20px; bottom: 15%; left: 20%; }
    
    /* Resize & Position Peripheral Icons */
    .icon-chart, .icon-exchange, .icon-gbp, .icon-eur {
        width: 35px; height: 35px; font-size: 16px;
    }
    .icon-chart { top: 5%; left: 45%; }
    .icon-exchange { bottom: 10%; right: 35%; }
    .icon-gbp { top: 15%; right: 5%; }
    .icon-eur { bottom: 25%; left: 5%; }
}

.coin-stat-1 {
    top: 10%;
    left: -10%;
    animation: slideInLeft 1s ease-out;
}

.coin-stat-2 {
    top: 50%;
    right: -10%;
    animation: slideInRight 1s ease-out 0.3s backwards;
}

.coin-stat-3 {
    bottom: 10%;
    left: 10%;
    animation: slideInLeft 1s ease-out 0.6s backwards;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

.coin-stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.coin-stat-label {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Services - Dark Zynta Style (NO CARDS) */
.services {
    background: linear-gradient(135deg, #0D1B2A 0%, #1F4591 100%);
    color: white;
}

.services .section-tag {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
}

.services .section-header h2,
.services .section-header p {
    color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-10);
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 48px; /* Massive border-radius for innovation */
    padding: var(--space-8);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Internal radial glow from icon */
.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 20%, 
        rgba(59, 130, 246, 0.15) 0%, 
        transparent 50%);
    pointer-events: none;
    z-index: -1;
}


.service-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-4px);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

.service-card h3 {
    margin-bottom: 16px;
    font-size: 1.25rem;
    color: white;
}

.service-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #93C5FD;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.2s;
}

.service-link:hover {
    gap: 12px;
}

/* Globe Network Section */
.global-network {
    background: linear-gradient(135deg, #0D1B2A 0%, #1F4591 100%);
    position: relative;
    overflow: hidden;
}

.network-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.network-content {
    color: white;
}

.network-content h2 {
    font-size: 2.5rem;
    margin-bottom: var(--space-6);
    color: white; /* Requested change: Title to white */
}

.network-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.125rem;
    margin-bottom: var(--space-8);
    max-width: 500px;
}

.network-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
    margin-bottom: var(--space-8);
}

.network-stat {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    text-align: center;
}

.network-stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brand-accent);
    line-height: 1;
    margin-bottom: 4px;
}

.network-stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.globe-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 500px;
}

.globe-visual img {
    width: 100%;
    max-width: 550px;
    height: auto;
    object-fit: contain;
    display: block;
    mix-blend-mode: lighten; /* Reverted: Essential for blending with dark background */
    filter: brightness(1.1) contrast(1.2) drop-shadow(0 0 50px rgba(59, 130, 246, 0.2)); /* Reverted: Enhances visibility */
    -webkit-mask-image: radial-gradient(circle at center, black 50%, transparent 90%); /* Reverted: Soft edges */
    mask-image: radial-gradient(circle at center, black 50%, transparent 90%); /* Reverted */
    animation: rotate 30s linear infinite, float 6s ease-in-out infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Compliance - Dark Zynta Style (NO CARDS) */
.compliance {
    background: linear-gradient(135deg, #1F4591 0%, #0D1B2A 100%);
    color: white;
}

.compliance .section-tag {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
}

.compliance .section-header h2,
.compliance .section-header p {
    color: white;
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-8);
}

.compliance-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 48px; /* Massive border-radius for innovation */
    padding: var(--space-8);
    text-align: center;
    transition: all 0.3s;
}

.compliance-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-4px);
}

.compliance-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

.compliance-card h4 {
    margin-bottom: 12px;
    font-size: 1.15rem;
    color: white;
}

.compliance-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* CTA */
.cta {
    background: linear-gradient(135deg, #1F4591 0%, #3B82F6 100%);
    text-align: center;
    color: white;
    padding: var(--space-24) 0;
}

.cta h2 {
    color: white;
    margin-bottom: var(--space-4);
}

.cta p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: var(--space-10);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}

/* Footer */
footer {
    background: var(--brand-dark);
    color: white;
    padding: var(--space-20) 0 var(--space-8);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: var(--space-16);
    margin-bottom: var(--space-16);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    margin: 24px 0;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.2s;
}

.footer-social a:hover {
    background: var(--brand-primary);
    transform: translateY(-2px);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.footer-section h4 {
    color: white;
    margin-bottom: 20px;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 991px) {
    .hero .container,
    .network-wrapper,
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-visual,
    .globe-visual {
        margin-top: 40px;
    }
    
    .hero-cta,
    .hero-trust {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(13, 27, 42, 0.98); /* Brand Dark! */
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transform: translateY(-150%);
        transition: transform 0.3s;
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }
    
    .nav-links.active {
        transform: translateY(0);
        box-shadow: var(--shadow-xl);
    }
    
    .menu-toggle {
        display: block;
    }
    
    /* Mobile Optimization for Global Reach */
    .network-wrapper {
        flex-direction: column;
        text-align: center;
        gap: var(--space-8);
        overflow: hidden; 
        width: 100%;
        padding: 0 var(--space-4); /* Add internal breathing room */
    }
    
    .network-stats {
        grid-template-columns: 1fr; /* Stack stats vertically for safety */
        gap: var(--space-4);
        width: 100%;
        max-width: 300px; /* Constrain width */
        margin: 0 auto var(--space-8);
    }
    
    .globe-visual {
        height: 300px; /* Smaller container */
        width: 100%;
        overflow: hidden; /* Ensure image doesn't spill */
        order: -1; 
    }
    
    .globe-visual img {
        max-width: 90%; 
        width: auto;
        margin: 0 auto;
        /* Ensure animations don't trigger scroll */
        transform-origin: center;
    }
        max-height: 100%;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}
