@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    /* Color Palette - Premium Navy & Cyan */
    --bg-dark: #07090d;
    --bg-card: rgba(19, 23, 34, 0.6);
    --accent-cyan: #00d2ff;
    --accent-blue: #3a7bd5;
    --accent-red: #c92a2a;
    --text-primary: #ffffff;
    --text-secondary: #cbd5e1;
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.01em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Gradients (Atmospheric) */
body::before {
    content: '';
    position: fixed;
    top: -20%;
    left: -20%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(58, 123, 213, 0.15) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    bottom: -20%;
    right: -20%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.1) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

/* Containers */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Glassmorphism Classes */
.glass {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 210, 255, 0.4);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--accent-cyan);
    color: var(--accent-cyan);
}

.btn-outline:hover {
    background: rgba(0, 210, 255, 0.1);
    transform: translateY(-3px);
}

/* Header consolidation removed from here - managed in Elite Header section at the bottom */

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
}

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

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.7;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--accent-cyan);
}

.nav-cta .btn {
    padding: 0.6rem 1.85rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 12px;
}

.logo img {
    height: 52px;
    width: auto;
    display: block;
    transition: var(--transition);
}

/* Footer & Help Banner */
.help-banner {
    background: linear-gradient(90deg, #8b1e1e, #c92a2a);
    padding: 2.5rem;
    border-radius: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}

.footer {
    padding: 50px 0;
    border-top: 1px solid var(--glass-border);
}

/* Sections Styling */
section {
    padding: 5rem 0;
}

.tagline {
    color: var(--accent-cyan);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 1.5rem;
    display: block;
    text-shadow: 0 0 20px rgba(0, 210, 255, 0.3);
}

h1 {
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h2, h3 {
    font-weight: 600;
    line-height: 1.25;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    animation: fadeInUp 0.8s ease forwards;
}

/* References Slider (Elite Corporate Polish) */
.references-section {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
    background: radial-gradient(circle at center, rgba(0, 243, 255, 0.05) 0%, transparent 70%);
}

.references-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), 
                      linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at center, black, transparent 80%);
    pointer-events: none;
}

.marquee-container {
    background: transparent;
    border-radius: 0;
    padding: 1rem 0;
    margin: 0;
    overflow: hidden;
    position: relative;
    width: 100%;
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee-rail {
    display: flex;
    gap: 15px;
    padding: 10px 0;
    width: max-content;
}

.rail-left {
    animation: scroll-left 100s linear infinite;
}

.rail-right {
    animation: scroll-right 100s linear infinite;
}

.marquee-container:hover .marquee-rail {
    animation-play-state: paused;
}

.marquee-item {
    flex-shrink: 0;
    width: 240px;
    height: 90px;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    padding: 1rem;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.marquee-item:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(0, 243, 255, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 243, 255, 0.1);
}

.marquee-item img {
    max-height: 26px;
    max-width: 140px;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(0.35);
    transition: all 0.5s ease;
    margin-bottom: 8px;
}

.marquee-item:hover img {
    filter: none;
    opacity: 1;
}

.ref-placeholder {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
    color: var(--accent-cyan);
    font-size: 0.9rem;
    opacity: 0.4;
    transition: all 0.5s ease;
}

.marquee-item:hover .ref-placeholder {
    opacity: 1;
    transform: scale(1.1);
}

@keyframes scroll-left {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-50% - 7.5px)); }
}

@keyframes scroll-right {
    from { transform: translateX(calc(-50% - 7.5px)); }
    to { transform: translateX(0); }
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

/* Corporate & Support Section (Elite Polish) */
.corporate-section {
    padding: 10rem 0;
    background: radial-gradient(circle at bottom right, rgba(0, 243, 255, 0.03) 0%, transparent 50%),
                radial-gradient(circle at top left, rgba(0, 243, 255, 0.03) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

.corporate-card {
    background: rgba(255, 255, 255, 0.012);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    padding: 1.8rem;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.corporate-card:hover {
    background: rgba(255, 255, 255, 0.025);
    border-color: rgba(0, 243, 255, 0.2);
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.support-item {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    padding: 1.8rem;
    display: flex;
    align-items: center;
    gap: 25px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
}

.support-item:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(0, 243, 255, 0.25);
    transform: translateX(12px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.support-icon-box {
    width: 65px;
    height: 65px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-cyan);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.support-item:hover .support-icon-box {
    background: var(--accent-cyan);
    color: #000;
    transform: rotate(-8deg) scale(1.1);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.4);
}

.tagline-elite {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--accent-cyan);
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
    opacity: 0.8;
}
/* Corporate Board Grid & Modules (Elite Horizontal Layout) */
.corporate-board-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.board-card {
    height: 100%;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 1.5rem;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    backdrop-filter: blur(15px);
}

.board-card:hover {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(0, 243, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.board-support-item {
    background: rgba(0, 243, 255, 0.015);
    border: 1px solid rgba(0, 243, 255, 0.05);
    border-radius: 24px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    text-decoration: none;
}

.board-support-item:hover {
    background: rgba(0, 243, 255, 0.04);
    border-color: rgba(0, 243, 255, 0.3);
    transform: translateY(-8px);
}

.board-icon-large {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--accent-cyan);
    transition: all 0.5s ease;
}

.board-support-item:hover .board-icon-large {
    background: var(--accent-cyan);
    color: #000;
    box-shadow: 0 0 35px rgba(0, 243, 255, 0.4);
    transform: scale(1.1) rotate(-8deg);
}

@media (max-width: 992px) {
    .corporate-board-grid { grid-template-columns: 1fr; }
}

/* Elite FAQ Grid & Accordion (2-Column Architecture) */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
    margin: 0 auto;
}

.faq-card {
    background: rgba(255, 255, 255, 0.012);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1.8rem;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
}

.faq-card:hover {
    background: rgba(255, 255, 255, 0.025);
    border-color: rgba(0, 243, 255, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.faq-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
    transition: color 0.4s ease;
}

.faq-card:hover .faq-title {
    color: var(--accent-cyan);
}

.faq-toggle-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    font-size: 0.9rem;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1);
}

.faq-card.active .faq-toggle-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0;
}

.faq-card.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
}

@media (max-width: 992px) {
    .faq-grid { grid-template-columns: 1fr; }
}

/* Elite Header & Hero (Infrastructure & Atmosphere) */
header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border-bottom: 1px solid transparent;
}

header.scrolled {
    padding: 1rem 0;
    background: rgba(5, 7, 10, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 243, 255, 0.1);
}

.nav-links li a {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    transition: all 0.4s ease;
}

.nav-links li a:hover {
    color: var(--accent-cyan);
    text-shadow: 0 0 15px rgba(0, 243, 255, 0.4);
}

.hero-infrastructure {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(0, 243, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 243, 255, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(0, 243, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 243, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px, 50px 50px, 10px 10px, 10px 10px;
    z-index: -1;
    mask-image: radial-gradient(circle at center, black 0%, transparent 85%);
    animation: gridFlow 60s linear infinite;
}

@keyframes gridFlow {
    from { background-position: 0 0; }
    to { background-position: 500px 500px; }
}

.hero-neural {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(0, 243, 255, 0.1)"/></svg>');
    opacity: 0.3;
    z-index: -1;
    animation: neuralFloat 20s linear infinite;
}

@keyframes neuralFloat {
    from { transform: translateY(0); }
    to { transform: translateY(-100px); }
}

.hero-spotlight {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw; height: 100vh;
    background: radial-gradient(circle at center, rgba(0, 243, 255, 0.08) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
    animation: spotlightPulse 10s ease-in-out infinite;
}

@keyframes spotlightPulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.trust-badge-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 3.5rem;
    flex-wrap: wrap;
    opacity: 0.6;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(5px);
}

.trust-badge:hover {
    opacity: 1;
    background: rgba(0, 243, 255, 0.05);
    border-color: rgba(0, 243, 255, 0.3);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #00ff88;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 10px #00ff88;
}

.status-dot::after {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    border-radius: 50%;
    border: 1px solid #00ff88;
    animation: dotPing 2s ease-out infinite;
}

@keyframes dotPing {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(3); opacity: 0; }
}

.btn-shimmer {
    position: relative;
    overflow: hidden;
}

.btn-shimmer::after {
    content: '';
    position: absolute;
    top: -50%; left: -150%;
    width: 200%; height: 200%;
    background: linear-gradient(
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: rotate(45deg);
    transition: all 0.5s;
    animation: btnShimmer 4s infinite;
}

@keyframes btnShimmer {
    0% { left: -150%; }
    20% { left: 150%; }
    100% { left: 150%; }
}

.trust-badge i {
    color: var(--accent-cyan);
    font-size: 0.8rem;
}

.btn-primary-elite {
    background: var(--accent-cyan);
    color: #000;
    font-weight: 700;
    padding: 1.1rem 2.8rem;
    border-radius: 14px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 30px rgba(0, 243, 255, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-primary-elite:hover {
    background: #fff;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 243, 255, 0.4);
}

.btn-outline-elite {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-weight: 600;
    padding: 1.1rem 2.8rem;
    border-radius: 14px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(10px);
    text-decoration: none;
}

.btn-outline-elite:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    background: rgba(0, 243, 255, 0.05);
    transform: translateY(-5px);
}

/* Responsiveness */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .help-banner { flex-direction: column; text-align: center; gap: 1.5rem; }
    .hero { padding: 8rem 0 5rem !important; }
    .trust-badge-row { gap: 15px; margin-top: 2.5rem; }
    .trust-badge { font-size: 0.6rem; padding: 0.4rem 0.8rem; }
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: #1a1f2e; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-cyan); }

/* Pillar Card Special Effects (Strategy Boxes) */
.pillar-card {
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    z-index: 1;
}

.pillar-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 243, 255, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 210, 255, 0.1);
}

.pillar-card .pillar-icon-bg {
    transition: all 0.5s ease;
}

.pillar-card:hover .pillar-icon-bg {
    opacity: 0.1 !important;
    transform: scale(1.1) rotate(5deg);
    color: var(--accent-cyan) !important;
}

.pillar-card .tagline {
    transition: letter-spacing 0.5s ease;
}

.pillar-card:hover .tagline {
    letter-spacing: 0.4em;
}


/* Capability Cards (Elite Ecosystem Section) */
.capability-card {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.capability-card:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(0, 243, 255, 0.2);
    transform: translateX(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.capability-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.capability-icon {
    width: 32px;
    height: 32px;
    background: rgba(0, 243, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    font-size: 0.9rem;
    transition: all 0.4s ease;
}

.capability-card:hover .capability-icon {
    background: var(--accent-cyan);
    color: #000;
    transform: scale(1.1);
}

.capability-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.capability-text {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
    opacity: 0.8;
    margin: 0;
}

.capability-tag {
    font-size: 0.6rem;
    color: var(--accent-cyan);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.6;
}

/* Ecosystem Grid & Responsiveness */
.ecosystem-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

@media (max-width: 991px) {
    .ecosystem-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .ecosystem-grid [data-aos="fade-right"] {
        order: 1;
        text-align: center;
    }
    
    .ecosystem-grid [data-aos="fade-left"] {
        order: 2;
    }

    .ecosystem-grid .btn-primary-elite, 
    .ecosystem-grid .btn-outline-elite {
        flex: 1;
        justify-content: center;
    }
}

.ecosystem-visual-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.ecosystem-visual-container::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(0, 243, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* Strategic Contact Hub Styles */
.contact-section {
    padding: 10rem 0;
    background: radial-gradient(circle at bottom right, rgba(0, 243, 255, 0.05) 0%, transparent 50%);
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.contact-info-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 243, 255, 0.2);
    transform: translateY(-5px);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 243, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    font-size: 1.2rem;
}

.contact-form-glass {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3.5rem;
    border-radius: 24px;
    backdrop-filter: blur(15px);
}

.input-premium {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.1rem 1.5rem;
    border-radius: 12px;
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    outline: none;
}

.input-premium:focus {
    border-color: var(--accent-cyan);
    background: rgba(0, 243, 255, 0.05);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.1);
}

.input-premium::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 991px) {
    .contact-grid { grid-template-columns: 1fr !important; gap: 3rem !important; }
}

/* Social Elite Buttons */
.social-elite-btn {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    color: var(--text-secondary);
    font-size: 1.4rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.social-elite-btn::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--btn-gradient);
    opacity: 0.1;
    transition: all 0.4s ease;
}

.social-elite-btn:hover {
    transform: translateY(-8px);
    border-color: var(--accent-cyan);
    color: #fff;
    box-shadow: 0 15px 30px rgba(0, 243, 255, 0.15);
}

.social-elite-btn:hover::before {
    top: 0;
}

.social-elite-btn:hover .fa-instagram { color: #E1306C; }
.social-elite-btn:hover .fa-youtube { color: #FF0000; }
.social-elite-btn:hover .fa-linkedin-in { color: #0077B5; }
.social-elite-btn:hover .fa-x-twitter { color: #fff; }

/* Header Socials */
.nav-cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-socials {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding-right: 1.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.header-socials a {
    color: var(--text-secondary);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.header-socials a:hover {
    color: var(--accent-cyan);
    opacity: 1;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .header-socials { display: none; }
}

/* --- Adsphere Matrix Preloader System --- */
#matrix-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: #000;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 1s cubic-bezier(1, 0, 0, 1);
    overflow: hidden;
}

#matrix-canvas {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0.6;
}

.matrix-content {
    position: relative;
    z-index: 10;
    text-align: center;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.8) 0%, transparent 80%);
    padding: 4rem;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.matrix-logo {
    width: 280px;
    filter: drop-shadow(0 0 30px rgba(0, 243, 255, 0.4));
    animation: pulseMatrix 2s infinite ease-in-out;
}

.matrix-welcome {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(0, 243, 255, 0.8), 0 0 40px rgba(0, 243, 255, 0.4);
    opacity: 0;
    animation: fadeInWelcome 1s forwards 0.5s;
}

#matrix-overlay.loaded {
    opacity: 0;
    pointer-events: none;
    transform: scale(1.1);
    filter: blur(20px);
}

@keyframes pulseMatrix {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 30px rgba(0, 243, 255, 0.4)); }
    50% { transform: scale(1.05); filter: drop-shadow(0 0 50px rgba(0, 243, 255, 0.6)); }
}

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

@media (max-width: 768px) {
    .matrix-logo { width: 180px; }
    .matrix-welcome { font-size: 0.9rem; padding: 0 20px; }
}
