/* ==========================================
   SOULUTIONID - FUTURISTIC 22ND CENTURY DESIGN
   Brand: Gold #D4AF37, Navy #001F3F, Teal #00A896
   ========================================== */

:root {
    /* Brand Colors */
    --gold: #D4AF37;
    --navy: #001F3F;
    --teal: #00A896;
    
    /* Extended Palette */
    --gold-light: #F5E6C3;
    --gold-dark: #B8941F;
    --navy-dark: #000814;
    --navy-light: #003459;
    --teal-light: #4ECDC4;
    --teal-dark: #008577;
    
    /* Neutrals */
    --white: #FFFFFF;
    --black: #000000;
    --gray-100: #F8F9FA;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-400: #CED4DA;
    --gray-500: #ADB5BD;
    --gray-600: #6C757D;
    --gray-700: #495057;
    --gray-800: #343A40;
    --gray-900: #212529;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--gold), var(--teal));
    --gradient-secondary: linear-gradient(135deg, var(--navy), var(--teal));
    --gradient-gold: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    --gradient-cosmic: linear-gradient(135deg, #000814 0%, #001F3F 50%, #003459 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.3);
    
    /* Glow Effects */
    --glow-gold: 0 0 20px rgba(212, 175, 55, 0.5);
    --glow-teal: 0 0 20px rgba(0, 168, 150, 0.5);
    --glow-navy: 0 0 20px rgba(0, 31, 63, 0.5);
}

/* ==========================================
   RESET & BASE
   ========================================== */

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--gray-900);
    background: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ==========================================
   ANIMATED BACKGROUND
   ========================================== */

.neural-network {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.15;
    background: 
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 168, 150, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 31, 63, 0.1) 0%, transparent 50%);
    animation: neuralPulse 10s ease-in-out infinite;
}

@keyframes neuralPulse {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.2; }
}

.gradient-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.gradient-orbs::before,
.gradient-orbs::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(80px);
    animation: orbFloat 20s ease-in-out infinite;
}

.gradient-orbs::before {
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15), transparent);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.gradient-orbs::after {
    background: radial-gradient(circle, rgba(0, 168, 150, 0.15), transparent);
    bottom: -200px;
    right: -200px;
    animation-delay: 10s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(100px, -100px) scale(1.1); }
    66% { transform: translate(-100px, 100px) scale(0.9); }
}

/* ==========================================
   NAVBAR - FUTURISTIC
   ========================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 8, 20, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
    opacity: 0.5;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    position: relative;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 10;
}

.logo-glow {
    position: absolute;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, var(--gold), transparent);
    filter: blur(15px);
    opacity: 0.3;
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { opacity: 0.2; transform: scale(0.9); }
    50% { opacity: 0.4; transform: scale(1.1); }
}

.logo {
    height: 50px;
    width: 50px;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

.logo-text {
    display: flex;
    /* flex-direction: column; */
    flex-direction: row;
    line-height: 1;
    align-items: baseline;
}

.logo-main {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.logo-sub {
    font-family: 'Orbitron', sans-serif;
    /* font-size: 0.8rem;
    font-weight: 600; */
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--teal);
    letter-spacing: 3px;
    margin-left: 7px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    position: relative;
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.link-text {
    position: relative;
    z-index: 2;
}

.link-line {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover .link-line {
    width: 100%;
}

.nav-link:hover {
    color: var(--gold);
}

.cta-btn {
    position: relative;
    background: var(--gradient-primary);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    overflow: hidden;
}

.cta-btn span {
    position: relative;
    z-index: 2;
}

.btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease;
}

.cta-btn:hover .btn-glow {
    transform: translate(-50%, -50%) scale(2);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
}

/* ==========================================
   HERO - IMMERSIVE
   ========================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-cosmic);
    padding-top: 100px;
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(212, 175, 55, 0.3), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(0, 168, 150, 0.3), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(2px 2px at 90% 60%, rgba(212, 175, 55, 0.3), transparent);
    background-size: 200% 200%;
    animation: particlesMove 20s ease-in-out infinite;
}

@keyframes particlesMove {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1000px;
}

.hero-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    margin-bottom: 3rem;
    overflow: hidden;
}

.badge-icon {
    color: var(--gold);
    font-size: 1.2rem;
}

.badge-text {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--white);
}

.badge-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2), transparent);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { opacity: 0; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1); }
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.title-line {
    display: block;
    animation: titleReveal 1s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.title-line:nth-child(1) { animation-delay: 0.2s; color: var(--white); }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; color: var(--white); }

.title-line.highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 6rem;
    text-shadow: 0 0 60px rgba(212, 175, 55, 0.5);
}

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

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--teal-light);
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.hero-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.tagline-icon {
    color: var(--gold);
    font-size: 1.5rem;
    animation: iconRotate 10s linear infinite;
}

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

.hero-tagline p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 4rem 0;
}

.stat-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.stat-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover .stat-glow {
    opacity: 1;
    animation: glowRotate 3s linear infinite;
}

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

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: var(--glow-gold);
}

.stat-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--teal-light);
    font-size: 1rem;
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
}

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    overflow: hidden;
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    position: relative;
    z-index: 2;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border: 2px solid rgba(212, 175, 55, 0.5);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.btn-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 200%; }
}

.btn-border {
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 2px;
    background: var(--gradient-primary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-secondary:hover .btn-border {
    opacity: 1;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: 15px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ==========================================
   SECTIONS - SHARED
   ========================================== */

.section {
    position: relative;
    padding: 8rem 0;
    z-index: 1;
}

.section:nth-child(even) {
    background: rgba(0, 8, 20, 0.5);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-tag {
    display: inline-block;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--gold);
    padding: 0.5rem 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    margin-bottom: 1.5rem;
}

.section-tag.light {
    color: var(--gold-light);
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
}

.section-title {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

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

.title-gradient {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-gradient.gold {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: 1.2rem;
    color: var(--gray-400);
    max-width: 700px;
    margin: 0 auto;
}

.section-desc.light {
    color: var(--teal-light);
}

/* ==========================================
   CRISIS SECTION
   ========================================== */

.crisis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.crisis-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.crisis-card:hover .card-glow {
    opacity: 1;
}

.crisis-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: var(--glow-gold);
}

.crisis-icon-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    margin-bottom: 2rem;
}

.icon-orbit {
    position: absolute;
    inset: 0;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    animation: orbitSpin 10s linear infinite;
}

.icon-orbit::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    transform: translateX(-50%);
}

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

.crisis-icon-wrapper i {
    font-size: 3rem;
    color: var(--gold);
    position: relative;
    z-index: 2;
}

.crisis-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1rem;
}

.unit {
    font-size: 2.5rem;
    color: var(--teal);
}

.crisis-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--teal-light);
    margin-bottom: 0.8rem;
}

.crisis-impact {
    font-size: 0.95rem;
    color: var(--gray-400);
}

.crisis-quote {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 3rem;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border-left: 4px solid var(--gold);
    border-radius: 20px;
}

.quote-icon {
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.3;
    position: absolute;
    top: 2rem;
    left: 2rem;
}

blockquote {
    font-size: 1.8rem;
    font-style: italic;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.quote-line {
    width: 100px;
    height: 3px;
    background: var(--gradient-primary);
    margin: 2rem auto 0;
}

/* ==========================================
   MARKET SECTION
   ========================================== */

.market-highlight {
    margin-bottom: 4rem;
}

.highlight-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    padding: 4rem;
    overflow: hidden;
}

.card-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    animation: shineMove 3s infinite;
}

@keyframes shineMove {
    0% { transform: translateX(-100%) translateY(-100%); }
    100% { transform: translateX(100%) translateY(100%); }
}

.highlight-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.highlight-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: var(--teal-light);
    margin-bottom: 2rem;
}

.highlight-values {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.value-item {
    text-align: center;
}

.value-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    display: block;
}

.value-item.primary .value-number {
    font-size: 3.5rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.value-year {
    font-size: 1rem;
    color: var(--gray-400);
    margin-top: 0.5rem;
}

.value-arrow {
    font-size: 2rem;
    color: var(--teal);
}

.highlight-growth {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

.market-chart-container {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 25px;
    padding: 3rem;
    margin-bottom: 4rem;
}

.market-segments {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.segment-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 168, 150, 0.2);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.segment-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 168, 150, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.segment-card:hover .segment-glow {
    opacity: 1;
}

.segment-card:hover {
    transform: translateY(-10px);
    border-color: var(--teal);
    box-shadow: var(--glow-teal);
}

.segment-icon {
    font-size: 3.5rem;
    color: var(--teal);
    margin-bottom: 1.5rem;
}

.segment-title {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.segment-current {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--teal-light);
    margin-bottom: 1rem;
}

.segment-growth {
    display: inline-block;
    background: rgba(0, 168, 150, 0.2);
    color: var(--teal-light);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.segment-future {
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 600;
}

/* ==========================================
   SOLUTION SECTION
   ========================================== */

.architecture-diagram {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.arch-layer {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.layer-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.arch-layer:hover .layer-glow {
    opacity: 1;
}

.arch-layer:hover {
    transform: translateX(15px);
    border-color: var(--gold);
    box-shadow: var(--glow-gold);
}

.layer-l1 {
    border-color: rgba(0, 168, 150, 0.3);
}

.layer-l1:hover {
    border-color: var(--teal);
    box-shadow: var(--glow-teal);
}

.layer-user {
    border-color: rgba(0, 31, 63, 0.3);
}

.layer-user:hover {
    border-color: var(--navy-light);
    box-shadow: var(--glow-navy);
}

.layer-content {
    position: relative;
    z-index: 2;
}

.layer-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    padding: 0.5rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.layer-content h3 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.layer-content p {
    color: var(--teal-light);
    margin-bottom: 1.5rem;
}

.layer-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.layer-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--white);
}

.layer-features i {
    color: var(--teal);
}

.arch-connector {
    width: 2px;
    height: 40px;
    background: var(--gradient-primary);
    margin: 0 auto;
    position: relative;
}

.arch-connector::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid var(--teal);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.feature-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.feature-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover .feature-glow {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: var(--glow-gold);
}

.feature-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    margin-bottom: 2rem;
}

.icon-ring {
    position: absolute;
    inset: 0;
    border: 3px solid transparent;
    border-top-color: var(--gold);
    border-right-color: var(--gold);
    border-radius: 50%;
    animation: ringRotate 3s linear infinite;
}

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

.feature-icon i {
    font-size: 3rem;
    color: var(--gold);
    position: relative;
    z-index: 2;
}

.feature-card h3 {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--gray-400);
    line-height: 1.6;
}

.performance-banner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: var(--gradient-primary);
    border-radius: 25px;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
}

.performance-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shineMove 3s infinite;
}

.perf-item {
    text-align: center;
    position: relative;
    z-index: 2;
}

.perf-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.perf-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.perf-divider {
    width: 2px;
    height: 60px;
    background: rgba(255, 255, 255, 0.3);
}

/* ==========================================
   UAE SECTION - SPECIAL
   ========================================== */

.uae-section {
    position: relative;
    background: var(--gradient-cosmic);
}

.uae-bg {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.1), transparent),
        radial-gradient(circle at 70% 50%, rgba(0, 168, 150, 0.1), transparent);
    opacity: 0.5;
}

.uae-flag {
    font-size: 5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.uae-advantages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.advantage-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 25px;
    padding: 3rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.adv-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.15), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.advantage-card:hover .adv-glow {
    opacity: 1;
}

.advantage-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: var(--glow-gold);
}

.adv-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(212, 175, 55, 0.2);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.adv-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.advantage-card h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.advantage-card p {
    color: var(--teal-light);
    line-height: 1.6;
}

.comparison-modern {
    max-width: 1200px;
    margin: 0 auto 5rem;
}

.comparison-title {
    font-size: 2rem;
    color: var(--white);
    text-align: center;
    margin-bottom: 3rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.comp-item {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.comp-item.uae-item {
    border-color: rgba(212, 175, 55, 0.5);
    background: rgba(212, 175, 55, 0.05);
}

.comp-item:hover {
    transform: translateY(-5px);
}

.comp-flag {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
}

.comp-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: 2rem;
}

.comp-scores {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.score-bar {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.score-bar span {
    font-size: 0.85rem;
    color: var(--gray-400);
}

.bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 10px;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.score-bar.excellent .fill {
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.score-bar.good .fill {
    background: linear-gradient(90deg, var(--teal), var(--teal-light));
}

.score-bar.medium .fill {
    background: linear-gradient(90deg, #FFA500, #FFD700);
}

.score-bar.low .fill {
    background: linear-gradient(90deg, #FF6B6B, #FF8E8E);
}

.uae-legacy {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: rgba(212, 175, 55, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    padding: 4rem 3rem;
}

.legacy-icon {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.uae-legacy h3 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.uae-legacy p {
    font-size: 1.2rem;
    color: var(--teal-light);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.legacy-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.legacy-stat {
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
}

.stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--white);
}

/* ==========================================
   INVESTMENT SECTION
   ========================================== */

.investment-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.inv-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.inv-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.inv-glow.gold {
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.2), transparent);
}

.inv-card:hover .inv-glow {
    opacity: 1;
}

.inv-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: var(--glow-gold);
}

.inv-card.highlight {
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.5);
    transform: scale(1.05);
}

.inv-card.highlight:hover {
    transform: scale(1.08) translateY(-10px);
}

.inv-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.inv-label {
    font-size: 1.1rem;
    color: var(--teal-light);
    margin-bottom: 1rem;
}

.inv-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1rem;
}

.inv-desc {
    color: var(--gray-400);
}

.revenue-chart-wrapper {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 25px;
    padding: 3rem;
    margin-bottom: 5rem;
}

.chart-title {
    font-size: 1.8rem;
    color: var(--white);
    text-align: center;
    margin-bottom: 2rem;
}

.roi-scenarios {
    margin-bottom: 5rem;
}

.scenarios-title {
    font-size: 2.5rem;
    color: var(--white);
    text-align: center;
    margin-bottom: 1rem;
}

.scenarios-subtitle {
    font-size: 1.1rem;
    color: var(--teal-light);
    text-align: center;
    margin-bottom: 3rem;
}

.scenarios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.scenario-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.scenario-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 168, 150, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.scenario-glow.gold {
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.2), transparent);
}

.scenario-card:hover .scenario-glow {
    opacity: 1;
}

.scenario-card:hover {
    transform: translateY(-10px);
    border-color: var(--teal);
}

.scenario-card.featured {
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.5);
    transform: scale(1.05);
}

.scenario-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
    border-color: var(--gold);
    box-shadow: var(--glow-gold);
}

.scenario-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-gold);
    color: var(--navy);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    font-weight: 900;
    padding: 0.3rem 0.8rem;
    border-radius: 10px;
    letter-spacing: 1px;
}

.scenario-label {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.scenario-prob {
    font-size: 0.9rem;
    color: var(--teal-light);
    margin-bottom: 2rem;
}

.scenario-val {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 1rem;
}

.scenario-mult {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.scenario-irr {
    font-size: 1.2rem;
    color: var(--teal);
    font-weight: 600;
}

.investment-cta-banner {
    position: relative;
    background: var(--gradient-primary);
    border-radius: 30px;
    padding: 5rem 3rem;
    text-align: center;
    overflow: hidden;
}

.cta-banner-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shineMove 3s infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.btn-large {
    padding: 1.5rem 4rem;
    font-size: 1.2rem;
}

.btn-gold {
    background: var(--navy-dark);
    border: 2px solid var(--gold);
}

.btn-gold:hover {
    background: var(--gold);
    color: var(--navy);
}

/* ==========================================
   CONTACT SECTION
   ========================================== */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card:hover {
    border-color: var(--gold);
    box-shadow: var(--glow-gold);
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.contact-role {
    color: var(--teal-light);
    margin-bottom: 0;
}

.contact-card p {
    color: var(--gray-400);
}

.contact-card a {
    color: var(--teal);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--gold);
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 25px;
    padding: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-500);
}

.input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group input:focus ~ .input-line,
.form-group select:focus ~ .input-line,
.form-group textarea:focus ~ .input-line {
    width: 100%;
}

.btn-block {
    width: 100%;
}

.form-success {
    display: none;
    text-align: center;
    padding: 3rem;
}

.success-icon {
    font-size: 4rem;
    color: var(--teal);
    margin-bottom: 1.5rem;
}

.form-success h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.form-success p {
    color: var(--teal-light);
}

.final-cta {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    background: rgba(212, 175, 55, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    padding: 4rem 3rem;
    text-align: center;
    overflow: hidden;
}

.final-cta-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1), transparent);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.final-cta-content {
    position: relative;
    z-index: 2;
}

.cta-icon {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.final-cta h3 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.final-cta p {
    font-size: 1.2rem;
    color: var(--teal-light);
    line-height: 1.8;
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    position: relative;
    background: rgba(0, 8, 20, 0.95);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 4rem 0 2rem;
}

.footer-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
    opacity: 0.5;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    height: 60px;
    width: 60px;
    object-fit: contain;
}

.footer-brand h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.footer-brand p {
    color: var(--teal-light);
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--teal);
}

.footer-contact p {
    color: var(--gray-400);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact i {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.copy-footer {
    color: var(--gold-dark);
    text-decoration: none;
}

.copy-footer:hover {
    color: var(--gold);
    text-decoration: underline;
}

.footer-links-social a {
    color: var(--gold);
    transition: all 0.4s ease;
}

.footer-links-social a:hover {
    color: var(--teal);
}

/* ==========================================
   MOBILE RESPONSIVE
   ========================================== */

@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .hero-title {
        font-size: 4rem;
    }

    .title-line.highlight {
        font-size: 5rem;
    }

    .section-title {
        font-size: 3rem;
    }

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

    .legacy-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(0, 8, 20, 0.98);
        backdrop-filter: blur(20px);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
        padding: 3rem 2rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 2000;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .mobile-menu.active {
        right: 0;
    }

    .close-menu-btn {
        align-self: flex-end;
        background: none;
        border: none;
        color: var(--gold);
        font-size: 2rem;
        cursor: pointer;
    }

    .mobile-nav-link {
        color: var(--white);
        text-decoration: none;
        font-size: 1.2rem;
        font-weight: 600;
        padding: 1rem;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        transition: all 0.3s ease;
    }

    .mobile-nav-link:hover {
        color: var(--gold);
        padding-left: 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-content {
        margin-top: 1.5rem;
    }

    .title-line.highlight {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
    }

    .section {
        padding: 5rem 0;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .crisis-grid,
    .market-segments,
    .features-grid,
    .uae-advantages,
    .investment-overview,
    .scenarios-grid {
        grid-template-columns: 1fr;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .performance-banner {
        flex-direction: column;
        gap: 2rem;
    }

    .perf-divider {
        width: 60px;
        height: 2px;
    }

    .legacy-stats {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    blockquote {
        font-size: 1.3rem;
    }

    .highlight-values {
        flex-direction: column;
        gap: 1.5rem;
    }

    .value-number {
        font-size: 2.5rem;
    }

    .value-item.primary .value-number {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .title-line.highlight {
        font-size: 2.5rem;
    }

    .crisis-number {
        font-size: 3rem;
    }

    .stat-value,
    .inv-value,
    .scenario-val {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* ==========================================
   SCROLL PROGRESS BAR
   ========================================== */

#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: var(--gradient-primary);
    width: 0%;
    z-index: 9999;
    transition: width 0.1s ease;
}

/* ==========================================
   LOADING ANIMATION
   ========================================== */

.page-loader {
    position: fixed;
    inset: 0;
    background: var(--gradient-cosmic);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    width: 100px;
    height: 100px;
    animation: logoFloat 2s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.loader-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--gold);
    margin-top: 2rem;
    letter-spacing: 3px;
}






.slider-btn{
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:10;
  background:rgba(255,255,255,.8);
  backdrop-filter:blur(6px);
  padding:.75rem;
  border-radius:50px;
  box-shadow:0 1px 3px rgba(0,0,0,.15);
  border:1px solid rgba(0,0,0,.08);
}

#partnersTrack{
  display:flex !important;
  flex-wrap:nowrap;
  gap:1.5rem;
  overflow-x:auto;
  scroll-behavior:smooth;
  scroll-snap-type:x mandatory;
}

#partnersTrack > a{
  flex:0 0 auto;
  width:22rem;
  scroll-snap-align:start;
}

#partnersTrack::-webkit-scrollbar{display:none;}
#partnersTrack{ scrollbar-width:none; }
#partnersTrack{ -ms-overflow-style:none; }


@media (max-width: 767px){
  #partnersTrack > a{
    width: 90vw;        
    max-width: 22rem;   
  }

  .slider-btn{
    width: 2.25rem; 
    height: 2.25rem;
  }
}
.soulution-partners-section {
  padding: 80px 0;
  text-align: center;
}
.soulution-partners-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.soulution-partners-header h2 {
    color: var(--teal-light);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.soulution-partners-highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.soulution-partners-header p {
  color: var(--gray-500);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 50px;
}
.soulution-partners-slider {
  position: relative;
}
.soulution-partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  justify-items: center;
}
.soulution-partners-card {
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.soulution-partners-card:hover {
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.soulution-card-inner {
  background: rgba(212, 175, 55, 0.05);
  border-radius: 20px;
  padding: 40px 20px;
  border: 2px solid transparent;
  transition: border 0.3s ease;
  border: 1px solid rgba(212, 175, 55, 0.2);
}
.soulution-partners-card:hover .soulution-card-inner {
  border-color: #a78bfa;
}
.soulution-icon-wrapper {
  background: linear-gradient(135deg, #4f46e5, #9333ea);
  color: #fff;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}
.soulution-card-inner h3 {
  color: var(--gray-400);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.soulution-visit-link {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
}
.soulution-partners-btn {
  background: #4f46e5;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 1.2rem;
  transition: background 0.3s ease;
}
.soulution-partners-btn:hover {
  background: #3730a3;
}
.soulution-prev {
  left: -60px;
}
.soulution-next {
  right: -60px;
}
@media (max-width: 768px) {
  .soulution-partners-btn { display: none; }
}
#formSuccess {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

#formSuccess.error .success-icon {
    color: #ff4d4f;
}

#formSuccess .success-icon {
    color: var(--teal-light);
    font-size: 50px;
    margin-bottom: 10px;
}
